├── .gitignore ├── Airbitz Widget ├── Airbitz Widget.entitlements ├── Base.lproj │ └── MainInterface.storyboard ├── Info.plist ├── TodayViewController.h ├── TodayViewController.m ├── ar.lproj │ └── MainInterface.strings ├── de-CH.lproj │ └── MainInterface.strings ├── de-LU.lproj │ └── MainInterface.strings ├── de.lproj │ └── MainInterface.strings ├── el.lproj │ └── MainInterface.strings ├── es-419.lproj │ └── MainInterface.strings ├── es-MX.lproj │ └── MainInterface.strings ├── es-PR.lproj │ └── MainInterface.strings ├── es.lproj │ └── MainInterface.strings ├── fr-CA.lproj │ └── MainInterface.strings ├── fr-CH.lproj │ └── MainInterface.strings ├── fr.lproj │ └── MainInterface.strings ├── hi.lproj │ └── MainInterface.strings ├── ht.lproj │ └── MainInterface.strings ├── it.lproj │ └── MainInterface.strings ├── ja.lproj │ └── MainInterface.strings ├── nl.lproj │ └── MainInterface.strings ├── pt-BR.lproj │ └── MainInterface.strings ├── pt.lproj │ └── MainInterface.strings ├── ru.lproj │ └── MainInterface.strings ├── zh-CN.lproj │ └── MainInterface.strings ├── zh-Hans.lproj │ └── MainInterface.strings └── zh.lproj │ └── MainInterface.strings ├── Airbitz-Common ├── MainController.h └── MainController.m ├── Airbitz-OSX ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── Main.storyboard ├── ViewController.h ├── ViewController.m └── main.m ├── Airbitz-OSXTests ├── Airbitz_OSXTests.m └── Info.plist ├── Airbitz-OSXUITests ├── Airbitz_OSXUITests.m └── Info.plist ├── Airbitz.xcodeproj └── project.pbxproj ├── Airbitz.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ └── Airbitz.xcscmblueprint ├── Airbitz ├── .gitignore ├── AB.h ├── AB.m ├── Affiliate.h ├── Affiliate.m ├── Airbitz Develop.entitlements ├── Airbitz Testnet.entitlements ├── Airbitz-Bridging-Header.h ├── Airbitz-Develop-Info.plist ├── Airbitz-Info.plist ├── Airbitz-Testnet-Info.plist ├── Airbitz.entitlements ├── AirbitzViewController.h ├── AirbitzViewController.m ├── AppDelegate.h ├── AppDelegate.m ├── AppGroupConstants.h ├── AudioController.h ├── AudioController.m ├── BalanceView.h ├── BalanceView.m ├── BalanceView~iphone.xib ├── Base.lproj │ ├── AccountCreate.storyboard │ ├── BusinessDirectory.storyboard │ ├── CalculatorView~iphone.xib │ ├── ConfirmationSliderView.xib │ ├── InfoView~iphone.xib │ ├── Main_iPhone.storyboard │ ├── PasswordVerifyView.xib │ ├── PopupWheelPickerView.xib │ ├── Settings.storyboard │ ├── SlideoutView~iphone.xib │ └── WalletMakerView~iphone.xib ├── BlurView.h ├── BlurView.m ├── BrandStrings.h ├── BrandStrings.m ├── BrandTheme.h ├── Business Directory │ ├── Business Details │ │ ├── BD_CommonCell.h │ │ ├── BD_CommonCell.m │ │ ├── BD_Social_Cell.h │ │ ├── BD_Social_Cell.m │ │ ├── BusinessDetailsViewController.h │ │ ├── BusinessDetailsViewController.m │ │ ├── UIPhotoGalleryViewController+Slider.h │ │ └── UIPhotoGalleryViewController+Slider.m │ ├── DirectoryViewController.h │ ├── DirectoryViewController.m │ ├── DividerView.h │ ├── DividerView.m │ ├── Location.h │ ├── Location.m │ ├── MapView │ │ ├── Annotation.h │ │ ├── Annotation.m │ │ ├── AnnotationContentView.h │ │ ├── AnnotationContentView.m │ │ ├── AnnotationContentView.xib │ │ ├── CustomAnnotationView.h │ │ ├── CustomAnnotationView.m │ │ ├── MapView.h │ │ └── MapView.m │ ├── MoreCategoriesViewController.h │ ├── MoreCategoriesViewController.m │ ├── OverViewTableCell │ │ ├── CommonOverviewCell.h │ │ ├── CommonOverviewCell.m │ │ ├── overviewCell.h │ │ ├── overviewCell.m │ │ ├── topOverviewCell.h │ │ └── topOverviewCell.m │ ├── RibbonView.h │ ├── RibbonView.m │ ├── SMCalloutView.h │ ├── SMCalloutView.m │ ├── categoryCell.h │ └── categoryCell.m ├── ButtonSelectorView.h ├── ButtonSelectorView.m ├── ButtonSelectorView2.h ├── ButtonSelectorView2.m ├── ButtonSelectorView2.xib ├── ButtonSelectorView~iphone.xib ├── CalculatorView.h ├── CalculatorView.m ├── CommonTypes.h ├── Config.h.example ├── Contact.h ├── Contact.m ├── DDData │ ├── DDData.h │ └── DDData.m ├── DPDConstants.swift ├── DPDKeyboardListener.swift ├── DPDUIView+Extension.swift ├── DarkenView.h ├── DarkenView.m ├── DateTime.h ├── DateTime.m ├── DebugViewController.h ├── DebugViewController.m ├── DropDown+Appearance.swift ├── DropDown.swift ├── DropDownCell.swift ├── DropDownCell.xib ├── FadingAlert │ ├── FadingAlertView.h │ └── FadingAlertView.m ├── FadingAlert2 │ ├── DropDownAlertView.h │ ├── DropDownAlertView.m │ ├── DropDownAlertView.xib │ ├── FadingAlertViewNew.xib │ ├── MiniDropDownAlertView.h │ ├── MiniDropDownAlertView.m │ └── MiniDropDownAlertView.xib ├── Google Drive │ ├── DriveLib.a │ ├── GDrive.h │ ├── GDrive.m │ ├── GTL.xcodeproj │ │ └── project.pbxproj │ ├── GTLDrive.h │ ├── GTLDrive_Sources.m │ ├── GTMOAuth2ViewTouch.xib │ └── Source │ │ ├── GTL.xcodeproj │ │ └── project.pbxproj │ │ ├── GTLCommon_Sources.m │ │ ├── GTLDefines.h │ │ ├── GTLNetworking_Sources.m │ │ ├── HTTPFetcher │ │ ├── .svn │ │ │ ├── entries │ │ │ ├── format │ │ │ ├── pristine │ │ │ │ ├── 17 │ │ │ │ │ └── 17ad10b92dc6b049b6a6bebd54a1fb3702d71336.svn-base │ │ │ │ ├── 19 │ │ │ │ │ └── 19f2bdcdefa9559437a046deb95d51947af27b2a.svn-base │ │ │ │ ├── 31 │ │ │ │ │ └── 3145d096fde2294bd3b7d9c578bd5abaffd31231.svn-base │ │ │ │ ├── 44 │ │ │ │ │ └── 4440a9b9e1e4640aa138a62e9e5481e9fa29c034.svn-base │ │ │ │ ├── 59 │ │ │ │ │ ├── 592041839193a87839e59ca0dcda346a8e9ff0b8.svn-base │ │ │ │ │ └── 592269b00354bb72dcee4ae2ae274aebfe0849a9.svn-base │ │ │ │ ├── 87 │ │ │ │ │ └── 87fd1919ae4d3a3031630714b2e17d4482cef3d6.svn-base │ │ │ │ ├── 90 │ │ │ │ │ └── 906ee24b3af2f1846f42487a5b2c6b69cdcc2f8d.svn-base │ │ │ │ ├── 2e │ │ │ │ │ └── 2e632d9952c2282de656dd9bd640cc2b12dc05eb.svn-base │ │ │ │ ├── 4e │ │ │ │ │ └── 4e8da9414b2e142f6dfdb9692755f366f316f5ed.svn-base │ │ │ │ ├── 6e │ │ │ │ │ └── 6e910fa9c087a841a7f53af39b265bc12dcef589.svn-base │ │ │ │ ├── 7b │ │ │ │ │ └── 7b0432e190c4f0ccecc79811f10133c01d2e26d5.svn-base │ │ │ │ ├── 8f │ │ │ │ │ └── 8f21de660515be9bfb885130a4a2e388ea44e28d.svn-base │ │ │ │ ├── 9c │ │ │ │ │ └── 9c23ba4079440435371913ab550f3abbb9127755.svn-base │ │ │ │ ├── a2 │ │ │ │ │ └── a2070f0831aa4c841148a3e40d36a1d0c54ef797.svn-base │ │ │ │ ├── a6 │ │ │ │ │ └── a6630171f10c83e7fea4e8bc783b98acfa8473c7.svn-base │ │ │ │ ├── ab │ │ │ │ │ └── ab9199fca366c537d3c7bab1fb1cc3a14655f2f0.svn-base │ │ │ │ ├── b1 │ │ │ │ │ └── b1e3dd8cf39742b97470aa026a8f546ad76766ae.svn-base │ │ │ │ ├── b2 │ │ │ │ │ ├── b2a628eeb309735c1e14d3bc8e2c136dcb0c79bd.svn-base │ │ │ │ │ └── b2ee1d7d36113716e63194d5f6c6ac631555118f.svn-base │ │ │ │ ├── b8 │ │ │ │ │ └── b8b506383ffd5e18cdec79b65b0d77a1dc994ff5.svn-base │ │ │ │ ├── ba │ │ │ │ │ └── bac8560fa3da4dfc89480b443fc525f8c4d890d0.svn-base │ │ │ │ ├── bb │ │ │ │ │ └── bb616f93a4f185a84173f8dde10c7f877fc37c83.svn-base │ │ │ │ ├── c0 │ │ │ │ │ └── c058d04e94d650875f3fa7cd355c006d98920cbe.svn-base │ │ │ │ ├── ce │ │ │ │ │ └── ce362914e8ee6ed1978af7720ae665790c6f76a0.svn-base │ │ │ │ ├── d0 │ │ │ │ │ ├── d050e9d96e7b0c7de2a5dd13909172963b14ca4a.svn-base │ │ │ │ │ └── d0ee666a89b816ec0857e6d587f8d0a9aa61a156.svn-base │ │ │ │ ├── d1 │ │ │ │ │ └── d1e79d7a7ef7a2b187301be5a79dfaa3290b9436.svn-base │ │ │ │ ├── d3 │ │ │ │ │ └── d32bc8d18467ed7ee7381f92ee6620bef0856ee4.svn-base │ │ │ │ ├── dd │ │ │ │ │ └── dd2081e12a27f84cc73bffeee38d079bfc1b3110.svn-base │ │ │ │ ├── de │ │ │ │ │ └── de3f28877586c2132703f70cb0053c552ca56bc1.svn-base │ │ │ │ ├── e1 │ │ │ │ │ └── e1a681b0ab09f7be47e15a0e7c8e6ce69e1f944d.svn-base │ │ │ │ ├── e6 │ │ │ │ │ └── e67b92674d4b604167fa29b1f1e3e586c8ca2c29.svn-base │ │ │ │ └── ec │ │ │ │ │ └── ec82f906761914846013d63cc46bdb35248478e3.svn-base │ │ │ └── wc.db │ │ ├── GTMGatherInputStream.h │ │ ├── GTMGatherInputStream.m │ │ ├── GTMHTTPFetchHistory.h │ │ ├── GTMHTTPFetchHistory.m │ │ ├── GTMHTTPFetcher.h │ │ ├── GTMHTTPFetcher.m │ │ ├── GTMHTTPFetcher.xcodeproj │ │ │ └── project.pbxproj │ │ ├── GTMHTTPFetcherLogViewController.h │ │ ├── GTMHTTPFetcherLogViewController.m │ │ ├── GTMHTTPFetcherLogging.h │ │ ├── GTMHTTPFetcherLogging.m │ │ ├── GTMHTTPFetcherService.h │ │ ├── GTMHTTPFetcherService.m │ │ ├── GTMHTTPUploadFetcher.h │ │ ├── GTMHTTPUploadFetcher.m │ │ ├── GTMMIMEDocument.h │ │ ├── GTMMIMEDocument.m │ │ ├── GTMReadMonitorInputStream.h │ │ ├── GTMReadMonitorInputStream.m │ │ ├── ReleaseNotes.txt │ │ ├── Tests │ │ │ ├── Data │ │ │ │ └── gettysburgaddress.txt │ │ │ ├── GTMGatherInputStreamTest.m │ │ │ ├── GTMHTTPFetcherCachingTest.m │ │ │ ├── GTMHTTPFetcherFetchingTest.m │ │ │ ├── GTMHTTPFetcherServiceTest.m │ │ │ ├── GTMHTTPFetcherTestServer.h │ │ │ ├── GTMHTTPFetcherTestServer.m │ │ │ ├── GTMHTTPFetcherUtilityTest.m │ │ │ ├── GTMHTTPServer.h │ │ │ ├── GTMHTTPServer.m │ │ │ ├── GTMHTTPUploadFetcherTest.m │ │ │ ├── GTMMIMEDocumentTest.m │ │ │ └── GTMReadMonitorInputStreamTest.m │ │ └── UnitTests-Info.plist │ │ ├── Networking │ │ ├── GTLClientLoginAuthentication.h │ │ └── GTLClientLoginAuthentication.m │ │ ├── OAuth2 │ │ ├── .svn │ │ │ ├── entries │ │ │ ├── format │ │ │ ├── pristine │ │ │ │ ├── 10 │ │ │ │ │ └── 10ad891e525df78598c1f48e806dda06bfa24002.svn-base │ │ │ │ ├── 35 │ │ │ │ │ └── 35769594304b6761959adf3161a530b957ff8091.svn-base │ │ │ │ ├── 55 │ │ │ │ │ └── 55b54798338d6d4df170a6267e0a985175e9b479.svn-base │ │ │ │ ├── 56 │ │ │ │ │ └── 56f8b0041a0ab7da7e017905bd694f2936da66a0.svn-base │ │ │ │ ├── 68 │ │ │ │ │ └── 6818c574138f6f68e557e751eee38c8724c2e40d.svn-base │ │ │ │ ├── 96 │ │ │ │ │ └── 96524b147a425301a725ad53ea20da39c8c8833c.svn-base │ │ │ │ ├── 0c │ │ │ │ │ └── 0c9fdd8579afcd4766c623ad336e091a3066f2ef.svn-base │ │ │ │ ├── 1d │ │ │ │ │ └── 1d39a325791c2e05d5f56e951b7d951f819c74bc.svn-base │ │ │ │ ├── 5c │ │ │ │ │ └── 5c0b3294ed43b5816d74af2aea2edac681f525bf.svn-base │ │ │ │ ├── 5e │ │ │ │ │ └── 5e9711e7e325025804e9e6a45aa4c89b608a74e2.svn-base │ │ │ │ ├── 9c │ │ │ │ │ └── 9cb6904f029d3b9b7c325fa03ecdc9189688aea4.svn-base │ │ │ │ ├── e9 │ │ │ │ │ └── e9b449c08bab2a874a8fe63adf90a8c4d959512d.svn-base │ │ │ │ └── f3 │ │ │ │ │ └── f37666305f610897d9f548a6cc236d9c1eeae83a.svn-base │ │ │ └── wc.db │ │ ├── GTMOAuth2.xcodeproj │ │ │ └── project.pbxproj │ │ ├── GTMOAuth2Authentication.h │ │ ├── GTMOAuth2Authentication.m │ │ ├── GTMOAuth2SignIn.h │ │ ├── GTMOAuth2SignIn.m │ │ ├── Mac │ │ │ ├── GTMOAuth2Framework-Info.plist │ │ │ ├── GTMOAuth2Window.xib │ │ │ ├── GTMOAuth2WindowController.h │ │ │ └── GTMOAuth2WindowController.m │ │ ├── ReleaseNotes.txt │ │ └── Touch │ │ │ ├── GTMOAuth2ViewControllerTouch.h │ │ │ ├── GTMOAuth2ViewControllerTouch.m │ │ │ └── GTMOAuth2ViewTouch.xib │ │ ├── Objects │ │ ├── GTLBatchQuery.h │ │ ├── GTLBatchQuery.m │ │ ├── GTLBatchResult.h │ │ ├── GTLBatchResult.m │ │ ├── GTLDateTime.h │ │ ├── GTLDateTime.m │ │ ├── GTLErrorObject.h │ │ ├── GTLErrorObject.m │ │ ├── GTLObject.h │ │ ├── GTLObject.m │ │ ├── GTLQuery.h │ │ ├── GTLQuery.m │ │ ├── GTLRuntimeCommon.h │ │ ├── GTLRuntimeCommon.m │ │ ├── GTLService.h │ │ ├── GTLService.m │ │ ├── GTLUploadParameters.h │ │ └── GTLUploadParameters.m │ │ ├── ReleaseNotes.txt │ │ ├── Resources │ │ ├── DevTestTool-Info.plist │ │ ├── GTLFramework-Info.plist │ │ └── GTLUnitTests-Info.plist │ │ ├── Services │ │ ├── AdSense │ │ │ └── Generated │ │ │ │ ├── GTLAdSense.h │ │ │ │ ├── GTLAdSenseAccount.h │ │ │ │ ├── GTLAdSenseAccount.m │ │ │ │ ├── GTLAdSenseAccounts.h │ │ │ │ ├── GTLAdSenseAccounts.m │ │ │ │ ├── GTLAdSenseAdClient.h │ │ │ │ ├── GTLAdSenseAdClient.m │ │ │ │ ├── GTLAdSenseAdClients.h │ │ │ │ ├── GTLAdSenseAdClients.m │ │ │ │ ├── GTLAdSenseAdCode.h │ │ │ │ ├── GTLAdSenseAdCode.m │ │ │ │ ├── GTLAdSenseAdStyle.h │ │ │ │ ├── GTLAdSenseAdStyle.m │ │ │ │ ├── GTLAdSenseAdUnit.h │ │ │ │ ├── GTLAdSenseAdUnit.m │ │ │ │ ├── GTLAdSenseAdUnits.h │ │ │ │ ├── GTLAdSenseAdUnits.m │ │ │ │ ├── GTLAdSenseAdsenseReportsGenerateResponse.h │ │ │ │ ├── GTLAdSenseAdsenseReportsGenerateResponse.m │ │ │ │ ├── GTLAdSenseAlert.h │ │ │ │ ├── GTLAdSenseAlert.m │ │ │ │ ├── GTLAdSenseAlerts.h │ │ │ │ ├── GTLAdSenseAlerts.m │ │ │ │ ├── GTLAdSenseConstants.h │ │ │ │ ├── GTLAdSenseConstants.m │ │ │ │ ├── GTLAdSenseCustomChannel.h │ │ │ │ ├── GTLAdSenseCustomChannel.m │ │ │ │ ├── GTLAdSenseCustomChannels.h │ │ │ │ ├── GTLAdSenseCustomChannels.m │ │ │ │ ├── GTLAdSenseMetadata.h │ │ │ │ ├── GTLAdSenseMetadata.m │ │ │ │ ├── GTLAdSensePayment.h │ │ │ │ ├── GTLAdSensePayment.m │ │ │ │ ├── GTLAdSensePayments.h │ │ │ │ ├── GTLAdSensePayments.m │ │ │ │ ├── GTLAdSenseReportingMetadataEntry.h │ │ │ │ ├── GTLAdSenseReportingMetadataEntry.m │ │ │ │ ├── GTLAdSenseSavedAdStyle.h │ │ │ │ ├── GTLAdSenseSavedAdStyle.m │ │ │ │ ├── GTLAdSenseSavedAdStyles.h │ │ │ │ ├── GTLAdSenseSavedAdStyles.m │ │ │ │ ├── GTLAdSenseSavedReport.h │ │ │ │ ├── GTLAdSenseSavedReport.m │ │ │ │ ├── GTLAdSenseSavedReports.h │ │ │ │ ├── GTLAdSenseSavedReports.m │ │ │ │ ├── GTLAdSenseUrlChannel.h │ │ │ │ ├── GTLAdSenseUrlChannel.m │ │ │ │ ├── GTLAdSenseUrlChannels.h │ │ │ │ ├── GTLAdSenseUrlChannels.m │ │ │ │ ├── GTLAdSense_Sources.m │ │ │ │ ├── GTLQueryAdSense.h │ │ │ │ ├── GTLQueryAdSense.m │ │ │ │ ├── GTLServiceAdSense.h │ │ │ │ └── GTLServiceAdSense.m │ │ ├── Analytics │ │ │ └── Generated │ │ │ │ ├── GTLAnalytics.h │ │ │ │ ├── GTLAnalyticsAccount.h │ │ │ │ ├── GTLAnalyticsAccount.m │ │ │ │ ├── GTLAnalyticsAccountRef.h │ │ │ │ ├── GTLAnalyticsAccountRef.m │ │ │ │ ├── GTLAnalyticsAccountSummaries.h │ │ │ │ ├── GTLAnalyticsAccountSummaries.m │ │ │ │ ├── GTLAnalyticsAccountSummary.h │ │ │ │ ├── GTLAnalyticsAccountSummary.m │ │ │ │ ├── GTLAnalyticsAccounts.h │ │ │ │ ├── GTLAnalyticsAccounts.m │ │ │ │ ├── GTLAnalyticsColumn.h │ │ │ │ ├── GTLAnalyticsColumn.m │ │ │ │ ├── GTLAnalyticsColumns.h │ │ │ │ ├── GTLAnalyticsColumns.m │ │ │ │ ├── GTLAnalyticsConstants.h │ │ │ │ ├── GTLAnalyticsConstants.m │ │ │ │ ├── GTLAnalyticsCustomDataSource.h │ │ │ │ ├── GTLAnalyticsCustomDataSource.m │ │ │ │ ├── GTLAnalyticsCustomDataSources.h │ │ │ │ ├── GTLAnalyticsCustomDataSources.m │ │ │ │ ├── GTLAnalyticsDailyUpload.h │ │ │ │ ├── GTLAnalyticsDailyUpload.m │ │ │ │ ├── GTLAnalyticsDailyUploadAppend.h │ │ │ │ ├── GTLAnalyticsDailyUploadAppend.m │ │ │ │ ├── GTLAnalyticsDailyUploads.h │ │ │ │ ├── GTLAnalyticsDailyUploads.m │ │ │ │ ├── GTLAnalyticsEntityUserLink.h │ │ │ │ ├── GTLAnalyticsEntityUserLink.m │ │ │ │ ├── GTLAnalyticsEntityUserLinks.h │ │ │ │ ├── GTLAnalyticsEntityUserLinks.m │ │ │ │ ├── GTLAnalyticsExperiment.h │ │ │ │ ├── GTLAnalyticsExperiment.m │ │ │ │ ├── GTLAnalyticsExperiments.h │ │ │ │ ├── GTLAnalyticsExperiments.m │ │ │ │ ├── GTLAnalyticsGaData.h │ │ │ │ ├── GTLAnalyticsGaData.m │ │ │ │ ├── GTLAnalyticsGoal.h │ │ │ │ ├── GTLAnalyticsGoal.m │ │ │ │ ├── GTLAnalyticsGoals.h │ │ │ │ ├── GTLAnalyticsGoals.m │ │ │ │ ├── GTLAnalyticsMcfData.h │ │ │ │ ├── GTLAnalyticsMcfData.m │ │ │ │ ├── GTLAnalyticsProfile.h │ │ │ │ ├── GTLAnalyticsProfile.m │ │ │ │ ├── GTLAnalyticsProfileRef.h │ │ │ │ ├── GTLAnalyticsProfileRef.m │ │ │ │ ├── GTLAnalyticsProfileSummary.h │ │ │ │ ├── GTLAnalyticsProfileSummary.m │ │ │ │ ├── GTLAnalyticsProfiles.h │ │ │ │ ├── GTLAnalyticsProfiles.m │ │ │ │ ├── GTLAnalyticsRealtimeData.h │ │ │ │ ├── GTLAnalyticsRealtimeData.m │ │ │ │ ├── GTLAnalyticsSegment.h │ │ │ │ ├── GTLAnalyticsSegment.m │ │ │ │ ├── GTLAnalyticsSegments.h │ │ │ │ ├── GTLAnalyticsSegments.m │ │ │ │ ├── GTLAnalyticsUpload.h │ │ │ │ ├── GTLAnalyticsUpload.m │ │ │ │ ├── GTLAnalyticsUploads.h │ │ │ │ ├── GTLAnalyticsUploads.m │ │ │ │ ├── GTLAnalyticsUserRef.h │ │ │ │ ├── GTLAnalyticsUserRef.m │ │ │ │ ├── GTLAnalyticsWebPropertyRef.h │ │ │ │ ├── GTLAnalyticsWebPropertyRef.m │ │ │ │ ├── GTLAnalyticsWebPropertySummary.h │ │ │ │ ├── GTLAnalyticsWebPropertySummary.m │ │ │ │ ├── GTLAnalyticsWebproperties.h │ │ │ │ ├── GTLAnalyticsWebproperties.m │ │ │ │ ├── GTLAnalyticsWebproperty.h │ │ │ │ ├── GTLAnalyticsWebproperty.m │ │ │ │ ├── GTLAnalytics_Sources.m │ │ │ │ ├── GTLQueryAnalytics.h │ │ │ │ ├── GTLQueryAnalytics.m │ │ │ │ ├── GTLServiceAnalytics.h │ │ │ │ └── GTLServiceAnalytics.m │ │ ├── AppState │ │ │ └── Generated │ │ │ │ ├── GTLAppState.h │ │ │ │ ├── GTLAppStateConstants.h │ │ │ │ ├── GTLAppStateConstants.m │ │ │ │ ├── GTLAppStateGetResponse.h │ │ │ │ ├── GTLAppStateGetResponse.m │ │ │ │ ├── GTLAppStateListResponse.h │ │ │ │ ├── GTLAppStateListResponse.m │ │ │ │ ├── GTLAppStateUpdateRequest.h │ │ │ │ ├── GTLAppStateUpdateRequest.m │ │ │ │ ├── GTLAppStateWriteResult.h │ │ │ │ ├── GTLAppStateWriteResult.m │ │ │ │ ├── GTLAppState_Sources.m │ │ │ │ ├── GTLQueryAppState.h │ │ │ │ ├── GTLQueryAppState.m │ │ │ │ ├── GTLServiceAppState.h │ │ │ │ └── GTLServiceAppState.m │ │ ├── Bigquery │ │ │ └── Generated │ │ │ │ ├── GTLBigquery.h │ │ │ │ ├── GTLBigqueryConstants.h │ │ │ │ ├── GTLBigqueryConstants.m │ │ │ │ ├── GTLBigqueryDataset.h │ │ │ │ ├── GTLBigqueryDataset.m │ │ │ │ ├── GTLBigqueryDatasetList.h │ │ │ │ ├── GTLBigqueryDatasetList.m │ │ │ │ ├── GTLBigqueryDatasetReference.h │ │ │ │ ├── GTLBigqueryDatasetReference.m │ │ │ │ ├── GTLBigqueryErrorProto.h │ │ │ │ ├── GTLBigqueryErrorProto.m │ │ │ │ ├── GTLBigqueryGetQueryResultsResponse.h │ │ │ │ ├── GTLBigqueryGetQueryResultsResponse.m │ │ │ │ ├── GTLBigqueryJob.h │ │ │ │ ├── GTLBigqueryJob.m │ │ │ │ ├── GTLBigqueryJobConfiguration.h │ │ │ │ ├── GTLBigqueryJobConfiguration.m │ │ │ │ ├── GTLBigqueryJobConfigurationExtract.h │ │ │ │ ├── GTLBigqueryJobConfigurationExtract.m │ │ │ │ ├── GTLBigqueryJobConfigurationLink.h │ │ │ │ ├── GTLBigqueryJobConfigurationLink.m │ │ │ │ ├── GTLBigqueryJobConfigurationLoad.h │ │ │ │ ├── GTLBigqueryJobConfigurationLoad.m │ │ │ │ ├── GTLBigqueryJobConfigurationQuery.h │ │ │ │ ├── GTLBigqueryJobConfigurationQuery.m │ │ │ │ ├── GTLBigqueryJobConfigurationTableCopy.h │ │ │ │ ├── GTLBigqueryJobConfigurationTableCopy.m │ │ │ │ ├── GTLBigqueryJobList.h │ │ │ │ ├── GTLBigqueryJobList.m │ │ │ │ ├── GTLBigqueryJobReference.h │ │ │ │ ├── GTLBigqueryJobReference.m │ │ │ │ ├── GTLBigqueryJobStatistics.h │ │ │ │ ├── GTLBigqueryJobStatistics.m │ │ │ │ ├── GTLBigqueryJobStatistics2.h │ │ │ │ ├── GTLBigqueryJobStatistics2.m │ │ │ │ ├── GTLBigqueryJobStatistics3.h │ │ │ │ ├── GTLBigqueryJobStatistics3.m │ │ │ │ ├── GTLBigqueryJobStatus.h │ │ │ │ ├── GTLBigqueryJobStatus.m │ │ │ │ ├── GTLBigqueryJsonObject.h │ │ │ │ ├── GTLBigqueryJsonObject.m │ │ │ │ ├── GTLBigqueryProjectList.h │ │ │ │ ├── GTLBigqueryProjectList.m │ │ │ │ ├── GTLBigqueryProjectReference.h │ │ │ │ ├── GTLBigqueryProjectReference.m │ │ │ │ ├── GTLBigqueryQueryResponse.h │ │ │ │ ├── GTLBigqueryQueryResponse.m │ │ │ │ ├── GTLBigqueryTable.h │ │ │ │ ├── GTLBigqueryTable.m │ │ │ │ ├── GTLBigqueryTableCell.h │ │ │ │ ├── GTLBigqueryTableCell.m │ │ │ │ ├── GTLBigqueryTableDataInsertAllResponse.h │ │ │ │ ├── GTLBigqueryTableDataInsertAllResponse.m │ │ │ │ ├── GTLBigqueryTableDataList.h │ │ │ │ ├── GTLBigqueryTableDataList.m │ │ │ │ ├── GTLBigqueryTableFieldSchema.h │ │ │ │ ├── GTLBigqueryTableFieldSchema.m │ │ │ │ ├── GTLBigqueryTableList.h │ │ │ │ ├── GTLBigqueryTableList.m │ │ │ │ ├── GTLBigqueryTableReference.h │ │ │ │ ├── GTLBigqueryTableReference.m │ │ │ │ ├── GTLBigqueryTableRow.h │ │ │ │ ├── GTLBigqueryTableRow.m │ │ │ │ ├── GTLBigqueryTableSchema.h │ │ │ │ ├── GTLBigqueryTableSchema.m │ │ │ │ ├── GTLBigqueryViewDefinition.h │ │ │ │ ├── GTLBigqueryViewDefinition.m │ │ │ │ ├── GTLBigquery_Sources.m │ │ │ │ ├── GTLQueryBigquery.h │ │ │ │ ├── GTLQueryBigquery.m │ │ │ │ ├── GTLServiceBigquery.h │ │ │ │ └── GTLServiceBigquery.m │ │ ├── Blogger │ │ │ └── Generated │ │ │ │ ├── GTLBlogger.h │ │ │ │ ├── GTLBloggerBlog.h │ │ │ │ ├── GTLBloggerBlog.m │ │ │ │ ├── GTLBloggerBlogList.h │ │ │ │ ├── GTLBloggerBlogList.m │ │ │ │ ├── GTLBloggerBlogPerUserInfo.h │ │ │ │ ├── GTLBloggerBlogPerUserInfo.m │ │ │ │ ├── GTLBloggerBlogUserInfo.h │ │ │ │ ├── GTLBloggerBlogUserInfo.m │ │ │ │ ├── GTLBloggerComment.h │ │ │ │ ├── GTLBloggerComment.m │ │ │ │ ├── GTLBloggerCommentList.h │ │ │ │ ├── GTLBloggerCommentList.m │ │ │ │ ├── GTLBloggerConstants.h │ │ │ │ ├── GTLBloggerConstants.m │ │ │ │ ├── GTLBloggerPage.h │ │ │ │ ├── GTLBloggerPage.m │ │ │ │ ├── GTLBloggerPageList.h │ │ │ │ ├── GTLBloggerPageList.m │ │ │ │ ├── GTLBloggerPageviews.h │ │ │ │ ├── GTLBloggerPageviews.m │ │ │ │ ├── GTLBloggerPost.h │ │ │ │ ├── GTLBloggerPost.m │ │ │ │ ├── GTLBloggerPostList.h │ │ │ │ ├── GTLBloggerPostList.m │ │ │ │ ├── GTLBloggerPostPerUserInfo.h │ │ │ │ ├── GTLBloggerPostPerUserInfo.m │ │ │ │ ├── GTLBloggerPostUserInfo.h │ │ │ │ ├── GTLBloggerPostUserInfo.m │ │ │ │ ├── GTLBloggerPostUserInfosList.h │ │ │ │ ├── GTLBloggerPostUserInfosList.m │ │ │ │ ├── GTLBloggerUser.h │ │ │ │ ├── GTLBloggerUser.m │ │ │ │ ├── GTLBlogger_Sources.m │ │ │ │ ├── GTLQueryBlogger.h │ │ │ │ ├── GTLQueryBlogger.m │ │ │ │ ├── GTLServiceBlogger.h │ │ │ │ └── GTLServiceBlogger.m │ │ ├── Books │ │ │ └── Generated │ │ │ │ ├── GTLBooks.h │ │ │ │ ├── GTLBooksAnnotation.h │ │ │ │ ├── GTLBooksAnnotation.m │ │ │ │ ├── GTLBooksAnnotationdata.h │ │ │ │ ├── GTLBooksAnnotationdata.m │ │ │ │ ├── GTLBooksAnnotations.h │ │ │ │ ├── GTLBooksAnnotations.m │ │ │ │ ├── GTLBooksAnnotationsRange.h │ │ │ │ ├── GTLBooksAnnotationsRange.m │ │ │ │ ├── GTLBooksAnnotationsSummary.h │ │ │ │ ├── GTLBooksAnnotationsSummary.m │ │ │ │ ├── GTLBooksAnnotationsdata.h │ │ │ │ ├── GTLBooksAnnotationsdata.m │ │ │ │ ├── GTLBooksBookshelf.h │ │ │ │ ├── GTLBooksBookshelf.m │ │ │ │ ├── GTLBooksBookshelves.h │ │ │ │ ├── GTLBooksBookshelves.m │ │ │ │ ├── GTLBooksCloudloadingResource.h │ │ │ │ ├── GTLBooksCloudloadingResource.m │ │ │ │ ├── GTLBooksConcurrentAccessRestriction.h │ │ │ │ ├── GTLBooksConcurrentAccessRestriction.m │ │ │ │ ├── GTLBooksConstants.h │ │ │ │ ├── GTLBooksConstants.m │ │ │ │ ├── GTLBooksDictlayerdata.h │ │ │ │ ├── GTLBooksDictlayerdata.m │ │ │ │ ├── GTLBooksDownloadAccessRestriction.h │ │ │ │ ├── GTLBooksDownloadAccessRestriction.m │ │ │ │ ├── GTLBooksDownloadAccesses.h │ │ │ │ ├── GTLBooksDownloadAccesses.m │ │ │ │ ├── GTLBooksGeolayerdata.h │ │ │ │ ├── GTLBooksGeolayerdata.m │ │ │ │ ├── GTLBooksLayersummaries.h │ │ │ │ ├── GTLBooksLayersummaries.m │ │ │ │ ├── GTLBooksLayersummary.h │ │ │ │ ├── GTLBooksLayersummary.m │ │ │ │ ├── GTLBooksReadingPosition.h │ │ │ │ ├── GTLBooksReadingPosition.m │ │ │ │ ├── GTLBooksRequestAccess.h │ │ │ │ ├── GTLBooksRequestAccess.m │ │ │ │ ├── GTLBooksReview.h │ │ │ │ ├── GTLBooksReview.m │ │ │ │ ├── GTLBooksVolume.h │ │ │ │ ├── GTLBooksVolume.m │ │ │ │ ├── GTLBooksVolumeannotation.h │ │ │ │ ├── GTLBooksVolumeannotation.m │ │ │ │ ├── GTLBooksVolumeannotations.h │ │ │ │ ├── GTLBooksVolumeannotations.m │ │ │ │ ├── GTLBooksVolumes.h │ │ │ │ ├── GTLBooksVolumes.m │ │ │ │ ├── GTLBooksVolumesRecommendedRateResponse.h │ │ │ │ ├── GTLBooksVolumesRecommendedRateResponse.m │ │ │ │ ├── GTLBooks_Sources.m │ │ │ │ ├── GTLQueryBooks.h │ │ │ │ ├── GTLQueryBooks.m │ │ │ │ ├── GTLServiceBooks.h │ │ │ │ └── GTLServiceBooks.m │ │ ├── Calendar │ │ │ └── Generated │ │ │ │ ├── GTLCalendar.h │ │ │ │ ├── GTLCalendarAcl.h │ │ │ │ ├── GTLCalendarAcl.m │ │ │ │ ├── GTLCalendarAclRule.h │ │ │ │ ├── GTLCalendarAclRule.m │ │ │ │ ├── GTLCalendarCalendar.h │ │ │ │ ├── GTLCalendarCalendar.m │ │ │ │ ├── GTLCalendarCalendarList.h │ │ │ │ ├── GTLCalendarCalendarList.m │ │ │ │ ├── GTLCalendarCalendarListEntry.h │ │ │ │ ├── GTLCalendarCalendarListEntry.m │ │ │ │ ├── GTLCalendarChannel.h │ │ │ │ ├── GTLCalendarChannel.m │ │ │ │ ├── GTLCalendarColorDefinition.h │ │ │ │ ├── GTLCalendarColorDefinition.m │ │ │ │ ├── GTLCalendarColors.h │ │ │ │ ├── GTLCalendarColors.m │ │ │ │ ├── GTLCalendarConstants.h │ │ │ │ ├── GTLCalendarConstants.m │ │ │ │ ├── GTLCalendarError.h │ │ │ │ ├── GTLCalendarError.m │ │ │ │ ├── GTLCalendarEvent.h │ │ │ │ ├── GTLCalendarEvent.m │ │ │ │ ├── GTLCalendarEventAttendee.h │ │ │ │ ├── GTLCalendarEventAttendee.m │ │ │ │ ├── GTLCalendarEventDateTime.h │ │ │ │ ├── GTLCalendarEventDateTime.m │ │ │ │ ├── GTLCalendarEventReminder.h │ │ │ │ ├── GTLCalendarEventReminder.m │ │ │ │ ├── GTLCalendarEvents.h │ │ │ │ ├── GTLCalendarEvents.m │ │ │ │ ├── GTLCalendarFreeBusyCalendar.h │ │ │ │ ├── GTLCalendarFreeBusyCalendar.m │ │ │ │ ├── GTLCalendarFreeBusyGroup.h │ │ │ │ ├── GTLCalendarFreeBusyGroup.m │ │ │ │ ├── GTLCalendarFreeBusyRequestItem.h │ │ │ │ ├── GTLCalendarFreeBusyRequestItem.m │ │ │ │ ├── GTLCalendarFreeBusyResponse.h │ │ │ │ ├── GTLCalendarFreeBusyResponse.m │ │ │ │ ├── GTLCalendarNotification.h │ │ │ │ ├── GTLCalendarNotification.m │ │ │ │ ├── GTLCalendarSetting.h │ │ │ │ ├── GTLCalendarSetting.m │ │ │ │ ├── GTLCalendarSettings.h │ │ │ │ ├── GTLCalendarSettings.m │ │ │ │ ├── GTLCalendarTimePeriod.h │ │ │ │ ├── GTLCalendarTimePeriod.m │ │ │ │ ├── GTLCalendar_Sources.m │ │ │ │ ├── GTLQueryCalendar.h │ │ │ │ ├── GTLQueryCalendar.m │ │ │ │ ├── GTLServiceCalendar.h │ │ │ │ └── GTLServiceCalendar.m │ │ ├── CivicInfo │ │ │ └── Generated │ │ │ │ ├── GTLCivicInfo.h │ │ │ │ ├── GTLCivicInfoAdministrationRegion.h │ │ │ │ ├── GTLCivicInfoAdministrationRegion.m │ │ │ │ ├── GTLCivicInfoAdministrativeBody.h │ │ │ │ ├── GTLCivicInfoAdministrativeBody.m │ │ │ │ ├── GTLCivicInfoCandidate.h │ │ │ │ ├── GTLCivicInfoCandidate.m │ │ │ │ ├── GTLCivicInfoChannel.h │ │ │ │ ├── GTLCivicInfoChannel.m │ │ │ │ ├── GTLCivicInfoContest.h │ │ │ │ ├── GTLCivicInfoContest.m │ │ │ │ ├── GTLCivicInfoDivisionSearchResponse.h │ │ │ │ ├── GTLCivicInfoDivisionSearchResponse.m │ │ │ │ ├── GTLCivicInfoDivisionSearchResult.h │ │ │ │ ├── GTLCivicInfoDivisionSearchResult.m │ │ │ │ ├── GTLCivicInfoElection.h │ │ │ │ ├── GTLCivicInfoElection.m │ │ │ │ ├── GTLCivicInfoElectionOfficial.h │ │ │ │ ├── GTLCivicInfoElectionOfficial.m │ │ │ │ ├── GTLCivicInfoElectionsQueryResponse.h │ │ │ │ ├── GTLCivicInfoElectionsQueryResponse.m │ │ │ │ ├── GTLCivicInfoElectoralDistrict.h │ │ │ │ ├── GTLCivicInfoElectoralDistrict.m │ │ │ │ ├── GTLCivicInfoGeographicDivision.h │ │ │ │ ├── GTLCivicInfoGeographicDivision.m │ │ │ │ ├── GTLCivicInfoOffice.h │ │ │ │ ├── GTLCivicInfoOffice.m │ │ │ │ ├── GTLCivicInfoOfficial.h │ │ │ │ ├── GTLCivicInfoOfficial.m │ │ │ │ ├── GTLCivicInfoPollingLocation.h │ │ │ │ ├── GTLCivicInfoPollingLocation.m │ │ │ │ ├── GTLCivicInfoRepresentativeInfoResponse.h │ │ │ │ ├── GTLCivicInfoRepresentativeInfoResponse.m │ │ │ │ ├── GTLCivicInfoSimpleAddressType.h │ │ │ │ ├── GTLCivicInfoSimpleAddressType.m │ │ │ │ ├── GTLCivicInfoSource.h │ │ │ │ ├── GTLCivicInfoSource.m │ │ │ │ ├── GTLCivicInfoVoterInfoResponse.h │ │ │ │ ├── GTLCivicInfoVoterInfoResponse.m │ │ │ │ ├── GTLCivicInfo_Sources.m │ │ │ │ ├── GTLQueryCivicInfo.h │ │ │ │ ├── GTLQueryCivicInfo.m │ │ │ │ ├── GTLServiceCivicInfo.h │ │ │ │ └── GTLServiceCivicInfo.m │ │ ├── Compute │ │ │ └── Generated │ │ │ │ ├── GTLCompute.h │ │ │ │ ├── GTLComputeAccessConfig.h │ │ │ │ ├── GTLComputeAccessConfig.m │ │ │ │ ├── GTLComputeAttachedDisk.h │ │ │ │ ├── GTLComputeAttachedDisk.m │ │ │ │ ├── GTLComputeConstants.h │ │ │ │ ├── GTLComputeConstants.m │ │ │ │ ├── GTLComputeDeprecationStatus.h │ │ │ │ ├── GTLComputeDeprecationStatus.m │ │ │ │ ├── GTLComputeDisk.h │ │ │ │ ├── GTLComputeDisk.m │ │ │ │ ├── GTLComputeDiskList.h │ │ │ │ ├── GTLComputeDiskList.m │ │ │ │ ├── GTLComputeFirewall.h │ │ │ │ ├── GTLComputeFirewall.m │ │ │ │ ├── GTLComputeFirewallList.h │ │ │ │ ├── GTLComputeFirewallList.m │ │ │ │ ├── GTLComputeImage.h │ │ │ │ ├── GTLComputeImage.m │ │ │ │ ├── GTLComputeImageList.h │ │ │ │ ├── GTLComputeImageList.m │ │ │ │ ├── GTLComputeInstance.h │ │ │ │ ├── GTLComputeInstance.m │ │ │ │ ├── GTLComputeInstanceList.h │ │ │ │ ├── GTLComputeInstanceList.m │ │ │ │ ├── GTLComputeKernel.h │ │ │ │ ├── GTLComputeKernel.m │ │ │ │ ├── GTLComputeKernelList.h │ │ │ │ ├── GTLComputeKernelList.m │ │ │ │ ├── GTLComputeMachineType.h │ │ │ │ ├── GTLComputeMachineType.m │ │ │ │ ├── GTLComputeMachineTypeList.h │ │ │ │ ├── GTLComputeMachineTypeList.m │ │ │ │ ├── GTLComputeMetadata.h │ │ │ │ ├── GTLComputeMetadata.m │ │ │ │ ├── GTLComputeNetwork.h │ │ │ │ ├── GTLComputeNetwork.m │ │ │ │ ├── GTLComputeNetworkInterface.h │ │ │ │ ├── GTLComputeNetworkInterface.m │ │ │ │ ├── GTLComputeNetworkList.h │ │ │ │ ├── GTLComputeNetworkList.m │ │ │ │ ├── GTLComputeOperation.h │ │ │ │ ├── GTLComputeOperation.m │ │ │ │ ├── GTLComputeOperationList.h │ │ │ │ ├── GTLComputeOperationList.m │ │ │ │ ├── GTLComputeProject.h │ │ │ │ ├── GTLComputeProject.m │ │ │ │ ├── GTLComputeQuota.h │ │ │ │ ├── GTLComputeQuota.m │ │ │ │ ├── GTLComputeSerialPortOutput.h │ │ │ │ ├── GTLComputeSerialPortOutput.m │ │ │ │ ├── GTLComputeServiceAccount.h │ │ │ │ ├── GTLComputeServiceAccount.m │ │ │ │ ├── GTLComputeSnapshot.h │ │ │ │ ├── GTLComputeSnapshot.m │ │ │ │ ├── GTLComputeSnapshotList.h │ │ │ │ ├── GTLComputeSnapshotList.m │ │ │ │ ├── GTLComputeTags.h │ │ │ │ ├── GTLComputeTags.m │ │ │ │ ├── GTLComputeZone.h │ │ │ │ ├── GTLComputeZone.m │ │ │ │ ├── GTLComputeZoneList.h │ │ │ │ ├── GTLComputeZoneList.m │ │ │ │ ├── GTLCompute_Sources.m │ │ │ │ ├── GTLQueryCompute.h │ │ │ │ ├── GTLQueryCompute.m │ │ │ │ ├── GTLServiceCompute.h │ │ │ │ └── GTLServiceCompute.m │ │ ├── Discovery │ │ │ └── Generated │ │ │ │ ├── GTLDiscovery.h │ │ │ │ ├── GTLDiscoveryConstants.h │ │ │ │ ├── GTLDiscoveryConstants.m │ │ │ │ ├── GTLDiscoveryDirectoryList.h │ │ │ │ ├── GTLDiscoveryDirectoryList.m │ │ │ │ ├── GTLDiscoveryJsonSchema.h │ │ │ │ ├── GTLDiscoveryJsonSchema.m │ │ │ │ ├── GTLDiscoveryRestDescription.h │ │ │ │ ├── GTLDiscoveryRestDescription.m │ │ │ │ ├── GTLDiscoveryRestMethod.h │ │ │ │ ├── GTLDiscoveryRestMethod.m │ │ │ │ ├── GTLDiscoveryRestResource.h │ │ │ │ ├── GTLDiscoveryRestResource.m │ │ │ │ ├── GTLDiscoveryRpcDescription.h │ │ │ │ ├── GTLDiscoveryRpcDescription.m │ │ │ │ ├── GTLDiscoveryRpcMethod.h │ │ │ │ ├── GTLDiscoveryRpcMethod.m │ │ │ │ ├── GTLDiscovery_Sources.m │ │ │ │ ├── GTLQueryDiscovery.h │ │ │ │ ├── GTLQueryDiscovery.m │ │ │ │ ├── GTLServiceDiscovery.h │ │ │ │ └── GTLServiceDiscovery.m │ │ ├── DoubleClickBidManager │ │ │ └── Generated │ │ │ │ ├── GTLDoubleClickBidManager.h │ │ │ │ ├── GTLDoubleClickBidManagerConstants.h │ │ │ │ ├── GTLDoubleClickBidManagerConstants.m │ │ │ │ ├── GTLDoubleClickBidManagerDownloadLineItemsResponse.h │ │ │ │ ├── GTLDoubleClickBidManagerDownloadLineItemsResponse.m │ │ │ │ ├── GTLDoubleClickBidManagerFilterPair.h │ │ │ │ ├── GTLDoubleClickBidManagerFilterPair.m │ │ │ │ ├── GTLDoubleClickBidManagerListQueriesResponse.h │ │ │ │ ├── GTLDoubleClickBidManagerListQueriesResponse.m │ │ │ │ ├── GTLDoubleClickBidManagerListReportsResponse.h │ │ │ │ ├── GTLDoubleClickBidManagerListReportsResponse.m │ │ │ │ ├── GTLDoubleClickBidManagerParameters.h │ │ │ │ ├── GTLDoubleClickBidManagerParameters.m │ │ │ │ ├── GTLDoubleClickBidManagerQuery.h │ │ │ │ ├── GTLDoubleClickBidManagerQuery.m │ │ │ │ ├── GTLDoubleClickBidManagerQueryMetadata.h │ │ │ │ ├── GTLDoubleClickBidManagerQueryMetadata.m │ │ │ │ ├── GTLDoubleClickBidManagerQuerySchedule.h │ │ │ │ ├── GTLDoubleClickBidManagerQuerySchedule.m │ │ │ │ ├── GTLDoubleClickBidManagerReport.h │ │ │ │ ├── GTLDoubleClickBidManagerReport.m │ │ │ │ ├── GTLDoubleClickBidManagerReportFailure.h │ │ │ │ ├── GTLDoubleClickBidManagerReportFailure.m │ │ │ │ ├── GTLDoubleClickBidManagerReportKey.h │ │ │ │ ├── GTLDoubleClickBidManagerReportKey.m │ │ │ │ ├── GTLDoubleClickBidManagerReportMetadata.h │ │ │ │ ├── GTLDoubleClickBidManagerReportMetadata.m │ │ │ │ ├── GTLDoubleClickBidManagerReportStatus.h │ │ │ │ ├── GTLDoubleClickBidManagerReportStatus.m │ │ │ │ ├── GTLDoubleClickBidManagerRowStatus.h │ │ │ │ ├── GTLDoubleClickBidManagerRowStatus.m │ │ │ │ ├── GTLDoubleClickBidManagerUploadLineItemsResponse.h │ │ │ │ ├── GTLDoubleClickBidManagerUploadLineItemsResponse.m │ │ │ │ ├── GTLDoubleClickBidManagerUploadStatus.h │ │ │ │ ├── GTLDoubleClickBidManagerUploadStatus.m │ │ │ │ ├── GTLDoubleClickBidManager_Sources.m │ │ │ │ ├── GTLQueryDoubleClickBidManager.h │ │ │ │ ├── GTLQueryDoubleClickBidManager.m │ │ │ │ ├── GTLServiceDoubleClickBidManager.h │ │ │ │ └── GTLServiceDoubleClickBidManager.m │ │ ├── Drive │ │ │ └── Generated │ │ │ │ ├── GTLDrive.h │ │ │ │ ├── GTLDriveAbout.h │ │ │ │ ├── GTLDriveAbout.m │ │ │ │ ├── GTLDriveApp.h │ │ │ │ ├── GTLDriveApp.m │ │ │ │ ├── GTLDriveAppList.h │ │ │ │ ├── GTLDriveAppList.m │ │ │ │ ├── GTLDriveChange.h │ │ │ │ ├── GTLDriveChange.m │ │ │ │ ├── GTLDriveChangeList.h │ │ │ │ ├── GTLDriveChangeList.m │ │ │ │ ├── GTLDriveChannel.h │ │ │ │ ├── GTLDriveChannel.m │ │ │ │ ├── GTLDriveChildList.h │ │ │ │ ├── GTLDriveChildList.m │ │ │ │ ├── GTLDriveChildReference.h │ │ │ │ ├── GTLDriveChildReference.m │ │ │ │ ├── GTLDriveComment.h │ │ │ │ ├── GTLDriveComment.m │ │ │ │ ├── GTLDriveCommentList.h │ │ │ │ ├── GTLDriveCommentList.m │ │ │ │ ├── GTLDriveCommentReply.h │ │ │ │ ├── GTLDriveCommentReply.m │ │ │ │ ├── GTLDriveCommentReplyList.h │ │ │ │ ├── GTLDriveCommentReplyList.m │ │ │ │ ├── GTLDriveConstants.h │ │ │ │ ├── GTLDriveConstants.m │ │ │ │ ├── GTLDriveFile.h │ │ │ │ ├── GTLDriveFile.m │ │ │ │ ├── GTLDriveFileList.h │ │ │ │ ├── GTLDriveFileList.m │ │ │ │ ├── GTLDriveParentList.h │ │ │ │ ├── GTLDriveParentList.m │ │ │ │ ├── GTLDriveParentReference.h │ │ │ │ ├── GTLDriveParentReference.m │ │ │ │ ├── GTLDrivePermission.h │ │ │ │ ├── GTLDrivePermission.m │ │ │ │ ├── GTLDrivePermissionId.h │ │ │ │ ├── GTLDrivePermissionId.m │ │ │ │ ├── GTLDrivePermissionList.h │ │ │ │ ├── GTLDrivePermissionList.m │ │ │ │ ├── GTLDriveProperty.h │ │ │ │ ├── GTLDriveProperty.m │ │ │ │ ├── GTLDrivePropertyList.h │ │ │ │ ├── GTLDrivePropertyList.m │ │ │ │ ├── GTLDriveRevision.h │ │ │ │ ├── GTLDriveRevision.m │ │ │ │ ├── GTLDriveRevisionList.h │ │ │ │ ├── GTLDriveRevisionList.m │ │ │ │ ├── GTLDriveUser.h │ │ │ │ ├── GTLDriveUser.m │ │ │ │ ├── GTLDrive_Sources.m │ │ │ │ ├── GTLQueryDrive.h │ │ │ │ ├── GTLQueryDrive.m │ │ │ │ ├── GTLServiceDrive.h │ │ │ │ └── GTLServiceDrive.m │ │ ├── Groupssettings │ │ │ └── Generated │ │ │ │ ├── GTLGroupssettings.h │ │ │ │ ├── GTLGroupssettingsConstants.h │ │ │ │ ├── GTLGroupssettingsConstants.m │ │ │ │ ├── GTLGroupssettingsGroups.h │ │ │ │ ├── GTLGroupssettingsGroups.m │ │ │ │ ├── GTLGroupssettings_Sources.m │ │ │ │ ├── GTLQueryGroupssettings.h │ │ │ │ ├── GTLQueryGroupssettings.m │ │ │ │ ├── GTLServiceGroupssettings.h │ │ │ │ └── GTLServiceGroupssettings.m │ │ ├── Licensing │ │ │ └── Generated │ │ │ │ ├── GTLLicensing.h │ │ │ │ ├── GTLLicensingLicenseAssignment.h │ │ │ │ ├── GTLLicensingLicenseAssignment.m │ │ │ │ ├── GTLLicensingLicenseAssignmentInsert.h │ │ │ │ ├── GTLLicensingLicenseAssignmentInsert.m │ │ │ │ ├── GTLLicensingLicenseAssignmentList.h │ │ │ │ ├── GTLLicensingLicenseAssignmentList.m │ │ │ │ ├── GTLLicensing_Sources.m │ │ │ │ ├── GTLQueryLicensing.h │ │ │ │ ├── GTLQueryLicensing.m │ │ │ │ ├── GTLServiceLicensing.h │ │ │ │ └── GTLServiceLicensing.m │ │ ├── MapsEngine │ │ │ └── Generated │ │ │ │ ├── GTLMapsEngine.h │ │ │ │ ├── GTLMapsEngineAcquisitionTime.h │ │ │ │ ├── GTLMapsEngineAcquisitionTime.m │ │ │ │ ├── GTLMapsEngineAsset.h │ │ │ │ ├── GTLMapsEngineAsset.m │ │ │ │ ├── GTLMapsEngineAssetsListResponse.h │ │ │ │ ├── GTLMapsEngineAssetsListResponse.m │ │ │ │ ├── GTLMapsEngineBorder.h │ │ │ │ ├── GTLMapsEngineBorder.m │ │ │ │ ├── GTLMapsEngineColor.h │ │ │ │ ├── GTLMapsEngineColor.m │ │ │ │ ├── GTLMapsEngineConstants.h │ │ │ │ ├── GTLMapsEngineConstants.m │ │ │ │ ├── GTLMapsEngineDatasource.h │ │ │ │ ├── GTLMapsEngineDatasource.m │ │ │ │ ├── GTLMapsEngineDisplayRule.h │ │ │ │ ├── GTLMapsEngineDisplayRule.m │ │ │ │ ├── GTLMapsEngineFeature.h │ │ │ │ ├── GTLMapsEngineFeature.m │ │ │ │ ├── GTLMapsEngineFeatureInfo.h │ │ │ │ ├── GTLMapsEngineFeatureInfo.m │ │ │ │ ├── GTLMapsEngineFeaturesListResponse.h │ │ │ │ ├── GTLMapsEngineFeaturesListResponse.m │ │ │ │ ├── GTLMapsEngineFile.h │ │ │ │ ├── GTLMapsEngineFile.m │ │ │ │ ├── GTLMapsEngineFilter.h │ │ │ │ ├── GTLMapsEngineFilter.m │ │ │ │ ├── GTLMapsEngineGeoJsonGeometry.h │ │ │ │ ├── GTLMapsEngineGeoJsonGeometry.m │ │ │ │ ├── GTLMapsEngineGeoJsonGeometryCollection.h │ │ │ │ ├── GTLMapsEngineGeoJsonGeometryCollection.m │ │ │ │ ├── GTLMapsEngineGeoJsonLineString.h │ │ │ │ ├── GTLMapsEngineGeoJsonLineString.m │ │ │ │ ├── GTLMapsEngineGeoJsonMultiLineString.h │ │ │ │ ├── GTLMapsEngineGeoJsonMultiLineString.m │ │ │ │ ├── GTLMapsEngineGeoJsonMultiPoint.h │ │ │ │ ├── GTLMapsEngineGeoJsonMultiPoint.m │ │ │ │ ├── GTLMapsEngineGeoJsonMultiPolygon.h │ │ │ │ ├── GTLMapsEngineGeoJsonMultiPolygon.m │ │ │ │ ├── GTLMapsEngineGeoJsonPoint.h │ │ │ │ ├── GTLMapsEngineGeoJsonPoint.m │ │ │ │ ├── GTLMapsEngineGeoJsonPolygon.h │ │ │ │ ├── GTLMapsEngineGeoJsonPolygon.m │ │ │ │ ├── GTLMapsEngineGeoJsonProperties.h │ │ │ │ ├── GTLMapsEngineGeoJsonProperties.m │ │ │ │ ├── GTLMapsEngineIconStyle.h │ │ │ │ ├── GTLMapsEngineIconStyle.m │ │ │ │ ├── GTLMapsEngineImage.h │ │ │ │ ├── GTLMapsEngineImage.m │ │ │ │ ├── GTLMapsEngineLabelStyle.h │ │ │ │ ├── GTLMapsEngineLabelStyle.m │ │ │ │ ├── GTLMapsEngineLayer.h │ │ │ │ ├── GTLMapsEngineLayer.m │ │ │ │ ├── GTLMapsEngineLayersListResponse.h │ │ │ │ ├── GTLMapsEngineLayersListResponse.m │ │ │ │ ├── GTLMapsEngineLineStyle.h │ │ │ │ ├── GTLMapsEngineLineStyle.m │ │ │ │ ├── GTLMapsEngineMap.h │ │ │ │ ├── GTLMapsEngineMap.m │ │ │ │ ├── GTLMapsEngineMapFolder.h │ │ │ │ ├── GTLMapsEngineMapFolder.m │ │ │ │ ├── GTLMapsEngineMapItem.h │ │ │ │ ├── GTLMapsEngineMapItem.m │ │ │ │ ├── GTLMapsEngineMapKmlLink.h │ │ │ │ ├── GTLMapsEngineMapKmlLink.m │ │ │ │ ├── GTLMapsEngineMapLayer.h │ │ │ │ ├── GTLMapsEngineMapLayer.m │ │ │ │ ├── GTLMapsEngineMapsListResponse.h │ │ │ │ ├── GTLMapsEngineMapsListResponse.m │ │ │ │ ├── GTLMapsEngineParent.h │ │ │ │ ├── GTLMapsEngineParent.m │ │ │ │ ├── GTLMapsEngineParentsListResponse.h │ │ │ │ ├── GTLMapsEngineParentsListResponse.m │ │ │ │ ├── GTLMapsEnginePointStyle.h │ │ │ │ ├── GTLMapsEnginePointStyle.m │ │ │ │ ├── GTLMapsEnginePolygonStyle.h │ │ │ │ ├── GTLMapsEnginePolygonStyle.m │ │ │ │ ├── GTLMapsEngineProcessResponse.h │ │ │ │ ├── GTLMapsEngineProcessResponse.m │ │ │ │ ├── GTLMapsEngineProject.h │ │ │ │ ├── GTLMapsEngineProject.m │ │ │ │ ├── GTLMapsEngineProjectsListResponse.h │ │ │ │ ├── GTLMapsEngineProjectsListResponse.m │ │ │ │ ├── GTLMapsEnginePublishResponse.h │ │ │ │ ├── GTLMapsEnginePublishResponse.m │ │ │ │ ├── GTLMapsEngineRaster.h │ │ │ │ ├── GTLMapsEngineRaster.m │ │ │ │ ├── GTLMapsEngineRasterCollection.h │ │ │ │ ├── GTLMapsEngineRasterCollection.m │ │ │ │ ├── GTLMapsEngineRasterCollectionsRasterBatchDeleteRequest.h │ │ │ │ ├── GTLMapsEngineRasterCollectionsRasterBatchDeleteRequest.m │ │ │ │ ├── GTLMapsEngineRasterCollectionsRastersBatchDeleteResponse.h │ │ │ │ ├── GTLMapsEngineRasterCollectionsRastersBatchDeleteResponse.m │ │ │ │ ├── GTLMapsEngineRasterCollectionsRastersBatchInsertRequest.h │ │ │ │ ├── GTLMapsEngineRasterCollectionsRastersBatchInsertRequest.m │ │ │ │ ├── GTLMapsEngineRasterCollectionsRastersBatchInsertResponse.h │ │ │ │ ├── GTLMapsEngineRasterCollectionsRastersBatchInsertResponse.m │ │ │ │ ├── GTLMapsEngineRastercollectionsListResponse.h │ │ │ │ ├── GTLMapsEngineRastercollectionsListResponse.m │ │ │ │ ├── GTLMapsEngineRastersListResponse.h │ │ │ │ ├── GTLMapsEngineRastersListResponse.m │ │ │ │ ├── GTLMapsEngineSchema.h │ │ │ │ ├── GTLMapsEngineSchema.m │ │ │ │ ├── GTLMapsEngineTable.h │ │ │ │ ├── GTLMapsEngineTable.m │ │ │ │ ├── GTLMapsEngineTableColumn.h │ │ │ │ ├── GTLMapsEngineTableColumn.m │ │ │ │ ├── GTLMapsEngineTablesListResponse.h │ │ │ │ ├── GTLMapsEngineTablesListResponse.m │ │ │ │ ├── GTLMapsEngineVectorStyle.h │ │ │ │ ├── GTLMapsEngineVectorStyle.m │ │ │ │ ├── GTLMapsEngineZoomLevels.h │ │ │ │ ├── GTLMapsEngineZoomLevels.m │ │ │ │ ├── GTLMapsEngine_Sources.m │ │ │ │ ├── GTLQueryMapsEngine.h │ │ │ │ ├── GTLQueryMapsEngine.m │ │ │ │ ├── GTLServiceMapsEngine.h │ │ │ │ └── GTLServiceMapsEngine.m │ │ ├── Mirror │ │ │ └── Generated │ │ │ │ ├── GTLMirror.h │ │ │ │ ├── GTLMirrorAccount.h │ │ │ │ ├── GTLMirrorAccount.m │ │ │ │ ├── GTLMirrorAttachment.h │ │ │ │ ├── GTLMirrorAttachment.m │ │ │ │ ├── GTLMirrorAttachmentsListResponse.h │ │ │ │ ├── GTLMirrorAttachmentsListResponse.m │ │ │ │ ├── GTLMirrorAuthToken.h │ │ │ │ ├── GTLMirrorAuthToken.m │ │ │ │ ├── GTLMirrorCommand.h │ │ │ │ ├── GTLMirrorCommand.m │ │ │ │ ├── GTLMirrorConstants.h │ │ │ │ ├── GTLMirrorConstants.m │ │ │ │ ├── GTLMirrorContact.h │ │ │ │ ├── GTLMirrorContact.m │ │ │ │ ├── GTLMirrorContactsListResponse.h │ │ │ │ ├── GTLMirrorContactsListResponse.m │ │ │ │ ├── GTLMirrorLocation.h │ │ │ │ ├── GTLMirrorLocation.m │ │ │ │ ├── GTLMirrorLocationsListResponse.h │ │ │ │ ├── GTLMirrorLocationsListResponse.m │ │ │ │ ├── GTLMirrorMenuItem.h │ │ │ │ ├── GTLMirrorMenuItem.m │ │ │ │ ├── GTLMirrorMenuValue.h │ │ │ │ ├── GTLMirrorMenuValue.m │ │ │ │ ├── GTLMirrorNotification.h │ │ │ │ ├── GTLMirrorNotification.m │ │ │ │ ├── GTLMirrorNotificationConfig.h │ │ │ │ ├── GTLMirrorNotificationConfig.m │ │ │ │ ├── GTLMirrorSubscription.h │ │ │ │ ├── GTLMirrorSubscription.m │ │ │ │ ├── GTLMirrorSubscriptionsListResponse.h │ │ │ │ ├── GTLMirrorSubscriptionsListResponse.m │ │ │ │ ├── GTLMirrorTimelineItem.h │ │ │ │ ├── GTLMirrorTimelineItem.m │ │ │ │ ├── GTLMirrorTimelineListResponse.h │ │ │ │ ├── GTLMirrorTimelineListResponse.m │ │ │ │ ├── GTLMirrorUserAction.h │ │ │ │ ├── GTLMirrorUserAction.m │ │ │ │ ├── GTLMirrorUserData.h │ │ │ │ ├── GTLMirrorUserData.m │ │ │ │ ├── GTLMirror_Sources.m │ │ │ │ ├── GTLQueryMirror.h │ │ │ │ ├── GTLQueryMirror.m │ │ │ │ ├── GTLServiceMirror.h │ │ │ │ └── GTLServiceMirror.m │ │ ├── Orkut │ │ │ └── Generated │ │ │ │ ├── GTLOrkut.h │ │ │ │ ├── GTLOrkutAcl.h │ │ │ │ ├── GTLOrkutAcl.m │ │ │ │ ├── GTLOrkutActivity.h │ │ │ │ ├── GTLOrkutActivity.m │ │ │ │ ├── GTLOrkutActivityList.h │ │ │ │ ├── GTLOrkutActivityList.m │ │ │ │ ├── GTLOrkutActivityobjectsResource.h │ │ │ │ ├── GTLOrkutActivityobjectsResource.m │ │ │ │ ├── GTLOrkutActivitypersonResource.h │ │ │ │ ├── GTLOrkutActivitypersonResource.m │ │ │ │ ├── GTLOrkutAuthorResource.h │ │ │ │ ├── GTLOrkutAuthorResource.m │ │ │ │ ├── GTLOrkutBadge.h │ │ │ │ ├── GTLOrkutBadge.m │ │ │ │ ├── GTLOrkutBadgeList.h │ │ │ │ ├── GTLOrkutBadgeList.m │ │ │ │ ├── GTLOrkutComment.h │ │ │ │ ├── GTLOrkutComment.m │ │ │ │ ├── GTLOrkutCommentList.h │ │ │ │ ├── GTLOrkutCommentList.m │ │ │ │ ├── GTLOrkutCommunity.h │ │ │ │ ├── GTLOrkutCommunity.m │ │ │ │ ├── GTLOrkutCommunityList.h │ │ │ │ ├── GTLOrkutCommunityList.m │ │ │ │ ├── GTLOrkutCommunityMembers.h │ │ │ │ ├── GTLOrkutCommunityMembers.m │ │ │ │ ├── GTLOrkutCommunityMembersList.h │ │ │ │ ├── GTLOrkutCommunityMembersList.m │ │ │ │ ├── GTLOrkutCommunityMembershipStatus.h │ │ │ │ ├── GTLOrkutCommunityMembershipStatus.m │ │ │ │ ├── GTLOrkutCommunityMessage.h │ │ │ │ ├── GTLOrkutCommunityMessage.m │ │ │ │ ├── GTLOrkutCommunityMessageList.h │ │ │ │ ├── GTLOrkutCommunityMessageList.m │ │ │ │ ├── GTLOrkutCommunityPoll.h │ │ │ │ ├── GTLOrkutCommunityPoll.m │ │ │ │ ├── GTLOrkutCommunityPollComment.h │ │ │ │ ├── GTLOrkutCommunityPollComment.m │ │ │ │ ├── GTLOrkutCommunityPollCommentList.h │ │ │ │ ├── GTLOrkutCommunityPollCommentList.m │ │ │ │ ├── GTLOrkutCommunityPollList.h │ │ │ │ ├── GTLOrkutCommunityPollList.m │ │ │ │ ├── GTLOrkutCommunityPollVote.h │ │ │ │ ├── GTLOrkutCommunityPollVote.m │ │ │ │ ├── GTLOrkutCommunityTopic.h │ │ │ │ ├── GTLOrkutCommunityTopic.m │ │ │ │ ├── GTLOrkutCommunityTopicList.h │ │ │ │ ├── GTLOrkutCommunityTopicList.m │ │ │ │ ├── GTLOrkutCommunitypolloptionResource.h │ │ │ │ ├── GTLOrkutCommunitypolloptionResource.m │ │ │ │ ├── GTLOrkutConstants.h │ │ │ │ ├── GTLOrkutConstants.m │ │ │ │ ├── GTLOrkutCounterResource.h │ │ │ │ ├── GTLOrkutCounterResource.m │ │ │ │ ├── GTLOrkutCounters.h │ │ │ │ ├── GTLOrkutCounters.m │ │ │ │ ├── GTLOrkutLinkResource.h │ │ │ │ ├── GTLOrkutLinkResource.m │ │ │ │ ├── GTLOrkutVisibility.h │ │ │ │ ├── GTLOrkutVisibility.m │ │ │ │ ├── GTLOrkut_Sources.m │ │ │ │ ├── GTLQueryOrkut.h │ │ │ │ ├── GTLQueryOrkut.m │ │ │ │ ├── GTLServiceOrkut.h │ │ │ │ └── GTLServiceOrkut.m │ │ ├── Plus │ │ │ └── Generated │ │ │ │ ├── GTLPlus.h │ │ │ │ ├── GTLPlusAcl.h │ │ │ │ ├── GTLPlusAcl.m │ │ │ │ ├── GTLPlusAclentryResource.h │ │ │ │ ├── GTLPlusAclentryResource.m │ │ │ │ ├── GTLPlusActivity.h │ │ │ │ ├── GTLPlusActivity.m │ │ │ │ ├── GTLPlusActivityFeed.h │ │ │ │ ├── GTLPlusActivityFeed.m │ │ │ │ ├── GTLPlusComment.h │ │ │ │ ├── GTLPlusComment.m │ │ │ │ ├── GTLPlusCommentFeed.h │ │ │ │ ├── GTLPlusCommentFeed.m │ │ │ │ ├── GTLPlusConstants.h │ │ │ │ ├── GTLPlusConstants.m │ │ │ │ ├── GTLPlusItemScope.h │ │ │ │ ├── GTLPlusItemScope.m │ │ │ │ ├── GTLPlusMoment.h │ │ │ │ ├── GTLPlusMoment.m │ │ │ │ ├── GTLPlusMomentsFeed.h │ │ │ │ ├── GTLPlusMomentsFeed.m │ │ │ │ ├── GTLPlusPeopleFeed.h │ │ │ │ ├── GTLPlusPeopleFeed.m │ │ │ │ ├── GTLPlusPerson.h │ │ │ │ ├── GTLPlusPerson.m │ │ │ │ ├── GTLPlusPlace.h │ │ │ │ ├── GTLPlusPlace.m │ │ │ │ ├── GTLPlus_Sources.m │ │ │ │ ├── GTLQueryPlus.h │ │ │ │ ├── GTLQueryPlus.m │ │ │ │ ├── GTLServicePlus.h │ │ │ │ └── GTLServicePlus.m │ │ ├── PlusDomains │ │ │ └── Generated │ │ │ │ ├── GTLPlusDomains.h │ │ │ │ ├── GTLPlusDomainsAcl.h │ │ │ │ ├── GTLPlusDomainsAcl.m │ │ │ │ ├── GTLPlusDomainsAclentryResource.h │ │ │ │ ├── GTLPlusDomainsAclentryResource.m │ │ │ │ ├── GTLPlusDomainsActivity.h │ │ │ │ ├── GTLPlusDomainsActivity.m │ │ │ │ ├── GTLPlusDomainsActivityFeed.h │ │ │ │ ├── GTLPlusDomainsActivityFeed.m │ │ │ │ ├── GTLPlusDomainsAudience.h │ │ │ │ ├── GTLPlusDomainsAudience.m │ │ │ │ ├── GTLPlusDomainsAudiencesFeed.h │ │ │ │ ├── GTLPlusDomainsAudiencesFeed.m │ │ │ │ ├── GTLPlusDomainsCircle.h │ │ │ │ ├── GTLPlusDomainsCircle.m │ │ │ │ ├── GTLPlusDomainsCircleFeed.h │ │ │ │ ├── GTLPlusDomainsCircleFeed.m │ │ │ │ ├── GTLPlusDomainsComment.h │ │ │ │ ├── GTLPlusDomainsComment.m │ │ │ │ ├── GTLPlusDomainsCommentFeed.h │ │ │ │ ├── GTLPlusDomainsCommentFeed.m │ │ │ │ ├── GTLPlusDomainsConstants.h │ │ │ │ ├── GTLPlusDomainsConstants.m │ │ │ │ ├── GTLPlusDomainsMedia.h │ │ │ │ ├── GTLPlusDomainsMedia.m │ │ │ │ ├── GTLPlusDomainsPeopleFeed.h │ │ │ │ ├── GTLPlusDomainsPeopleFeed.m │ │ │ │ ├── GTLPlusDomainsPerson.h │ │ │ │ ├── GTLPlusDomainsPerson.m │ │ │ │ ├── GTLPlusDomainsPlace.h │ │ │ │ ├── GTLPlusDomainsPlace.m │ │ │ │ ├── GTLPlusDomainsVideostream.h │ │ │ │ ├── GTLPlusDomainsVideostream.m │ │ │ │ ├── GTLPlusDomains_Sources.m │ │ │ │ ├── GTLQueryPlusDomains.h │ │ │ │ ├── GTLQueryPlusDomains.m │ │ │ │ ├── GTLServicePlusDomains.h │ │ │ │ └── GTLServicePlusDomains.m │ │ ├── Prediction │ │ │ └── Generated │ │ │ │ ├── GTLPrediction.h │ │ │ │ ├── GTLPredictionAnalyze.h │ │ │ │ ├── GTLPredictionAnalyze.m │ │ │ │ ├── GTLPredictionConstants.h │ │ │ │ ├── GTLPredictionConstants.m │ │ │ │ ├── GTLPredictionInsert2.h │ │ │ │ ├── GTLPredictionInsert2.m │ │ │ │ ├── GTLPredictionList.h │ │ │ │ ├── GTLPredictionList.m │ │ │ │ ├── GTLPredictionOutput.h │ │ │ │ ├── GTLPredictionOutput.m │ │ │ │ ├── GTLPrediction_Sources.m │ │ │ │ ├── GTLQueryPrediction.h │ │ │ │ ├── GTLQueryPrediction.m │ │ │ │ ├── GTLServicePrediction.h │ │ │ │ └── GTLServicePrediction.m │ │ ├── QPXExpress │ │ │ └── Generated │ │ │ │ ├── GTLQPXExpress.h │ │ │ │ ├── GTLQPXExpressAircraftData.h │ │ │ │ ├── GTLQPXExpressAircraftData.m │ │ │ │ ├── GTLQPXExpressAirportData.h │ │ │ │ ├── GTLQPXExpressAirportData.m │ │ │ │ ├── GTLQPXExpressBagDescriptor.h │ │ │ │ ├── GTLQPXExpressBagDescriptor.m │ │ │ │ ├── GTLQPXExpressCarrierData.h │ │ │ │ ├── GTLQPXExpressCarrierData.m │ │ │ │ ├── GTLQPXExpressCityData.h │ │ │ │ ├── GTLQPXExpressCityData.m │ │ │ │ ├── GTLQPXExpressData.h │ │ │ │ ├── GTLQPXExpressData.m │ │ │ │ ├── GTLQPXExpressFareInfo.h │ │ │ │ ├── GTLQPXExpressFareInfo.m │ │ │ │ ├── GTLQPXExpressFlightInfo.h │ │ │ │ ├── GTLQPXExpressFlightInfo.m │ │ │ │ ├── GTLQPXExpressFreeBaggageAllowance.h │ │ │ │ ├── GTLQPXExpressFreeBaggageAllowance.m │ │ │ │ ├── GTLQPXExpressLegInfo.h │ │ │ │ ├── GTLQPXExpressLegInfo.m │ │ │ │ ├── GTLQPXExpressPassengerCounts.h │ │ │ │ ├── GTLQPXExpressPassengerCounts.m │ │ │ │ ├── GTLQPXExpressPricingInfo.h │ │ │ │ ├── GTLQPXExpressPricingInfo.m │ │ │ │ ├── GTLQPXExpressSegmentInfo.h │ │ │ │ ├── GTLQPXExpressSegmentInfo.m │ │ │ │ ├── GTLQPXExpressSegmentPricing.h │ │ │ │ ├── GTLQPXExpressSegmentPricing.m │ │ │ │ ├── GTLQPXExpressSliceInfo.h │ │ │ │ ├── GTLQPXExpressSliceInfo.m │ │ │ │ ├── GTLQPXExpressSliceInput.h │ │ │ │ ├── GTLQPXExpressSliceInput.m │ │ │ │ ├── GTLQPXExpressTaxData.h │ │ │ │ ├── GTLQPXExpressTaxData.m │ │ │ │ ├── GTLQPXExpressTaxInfo.h │ │ │ │ ├── GTLQPXExpressTaxInfo.m │ │ │ │ ├── GTLQPXExpressTimeOfDayRange.h │ │ │ │ ├── GTLQPXExpressTimeOfDayRange.m │ │ │ │ ├── GTLQPXExpressTripOption.h │ │ │ │ ├── GTLQPXExpressTripOption.m │ │ │ │ ├── GTLQPXExpressTripOptionsRequest.h │ │ │ │ ├── GTLQPXExpressTripOptionsRequest.m │ │ │ │ ├── GTLQPXExpressTripOptionsResponse.h │ │ │ │ ├── GTLQPXExpressTripOptionsResponse.m │ │ │ │ ├── GTLQPXExpressTripsSearchResponse.h │ │ │ │ ├── GTLQPXExpressTripsSearchResponse.m │ │ │ │ ├── GTLQPXExpress_Sources.m │ │ │ │ ├── GTLQueryQPXExpress.h │ │ │ │ ├── GTLQueryQPXExpress.m │ │ │ │ ├── GTLServiceQPXExpress.h │ │ │ │ └── GTLServiceQPXExpress.m │ │ ├── SQLAdmin │ │ │ └── Generated │ │ │ │ ├── GTLQuerySQLAdmin.h │ │ │ │ ├── GTLQuerySQLAdmin.m │ │ │ │ ├── GTLSQLAdmin.h │ │ │ │ ├── GTLSQLAdminBackupConfiguration.h │ │ │ │ ├── GTLSQLAdminBackupConfiguration.m │ │ │ │ ├── GTLSQLAdminBackupRun.h │ │ │ │ ├── GTLSQLAdminBackupRun.m │ │ │ │ ├── GTLSQLAdminBackupRunsListResponse.h │ │ │ │ ├── GTLSQLAdminBackupRunsListResponse.m │ │ │ │ ├── GTLSQLAdminBinLogCoordinates.h │ │ │ │ ├── GTLSQLAdminBinLogCoordinates.m │ │ │ │ ├── GTLSQLAdminCloneContext.h │ │ │ │ ├── GTLSQLAdminCloneContext.m │ │ │ │ ├── GTLSQLAdminConstants.h │ │ │ │ ├── GTLSQLAdminConstants.m │ │ │ │ ├── GTLSQLAdminDatabaseFlags.h │ │ │ │ ├── GTLSQLAdminDatabaseFlags.m │ │ │ │ ├── GTLSQLAdminDatabaseInstance.h │ │ │ │ ├── GTLSQLAdminDatabaseInstance.m │ │ │ │ ├── GTLSQLAdminExportContext.h │ │ │ │ ├── GTLSQLAdminExportContext.m │ │ │ │ ├── GTLSQLAdminFlag.h │ │ │ │ ├── GTLSQLAdminFlag.m │ │ │ │ ├── GTLSQLAdminFlagsListResponse.h │ │ │ │ ├── GTLSQLAdminFlagsListResponse.m │ │ │ │ ├── GTLSQLAdminImportContext.h │ │ │ │ ├── GTLSQLAdminImportContext.m │ │ │ │ ├── GTLSQLAdminInstanceOperation.h │ │ │ │ ├── GTLSQLAdminInstanceOperation.m │ │ │ │ ├── GTLSQLAdminInstancesCloneResponse.h │ │ │ │ ├── GTLSQLAdminInstancesCloneResponse.m │ │ │ │ ├── GTLSQLAdminInstancesDeleteResponse.h │ │ │ │ ├── GTLSQLAdminInstancesDeleteResponse.m │ │ │ │ ├── GTLSQLAdminInstancesExportResponse.h │ │ │ │ ├── GTLSQLAdminInstancesExportResponse.m │ │ │ │ ├── GTLSQLAdminInstancesImportResponse.h │ │ │ │ ├── GTLSQLAdminInstancesImportResponse.m │ │ │ │ ├── GTLSQLAdminInstancesInsertResponse.h │ │ │ │ ├── GTLSQLAdminInstancesInsertResponse.m │ │ │ │ ├── GTLSQLAdminInstancesListResponse.h │ │ │ │ ├── GTLSQLAdminInstancesListResponse.m │ │ │ │ ├── GTLSQLAdminInstancesResetSslConfigResponse.h │ │ │ │ ├── GTLSQLAdminInstancesResetSslConfigResponse.m │ │ │ │ ├── GTLSQLAdminInstancesRestartResponse.h │ │ │ │ ├── GTLSQLAdminInstancesRestartResponse.m │ │ │ │ ├── GTLSQLAdminInstancesRestoreBackupResponse.h │ │ │ │ ├── GTLSQLAdminInstancesRestoreBackupResponse.m │ │ │ │ ├── GTLSQLAdminInstancesSetRootPasswordResponse.h │ │ │ │ ├── GTLSQLAdminInstancesSetRootPasswordResponse.m │ │ │ │ ├── GTLSQLAdminInstancesUpdateResponse.h │ │ │ │ ├── GTLSQLAdminInstancesUpdateResponse.m │ │ │ │ ├── GTLSQLAdminIpConfiguration.h │ │ │ │ ├── GTLSQLAdminIpConfiguration.m │ │ │ │ ├── GTLSQLAdminIpMapping.h │ │ │ │ ├── GTLSQLAdminIpMapping.m │ │ │ │ ├── GTLSQLAdminLocationPreference.h │ │ │ │ ├── GTLSQLAdminLocationPreference.m │ │ │ │ ├── GTLSQLAdminOperationError.h │ │ │ │ ├── GTLSQLAdminOperationError.m │ │ │ │ ├── GTLSQLAdminOperationsListResponse.h │ │ │ │ ├── GTLSQLAdminOperationsListResponse.m │ │ │ │ ├── GTLSQLAdminSetRootPasswordContext.h │ │ │ │ ├── GTLSQLAdminSetRootPasswordContext.m │ │ │ │ ├── GTLSQLAdminSettings.h │ │ │ │ ├── GTLSQLAdminSettings.m │ │ │ │ ├── GTLSQLAdminSslCert.h │ │ │ │ ├── GTLSQLAdminSslCert.m │ │ │ │ ├── GTLSQLAdminSslCertDetail.h │ │ │ │ ├── GTLSQLAdminSslCertDetail.m │ │ │ │ ├── GTLSQLAdminSslCertsDeleteResponse.h │ │ │ │ ├── GTLSQLAdminSslCertsDeleteResponse.m │ │ │ │ ├── GTLSQLAdminSslCertsInsertResponse.h │ │ │ │ ├── GTLSQLAdminSslCertsInsertResponse.m │ │ │ │ ├── GTLSQLAdminSslCertsListResponse.h │ │ │ │ ├── GTLSQLAdminSslCertsListResponse.m │ │ │ │ ├── GTLSQLAdminTier.h │ │ │ │ ├── GTLSQLAdminTier.m │ │ │ │ ├── GTLSQLAdminTiersListResponse.h │ │ │ │ ├── GTLSQLAdminTiersListResponse.m │ │ │ │ ├── GTLSQLAdmin_Sources.m │ │ │ │ ├── GTLServiceSQLAdmin.h │ │ │ │ └── GTLServiceSQLAdmin.m │ │ ├── Spectrum │ │ │ └── Generated │ │ │ │ ├── GTLQuerySpectrum.h │ │ │ │ ├── GTLQuerySpectrum.m │ │ │ │ ├── GTLServiceSpectrum.h │ │ │ │ ├── GTLServiceSpectrum.m │ │ │ │ ├── GTLSpectrum.h │ │ │ │ ├── GTLSpectrumAntennaCharacteristics.h │ │ │ │ ├── GTLSpectrumAntennaCharacteristics.m │ │ │ │ ├── GTLSpectrumDatabaseSpec.h │ │ │ │ ├── GTLSpectrumDatabaseSpec.m │ │ │ │ ├── GTLSpectrumDbUpdateSpec.h │ │ │ │ ├── GTLSpectrumDbUpdateSpec.m │ │ │ │ ├── GTLSpectrumDeviceCapabilities.h │ │ │ │ ├── GTLSpectrumDeviceCapabilities.m │ │ │ │ ├── GTLSpectrumDeviceDescriptor.h │ │ │ │ ├── GTLSpectrumDeviceDescriptor.m │ │ │ │ ├── GTLSpectrumDeviceOwner.h │ │ │ │ ├── GTLSpectrumDeviceOwner.m │ │ │ │ ├── GTLSpectrumDeviceValidity.h │ │ │ │ ├── GTLSpectrumDeviceValidity.m │ │ │ │ ├── GTLSpectrumEventTime.h │ │ │ │ ├── GTLSpectrumEventTime.m │ │ │ │ ├── GTLSpectrumFrequencyRange.h │ │ │ │ ├── GTLSpectrumFrequencyRange.m │ │ │ │ ├── GTLSpectrumGeoLocation.h │ │ │ │ ├── GTLSpectrumGeoLocation.m │ │ │ │ ├── GTLSpectrumGeoLocationEllipse.h │ │ │ │ ├── GTLSpectrumGeoLocationEllipse.m │ │ │ │ ├── GTLSpectrumGeoLocationPoint.h │ │ │ │ ├── GTLSpectrumGeoLocationPoint.m │ │ │ │ ├── GTLSpectrumGeoLocationPolygon.h │ │ │ │ ├── GTLSpectrumGeoLocationPolygon.m │ │ │ │ ├── GTLSpectrumGeoSpectrumSchedule.h │ │ │ │ ├── GTLSpectrumGeoSpectrumSchedule.m │ │ │ │ ├── GTLSpectrumMessage.h │ │ │ │ ├── GTLSpectrumMessage.m │ │ │ │ ├── GTLSpectrumPawsGetSpectrumBatchResponse.h │ │ │ │ ├── GTLSpectrumPawsGetSpectrumBatchResponse.m │ │ │ │ ├── GTLSpectrumPawsGetSpectrumResponse.h │ │ │ │ ├── GTLSpectrumPawsGetSpectrumResponse.m │ │ │ │ ├── GTLSpectrumPawsInitResponse.h │ │ │ │ ├── GTLSpectrumPawsInitResponse.m │ │ │ │ ├── GTLSpectrumPawsNotifySpectrumUseResponse.h │ │ │ │ ├── GTLSpectrumPawsNotifySpectrumUseResponse.m │ │ │ │ ├── GTLSpectrumPawsRegisterResponse.h │ │ │ │ ├── GTLSpectrumPawsRegisterResponse.m │ │ │ │ ├── GTLSpectrumPawsVerifyDeviceResponse.h │ │ │ │ ├── GTLSpectrumPawsVerifyDeviceResponse.m │ │ │ │ ├── GTLSpectrumRulesetInfo.h │ │ │ │ ├── GTLSpectrumRulesetInfo.m │ │ │ │ ├── GTLSpectrumSchedule.h │ │ │ │ ├── GTLSpectrumSchedule.m │ │ │ │ ├── GTLSpectrumVcard.h │ │ │ │ ├── GTLSpectrumVcard.m │ │ │ │ ├── GTLSpectrumVcardAddress.h │ │ │ │ ├── GTLSpectrumVcardAddress.m │ │ │ │ ├── GTLSpectrumVcardTelephone.h │ │ │ │ ├── GTLSpectrumVcardTelephone.m │ │ │ │ ├── GTLSpectrumVcardTypedText.h │ │ │ │ ├── GTLSpectrumVcardTypedText.m │ │ │ │ └── GTLSpectrum_Sources.m │ │ ├── Storage │ │ │ └── Generated │ │ │ │ ├── GTLQueryStorage.h │ │ │ │ ├── GTLQueryStorage.m │ │ │ │ ├── GTLServiceStorage.h │ │ │ │ ├── GTLServiceStorage.m │ │ │ │ ├── GTLStorage.h │ │ │ │ ├── GTLStorageBucket.h │ │ │ │ ├── GTLStorageBucket.m │ │ │ │ ├── GTLStorageBucketAccessControl.h │ │ │ │ ├── GTLStorageBucketAccessControl.m │ │ │ │ ├── GTLStorageBucketAccessControls.h │ │ │ │ ├── GTLStorageBucketAccessControls.m │ │ │ │ ├── GTLStorageBuckets.h │ │ │ │ ├── GTLStorageBuckets.m │ │ │ │ ├── GTLStorageChannel.h │ │ │ │ ├── GTLStorageChannel.m │ │ │ │ ├── GTLStorageConstants.h │ │ │ │ ├── GTLStorageConstants.m │ │ │ │ ├── GTLStorageObject.h │ │ │ │ ├── GTLStorageObject.m │ │ │ │ ├── GTLStorageObjectAccessControl.h │ │ │ │ ├── GTLStorageObjectAccessControl.m │ │ │ │ ├── GTLStorageObjectAccessControls.h │ │ │ │ ├── GTLStorageObjectAccessControls.m │ │ │ │ ├── GTLStorageObjects.h │ │ │ │ ├── GTLStorageObjects.m │ │ │ │ └── GTLStorage_Sources.m │ │ ├── Tasks │ │ │ └── Generated │ │ │ │ ├── GTLQueryTasks.h │ │ │ │ ├── GTLQueryTasks.m │ │ │ │ ├── GTLServiceTasks.h │ │ │ │ ├── GTLServiceTasks.m │ │ │ │ ├── GTLTasks.h │ │ │ │ ├── GTLTasksConstants.h │ │ │ │ ├── GTLTasksConstants.m │ │ │ │ ├── GTLTasksTask.h │ │ │ │ ├── GTLTasksTask.m │ │ │ │ ├── GTLTasksTaskList.h │ │ │ │ ├── GTLTasksTaskList.m │ │ │ │ ├── GTLTasksTaskLists.h │ │ │ │ ├── GTLTasksTaskLists.m │ │ │ │ ├── GTLTasksTasks.h │ │ │ │ ├── GTLTasksTasks.m │ │ │ │ └── GTLTasks_Sources.m │ │ ├── Urlshortener │ │ │ └── Generated │ │ │ │ ├── GTLQueryUrlshortener.h │ │ │ │ ├── GTLQueryUrlshortener.m │ │ │ │ ├── GTLServiceUrlshortener.h │ │ │ │ ├── GTLServiceUrlshortener.m │ │ │ │ ├── GTLUrlshortener.h │ │ │ │ ├── GTLUrlshortenerAnalyticsSnapshot.h │ │ │ │ ├── GTLUrlshortenerAnalyticsSnapshot.m │ │ │ │ ├── GTLUrlshortenerAnalyticsSummary.h │ │ │ │ ├── GTLUrlshortenerAnalyticsSummary.m │ │ │ │ ├── GTLUrlshortenerConstants.h │ │ │ │ ├── GTLUrlshortenerConstants.m │ │ │ │ ├── GTLUrlshortenerStringCount.h │ │ │ │ ├── GTLUrlshortenerStringCount.m │ │ │ │ ├── GTLUrlshortenerUrl.h │ │ │ │ ├── GTLUrlshortenerUrl.m │ │ │ │ ├── GTLUrlshortenerUrlHistory.h │ │ │ │ ├── GTLUrlshortenerUrlHistory.m │ │ │ │ └── GTLUrlshortener_Sources.m │ │ ├── YouTube │ │ │ └── Generated │ │ │ │ ├── GTLQueryYouTube.h │ │ │ │ ├── GTLQueryYouTube.m │ │ │ │ ├── GTLServiceYouTube.h │ │ │ │ ├── GTLServiceYouTube.m │ │ │ │ ├── GTLYouTube.h │ │ │ │ ├── GTLYouTubeAccessPolicy.h │ │ │ │ ├── GTLYouTubeAccessPolicy.m │ │ │ │ ├── GTLYouTubeActivity.h │ │ │ │ ├── GTLYouTubeActivity.m │ │ │ │ ├── GTLYouTubeActivityContentDetails.h │ │ │ │ ├── GTLYouTubeActivityContentDetails.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsBulletin.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsBulletin.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsChannelItem.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsChannelItem.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsComment.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsComment.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsFavorite.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsFavorite.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsLike.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsLike.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsPlaylistItem.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsPlaylistItem.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsPromotedItem.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsPromotedItem.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsRecommendation.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsRecommendation.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsSocial.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsSocial.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsSubscription.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsSubscription.m │ │ │ │ ├── GTLYouTubeActivityContentDetailsUpload.h │ │ │ │ ├── GTLYouTubeActivityContentDetailsUpload.m │ │ │ │ ├── GTLYouTubeActivityListResponse.h │ │ │ │ ├── GTLYouTubeActivityListResponse.m │ │ │ │ ├── GTLYouTubeActivitySnippet.h │ │ │ │ ├── GTLYouTubeActivitySnippet.m │ │ │ │ ├── GTLYouTubeCdnSettings.h │ │ │ │ ├── GTLYouTubeCdnSettings.m │ │ │ │ ├── GTLYouTubeChannel.h │ │ │ │ ├── GTLYouTubeChannel.m │ │ │ │ ├── GTLYouTubeChannelAuditDetails.h │ │ │ │ ├── GTLYouTubeChannelAuditDetails.m │ │ │ │ ├── GTLYouTubeChannelBannerResource.h │ │ │ │ ├── GTLYouTubeChannelBannerResource.m │ │ │ │ ├── GTLYouTubeChannelBrandingSettings.h │ │ │ │ ├── GTLYouTubeChannelBrandingSettings.m │ │ │ │ ├── GTLYouTubeChannelContentDetails.h │ │ │ │ ├── GTLYouTubeChannelContentDetails.m │ │ │ │ ├── GTLYouTubeChannelContentOwnerDetails.h │ │ │ │ ├── GTLYouTubeChannelContentOwnerDetails.m │ │ │ │ ├── GTLYouTubeChannelConversionPing.h │ │ │ │ ├── GTLYouTubeChannelConversionPing.m │ │ │ │ ├── GTLYouTubeChannelConversionPings.h │ │ │ │ ├── GTLYouTubeChannelConversionPings.m │ │ │ │ ├── GTLYouTubeChannelListResponse.h │ │ │ │ ├── GTLYouTubeChannelListResponse.m │ │ │ │ ├── GTLYouTubeChannelSection.h │ │ │ │ ├── GTLYouTubeChannelSection.m │ │ │ │ ├── GTLYouTubeChannelSectionContentDetails.h │ │ │ │ ├── GTLYouTubeChannelSectionContentDetails.m │ │ │ │ ├── GTLYouTubeChannelSectionListResponse.h │ │ │ │ ├── GTLYouTubeChannelSectionListResponse.m │ │ │ │ ├── GTLYouTubeChannelSectionSnippet.h │ │ │ │ ├── GTLYouTubeChannelSectionSnippet.m │ │ │ │ ├── GTLYouTubeChannelSettings.h │ │ │ │ ├── GTLYouTubeChannelSettings.m │ │ │ │ ├── GTLYouTubeChannelSnippet.h │ │ │ │ ├── GTLYouTubeChannelSnippet.m │ │ │ │ ├── GTLYouTubeChannelStatistics.h │ │ │ │ ├── GTLYouTubeChannelStatistics.m │ │ │ │ ├── GTLYouTubeChannelStatus.h │ │ │ │ ├── GTLYouTubeChannelStatus.m │ │ │ │ ├── GTLYouTubeChannelTopicDetails.h │ │ │ │ ├── GTLYouTubeChannelTopicDetails.m │ │ │ │ ├── GTLYouTubeConstants.h │ │ │ │ ├── GTLYouTubeConstants.m │ │ │ │ ├── GTLYouTubeContentRating.h │ │ │ │ ├── GTLYouTubeContentRating.m │ │ │ │ ├── GTLYouTubeGeoPoint.h │ │ │ │ ├── GTLYouTubeGeoPoint.m │ │ │ │ ├── GTLYouTubeGuideCategory.h │ │ │ │ ├── GTLYouTubeGuideCategory.m │ │ │ │ ├── GTLYouTubeGuideCategoryListResponse.h │ │ │ │ ├── GTLYouTubeGuideCategoryListResponse.m │ │ │ │ ├── GTLYouTubeGuideCategorySnippet.h │ │ │ │ ├── GTLYouTubeGuideCategorySnippet.m │ │ │ │ ├── GTLYouTubeI18nLanguage.h │ │ │ │ ├── GTLYouTubeI18nLanguage.m │ │ │ │ ├── GTLYouTubeI18nLanguageListResponse.h │ │ │ │ ├── GTLYouTubeI18nLanguageListResponse.m │ │ │ │ ├── GTLYouTubeI18nLanguageSnippet.h │ │ │ │ ├── GTLYouTubeI18nLanguageSnippet.m │ │ │ │ ├── GTLYouTubeI18nRegion.h │ │ │ │ ├── GTLYouTubeI18nRegion.m │ │ │ │ ├── GTLYouTubeI18nRegionListResponse.h │ │ │ │ ├── GTLYouTubeI18nRegionListResponse.m │ │ │ │ ├── GTLYouTubeI18nRegionSnippet.h │ │ │ │ ├── GTLYouTubeI18nRegionSnippet.m │ │ │ │ ├── GTLYouTubeImageSettings.h │ │ │ │ ├── GTLYouTubeImageSettings.m │ │ │ │ ├── GTLYouTubeIngestionInfo.h │ │ │ │ ├── GTLYouTubeIngestionInfo.m │ │ │ │ ├── GTLYouTubeInvideoBranding.h │ │ │ │ ├── GTLYouTubeInvideoBranding.m │ │ │ │ ├── GTLYouTubeInvideoPosition.h │ │ │ │ ├── GTLYouTubeInvideoPosition.m │ │ │ │ ├── GTLYouTubeInvideoPromotion.h │ │ │ │ ├── GTLYouTubeInvideoPromotion.m │ │ │ │ ├── GTLYouTubeInvideoTiming.h │ │ │ │ ├── GTLYouTubeInvideoTiming.m │ │ │ │ ├── GTLYouTubeLiveBroadcast.h │ │ │ │ ├── GTLYouTubeLiveBroadcast.m │ │ │ │ ├── GTLYouTubeLiveBroadcastContentDetails.h │ │ │ │ ├── GTLYouTubeLiveBroadcastContentDetails.m │ │ │ │ ├── GTLYouTubeLiveBroadcastListResponse.h │ │ │ │ ├── GTLYouTubeLiveBroadcastListResponse.m │ │ │ │ ├── GTLYouTubeLiveBroadcastSnippet.h │ │ │ │ ├── GTLYouTubeLiveBroadcastSnippet.m │ │ │ │ ├── GTLYouTubeLiveBroadcastStatus.h │ │ │ │ ├── GTLYouTubeLiveBroadcastStatus.m │ │ │ │ ├── GTLYouTubeLiveStream.h │ │ │ │ ├── GTLYouTubeLiveStream.m │ │ │ │ ├── GTLYouTubeLiveStreamContentDetails.h │ │ │ │ ├── GTLYouTubeLiveStreamContentDetails.m │ │ │ │ ├── GTLYouTubeLiveStreamListResponse.h │ │ │ │ ├── GTLYouTubeLiveStreamListResponse.m │ │ │ │ ├── GTLYouTubeLiveStreamSnippet.h │ │ │ │ ├── GTLYouTubeLiveStreamSnippet.m │ │ │ │ ├── GTLYouTubeLiveStreamStatus.h │ │ │ │ ├── GTLYouTubeLiveStreamStatus.m │ │ │ │ ├── GTLYouTubeLocalizedProperty.h │ │ │ │ ├── GTLYouTubeLocalizedProperty.m │ │ │ │ ├── GTLYouTubeLocalizedString.h │ │ │ │ ├── GTLYouTubeLocalizedString.m │ │ │ │ ├── GTLYouTubeMonitorStreamInfo.h │ │ │ │ ├── GTLYouTubeMonitorStreamInfo.m │ │ │ │ ├── GTLYouTubePageInfo.h │ │ │ │ ├── GTLYouTubePageInfo.m │ │ │ │ ├── GTLYouTubePlaylist.h │ │ │ │ ├── GTLYouTubePlaylist.m │ │ │ │ ├── GTLYouTubePlaylistContentDetails.h │ │ │ │ ├── GTLYouTubePlaylistContentDetails.m │ │ │ │ ├── GTLYouTubePlaylistItem.h │ │ │ │ ├── GTLYouTubePlaylistItem.m │ │ │ │ ├── GTLYouTubePlaylistItemContentDetails.h │ │ │ │ ├── GTLYouTubePlaylistItemContentDetails.m │ │ │ │ ├── GTLYouTubePlaylistItemListResponse.h │ │ │ │ ├── GTLYouTubePlaylistItemListResponse.m │ │ │ │ ├── GTLYouTubePlaylistItemSnippet.h │ │ │ │ ├── GTLYouTubePlaylistItemSnippet.m │ │ │ │ ├── GTLYouTubePlaylistItemStatus.h │ │ │ │ ├── GTLYouTubePlaylistItemStatus.m │ │ │ │ ├── GTLYouTubePlaylistListResponse.h │ │ │ │ ├── GTLYouTubePlaylistListResponse.m │ │ │ │ ├── GTLYouTubePlaylistPlayer.h │ │ │ │ ├── GTLYouTubePlaylistPlayer.m │ │ │ │ ├── GTLYouTubePlaylistSnippet.h │ │ │ │ ├── GTLYouTubePlaylistSnippet.m │ │ │ │ ├── GTLYouTubePlaylistStatus.h │ │ │ │ ├── GTLYouTubePlaylistStatus.m │ │ │ │ ├── GTLYouTubePromotedItem.h │ │ │ │ ├── GTLYouTubePromotedItem.m │ │ │ │ ├── GTLYouTubePromotedItemId.h │ │ │ │ ├── GTLYouTubePromotedItemId.m │ │ │ │ ├── GTLYouTubePropertyValue.h │ │ │ │ ├── GTLYouTubePropertyValue.m │ │ │ │ ├── GTLYouTubeResourceId.h │ │ │ │ ├── GTLYouTubeResourceId.m │ │ │ │ ├── GTLYouTubeSearchListResponse.h │ │ │ │ ├── GTLYouTubeSearchListResponse.m │ │ │ │ ├── GTLYouTubeSearchResult.h │ │ │ │ ├── GTLYouTubeSearchResult.m │ │ │ │ ├── GTLYouTubeSearchResultSnippet.h │ │ │ │ ├── GTLYouTubeSearchResultSnippet.m │ │ │ │ ├── GTLYouTubeSubscription.h │ │ │ │ ├── GTLYouTubeSubscription.m │ │ │ │ ├── GTLYouTubeSubscriptionContentDetails.h │ │ │ │ ├── GTLYouTubeSubscriptionContentDetails.m │ │ │ │ ├── GTLYouTubeSubscriptionListResponse.h │ │ │ │ ├── GTLYouTubeSubscriptionListResponse.m │ │ │ │ ├── GTLYouTubeSubscriptionSnippet.h │ │ │ │ ├── GTLYouTubeSubscriptionSnippet.m │ │ │ │ ├── GTLYouTubeSubscriptionSubscriberSnippet.h │ │ │ │ ├── GTLYouTubeSubscriptionSubscriberSnippet.m │ │ │ │ ├── GTLYouTubeThumbnail.h │ │ │ │ ├── GTLYouTubeThumbnail.m │ │ │ │ ├── GTLYouTubeThumbnailDetails.h │ │ │ │ ├── GTLYouTubeThumbnailDetails.m │ │ │ │ ├── GTLYouTubeThumbnailSetResponse.h │ │ │ │ ├── GTLYouTubeThumbnailSetResponse.m │ │ │ │ ├── GTLYouTubeTokenPagination.h │ │ │ │ ├── GTLYouTubeTokenPagination.m │ │ │ │ ├── GTLYouTubeVideo.h │ │ │ │ ├── GTLYouTubeVideo.m │ │ │ │ ├── GTLYouTubeVideoAgeGating.h │ │ │ │ ├── GTLYouTubeVideoAgeGating.m │ │ │ │ ├── GTLYouTubeVideoCategory.h │ │ │ │ ├── GTLYouTubeVideoCategory.m │ │ │ │ ├── GTLYouTubeVideoCategoryListResponse.h │ │ │ │ ├── GTLYouTubeVideoCategoryListResponse.m │ │ │ │ ├── GTLYouTubeVideoCategorySnippet.h │ │ │ │ ├── GTLYouTubeVideoCategorySnippet.m │ │ │ │ ├── GTLYouTubeVideoContentDetails.h │ │ │ │ ├── GTLYouTubeVideoContentDetails.m │ │ │ │ ├── GTLYouTubeVideoContentDetailsRegionRestriction.h │ │ │ │ ├── GTLYouTubeVideoContentDetailsRegionRestriction.m │ │ │ │ ├── GTLYouTubeVideoConversionPing.h │ │ │ │ ├── GTLYouTubeVideoConversionPing.m │ │ │ │ ├── GTLYouTubeVideoConversionPings.h │ │ │ │ ├── GTLYouTubeVideoConversionPings.m │ │ │ │ ├── GTLYouTubeVideoFileDetails.h │ │ │ │ ├── GTLYouTubeVideoFileDetails.m │ │ │ │ ├── GTLYouTubeVideoFileDetailsAudioStream.h │ │ │ │ ├── GTLYouTubeVideoFileDetailsAudioStream.m │ │ │ │ ├── GTLYouTubeVideoFileDetailsVideoStream.h │ │ │ │ ├── GTLYouTubeVideoFileDetailsVideoStream.m │ │ │ │ ├── GTLYouTubeVideoGetRatingResponse.h │ │ │ │ ├── GTLYouTubeVideoGetRatingResponse.m │ │ │ │ ├── GTLYouTubeVideoListResponse.h │ │ │ │ ├── GTLYouTubeVideoListResponse.m │ │ │ │ ├── GTLYouTubeVideoLiveStreamingDetails.h │ │ │ │ ├── GTLYouTubeVideoLiveStreamingDetails.m │ │ │ │ ├── GTLYouTubeVideoMonetizationDetails.h │ │ │ │ ├── GTLYouTubeVideoMonetizationDetails.m │ │ │ │ ├── GTLYouTubeVideoPlayer.h │ │ │ │ ├── GTLYouTubeVideoPlayer.m │ │ │ │ ├── GTLYouTubeVideoProcessingDetails.h │ │ │ │ ├── GTLYouTubeVideoProcessingDetails.m │ │ │ │ ├── GTLYouTubeVideoProcessingDetailsProcessingProgress.h │ │ │ │ ├── GTLYouTubeVideoProcessingDetailsProcessingProgress.m │ │ │ │ ├── GTLYouTubeVideoProjectDetails.h │ │ │ │ ├── GTLYouTubeVideoProjectDetails.m │ │ │ │ ├── GTLYouTubeVideoRating.h │ │ │ │ ├── GTLYouTubeVideoRating.m │ │ │ │ ├── GTLYouTubeVideoRecordingDetails.h │ │ │ │ ├── GTLYouTubeVideoRecordingDetails.m │ │ │ │ ├── GTLYouTubeVideoSnippet.h │ │ │ │ ├── GTLYouTubeVideoSnippet.m │ │ │ │ ├── GTLYouTubeVideoStatistics.h │ │ │ │ ├── GTLYouTubeVideoStatistics.m │ │ │ │ ├── GTLYouTubeVideoStatus.h │ │ │ │ ├── GTLYouTubeVideoStatus.m │ │ │ │ ├── GTLYouTubeVideoSuggestions.h │ │ │ │ ├── GTLYouTubeVideoSuggestions.m │ │ │ │ ├── GTLYouTubeVideoSuggestionsTagSuggestion.h │ │ │ │ ├── GTLYouTubeVideoSuggestionsTagSuggestion.m │ │ │ │ ├── GTLYouTubeVideoTopicDetails.h │ │ │ │ ├── GTLYouTubeVideoTopicDetails.m │ │ │ │ ├── GTLYouTubeWatchSettings.h │ │ │ │ ├── GTLYouTubeWatchSettings.m │ │ │ │ └── GTLYouTube_Sources.m │ │ └── YouTubeAnalytics │ │ │ └── Generated │ │ │ ├── GTLQueryYouTubeAnalytics.h │ │ │ ├── GTLQueryYouTubeAnalytics.m │ │ │ ├── GTLServiceYouTubeAnalytics.h │ │ │ ├── GTLServiceYouTubeAnalytics.m │ │ │ ├── GTLYouTubeAnalytics.h │ │ │ ├── GTLYouTubeAnalyticsBatchReportDefinitionList.h │ │ │ ├── GTLYouTubeAnalyticsBatchReportDefinitionList.m │ │ │ ├── GTLYouTubeAnalyticsBatchReportDefinitionTemplate.h │ │ │ ├── GTLYouTubeAnalyticsBatchReportDefinitionTemplate.m │ │ │ ├── GTLYouTubeAnalyticsBatchReportList.h │ │ │ ├── GTLYouTubeAnalyticsBatchReportList.m │ │ │ ├── GTLYouTubeAnalyticsBatchReportTemplate.h │ │ │ ├── GTLYouTubeAnalyticsBatchReportTemplate.m │ │ │ ├── GTLYouTubeAnalyticsConstants.h │ │ │ ├── GTLYouTubeAnalyticsConstants.m │ │ │ ├── GTLYouTubeAnalyticsResultTable.h │ │ │ ├── GTLYouTubeAnalyticsResultTable.m │ │ │ └── GTLYouTubeAnalytics_Sources.m │ │ ├── Tests │ │ ├── Data │ │ │ ├── Task1.request.txt │ │ │ ├── Task1.response.txt │ │ │ ├── Task1.rest.txt │ │ │ ├── TaskBatch1.request.txt │ │ │ ├── TaskBatch1.response.txt │ │ │ ├── TaskBatchPage1a.request.txt │ │ │ ├── TaskBatchPage1a.response.txt │ │ │ ├── TaskBatchPage1b.request.txt │ │ │ ├── TaskBatchPage1b.response.txt │ │ │ ├── TaskDelete1.request.txt │ │ │ ├── TaskDelete1.response.txt │ │ │ ├── TaskEmpty1.request.txt │ │ │ ├── TaskEmpty1.response.txt │ │ │ ├── TaskError1.request.txt │ │ │ ├── TaskError1.response.txt │ │ │ ├── TaskPage1a.request.txt │ │ │ ├── TaskPage1a.response.txt │ │ │ ├── TaskPage1b.request.txt │ │ │ ├── TaskPage1b.response.txt │ │ │ ├── TaskPage1c.request.txt │ │ │ ├── TaskPage1c.response.txt │ │ │ ├── TaskPage1d.request.txt │ │ │ └── TaskPage1d.response.txt │ │ ├── GTLBase64Test.m │ │ ├── GTLDateTimeTest.m │ │ ├── GTLFrameworkTest.m │ │ ├── GTLObjectTest.m │ │ ├── GTLQueryTest.m │ │ ├── GTLServiceTest.m │ │ ├── GTLUtilitiesTest.m │ │ └── main.m │ │ ├── Tools │ │ └── ServiceGenerator │ │ │ ├── FHGenerator.h │ │ │ ├── FHGenerator.m │ │ │ ├── FHMain.m │ │ │ ├── FHUtils.h │ │ │ ├── FHUtils.m │ │ │ └── ServiceGenerator.xcodeproj │ │ │ └── project.pbxproj │ │ └── Utilities │ │ ├── GTLBase64.h │ │ ├── GTLBase64.m │ │ ├── GTLFramework.h │ │ ├── GTLFramework.m │ │ ├── GTLJSONParser.h │ │ ├── GTLJSONParser.m │ │ ├── GTLTargetNamespace.h │ │ ├── GTLUtilities.h │ │ └── GTLUtilities.m ├── HockeySDK-iOS │ ├── BuildAgent │ ├── HockeySDK.embeddedframework │ │ ├── HockeySDK.framework │ │ │ ├── Headers │ │ │ ├── HockeySDK │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── Resources │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── BITAuthenticator.h │ │ │ │ │ ├── BITCrashAttachment.h │ │ │ │ │ ├── BITCrashDetails.h │ │ │ │ │ ├── BITCrashManager.h │ │ │ │ │ ├── BITCrashManagerDelegate.h │ │ │ │ │ ├── BITCrashMetaData.h │ │ │ │ │ ├── BITFeedbackActivity.h │ │ │ │ │ ├── BITFeedbackComposeViewController.h │ │ │ │ │ ├── BITFeedbackComposeViewControllerDelegate.h │ │ │ │ │ ├── BITFeedbackListViewController.h │ │ │ │ │ ├── BITFeedbackManager.h │ │ │ │ │ ├── BITFeedbackManagerDelegate.h │ │ │ │ │ ├── BITHockeyAttachment.h │ │ │ │ │ ├── BITHockeyBaseManager.h │ │ │ │ │ ├── BITHockeyBaseViewController.h │ │ │ │ │ ├── BITHockeyManager.h │ │ │ │ │ ├── BITHockeyManagerDelegate.h │ │ │ │ │ ├── BITStoreUpdateManager.h │ │ │ │ │ ├── BITStoreUpdateManagerDelegate.h │ │ │ │ │ ├── BITUpdateManager.h │ │ │ │ │ ├── BITUpdateManagerDelegate.h │ │ │ │ │ ├── BITUpdateViewController.h │ │ │ │ │ ├── HockeySDK.h │ │ │ │ │ └── HockeySDKFeatureConfig.h │ │ │ │ ├── HockeySDK │ │ │ │ └── Resources │ │ │ │ │ ├── HockeySDK.xcconfig │ │ │ │ │ └── HockeySDKResources.bundle │ │ │ │ │ ├── Arrow.png │ │ │ │ │ ├── Arrow@2x.png │ │ │ │ │ ├── Arrow@3x.png │ │ │ │ │ ├── Blur.png │ │ │ │ │ ├── Blur@2x.png │ │ │ │ │ ├── Blur@3x.png │ │ │ │ │ ├── Cancel.png │ │ │ │ │ ├── Cancel@2x.png │ │ │ │ │ ├── Cancel@3x.png │ │ │ │ │ ├── IconGradient.png │ │ │ │ │ ├── IconGradient@2x.png │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── Ok.png │ │ │ │ │ ├── Ok@2x.png │ │ │ │ │ ├── Ok@3x.png │ │ │ │ │ ├── Rectangle.png │ │ │ │ │ ├── Rectangle@2x.png │ │ │ │ │ ├── Rectangle@3x.png │ │ │ │ │ ├── authorize_denied.png │ │ │ │ │ ├── authorize_denied@2x.png │ │ │ │ │ ├── authorize_denied@3x.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── buttonRoundedDelete.png │ │ │ │ │ ├── buttonRoundedDelete@2x.png │ │ │ │ │ ├── buttonRoundedDeleteHighlighted.png │ │ │ │ │ ├── buttonRoundedDeleteHighlighted@2x.png │ │ │ │ │ ├── buttonRoundedRegular.png │ │ │ │ │ ├── buttonRoundedRegular@2x.png │ │ │ │ │ ├── buttonRoundedRegularHighlighted.png │ │ │ │ │ ├── buttonRoundedRegularHighlighted@2x.png │ │ │ │ │ ├── de.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── feedbackActivity.png │ │ │ │ │ ├── feedbackActivity@2x.png │ │ │ │ │ ├── feedbackActivity@2x~ipad.png │ │ │ │ │ ├── feedbackActivity@3x.png │ │ │ │ │ ├── feedbackActivity~ipad.png │ │ │ │ │ ├── fr.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── hr.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── hu.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── iconCamera.png │ │ │ │ │ ├── iconCamera@2x.png │ │ │ │ │ ├── it.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── ja.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── nl.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── pt-PT.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── pt.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ ├── ru.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ │ └── zh-Hans.lproj │ │ │ │ │ └── HockeySDK.strings │ │ │ │ └── Current │ │ └── Resources │ │ │ ├── HockeySDK.xcconfig │ │ │ └── HockeySDKResources.bundle │ └── LICENSE ├── Images.xcassets │ ├── AppIcon-Develop.appiconset │ │ ├── Contents.json │ │ ├── Icon-1.png │ │ ├── Icon-40.png │ │ ├── Icon-40@2x-1.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-72.png │ │ ├── Icon-72@2x-1.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ ├── Icon-Small-2.png │ │ ├── Icon-Small-50.png │ │ ├── Icon-Small-50@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x-2.png │ │ ├── Icon-Small@2x.png │ │ └── Icon@2x-1.png │ ├── AppIcon-Testnet.appiconset │ │ ├── Contents.json │ │ ├── Icon-60.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76@3x.png │ │ ├── Icon-App-20x20@1x.png │ │ ├── Icon-App-20x20@2x-1.png │ │ ├── Icon-App-20x20@2x.png │ │ ├── Icon-App-20x20@3x.png │ │ ├── Icon-App-29x29@1x.png │ │ ├── Icon-App-29x29@2x-1.png │ │ ├── Icon-App-29x29@2x.png │ │ ├── Icon-App-29x29@3x.png │ │ ├── Icon-App-40x40@1x.png │ │ ├── Icon-App-40x40@2x-1.png │ │ ├── Icon-App-40x40@2x.png │ │ ├── Icon-App-40x40@3x.png │ │ ├── Icon-App-57x57@1x.png │ │ ├── Icon-App-57x57@2x.png │ │ ├── Icon-App-60x60@1x.png │ │ ├── Icon-App-60x60@2x.png │ │ ├── Icon-App-60x60@3x.png │ │ ├── Icon-App-72x72@1x.png │ │ ├── Icon-App-72x72@2x.png │ │ ├── Icon-App-76x76@1x.png │ │ ├── Icon-App-76x76@2x.png │ │ ├── Icon-App-76x76@3x.png │ │ ├── Icon-App-83.5x83.5@2x.png │ │ ├── Icon-Small-50x50@1x.png │ │ ├── Icon-Small-50x50@2x.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── Icon-Spotlight-40@2x-1.png │ │ └── Icon-Spotlight-40@3x.png │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-40.png │ │ ├── Icon-40@2x-1.png │ │ ├── Icon-40@2x-2.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-60@2x-1.png │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ ├── Icon-83.5@2x.png │ │ ├── Icon-Small-1.png │ │ ├── Icon-Small.png │ │ ├── Icon-Small@2x-1.png │ │ ├── Icon-Small@2x-2.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── Icon.png │ │ ├── Icon@2x.png │ │ └── icon-airbitz-1024x1024.png ├── InfoView.h ├── InfoView.m ├── LatoLabel.h ├── LatoLabel.m ├── LaunchScreen.xib ├── Login │ ├── InfoPopupView.h │ ├── InfoPopupView.m │ ├── LoginViewController.h │ ├── LoginViewController.m │ ├── PasswordRecoveryViewController.h │ ├── PasswordRecoveryViewController.m │ ├── PasswordVerifyView.h │ ├── PasswordVerifyView.m │ ├── QuestionAnswerView.h │ ├── QuestionAnswerView.m │ ├── QuestionAnswerView~iphone.xib │ ├── QuestionAnswerView~iphone.xib.new │ ├── SignUpViewController.h │ ├── SignUpViewController.m │ ├── User.h │ ├── User.m │ ├── UsernameDropDownCell.swift │ └── UsernameDropDownCell.xib ├── MainViewController.h ├── MainViewController.m ├── MinCharTextField.h ├── MinCharTextField.m ├── NSDate+Helper.h ├── NSDate+Helper.m ├── NSString+StripHTML.h ├── NSString+StripHTML.m ├── NotificationChecker.h ├── NotificationChecker.m ├── Notifications.h ├── PickerTextView │ ├── PickerTextView.h │ ├── PickerTextView.m │ ├── PickerTextView3.h │ └── PickerTextView3.m ├── Plugins.storyboard ├── Plugins │ ├── BuySellViewController.h │ ├── BuySellViewController.m │ ├── Plugin.h │ ├── Plugin.m │ ├── PluginCell.h │ ├── PluginCell.m │ ├── PluginListViewController.h │ ├── PluginListViewController.m │ ├── PluginViewController.h │ ├── PluginViewController.m │ └── Plugins.storyboard ├── PopupPickerView │ ├── PopupPickerView.h │ ├── PopupPickerView.m │ ├── PopupPickerView.xib │ ├── PopupPickerView2.h │ ├── PopupPickerView2.m │ ├── PopupPickerView2.xib │ ├── PopupWheelPickerView.h │ └── PopupWheelPickerView.m ├── Request │ ├── AddressRequestController.h │ ├── AddressRequestController.m │ ├── RecipientViewController.h │ ├── RecipientViewController.m │ ├── RequestViewController.h │ └── RequestViewController.m ├── Resources │ ├── Artwork │ │ ├── 0-bars@2x.png │ │ ├── 1-bar@2x.png │ │ ├── 2-bars@2x.png │ │ ├── 3-bars@2x.png │ │ ├── 4-bars@2x.png │ │ ├── 5-bars@2x.png │ │ ├── BLE_Logo@2x.png │ │ ├── BLE_photo@2x.png │ │ ├── Green-check@2x.png │ │ ├── QR-bracket.png │ │ ├── Red-X@2x.png │ │ ├── UIButtonBarRefresh@2x.png │ │ ├── Warning_icon@2x.png │ │ ├── White-Dot@2x.png │ │ ├── background-fade@2x.jpg │ │ ├── background@2x.jpg │ │ ├── background_launch.png │ │ ├── background_launch.psd │ │ ├── barcode-bracket@2x.png │ │ ├── bd_icon_clock@2x.png │ │ ├── bd_icon_facebook@2x.png │ │ ├── bd_icon_foursquare@2x.png │ │ ├── bd_icon_location@2x.png │ │ ├── bd_icon_phone@2x.png │ │ ├── bd_icon_share@2x.png │ │ ├── bd_icon_twitter@2x.png │ │ ├── bd_icon_web@2x.png │ │ ├── bd_icon_yelp@2x.png │ │ ├── bd_sliderbubble@2x.png │ │ ├── bitCoinAnnotation@2x.png │ │ ├── bitcoin_symbol@2x.png │ │ ├── bitcoin_symbol@3x.png │ │ ├── btn_add.ai │ │ ├── btn_add.png │ │ ├── btn_add@2x.png │ │ ├── btn_add@3x.png │ │ ├── btn_add@4x.png │ │ ├── btn_add_black.ai │ │ ├── btn_add_black.png │ │ ├── btn_add_black@2x.png │ │ ├── btn_add_black@3x.png │ │ ├── btn_add_black@4x.png │ │ ├── btn_close.ai │ │ ├── btn_close.png │ │ ├── btn_close@2x.png │ │ ├── btn_close@3x.png │ │ ├── btn_close@4x.png │ │ ├── btn_close_white.ai │ │ ├── btn_close_white.png │ │ ├── btn_close_white@2x.png │ │ ├── btn_close_white@3x.png │ │ ├── btn_close_white@4x.png │ │ ├── btn_collapse_expand.png │ │ ├── btn_collapse_expand@2x.png │ │ ├── btn_collapse_expand@3x.png │ │ ├── btn_collapse_expand@4x.png │ │ ├── btn_collapse_expand_black.png │ │ ├── btn_collapse_expand_black@2x.png │ │ ├── btn_collapse_expand_black@3x.png │ │ ├── btn_collapse_expand_black@4x.png │ │ ├── btn_export.png │ │ ├── btn_export.psd │ │ ├── btn_export@2x.png │ │ ├── btn_export@3x.png │ │ ├── btn_export@4x.png │ │ ├── btn_export_white.png │ │ ├── btn_export_white@2x.png │ │ ├── btn_export_white@3x.png │ │ ├── btn_export_white@4x.png │ │ ├── btn_locateMe@2x.png │ │ ├── btn_right@2x.png │ │ ├── btn_selected@2x.png │ │ ├── btn_slide_to_confirm@2x.png │ │ ├── btn_slider@2x.png │ │ ├── btn_unselected@2x.png │ │ ├── clearButton@2x.png │ │ ├── darken_bottom_table_cell.png │ │ ├── darken_bottom_table_cell.psd │ │ ├── divider.png │ │ ├── divider@2x.png │ │ ├── drag_bar@2x.png │ │ ├── emboss_down@2x.png │ │ ├── enable-camera.png │ │ ├── enable-contacts.png │ │ ├── eyeball.png │ │ ├── eyeball@2x.png │ │ ├── eyeball@3x.png │ │ ├── fingerprint-wht.png │ │ ├── fingerprint-wht@2x.png │ │ ├── fingerprint-wht@3x.png │ │ ├── flash-off@2x.png │ │ ├── flash-on@2x.png │ │ ├── flash_off@2x.png │ │ ├── flash_on@2x.png │ │ ├── gift_box.png │ │ ├── gift_box@2x.png │ │ ├── gift_box@3x.png │ │ ├── gift_box@4x.png │ │ ├── green-coffee-mug-128px@2x.png │ │ ├── h_seperator@2x.png │ │ ├── ico_nav_directory_dark.png │ │ ├── ico_nav_directory_dark@2x.png │ │ ├── ico_nav_directory_dark@3x.png │ │ ├── ico_nav_directory_dark@4x.png │ │ ├── icon_USD_dark@2x.png │ │ ├── icon_USD_light@2x.png │ │ ├── icon_account_secure.png │ │ ├── icon_account_secure@2x.png │ │ ├── icon_account_secure@3x.png │ │ ├── icon_account_secure@4x.png │ │ ├── icon_approved.png │ │ ├── icon_approved@2x.png │ │ ├── icon_arrow.png │ │ ├── icon_bitcoin_dark@2x.png │ │ ├── icon_bitcoin_light@2x.png │ │ ├── icon_bitcoin_symbol.png │ │ ├── icon_calendar@2x.png │ │ ├── icon_category_atm.png │ │ ├── icon_category_atm@2x.png │ │ ├── icon_category_atm@3x.png │ │ ├── icon_category_coffee_tea.png │ │ ├── icon_category_coffee_tea@2x.png │ │ ├── icon_category_coffee_tea@3x.png │ │ ├── icon_category_electronics.png │ │ ├── icon_category_electronics@2x.png │ │ ├── icon_category_electronics@3x.png │ │ ├── icon_category_gift_cards.png │ │ ├── icon_category_gift_cards@2x.png │ │ ├── icon_category_gift_cards@3x.png │ │ ├── icon_category_restaurants.png │ │ ├── icon_category_restaurants@2x.png │ │ ├── icon_category_restaurants@3x.png │ │ ├── icon_category_shopping.png │ │ ├── icon_category_shopping@2x.png │ │ ├── icon_category_shopping@3x.png │ │ ├── icon_directory.png │ │ ├── icon_directory@2x.png │ │ ├── icon_directory@3x.png │ │ ├── icon_directory@4x.png │ │ ├── icon_exchange.png │ │ ├── icon_export_dropbox@2x.png │ │ ├── icon_export_email@2x.png │ │ ├── icon_export_google@2x.png │ │ ├── icon_export_printer@2x.png │ │ ├── icon_export_sdcard@2x.png │ │ ├── icon_export_view@2x.png │ │ ├── icon_import.png │ │ ├── icon_import@2x.png │ │ ├── icon_import@3x.png │ │ ├── icon_location@2x.png │ │ ├── icon_logout.png │ │ ├── icon_logout@2x.png │ │ ├── icon_logout@3x.png │ │ ├── icon_logout@4x.png │ │ ├── icon_more.png │ │ ├── icon_more@2x.png │ │ ├── icon_more@3x.png │ │ ├── icon_more@4x.png │ │ ├── icon_not_approved@2x.png │ │ ├── icon_request.png │ │ ├── icon_request@2x.png │ │ ├── icon_request@3x.png │ │ ├── icon_request@4x.png │ │ ├── icon_request_padded@2x.png │ │ ├── icon_rightArrow@2x.png │ │ ├── icon_search@2x.png │ │ ├── icon_send.png │ │ ├── icon_send@2x.png │ │ ├── icon_send@3x.png │ │ ├── icon_send@4x.png │ │ ├── icon_send_padded@2x.png │ │ ├── icon_settings.png │ │ ├── icon_settings@2x.png │ │ ├── icon_settings@3x.png │ │ ├── icon_settings@4x.png │ │ ├── icon_settings_dark.png │ │ ├── icon_settings_dark@2x.png │ │ ├── icon_settings_dark@3x.png │ │ ├── icon_settings_dark@4x.png │ │ ├── icon_transactions.png │ │ ├── icon_transactions@2x.png │ │ ├── icon_transactions@3x.png │ │ ├── icon_transactions@4x.png │ │ ├── icon_wallet.png │ │ ├── icon_wallet@2x.png │ │ ├── icon_wallet@3x.png │ │ ├── icon_wallet_dark.png │ │ ├── icon_wallet_dark@2x.png │ │ ├── icon_wallet_dark@3x.png │ │ ├── icon_wallet_dark@4x.png │ │ ├── img_collapseExpandBlueDown@2x.png │ │ ├── large-digit-input@2x.png │ │ ├── large-digit-input_selected@2x.png │ │ ├── logo@2x.png │ │ ├── logo_icon@2x.png │ │ ├── logo_icon_full@2x.png │ │ ├── logo_large@2x.png │ │ ├── password_dot@2x.png │ │ ├── plugin_icon_coffee@2x.png │ │ ├── plugin_icon_euro@2x.png │ │ ├── plugin_icon_homedepot@2x.png │ │ ├── plugin_icon_target@2x.png │ │ ├── plugin_icon_usd@2x.png │ │ ├── plugin_icon_walmart@2x.png │ │ ├── plugin_icon_wholefoods@2x.png │ │ ├── red-bulls-eye-128px@2x.png │ │ ├── ribbon@2x.png │ │ ├── swipe-arrow@2x.png │ │ ├── thumb@2x.png │ │ └── write-it-down.png │ ├── Audio │ │ ├── BitcoinReceived.mp3 │ │ ├── BitcoinReceivedPartial.mp3 │ │ └── BitcoinSent.mp3 │ ├── Fonts │ │ ├── Lato │ │ │ ├── Lato-Black.ttf │ │ │ ├── Lato-BlackItalic.ttf │ │ │ ├── Lato-Bold.ttf │ │ │ ├── Lato-BoldItalic.ttf │ │ │ ├── Lato-Hairline.ttf │ │ │ ├── Lato-HairlineItalic.ttf │ │ │ ├── Lato-Italic.ttf │ │ │ ├── Lato-Light.ttf │ │ │ ├── Lato-LightItalic.ttf │ │ │ └── Lato-Regular.ttf │ │ └── Montserrat │ │ │ ├── Montserrat-Bold.ttf │ │ │ └── Montserrat-Regular.ttf │ ├── MockData │ │ ├── WalletExportPDF.pdf │ │ └── WalletExportQuicken.QIF │ ├── Text │ │ ├── Base.lproj │ │ │ └── sms_template.txt │ │ ├── ar.lproj │ │ │ └── sms_template.txt │ │ ├── de-CH.lproj │ │ │ └── sms_template.txt │ │ ├── de-LU.lproj │ │ │ └── sms_template.txt │ │ ├── de.lproj │ │ │ └── sms_template.txt │ │ ├── el.lproj │ │ │ └── sms_template.txt │ │ ├── es-419.lproj │ │ │ └── sms_template.txt │ │ ├── es-MX.lproj │ │ │ └── sms_template.txt │ │ ├── es-PR.lproj │ │ │ └── sms_template.txt │ │ ├── es.lproj │ │ │ └── sms_template.txt │ │ ├── fr-CA.lproj │ │ │ └── sms_template.txt │ │ ├── fr-CH.lproj │ │ │ └── sms_template.txt │ │ ├── fr.lproj │ │ │ └── sms_template.txt │ │ ├── hi.lproj │ │ │ └── sms_template.txt │ │ ├── ht.lproj │ │ │ └── sms_template.txt │ │ ├── it.lproj │ │ │ └── sms_template.txt │ │ ├── ja.lproj │ │ │ └── sms_template.txt │ │ ├── nl.lproj │ │ │ └── sms_template.txt │ │ ├── pt-BR.lproj │ │ │ └── sms_template.txt │ │ ├── pt.lproj │ │ │ └── sms_template.txt │ │ ├── ru.lproj │ │ │ └── sms_template.txt │ │ ├── zh-CN.lproj │ │ │ └── sms_template.txt │ │ ├── zh-Hans.lproj │ │ │ └── sms_template.txt │ │ └── zh.lproj │ │ │ └── sms_template.txt │ ├── html │ │ ├── Base.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── ar.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── de-CH.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── de-LU.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── de.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── el.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── es-419.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── es-MX.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── es-PR.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── es.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── fr-CA.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── fr-CH.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── fr.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── he.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── hi.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── ht.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── it.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── ja.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── ko.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── nl.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── pt-BR.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── pt.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── ru.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── zh-CN.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ ├── zh-Hans.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ │ └── zh.lproj │ │ │ ├── email_template.html │ │ │ ├── email_template_simple.html │ │ │ ├── info.html │ │ │ ├── info_disclaimer.html │ │ │ ├── info_export_wallet.html │ │ │ ├── info_export_wallet_options.html │ │ │ ├── info_footer.html │ │ │ ├── info_insufficient_funds.html │ │ │ ├── info_recipient.html │ │ │ ├── info_request.html │ │ │ ├── info_send.html │ │ │ ├── info_send_confirmation.html │ │ │ ├── info_settings.html │ │ │ ├── info_spending_limits.html │ │ │ ├── info_transaction_details.html │ │ │ ├── info_transactions.html │ │ │ ├── info_transactions_android.html │ │ │ ├── info_wallets.html │ │ │ └── transaction_details.html │ └── plugins │ │ ├── bitrefill.html │ │ ├── blank.html │ │ ├── clevercoin.html │ │ ├── foldapp.html │ │ ├── glidera.html │ │ ├── img │ │ ├── bankcheck.png │ │ ├── bg_app.jpg │ │ └── bitcoin-icon-logo.png │ │ ├── libertyx.html │ │ └── wagecan.html ├── San Diego.gpx ├── ScanView │ ├── ScanView.h │ ├── ScanView.m │ └── ScanView~iphone.xib ├── Send │ ├── BLEScanCell.h │ ├── BLEScanCell.m │ ├── ConfirmationSliderView.h │ ├── ConfirmationSliderView.m │ ├── FlashSelectView.h │ ├── FlashSelectView.m │ ├── SendConfirmationViewController.h │ ├── SendConfirmationViewController.m │ ├── SendStatusViewController.h │ ├── SendStatusViewController.m │ ├── SendViewController.h │ └── SendViewController.m ├── Server.h ├── Settings │ ├── BooleanCell.h │ ├── BooleanCell.m │ ├── ButtonCell.h │ ├── ButtonCell.m │ ├── ButtonOnlyCell.h │ ├── ButtonOnlyCell.m │ ├── CancelDoneCell.h │ ├── CancelDoneCell.m │ ├── CategoriesCell.h │ ├── CategoriesCell.m │ ├── CategoriesViewController.h │ ├── CategoriesViewController.m │ ├── LocalSettings.h │ ├── LocalSettings.m │ ├── PlainCell.h │ ├── PlainCell.m │ ├── RadioButtonCell.h │ ├── RadioButtonCell.m │ ├── SettingsViewController.h │ ├── SettingsViewController.m │ ├── SpendingLimitsViewController.h │ ├── SpendingLimitsViewController.m │ ├── TextFieldCell.h │ ├── TextFieldCell.m │ ├── TextViewCell.h │ ├── TextViewCell.m │ ├── TwoFactorMenuViewController.h │ ├── TwoFactorMenuViewController.m │ ├── TwoFactorScanViewController.h │ ├── TwoFactorScanViewController.m │ ├── TwoFactorShowViewController.h │ └── TwoFactorShowViewController.m ├── SignUp │ ├── SignUpBaseController.h │ ├── SignUpBaseController.m │ ├── SignUpCameraController.h │ ├── SignUpCameraController.m │ ├── SignUpContactsController.h │ ├── SignUpContactsController.m │ ├── SignUpHandleController.h │ ├── SignUpHandleController.m │ ├── SignUpManager.h │ ├── SignUpManager.m │ ├── SignUpPINController.h │ ├── SignUpPINController.m │ ├── SignUpPasswordController.h │ ├── SignUpPasswordController.m │ ├── SignUpUsernameController.h │ ├── SignUpUsernameController.m │ ├── SignUpWriteItController.h │ └── SignUpWriteItController.m ├── SlideoutView.h ├── SlideoutView.m ├── Strings.h ├── Strings.m ├── StrokeGradientButton │ ├── StrokeGradientButton.h │ └── StrokeGradientButton.m ├── StylizedButton.h ├── StylizedButton.m ├── StylizedButtonOutline.h ├── StylizedButtonOutline.m ├── StylizedTextField.h ├── StylizedTextField.m ├── StylizedTextField2.h ├── StylizedTextField2.m ├── StylizedTextField3.h ├── StylizedTextField3.m ├── Testnet │ ├── background-fade@2x.jpg │ └── background@2x.jpg ├── Theme.h ├── Theme.m ├── TouchJSON │ ├── CDataScanner.h │ ├── CDataScanner.m │ ├── Extensions │ │ ├── CDataScanner_Extensions.h │ │ ├── CDataScanner_Extensions.m │ │ ├── NSDictionary_JSONExtensions.h │ │ └── NSDictionary_JSONExtensions.m │ └── JSON │ │ ├── CJSONDeserializer.h │ │ ├── CJSONDeserializer.m │ │ ├── CJSONScanner.h │ │ ├── CJSONScanner.m │ │ ├── CJSONSerializer.h │ │ ├── CJSONSerializer.m │ │ └── JSONRepresentation.h ├── TransferService.h ├── UIImage+Colorize.h ├── UIImage+Colorize.m ├── UIPhotoGallery │ ├── .gitignore │ ├── LICENSE.md │ ├── README.md │ ├── UIPhotoGallery.podspec │ └── UIPhotoGallery │ │ ├── UIPhotoGallerySliderView.h │ │ ├── UIPhotoGallerySliderView.m │ │ ├── UIPhotoGallerySliderView.xib │ │ ├── UIPhotoGalleryView.h │ │ ├── UIPhotoGalleryView.m │ │ ├── UIPhotoGalleryViewController.h │ │ ├── UIPhotoGalleryViewController.m │ │ ├── UIPhotoItemView.h │ │ └── UIPhotoItemView.m ├── Util.h ├── Util.m ├── UtilityTableViewController.h ├── UtilityTableViewController.m ├── Wallets │ ├── CommonCell.h │ ├── CommonCell.m │ ├── ExportWalletOptionsCell.h │ ├── ExportWalletOptionsCell.m │ ├── ExportWalletOptionsViewController.h │ ├── ExportWalletOptionsViewController.m │ ├── ExportWalletPDFViewController.h │ ├── ExportWalletPDFViewController.m │ ├── ExportWalletViewController.h │ ├── ExportWalletViewController.m │ ├── PayeeCell.h │ ├── PayeeCell.m │ ├── SSOViewController.h │ ├── SSOViewController.m │ ├── TransactionCell.h │ ├── TransactionCell.m │ ├── TransactionDetailsViewController.h │ ├── TransactionDetailsViewController.m │ ├── TransactionsHeaderView.h │ ├── TransactionsHeaderView.m │ ├── TransactionsHeaderView~iphone.xib │ ├── TransactionsViewController.h │ ├── TransactionsViewController.m │ ├── WalletCell.h │ ├── WalletCell.m │ ├── WalletHeaderView.h │ ├── WalletHeaderView.m │ ├── WalletHeaderView~iphone.xib │ ├── WalletMakerView.h │ ├── WalletMakerView.m │ └── WalletsViewController.h ├── ar.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── de.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── el.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── es.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── fr.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── hi.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── ht.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── it.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── ja.lproj │ ├── AccountCreate.strings │ ├── Airbitz-Develop-InfoPlist.strings │ ├── Airbitz-InfoPlist.strings │ ├── Airbitz-Testnet-InfoPlist.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── main.m ├── nl.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── pt.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── ru.lproj │ ├── AccountCreate.strings │ ├── Airbitz-Develop-InfoPlist.strings │ ├── Airbitz-InfoPlist.strings │ ├── Airbitz-Testnet-InfoPlist.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── zh-Hans.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings └── zh.lproj │ ├── AccountCreate.strings │ ├── BusinessDirectory.strings │ ├── CalculatorView~iphone.strings │ ├── ConfirmationSliderView.strings │ ├── InfoView~iphone.strings │ ├── Main_iPhone.strings │ ├── PasswordVerifyView.strings │ ├── PopupWheelPickerView.strings │ ├── Settings.strings │ ├── SlideoutView~iphone.strings │ └── WalletMakerView~iphone.strings ├── AirbitzTests ├── AirbitzTests.m └── Info.plist ├── AirbitzUITests ├── AirbitzUITests.m └── Info.plist ├── Localization ├── Airbitz │ ├── ar.xliff │ ├── de.xliff │ ├── el.xliff │ ├── en.xliff │ ├── es.xliff │ ├── fr.xliff │ ├── he.xliff │ ├── hi.xliff │ ├── ht.xliff │ ├── it.xliff │ ├── ja.xliff │ ├── ko.xliff │ ├── nl.xliff │ ├── pt.xliff │ ├── ru.xliff │ └── zh.xliff ├── relnotes-ar.txt ├── relnotes-de.txt ├── relnotes-el.txt ├── relnotes-es.txt ├── relnotes-fr.txt ├── relnotes-he.txt ├── relnotes-hi.txt ├── relnotes-ht.txt ├── relnotes-it.txt ├── relnotes-ja.txt ├── relnotes-ko.txt ├── relnotes-nl.txt ├── relnotes-pt.txt ├── relnotes-ru.txt ├── relnotes-zh.txt ├── relnotes.txt ├── store_description-ar.txt ├── store_description-de.txt ├── store_description-el.txt ├── store_description-es.txt ├── store_description-fr.txt ├── store_description-he.txt ├── store_description-hi.txt ├── store_description-ht.txt ├── store_description-it.txt ├── store_description-ja.txt ├── store_description-ko.txt ├── store_description-nl.txt ├── store_description-pt.txt ├── store_description-ru.txt ├── store_description-zh.txt └── store_description.txt ├── Podfile ├── Podfile.lock ├── README.md ├── ar.lproj └── Localizable.strings ├── cpabc ├── cpabc-testnet ├── cpcore ├── cpcore-testnet ├── cppp ├── crowdin.yml ├── current_version.txt ├── de.lproj └── Localizable.strings ├── deploy-build ├── deploy-tf ├── deploy.sample ├── dl-sync-translations ├── el.lproj └── Localizable.strings ├── es.lproj └── Localizable.strings ├── export-localization ├── fr.lproj └── Localizable.strings ├── hi.lproj └── Localizable.strings ├── ht.lproj └── Localizable.strings ├── it.lproj └── Localizable.strings ├── ja.lproj └── Localizable.strings ├── mkabc ├── mkplugin ├── pt.lproj └── Localizable.strings ├── ru.lproj └── Localizable.strings ├── ul-sync-translations └── zh-Hans.lproj └── Localizable.strings /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build/ 3 | xcuserdata 4 | profile 5 | *.moved-aside 6 | *.swp 7 | DerivedData 8 | .idea/ 9 | Airbitz/ABC 10 | Airbitz/ABC-testnet 11 | AirBitz.xcodeproj/xcshareddata 12 | xcuserdata 13 | project.xcworkspace 14 | deploy 15 | /Pods/ 16 | -------------------------------------------------------------------------------- /Airbitz Widget/Airbitz Widget.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.co.airbitz.airbitz 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Airbitz Widget/TodayViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // TodayViewController.h 3 | // Airbitz Widget 4 | // 5 | // Created by Paul P on 8/31/15. 6 | // Copyright (c) 2015 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TodayViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Airbitz Widget/ar.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "رمز الإستجابة السريعة QR"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "زر"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "تسجيل الدخول أو أرسل"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/de-CH.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 3 | "Lt8-cl-BMW.text" = "Scan QR"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 6 | "WIw-mO-3VN.normalTitle" = "Button"; 7 | 8 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 9 | "gQB-TM-9HQ.text" = "Login or Send"; 10 | -------------------------------------------------------------------------------- /Airbitz Widget/de-LU.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 3 | "Lt8-cl-BMW.text" = "Scan QR"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 6 | "WIw-mO-3VN.normalTitle" = "Button"; 7 | 8 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 9 | "gQB-TM-9HQ.text" = "Login or Send"; 10 | -------------------------------------------------------------------------------- /Airbitz Widget/de.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "QR scannen"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "Button"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "Anmeldung oder Senden 9 | 10 | "; 11 | 12 | -------------------------------------------------------------------------------- /Airbitz Widget/el.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "Σάρωση QR"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "Κουμπί"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "Σύνδεση ή Αποστολή"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/es-419.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 3 | "Lt8-cl-BMW.text" = "Scan QR"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 6 | "WIw-mO-3VN.normalTitle" = "Button"; 7 | 8 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 9 | "gQB-TM-9HQ.text" = "Login or Send"; 10 | -------------------------------------------------------------------------------- /Airbitz Widget/es-MX.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 3 | "Lt8-cl-BMW.text" = "Scan QR"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 6 | "WIw-mO-3VN.normalTitle" = "Button"; 7 | 8 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 9 | "gQB-TM-9HQ.text" = "Login or Send"; 10 | -------------------------------------------------------------------------------- /Airbitz Widget/es-PR.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 3 | "Lt8-cl-BMW.text" = "Scan QR"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 6 | "WIw-mO-3VN.normalTitle" = "Button"; 7 | 8 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 9 | "gQB-TM-9HQ.text" = "Login or Send"; 10 | -------------------------------------------------------------------------------- /Airbitz Widget/es.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "Escanear Código QR"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "Botón"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "Login o enviar"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/fr-CA.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 3 | "Lt8-cl-BMW.text" = "Scan QR"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 6 | "WIw-mO-3VN.normalTitle" = "Button"; 7 | 8 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 9 | "gQB-TM-9HQ.text" = "Login or Send"; 10 | -------------------------------------------------------------------------------- /Airbitz Widget/fr-CH.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 3 | "Lt8-cl-BMW.text" = "Scan QR"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 6 | "WIw-mO-3VN.normalTitle" = "Button"; 7 | 8 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 9 | "gQB-TM-9HQ.text" = "Login or Send"; 10 | -------------------------------------------------------------------------------- /Airbitz Widget/fr.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "Scanner le QR"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "Bouton"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "Connecter ou envoyer"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/hi.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "QR स्कैन करें"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "बटन"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "लॉगिन करें या भेजें"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/ht.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "Eskane QR"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "Bouton"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "Konekte ou voye"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/it.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "Scansiona QR"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "Pulsante"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "Accesso o Invia"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/ja.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "スキャンQR"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "ボタン"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "ログインまたは送信"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/nl.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "Scan QR"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "Button"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "Login or Send"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/pt-BR.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 3 | "Lt8-cl-BMW.text" = "Scan QR"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 6 | "WIw-mO-3VN.normalTitle" = "Button"; 7 | 8 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 9 | "gQB-TM-9HQ.text" = "Login or Send"; 10 | -------------------------------------------------------------------------------- /Airbitz Widget/pt.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "Ler código QR"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "Botão"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "Entrar Ou Enviar"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/ru.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "Отсканировать QR-код"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "Кнопка"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "Войдите или Отправить"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz Widget/zh-CN.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 3 | "Lt8-cl-BMW.text" = "Scan QR"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 6 | "WIw-mO-3VN.normalTitle" = "Button"; 7 | 8 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 9 | "gQB-TM-9HQ.text" = "Login or Send"; 10 | -------------------------------------------------------------------------------- /Airbitz Widget/zh-Hans.lproj/MainInterface.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Scan QR"; ObjectID = "Lt8-cl-BMW"; */ 2 | "Lt8-cl-BMW.text" = "扫描QR二维码"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Button"; ObjectID = "WIw-mO-3VN"; */ 5 | "WIw-mO-3VN.normalTitle" = "按钮"; 6 | 7 | /* Class = "UILabel"; text = "Login or Send"; ObjectID = "gQB-TM-9HQ"; */ 8 | "gQB-TM-9HQ.text" = "登录或发送"; 9 | 10 | -------------------------------------------------------------------------------- /Airbitz-OSX/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // Airbitz-OSX 4 | // 5 | // Created by Paul P on 4/14/16. 6 | // Copyright © 2016 Airbitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : NSObject 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /Airbitz-OSX/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // Airbitz-OSX 4 | // 5 | // Created by Paul P on 4/14/16. 6 | // Copyright © 2016 Airbitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "MainController.h" 11 | 12 | @interface ViewController : MainController 13 | 14 | 15 | @end 16 | 17 | -------------------------------------------------------------------------------- /Airbitz-OSX/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // Airbitz-OSX 4 | // 5 | // Created by Paul P on 4/14/16. 6 | // Copyright © 2016 Airbitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, const char * argv[]) { 12 | return NSApplicationMain(argc, argv); 13 | } 14 | -------------------------------------------------------------------------------- /Airbitz.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Airbitz/.gitignore: -------------------------------------------------------------------------------- 1 | Config.h 2 | -------------------------------------------------------------------------------- /Airbitz/AB.h: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Paul P on 2/3/16. 3 | // Copyright (c) 2016 Airbitz. All rights reserved. 4 | // 5 | 6 | #import 7 | #import "ABCContext.h" 8 | #import "ABCAccount.h" 9 | 10 | @class ABCContext; 11 | @class ABCAccount; 12 | 13 | extern ABCContext *abc; 14 | extern ABCAccount *abcAccount; 15 | 16 | -------------------------------------------------------------------------------- /Airbitz/AB.m: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Paul P on 2/3/16. 3 | // Copyright (c) 2016 Airbitz. All rights reserved. 4 | // 5 | // Static global storage to an ABCContext object 6 | 7 | #import "AB.h" 8 | #import "ABCContext.h" 9 | #import "ABCAccount.h" 10 | 11 | ABCContext *abc; 12 | ABCAccount *abcAccount; 13 | 14 | -------------------------------------------------------------------------------- /Airbitz/Airbitz Develop.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.co.airbitz.airbitz 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Airbitz/Airbitz Testnet.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.co.airbitz.airbitz 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Airbitz/Airbitz-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | // 2 | // Use this file to import your target's public headers that you would like to expose to Swift. 3 | // 4 | 5 | -------------------------------------------------------------------------------- /Airbitz/Airbitz.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.application-groups 6 | 7 | group.co.airbitz.airbitz 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Airbitz/AirbitzViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // AirbitzViewController.h 3 | // Airbitz 4 | // 5 | // Created by Paul Puey 2015/05/19. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AB.h" 11 | 12 | @interface AirbitzViewController : UIViewController 13 | 14 | @property (nonatomic, strong) NSLayoutConstraint * leftConstraint; 15 | 16 | - (void)forceUpdateNavBar; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Airbitz/AirbitzViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // AirbitzViewController.h 3 | // Airbitz 4 | // 5 | // Created by Paul Puey 2015/05/19. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AirbitzViewController.h" 11 | 12 | @interface AirbitzViewController () 13 | { 14 | 15 | } 16 | 17 | @end 18 | 19 | @implementation AirbitzViewController 20 | 21 | - (void)forceUpdateNavBar; 22 | { 23 | 24 | } 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /Airbitz/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/4/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "ABCContext.h" 11 | 12 | @interface AppDelegate : UIResponder 13 | 14 | @property (strong, nonatomic) UIWindow *window; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Airbitz/AppGroupConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppGroupConstants.h 3 | // Airbitz 4 | // 5 | // Created by Paul Puey 2015-09-03. 6 | // Copyright (c) 2014 Airbitz. All rights reserved. 7 | // 8 | 9 | #define APP_GROUP_ID @"group.co.airbitz.airbitz" 10 | #define APP_GROUP_LAST_QR_IMAGE_KEY @"kSharedContainerDataWalletLastQRImageKey" 11 | #define APP_GROUP_LAST_ADDRESS_KEY @"kSharedContainerDataWalletLastAddressKey" 12 | #define APP_GROUP_LAST_ACCOUNT_KEY @"kSharedContainerDataWalletLastAccountKey" 13 | #define APP_GROUP_LAST_WALLET_KEY @"kSharedContainerDataWalletLastWalletKey" 14 | -------------------------------------------------------------------------------- /Airbitz/AudioController.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface AudioController : NSObject 5 | 6 | + (void)initAll; 7 | + (void)freeAll; 8 | + (AudioController *)controller; 9 | 10 | - (void)playPartialReceived; 11 | - (void)playReceived; 12 | - (void)playSent; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Airbitz/BlurView.h: -------------------------------------------------------------------------------- 1 | // 2 | // BlurView.h 3 | // AirBitz 4 | // 5 | // Created by Paul Puey on 2015/05/15. 6 | // Copyright (c) 2015 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface BlurView : UIView 12 | 13 | @property (nonatomic) BOOL bForceWhite; 14 | @property (nonatomic) BOOL bSetBlurStyleExtraLight; 15 | @property (nonatomic) BOOL bSetBlurStyleDark; 16 | @property (nonatomic) BOOL bForceBlur; 17 | 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Airbitz/BrandStrings.h: -------------------------------------------------------------------------------- 1 | // 2 | // BrandStrings.h 3 | // 4 | // 5 | // Created by Paul Puey on 2015/11/24. 6 | // 7 | // 8 | 9 | #import 10 | #import "BrandStrings.m" -------------------------------------------------------------------------------- /Airbitz/Business Directory/Business Details/UIPhotoGalleryViewController+Slider.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIPhotoGalleryViewController+Slider.h 3 | // AirBitz 4 | // 5 | // Created by Allan Wright on 11/24/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import "UIPhotoGalleryViewController.h" 10 | #import "UIPhotoGallerySliderView.h" 11 | 12 | @interface UIPhotoGalleryViewController (Slider) 13 | @end -------------------------------------------------------------------------------- /Airbitz/Business Directory/Business Details/UIPhotoGalleryViewController+Slider.m: -------------------------------------------------------------------------------- 1 | // 2 | // UIPhotoGalleryViewController+Slider.m 3 | // AirBitz 4 | // 5 | // Created by Allan Wright on 11/24/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import "UIPhotoGalleryViewController+Slider.h" 10 | 11 | @implementation UIPhotoGalleryViewController (Slider) 12 | 13 | - (void)sliderValueChangedToIndex:(NSUInteger)index 14 | { 15 | [vPhotoGallery scrollToPage:index animated:YES]; 16 | } 17 | 18 | @end -------------------------------------------------------------------------------- /Airbitz/Business Directory/DirectoryViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // DirectoryViewController.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/4/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AirbitzViewController.h" 11 | 12 | @interface DirectoryViewController : AirbitzViewController 13 | - (void)launchATMSearch; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Airbitz/Business Directory/MapView/Annotation.m: -------------------------------------------------------------------------------- 1 | // 2 | // Annotation.m 3 | // 4 | // Created by Carson Whitsett on 3/5/2011. 5 | // Copyright 2011 Ditty Labs, LCL. All rights reserved. 6 | // 7 | 8 | #import "Annotation.h" 9 | 10 | 11 | @implementation Annotation 12 | 13 | -(id)initWithCoordinate:(CLLocationCoordinate2D) c 14 | { 15 | _coordinate = c; 16 | return self; 17 | } 18 | 19 | 20 | @end 21 | 22 | -------------------------------------------------------------------------------- /Airbitz/Business Directory/MapView/AnnotationContentView.h: -------------------------------------------------------------------------------- 1 | // 2 | // AnnotationContentView.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/23/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AnnotationContentView : UIView 12 | 13 | @property (nonatomic, weak) IBOutlet UIImageView *bkg_image; 14 | @property (nonatomic, weak) IBOutlet UILabel *titleLabel; 15 | @property (nonatomic, weak) IBOutlet UILabel *subtitleLabel; 16 | 17 | + (AnnotationContentView *)Create; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Airbitz/Business Directory/MapView/CustomAnnotationView.h: -------------------------------------------------------------------------------- 1 | // 2 | // CustomAnnotationView.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/25/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "SMCalloutView.h" 11 | 12 | @interface CustomAnnotationView : MKAnnotationView 13 | 14 | @property (strong, nonatomic) SMCalloutView *calloutView; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Airbitz/Business Directory/MapView/MapView.h: -------------------------------------------------------------------------------- 1 | // 2 | // MapView.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/20/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "Annotation.h" 11 | 12 | @interface MapView : MKMapView 13 | 14 | -(Annotation *)addAnnotationForBusiness:(NSDictionary *)business; 15 | -(void)removeAnnotationForBusiness:(NSDictionary *)business; 16 | -(void)removeAllAnnotations; 17 | - (void)zoomToFitMapAnnotations; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Airbitz/Business Directory/OverViewTableCell/overviewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // overviewCell.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/5/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CommonOverviewCell.h" 11 | 12 | @interface overviewCell : CommonOverviewCell 13 | 14 | 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Airbitz/Business Directory/OverViewTableCell/topOverviewCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // topOverviewCell.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/5/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CommonOverviewCell.h" 11 | 12 | @interface topOverviewCell : CommonOverviewCell 13 | 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Airbitz/Business Directory/categoryCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // categoryCell.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 3/10/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "LatoLabel.h" 11 | 12 | @interface categoryCell : UITableViewCell 13 | @property (nonatomic, weak) IBOutlet LatoLabel *categoryLabel; 14 | @end 15 | -------------------------------------------------------------------------------- /Airbitz/Contact.h: -------------------------------------------------------------------------------- 1 | // 2 | // Contact.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 8/14/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import 11 | 12 | @interface Contact : NSObject 13 | 14 | @property (nonatomic, copy) NSString *strName; 15 | @property (nonatomic, copy) NSString *strData; 16 | @property (nonatomic, copy) NSString *strDataLabel; 17 | @property (nonatomic, strong) UIImage *imagePhoto; 18 | 19 | @end 20 | -------------------------------------------------------------------------------- /Airbitz/DDData/DDData.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface NSData (DDData) 4 | 5 | - (NSData *)md5Digest; 6 | 7 | - (NSData *)sha1Digest; 8 | 9 | - (NSString *)hexStringValue; 10 | 11 | - (NSString *)base64Encoded; 12 | - (NSData *)base64Decoded; 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /Airbitz/DarkenView.h: -------------------------------------------------------------------------------- 1 | // 2 | // DarkenView.h 3 | // 4 | // Created by Carson Whitsett on 1/30/14. 5 | // Copyright (c) 2014 AirBitz, Inc. All rights reserved. 6 | // 7 | 8 | #import 9 | #import "BlurView.h" 10 | 11 | @protocol DarkenViewDelegate; 12 | 13 | @interface DarkenView : BlurView 14 | 15 | @property (assign) id delegate; 16 | 17 | @end 18 | 19 | @protocol DarkenViewDelegate 20 | 21 | @optional 22 | - (void) DarkenViewTapped:(DarkenView *)view; 23 | 24 | @end -------------------------------------------------------------------------------- /Airbitz/Google Drive/DriveLib.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Google Drive/DriveLib.a -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/HTTPFetcher/.svn/entries: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/HTTPFetcher/.svn/format: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/HTTPFetcher/.svn/pristine/59/592041839193a87839e59ca0dcda346a8e9ff0b8.svn-base: -------------------------------------------------------------------------------- 1 | Four score and seven years ago our fathers brought forth on this continent, a 2 | new nation, conceived in liberty, and dedicated to the proposition that all men 3 | are created equal. -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/HTTPFetcher/.svn/wc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Google Drive/Source/HTTPFetcher/.svn/wc.db -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/HTTPFetcher/Tests/Data/gettysburgaddress.txt: -------------------------------------------------------------------------------- 1 | Four score and seven years ago our fathers brought forth on this continent, a 2 | new nation, conceived in liberty, and dedicated to the proposition that all men 3 | are created equal. -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/OAuth2/.svn/entries: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/OAuth2/.svn/format: -------------------------------------------------------------------------------- 1 | 12 2 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/OAuth2/.svn/wc.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Google Drive/Source/OAuth2/.svn/wc.db -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/Task1.request.txt: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "gtl_12", 3 | "apiVersion" : "v1", 4 | "params" : { 5 | "tasklist" : "MDg0NTg2OTA1ODg4OTI3MzgyMzQ6NDow", 6 | "showCompleted" : true, 7 | "showDeleted" : false, 8 | "showHidden" : false 9 | }, 10 | "method" : "tasks.tasks.list", 11 | "jsonrpc" : "2.0" 12 | } 13 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskBatchPage1b.request.txt: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id" : "gtl_3", 4 | "apiVersion" : "v1", 5 | "params" : { 6 | "showHidden" : false, 7 | "tasklist" : "MTQwNzM4MjM0NzE2NDExMDgxOTM6MDow", 8 | "maxResults" : 2, 9 | "showCompleted" : true, 10 | "showDeleted" : false, 11 | "pageToken" : "MTQwNzM4MjM0NzE2NDExMDgxOTM6MDox" 12 | }, 13 | "method" : "tasks.tasks.list", 14 | "jsonrpc" : "2.0" 15 | } 16 | ] 17 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskDelete1.request.txt: -------------------------------------------------------------------------------- 1 | { 2 | "method" : "tasks.tasks.delete", 3 | "id" : "gtl_5", 4 | "jsonrpc" : "2.0", 5 | "params" : { 6 | "tasklist" : "MTQwNzM4MjM0NzE2NDExMDgxOTM6MDow", 7 | "task" : "MTQwNzM4MjM0NzE2NDExMDgxOTM6MDoz" 8 | }, 9 | "apiVersion" : "v1" 10 | } -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskDelete1.response.txt: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "gtl_5", 3 | "result" : { 4 | } 5 | } -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskEmpty1.request.txt: -------------------------------------------------------------------------------- 1 | { 2 | "method" : "tasks.tasks.list", 3 | "id" : "gtl_7", 4 | "jsonrpc" : "2.0", 5 | "params" : { 6 | "tasklist" : "MTQwNzM4MjM0NzE2NDExMDgxOTM6MDow", 7 | "fields" : "" 8 | }, 9 | "apiVersion" : "v1" 10 | } 11 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskEmpty1.response.txt: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "gtl_7", 3 | "result" : { 4 | } 5 | } -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskError1.request.txt: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "gtl_4", 3 | "apiVersion" : "v1", 4 | "params" : { 5 | "tasklist" : "abcd" 6 | }, 7 | "method" : "tasks.tasks.list", 8 | "jsonrpc" : "2.0" 9 | } 10 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskError1.response.txt: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "gtl_4", 3 | "error" : { 4 | "message" : "Invalid Value", 5 | "data" : [ 6 | { 7 | "domain" : "global", 8 | "reason" : "invalid", 9 | "message" : "Invalid Value" 10 | } 11 | ], 12 | "code" : 400 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskPage1a.request.txt: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "gtl_17", 3 | "apiVersion" : "v1", 4 | "params" : { 5 | "tasklist" : "MDg0NTg2OTA1ODg4OTI3MzgyMzQ6NDow", 6 | "maxResults" : 2 7 | }, 8 | "method" : "tasks.tasks.list", 9 | "jsonrpc" : "2.0" 10 | } 11 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskPage1b.request.txt: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "gtl_17", 3 | "apiVersion" : "v1", 4 | "params" : { 5 | "tasklist" : "MDg0NTg2OTA1ODg4OTI3MzgyMzQ6NDow", 6 | "maxResults" : 2, 7 | "pageToken" : "MDg0NTg2OTA1ODg4OTI3MzgyMzQ6NDoy" 8 | }, 9 | "method" : "tasks.tasks.list", 10 | "jsonrpc" : "2.0" 11 | } 12 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskPage1c.request.txt: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "gtl_18", 3 | "apiVersion" : "v1", 4 | "params" : { 5 | "tasklist" : "MDg0NTg2OTA1ODg4OTI3MzgyMzQ6NDow", 6 | "maxResults" : 2 7 | }, 8 | "method" : "tasks.tasks.list", 9 | "jsonrpc" : "2.0" 10 | } 11 | -------------------------------------------------------------------------------- /Airbitz/Google Drive/Source/Tests/Data/TaskPage1d.request.txt: -------------------------------------------------------------------------------- 1 | { 2 | "id" : "gtl_18", 3 | "apiVersion" : "v1", 4 | "params" : { 5 | "tasklist" : "MDg0NTg2OTA1ODg4OTI3MzgyMzQ6NDow", 6 | "maxResults" : 2, 7 | "startIndex" : 3 8 | }, 9 | "method" : "tasks.tasks.list", 10 | "jsonrpc" : "2.0" 11 | } 12 | -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/BuildAgent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/BuildAgent -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/HockeySDK: -------------------------------------------------------------------------------- 1 | Versions/Current/HockeySDK -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- 1 | framework module HockeySDK { 2 | umbrella header "HockeySDK.h" 3 | 4 | export * 5 | module * { export * } 6 | } 7 | -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/HockeySDK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/HockeySDK -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDK.xcconfig: -------------------------------------------------------------------------------- 1 | OTHER_LDFLAGS=$(inherited) -framework CoreText -framework CoreGraphics -framework Foundation -framework QuartzCore -framework SystemConfiguration -framework UIKit -framework Security -framework AssetsLibrary -framework MobileCoreServices 2 | HOCKEYSDK_DOCSET_NAME=HockeySDK-iOS 3 | GCC_PREPROCESSOR_DEFINITIONS=$(inherited) CONFIGURATION_$(CONFIGURATION) 4 | -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Arrow.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Arrow@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Arrow@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Arrow@3x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Blur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Blur.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Blur@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Blur@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Blur@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Blur@3x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Cancel.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Cancel@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Cancel@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Cancel@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Cancel@3x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/IconGradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/IconGradient.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/IconGradient@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/IconGradient@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Info.plist -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Ok.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Ok@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Ok@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Ok@3x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Rectangle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Rectangle.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Rectangle@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Rectangle@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Rectangle@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/Rectangle@3x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/authorize_denied.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/authorize_denied.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/authorize_denied@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/authorize_denied@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/authorize_denied@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/authorize_denied@3x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/bg.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedDelete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedDelete.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedDelete@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedDelete@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedDeleteHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedDeleteHighlighted.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedDeleteHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedDeleteHighlighted@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedRegular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedRegular.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedRegular@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedRegular@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedRegularHighlighted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedRegularHighlighted.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedRegularHighlighted@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/buttonRoundedRegularHighlighted@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/de.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/de.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/en.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/en.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/es.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/es.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/feedbackActivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/feedbackActivity.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/feedbackActivity@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/feedbackActivity@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/feedbackActivity@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/feedbackActivity@2x~ipad.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/feedbackActivity@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/feedbackActivity@3x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/feedbackActivity~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/feedbackActivity~ipad.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/fr.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/fr.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/hr.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/hr.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/hu.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/hu.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/iconCamera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/iconCamera.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/iconCamera@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/iconCamera@2x.png -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/it.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/it.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/ja.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/ja.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/nl.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/nl.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/pt-PT.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/pt-PT.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/pt.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/pt.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/ru.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/ru.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/zh-Hans.lproj/HockeySDK.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/A/Resources/HockeySDKResources.bundle/zh-Hans.lproj/HockeySDK.strings -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/HockeySDK.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/Resources/HockeySDK.xcconfig: -------------------------------------------------------------------------------- 1 | ../HockeySDK.framework/Resources/HockeySDK.xcconfig -------------------------------------------------------------------------------- /Airbitz/HockeySDK-iOS/HockeySDK.embeddedframework/Resources/HockeySDKResources.bundle: -------------------------------------------------------------------------------- 1 | ../HockeySDK.framework/Resources/HockeySDKResources.bundle -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-72.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-72@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-72@2x-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small-2.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small-50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small-50.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small-50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small-50@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small@2x-2.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Develop.appiconset/Icon@2x-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-60.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-76@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-20x20@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-20x20@2x-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-29x29@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-29x29@2x-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-40x40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-40x40@2x-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-57x57@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-57x57@1x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-57x57@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-57x57@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-60x60@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-60x60@1x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-72x72@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-72x72@1x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-72x72@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-72x72@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-76x76@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-76x76@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Small-50x50@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Small-50x50@1x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Small-50x50@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Small-50x50@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Spotlight-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Spotlight-40@2x-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Spotlight-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon-Testnet.appiconset/Icon-Spotlight-40@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-40.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-40@2x-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-40@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-40@2x-2.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-60@2x-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-1.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small@2x-2.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/Icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/Icon@2x.png -------------------------------------------------------------------------------- /Airbitz/Images.xcassets/AppIcon.appiconset/icon-airbitz-1024x1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Images.xcassets/AppIcon.appiconset/icon-airbitz-1024x1024.png -------------------------------------------------------------------------------- /Airbitz/LatoLabel.h: -------------------------------------------------------------------------------- 1 | // 2 | // LatoLabel.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/6/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | // Specify a tag in IB to select regular or bold. The tag is modded with 100 9 | // so a tag of 1, 101, or 201 all specify BOLD 10 | 11 | #import 12 | 13 | @interface LatoLabel : UILabel 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Airbitz/Login/UsernameDropDownCell.swift: -------------------------------------------------------------------------------- 1 | // 2 | // UsernameDropDownCell.swift 3 | // Airbitz 4 | // 5 | // Created by Rommel Rico on 11/22/16. 6 | // Copyright © 2016 Airbitz. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | let DropDownDeleteNotificationIdentifier = Notification.Name("DropDownDeleteNotificationIdentifier") 12 | 13 | class UsernameDropDownCell: DropDownCell { 14 | 15 | @IBAction func deleteButton(_ sender: Any) { 16 | NotificationCenter.default.post(name: DropDownDeleteNotificationIdentifier, object: self) 17 | } 18 | 19 | } 20 | -------------------------------------------------------------------------------- /Airbitz/MinCharTextField.h: -------------------------------------------------------------------------------- 1 | // 2 | // MinCharTextField.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 3/25/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "StylizedTextField.h" 11 | 12 | @interface MinCharTextField : StylizedTextField 13 | 14 | @property (nonatomic, assign) int minimumCharacters; 15 | @property (nonatomic, readonly) BOOL satisfiesMinimumCharacters; 16 | @end 17 | -------------------------------------------------------------------------------- /Airbitz/NSString+StripHTML.h: -------------------------------------------------------------------------------- 1 | // 2 | // NSString+StripHTML.h 3 | // AirBitz 4 | // 5 | // Created by Allan on 11/24/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface NSString (StripHTML) 12 | -(NSString *)stringByStrippingHTML; 13 | @end 14 | -------------------------------------------------------------------------------- /Airbitz/Notifications.h: -------------------------------------------------------------------------------- 1 | // 2 | // Notifications.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 3/3/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #ifndef AirBitz_Notifications_h 10 | #define AirBitz_Notifications_h 11 | 12 | #define NOTIFICATION_SHOW_TAB_BAR @"Notification_Show_Tab_Bar" /* post with an NSNumber Bool of YES or NO to show/hide */ 13 | 14 | #endif 15 | -------------------------------------------------------------------------------- /Airbitz/Plugins/BuySellViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BuySellViewController.h 3 | // AirBitz 4 | // 5 | 6 | #import 7 | #import "AirbitzViewController.h" 8 | 9 | @protocol BuySellViewControllerDelegate; 10 | 11 | @interface BuySellViewController : AirbitzViewController 12 | 13 | @property (assign) id delegate; 14 | - (BOOL)launchPluginByCountry:(NSString *)country provider:(NSString *)provider uri:(NSURL *)uri; 15 | - (void)resetViews; 16 | 17 | @end 18 | 19 | 20 | @protocol BuySellViewControllerDelegate 21 | 22 | @required 23 | @end 24 | -------------------------------------------------------------------------------- /Airbitz/Plugins/PluginCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // PluginCell.h 3 | // AirBitz 4 | // 5 | 6 | #import 7 | #import "CommonCell.h" 8 | 9 | @interface PluginCell : CommonCell 10 | @property (weak, nonatomic) IBOutlet LatoLabel *topLabel; 11 | @property (weak, nonatomic) IBOutlet LatoLabel *bottomLabel; 12 | @property (weak, nonatomic) IBOutlet UIImageView *image; 13 | @property (weak, nonatomic) IBOutlet UIImageView *rightImage; 14 | 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Airbitz/Plugins/PluginListViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // BuySellViewController.h 3 | // AirBitz 4 | // 5 | 6 | #import 7 | #import "AirbitzViewController.h" 8 | 9 | @protocol PluginListViewControllerDelegate; 10 | 11 | @interface PluginListViewController : AirbitzViewController 12 | 13 | @property (assign) id delegate; 14 | - (void)resetViews; 15 | 16 | @end 17 | 18 | 19 | @protocol PluginListViewControllerDelegate 20 | 21 | @required 22 | @end 23 | -------------------------------------------------------------------------------- /Airbitz/Plugins/PluginViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // PluginViewController.h 3 | // AirBitz 4 | // 5 | 6 | #import 7 | #import "Plugin.h" 8 | 9 | @protocol PluginViewControllerDelegate; 10 | 11 | @interface PluginViewController : UIViewController 12 | 13 | @property (assign) id delegate; 14 | @property (assign) Plugin *plugin; 15 | @property (assign) NSURL *uri; 16 | 17 | @end 18 | 19 | 20 | @protocol PluginViewControllerDelegate 21 | 22 | @required 23 | - (void)PluginViewControllerDone:(PluginViewController *)vc; 24 | @end 25 | -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/0-bars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/0-bars@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/1-bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/1-bar@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/2-bars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/2-bars@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/3-bars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/3-bars@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/4-bars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/4-bars@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/5-bars@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/5-bars@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/BLE_Logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/BLE_Logo@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/BLE_photo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/BLE_photo@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/Green-check@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/Green-check@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/QR-bracket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/QR-bracket.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/Red-X@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/Red-X@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/UIButtonBarRefresh@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/UIButtonBarRefresh@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/Warning_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/Warning_icon@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/White-Dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/White-Dot@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/background-fade@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/background-fade@2x.jpg -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/background@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/background@2x.jpg -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/background_launch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/background_launch.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/background_launch.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/background_launch.psd -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/barcode-bracket@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/barcode-bracket@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bd_icon_clock@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bd_icon_clock@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bd_icon_facebook@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bd_icon_facebook@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bd_icon_foursquare@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bd_icon_foursquare@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bd_icon_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bd_icon_location@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bd_icon_phone@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bd_icon_phone@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bd_icon_share@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bd_icon_share@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bd_icon_twitter@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bd_icon_twitter@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bd_icon_web@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bd_icon_web@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bd_icon_yelp@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bd_icon_yelp@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bd_sliderbubble@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bd_sliderbubble@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bitCoinAnnotation@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bitCoinAnnotation@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bitcoin_symbol@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bitcoin_symbol@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/bitcoin_symbol@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/bitcoin_symbol@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_add.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_add.ai -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_add.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_add@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_add@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_add@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_add@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_add@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_add_black.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_add_black.ai -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_add_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_add_black.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_add_black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_add_black@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_add_black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_add_black@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_add_black@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_add_black@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_close.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_close.ai -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_close.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_close@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_close@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_close@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_close@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_close@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_close@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_close_white.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_close_white.ai -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_close_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_close_white.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_close_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_close_white@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_close_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_close_white@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_close_white@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_close_white@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_collapse_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_collapse_expand.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_collapse_expand@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_collapse_expand@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_collapse_expand@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_collapse_expand@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_collapse_expand@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_collapse_expand@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_collapse_expand_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_collapse_expand_black.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_collapse_expand_black@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_collapse_expand_black@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_collapse_expand_black@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_collapse_expand_black@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_collapse_expand_black@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_collapse_expand_black@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_export.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_export.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_export.psd -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_export@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_export@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_export@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_export@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_export@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_export@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_export_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_export_white.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_export_white@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_export_white@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_export_white@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_export_white@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_export_white@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_export_white@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_locateMe@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_locateMe@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_right@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_selected@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_slide_to_confirm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_slide_to_confirm@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_slider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_slider@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/btn_unselected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/btn_unselected@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/clearButton@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/clearButton@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/darken_bottom_table_cell.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/darken_bottom_table_cell.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/darken_bottom_table_cell.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/darken_bottom_table_cell.psd -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/divider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/divider.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/divider@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/divider@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/drag_bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/drag_bar@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/emboss_down@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/emboss_down@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/enable-camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/enable-camera.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/enable-contacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/enable-contacts.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/eyeball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/eyeball.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/eyeball@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/eyeball@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/eyeball@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/eyeball@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/fingerprint-wht.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/fingerprint-wht.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/fingerprint-wht@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/fingerprint-wht@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/fingerprint-wht@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/fingerprint-wht@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/flash-off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/flash-off@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/flash-on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/flash-on@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/flash_off@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/flash_off@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/flash_on@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/flash_on@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/gift_box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/gift_box.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/gift_box@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/gift_box@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/gift_box@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/gift_box@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/gift_box@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/gift_box@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/green-coffee-mug-128px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/green-coffee-mug-128px@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/h_seperator@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/h_seperator@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/ico_nav_directory_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/ico_nav_directory_dark.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/ico_nav_directory_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/ico_nav_directory_dark@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/ico_nav_directory_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/ico_nav_directory_dark@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/ico_nav_directory_dark@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/ico_nav_directory_dark@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_USD_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_USD_dark@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_USD_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_USD_light@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_account_secure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_account_secure.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_account_secure@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_account_secure@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_account_secure@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_account_secure@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_account_secure@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_account_secure@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_approved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_approved.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_approved@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_approved@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_arrow.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_bitcoin_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_bitcoin_dark@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_bitcoin_light@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_bitcoin_light@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_bitcoin_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_bitcoin_symbol.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_calendar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_calendar@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_atm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_atm.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_atm@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_atm@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_atm@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_atm@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_coffee_tea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_coffee_tea.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_coffee_tea@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_coffee_tea@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_coffee_tea@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_coffee_tea@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_electronics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_electronics.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_electronics@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_electronics@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_electronics@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_electronics@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_gift_cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_gift_cards.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_gift_cards@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_gift_cards@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_gift_cards@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_gift_cards@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_restaurants.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_restaurants.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_restaurants@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_restaurants@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_restaurants@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_restaurants@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_shopping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_shopping.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_shopping@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_shopping@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_category_shopping@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_category_shopping@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_directory.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_directory.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_directory@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_directory@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_directory@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_directory@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_directory@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_directory@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_exchange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_exchange.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_export_dropbox@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_export_dropbox@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_export_email@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_export_email@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_export_google@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_export_google@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_export_printer@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_export_printer@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_export_sdcard@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_export_sdcard@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_export_view@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_export_view@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_import.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_import@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_import@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_import@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_import@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_location@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_location@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_logout.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_logout@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_logout@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_logout@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_logout@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_logout@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_logout@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_more.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_more@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_more@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_more@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_more@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_more@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_more@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_not_approved@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_not_approved@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_request.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_request@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_request@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_request@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_request@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_request@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_request@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_request_padded@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_request_padded@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_rightArrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_rightArrow@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_search@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_search@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_send.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_send.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_send@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_send@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_send@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_send@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_send@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_send@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_send_padded@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_send_padded@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_settings.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_settings@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_settings@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_settings@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_settings@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_settings@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_settings@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_settings_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_settings_dark.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_settings_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_settings_dark@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_settings_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_settings_dark@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_settings_dark@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_settings_dark@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_transactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_transactions.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_transactions@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_transactions@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_transactions@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_transactions@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_transactions@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_transactions@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_wallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_wallet.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_wallet@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_wallet@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_wallet@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_wallet@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_wallet_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_wallet_dark.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_wallet_dark@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_wallet_dark@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_wallet_dark@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_wallet_dark@3x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/icon_wallet_dark@4x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/icon_wallet_dark@4x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/img_collapseExpandBlueDown@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/img_collapseExpandBlueDown@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/large-digit-input@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/large-digit-input@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/large-digit-input_selected@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/large-digit-input_selected@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/logo@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/logo@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/logo_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/logo_icon@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/logo_icon_full@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/logo_icon_full@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/logo_large@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/logo_large@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/password_dot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/password_dot@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/plugin_icon_coffee@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/plugin_icon_coffee@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/plugin_icon_euro@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/plugin_icon_euro@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/plugin_icon_homedepot@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/plugin_icon_homedepot@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/plugin_icon_target@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/plugin_icon_target@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/plugin_icon_usd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/plugin_icon_usd@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/plugin_icon_walmart@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/plugin_icon_walmart@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/plugin_icon_wholefoods@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/plugin_icon_wholefoods@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/red-bulls-eye-128px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/red-bulls-eye-128px@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/ribbon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/ribbon@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/swipe-arrow@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/swipe-arrow@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/thumb@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/thumb@2x.png -------------------------------------------------------------------------------- /Airbitz/Resources/Artwork/write-it-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Artwork/write-it-down.png -------------------------------------------------------------------------------- /Airbitz/Resources/Audio/BitcoinReceived.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Audio/BitcoinReceived.mp3 -------------------------------------------------------------------------------- /Airbitz/Resources/Audio/BitcoinReceivedPartial.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Audio/BitcoinReceivedPartial.mp3 -------------------------------------------------------------------------------- /Airbitz/Resources/Audio/BitcoinSent.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Audio/BitcoinSent.mp3 -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Lato/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Lato/Lato-Black.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Lato/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Lato/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Lato/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Lato/Lato-Bold.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Lato/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Lato/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Lato/Lato-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Lato/Lato-Hairline.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Lato/Lato-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Lato/Lato-HairlineItalic.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Lato/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Lato/Lato-Italic.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Lato/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Lato/Lato-Light.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Lato/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Lato/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Lato/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Lato/Lato-Regular.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Montserrat/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Montserrat/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/Fonts/Montserrat/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/Fonts/Montserrat/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /Airbitz/Resources/MockData/WalletExportPDF.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/MockData/WalletExportPDF.pdf -------------------------------------------------------------------------------- /Airbitz/Resources/Text/Base.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Bitcoin Payment Request 2 | From: [[abtag FROM]] 3 | 4 | Please scan QR code or click on the links to pay 5 | 6 | Click to Pay 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Address: [[abtag ADDRESS]] 12 | Amount: [[abtag AMOUNT_BTC]] BTC 13 | Amount: [[abtag AMOUNT_BITS]] bits 14 | 15 | Sent from the [[abtag APP_TITLE]] Mobile Bitcoin Wallet + Business Directory 16 | 17 | Download [[abtag APP_TITLE]] for iOS or Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/ar.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | بيتكوين طلب الدفع 2 | من عند: [[abtag FROM]] 3 | 4 | يرجى تفحص  QR رمز  أو انقر على وصلات لدفع 5 | 6 | انقر على الدفع 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | عنوان [[abtag ADDRESS]] 12 | كمية [[abtag AMOUNT_BTC]] BTC 13 | كمية: [[abtag AMOUNT_BITS]] بت 14 | 15 | أرسلت من [[abtag APP_TITLE]] موبايل بيتكوين محفظة + دليل الأعمال 16 | 17 | تحميل [[abtag APP_TITLE]] لدائرة الرقابة الداخلية أو الروبوت 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/de-CH.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Bitcoin Zahlungsanfrage 2 | Von: [[abtag FROM]] 3 | 4 | Bitte scannen Sie den QR-Code oder klicken Sie auf die Links um zu bezahlen 5 | 6 | Klicken um zu bezahlen 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Adresse: [[abtag ADDRESS]] 12 | Betrag: [[abtag AMOUNT_BTC]] BTC 13 | Betrag: [[abtag AMOUNT_BITS]] bits 14 | 15 | Gesendet von der [[abtag APP_TITLE]] Mobile Bitcoin-Wallet + Branchenverzeichnis 16 | 17 | Download [[abtag APP_TITLE]] für iOS und Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/de-LU.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Bitcoin Zahlungsanfrage 2 | Von: [[abtag FROM]] 3 | 4 | Bitte scannen Sie den QR-Code oder klicken Sie auf die Links um zu bezahlen 5 | 6 | Klicken um zu bezahlen 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Adresse: [[abtag ADDRESS]] 12 | Betrag: [[abtag AMOUNT_BTC]] BTC 13 | Betrag: [[abtag AMOUNT_BITS]] bits 14 | 15 | Gesendet von der [[abtag APP_TITLE]] Mobile Bitcoin-Wallet + Branchenverzeichnis 16 | 17 | Download [[abtag APP_TITLE]] für iOS und Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/de.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Bitcoin Zahlungsanfrage 2 | Von: [[abtag FROM]] 3 | 4 | Bitte scannen Sie den QR-Code oder klicken Sie auf die Links um zu bezahlen 5 | 6 | Klicken um zu bezahlen 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Adresse: [[abtag ADDRESS]] 12 | Betrag: [[abtag AMOUNT_BTC]] BTC 13 | Betrag: [[abtag AMOUNT_BITS]] bits 14 | 15 | Gesendet von der [[abtag APP_TITLE]] Mobile Bitcoin-Wallet + Branchenverzeichnis 16 | 17 | Download [[abtag APP_TITLE]] für iOS und Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/el.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Αίτηση Πληρωμής Bitcoin 2 | Από: [[abtag FROM]] 3 | 4 | Παρακαλούμε κάνετε σάρωση τον QR κωδικό ή κάνετε κλικ στους συνδέσμους για να πληρώσετε 5 | 6 | Πατήστε για Πληρωμή 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Διεύθυνση: [[abtag ADDRESS]] 12 | Ποσό: [[abtag AMOUNT_BTC]] BTC 13 | Ποσό: [[abtag AMOUNT_BITS]] bits 14 | 15 | Αποστολή από το [[abtag APP_TITLE]] Mobile Bitcoin Wallet+ Business Directory 16 | 17 | Κάνετε λήψη της εφαρμογής [[abtag APP_TITLE]] για iOS ή Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/es-419.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Solicitud de pago de Bitcoin 2 | De: [[abtag de]] 3 | 4 | Por favor escanear código QR o haga clic en los enlaces para pagar 5 | 6 | Haga clic para pagar 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Direccion: [[abtag ADDRESS]] 12 | Cantidad: [[abtag AMOUNT_BTC]] BTC 13 | Cantidad: [[abtag AMOUNT_BITS]] bits 14 | 15 | Enviado desde [[abtag APP_TITLE]] cartera móvil de Bitcoin + directorio empresarial 16 | 17 | Descargar [[abtag APP_TITLE]] para iOS o Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/es-MX.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Solicitud de pago de Bitcoin 2 | De: [[abtag de]] 3 | 4 | Por favor escanear código QR o haga clic en los enlaces para pagar 5 | 6 | Haga clic para pagar 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Direccion: [[abtag ADDRESS]] 12 | Cantidad: [[abtag AMOUNT_BTC]] BTC 13 | Cantidad: [[abtag AMOUNT_BITS]] bits 14 | 15 | Enviado desde [[abtag APP_TITLE]] cartera móvil de Bitcoin + directorio empresarial 16 | 17 | Descargar [[abtag APP_TITLE]] para iOS o Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/es-PR.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Solicitud de pago de Bitcoin 2 | De: [[abtag de]] 3 | 4 | Por favor escanear código QR o haga clic en los enlaces para pagar 5 | 6 | Haga clic para pagar 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Direccion: [[abtag ADDRESS]] 12 | Cantidad: [[abtag AMOUNT_BTC]] BTC 13 | Cantidad: [[abtag AMOUNT_BITS]] bits 14 | 15 | Enviado desde [[abtag APP_TITLE]] cartera móvil de Bitcoin + directorio empresarial 16 | 17 | Descargar [[abtag APP_TITLE]] para iOS o Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/es.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Solicitud de pago de Bitcoin 2 | De: [[abtag de]] 3 | 4 | Por favor escanear código QR o haga clic en los enlaces para pagar 5 | 6 | Haga clic para pagar 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Direccion: [[abtag ADDRESS]] 12 | Cantidad: [[abtag AMOUNT_BTC]] BTC 13 | Cantidad: [[abtag AMOUNT_BITS]] bits 14 | 15 | Enviado desde [[abtag APP_TITLE]] cartera móvil de Bitcoin + directorio empresarial 16 | 17 | Descargar [[abtag APP_TITLE]] para iOS o Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/fr-CA.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Demande de paiement Bitcoin 2 | De: [[abtag FROM]] 3 | 4 | Veuillez scanner le code QR ou cliquer sur les liens à fin de payer 5 | 6 | Cliquez pour Payer 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Addresse: [[abtag ADDRESS]] 12 | Montant: [[abtag AMOUNT_BTC]] BTC 13 | Amount: [[abtag AMOUNT_BITS]] bits 14 | 15 | Envoyé à partir du [[abtag APP_TITLE]] Portefeuille Mobile Bitcoin + Annuaire d'Entreprises 16 | 17 | Télécharger [[abtag APP_TITLE]] pour iOS ou Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/fr-CH.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Demande de paiement Bitcoin 2 | De: [[abtag FROM]] 3 | 4 | Veuillez scanner le code QR ou cliquer sur les liens à fin de payer 5 | 6 | Cliquez pour Payer 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Addresse: [[abtag ADDRESS]] 12 | Montant: [[abtag AMOUNT_BTC]] BTC 13 | Amount: [[abtag AMOUNT_BITS]] bits 14 | 15 | Envoyé à partir du [[abtag APP_TITLE]] Portefeuille Mobile Bitcoin + Annuaire d'Entreprises 16 | 17 | Télécharger [[abtag APP_TITLE]] pour iOS ou Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/fr.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Demande de paiement Bitcoin 2 | De: [[abtag FROM]] 3 | 4 | Veuillez scanner le code QR ou cliquer sur les liens à fin de payer 5 | 6 | Cliquez pour Payer 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Addresse: [[abtag ADDRESS]] 12 | Montant: [[abtag AMOUNT_BTC]] BTC 13 | Amount: [[abtag AMOUNT_BITS]] bits 14 | 15 | Envoyé à partir du [[abtag APP_TITLE]] Portefeuille Mobile Bitcoin + Annuaire d'Entreprises 16 | 17 | Télécharger [[abtag APP_TITLE]] pour iOS ou Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/hi.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | बिटकॉइन भुगतान का अनुरोध 2 | से:[[abtag FROM]] 3 | 4 | क्यूआर कोड को स्कैन करने या भुगतान करने के लिए लिंक पर क्लिक करें 5 | 6 | भुगतान करने के लिए क्लिक करें 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | पता: [[abtag ADDRESS]] 12 | राशि: [[abtag AMOUNT_BTC]] बीटीसी 13 | राशि: [[abtag AMOUNT_BITS]] बिट्स 14 | 15 | [[Abtag APP_TITLE]] से भेजा गया मोबाइल Bitcoin बटुआ + व्यापार निर्देशिका 16 | 17 | [[abtag APP_TITLE]] को IOS या Android के लिए डाउनलोड करें 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/ht.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Bitcoin Mande Peman 2 | Depi: [[abtag FROM]] 3 | 4 | Tanpri eskanè QR code ou klike sou lyen yo a peye 5 | 6 | Klike sou yo Peye 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Adrès: [[abtag ADDRESS]] 12 | Kantite: [[abtag AMOUNT_BTC]] BTC 13 | Kantite: [[abtag AMOUNT_BITS]] bits 14 | 15 | Voye soti nan [[abtag APP_TITLE]] Bous Mobile Bitcoin + An Biznis 16 | 17 | Telechaje [[itag APP TIT]] pou iOS oswa Android [[abtag APP_DOWNLOAD_LINK]] 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/ja.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Bitcoin支払い要求 2 | から [[abtag FROM]] 3 | 4 | QRコードをスキャンするか、有料のリンクをクリックしてください 5 | 6 | クリックでプレイ 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | 住所: [[abtag ADDRESS]] 12 | 量:[[abtag AMOUNT_BTC]] BTC 13 | 量: [[abtag AMOUNT_BITS]] bits 14 | 15 | から送信された  [[abtag APP_TITLE]]モバイルBitcoin Wallet +ビジネスディレクトリ 16 | 17 | ダウンロード[[abtag APP_TITLE]]iOSまたはAndroid用 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/nl.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Bitcoin Payment Request 2 | From: [[abtag FROM]] 3 | 4 | Please scan QR code or click on the links to pay 5 | 6 | Click to Pay 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Address: [[abtag ADDRESS]] 12 | Amount: [[abtag AMOUNT_BTC]] BTC 13 | Amount: [[abtag AMOUNT_BITS]] bits 14 | 15 | Sent from the [[abtag APP_TITLE]] Mobile Bitcoin Wallet + Business Directory 16 | 17 | Download [[abtag APP_TITLE]] for iOS or Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/pt-BR.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Solicitação de Pagamento de Bitcoin 2 | De: [[abtag FROM]] 3 | 4 | Por favor, escaneie o código QR ou clique nos links para pagar. 5 | 6 | Clique para Pagar 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Endereço: [[abtag ADDRESS]] 12 | Quantia: [[abtag AMOUNT_BTC]] BTC 13 | Quantia: [[abtag AMOUNT_BITS]] bits 14 | 15 | Enviado do Aparelho [[abtag APP_TITLE]] Carteira Bitcoin + Diretório de Negócios 16 | 17 | Baixe o [[abtag APP_TITLE]] para iOS ou Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/pt.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Solicitação de Pagamento de Bitcoin 2 | De: [[abtag FROM]] 3 | 4 | Por favor, escaneie o código QR ou clique nos links para pagar. 5 | 6 | Clique para Pagar 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Endereço: [[abtag ADDRESS]] 12 | Quantia: [[abtag AMOUNT_BTC]] BTC 13 | Quantia: [[abtag AMOUNT_BITS]] bits 14 | 15 | Enviado do Aparelho [[abtag APP_TITLE]] Carteira Bitcoin + Diretório de Negócios 16 | 17 | Baixe o [[abtag APP_TITLE]] para iOS ou Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/ru.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | Запрос платежа в биткойн 2 | От: [[abtag FROM]] 3 | 4 | Пожалуйста, отсканируйте QR-код или нажмите на ссылку для совершения платежа 5 | 6 | Нажмите, чтобы оплатить 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | Адрес: [[abtag ADDRESS]] 12 | Сумма: [[abtag AMOUNT_BTC]] BTC 13 | Сумма: [[abtag AMOUNT_BITS]] bits 14 | 15 | Отправлено из мобильного биткойн-кошелька и делового каталога [[abtag APP_TITLE]] 16 | 17 | Загрузить [[abtag APP_TITLE]] для iOS и Android 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/zh-CN.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | 比特币支付请求 2 | 来自: [[abtag FROM]] 3 | 4 | 请扫描二维码或点击链接以付款 5 | 6 | 点击进行支付 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | 地址: [[abtag ADDRESS]] 12 | 数额: [[abtag AMOUNT_BTC]] BTC 13 | 数额: [[abtag AMOUNT_BITS]] bits 14 | 15 | 发送自 [[abtag APP_TITLE]] 移动式比特币钱包 + 企业名录 16 | 17 | 下载iOS或Android版本的[[abtag APP_TITLE]] 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/zh-Hans.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | 比特币支付请求 2 | 来自: [[abtag FROM]] 3 | 4 | 请扫描二维码或点击链接以付款 5 | 6 | 点击进行支付 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | 地址: [[abtag ADDRESS]] 12 | 数额: [[abtag AMOUNT_BTC]] BTC 13 | 数额: [[abtag AMOUNT_BITS]] bits 14 | 15 | 发送自 [[abtag APP_TITLE]] 移动式比特币钱包 + 企业名录 16 | 17 | 下载iOS或Android版本的[[abtag APP_TITLE]] 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/Text/zh.lproj/sms_template.txt: -------------------------------------------------------------------------------- 1 | 比特币支付请求 2 | 来自: [[abtag FROM]] 3 | 4 | 请扫描二维码或点击链接以付款 5 | 6 | 点击进行支付 7 | [[abtag REDIRECT_URL]] 8 | 9 | [[abtag BITCOIN_URI]] 10 | 11 | 地址: [[abtag ADDRESS]] 12 | 数额: [[abtag AMOUNT_BTC]] BTC 13 | 数额: [[abtag AMOUNT_BITS]] bits 14 | 15 | 发送自 [[abtag APP_TITLE]] 移动式比特币钱包 + 企业名录 16 | 17 | 下载iOS或Android版本的[[abtag APP_TITLE]] 18 | [[abtag APP_DOWNLOAD_LINK]] 19 | 20 | -------------------------------------------------------------------------------- /Airbitz/Resources/plugins/img/bankcheck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/plugins/img/bankcheck.png -------------------------------------------------------------------------------- /Airbitz/Resources/plugins/img/bg_app.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/plugins/img/bg_app.jpg -------------------------------------------------------------------------------- /Airbitz/Resources/plugins/img/bitcoin-icon-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Resources/plugins/img/bitcoin-icon-logo.png -------------------------------------------------------------------------------- /Airbitz/San Diego.gpx: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Airbitz/ScanView/ScanView.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @protocol ScanViewDelegate; 5 | 6 | @interface ScanView : UIView 7 | 8 | @property (nonatomic, assign) id delegate; 9 | 10 | + (ScanView *)CreateView:(UIView *)parentView; 11 | 12 | - (void)startQRReader; 13 | - (void)stopQRReader; 14 | - (void)willRotateOrientation:(UIInterfaceOrientation) orientation; 15 | 16 | @end 17 | 18 | @protocol ScanViewDelegate 19 | 20 | @required 21 | - (BOOL)processResultArray:(NSArray *)results; 22 | @optional 23 | 24 | @end 25 | -------------------------------------------------------------------------------- /Airbitz/Send/SendStatusViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SendStatusViewController.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 4/3/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AirbitzViewController.h" 11 | 12 | @interface SendStatusViewController : AirbitzViewController 13 | 14 | @property (nonatomic, weak) IBOutlet UILabel *messageLabel; 15 | @property (nonatomic, weak) IBOutlet UILabel *titleLabel; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Airbitz/Settings/PlainCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // PlainCell.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 3/31/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface PlainCell : UITableViewCell 12 | 13 | @property (nonatomic, weak) IBOutlet UILabel *name; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Airbitz/Settings/RadioButtonCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // RadioButtonCell.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 3/31/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface RadioButtonCell : UITableViewCell 12 | 13 | @property (nonatomic, weak) IBOutlet UILabel *name; 14 | @property (nonatomic, weak) IBOutlet UIImageView *radioButton; 15 | @end 16 | -------------------------------------------------------------------------------- /Airbitz/Settings/SpendingLimitsViewController.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | #import "AirbitzViewController.h" 4 | 5 | @protocol SpendingLimitsViewControllerDelegate; 6 | 7 | @interface SpendingLimitsViewController : AirbitzViewController 8 | 9 | @property (assign) id delegate; 10 | 11 | @end 12 | 13 | 14 | @protocol SpendingLimitsViewControllerDelegate 15 | 16 | -(void)spendingLimitsViewControllerDone:(SpendingLimitsViewController *)controller withBackButton:(BOOL)bBack; 17 | 18 | @optional 19 | @end 20 | -------------------------------------------------------------------------------- /Airbitz/Settings/TwoFactorShowViewController.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | #import "AirbitzViewController.h" 4 | 5 | @protocol TwoFactorShowViewControllerDelegate; 6 | 7 | @interface TwoFactorShowViewController : AirbitzViewController 8 | 9 | @property (assign) id delegate; 10 | 11 | @end 12 | 13 | 14 | @protocol TwoFactorShowViewControllerDelegate 15 | 16 | -(void)twoFactorShowViewControllerDone:(TwoFactorShowViewController *)controller withBackButton:(BOOL)bBack; 17 | 18 | @optional 19 | @end 20 | -------------------------------------------------------------------------------- /Airbitz/SignUp/SignUpBaseController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SignUpBaseContr.h 3 | // AirBitz 4 | // 5 | 6 | #import 7 | #import "SignUpManager.h" 8 | #import "AirbitzViewController.h" 9 | 10 | @interface SignUpBaseController : AirbitzViewController 11 | 12 | @property (assign) SignUpManager *manager; 13 | 14 | - (void)next; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Airbitz/SignUp/SignUpBaseController.m: -------------------------------------------------------------------------------- 1 | // 2 | // SignUpBaseController.m 3 | // AirBitz 4 | // 5 | 6 | #import "SignUpBaseController.h" 7 | 8 | @interface SignUpBaseController () 9 | @end 10 | 11 | @implementation SignUpBaseController 12 | 13 | - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil 14 | { 15 | return [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; 16 | } 17 | 18 | - (IBAction)next 19 | { 20 | [self.manager next]; 21 | } 22 | 23 | @end 24 | -------------------------------------------------------------------------------- /Airbitz/SignUp/SignUpCameraController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SignUpCameraController.h 3 | // AirBitz 4 | // 5 | 6 | #import "SignUpBaseController.h" 7 | 8 | @interface SignUpCameraController : SignUpBaseController 9 | 10 | @end 11 | 12 | -------------------------------------------------------------------------------- /Airbitz/SignUp/SignUpContactsController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SignUpContactsController.h 3 | // AirBitz 4 | // 5 | 6 | #import "SignUpBaseController.h" 7 | 8 | @interface SignUpContactsController : SignUpBaseController 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /Airbitz/SignUp/SignUpHandleController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SignUpHandleController.h 3 | // AirBitz 4 | // 5 | 6 | #import "SignUpBaseController.h" 7 | 8 | @interface SignUpHandleController : SignUpBaseController 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /Airbitz/SignUp/SignUpPINController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SignUpPasswordController.h 3 | // AirBitz 4 | // 5 | 6 | #import "SignUpBaseController.h" 7 | 8 | @interface SignUpPINController : SignUpBaseController 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /Airbitz/SignUp/SignUpPasswordController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SignUpPasswordController.h 3 | // AirBitz 4 | // 5 | 6 | #import "SignUpBaseController.h" 7 | 8 | @interface SignUpPasswordController : SignUpBaseController 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /Airbitz/SignUp/SignUpUsernameController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SignUpUsernameController.h 3 | // AirBitz 4 | // 5 | 6 | #import "SignUpBaseController.h" 7 | 8 | @interface SignUpUsernameController : SignUpBaseController 9 | 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /Airbitz/SignUp/SignUpWriteItController.h: -------------------------------------------------------------------------------- 1 | // 2 | // SignUpWriteItController.h 3 | // AirBitz 4 | // 5 | 6 | #import "SignUpBaseController.h" 7 | 8 | @interface SignUpWriteItController : SignUpBaseController 9 | 10 | @end 11 | -------------------------------------------------------------------------------- /Airbitz/Strings.h: -------------------------------------------------------------------------------- 1 | // 2 | // Strings.h 3 | // 4 | // 5 | // Created by Paul Puey on 2015/11/24. 6 | // 7 | // 8 | 9 | #import 10 | #import "Strings.m" 11 | -------------------------------------------------------------------------------- /Airbitz/StylizedButton.h: -------------------------------------------------------------------------------- 1 | // 2 | // StylizedButton.h 3 | // 4 | 5 | #import 6 | #import 7 | 8 | 9 | @interface StylizedButton : UIButton 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /Airbitz/StylizedButtonOutline.h: -------------------------------------------------------------------------------- 1 | // 2 | // StylizedButtonOutline.h 3 | // 4 | 5 | #import 6 | #import 7 | 8 | 9 | @interface StylizedButtonOutline : UIButton 10 | 11 | @end 12 | -------------------------------------------------------------------------------- /Airbitz/StylizedTextField.h: -------------------------------------------------------------------------------- 1 | // 2 | // StylizedTextField.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 4/5/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface StylizedTextField : UITextField 12 | 13 | - (void)resetBorder; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Airbitz/StylizedTextField2.h: -------------------------------------------------------------------------------- 1 | // 2 | // StylizedTextField.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 4/5/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface StylizedTextField2 : UITextField 12 | 13 | - (void)resetBorder; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Airbitz/StylizedTextField3.h: -------------------------------------------------------------------------------- 1 | // 2 | // StylizedTextField.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 4/5/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface StylizedTextField3 : UITextField 12 | 13 | - (void)resetBorder; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Airbitz/Testnet/background-fade@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Testnet/background-fade@2x.jpg -------------------------------------------------------------------------------- /Airbitz/Testnet/background@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EdgeApp/airbitz-ios-gui/bf950b3cf33d3b053702101b57db357890b77652/Airbitz/Testnet/background@2x.jpg -------------------------------------------------------------------------------- /Airbitz/TouchJSON/JSON/JSONRepresentation.h: -------------------------------------------------------------------------------- 1 | // 2 | // JSONRepresentation.h 3 | // TouchJSON 4 | // 5 | // Created by Jonathan Wight on 10/15/10. 6 | // Copyright 2010 toxicsoftware.com. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @protocol JSONRepresentation 12 | 13 | @optional 14 | - (id)initWithJSONDataRepresentation:(NSData *)inJSONData; 15 | 16 | - (NSData *)JSONDataRepresentation; 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Airbitz/TransferService.h: -------------------------------------------------------------------------------- 1 | //cw These UUIDs are used to specify the BlueTooth service and characteristic IDs for transferring the bitcoin address from the payee to the payor 2 | 3 | #ifndef LE_Transfer_TransferService_h 4 | #define LE_Transfer_TransferService_h 5 | 6 | #define TRANSFER_SERVICE_UUID @"230F04B4-42FF-4CE9-94CB-ED0DC8238867" 7 | #define TRANSFER_CHARACTERISTIC_UUID @"D8EF903B-B758-48FC-BBD7-F177F432A9F6" 8 | #endif -------------------------------------------------------------------------------- /Airbitz/UIImage+Colorize.h: -------------------------------------------------------------------------------- 1 | // 2 | // UIImage+Colorize.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/19/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface UIImage (Colorize) 12 | 13 | + (UIImage *)colorizeImage:(UIImage *)image withColor:(UIColor *)color; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Airbitz/UIPhotoGallery/.gitignore: -------------------------------------------------------------------------------- 1 | # xcode noise 2 | build/* 3 | *.perspective 4 | *.perspectivev3 5 | *.pbxuser 6 | *.xcworkspace 7 | *.mode1 8 | *.mode2v3 9 | *.mode1v3 10 | xcuserdata 11 | Snapshots 12 | upendo/design 13 | DerivedData/* 14 | 15 | # osx noise 16 | .DS_Store -------------------------------------------------------------------------------- /Airbitz/Wallets/CommonCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // CommonCell.h 3 | // AirBitz 4 | // 5 | 6 | #import 7 | #import "LatoLabel.h" 8 | 9 | @interface CommonCell : UITableViewCell 10 | 11 | @property (nonatomic, weak) IBOutlet UIImageView *bkgImage; 12 | 13 | //- (void)setInfo:(long)index tableHeight:(long)height; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /Airbitz/Wallets/ExportWalletOptionsCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // ExportWalletOptionsCell.h 3 | // AirBitz 4 | // 5 | // Created by Adam Harris on 5/27/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ExportWalletOptionsCell : UITableViewCell 12 | 13 | @property (nonatomic, weak) IBOutlet UILabel *name; 14 | @property (weak, nonatomic) IBOutlet UIImageView *imageIcon; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /Airbitz/Wallets/PayeeCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // PayeeCell.h 3 | // AirBitz 4 | // 5 | // Created by Adam Harris on 5/29/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface PayeeCell : UITableViewCell 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Airbitz/Wallets/TransactionsHeaderView.h: -------------------------------------------------------------------------------- 1 | // 2 | // TransactionsHeaderView.h 3 | // Airbitz 4 | // 5 | // Created by Paul Puey on 6/12/2016. 6 | // Copyright (c) 2016 Airbitz. All rights reserved. 7 | // 8 | // Used as the section headerView for the transactions table in TransactionsViewController. 9 | 10 | #import 11 | 12 | @interface TransactionsHeaderView : UITableViewHeaderFooterView 13 | 14 | @property(nonatomic, weak) IBOutlet UILabel *titleLabel; 15 | +(TransactionsHeaderView *)CreateWithTitle:(NSString *)title; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Airbitz/Wallets/WalletCell.h: -------------------------------------------------------------------------------- 1 | // 2 | // WalletCell.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 3/1/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "CommonCell.h" 11 | 12 | @interface WalletCell : CommonCell 13 | 14 | @property (nonatomic, weak) IBOutlet LatoLabel *name; 15 | @property (nonatomic, weak) IBOutlet LatoLabel *amount; 16 | 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /Airbitz/Wallets/WalletsViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // WalletsViewController.h 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/28/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface WalletsViewController : UIViewController 12 | 13 | - (void)reloadWallets: (NSMutableArray *)arrayWallets archived:(NSMutableArray *)arrayArchivedWallets; 14 | - (void)selectWalletWithUUID:(NSString *)uuid; 15 | - (void)resetViews; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /Airbitz/ar.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "إسحب للتأكيد"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ar.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "موافق "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ar.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "متطلبات كلمة المرور"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ar.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "حسنا"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "إلغاء"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/de.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "Zum bestätigen Wischen"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/de.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "Zustimmen "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/de.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "Passwortanforderungen"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/de.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "OK"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "Abbrechen"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/el.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "Σύρετε για επιβεβαίωση"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/el.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "Συμφωνώ "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/el.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "Απαιτήσεις κωδικού πρόσβασης"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/el.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "Αποδοχή"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "Ακύρωση"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/es.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "Deslizar para confirmar"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/es.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "Estoy de Acuerdo "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/es.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "Requisitos de contraseña"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/es.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "Ok"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "Cancelar"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/fr.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "Glisser pour confirmer"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/fr.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "J'accepte "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/fr.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "Exigences du mot de passe"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/fr.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "OK"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "Annuler"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/hi.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "पुष्टि करने के लिए स्लाइड करें"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/hi.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "सहमत "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/hi.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "पासवर्ड संबंधी आवश्यकताएँ"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/hi.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "ठीक है"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "रद्द करें"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/ht.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "Slide nan Konfime"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ht.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "Aprouve "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ht.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "Ou dwe antre modpas la"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ht.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "OK"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "Anile"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/it.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "Scivolo per confermare"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/it.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "Concordare "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/it.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "Requisiti per la password"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/it.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "OK"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "Annulla"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/ja.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "スライドして確認する"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ja.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "賛成 "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ja.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "パスワード要件"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ja.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "はい"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "キャンセル"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // AirBitz 4 | // 5 | // Created by Carson Whitsett on 2/4/14. 6 | // Copyright (c) 2014 AirBitz. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | #import "AppDelegate.h" 12 | 13 | int main(int argc, char * argv[]) 14 | { 15 | @autoreleasepool 16 | { 17 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /Airbitz/nl.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "Slide to confirm"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/nl.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "Agree "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/nl.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "Password Requirements"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/nl.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "OK"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "Cancel"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/pt.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "Deslize para Confirmar"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/pt.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "Concordar "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/pt.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "Requisitos de Senha"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/pt.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "OK"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "Cancelar"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/ru.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "Сдвиньте для подтверждения"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ru.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "Принимаю "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ru.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "Требования к паролю"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/ru.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "ОК"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "Отмена"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/zh-Hans.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 2 | "KGv-Ek-gk9.text" = "滑动以进行确认"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/zh-Hans.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 2 | "sls-ic-b1n.normalTitle" = "同意 "; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/zh-Hans.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 2 | "pkh-7R-foQ.text" = "密码要求"; 3 | 4 | -------------------------------------------------------------------------------- /Airbitz/zh-Hans.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 2 | "24.normalTitle" = "确定"; 3 | 4 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 5 | "25.normalTitle" = "取消"; 6 | 7 | -------------------------------------------------------------------------------- /Airbitz/zh.lproj/ConfirmationSliderView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Slide to confirm"; ObjectID = "KGv-Ek-gk9"; */ 3 | "KGv-Ek-gk9.text" = "Slide to confirm"; 4 | -------------------------------------------------------------------------------- /Airbitz/zh.lproj/InfoView~iphone.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "Agree "; ObjectID = "sls-ic-b1n"; */ 3 | "sls-ic-b1n.normalTitle" = "Agree "; 4 | -------------------------------------------------------------------------------- /Airbitz/zh.lproj/PasswordVerifyView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UILabel"; text = "Password Requirements"; ObjectID = "pkh-7R-foQ"; */ 3 | "pkh-7R-foQ.text" = "Password Requirements"; 4 | -------------------------------------------------------------------------------- /Airbitz/zh.lproj/PopupWheelPickerView.strings: -------------------------------------------------------------------------------- 1 | 2 | /* Class = "UIButton"; normalTitle = "OK"; ObjectID = "24"; */ 3 | "24.normalTitle" = "OK"; 4 | 5 | /* Class = "UIButton"; normalTitle = "Cancel"; ObjectID = "25"; */ 6 | "25.normalTitle" = "Cancel"; 7 | -------------------------------------------------------------------------------- /cpabc: -------------------------------------------------------------------------------- 1 | mkdir -p Airbitz/ABC 2 | cp -a ../airbitz-core/deps/build/abc/ios-universal/lib/* AirBitz/ABC/ 3 | -------------------------------------------------------------------------------- /cpabc-testnet: -------------------------------------------------------------------------------- 1 | mkdir -p Airbitz/ABC-testnet 2 | cp -a ../airbitz-core/deps/build-testnet/abc/ios-universal/lib/* AirBitz/ABC-testnet/ 3 | -------------------------------------------------------------------------------- /cpcore: -------------------------------------------------------------------------------- 1 | mkdir -p Airbitz/ABC 2 | rm -rf Airbitz/ABC/* 3 | cp -a ../airbitz-core/deps/build/abc/abc-ios-universal/include/* AirBitz/ABC/ 4 | cp -a ../airbitz-core/deps/build/abc/abc-ios-universal/lib/* AirBitz/ABC/ 5 | -------------------------------------------------------------------------------- /cpcore-testnet: -------------------------------------------------------------------------------- 1 | mkdir -p Airbitz/ABC-testnet 2 | rm -rf Airbitz/ABC-testnet/* 3 | cp -a ../airbitz-core/deps/build-testnet/abc/abc-ios-universal/include/* AirBitz/ABC-testnet/ 4 | cp -a ../airbitz-core/deps/build-testnet/abc/abc-ios-universal/lib/* AirBitz/ABC-testnet/ 5 | -------------------------------------------------------------------------------- /cppp: -------------------------------------------------------------------------------- 1 | rm -f ~/Library/MobileDevice/Provisioning\ Profiles/Airbitz_Dev_Team.mobileprovision 2 | cp -a ~/Airbitz/Google\ Drive/Airbitz-Shared/ProvisioningProfiles/Airbitz_Dev_Team.mobileprovision ~/Library/MobileDevice/Provisioning\ Profiles/ 3 | -------------------------------------------------------------------------------- /current_version.txt: -------------------------------------------------------------------------------- 1 | 2.4.12 2 | -------------------------------------------------------------------------------- /export-localization: -------------------------------------------------------------------------------- 1 | xcodebuild -exportLocalizations -localizationPath Localization/Airbitz/ -project Airbitz.xcodeproj 2 | 3 | -------------------------------------------------------------------------------- /mkabc: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "*********************************************" 4 | echo "RUN mkabc from airbitz-core-objc repo instead" 5 | echo "*********************************************" 6 | 7 | -------------------------------------------------------------------------------- /ul-sync-translations: -------------------------------------------------------------------------------- 1 | crowdin upload sources 2 | --------------------------------------------------------------------------------