From 6b71dbba1e7882c0d23d509384036b5d0c52e376 Mon Sep 17 00:00:00 2001 From: Dibya Malla Date: Sun, 2 Jan 2022 11:55:42 +0545 Subject: [PATCH] notice updated --- GME Remit.xcodeproj/project.pbxproj | 4 +- GME Remit/APIs/UrlManager.swift | 2 +- .../NotificationHistoryPresenter.swift | 36 ++--- .../View/NotificationCell.swift | 5 +- .../View/ExistingUserKycViewController.swift | 2 +- .../View/KYCVerifyStep1ViewController.swift | 2 +- .../View/VerifyIDNumberViewController.swift | 4 +- .../SendMoneyReceiptInteractor.swift | 4 +- .../SendMoneyReceiptInteractorIO.swift | 2 +- .../Service/SendMoneyReceiptService.swift | 104 +++++++------- .../Service/SendMoneyReceiptServiceType.swift | 1 + .../SendMoneyReceiptModuleInterface.swift | 2 +- .../Presenter/SendMoneyReceiptPresenter.swift | 7 +- .../View/SendMoneyReceiptViewController.swift | 2 +- .../TermsAndConditionViewController.swift | 2 +- .../Read.imageset/Contents.json | 24 ++++ .../Assets.xcassets/Read.imageset/Read.pdf | 105 ++++++++++++++ .../Unread.imageset/Contents.json | 21 +++ .../Unread.imageset/Unread.pdf | 129 ++++++++++++++++++ 19 files changed, 375 insertions(+), 83 deletions(-) create mode 100644 GME Remit/Supported Files/Assets.xcassets/Read.imageset/Contents.json create mode 100644 GME Remit/Supported Files/Assets.xcassets/Read.imageset/Read.pdf create mode 100644 GME Remit/Supported Files/Assets.xcassets/Unread.imageset/Contents.json create mode 100644 GME Remit/Supported Files/Assets.xcassets/Unread.imageset/Unread.pdf diff --git a/GME Remit.xcodeproj/project.pbxproj b/GME Remit.xcodeproj/project.pbxproj index 8c3002f5..42741c82 100644 --- a/GME Remit.xcodeproj/project.pbxproj +++ b/GME Remit.xcodeproj/project.pbxproj @@ -7565,7 +7565,7 @@ CODE_SIGN_ENTITLEMENTS = "GME Remit.entitlements"; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 6; + CURRENT_PROJECT_VERSION = 7; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = 68KRG7GPAV; ENABLE_BITCODE = NO; @@ -7605,7 +7605,7 @@ CODE_SIGN_ENTITLEMENTS = "GME Remit.entitlements"; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - CURRENT_PROJECT_VERSION = 6; + CURRENT_PROJECT_VERSION = 7; DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; DEVELOPMENT_TEAM = 68KRG7GPAV; ENABLE_BITCODE = NO; diff --git a/GME Remit/APIs/UrlManager.swift b/GME Remit/APIs/UrlManager.swift index 65d683bf..a9a14244 100644 --- a/GME Remit/APIs/UrlManager.swift +++ b/GME Remit/APIs/UrlManager.swift @@ -18,7 +18,7 @@ class UrlManager { let baseSocialURL = "" let liveServerUrl = "http://203.223.132.110:9093/api/" - let testUrl = "http://211.25.249.199:9093/api/" + let testUrl = "http://202.166.220.36:8083/api/" init() { switch server { diff --git a/GME Remit/Modules/Notice/NotificationHistory/User Interface/Presenter/NotificationHistoryPresenter.swift b/GME Remit/Modules/Notice/NotificationHistory/User Interface/Presenter/NotificationHistoryPresenter.swift index c3a405e1..381e2858 100644 --- a/GME Remit/Modules/Notice/NotificationHistory/User Interface/Presenter/NotificationHistoryPresenter.swift +++ b/GME Remit/Modules/Notice/NotificationHistory/User Interface/Presenter/NotificationHistoryPresenter.swift @@ -63,26 +63,26 @@ class NotificationHistoryPresenter: ViewModelType { extension NotificationHistoryPresenter: NotificationHistoryInteractorOutput { func setNotices(with model: [NoticeModel]) { progressLinker.onNext(false) - let dateFormatter = DateFormatter() - dateFormatter.dateFormat = "MM/dd/yyyy HH:mm" - - let dates = model.compactMap { dateFormatter.date(from: $0.date ?? "") } - - let sortedDates = dates.sorted { $0 > $1 } - - print("123123123 \(sortedDates)") - - let dateStrings = sortedDates.compactMap { dateFormatter.string(from: $0)} - - print("123123123 \(dateStrings)") +// let dateFormatter = DateFormatter() +// dateFormatter.dateFormat = "MM/dd/yyyy HH:mm" +// +// let dates = model.compactMap { dateFormatter.date(from: $0.date ?? "") } +// +// let sortedDates = dates.sorted { $0 > $1 } +// +// print("123123123 \(sortedDates)") +// +// let dateStrings = sortedDates.compactMap { dateFormatter.string(from: $0)} +// +// print("123123123 \(dateStrings)") - let filteredDate = model.sorted(by: { (noticeModel1, noticeModel2) -> Bool in - guard let date1 = noticeModel1.date else { return true } - guard let date2 = noticeModel2.date else { return false } - return date1 > date2 - }) +// let filteredDate = model.sorted(by: { (noticeModel1, noticeModel2) -> Bool in +// guard let date1 = noticeModel1.date else { return true } +// guard let date2 = noticeModel2.date else { return false } +// return date1 > date2 +// }) - self.model.onNext(filteredDate) + self.model.onNext(model.reversed()) } func setError(with error: Error) { diff --git a/GME Remit/Modules/Notice/NotificationHistory/User Interface/View/NotificationCell.swift b/GME Remit/Modules/Notice/NotificationHistory/User Interface/View/NotificationCell.swift index 182ca980..20aea749 100644 --- a/GME Remit/Modules/Notice/NotificationHistory/User Interface/View/NotificationCell.swift +++ b/GME Remit/Modules/Notice/NotificationHistory/User Interface/View/NotificationCell.swift @@ -19,9 +19,10 @@ class NotificationCell: UITableViewCell { dateLabel.text = model.date if model.isRead == "1" { - newIconImageView.image = UIImage(named: "checked") + newIconImageView.image = UIImage(named: "Read") + newIconImageView.tintColor = UIColor.themeText } else { - newIconImageView.image = UIImage(named: "uncheck") + newIconImageView.image = UIImage(named: "Unread") } } } diff --git a/GME Remit/Modules/RegisterModules/UserAuthentication/ExistingUserKyc/User Interface/View/ExistingUserKycViewController.swift b/GME Remit/Modules/RegisterModules/UserAuthentication/ExistingUserKyc/User Interface/View/ExistingUserKycViewController.swift index 8edb80d9..542c79fd 100644 --- a/GME Remit/Modules/RegisterModules/UserAuthentication/ExistingUserKyc/User Interface/View/ExistingUserKycViewController.swift +++ b/GME Remit/Modules/RegisterModules/UserAuthentication/ExistingUserKyc/User Interface/View/ExistingUserKycViewController.swift @@ -101,7 +101,7 @@ class ExistingUserKycViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() self.isFirst = (self.step == .first) - let url = URL(string: "http://211.25.249.199:9093/Document/TermsAndConditions/CustomerReg_TermsAndConditions.html")! + let url = URL(string: "http://202.166.220.36:8083/Document/TermsAndConditions/CustomerReg_TermsAndConditions.html")! self.termsWebView.load(URLRequest(url: url)) self.termsWebView.scrollView.bounces = false setup() diff --git a/GME Remit/Modules/RegisterModules/UserAuthentication/KYCVerifyStep1/User Interface/View/KYCVerifyStep1ViewController.swift b/GME Remit/Modules/RegisterModules/UserAuthentication/KYCVerifyStep1/User Interface/View/KYCVerifyStep1ViewController.swift index ff811384..e59bf49d 100644 --- a/GME Remit/Modules/RegisterModules/UserAuthentication/KYCVerifyStep1/User Interface/View/KYCVerifyStep1ViewController.swift +++ b/GME Remit/Modules/RegisterModules/UserAuthentication/KYCVerifyStep1/User Interface/View/KYCVerifyStep1ViewController.swift @@ -261,7 +261,7 @@ class KYCVerifyStep1ViewController: UIViewController { extension KYCVerifyStep1ViewController { private func setup() { - let url = URL(string: "http://211.25.249.199:9093/Document/TermsAndConditions/CustomerReg_TermsAndConditions.html")! + let url = URL(string: "http://202.166.220.36:8083/Document/TermsAndConditions/CustomerReg_TermsAndConditions.html")! self.termsWebView.load(URLRequest(url: url)) self.termsWebView.scrollView.bounces = false diff --git a/GME Remit/Modules/RegisterModules/VerifyIDNumber/User Interface/View/VerifyIDNumberViewController.swift b/GME Remit/Modules/RegisterModules/VerifyIDNumber/User Interface/View/VerifyIDNumberViewController.swift index 1d460268..bc7fb67f 100644 --- a/GME Remit/Modules/RegisterModules/VerifyIDNumber/User Interface/View/VerifyIDNumberViewController.swift +++ b/GME Remit/Modules/RegisterModules/VerifyIDNumber/User Interface/View/VerifyIDNumberViewController.swift @@ -25,7 +25,7 @@ class VerifyIDNumberViewController: UIViewController { private var isValid = false { didSet { verifyBttn.isEnabled = isValid - // verifyBttn.backgroundColor = isValid ? .themeRed : .themeText + verifyBttn.backgroundColor = isValid ? .themeRed : .themeText } } @@ -93,7 +93,7 @@ class VerifyIDNumberViewController: UIViewController { func configureLanguage() { idNumberTxtField.titleText = StringConstants().residenceIdTitle idNumberTxtField.placeholder = StringConstants().residenceIdPlaceholder -// idNumberTxtField.errorMessage = StringConstants().residenceIdError + idNumberTxtField.errorMessage = StringConstants().residenceIdError idNumberTxtField.validCondition = { !$0.isEmpty} headerTitle.text = StringConstants().headerTitle verifyBttn.setTitle(StringConstants().verifyBtnTitle, for: .normal) diff --git a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Interactor/SendMoneyReceiptInteractor.swift b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Interactor/SendMoneyReceiptInteractor.swift index 2ca2e5bd..bf8a56b7 100644 --- a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Interactor/SendMoneyReceiptInteractor.swift +++ b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Interactor/SendMoneyReceiptInteractor.swift @@ -29,10 +29,12 @@ class SendMoneyReceiptInteractor { // MARK: SendMoneyReceipt interactor input interface extension SendMoneyReceiptInteractor: SendMoneyReceiptInteractorInput { - func viewIsReady(type: ReceiptType) { + + func viewIsReady(type: ReceiptType, receiptParent: ReceiptParent) { self.service.fetch( type: type, transactionId: self.transactionId, + receiptParent: receiptParent, success: { (model) in model.transactionId = self.transactionId self.output?.show(model: model) diff --git a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Interactor/SendMoneyReceiptInteractorIO.swift b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Interactor/SendMoneyReceiptInteractorIO.swift index 581df1a3..3b482f74 100644 --- a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Interactor/SendMoneyReceiptInteractorIO.swift +++ b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Interactor/SendMoneyReceiptInteractorIO.swift @@ -7,7 +7,7 @@ // protocol SendMoneyReceiptInteractorInput: class { - func viewIsReady(type: ReceiptType) + func viewIsReady(type: ReceiptType, receiptParent: ReceiptParent) } protocol SendMoneyReceiptInteractorOutput: class { diff --git a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Service/SendMoneyReceiptService.swift b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Service/SendMoneyReceiptService.swift index 9485e490..61c6c226 100644 --- a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Service/SendMoneyReceiptService.swift +++ b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Service/SendMoneyReceiptService.swift @@ -9,55 +9,63 @@ import Foundation class SendMoneyReceiptService: SendMoneyReceiptServiceType { - func fetch( - type: ReceiptType, - transactionId: String, - success: @escaping (SendMoneyReciept) -> Void, - failure: @escaping (Error) -> Void - ) { - - switch type { - case .overseas: - overseaReciept(transactionId, success: success, failure: failure) + func fetch( + type: ReceiptType, + transactionId: String, + receiptParent: ReceiptParent, + success: @escaping (SendMoneyReciept) -> Void, + failure: @escaping (Error) -> Void + ) { + + switch type { + case .overseas: + overseaReciept(transactionId, receiptParent, success: success, failure: failure) + } } - } - - private func overseaReciept( - _ transactionId: String, - success: @escaping (SendMoneyReciept) -> Void, - failure: @escaping (Error) -> Void - ) { - let url = baseUrl + "/mobile/receipt/" + transactionId - self.auth.request( - method: .post, - url: url, - params: nil, - success: { (response: SendMoneyRecieptContainer) in - if (response.errorCode ?? "") == "1" { - let error = NSError( - domain: "Network", - code: 0, - userInfo: [NSLocalizedDescriptionKey : response.message ?? ""] - ) - - failure(error) + + private func overseaReciept( + _ transactionId: String, + _ receiptParent: ReceiptParent, + success: @escaping (SendMoneyReciept) -> Void, + failure: @escaping (Error) -> Void + ) { + let url: String + if receiptParent == .notice { + url = baseUrl + "/mobile/receipt/" + transactionId + "/Y" } else { - guard let model = response.data else { - let error = NSError( - domain: "Network", - code: 0, - userInfo: [NSLocalizedDescriptionKey : "Data is nil"] - ) - failure(error) - return - } - success(model) + url = baseUrl + "/mobile/receipt/" + transactionId } - }, - failure: { (error) in - failure(error) - } - ) - } - + + self.auth.request( + method: .post, + url: url, + params: nil, + success: { (response: SendMoneyRecieptContainer) in + if (response.errorCode ?? "") == "1" { + let error = NSError( + domain: "Network", + code: 0, + userInfo: [NSLocalizedDescriptionKey : response.message ?? ""] + ) + + failure(error) + } else { + guard let model = response.data else { + let error = NSError( + domain: "Network", + code: 0, + userInfo: [NSLocalizedDescriptionKey : "Data is nil"] + ) + failure(error) + return + } + success(model) + } + }, + failure: { (error) in + failure(error) + } + ) + } + } diff --git a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Service/SendMoneyReceiptServiceType.swift b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Service/SendMoneyReceiptServiceType.swift index 3ecb31e4..5f609019 100644 --- a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Service/SendMoneyReceiptServiceType.swift +++ b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Application Logic/Service/SendMoneyReceiptServiceType.swift @@ -12,6 +12,7 @@ protocol SendMoneyReceiptServiceType: class, ApiServiceType { func fetch ( type: ReceiptType, transactionId: String, + receiptParent: ReceiptParent, success: @escaping (SendMoneyReciept) -> Void, failure: @escaping (Error) -> Void ) diff --git a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Module Interface/SendMoneyReceiptModuleInterface.swift b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Module Interface/SendMoneyReceiptModuleInterface.swift index 1f027150..7812d0bc 100644 --- a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Module Interface/SendMoneyReceiptModuleInterface.swift +++ b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/Module Interface/SendMoneyReceiptModuleInterface.swift @@ -7,7 +7,7 @@ // protocol SendMoneyReceiptModuleInterface: class { - func viewIsReady(type: ReceiptType) + func viewIsReady(type: ReceiptType, receiptParent: ReceiptParent) func openMail(controlNO: String, transactionId: String, type: MailBoxType) func dismiss() } diff --git a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/Presenter/SendMoneyReceiptPresenter.swift b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/Presenter/SendMoneyReceiptPresenter.swift index 5b1e512f..2784815d 100644 --- a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/Presenter/SendMoneyReceiptPresenter.swift +++ b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/Presenter/SendMoneyReceiptPresenter.swift @@ -22,15 +22,16 @@ class SendMoneyReceiptPresenter { // MARK: SendMoneyReceipt module interface extension SendMoneyReceiptPresenter: SendMoneyReceiptModuleInterface { + func openMail(controlNO: String, transactionId: String, type: MailBoxType) { self.wireframe?.openMail(controlNO: controlNO, transactionId: transactionId, type: type) } - func viewIsReady(type: ReceiptType) { + func viewIsReady(type: ReceiptType, receiptParent: ReceiptParent) { self.view?.showLoading() - self.interactor?.viewIsReady(type: type) + self.interactor?.viewIsReady(type: type, receiptParent: receiptParent) } - + func dismiss() { self.wireframe?.dismiss() } diff --git a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/View/SendMoneyReceiptViewController.swift b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/View/SendMoneyReceiptViewController.swift index ed0035c2..7478037e 100644 --- a/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/View/SendMoneyReceiptViewController.swift +++ b/GME Remit/Modules/RemittanceModules/OverseasModules/SendMoneyReceipt/User Interface/View/SendMoneyReceiptViewController.swift @@ -135,7 +135,7 @@ class SendMoneyReceiptViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() self.setup() - self.presenter?.viewIsReady(type: receiptType) + self.presenter?.viewIsReady(type: receiptType, receiptParent: self.receiptParent) } override func viewWillAppear(_ animated: Bool) { diff --git a/GME Remit/Modules/RemittanceModules/OverseasModules/TermsAndCondition/User Interface/View/TermsAndConditionViewController.swift b/GME Remit/Modules/RemittanceModules/OverseasModules/TermsAndCondition/User Interface/View/TermsAndConditionViewController.swift index a87dcfe0..eeb8e559 100644 --- a/GME Remit/Modules/RemittanceModules/OverseasModules/TermsAndCondition/User Interface/View/TermsAndConditionViewController.swift +++ b/GME Remit/Modules/RemittanceModules/OverseasModules/TermsAndCondition/User Interface/View/TermsAndConditionViewController.swift @@ -53,7 +53,7 @@ class TermsAndConditionViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() - let url = URL(string: "http://211.25.249.199:9093/Document/TermsAndConditions/Trx_TermsAndConditions.html")! + let url = URL(string: "http://202.166.220.36:8083/Document/TermsAndConditions/Trx_TermsAndConditions.html")! self.webView.load(URLRequest(url: url)) self.webView.scrollView.bounces = false self.setup() diff --git a/GME Remit/Supported Files/Assets.xcassets/Read.imageset/Contents.json b/GME Remit/Supported Files/Assets.xcassets/Read.imageset/Contents.json new file mode 100644 index 00000000..1fa77120 --- /dev/null +++ b/GME Remit/Supported Files/Assets.xcassets/Read.imageset/Contents.json @@ -0,0 +1,24 @@ +{ + "images" : [ + { + "filename" : "Read.pdf", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + }, + "properties" : { + "template-rendering-intent" : "template" + } +} diff --git a/GME Remit/Supported Files/Assets.xcassets/Read.imageset/Read.pdf b/GME Remit/Supported Files/Assets.xcassets/Read.imageset/Read.pdf new file mode 100644 index 00000000..a46cf4a2 --- /dev/null +++ b/GME Remit/Supported Files/Assets.xcassets/Read.imageset/Read.pdf @@ -0,0 +1,105 @@ +%PDF-1.7 + +1 0 obj + << /ExtGState << /E1 << /ca 0.100000 >> >> >> +endobj + +2 0 obj + << /Length 3 0 R >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +/E1 gs +1.000000 0.000000 -0.000000 1.000000 4.000000 8.000000 cm +0.862745 0.078431 0.192157 scn +15.000000 6.000000 m +15.340000 6.000000 15.670000 5.970000 16.000000 5.920000 c +16.000000 12.000000 l +0.000000 12.000000 l +0.000000 0.000000 l +8.080000 0.000000 l +8.570000 3.390000 11.470000 6.000000 15.000000 6.000000 c +h +f +n +Q +q +1.000000 0.000000 -0.000000 1.000000 2.000000 2.000000 cm +0.862745 0.078431 0.192157 scn +15.340000 2.000000 m +11.800000 5.540001 l +13.210000 6.950000 l +15.330000 4.830000 l +19.570000 9.070000 l +21.000000 7.660000 l +15.340000 2.000000 l +h +10.080000 6.000000 m +2.000000 6.000000 l +2.000000 18.000000 l +18.000000 18.000000 l +18.000000 11.920000 l +18.709999 11.820000 19.379999 11.610000 20.000000 11.320000 c +20.000000 18.000000 l +20.000000 19.100000 19.100000 20.000000 18.000000 20.000000 c +2.000000 20.000000 l +0.900000 20.000000 0.000000 19.100000 0.000000 18.000000 c +0.000000 0.000000 l +4.000000 4.000000 l +10.000000 4.000000 l +10.000000 4.140000 10.020000 4.270000 10.030000 4.400000 c +10.009999 4.599999 10.000000 4.800000 10.000000 5.000000 c +10.000000 5.340000 10.030000 5.670000 10.080000 6.000000 c +h +f +n +Q + +endstream +endobj + +3 0 obj + 1173 +endobj + +4 0 obj + << /Annots [] + /Type /Page + /MediaBox [ 0.000000 0.000000 24.000000 24.000000 ] + /Resources 1 0 R + /Contents 2 0 R + /Parent 5 0 R + >> +endobj + +5 0 obj + << /Kids [ 4 0 R ] + /Count 1 + /Type /Pages + >> +endobj + +6 0 obj + << /Type /Catalog + /Pages 5 0 R + >> +endobj + +xref +0 7 +0000000000 65535 f +0000000010 00000 n +0000000074 00000 n +0000001303 00000 n +0000001326 00000 n +0000001499 00000 n +0000001573 00000 n +trailer +<< /ID [ (some) (id) ] + /Root 6 0 R + /Size 7 +>> +startxref +1632 +%%EOF \ No newline at end of file diff --git a/GME Remit/Supported Files/Assets.xcassets/Unread.imageset/Contents.json b/GME Remit/Supported Files/Assets.xcassets/Unread.imageset/Contents.json new file mode 100644 index 00000000..1489db76 --- /dev/null +++ b/GME Remit/Supported Files/Assets.xcassets/Unread.imageset/Contents.json @@ -0,0 +1,21 @@ +{ + "images" : [ + { + "filename" : "Unread.pdf", + "idiom" : "universal", + "scale" : "1x" + }, + { + "idiom" : "universal", + "scale" : "2x" + }, + { + "idiom" : "universal", + "scale" : "3x" + } + ], + "info" : { + "author" : "xcode", + "version" : 1 + } +} diff --git a/GME Remit/Supported Files/Assets.xcassets/Unread.imageset/Unread.pdf b/GME Remit/Supported Files/Assets.xcassets/Unread.imageset/Unread.pdf new file mode 100644 index 00000000..ce0036f5 --- /dev/null +++ b/GME Remit/Supported Files/Assets.xcassets/Unread.imageset/Unread.pdf @@ -0,0 +1,129 @@ +%PDF-1.7 + +1 0 obj + << /ExtGState << /E1 << /ca 0.100000 >> >> >> +endobj + +2 0 obj + << /Length 3 0 R >> +stream +/DeviceRGB CS +/DeviceRGB cs +q +/E1 gs +1.000000 0.000000 -0.000000 1.000000 4.000000 8.000000 cm +0.862745 0.078431 0.192157 scn +15.000000 6.000000 m +15.340000 6.000000 15.670000 5.970000 16.000000 5.920000 c +16.000000 12.000000 l +0.000000 12.000000 l +0.000000 0.000000 l +8.080000 0.000000 l +8.570000 3.390000 11.470000 6.000000 15.000000 6.000000 c +h +f +n +Q +q +1.000000 0.000000 -0.000000 1.000000 2.000000 2.000000 cm +0.862745 0.078431 0.192157 scn +10.080000 6.000000 m +2.000000 6.000000 l +2.000000 18.000000 l +18.000000 18.000000 l +18.000000 11.920000 l +18.709999 11.820000 19.379999 11.610000 20.000000 11.320000 c +20.000000 18.000000 l +20.000000 19.100000 19.100000 20.000000 18.000000 20.000000 c +2.000000 20.000000 l +0.900000 20.000000 0.000000 19.100000 0.000000 18.000000 c +0.000000 0.000000 l +4.000000 4.000000 l +10.000000 4.000000 l +10.000000 4.140000 10.020000 4.270000 10.030000 4.400000 c +10.009999 4.599999 10.000000 4.800000 10.000000 5.000000 c +10.000000 5.340000 10.030000 5.670000 10.080000 6.000000 c +h +f +n +Q +q +1.000000 0.000000 -0.000000 1.000000 14.000000 3.799805 cm +0.862745 0.078431 0.192157 scn +0.681462 5.914481 m +0.681462 4.755281 l +0.072215 3.580310 l +0.020152 3.480123 -0.004477 3.368762 0.000669 3.256811 c +0.005815 3.144859 0.040565 3.036036 0.101616 2.940685 c +0.162667 2.845333 0.247992 2.766619 0.349481 2.712026 c +0.450969 2.657432 0.565250 2.628771 0.681462 2.628767 c +7.496315 2.628767 l +7.612528 2.628771 7.726809 2.657432 7.828297 2.712026 c +7.929786 2.766619 8.015110 2.845333 8.076162 2.940685 c +8.137214 3.036036 8.171964 3.144859 8.177110 3.256811 c +8.182256 3.368762 8.157627 3.480123 8.105564 3.580310 c +7.496315 4.755281 l +7.496315 5.914481 l +7.496315 6.785907 7.137320 7.621641 6.498303 8.237832 c +5.859287 8.854023 4.992594 9.200195 4.088889 9.200195 c +3.185183 9.200195 2.318491 8.854023 1.679474 8.237832 c +1.040458 7.621641 0.681462 6.785907 0.681462 5.914481 c +h +4.088889 0.000196 m +4.511854 -0.000018 4.924477 0.126272 5.269891 0.361662 c +5.615304 0.597051 5.876505 0.929950 6.017494 1.314482 c +2.160284 1.314482 l +2.301273 0.929950 2.562473 0.597051 2.907887 0.361662 c +3.253300 0.126272 3.665924 -0.000018 4.088889 0.000196 c +h +f +n +Q + +endstream +endobj + +3 0 obj + 2185 +endobj + +4 0 obj + << /Annots [] + /Type /Page + /MediaBox [ 0.000000 0.000000 24.000000 24.000000 ] + /Resources 1 0 R + /Contents 2 0 R + /Parent 5 0 R + >> +endobj + +5 0 obj + << /Kids [ 4 0 R ] + /Count 1 + /Type /Pages + >> +endobj + +6 0 obj + << /Type /Catalog + /Pages 5 0 R + >> +endobj + +xref +0 7 +0000000000 65535 f +0000000010 00000 n +0000000074 00000 n +0000002315 00000 n +0000002338 00000 n +0000002511 00000 n +0000002585 00000 n +trailer +<< /ID [ (some) (id) ] + /Root 6 0 R + /Size 7 +>> +startxref +2644 +%%EOF \ No newline at end of file