From 9be4b9bf99056cd49675d8eb1d567c6f4110072f Mon Sep 17 00:00:00 2001 From: Ellariel Date: Thu, 10 May 2018 23:04:41 +0500 Subject: [PATCH] new --- .DS_Store | Bin 6148 -> 6148 bytes Podfile | 14 +- Podfile.lock | 2 +- Pods/Manifest.lock | 2 +- Pods/Pods.xcodeproj/project.pbxproj | 217 +++-- bx24.xcodeproj/project.pbxproj | 8 +- .../contents.xcworkspacedata | 2 +- .../UserInterfaceState.xcuserstate | Bin 16739 -> 21862 bytes bx24.xcworkspace/contents.xcworkspacedata | 2 +- .../UserInterfaceState.xcuserstate | Bin 100725 -> 105669 bytes bx24/GalleryView.swift | 7 +- bx24/Resources/Base.lproj/Main.storyboard | 52 +- bx24/SecondViewController.swift | 3 +- tmp/.DS_Store | Bin 0 -> 6148 bytes tmp/Podfile.lock | 20 + tmp/Pods/Alamofire/LICENSE | 19 + tmp/Pods/Alamofire/README.md | 242 +++++ tmp/Pods/Alamofire/Source/AFError.swift | 460 +++++++++ tmp/Pods/Alamofire/Source/Alamofire.swift | 465 +++++++++ .../Source/DispatchQueue+Alamofire.swift | 37 + .../Alamofire/Source/MultipartFormData.swift | 580 ++++++++++++ .../Source/NetworkReachabilityManager.swift | 233 +++++ tmp/Pods/Alamofire/Source/Notifications.swift | 55 ++ .../Alamofire/Source/ParameterEncoding.swift | 483 ++++++++++ tmp/Pods/Alamofire/Source/Request.swift | 654 +++++++++++++ tmp/Pods/Alamofire/Source/Response.swift | 567 +++++++++++ .../Source/ResponseSerialization.swift | 715 ++++++++++++++ tmp/Pods/Alamofire/Source/Result.swift | 300 ++++++ .../Alamofire/Source/ServerTrustPolicy.swift | 307 ++++++ .../Alamofire/Source/SessionDelegate.swift | 725 ++++++++++++++ .../Alamofire/Source/SessionManager.swift | 896 ++++++++++++++++++ tmp/Pods/Alamofire/Source/TaskDelegate.swift | 466 +++++++++ tmp/Pods/Alamofire/Source/Timeline.swift | 136 +++ tmp/Pods/Alamofire/Source/Validation.swift | 315 ++++++ tmp/Pods/AlamofireImage/LICENSE | 19 + tmp/Pods/AlamofireImage/README.md | 584 ++++++++++++ tmp/Pods/AlamofireImage/Source/AFIError.swift | 63 ++ tmp/Pods/AlamofireImage/Source/Image.swift | 33 + .../AlamofireImage/Source/ImageCache.swift | 345 +++++++ .../Source/ImageDownloader.swift | 559 +++++++++++ .../AlamofireImage/Source/ImageFilter.swift | 423 +++++++++ .../Source/Request+AlamofireImage.swift | 327 +++++++ .../Source/UIButton+AlamofireImage.swift | 473 +++++++++ .../Source/UIImage+AlamofireImage.swift | 315 ++++++ .../Source/UIImageView+AlamofireImage.swift | 392 ++++++++ tmp/Pods/Manifest.lock | 20 + tmp/Pods/Pods.xcodeproj/project.pbxproj | 853 +++++++++++++++++ .../Alamofire/Alamofire-dummy.m | 5 + .../Alamofire/Alamofire-prefix.pch | 12 + .../Alamofire/Alamofire-umbrella.h | 16 + .../Alamofire/Alamofire.modulemap | 6 + .../Alamofire/Alamofire.xcconfig | 9 + .../Target Support Files/Alamofire/Info.plist | 26 + .../AlamofireImage/AlamofireImage-dummy.m | 5 + .../AlamofireImage/AlamofireImage-prefix.pch | 12 + .../AlamofireImage/AlamofireImage-umbrella.h | 16 + .../AlamofireImage/AlamofireImage.modulemap | 6 + .../AlamofireImage/AlamofireImage.xcconfig | 10 + .../AlamofireImage/Info.plist | 26 + .../Target Support Files/Pods-bx24/Info.plist | 26 + .../Pods-bx24-acknowledgements.markdown | 49 + .../Pods-bx24-acknowledgements.plist | 87 ++ .../Pods-bx24/Pods-bx24-dummy.m | 5 + .../Pods-bx24/Pods-bx24-frameworks.sh | 155 +++ .../Pods-bx24/Pods-bx24-resources.sh | 118 +++ .../Pods-bx24/Pods-bx24-umbrella.h | 16 + .../Pods-bx24/Pods-bx24.debug.xcconfig | 11 + .../Pods-bx24/Pods-bx24.modulemap | 6 + .../Pods-bx24/Pods-bx24.release.xcconfig | 11 + ...320\274\320\260\321\217 09 18-30-01 1.png" | Bin 0 -> 30670 bytes ...320\274\320\260\321\217 09 18-30-26 2.png" | Bin 0 -> 50211 bytes ... \320\274\320\260\321\217 09 18-30-48.png" | Bin 0 -> 54005 bytes ... \320\274\320\260\321\217 09 18-31-11.png" | Bin 0 -> 46726 bytes ... \320\274\320\260\321\217 09 18-31-33.png" | Bin 0 -> 47795 bytes ... \320\274\320\260\321\217 09 18-31-52.png" | Bin 0 -> 53725 bytes 75 files changed, 12862 insertions(+), 161 deletions(-) create mode 100644 tmp/.DS_Store create mode 100644 tmp/Podfile.lock create mode 100644 tmp/Pods/Alamofire/LICENSE create mode 100644 tmp/Pods/Alamofire/README.md create mode 100644 tmp/Pods/Alamofire/Source/AFError.swift create mode 100644 tmp/Pods/Alamofire/Source/Alamofire.swift create mode 100644 tmp/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift create mode 100644 tmp/Pods/Alamofire/Source/MultipartFormData.swift create mode 100644 tmp/Pods/Alamofire/Source/NetworkReachabilityManager.swift create mode 100644 tmp/Pods/Alamofire/Source/Notifications.swift create mode 100644 tmp/Pods/Alamofire/Source/ParameterEncoding.swift create mode 100644 tmp/Pods/Alamofire/Source/Request.swift create mode 100644 tmp/Pods/Alamofire/Source/Response.swift create mode 100644 tmp/Pods/Alamofire/Source/ResponseSerialization.swift create mode 100644 tmp/Pods/Alamofire/Source/Result.swift create mode 100644 tmp/Pods/Alamofire/Source/ServerTrustPolicy.swift create mode 100644 tmp/Pods/Alamofire/Source/SessionDelegate.swift create mode 100644 tmp/Pods/Alamofire/Source/SessionManager.swift create mode 100644 tmp/Pods/Alamofire/Source/TaskDelegate.swift create mode 100644 tmp/Pods/Alamofire/Source/Timeline.swift create mode 100644 tmp/Pods/Alamofire/Source/Validation.swift create mode 100644 tmp/Pods/AlamofireImage/LICENSE create mode 100644 tmp/Pods/AlamofireImage/README.md create mode 100644 tmp/Pods/AlamofireImage/Source/AFIError.swift create mode 100644 tmp/Pods/AlamofireImage/Source/Image.swift create mode 100644 tmp/Pods/AlamofireImage/Source/ImageCache.swift create mode 100644 tmp/Pods/AlamofireImage/Source/ImageDownloader.swift create mode 100644 tmp/Pods/AlamofireImage/Source/ImageFilter.swift create mode 100644 tmp/Pods/AlamofireImage/Source/Request+AlamofireImage.swift create mode 100644 tmp/Pods/AlamofireImage/Source/UIButton+AlamofireImage.swift create mode 100644 tmp/Pods/AlamofireImage/Source/UIImage+AlamofireImage.swift create mode 100644 tmp/Pods/AlamofireImage/Source/UIImageView+AlamofireImage.swift create mode 100644 tmp/Pods/Manifest.lock create mode 100644 tmp/Pods/Pods.xcodeproj/project.pbxproj create mode 100644 tmp/Pods/Target Support Files/Alamofire/Alamofire-dummy.m create mode 100644 tmp/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch create mode 100644 tmp/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h create mode 100644 tmp/Pods/Target Support Files/Alamofire/Alamofire.modulemap create mode 100644 tmp/Pods/Target Support Files/Alamofire/Alamofire.xcconfig create mode 100644 tmp/Pods/Target Support Files/Alamofire/Info.plist create mode 100644 tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m create mode 100644 tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch create mode 100644 tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h create mode 100644 tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap create mode 100644 tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage.xcconfig create mode 100644 tmp/Pods/Target Support Files/AlamofireImage/Info.plist create mode 100644 tmp/Pods/Target Support Files/Pods-bx24/Info.plist create mode 100644 tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-acknowledgements.markdown create mode 100644 tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-acknowledgements.plist create mode 100644 tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-dummy.m create mode 100644 tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-frameworks.sh create mode 100644 tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-resources.sh create mode 100644 tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-umbrella.h create mode 100644 tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.debug.xcconfig create mode 100644 tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.modulemap create mode 100644 tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.release.xcconfig create mode 100644 "tmp/Screenshot at \320\274\320\260\321\217 09 18-30-01 1.png" create mode 100644 "tmp/Screenshot at \320\274\320\260\321\217 09 18-30-26 2.png" create mode 100644 "tmp/Screenshot at \320\274\320\260\321\217 09 18-30-48.png" create mode 100644 "tmp/Screenshot at \320\274\320\260\321\217 09 18-31-11.png" create mode 100644 "tmp/Screenshot at \320\274\320\260\321\217 09 18-31-33.png" create mode 100644 "tmp/Screenshot at \320\274\320\260\321\217 09 18-31-52.png" diff --git a/.DS_Store b/.DS_Store index 7fecb8955495fef2f72baf7702afe387fd293cc6..7d101de4903a7df9dbf266e7e238f787eaf06eb9 100644 GIT binary patch delta 253 zcmZoMXfc@J&nUPtU^g?P;AS3{c*e>4tg-?*>4w3{`MCuQV6diZvJR_)KyJQ^OG;@; zG6TbPDQ({h1*l*OOi*I^_R_N;LB4_vB<+lo(^zLQF^W%SVl%I2W+-9EWhn5>$xlwo z$xi|rF95`mK)n1v7=SH=szP-IvJA3QjIJ!Y50r!I$<2qmM+#L2 3.3' +source 'https://github.com/CocoaPods/Specs.git' +platform :ios, '9.0' +use_frameworks! -end +target 'bx24' do + pod 'AlamofireImage', '~> 3.3' +end \ No newline at end of file diff --git a/Podfile.lock b/Podfile.lock index da74b26..d799d75 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -15,6 +15,6 @@ SPEC CHECKSUMS: Alamofire: e4fa87002c137ba2d8d634d2c51fabcda0d5c223 AlamofireImage: 3b35b586853abaf94ca1250f4e94cff3c21a4c0d -PODFILE CHECKSUM: a7407b3a11a270dbae8de9fc024dc8e72efe69e5 +PODFILE CHECKSUM: 5b3df93b737631142b57369aa417ab35cf930780 COCOAPODS: 1.5.0 diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index da74b26..d799d75 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -15,6 +15,6 @@ SPEC CHECKSUMS: Alamofire: e4fa87002c137ba2d8d634d2c51fabcda0d5c223 AlamofireImage: 3b35b586853abaf94ca1250f4e94cff3c21a4c0d -PODFILE CHECKSUM: a7407b3a11a270dbae8de9fc024dc8e72efe69e5 +PODFILE CHECKSUM: 5b3df93b737631142b57369aa417ab35cf930780 COCOAPODS: 1.5.0 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index a9493e2..dba043d 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 46; + objectVersion = 50; objects = { /* Begin PBXBuildFile section */ @@ -97,7 +97,7 @@ 80E818A6D9E9288EF7DA42606BB6D46F /* Pods-bx24-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-bx24-acknowledgements.plist"; sourceTree = ""; }; 8303DFF4F0412C06016FB01FE8A0AE2C /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Source/Image.swift; sourceTree = ""; }; 924D7B35DCC427073BE538FFBA1A0813 /* AlamofireImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AlamofireImage.modulemap; sourceTree = ""; }; - 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 93EE4728C7931E90C8B32E868889213E /* AlamofireImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AlamofireImage.xcconfig; sourceTree = ""; }; 9445A4AC5AF5D8CADE7D2A57CDA5D1B0 /* Pods-bx24-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-bx24-frameworks.sh"; sourceTree = ""; }; 99AE59AA3F9F7621F50C3C145B8496F2 /* AlamofireImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AlamofireImage-prefix.pch"; sourceTree = ""; }; @@ -105,11 +105,11 @@ A91FC1D73892193136AD580AB8A514D0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; A99FF6D0367AC8FAF28B714B9C517B09 /* AFIError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFIError.swift; path = Source/AFIError.swift; sourceTree = ""; }; AEF21FE9D010AA7E8064CAB3DDEE4D01 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; - B3F4A9F8BE60CF3B42031205B9720355 /* Pods_bx24.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_bx24.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B3F4A9F8BE60CF3B42031205B9720355 /* Pods_bx24.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Pods_bx24.framework; path = "Pods-bx24.framework"; sourceTree = BUILT_PRODUCTS_DIR; }; B6AE7280F92BC48588D6A2AE0AFCD38D /* AlamofireImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AlamofireImage-umbrella.h"; sourceTree = ""; }; BDB357AA21E5D1C10EA0E504D5CF28CC /* Pods-bx24-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-bx24-dummy.m"; sourceTree = ""; }; BFDEC76B4414B6590F6CE08EB448103B /* Pods-bx24-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-bx24-resources.sh"; sourceTree = ""; }; - C036F4642A8E8D25ADBE080A869FB3DB /* AlamofireImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AlamofireImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + C036F4642A8E8D25ADBE080A869FB3DB /* AlamofireImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AlamofireImage.framework; path = AlamofireImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; CD48160E946CF60C44697D4766239A69 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; CEB169F7011C3AE22F10E4FB8BB941D0 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; D46909E67FE468BAA9A40190506BC2DD /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; @@ -123,7 +123,7 @@ F750B175C7230B153936AECFDF9D4B69 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; F7CB86E5445E708C236651606143CDEA /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; FC78F0C59D72E536A49A29DF9551B2FC /* ImageFilter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFilter.swift; path = Source/ImageFilter.swift; sourceTree = ""; }; - FE167D363996897DA0B7ADA939B77EAC /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + FE167D363996897DA0B7ADA939B77EAC /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Alamofire.framework; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -278,6 +278,7 @@ 445B347EC7347C5B752DAEF7EFC85B3D /* Validation.swift */, 1C7DD18A096A9DBBA87DD83EDCFBA424 /* Support Files */, ); + name = Alamofire; path = Alamofire; sourceTree = ""; }; @@ -295,6 +296,7 @@ 1B8F864B86D55C1EBA65BB1005488236 /* UIImageView+AlamofireImage.swift */, 55DB54AA1C1C4DB3F4DCFB246556ACBC /* Support Files */, ); + name = AlamofireImage; path = AlamofireImage; sourceTree = ""; }; @@ -485,7 +487,42 @@ /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 553022A828EE1991F07D2D73F565AEF8 /* Debug */ = { + 0C48C37D3A3214C9F4AC06A9F287083C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 18B6A34DD4EA6C42D579468E080F81D2 /* Pods-bx24.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-bx24/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-bx24/Pods-bx24.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 199D972A13F2B4C56847F7A89CCA83BC /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -538,7 +575,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; MTL_ENABLE_DEBUG_INFO = YES; ONLY_ACTIVE_ARCH = YES; PRODUCT_NAME = "$(TARGET_NAME)"; @@ -548,64 +585,6 @@ }; name = Debug; }; - 58CE816B060A41D32CEC095441D0E3E0 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - CLANG_ANALYZER_NONNULL = YES; - CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; - CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; - CLANG_CXX_LIBRARY = "libc++"; - CLANG_ENABLE_MODULES = YES; - CLANG_ENABLE_OBJC_ARC = YES; - CLANG_ENABLE_OBJC_WEAK = YES; - CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; - CLANG_WARN_BOOL_CONVERSION = YES; - CLANG_WARN_COMMA = YES; - CLANG_WARN_CONSTANT_CONVERSION = YES; - CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; - CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; - CLANG_WARN_DOCUMENTATION_COMMENTS = YES; - CLANG_WARN_EMPTY_BODY = YES; - CLANG_WARN_ENUM_CONVERSION = YES; - CLANG_WARN_INFINITE_RECURSION = YES; - CLANG_WARN_INT_CONVERSION = YES; - CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; - CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; - CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; - CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; - CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; - CLANG_WARN_STRICT_PROTOTYPES = YES; - CLANG_WARN_SUSPICIOUS_MOVE = YES; - CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; - CLANG_WARN_UNREACHABLE_CODE = YES; - CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; - CODE_SIGNING_ALLOWED = NO; - CODE_SIGNING_REQUIRED = NO; - COPY_PHASE_STRIP = NO; - DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; - ENABLE_NS_ASSERTIONS = NO; - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_C_LANGUAGE_STANDARD = gnu11; - GCC_NO_COMMON_BLOCKS = YES; - GCC_PREPROCESSOR_DEFINITIONS = ( - "POD_CONFIGURATION_RELEASE=1", - "$(inherited)", - ); - GCC_WARN_64_TO_32_BIT_CONVERSION = YES; - GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; - GCC_WARN_UNDECLARED_SELECTOR = YES; - GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; - GCC_WARN_UNUSED_FUNCTION = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - MTL_ENABLE_DEBUG_INFO = NO; - PRODUCT_NAME = "$(TARGET_NAME)"; - STRIP_INSTALLED_PRODUCT = NO; - SYMROOT = "${SRCROOT}/../build"; - }; - name = Release; - }; 9B753614A350734D8D7FDD2D3DA576F3 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = 93EE4728C7931E90C8B32E868889213E /* AlamofireImage.xcconfig */; @@ -704,12 +683,11 @@ }; name = Release; }; - B45265BD23BFAD4A123B665015DC262F /* Debug */ = { + D70873A48BF0B51A8AB8355C2DC36DEA /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 12DD748820FAEC5B3DEE34245986D30B /* Pods-bx24.debug.xcconfig */; buildSettings = { ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; CODE_SIGN_IDENTITY = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -721,7 +699,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = "Target Support Files/Pods-bx24/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MACH_O_TYPE = staticlib; MODULEMAP_FILE = "Target Support Files/Pods-bx24/Pods-bx24.modulemap"; @@ -740,42 +718,6 @@ }; name = Debug; }; - B6E8A532D3BB5FD77E2BF2888E54FE31 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 18B6A34DD4EA6C42D579468E080F81D2 /* Pods-bx24.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - CODE_SIGN_IDENTITY = ""; - "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; - "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; - CURRENT_PROJECT_VERSION = 1; - DEFINES_MODULE = YES; - DYLIB_COMPATIBILITY_VERSION = 1; - DYLIB_CURRENT_VERSION = 1; - DYLIB_INSTALL_NAME_BASE = "@rpath"; - INFOPLIST_FILE = "Target Support Files/Pods-bx24/Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-bx24/Pods-bx24.modulemap"; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; - PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; EA0ADC75B20BB62958101306980460E6 /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 5982CEBEDECD8EED6E707EF56C6A95AD /* Alamofire.xcconfig */; @@ -795,7 +737,6 @@ IPHONEOS_DEPLOYMENT_TARGET = 8.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; - ONLY_ACTIVE_ARCH = NO; PRODUCT_MODULE_NAME = Alamofire; PRODUCT_NAME = Alamofire; SDKROOT = iphoneos; @@ -809,6 +750,64 @@ }; name = Debug; }; + FDB2FC4A1E5891381CD9D922145497F1 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ @@ -824,8 +823,8 @@ 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 553022A828EE1991F07D2D73F565AEF8 /* Debug */, - 58CE816B060A41D32CEC095441D0E3E0 /* Release */, + 199D972A13F2B4C56847F7A89CCA83BC /* Debug */, + FDB2FC4A1E5891381CD9D922145497F1 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -842,8 +841,8 @@ 673FD43BEE743260CF7364D086D729F4 /* Build configuration list for PBXNativeTarget "Pods-bx24" */ = { isa = XCConfigurationList; buildConfigurations = ( - B45265BD23BFAD4A123B665015DC262F /* Debug */, - B6E8A532D3BB5FD77E2BF2888E54FE31 /* Release */, + D70873A48BF0B51A8AB8355C2DC36DEA /* Debug */, + 0C48C37D3A3214C9F4AC06A9F287083C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; diff --git a/bx24.xcodeproj/project.pbxproj b/bx24.xcodeproj/project.pbxproj index ab70d76..69e83e1 100644 --- a/bx24.xcodeproj/project.pbxproj +++ b/bx24.xcodeproj/project.pbxproj @@ -407,13 +407,18 @@ CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = JT2EEB8FZU; + "FRAMEWORK_SEARCH_PATHS[arch=*]" = ( + "$(inherited)", + "\"${PODS_CONFIGURATION_BUILD_DIR}/Alamofire\"", + "\"${PODS_CONFIGURATION_BUILD_DIR}/AlamofireImage\"", + ); INFOPLIST_FILE = "$(SRCROOT)/bx24/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 10.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", ); - ONLY_ACTIVE_ARCH = NO; + ONLY_ACTIVE_ARCH = YES; PRODUCT_BUNDLE_IDENTIFIER = ru.susu.bx24; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -436,6 +441,7 @@ "$(inherited)", "@executable_path/Frameworks", ); + ONLY_ACTIVE_ARCH = YES; PRODUCT_BUNDLE_IDENTIFIER = ru.susu.bx24; PRODUCT_NAME = "$(TARGET_NAME)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/bx24.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/bx24.xcodeproj/project.xcworkspace/contents.xcworkspacedata index f80693c..c35ab62 100644 --- a/bx24.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ b/bx24.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -2,6 +2,6 @@ + location = "self:.."> diff --git a/bx24.xcodeproj/project.xcworkspace/xcuserdata/aleksandr.xcuserdatad/UserInterfaceState.xcuserstate b/bx24.xcodeproj/project.xcworkspace/xcuserdata/aleksandr.xcuserdatad/UserInterfaceState.xcuserstate index ebdc3309a90274334b642a4b6caa2d4485c5e7a8..e7ca2d04e1f3946e62eb61a0dbba885b258bd139 100644 GIT binary patch delta 13129 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

ycAMR9Z)5Ln?_tlg7ubvKZu?04XnTdd%0AgX z#Xj3!XJ2MtX+E3Xp+kZ#2V^paVOaJA@9ABgUb0XdHS+f+NY1>_~B>J05p*cjP#R zI!YZQ9HSiN4zFXZV}fIn!{^xK*zY*+xaRo7amNXqjI)_j;0$v{J5^4t)8I5YlYLIR z)9Iww5YA%fZ0CEZubtmJ&p6LJFFAj5{^I=2dCU1{8cu7LCQ6G*Q>W?D;?ok+ zY-y=!X=!cJ+NE_#>z0<6HYjaq+7oFdX`|B0)2h;H(rVKtr#+MQVpe#TIIDG5LRL~% za+W>Inbjt%eO6Xh&#c~AIazsG1zEoSSp%~sXEkK)&${UXt`;t-E6Nq;(z_B|kGnd# zT&`ZOY*&tJsOt$=vCHim=^Ev#agA|}b4_qfaZPnibIo$ibAKaUS&tSyggwH0sCwvon1k6EqW7%)7yCl+Gx!q&&?D*p059tpcmMzZ delta 7711 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 diff --git a/bx24.xcworkspace/contents.xcworkspacedata b/bx24.xcworkspace/contents.xcworkspacedata index 6106eb2..70f2a3b 100644 --- a/bx24.xcworkspace/contents.xcworkspacedata +++ b/bx24.xcworkspace/contents.xcworkspacedata @@ -2,7 +2,7 @@ + location = "group:bx24.xcodeproj"> diff --git a/bx24.xcworkspace/xcuserdata/aleksandr.xcuserdatad/UserInterfaceState.xcuserstate b/bx24.xcworkspace/xcuserdata/aleksandr.xcuserdatad/UserInterfaceState.xcuserstate index 3a1e8941f498324d37cfe2da6b242c9fed333842..75f318c0adcefeff9d32ce52003de6e0edbaf82a 100644 GIT binary patch literal 105669 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

r# z-ffQla_n}_t^A!K+|9i_z);5V2@BZD(IAv-=DGUGm0_;)b9>|bT<7OHKiB!WGR!rb z+-L9(a`lqC4E^MqMXvehIxkmWxq8Yi!Jg%v%6W9fJ$ZI3F9!GJ*{3}7$}_J#^UBM? zoq2l5dyoijO`_C(;^{C>zMUq1QvH-8W}aVNvk zQ~pH0#;o$^QjB+0;QRt_xj+vE7to1I=#E|rqEUCj5FWxF7YsvI1 z!v*dun8xRPg*_>7cfrrhV?K*m%67`A$8HqpyWkIw1))MaQYhm>y%)Act%Y5YaiN_o z)PJG+3iFXe;Q(Y%_&2WOM*hL0Jd0WjUtu(_qu#jVpZ$M-LjBtQA7~P%K>z>% literal 100725 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 r!oeZtADloRgD0TgVA&6TfQRrmq&@$7`rFf - + + + + - + - - - - - - + + + - + @@ -143,7 +143,10 @@ - - + + + + + Lorem ipsum dolor sit er elit lamet, consectetaur cillium adipisicing pecu, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Nam liber te conscient to factor tum poen legum odioque civiuda. @@ -182,33 +188,13 @@ - - - + - - diff --git a/bx24/SecondViewController.swift b/bx24/SecondViewController.swift index ae16a5c..fa2dfbb 100644 --- a/bx24/SecondViewController.swift +++ b/bx24/SecondViewController.swift @@ -55,7 +55,8 @@ extension SecondViewController: UITableViewDelegate, UITableViewDataSource { var info = infos[indexPath.row] - info.images = ["https://png.icons8.com/ios/1600/accuracy.png"] + info.images = ["https://png.icons8.com/ios/1600/accuracy.png", + "https://pp.userapi.com/c834203/v834203757/11d0b0/74C4VbdqYSQ.jpg"] infoViewController.info = info diff --git a/tmp/.DS_Store b/tmp/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..570cff1c5a072648c235788e24a598d3ac984833 GIT binary patch literal 6148 zcmeHK-EPw`6h7VpBn(6@kj7;Y;;x&LjjfwBq^OLGT`?&LE&y#w6V`|jS53MKN>LsI z-iSBgap3dMCaQv{rWK*dr}FviXS|KUFkl$?-xv_z?kzgR_nOjM`t|$m(z}C#cawrA@Ns`kiCl)IBugi}QY* zyvVcBk$d+EFY7ojvw;lG(+n=JU*=`XM;$&a(@N%v)P&o~)cFWuGCoON> zZu>2-z1yBl9DDU)@c7{P{fCd^Pm|AI)B|JK-=y5pcm`k5Ip^Ut8k7YuPhb=N4=AE8 z4X`6-R8mDfuw0WzvC!6@`{@|er z3^g_i<<@*g_wab6$(_LOkXjW3Wwd(exb%jp$aFaFCR=- zX8MN0WOd~Cq&u-tq0xo`!@x8H%WCL~^Z)6e@Bh<5W@H#J3|uJ&n6)46cd#UVw$3b0 woV6a>F`5wJ*C>=BQ2IEQ9dQ)jLz99zPjrBx#zrA55c5Ys(qNQf;GZ(^6V0j_QUCw| literal 0 HcmV?d00001 diff --git a/tmp/Podfile.lock b/tmp/Podfile.lock new file mode 100644 index 0000000..95c26ee --- /dev/null +++ b/tmp/Podfile.lock @@ -0,0 +1,20 @@ +PODS: + - Alamofire (4.7.2) + - AlamofireImage (3.3.1): + - Alamofire (~> 4.5) + +DEPENDENCIES: + - AlamofireImage (~> 3.3) + +SPEC REPOS: + https://github.com/CocoaPods/Specs.git: + - Alamofire + - AlamofireImage + +SPEC CHECKSUMS: + Alamofire: e4fa87002c137ba2d8d634d2c51fabcda0d5c223 + AlamofireImage: 3b35b586853abaf94ca1250f4e94cff3c21a4c0d + +PODFILE CHECKSUM: 1a994c3bc25d0a81e6947d151382130d8377d015 + +COCOAPODS: 1.5.0 diff --git a/tmp/Pods/Alamofire/LICENSE b/tmp/Pods/Alamofire/LICENSE new file mode 100644 index 0000000..2ec3cb1 --- /dev/null +++ b/tmp/Pods/Alamofire/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/tmp/Pods/Alamofire/README.md b/tmp/Pods/Alamofire/README.md new file mode 100644 index 0000000..f29cfce --- /dev/null +++ b/tmp/Pods/Alamofire/README.md @@ -0,0 +1,242 @@ +![Alamofire: Elegant Networking in Swift](https://raw.githubusercontent.com/Alamofire/Alamofire/master/alamofire.png) + +[![Build Status](https://travis-ci.org/Alamofire/Alamofire.svg?branch=master)](https://travis-ci.org/Alamofire/Alamofire) +[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/Alamofire.svg)](https://img.shields.io/cocoapods/v/Alamofire.svg) +[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) +[![Platform](https://img.shields.io/cocoapods/p/Alamofire.svg?style=flat)](https://alamofire.github.io/Alamofire) +[![Twitter](https://img.shields.io/badge/twitter-@AlamofireSF-blue.svg?style=flat)](http://twitter.com/AlamofireSF) +[![Gitter](https://badges.gitter.im/Alamofire/Alamofire.svg)](https://gitter.im/Alamofire/Alamofire?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) + +Alamofire is an HTTP networking library written in Swift. + +- [Features](#features) +- [Component Libraries](#component-libraries) +- [Requirements](#requirements) +- [Migration Guides](#migration-guides) +- [Communication](#communication) +- [Installation](#installation) +- [Usage](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md) + - **Intro -** [Making a Request](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#making-a-request), [Response Handling](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#response-handling), [Response Validation](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#response-validation), [Response Caching](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#response-caching) + - **HTTP -** [HTTP Methods](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#http-methods), [Parameter Encoding](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#parameter-encoding), [HTTP Headers](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#http-headers), [Authentication](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#authentication) + - **Large Data -** [Downloading Data to a File](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#downloading-data-to-a-file), [Uploading Data to a Server](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#uploading-data-to-a-server) + - **Tools -** [Statistical Metrics](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#statistical-metrics), [cURL Command Output](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Usage.md#curl-command-output) +- [Advanced Usage](https://github.com/Alamofire/Alamofire/blob/master/Documentation/AdvancedUsage.md) + - **URL Session -** [Session Manager](https://github.com/Alamofire/Alamofire/blob/master/Documentation/AdvancedUsage.md#session-manager), [Session Delegate](https://github.com/Alamofire/Alamofire/blob/master/Documentation/AdvancedUsage.md#session-delegate), [Request](https://github.com/Alamofire/Alamofire/blob/master/Documentation/AdvancedUsage.md#request) + - **Routing -** [Routing Requests](https://github.com/Alamofire/Alamofire/blob/master/Documentation/AdvancedUsage.md#routing-requests), [Adapting and Retrying Requests](https://github.com/Alamofire/Alamofire/blob/master/Documentation/AdvancedUsage.md#adapting-and-retrying-requests) + - **Model Objects -** [Custom Response Serialization](https://github.com/Alamofire/Alamofire/blob/master/Documentation/AdvancedUsage.md#custom-response-serialization) + - **Connection -** [Security](https://github.com/Alamofire/Alamofire/blob/master/Documentation/AdvancedUsage.md#security), [Network Reachability](https://github.com/Alamofire/Alamofire/blob/master/Documentation/AdvancedUsage.md#network-reachability) +- [Open Radars](#open-radars) +- [FAQ](#faq) +- [Credits](#credits) +- [Donations](#donations) +- [License](#license) + +## Features + +- [x] Chainable Request / Response Methods +- [x] URL / JSON / plist Parameter Encoding +- [x] Upload File / Data / Stream / MultipartFormData +- [x] Download File using Request or Resume Data +- [x] Authentication with URLCredential +- [x] HTTP Response Validation +- [x] Upload and Download Progress Closures with Progress +- [x] cURL Command Output +- [x] Dynamically Adapt and Retry Requests +- [x] TLS Certificate and Public Key Pinning +- [x] Network Reachability +- [x] Comprehensive Unit and Integration Test Coverage +- [x] [Complete Documentation](https://alamofire.github.io/Alamofire) + +## Component Libraries + +In order to keep Alamofire focused specifically on core networking implementations, additional component libraries have been created by the [Alamofire Software Foundation](https://github.com/Alamofire/Foundation) to bring additional functionality to the Alamofire ecosystem. + +- [AlamofireImage](https://github.com/Alamofire/AlamofireImage) - An image library including image response serializers, `UIImage` and `UIImageView` extensions, custom image filters, an auto-purging in-memory cache and a priority-based image downloading system. +- [AlamofireNetworkActivityIndicator](https://github.com/Alamofire/AlamofireNetworkActivityIndicator) - Controls the visibility of the network activity indicator on iOS using Alamofire. It contains configurable delay timers to help mitigate flicker and can support `URLSession` instances not managed by Alamofire. + +## Requirements + +- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+ +- Xcode 8.3+ +- Swift 3.1+ + +## Migration Guides + +- [Alamofire 4.0 Migration Guide](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Alamofire%204.0%20Migration%20Guide.md) +- [Alamofire 3.0 Migration Guide](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Alamofire%203.0%20Migration%20Guide.md) +- [Alamofire 2.0 Migration Guide](https://github.com/Alamofire/Alamofire/blob/master/Documentation/Alamofire%202.0%20Migration%20Guide.md) + +## Communication + +- If you **need help**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/alamofire). (Tag 'alamofire') +- If you'd like to **ask a general question**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/alamofire). +- If you **found a bug**, open an issue. +- If you **have a feature request**, open an issue. +- If you **want to contribute**, submit a pull request. + +## Installation + +### CocoaPods + +[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command: + +```bash +$ gem install cocoapods +``` + +> CocoaPods 1.1+ is required to build Alamofire 4.0+. + +To integrate Alamofire into your Xcode project using CocoaPods, specify it in your `Podfile`: + +```ruby +source 'https://github.com/CocoaPods/Specs.git' +platform :ios, '10.0' +use_frameworks! + +target '' do + pod 'Alamofire', '~> 4.7' +end +``` + +Then, run the following command: + +```bash +$ pod install +``` + +### Carthage + +[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. + +You can install Carthage with [Homebrew](http://brew.sh/) using the following command: + +```bash +$ brew update +$ brew install carthage +``` + +To integrate Alamofire into your Xcode project using Carthage, specify it in your `Cartfile`: + +```ogdl +github "Alamofire/Alamofire" ~> 4.7 +``` + +Run `carthage update` to build the framework and drag the built `Alamofire.framework` into your Xcode project. + +### Swift Package Manager + +The [Swift Package Manager](https://swift.org/package-manager/) is a tool for automating the distribution of Swift code and is integrated into the `swift` compiler. It is in early development, but Alamofire does support its use on supported platforms. + +Once you have your Swift package set up, adding Alamofire as a dependency is as easy as adding it to the `dependencies` value of your `Package.swift`. + +#### Swift 3 + +```swift +dependencies: [ + .Package(url: "https://github.com/Alamofire/Alamofire.git", majorVersion: 4) +] +``` + +#### Swift 4 + +```swift +dependencies: [ + .package(url: "https://github.com/Alamofire/Alamofire.git", from: "4.0.0") +] +``` + +### Manually + +If you prefer not to use any of the aforementioned dependency managers, you can integrate Alamofire into your project manually. + +#### Embedded Framework + +- Open up Terminal, `cd` into your top-level project directory, and run the following command "if" your project is not initialized as a git repository: + + ```bash + $ git init + ``` + +- Add Alamofire as a git [submodule](http://git-scm.com/docs/git-submodule) by running the following command: + + ```bash + $ git submodule add https://github.com/Alamofire/Alamofire.git + ``` + +- Open the new `Alamofire` folder, and drag the `Alamofire.xcodeproj` into the Project Navigator of your application's Xcode project. + + > It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter. + +- Select the `Alamofire.xcodeproj` in the Project Navigator and verify the deployment target matches that of your application target. +- Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar. +- In the tab bar at the top of that window, open the "General" panel. +- Click on the `+` button under the "Embedded Binaries" section. +- You will see two different `Alamofire.xcodeproj` folders each with two different versions of the `Alamofire.framework` nested inside a `Products` folder. + + > It does not matter which `Products` folder you choose from, but it does matter whether you choose the top or bottom `Alamofire.framework`. + +- Select the top `Alamofire.framework` for iOS and the bottom one for OS X. + + > You can verify which one you selected by inspecting the build log for your project. The build target for `Alamofire` will be listed as either `Alamofire iOS`, `Alamofire macOS`, `Alamofire tvOS` or `Alamofire watchOS`. + +- And that's it! + + > The `Alamofire.framework` is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device. + +## Open Radars + +The following radars have some effect on the current implementation of Alamofire. + +- [`rdar://21349340`](http://www.openradar.me/radar?id=5517037090635776) - Compiler throwing warning due to toll-free bridging issue in test case +- `rdar://26870455` - Background URL Session Configurations do not work in the simulator +- `rdar://26849668` - Some URLProtocol APIs do not properly handle `URLRequest` +- [`rdar://36082113`](http://openradar.appspot.com/radar?id=4942308441063424) - `URLSessionTaskMetrics` failing to link on watchOS 3.0+ + +## Resolved Radars + +The following radars have been resolved over time after being filed against the Alamofire project. + +- [`rdar://26761490`](http://www.openradar.me/radar?id=5010235949318144) - Swift string interpolation causing memory leak with common usage (Resolved on 9/1/17 in Xcode 9 beta 6). + +## FAQ + +### What's the origin of the name Alamofire? + +Alamofire is named after the [Alamo Fire flower](https://aggie-horticulture.tamu.edu/wildseed/alamofire.html), a hybrid variant of the Bluebonnet, the official state flower of Texas. + +### What logic belongs in a Router vs. a Request Adapter? + +Simple, static data such as paths, parameters and common headers belong in the `Router`. Dynamic data such as an `Authorization` header whose value can changed based on an authentication system belongs in a `RequestAdapter`. + +The reason the dynamic data MUST be placed into the `RequestAdapter` is to support retry operations. When a `Request` is retried, the original request is not rebuilt meaning the `Router` will not be called again. The `RequestAdapter` is called again allowing the dynamic data to be updated on the original request before retrying the `Request`. + +## Credits + +Alamofire is owned and maintained by the [Alamofire Software Foundation](http://alamofire.org). You can follow them on Twitter at [@AlamofireSF](https://twitter.com/AlamofireSF) for project updates and releases. + +### Security Disclosure + +If you believe you have identified a security vulnerability with Alamofire, you should report it as soon as possible via email to security@alamofire.org. Please do not post it to a public issue tracker. + +## Donations + +The [ASF](https://github.com/Alamofire/Foundation#members) is looking to raise money to officially stay registered as a federal non-profit organization. +Registering will allow us members to gain some legal protections and also allow us to put donations to use, tax free. +Donating to the ASF will enable us to: + +- Pay our yearly legal fees to keep the non-profit in good status +- Pay for our mail servers to help us stay on top of all questions and security issues +- Potentially fund test servers to make it easier for us to test the edge cases +- Potentially fund developers to work on one of our projects full-time + +The community adoption of the ASF libraries has been amazing. +We are greatly humbled by your enthusiasm around the projects, and want to continue to do everything we can to move the needle forward. +With your continued support, the ASF will be able to improve its reach and also provide better legal safety for the core members. +If you use any of our libraries for work, see if your employers would be interested in donating. +Any amount you can donate today to help us reach our goal would be greatly appreciated. + +[![paypal](https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=W34WPEE74APJQ) + +## License + +Alamofire is released under the MIT license. [See LICENSE](https://github.com/Alamofire/Alamofire/blob/master/LICENSE) for details. diff --git a/tmp/Pods/Alamofire/Source/AFError.swift b/tmp/Pods/Alamofire/Source/AFError.swift new file mode 100644 index 0000000..8b90d84 --- /dev/null +++ b/tmp/Pods/Alamofire/Source/AFError.swift @@ -0,0 +1,460 @@ +// +// AFError.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// `AFError` is the error type returned by Alamofire. It encompasses a few different types of errors, each with +/// their own associated reasons. +/// +/// - invalidURL: Returned when a `URLConvertible` type fails to create a valid `URL`. +/// - parameterEncodingFailed: Returned when a parameter encoding object throws an error during the encoding process. +/// - multipartEncodingFailed: Returned when some step in the multipart encoding process fails. +/// - responseValidationFailed: Returned when a `validate()` call fails. +/// - responseSerializationFailed: Returned when a response serializer encounters an error in the serialization process. +public enum AFError: Error { + /// The underlying reason the parameter encoding error occurred. + /// + /// - missingURL: The URL request did not have a URL to encode. + /// - jsonEncodingFailed: JSON serialization failed with an underlying system error during the + /// encoding process. + /// - propertyListEncodingFailed: Property list serialization failed with an underlying system error during + /// encoding process. + public enum ParameterEncodingFailureReason { + case missingURL + case jsonEncodingFailed(error: Error) + case propertyListEncodingFailed(error: Error) + } + + /// The underlying reason the multipart encoding error occurred. + /// + /// - bodyPartURLInvalid: The `fileURL` provided for reading an encodable body part isn't a + /// file URL. + /// - bodyPartFilenameInvalid: The filename of the `fileURL` provided has either an empty + /// `lastPathComponent` or `pathExtension. + /// - bodyPartFileNotReachable: The file at the `fileURL` provided was not reachable. + /// - bodyPartFileNotReachableWithError: Attempting to check the reachability of the `fileURL` provided threw + /// an error. + /// - bodyPartFileIsDirectory: The file at the `fileURL` provided is actually a directory. + /// - bodyPartFileSizeNotAvailable: The size of the file at the `fileURL` provided was not returned by + /// the system. + /// - bodyPartFileSizeQueryFailedWithError: The attempt to find the size of the file at the `fileURL` provided + /// threw an error. + /// - bodyPartInputStreamCreationFailed: An `InputStream` could not be created for the provided `fileURL`. + /// - outputStreamCreationFailed: An `OutputStream` could not be created when attempting to write the + /// encoded data to disk. + /// - outputStreamFileAlreadyExists: The encoded body data could not be writtent disk because a file + /// already exists at the provided `fileURL`. + /// - outputStreamURLInvalid: The `fileURL` provided for writing the encoded body data to disk is + /// not a file URL. + /// - outputStreamWriteFailed: The attempt to write the encoded body data to disk failed with an + /// underlying error. + /// - inputStreamReadFailed: The attempt to read an encoded body part `InputStream` failed with + /// underlying system error. + public enum MultipartEncodingFailureReason { + case bodyPartURLInvalid(url: URL) + case bodyPartFilenameInvalid(in: URL) + case bodyPartFileNotReachable(at: URL) + case bodyPartFileNotReachableWithError(atURL: URL, error: Error) + case bodyPartFileIsDirectory(at: URL) + case bodyPartFileSizeNotAvailable(at: URL) + case bodyPartFileSizeQueryFailedWithError(forURL: URL, error: Error) + case bodyPartInputStreamCreationFailed(for: URL) + + case outputStreamCreationFailed(for: URL) + case outputStreamFileAlreadyExists(at: URL) + case outputStreamURLInvalid(url: URL) + case outputStreamWriteFailed(error: Error) + + case inputStreamReadFailed(error: Error) + } + + /// The underlying reason the response validation error occurred. + /// + /// - dataFileNil: The data file containing the server response did not exist. + /// - dataFileReadFailed: The data file containing the server response could not be read. + /// - missingContentType: The response did not contain a `Content-Type` and the `acceptableContentTypes` + /// provided did not contain wildcard type. + /// - unacceptableContentType: The response `Content-Type` did not match any type in the provided + /// `acceptableContentTypes`. + /// - unacceptableStatusCode: The response status code was not acceptable. + public enum ResponseValidationFailureReason { + case dataFileNil + case dataFileReadFailed(at: URL) + case missingContentType(acceptableContentTypes: [String]) + case unacceptableContentType(acceptableContentTypes: [String], responseContentType: String) + case unacceptableStatusCode(code: Int) + } + + /// The underlying reason the response serialization error occurred. + /// + /// - inputDataNil: The server response contained no data. + /// - inputDataNilOrZeroLength: The server response contained no data or the data was zero length. + /// - inputFileNil: The file containing the server response did not exist. + /// - inputFileReadFailed: The file containing the server response could not be read. + /// - stringSerializationFailed: String serialization failed using the provided `String.Encoding`. + /// - jsonSerializationFailed: JSON serialization failed with an underlying system error. + /// - propertyListSerializationFailed: Property list serialization failed with an underlying system error. + public enum ResponseSerializationFailureReason { + case inputDataNil + case inputDataNilOrZeroLength + case inputFileNil + case inputFileReadFailed(at: URL) + case stringSerializationFailed(encoding: String.Encoding) + case jsonSerializationFailed(error: Error) + case propertyListSerializationFailed(error: Error) + } + + case invalidURL(url: URLConvertible) + case parameterEncodingFailed(reason: ParameterEncodingFailureReason) + case multipartEncodingFailed(reason: MultipartEncodingFailureReason) + case responseValidationFailed(reason: ResponseValidationFailureReason) + case responseSerializationFailed(reason: ResponseSerializationFailureReason) +} + +// MARK: - Adapt Error + +struct AdaptError: Error { + let error: Error +} + +extension Error { + var underlyingAdaptError: Error? { return (self as? AdaptError)?.error } +} + +// MARK: - Error Booleans + +extension AFError { + /// Returns whether the AFError is an invalid URL error. + public var isInvalidURLError: Bool { + if case .invalidURL = self { return true } + return false + } + + /// Returns whether the AFError is a parameter encoding error. When `true`, the `underlyingError` property will + /// contain the associated value. + public var isParameterEncodingError: Bool { + if case .parameterEncodingFailed = self { return true } + return false + } + + /// Returns whether the AFError is a multipart encoding error. When `true`, the `url` and `underlyingError` properties + /// will contain the associated values. + public var isMultipartEncodingError: Bool { + if case .multipartEncodingFailed = self { return true } + return false + } + + /// Returns whether the `AFError` is a response validation error. When `true`, the `acceptableContentTypes`, + /// `responseContentType`, and `responseCode` properties will contain the associated values. + public var isResponseValidationError: Bool { + if case .responseValidationFailed = self { return true } + return false + } + + /// Returns whether the `AFError` is a response serialization error. When `true`, the `failedStringEncoding` and + /// `underlyingError` properties will contain the associated values. + public var isResponseSerializationError: Bool { + if case .responseSerializationFailed = self { return true } + return false + } +} + +// MARK: - Convenience Properties + +extension AFError { + /// The `URLConvertible` associated with the error. + public var urlConvertible: URLConvertible? { + switch self { + case .invalidURL(let url): + return url + default: + return nil + } + } + + /// The `URL` associated with the error. + public var url: URL? { + switch self { + case .multipartEncodingFailed(let reason): + return reason.url + default: + return nil + } + } + + /// The `Error` returned by a system framework associated with a `.parameterEncodingFailed`, + /// `.multipartEncodingFailed` or `.responseSerializationFailed` error. + public var underlyingError: Error? { + switch self { + case .parameterEncodingFailed(let reason): + return reason.underlyingError + case .multipartEncodingFailed(let reason): + return reason.underlyingError + case .responseSerializationFailed(let reason): + return reason.underlyingError + default: + return nil + } + } + + /// The acceptable `Content-Type`s of a `.responseValidationFailed` error. + public var acceptableContentTypes: [String]? { + switch self { + case .responseValidationFailed(let reason): + return reason.acceptableContentTypes + default: + return nil + } + } + + /// The response `Content-Type` of a `.responseValidationFailed` error. + public var responseContentType: String? { + switch self { + case .responseValidationFailed(let reason): + return reason.responseContentType + default: + return nil + } + } + + /// The response code of a `.responseValidationFailed` error. + public var responseCode: Int? { + switch self { + case .responseValidationFailed(let reason): + return reason.responseCode + default: + return nil + } + } + + /// The `String.Encoding` associated with a failed `.stringResponse()` call. + public var failedStringEncoding: String.Encoding? { + switch self { + case .responseSerializationFailed(let reason): + return reason.failedStringEncoding + default: + return nil + } + } +} + +extension AFError.ParameterEncodingFailureReason { + var underlyingError: Error? { + switch self { + case .jsonEncodingFailed(let error), .propertyListEncodingFailed(let error): + return error + default: + return nil + } + } +} + +extension AFError.MultipartEncodingFailureReason { + var url: URL? { + switch self { + case .bodyPartURLInvalid(let url), .bodyPartFilenameInvalid(let url), .bodyPartFileNotReachable(let url), + .bodyPartFileIsDirectory(let url), .bodyPartFileSizeNotAvailable(let url), + .bodyPartInputStreamCreationFailed(let url), .outputStreamCreationFailed(let url), + .outputStreamFileAlreadyExists(let url), .outputStreamURLInvalid(let url), + .bodyPartFileNotReachableWithError(let url, _), .bodyPartFileSizeQueryFailedWithError(let url, _): + return url + default: + return nil + } + } + + var underlyingError: Error? { + switch self { + case .bodyPartFileNotReachableWithError(_, let error), .bodyPartFileSizeQueryFailedWithError(_, let error), + .outputStreamWriteFailed(let error), .inputStreamReadFailed(let error): + return error + default: + return nil + } + } +} + +extension AFError.ResponseValidationFailureReason { + var acceptableContentTypes: [String]? { + switch self { + case .missingContentType(let types), .unacceptableContentType(let types, _): + return types + default: + return nil + } + } + + var responseContentType: String? { + switch self { + case .unacceptableContentType(_, let responseType): + return responseType + default: + return nil + } + } + + var responseCode: Int? { + switch self { + case .unacceptableStatusCode(let code): + return code + default: + return nil + } + } +} + +extension AFError.ResponseSerializationFailureReason { + var failedStringEncoding: String.Encoding? { + switch self { + case .stringSerializationFailed(let encoding): + return encoding + default: + return nil + } + } + + var underlyingError: Error? { + switch self { + case .jsonSerializationFailed(let error), .propertyListSerializationFailed(let error): + return error + default: + return nil + } + } +} + +// MARK: - Error Descriptions + +extension AFError: LocalizedError { + public var errorDescription: String? { + switch self { + case .invalidURL(let url): + return "URL is not valid: \(url)" + case .parameterEncodingFailed(let reason): + return reason.localizedDescription + case .multipartEncodingFailed(let reason): + return reason.localizedDescription + case .responseValidationFailed(let reason): + return reason.localizedDescription + case .responseSerializationFailed(let reason): + return reason.localizedDescription + } + } +} + +extension AFError.ParameterEncodingFailureReason { + var localizedDescription: String { + switch self { + case .missingURL: + return "URL request to encode was missing a URL" + case .jsonEncodingFailed(let error): + return "JSON could not be encoded because of error:\n\(error.localizedDescription)" + case .propertyListEncodingFailed(let error): + return "PropertyList could not be encoded because of error:\n\(error.localizedDescription)" + } + } +} + +extension AFError.MultipartEncodingFailureReason { + var localizedDescription: String { + switch self { + case .bodyPartURLInvalid(let url): + return "The URL provided is not a file URL: \(url)" + case .bodyPartFilenameInvalid(let url): + return "The URL provided does not have a valid filename: \(url)" + case .bodyPartFileNotReachable(let url): + return "The URL provided is not reachable: \(url)" + case .bodyPartFileNotReachableWithError(let url, let error): + return ( + "The system returned an error while checking the provided URL for " + + "reachability.\nURL: \(url)\nError: \(error)" + ) + case .bodyPartFileIsDirectory(let url): + return "The URL provided is a directory: \(url)" + case .bodyPartFileSizeNotAvailable(let url): + return "Could not fetch the file size from the provided URL: \(url)" + case .bodyPartFileSizeQueryFailedWithError(let url, let error): + return ( + "The system returned an error while attempting to fetch the file size from the " + + "provided URL.\nURL: \(url)\nError: \(error)" + ) + case .bodyPartInputStreamCreationFailed(let url): + return "Failed to create an InputStream for the provided URL: \(url)" + case .outputStreamCreationFailed(let url): + return "Failed to create an OutputStream for URL: \(url)" + case .outputStreamFileAlreadyExists(let url): + return "A file already exists at the provided URL: \(url)" + case .outputStreamURLInvalid(let url): + return "The provided OutputStream URL is invalid: \(url)" + case .outputStreamWriteFailed(let error): + return "OutputStream write failed with error: \(error)" + case .inputStreamReadFailed(let error): + return "InputStream read failed with error: \(error)" + } + } +} + +extension AFError.ResponseSerializationFailureReason { + var localizedDescription: String { + switch self { + case .inputDataNil: + return "Response could not be serialized, input data was nil." + case .inputDataNilOrZeroLength: + return "Response could not be serialized, input data was nil or zero length." + case .inputFileNil: + return "Response could not be serialized, input file was nil." + case .inputFileReadFailed(let url): + return "Response could not be serialized, input file could not be read: \(url)." + case .stringSerializationFailed(let encoding): + return "String could not be serialized with encoding: \(encoding)." + case .jsonSerializationFailed(let error): + return "JSON could not be serialized because of error:\n\(error.localizedDescription)" + case .propertyListSerializationFailed(let error): + return "PropertyList could not be serialized because of error:\n\(error.localizedDescription)" + } + } +} + +extension AFError.ResponseValidationFailureReason { + var localizedDescription: String { + switch self { + case .dataFileNil: + return "Response could not be validated, data file was nil." + case .dataFileReadFailed(let url): + return "Response could not be validated, data file could not be read: \(url)." + case .missingContentType(let types): + return ( + "Response Content-Type was missing and acceptable content types " + + "(\(types.joined(separator: ","))) do not match \"*/*\"." + ) + case .unacceptableContentType(let acceptableTypes, let responseType): + return ( + "Response Content-Type \"\(responseType)\" does not match any acceptable types: " + + "\(acceptableTypes.joined(separator: ","))." + ) + case .unacceptableStatusCode(let code): + return "Response status code was unacceptable: \(code)." + } + } +} diff --git a/tmp/Pods/Alamofire/Source/Alamofire.swift b/tmp/Pods/Alamofire/Source/Alamofire.swift new file mode 100644 index 0000000..2fcc05c --- /dev/null +++ b/tmp/Pods/Alamofire/Source/Alamofire.swift @@ -0,0 +1,465 @@ +// +// Alamofire.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// Types adopting the `URLConvertible` protocol can be used to construct URLs, which are then used to construct +/// URL requests. +public protocol URLConvertible { + /// Returns a URL that conforms to RFC 2396 or throws an `Error`. + /// + /// - throws: An `Error` if the type cannot be converted to a `URL`. + /// + /// - returns: A URL or throws an `Error`. + func asURL() throws -> URL +} + +extension String: URLConvertible { + /// Returns a URL if `self` represents a valid URL string that conforms to RFC 2396 or throws an `AFError`. + /// + /// - throws: An `AFError.invalidURL` if `self` is not a valid URL string. + /// + /// - returns: A URL or throws an `AFError`. + public func asURL() throws -> URL { + guard let url = URL(string: self) else { throw AFError.invalidURL(url: self) } + return url + } +} + +extension URL: URLConvertible { + /// Returns self. + public func asURL() throws -> URL { return self } +} + +extension URLComponents: URLConvertible { + /// Returns a URL if `url` is not nil, otherwise throws an `Error`. + /// + /// - throws: An `AFError.invalidURL` if `url` is `nil`. + /// + /// - returns: A URL or throws an `AFError`. + public func asURL() throws -> URL { + guard let url = url else { throw AFError.invalidURL(url: self) } + return url + } +} + +// MARK: - + +/// Types adopting the `URLRequestConvertible` protocol can be used to construct URL requests. +public protocol URLRequestConvertible { + /// Returns a URL request or throws if an `Error` was encountered. + /// + /// - throws: An `Error` if the underlying `URLRequest` is `nil`. + /// + /// - returns: A URL request. + func asURLRequest() throws -> URLRequest +} + +extension URLRequestConvertible { + /// The URL request. + public var urlRequest: URLRequest? { return try? asURLRequest() } +} + +extension URLRequest: URLRequestConvertible { + /// Returns a URL request or throws if an `Error` was encountered. + public func asURLRequest() throws -> URLRequest { return self } +} + +// MARK: - + +extension URLRequest { + /// Creates an instance with the specified `method`, `urlString` and `headers`. + /// + /// - parameter url: The URL. + /// - parameter method: The HTTP method. + /// - parameter headers: The HTTP headers. `nil` by default. + /// + /// - returns: The new `URLRequest` instance. + public init(url: URLConvertible, method: HTTPMethod, headers: HTTPHeaders? = nil) throws { + let url = try url.asURL() + + self.init(url: url) + + httpMethod = method.rawValue + + if let headers = headers { + for (headerField, headerValue) in headers { + setValue(headerValue, forHTTPHeaderField: headerField) + } + } + } + + func adapt(using adapter: RequestAdapter?) throws -> URLRequest { + guard let adapter = adapter else { return self } + return try adapter.adapt(self) + } +} + +// MARK: - Data Request + +/// Creates a `DataRequest` using the default `SessionManager` to retrieve the contents of the specified `url`, +/// `method`, `parameters`, `encoding` and `headers`. +/// +/// - parameter url: The URL. +/// - parameter method: The HTTP method. `.get` by default. +/// - parameter parameters: The parameters. `nil` by default. +/// - parameter encoding: The parameter encoding. `URLEncoding.default` by default. +/// - parameter headers: The HTTP headers. `nil` by default. +/// +/// - returns: The created `DataRequest`. +@discardableResult +public func request( + _ url: URLConvertible, + method: HTTPMethod = .get, + parameters: Parameters? = nil, + encoding: ParameterEncoding = URLEncoding.default, + headers: HTTPHeaders? = nil) + -> DataRequest +{ + return SessionManager.default.request( + url, + method: method, + parameters: parameters, + encoding: encoding, + headers: headers + ) +} + +/// Creates a `DataRequest` using the default `SessionManager` to retrieve the contents of a URL based on the +/// specified `urlRequest`. +/// +/// - parameter urlRequest: The URL request +/// +/// - returns: The created `DataRequest`. +@discardableResult +public func request(_ urlRequest: URLRequestConvertible) -> DataRequest { + return SessionManager.default.request(urlRequest) +} + +// MARK: - Download Request + +// MARK: URL Request + +/// Creates a `DownloadRequest` using the default `SessionManager` to retrieve the contents of the specified `url`, +/// `method`, `parameters`, `encoding`, `headers` and save them to the `destination`. +/// +/// If `destination` is not specified, the contents will remain in the temporary location determined by the +/// underlying URL session. +/// +/// - parameter url: The URL. +/// - parameter method: The HTTP method. `.get` by default. +/// - parameter parameters: The parameters. `nil` by default. +/// - parameter encoding: The parameter encoding. `URLEncoding.default` by default. +/// - parameter headers: The HTTP headers. `nil` by default. +/// - parameter destination: The closure used to determine the destination of the downloaded file. `nil` by default. +/// +/// - returns: The created `DownloadRequest`. +@discardableResult +public func download( + _ url: URLConvertible, + method: HTTPMethod = .get, + parameters: Parameters? = nil, + encoding: ParameterEncoding = URLEncoding.default, + headers: HTTPHeaders? = nil, + to destination: DownloadRequest.DownloadFileDestination? = nil) + -> DownloadRequest +{ + return SessionManager.default.download( + url, + method: method, + parameters: parameters, + encoding: encoding, + headers: headers, + to: destination + ) +} + +/// Creates a `DownloadRequest` using the default `SessionManager` to retrieve the contents of a URL based on the +/// specified `urlRequest` and save them to the `destination`. +/// +/// If `destination` is not specified, the contents will remain in the temporary location determined by the +/// underlying URL session. +/// +/// - parameter urlRequest: The URL request. +/// - parameter destination: The closure used to determine the destination of the downloaded file. `nil` by default. +/// +/// - returns: The created `DownloadRequest`. +@discardableResult +public func download( + _ urlRequest: URLRequestConvertible, + to destination: DownloadRequest.DownloadFileDestination? = nil) + -> DownloadRequest +{ + return SessionManager.default.download(urlRequest, to: destination) +} + +// MARK: Resume Data + +/// Creates a `DownloadRequest` using the default `SessionManager` from the `resumeData` produced from a +/// previous request cancellation to retrieve the contents of the original request and save them to the `destination`. +/// +/// If `destination` is not specified, the contents will remain in the temporary location determined by the +/// underlying URL session. +/// +/// On the latest release of all the Apple platforms (iOS 10, macOS 10.12, tvOS 10, watchOS 3), `resumeData` is broken +/// on background URL session configurations. There's an underlying bug in the `resumeData` generation logic where the +/// data is written incorrectly and will always fail to resume the download. For more information about the bug and +/// possible workarounds, please refer to the following Stack Overflow post: +/// +/// - http://stackoverflow.com/a/39347461/1342462 +/// +/// - parameter resumeData: The resume data. This is an opaque data blob produced by `URLSessionDownloadTask` +/// when a task is cancelled. See `URLSession -downloadTask(withResumeData:)` for additional +/// information. +/// - parameter destination: The closure used to determine the destination of the downloaded file. `nil` by default. +/// +/// - returns: The created `DownloadRequest`. +@discardableResult +public func download( + resumingWith resumeData: Data, + to destination: DownloadRequest.DownloadFileDestination? = nil) + -> DownloadRequest +{ + return SessionManager.default.download(resumingWith: resumeData, to: destination) +} + +// MARK: - Upload Request + +// MARK: File + +/// Creates an `UploadRequest` using the default `SessionManager` from the specified `url`, `method` and `headers` +/// for uploading the `file`. +/// +/// - parameter file: The file to upload. +/// - parameter url: The URL. +/// - parameter method: The HTTP method. `.post` by default. +/// - parameter headers: The HTTP headers. `nil` by default. +/// +/// - returns: The created `UploadRequest`. +@discardableResult +public func upload( + _ fileURL: URL, + to url: URLConvertible, + method: HTTPMethod = .post, + headers: HTTPHeaders? = nil) + -> UploadRequest +{ + return SessionManager.default.upload(fileURL, to: url, method: method, headers: headers) +} + +/// Creates a `UploadRequest` using the default `SessionManager` from the specified `urlRequest` for +/// uploading the `file`. +/// +/// - parameter file: The file to upload. +/// - parameter urlRequest: The URL request. +/// +/// - returns: The created `UploadRequest`. +@discardableResult +public func upload(_ fileURL: URL, with urlRequest: URLRequestConvertible) -> UploadRequest { + return SessionManager.default.upload(fileURL, with: urlRequest) +} + +// MARK: Data + +/// Creates an `UploadRequest` using the default `SessionManager` from the specified `url`, `method` and `headers` +/// for uploading the `data`. +/// +/// - parameter data: The data to upload. +/// - parameter url: The URL. +/// - parameter method: The HTTP method. `.post` by default. +/// - parameter headers: The HTTP headers. `nil` by default. +/// +/// - returns: The created `UploadRequest`. +@discardableResult +public func upload( + _ data: Data, + to url: URLConvertible, + method: HTTPMethod = .post, + headers: HTTPHeaders? = nil) + -> UploadRequest +{ + return SessionManager.default.upload(data, to: url, method: method, headers: headers) +} + +/// Creates an `UploadRequest` using the default `SessionManager` from the specified `urlRequest` for +/// uploading the `data`. +/// +/// - parameter data: The data to upload. +/// - parameter urlRequest: The URL request. +/// +/// - returns: The created `UploadRequest`. +@discardableResult +public func upload(_ data: Data, with urlRequest: URLRequestConvertible) -> UploadRequest { + return SessionManager.default.upload(data, with: urlRequest) +} + +// MARK: InputStream + +/// Creates an `UploadRequest` using the default `SessionManager` from the specified `url`, `method` and `headers` +/// for uploading the `stream`. +/// +/// - parameter stream: The stream to upload. +/// - parameter url: The URL. +/// - parameter method: The HTTP method. `.post` by default. +/// - parameter headers: The HTTP headers. `nil` by default. +/// +/// - returns: The created `UploadRequest`. +@discardableResult +public func upload( + _ stream: InputStream, + to url: URLConvertible, + method: HTTPMethod = .post, + headers: HTTPHeaders? = nil) + -> UploadRequest +{ + return SessionManager.default.upload(stream, to: url, method: method, headers: headers) +} + +/// Creates an `UploadRequest` using the default `SessionManager` from the specified `urlRequest` for +/// uploading the `stream`. +/// +/// - parameter urlRequest: The URL request. +/// - parameter stream: The stream to upload. +/// +/// - returns: The created `UploadRequest`. +@discardableResult +public func upload(_ stream: InputStream, with urlRequest: URLRequestConvertible) -> UploadRequest { + return SessionManager.default.upload(stream, with: urlRequest) +} + +// MARK: MultipartFormData + +/// Encodes `multipartFormData` using `encodingMemoryThreshold` with the default `SessionManager` and calls +/// `encodingCompletion` with new `UploadRequest` using the `url`, `method` and `headers`. +/// +/// It is important to understand the memory implications of uploading `MultipartFormData`. If the cummulative +/// payload is small, encoding the data in-memory and directly uploading to a server is the by far the most +/// efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to +/// be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory +/// footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be +/// used for larger payloads such as video content. +/// +/// The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory +/// or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`, +/// encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk +/// during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding +/// technique was used. +/// +/// - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. +/// - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. +/// `multipartFormDataEncodingMemoryThreshold` by default. +/// - parameter url: The URL. +/// - parameter method: The HTTP method. `.post` by default. +/// - parameter headers: The HTTP headers. `nil` by default. +/// - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. +public func upload( + multipartFormData: @escaping (MultipartFormData) -> Void, + usingThreshold encodingMemoryThreshold: UInt64 = SessionManager.multipartFormDataEncodingMemoryThreshold, + to url: URLConvertible, + method: HTTPMethod = .post, + headers: HTTPHeaders? = nil, + encodingCompletion: ((SessionManager.MultipartFormDataEncodingResult) -> Void)?) +{ + return SessionManager.default.upload( + multipartFormData: multipartFormData, + usingThreshold: encodingMemoryThreshold, + to: url, + method: method, + headers: headers, + encodingCompletion: encodingCompletion + ) +} + +/// Encodes `multipartFormData` using `encodingMemoryThreshold` and the default `SessionManager` and +/// calls `encodingCompletion` with new `UploadRequest` using the `urlRequest`. +/// +/// It is important to understand the memory implications of uploading `MultipartFormData`. If the cummulative +/// payload is small, encoding the data in-memory and directly uploading to a server is the by far the most +/// efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to +/// be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory +/// footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be +/// used for larger payloads such as video content. +/// +/// The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory +/// or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`, +/// encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk +/// during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding +/// technique was used. +/// +/// - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. +/// - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. +/// `multipartFormDataEncodingMemoryThreshold` by default. +/// - parameter urlRequest: The URL request. +/// - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. +public func upload( + multipartFormData: @escaping (MultipartFormData) -> Void, + usingThreshold encodingMemoryThreshold: UInt64 = SessionManager.multipartFormDataEncodingMemoryThreshold, + with urlRequest: URLRequestConvertible, + encodingCompletion: ((SessionManager.MultipartFormDataEncodingResult) -> Void)?) +{ + return SessionManager.default.upload( + multipartFormData: multipartFormData, + usingThreshold: encodingMemoryThreshold, + with: urlRequest, + encodingCompletion: encodingCompletion + ) +} + +#if !os(watchOS) + +// MARK: - Stream Request + +// MARK: Hostname and Port + +/// Creates a `StreamRequest` using the default `SessionManager` for bidirectional streaming with the `hostname` +/// and `port`. +/// +/// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. +/// +/// - parameter hostName: The hostname of the server to connect to. +/// - parameter port: The port of the server to connect to. +/// +/// - returns: The created `StreamRequest`. +@discardableResult +@available(iOS 9.0, macOS 10.11, tvOS 9.0, *) +public func stream(withHostName hostName: String, port: Int) -> StreamRequest { + return SessionManager.default.stream(withHostName: hostName, port: port) +} + +// MARK: NetService + +/// Creates a `StreamRequest` using the default `SessionManager` for bidirectional streaming with the `netService`. +/// +/// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. +/// +/// - parameter netService: The net service used to identify the endpoint. +/// +/// - returns: The created `StreamRequest`. +@discardableResult +@available(iOS 9.0, macOS 10.11, tvOS 9.0, *) +public func stream(with netService: NetService) -> StreamRequest { + return SessionManager.default.stream(with: netService) +} + +#endif diff --git a/tmp/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift b/tmp/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift new file mode 100644 index 0000000..dea3ebc --- /dev/null +++ b/tmp/Pods/Alamofire/Source/DispatchQueue+Alamofire.swift @@ -0,0 +1,37 @@ +// +// DispatchQueue+Alamofire.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Dispatch +import Foundation + +extension DispatchQueue { + static var userInteractive: DispatchQueue { return DispatchQueue.global(qos: .userInteractive) } + static var userInitiated: DispatchQueue { return DispatchQueue.global(qos: .userInitiated) } + static var utility: DispatchQueue { return DispatchQueue.global(qos: .utility) } + static var background: DispatchQueue { return DispatchQueue.global(qos: .background) } + + func after(_ delay: TimeInterval, execute closure: @escaping () -> Void) { + asyncAfter(deadline: .now() + delay, execute: closure) + } +} diff --git a/tmp/Pods/Alamofire/Source/MultipartFormData.swift b/tmp/Pods/Alamofire/Source/MultipartFormData.swift new file mode 100644 index 0000000..057e68b --- /dev/null +++ b/tmp/Pods/Alamofire/Source/MultipartFormData.swift @@ -0,0 +1,580 @@ +// +// MultipartFormData.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +#if os(iOS) || os(watchOS) || os(tvOS) +import MobileCoreServices +#elseif os(macOS) +import CoreServices +#endif + +/// Constructs `multipart/form-data` for uploads within an HTTP or HTTPS body. There are currently two ways to encode +/// multipart form data. The first way is to encode the data directly in memory. This is very efficient, but can lead +/// to memory issues if the dataset is too large. The second way is designed for larger datasets and will write all the +/// data to a single file on disk with all the proper boundary segmentation. The second approach MUST be used for +/// larger datasets such as video content, otherwise your app may run out of memory when trying to encode the dataset. +/// +/// For more information on `multipart/form-data` in general, please refer to the RFC-2388 and RFC-2045 specs as well +/// and the w3 form documentation. +/// +/// - https://www.ietf.org/rfc/rfc2388.txt +/// - https://www.ietf.org/rfc/rfc2045.txt +/// - https://www.w3.org/TR/html401/interact/forms.html#h-17.13 +open class MultipartFormData { + + // MARK: - Helper Types + + struct EncodingCharacters { + static let crlf = "\r\n" + } + + struct BoundaryGenerator { + enum BoundaryType { + case initial, encapsulated, final + } + + static func randomBoundary() -> String { + return String(format: "alamofire.boundary.%08x%08x", arc4random(), arc4random()) + } + + static func boundaryData(forBoundaryType boundaryType: BoundaryType, boundary: String) -> Data { + let boundaryText: String + + switch boundaryType { + case .initial: + boundaryText = "--\(boundary)\(EncodingCharacters.crlf)" + case .encapsulated: + boundaryText = "\(EncodingCharacters.crlf)--\(boundary)\(EncodingCharacters.crlf)" + case .final: + boundaryText = "\(EncodingCharacters.crlf)--\(boundary)--\(EncodingCharacters.crlf)" + } + + return boundaryText.data(using: String.Encoding.utf8, allowLossyConversion: false)! + } + } + + class BodyPart { + let headers: HTTPHeaders + let bodyStream: InputStream + let bodyContentLength: UInt64 + var hasInitialBoundary = false + var hasFinalBoundary = false + + init(headers: HTTPHeaders, bodyStream: InputStream, bodyContentLength: UInt64) { + self.headers = headers + self.bodyStream = bodyStream + self.bodyContentLength = bodyContentLength + } + } + + // MARK: - Properties + + /// The `Content-Type` header value containing the boundary used to generate the `multipart/form-data`. + open lazy var contentType: String = "multipart/form-data; boundary=\(self.boundary)" + + /// The content length of all body parts used to generate the `multipart/form-data` not including the boundaries. + public var contentLength: UInt64 { return bodyParts.reduce(0) { $0 + $1.bodyContentLength } } + + /// The boundary used to separate the body parts in the encoded form data. + public let boundary: String + + private var bodyParts: [BodyPart] + private var bodyPartError: AFError? + private let streamBufferSize: Int + + // MARK: - Lifecycle + + /// Creates a multipart form data object. + /// + /// - returns: The multipart form data object. + public init() { + self.boundary = BoundaryGenerator.randomBoundary() + self.bodyParts = [] + + /// + /// The optimal read/write buffer size in bytes for input and output streams is 1024 (1KB). For more + /// information, please refer to the following article: + /// - https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Streams/Articles/ReadingInputStreams.html + /// + + self.streamBufferSize = 1024 + } + + // MARK: - Body Parts + + /// Creates a body part from the data and appends it to the multipart form data object. + /// + /// The body part data will be encoded using the following format: + /// + /// - `Content-Disposition: form-data; name=#{name}` (HTTP Header) + /// - Encoded data + /// - Multipart form boundary + /// + /// - parameter data: The data to encode into the multipart form data. + /// - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header. + public func append(_ data: Data, withName name: String) { + let headers = contentHeaders(withName: name) + let stream = InputStream(data: data) + let length = UInt64(data.count) + + append(stream, withLength: length, headers: headers) + } + + /// Creates a body part from the data and appends it to the multipart form data object. + /// + /// The body part data will be encoded using the following format: + /// + /// - `Content-Disposition: form-data; name=#{name}` (HTTP Header) + /// - `Content-Type: #{generated mimeType}` (HTTP Header) + /// - Encoded data + /// - Multipart form boundary + /// + /// - parameter data: The data to encode into the multipart form data. + /// - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header. + /// - parameter mimeType: The MIME type to associate with the data content type in the `Content-Type` HTTP header. + public func append(_ data: Data, withName name: String, mimeType: String) { + let headers = contentHeaders(withName: name, mimeType: mimeType) + let stream = InputStream(data: data) + let length = UInt64(data.count) + + append(stream, withLength: length, headers: headers) + } + + /// Creates a body part from the data and appends it to the multipart form data object. + /// + /// The body part data will be encoded using the following format: + /// + /// - `Content-Disposition: form-data; name=#{name}; filename=#{filename}` (HTTP Header) + /// - `Content-Type: #{mimeType}` (HTTP Header) + /// - Encoded file data + /// - Multipart form boundary + /// + /// - parameter data: The data to encode into the multipart form data. + /// - parameter name: The name to associate with the data in the `Content-Disposition` HTTP header. + /// - parameter fileName: The filename to associate with the data in the `Content-Disposition` HTTP header. + /// - parameter mimeType: The MIME type to associate with the data in the `Content-Type` HTTP header. + public func append(_ data: Data, withName name: String, fileName: String, mimeType: String) { + let headers = contentHeaders(withName: name, fileName: fileName, mimeType: mimeType) + let stream = InputStream(data: data) + let length = UInt64(data.count) + + append(stream, withLength: length, headers: headers) + } + + /// Creates a body part from the file and appends it to the multipart form data object. + /// + /// The body part data will be encoded using the following format: + /// + /// - `Content-Disposition: form-data; name=#{name}; filename=#{generated filename}` (HTTP Header) + /// - `Content-Type: #{generated mimeType}` (HTTP Header) + /// - Encoded file data + /// - Multipart form boundary + /// + /// The filename in the `Content-Disposition` HTTP header is generated from the last path component of the + /// `fileURL`. The `Content-Type` HTTP header MIME type is generated by mapping the `fileURL` extension to the + /// system associated MIME type. + /// + /// - parameter fileURL: The URL of the file whose content will be encoded into the multipart form data. + /// - parameter name: The name to associate with the file content in the `Content-Disposition` HTTP header. + public func append(_ fileURL: URL, withName name: String) { + let fileName = fileURL.lastPathComponent + let pathExtension = fileURL.pathExtension + + if !fileName.isEmpty && !pathExtension.isEmpty { + let mime = mimeType(forPathExtension: pathExtension) + append(fileURL, withName: name, fileName: fileName, mimeType: mime) + } else { + setBodyPartError(withReason: .bodyPartFilenameInvalid(in: fileURL)) + } + } + + /// Creates a body part from the file and appends it to the multipart form data object. + /// + /// The body part data will be encoded using the following format: + /// + /// - Content-Disposition: form-data; name=#{name}; filename=#{filename} (HTTP Header) + /// - Content-Type: #{mimeType} (HTTP Header) + /// - Encoded file data + /// - Multipart form boundary + /// + /// - parameter fileURL: The URL of the file whose content will be encoded into the multipart form data. + /// - parameter name: The name to associate with the file content in the `Content-Disposition` HTTP header. + /// - parameter fileName: The filename to associate with the file content in the `Content-Disposition` HTTP header. + /// - parameter mimeType: The MIME type to associate with the file content in the `Content-Type` HTTP header. + public func append(_ fileURL: URL, withName name: String, fileName: String, mimeType: String) { + let headers = contentHeaders(withName: name, fileName: fileName, mimeType: mimeType) + + //============================================================ + // Check 1 - is file URL? + //============================================================ + + guard fileURL.isFileURL else { + setBodyPartError(withReason: .bodyPartURLInvalid(url: fileURL)) + return + } + + //============================================================ + // Check 2 - is file URL reachable? + //============================================================ + + do { + let isReachable = try fileURL.checkPromisedItemIsReachable() + guard isReachable else { + setBodyPartError(withReason: .bodyPartFileNotReachable(at: fileURL)) + return + } + } catch { + setBodyPartError(withReason: .bodyPartFileNotReachableWithError(atURL: fileURL, error: error)) + return + } + + //============================================================ + // Check 3 - is file URL a directory? + //============================================================ + + var isDirectory: ObjCBool = false + let path = fileURL.path + + guard FileManager.default.fileExists(atPath: path, isDirectory: &isDirectory) && !isDirectory.boolValue else { + setBodyPartError(withReason: .bodyPartFileIsDirectory(at: fileURL)) + return + } + + //============================================================ + // Check 4 - can the file size be extracted? + //============================================================ + + let bodyContentLength: UInt64 + + do { + guard let fileSize = try FileManager.default.attributesOfItem(atPath: path)[.size] as? NSNumber else { + setBodyPartError(withReason: .bodyPartFileSizeNotAvailable(at: fileURL)) + return + } + + bodyContentLength = fileSize.uint64Value + } + catch { + setBodyPartError(withReason: .bodyPartFileSizeQueryFailedWithError(forURL: fileURL, error: error)) + return + } + + //============================================================ + // Check 5 - can a stream be created from file URL? + //============================================================ + + guard let stream = InputStream(url: fileURL) else { + setBodyPartError(withReason: .bodyPartInputStreamCreationFailed(for: fileURL)) + return + } + + append(stream, withLength: bodyContentLength, headers: headers) + } + + /// Creates a body part from the stream and appends it to the multipart form data object. + /// + /// The body part data will be encoded using the following format: + /// + /// - `Content-Disposition: form-data; name=#{name}; filename=#{filename}` (HTTP Header) + /// - `Content-Type: #{mimeType}` (HTTP Header) + /// - Encoded stream data + /// - Multipart form boundary + /// + /// - parameter stream: The input stream to encode in the multipart form data. + /// - parameter length: The content length of the stream. + /// - parameter name: The name to associate with the stream content in the `Content-Disposition` HTTP header. + /// - parameter fileName: The filename to associate with the stream content in the `Content-Disposition` HTTP header. + /// - parameter mimeType: The MIME type to associate with the stream content in the `Content-Type` HTTP header. + public func append( + _ stream: InputStream, + withLength length: UInt64, + name: String, + fileName: String, + mimeType: String) + { + let headers = contentHeaders(withName: name, fileName: fileName, mimeType: mimeType) + append(stream, withLength: length, headers: headers) + } + + /// Creates a body part with the headers, stream and length and appends it to the multipart form data object. + /// + /// The body part data will be encoded using the following format: + /// + /// - HTTP headers + /// - Encoded stream data + /// - Multipart form boundary + /// + /// - parameter stream: The input stream to encode in the multipart form data. + /// - parameter length: The content length of the stream. + /// - parameter headers: The HTTP headers for the body part. + public func append(_ stream: InputStream, withLength length: UInt64, headers: HTTPHeaders) { + let bodyPart = BodyPart(headers: headers, bodyStream: stream, bodyContentLength: length) + bodyParts.append(bodyPart) + } + + // MARK: - Data Encoding + + /// Encodes all the appended body parts into a single `Data` value. + /// + /// It is important to note that this method will load all the appended body parts into memory all at the same + /// time. This method should only be used when the encoded data will have a small memory footprint. For large data + /// cases, please use the `writeEncodedDataToDisk(fileURL:completionHandler:)` method. + /// + /// - throws: An `AFError` if encoding encounters an error. + /// + /// - returns: The encoded `Data` if encoding is successful. + public func encode() throws -> Data { + if let bodyPartError = bodyPartError { + throw bodyPartError + } + + var encoded = Data() + + bodyParts.first?.hasInitialBoundary = true + bodyParts.last?.hasFinalBoundary = true + + for bodyPart in bodyParts { + let encodedData = try encode(bodyPart) + encoded.append(encodedData) + } + + return encoded + } + + /// Writes the appended body parts into the given file URL. + /// + /// This process is facilitated by reading and writing with input and output streams, respectively. Thus, + /// this approach is very memory efficient and should be used for large body part data. + /// + /// - parameter fileURL: The file URL to write the multipart form data into. + /// + /// - throws: An `AFError` if encoding encounters an error. + public func writeEncodedData(to fileURL: URL) throws { + if let bodyPartError = bodyPartError { + throw bodyPartError + } + + if FileManager.default.fileExists(atPath: fileURL.path) { + throw AFError.multipartEncodingFailed(reason: .outputStreamFileAlreadyExists(at: fileURL)) + } else if !fileURL.isFileURL { + throw AFError.multipartEncodingFailed(reason: .outputStreamURLInvalid(url: fileURL)) + } + + guard let outputStream = OutputStream(url: fileURL, append: false) else { + throw AFError.multipartEncodingFailed(reason: .outputStreamCreationFailed(for: fileURL)) + } + + outputStream.open() + defer { outputStream.close() } + + self.bodyParts.first?.hasInitialBoundary = true + self.bodyParts.last?.hasFinalBoundary = true + + for bodyPart in self.bodyParts { + try write(bodyPart, to: outputStream) + } + } + + // MARK: - Private - Body Part Encoding + + private func encode(_ bodyPart: BodyPart) throws -> Data { + var encoded = Data() + + let initialData = bodyPart.hasInitialBoundary ? initialBoundaryData() : encapsulatedBoundaryData() + encoded.append(initialData) + + let headerData = encodeHeaders(for: bodyPart) + encoded.append(headerData) + + let bodyStreamData = try encodeBodyStream(for: bodyPart) + encoded.append(bodyStreamData) + + if bodyPart.hasFinalBoundary { + encoded.append(finalBoundaryData()) + } + + return encoded + } + + private func encodeHeaders(for bodyPart: BodyPart) -> Data { + var headerText = "" + + for (key, value) in bodyPart.headers { + headerText += "\(key): \(value)\(EncodingCharacters.crlf)" + } + headerText += EncodingCharacters.crlf + + return headerText.data(using: String.Encoding.utf8, allowLossyConversion: false)! + } + + private func encodeBodyStream(for bodyPart: BodyPart) throws -> Data { + let inputStream = bodyPart.bodyStream + inputStream.open() + defer { inputStream.close() } + + var encoded = Data() + + while inputStream.hasBytesAvailable { + var buffer = [UInt8](repeating: 0, count: streamBufferSize) + let bytesRead = inputStream.read(&buffer, maxLength: streamBufferSize) + + if let error = inputStream.streamError { + throw AFError.multipartEncodingFailed(reason: .inputStreamReadFailed(error: error)) + } + + if bytesRead > 0 { + encoded.append(buffer, count: bytesRead) + } else { + break + } + } + + return encoded + } + + // MARK: - Private - Writing Body Part to Output Stream + + private func write(_ bodyPart: BodyPart, to outputStream: OutputStream) throws { + try writeInitialBoundaryData(for: bodyPart, to: outputStream) + try writeHeaderData(for: bodyPart, to: outputStream) + try writeBodyStream(for: bodyPart, to: outputStream) + try writeFinalBoundaryData(for: bodyPart, to: outputStream) + } + + private func writeInitialBoundaryData(for bodyPart: BodyPart, to outputStream: OutputStream) throws { + let initialData = bodyPart.hasInitialBoundary ? initialBoundaryData() : encapsulatedBoundaryData() + return try write(initialData, to: outputStream) + } + + private func writeHeaderData(for bodyPart: BodyPart, to outputStream: OutputStream) throws { + let headerData = encodeHeaders(for: bodyPart) + return try write(headerData, to: outputStream) + } + + private func writeBodyStream(for bodyPart: BodyPart, to outputStream: OutputStream) throws { + let inputStream = bodyPart.bodyStream + + inputStream.open() + defer { inputStream.close() } + + while inputStream.hasBytesAvailable { + var buffer = [UInt8](repeating: 0, count: streamBufferSize) + let bytesRead = inputStream.read(&buffer, maxLength: streamBufferSize) + + if let streamError = inputStream.streamError { + throw AFError.multipartEncodingFailed(reason: .inputStreamReadFailed(error: streamError)) + } + + if bytesRead > 0 { + if buffer.count != bytesRead { + buffer = Array(buffer[0.. 0, outputStream.hasSpaceAvailable { + let bytesWritten = outputStream.write(buffer, maxLength: bytesToWrite) + + if let error = outputStream.streamError { + throw AFError.multipartEncodingFailed(reason: .outputStreamWriteFailed(error: error)) + } + + bytesToWrite -= bytesWritten + + if bytesToWrite > 0 { + buffer = Array(buffer[bytesWritten.. String { + if + let id = UTTypeCreatePreferredIdentifierForTag(kUTTagClassFilenameExtension, pathExtension as CFString, nil)?.takeRetainedValue(), + let contentType = UTTypeCopyPreferredTagWithClass(id, kUTTagClassMIMEType)?.takeRetainedValue() + { + return contentType as String + } + + return "application/octet-stream" + } + + // MARK: - Private - Content Headers + + private func contentHeaders(withName name: String, fileName: String? = nil, mimeType: String? = nil) -> [String: String] { + var disposition = "form-data; name=\"\(name)\"" + if let fileName = fileName { disposition += "; filename=\"\(fileName)\"" } + + var headers = ["Content-Disposition": disposition] + if let mimeType = mimeType { headers["Content-Type"] = mimeType } + + return headers + } + + // MARK: - Private - Boundary Encoding + + private func initialBoundaryData() -> Data { + return BoundaryGenerator.boundaryData(forBoundaryType: .initial, boundary: boundary) + } + + private func encapsulatedBoundaryData() -> Data { + return BoundaryGenerator.boundaryData(forBoundaryType: .encapsulated, boundary: boundary) + } + + private func finalBoundaryData() -> Data { + return BoundaryGenerator.boundaryData(forBoundaryType: .final, boundary: boundary) + } + + // MARK: - Private - Errors + + private func setBodyPartError(withReason reason: AFError.MultipartEncodingFailureReason) { + guard bodyPartError == nil else { return } + bodyPartError = AFError.multipartEncodingFailed(reason: reason) + } +} diff --git a/tmp/Pods/Alamofire/Source/NetworkReachabilityManager.swift b/tmp/Pods/Alamofire/Source/NetworkReachabilityManager.swift new file mode 100644 index 0000000..3ff2e7f --- /dev/null +++ b/tmp/Pods/Alamofire/Source/NetworkReachabilityManager.swift @@ -0,0 +1,233 @@ +// +// NetworkReachabilityManager.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +#if !os(watchOS) + +import Foundation +import SystemConfiguration + +/// The `NetworkReachabilityManager` class listens for reachability changes of hosts and addresses for both WWAN and +/// WiFi network interfaces. +/// +/// Reachability can be used to determine background information about why a network operation failed, or to retry +/// network requests when a connection is established. It should not be used to prevent a user from initiating a network +/// request, as it's possible that an initial request may be required to establish reachability. +open class NetworkReachabilityManager { + /// Defines the various states of network reachability. + /// + /// - unknown: It is unknown whether the network is reachable. + /// - notReachable: The network is not reachable. + /// - reachable: The network is reachable. + public enum NetworkReachabilityStatus { + case unknown + case notReachable + case reachable(ConnectionType) + } + + /// Defines the various connection types detected by reachability flags. + /// + /// - ethernetOrWiFi: The connection type is either over Ethernet or WiFi. + /// - wwan: The connection type is a WWAN connection. + public enum ConnectionType { + case ethernetOrWiFi + case wwan + } + + /// A closure executed when the network reachability status changes. The closure takes a single argument: the + /// network reachability status. + public typealias Listener = (NetworkReachabilityStatus) -> Void + + // MARK: - Properties + + /// Whether the network is currently reachable. + open var isReachable: Bool { return isReachableOnWWAN || isReachableOnEthernetOrWiFi } + + /// Whether the network is currently reachable over the WWAN interface. + open var isReachableOnWWAN: Bool { return networkReachabilityStatus == .reachable(.wwan) } + + /// Whether the network is currently reachable over Ethernet or WiFi interface. + open var isReachableOnEthernetOrWiFi: Bool { return networkReachabilityStatus == .reachable(.ethernetOrWiFi) } + + /// The current network reachability status. + open var networkReachabilityStatus: NetworkReachabilityStatus { + guard let flags = self.flags else { return .unknown } + return networkReachabilityStatusForFlags(flags) + } + + /// The dispatch queue to execute the `listener` closure on. + open var listenerQueue: DispatchQueue = DispatchQueue.main + + /// A closure executed when the network reachability status changes. + open var listener: Listener? + + open var flags: SCNetworkReachabilityFlags? { + var flags = SCNetworkReachabilityFlags() + + if SCNetworkReachabilityGetFlags(reachability, &flags) { + return flags + } + + return nil + } + + private let reachability: SCNetworkReachability + open var previousFlags: SCNetworkReachabilityFlags + + // MARK: - Initialization + + /// Creates a `NetworkReachabilityManager` instance with the specified host. + /// + /// - parameter host: The host used to evaluate network reachability. + /// + /// - returns: The new `NetworkReachabilityManager` instance. + public convenience init?(host: String) { + guard let reachability = SCNetworkReachabilityCreateWithName(nil, host) else { return nil } + self.init(reachability: reachability) + } + + /// Creates a `NetworkReachabilityManager` instance that monitors the address 0.0.0.0. + /// + /// Reachability treats the 0.0.0.0 address as a special token that causes it to monitor the general routing + /// status of the device, both IPv4 and IPv6. + /// + /// - returns: The new `NetworkReachabilityManager` instance. + public convenience init?() { + var address = sockaddr_in() + address.sin_len = UInt8(MemoryLayout.size) + address.sin_family = sa_family_t(AF_INET) + + guard let reachability = withUnsafePointer(to: &address, { pointer in + return pointer.withMemoryRebound(to: sockaddr.self, capacity: MemoryLayout.size) { + return SCNetworkReachabilityCreateWithAddress(nil, $0) + } + }) else { return nil } + + self.init(reachability: reachability) + } + + private init(reachability: SCNetworkReachability) { + self.reachability = reachability + self.previousFlags = SCNetworkReachabilityFlags() + } + + deinit { + stopListening() + } + + // MARK: - Listening + + /// Starts listening for changes in network reachability status. + /// + /// - returns: `true` if listening was started successfully, `false` otherwise. + @discardableResult + open func startListening() -> Bool { + var context = SCNetworkReachabilityContext(version: 0, info: nil, retain: nil, release: nil, copyDescription: nil) + context.info = Unmanaged.passUnretained(self).toOpaque() + + let callbackEnabled = SCNetworkReachabilitySetCallback( + reachability, + { (_, flags, info) in + let reachability = Unmanaged.fromOpaque(info!).takeUnretainedValue() + reachability.notifyListener(flags) + }, + &context + ) + + let queueEnabled = SCNetworkReachabilitySetDispatchQueue(reachability, listenerQueue) + + listenerQueue.async { + self.previousFlags = SCNetworkReachabilityFlags() + self.notifyListener(self.flags ?? SCNetworkReachabilityFlags()) + } + + return callbackEnabled && queueEnabled + } + + /// Stops listening for changes in network reachability status. + open func stopListening() { + SCNetworkReachabilitySetCallback(reachability, nil, nil) + SCNetworkReachabilitySetDispatchQueue(reachability, nil) + } + + // MARK: - Internal - Listener Notification + + func notifyListener(_ flags: SCNetworkReachabilityFlags) { + guard previousFlags != flags else { return } + previousFlags = flags + + listener?(networkReachabilityStatusForFlags(flags)) + } + + // MARK: - Internal - Network Reachability Status + + func networkReachabilityStatusForFlags(_ flags: SCNetworkReachabilityFlags) -> NetworkReachabilityStatus { + guard isNetworkReachable(with: flags) else { return .notReachable } + + var networkStatus: NetworkReachabilityStatus = .reachable(.ethernetOrWiFi) + + #if os(iOS) + if flags.contains(.isWWAN) { networkStatus = .reachable(.wwan) } + #endif + + return networkStatus + } + + func isNetworkReachable(with flags: SCNetworkReachabilityFlags) -> Bool { + let isReachable = flags.contains(.reachable) + let needsConnection = flags.contains(.connectionRequired) + let canConnectAutomatically = flags.contains(.connectionOnDemand) || flags.contains(.connectionOnTraffic) + let canConnectWithoutUserInteraction = canConnectAutomatically && !flags.contains(.interventionRequired) + + return isReachable && (!needsConnection || canConnectWithoutUserInteraction) + } +} + +// MARK: - + +extension NetworkReachabilityManager.NetworkReachabilityStatus: Equatable {} + +/// Returns whether the two network reachability status values are equal. +/// +/// - parameter lhs: The left-hand side value to compare. +/// - parameter rhs: The right-hand side value to compare. +/// +/// - returns: `true` if the two values are equal, `false` otherwise. +public func ==( + lhs: NetworkReachabilityManager.NetworkReachabilityStatus, + rhs: NetworkReachabilityManager.NetworkReachabilityStatus) + -> Bool +{ + switch (lhs, rhs) { + case (.unknown, .unknown): + return true + case (.notReachable, .notReachable): + return true + case let (.reachable(lhsConnectionType), .reachable(rhsConnectionType)): + return lhsConnectionType == rhsConnectionType + default: + return false + } +} + +#endif diff --git a/tmp/Pods/Alamofire/Source/Notifications.swift b/tmp/Pods/Alamofire/Source/Notifications.swift new file mode 100644 index 0000000..e1b6120 --- /dev/null +++ b/tmp/Pods/Alamofire/Source/Notifications.swift @@ -0,0 +1,55 @@ +// +// Notifications.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +extension Notification.Name { + /// Used as a namespace for all `URLSessionTask` related notifications. + public struct Task { + /// Posted when a `URLSessionTask` is resumed. The notification `object` contains the resumed `URLSessionTask`. + public static let DidResume = Notification.Name(rawValue: "org.alamofire.notification.name.task.didResume") + + /// Posted when a `URLSessionTask` is suspended. The notification `object` contains the suspended `URLSessionTask`. + public static let DidSuspend = Notification.Name(rawValue: "org.alamofire.notification.name.task.didSuspend") + + /// Posted when a `URLSessionTask` is cancelled. The notification `object` contains the cancelled `URLSessionTask`. + public static let DidCancel = Notification.Name(rawValue: "org.alamofire.notification.name.task.didCancel") + + /// Posted when a `URLSessionTask` is completed. The notification `object` contains the completed `URLSessionTask`. + public static let DidComplete = Notification.Name(rawValue: "org.alamofire.notification.name.task.didComplete") + } +} + +// MARK: - + +extension Notification { + /// Used as a namespace for all `Notification` user info dictionary keys. + public struct Key { + /// User info dictionary key representing the `URLSessionTask` associated with the notification. + public static let Task = "org.alamofire.notification.key.task" + + /// User info dictionary key representing the responseData associated with the notification. + public static let ResponseData = "org.alamofire.notification.key.responseData" + } +} diff --git a/tmp/Pods/Alamofire/Source/ParameterEncoding.swift b/tmp/Pods/Alamofire/Source/ParameterEncoding.swift new file mode 100644 index 0000000..4a54f2d --- /dev/null +++ b/tmp/Pods/Alamofire/Source/ParameterEncoding.swift @@ -0,0 +1,483 @@ +// +// ParameterEncoding.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// HTTP method definitions. +/// +/// See https://tools.ietf.org/html/rfc7231#section-4.3 +public enum HTTPMethod: String { + case options = "OPTIONS" + case get = "GET" + case head = "HEAD" + case post = "POST" + case put = "PUT" + case patch = "PATCH" + case delete = "DELETE" + case trace = "TRACE" + case connect = "CONNECT" +} + +// MARK: - + +/// A dictionary of parameters to apply to a `URLRequest`. +public typealias Parameters = [String: Any] + +/// A type used to define how a set of parameters are applied to a `URLRequest`. +public protocol ParameterEncoding { + /// Creates a URL request by encoding parameters and applying them onto an existing request. + /// + /// - parameter urlRequest: The request to have parameters applied. + /// - parameter parameters: The parameters to apply. + /// + /// - throws: An `AFError.parameterEncodingFailed` error if encoding fails. + /// + /// - returns: The encoded request. + func encode(_ urlRequest: URLRequestConvertible, with parameters: Parameters?) throws -> URLRequest +} + +// MARK: - + +/// Creates a url-encoded query string to be set as or appended to any existing URL query string or set as the HTTP +/// body of the URL request. Whether the query string is set or appended to any existing URL query string or set as +/// the HTTP body depends on the destination of the encoding. +/// +/// The `Content-Type` HTTP header field of an encoded request with HTTP body is set to +/// `application/x-www-form-urlencoded; charset=utf-8`. +/// +/// There is no published specification for how to encode collection types. By default the convention of appending +/// `[]` to the key for array values (`foo[]=1&foo[]=2`), and appending the key surrounded by square brackets for +/// nested dictionary values (`foo[bar]=baz`) is used. Optionally, `ArrayEncoding` can be used to omit the +/// square brackets appended to array keys. +/// +/// `BoolEncoding` can be used to configure how boolean values are encoded. The default behavior is to encode +/// `true` as 1 and `false` as 0. +public struct URLEncoding: ParameterEncoding { + + // MARK: Helper Types + + /// Defines whether the url-encoded query string is applied to the existing query string or HTTP body of the + /// resulting URL request. + /// + /// - methodDependent: Applies encoded query string result to existing query string for `GET`, `HEAD` and `DELETE` + /// requests and sets as the HTTP body for requests with any other HTTP method. + /// - queryString: Sets or appends encoded query string result to existing query string. + /// - httpBody: Sets encoded query string result as the HTTP body of the URL request. + public enum Destination { + case methodDependent, queryString, httpBody + } + + /// Configures how `Array` parameters are encoded. + /// + /// - brackets: An empty set of square brackets is appended to the key for every value. + /// This is the default behavior. + /// - noBrackets: No brackets are appended. The key is encoded as is. + public enum ArrayEncoding { + case brackets, noBrackets + + func encode(key: String) -> String { + switch self { + case .brackets: + return "\(key)[]" + case .noBrackets: + return key + } + } + } + + /// Configures how `Bool` parameters are encoded. + /// + /// - numeric: Encode `true` as `1` and `false` as `0`. This is the default behavior. + /// - literal: Encode `true` and `false` as string literals. + public enum BoolEncoding { + case numeric, literal + + func encode(value: Bool) -> String { + switch self { + case .numeric: + return value ? "1" : "0" + case .literal: + return value ? "true" : "false" + } + } + } + + // MARK: Properties + + /// Returns a default `URLEncoding` instance. + public static var `default`: URLEncoding { return URLEncoding() } + + /// Returns a `URLEncoding` instance with a `.methodDependent` destination. + public static var methodDependent: URLEncoding { return URLEncoding() } + + /// Returns a `URLEncoding` instance with a `.queryString` destination. + public static var queryString: URLEncoding { return URLEncoding(destination: .queryString) } + + /// Returns a `URLEncoding` instance with an `.httpBody` destination. + public static var httpBody: URLEncoding { return URLEncoding(destination: .httpBody) } + + /// The destination defining where the encoded query string is to be applied to the URL request. + public let destination: Destination + + /// The encoding to use for `Array` parameters. + public let arrayEncoding: ArrayEncoding + + /// The encoding to use for `Bool` parameters. + public let boolEncoding: BoolEncoding + + // MARK: Initialization + + /// Creates a `URLEncoding` instance using the specified destination. + /// + /// - parameter destination: The destination defining where the encoded query string is to be applied. + /// - parameter arrayEncoding: The encoding to use for `Array` parameters. + /// - parameter boolEncoding: The encoding to use for `Bool` parameters. + /// + /// - returns: The new `URLEncoding` instance. + public init(destination: Destination = .methodDependent, arrayEncoding: ArrayEncoding = .brackets, boolEncoding: BoolEncoding = .numeric) { + self.destination = destination + self.arrayEncoding = arrayEncoding + self.boolEncoding = boolEncoding + } + + // MARK: Encoding + + /// Creates a URL request by encoding parameters and applying them onto an existing request. + /// + /// - parameter urlRequest: The request to have parameters applied. + /// - parameter parameters: The parameters to apply. + /// + /// - throws: An `Error` if the encoding process encounters an error. + /// + /// - returns: The encoded request. + public func encode(_ urlRequest: URLRequestConvertible, with parameters: Parameters?) throws -> URLRequest { + var urlRequest = try urlRequest.asURLRequest() + + guard let parameters = parameters else { return urlRequest } + + if let method = HTTPMethod(rawValue: urlRequest.httpMethod ?? "GET"), encodesParametersInURL(with: method) { + guard let url = urlRequest.url else { + throw AFError.parameterEncodingFailed(reason: .missingURL) + } + + if var urlComponents = URLComponents(url: url, resolvingAgainstBaseURL: false), !parameters.isEmpty { + let percentEncodedQuery = (urlComponents.percentEncodedQuery.map { $0 + "&" } ?? "") + query(parameters) + urlComponents.percentEncodedQuery = percentEncodedQuery + urlRequest.url = urlComponents.url + } + } else { + if urlRequest.value(forHTTPHeaderField: "Content-Type") == nil { + urlRequest.setValue("application/x-www-form-urlencoded; charset=utf-8", forHTTPHeaderField: "Content-Type") + } + + urlRequest.httpBody = query(parameters).data(using: .utf8, allowLossyConversion: false) + } + + return urlRequest + } + + /// Creates percent-escaped, URL encoded query string components from the given key-value pair using recursion. + /// + /// - parameter key: The key of the query component. + /// - parameter value: The value of the query component. + /// + /// - returns: The percent-escaped, URL encoded query string components. + public func queryComponents(fromKey key: String, value: Any) -> [(String, String)] { + var components: [(String, String)] = [] + + if let dictionary = value as? [String: Any] { + for (nestedKey, value) in dictionary { + components += queryComponents(fromKey: "\(key)[\(nestedKey)]", value: value) + } + } else if let array = value as? [Any] { + for value in array { + components += queryComponents(fromKey: arrayEncoding.encode(key: key), value: value) + } + } else if let value = value as? NSNumber { + if value.isBool { + components.append((escape(key), escape(boolEncoding.encode(value: value.boolValue)))) + } else { + components.append((escape(key), escape("\(value)"))) + } + } else if let bool = value as? Bool { + components.append((escape(key), escape(boolEncoding.encode(value: bool)))) + } else { + components.append((escape(key), escape("\(value)"))) + } + + return components + } + + /// Returns a percent-escaped string following RFC 3986 for a query string key or value. + /// + /// RFC 3986 states that the following characters are "reserved" characters. + /// + /// - General Delimiters: ":", "#", "[", "]", "@", "?", "/" + /// - Sub-Delimiters: "!", "$", "&", "'", "(", ")", "*", "+", ",", ";", "=" + /// + /// In RFC 3986 - Section 3.4, it states that the "?" and "/" characters should not be escaped to allow + /// query strings to include a URL. Therefore, all "reserved" characters with the exception of "?" and "/" + /// should be percent-escaped in the query string. + /// + /// - parameter string: The string to be percent-escaped. + /// + /// - returns: The percent-escaped string. + public func escape(_ string: String) -> String { + let generalDelimitersToEncode = ":#[]@" // does not include "?" or "/" due to RFC 3986 - Section 3.4 + let subDelimitersToEncode = "!$&'()*+,;=" + + var allowedCharacterSet = CharacterSet.urlQueryAllowed + allowedCharacterSet.remove(charactersIn: "\(generalDelimitersToEncode)\(subDelimitersToEncode)") + + var escaped = "" + + //========================================================================================================== + // + // Batching is required for escaping due to an internal bug in iOS 8.1 and 8.2. Encoding more than a few + // hundred Chinese characters causes various malloc error crashes. To avoid this issue until iOS 8 is no + // longer supported, batching MUST be used for encoding. This introduces roughly a 20% overhead. For more + // info, please refer to: + // + // - https://github.com/Alamofire/Alamofire/issues/206 + // + //========================================================================================================== + + if #available(iOS 8.3, *) { + escaped = string.addingPercentEncoding(withAllowedCharacters: allowedCharacterSet) ?? string + } else { + let batchSize = 50 + var index = string.startIndex + + while index != string.endIndex { + let startIndex = index + let endIndex = string.index(index, offsetBy: batchSize, limitedBy: string.endIndex) ?? string.endIndex + let range = startIndex.. String { + var components: [(String, String)] = [] + + for key in parameters.keys.sorted(by: <) { + let value = parameters[key]! + components += queryComponents(fromKey: key, value: value) + } + return components.map { "\($0)=\($1)" }.joined(separator: "&") + } + + private func encodesParametersInURL(with method: HTTPMethod) -> Bool { + switch destination { + case .queryString: + return true + case .httpBody: + return false + default: + break + } + + switch method { + case .get, .head, .delete: + return true + default: + return false + } + } +} + +// MARK: - + +/// Uses `JSONSerialization` to create a JSON representation of the parameters object, which is set as the body of the +/// request. The `Content-Type` HTTP header field of an encoded request is set to `application/json`. +public struct JSONEncoding: ParameterEncoding { + + // MARK: Properties + + /// Returns a `JSONEncoding` instance with default writing options. + public static var `default`: JSONEncoding { return JSONEncoding() } + + /// Returns a `JSONEncoding` instance with `.prettyPrinted` writing options. + public static var prettyPrinted: JSONEncoding { return JSONEncoding(options: .prettyPrinted) } + + /// The options for writing the parameters as JSON data. + public let options: JSONSerialization.WritingOptions + + // MARK: Initialization + + /// Creates a `JSONEncoding` instance using the specified options. + /// + /// - parameter options: The options for writing the parameters as JSON data. + /// + /// - returns: The new `JSONEncoding` instance. + public init(options: JSONSerialization.WritingOptions = []) { + self.options = options + } + + // MARK: Encoding + + /// Creates a URL request by encoding parameters and applying them onto an existing request. + /// + /// - parameter urlRequest: The request to have parameters applied. + /// - parameter parameters: The parameters to apply. + /// + /// - throws: An `Error` if the encoding process encounters an error. + /// + /// - returns: The encoded request. + public func encode(_ urlRequest: URLRequestConvertible, with parameters: Parameters?) throws -> URLRequest { + var urlRequest = try urlRequest.asURLRequest() + + guard let parameters = parameters else { return urlRequest } + + do { + let data = try JSONSerialization.data(withJSONObject: parameters, options: options) + + if urlRequest.value(forHTTPHeaderField: "Content-Type") == nil { + urlRequest.setValue("application/json", forHTTPHeaderField: "Content-Type") + } + + urlRequest.httpBody = data + } catch { + throw AFError.parameterEncodingFailed(reason: .jsonEncodingFailed(error: error)) + } + + return urlRequest + } + + /// Creates a URL request by encoding the JSON object and setting the resulting data on the HTTP body. + /// + /// - parameter urlRequest: The request to apply the JSON object to. + /// - parameter jsonObject: The JSON object to apply to the request. + /// + /// - throws: An `Error` if the encoding process encounters an error. + /// + /// - returns: The encoded request. + public func encode(_ urlRequest: URLRequestConvertible, withJSONObject jsonObject: Any? = nil) throws -> URLRequest { + var urlRequest = try urlRequest.asURLRequest() + + guard let jsonObject = jsonObject else { return urlRequest } + + do { + let data = try JSONSerialization.data(withJSONObject: jsonObject, options: options) + + if urlRequest.value(forHTTPHeaderField: "Content-Type") == nil { + urlRequest.setValue("application/json", forHTTPHeaderField: "Content-Type") + } + + urlRequest.httpBody = data + } catch { + throw AFError.parameterEncodingFailed(reason: .jsonEncodingFailed(error: error)) + } + + return urlRequest + } +} + +// MARK: - + +/// Uses `PropertyListSerialization` to create a plist representation of the parameters object, according to the +/// associated format and write options values, which is set as the body of the request. The `Content-Type` HTTP header +/// field of an encoded request is set to `application/x-plist`. +public struct PropertyListEncoding: ParameterEncoding { + + // MARK: Properties + + /// Returns a default `PropertyListEncoding` instance. + public static var `default`: PropertyListEncoding { return PropertyListEncoding() } + + /// Returns a `PropertyListEncoding` instance with xml formatting and default writing options. + public static var xml: PropertyListEncoding { return PropertyListEncoding(format: .xml) } + + /// Returns a `PropertyListEncoding` instance with binary formatting and default writing options. + public static var binary: PropertyListEncoding { return PropertyListEncoding(format: .binary) } + + /// The property list serialization format. + public let format: PropertyListSerialization.PropertyListFormat + + /// The options for writing the parameters as plist data. + public let options: PropertyListSerialization.WriteOptions + + // MARK: Initialization + + /// Creates a `PropertyListEncoding` instance using the specified format and options. + /// + /// - parameter format: The property list serialization format. + /// - parameter options: The options for writing the parameters as plist data. + /// + /// - returns: The new `PropertyListEncoding` instance. + public init( + format: PropertyListSerialization.PropertyListFormat = .xml, + options: PropertyListSerialization.WriteOptions = 0) + { + self.format = format + self.options = options + } + + // MARK: Encoding + + /// Creates a URL request by encoding parameters and applying them onto an existing request. + /// + /// - parameter urlRequest: The request to have parameters applied. + /// - parameter parameters: The parameters to apply. + /// + /// - throws: An `Error` if the encoding process encounters an error. + /// + /// - returns: The encoded request. + public func encode(_ urlRequest: URLRequestConvertible, with parameters: Parameters?) throws -> URLRequest { + var urlRequest = try urlRequest.asURLRequest() + + guard let parameters = parameters else { return urlRequest } + + do { + let data = try PropertyListSerialization.data( + fromPropertyList: parameters, + format: format, + options: options + ) + + if urlRequest.value(forHTTPHeaderField: "Content-Type") == nil { + urlRequest.setValue("application/x-plist", forHTTPHeaderField: "Content-Type") + } + + urlRequest.httpBody = data + } catch { + throw AFError.parameterEncodingFailed(reason: .propertyListEncodingFailed(error: error)) + } + + return urlRequest + } +} + +// MARK: - + +extension NSNumber { + fileprivate var isBool: Bool { return CFBooleanGetTypeID() == CFGetTypeID(self) } +} diff --git a/tmp/Pods/Alamofire/Source/Request.swift b/tmp/Pods/Alamofire/Source/Request.swift new file mode 100644 index 0000000..94e7b6e --- /dev/null +++ b/tmp/Pods/Alamofire/Source/Request.swift @@ -0,0 +1,654 @@ +// +// Request.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// A type that can inspect and optionally adapt a `URLRequest` in some manner if necessary. +public protocol RequestAdapter { + /// Inspects and adapts the specified `URLRequest` in some manner if necessary and returns the result. + /// + /// - parameter urlRequest: The URL request to adapt. + /// + /// - throws: An `Error` if the adaptation encounters an error. + /// + /// - returns: The adapted `URLRequest`. + func adapt(_ urlRequest: URLRequest) throws -> URLRequest +} + +// MARK: - + +/// A closure executed when the `RequestRetrier` determines whether a `Request` should be retried or not. +public typealias RequestRetryCompletion = (_ shouldRetry: Bool, _ timeDelay: TimeInterval) -> Void + +/// A type that determines whether a request should be retried after being executed by the specified session manager +/// and encountering an error. +public protocol RequestRetrier { + /// Determines whether the `Request` should be retried by calling the `completion` closure. + /// + /// This operation is fully asynchronous. Any amount of time can be taken to determine whether the request needs + /// to be retried. The one requirement is that the completion closure is called to ensure the request is properly + /// cleaned up after. + /// + /// - parameter manager: The session manager the request was executed on. + /// - parameter request: The request that failed due to the encountered error. + /// - parameter error: The error encountered when executing the request. + /// - parameter completion: The completion closure to be executed when retry decision has been determined. + func should(_ manager: SessionManager, retry request: Request, with error: Error, completion: @escaping RequestRetryCompletion) +} + +// MARK: - + +protocol TaskConvertible { + func task(session: URLSession, adapter: RequestAdapter?, queue: DispatchQueue) throws -> URLSessionTask +} + +/// A dictionary of headers to apply to a `URLRequest`. +public typealias HTTPHeaders = [String: String] + +// MARK: - + +/// Responsible for sending a request and receiving the response and associated data from the server, as well as +/// managing its underlying `URLSessionTask`. +open class Request { + + // MARK: Helper Types + + /// A closure executed when monitoring upload or download progress of a request. + public typealias ProgressHandler = (Progress) -> Void + + enum RequestTask { + case data(TaskConvertible?, URLSessionTask?) + case download(TaskConvertible?, URLSessionTask?) + case upload(TaskConvertible?, URLSessionTask?) + case stream(TaskConvertible?, URLSessionTask?) + } + + // MARK: Properties + + /// The delegate for the underlying task. + open internal(set) var delegate: TaskDelegate { + get { + taskDelegateLock.lock() ; defer { taskDelegateLock.unlock() } + return taskDelegate + } + set { + taskDelegateLock.lock() ; defer { taskDelegateLock.unlock() } + taskDelegate = newValue + } + } + + /// The underlying task. + open var task: URLSessionTask? { return delegate.task } + + /// The session belonging to the underlying task. + open let session: URLSession + + /// The request sent or to be sent to the server. + open var request: URLRequest? { return task?.originalRequest } + + /// The response received from the server, if any. + open var response: HTTPURLResponse? { return task?.response as? HTTPURLResponse } + + /// The number of times the request has been retried. + open internal(set) var retryCount: UInt = 0 + + let originalTask: TaskConvertible? + + var startTime: CFAbsoluteTime? + var endTime: CFAbsoluteTime? + + var validations: [() -> Void] = [] + + private var taskDelegate: TaskDelegate + private var taskDelegateLock = NSLock() + + // MARK: Lifecycle + + init(session: URLSession, requestTask: RequestTask, error: Error? = nil) { + self.session = session + + switch requestTask { + case .data(let originalTask, let task): + taskDelegate = DataTaskDelegate(task: task) + self.originalTask = originalTask + case .download(let originalTask, let task): + taskDelegate = DownloadTaskDelegate(task: task) + self.originalTask = originalTask + case .upload(let originalTask, let task): + taskDelegate = UploadTaskDelegate(task: task) + self.originalTask = originalTask + case .stream(let originalTask, let task): + taskDelegate = TaskDelegate(task: task) + self.originalTask = originalTask + } + + delegate.error = error + delegate.queue.addOperation { self.endTime = CFAbsoluteTimeGetCurrent() } + } + + // MARK: Authentication + + /// Associates an HTTP Basic credential with the request. + /// + /// - parameter user: The user. + /// - parameter password: The password. + /// - parameter persistence: The URL credential persistence. `.ForSession` by default. + /// + /// - returns: The request. + @discardableResult + open func authenticate( + user: String, + password: String, + persistence: URLCredential.Persistence = .forSession) + -> Self + { + let credential = URLCredential(user: user, password: password, persistence: persistence) + return authenticate(usingCredential: credential) + } + + /// Associates a specified credential with the request. + /// + /// - parameter credential: The credential. + /// + /// - returns: The request. + @discardableResult + open func authenticate(usingCredential credential: URLCredential) -> Self { + delegate.credential = credential + return self + } + + /// Returns a base64 encoded basic authentication credential as an authorization header tuple. + /// + /// - parameter user: The user. + /// - parameter password: The password. + /// + /// - returns: A tuple with Authorization header and credential value if encoding succeeds, `nil` otherwise. + open static func authorizationHeader(user: String, password: String) -> (key: String, value: String)? { + guard let data = "\(user):\(password)".data(using: .utf8) else { return nil } + + let credential = data.base64EncodedString(options: []) + + return (key: "Authorization", value: "Basic \(credential)") + } + + // MARK: State + + /// Resumes the request. + open func resume() { + guard let task = task else { delegate.queue.isSuspended = false ; return } + + if startTime == nil { startTime = CFAbsoluteTimeGetCurrent() } + + task.resume() + + NotificationCenter.default.post( + name: Notification.Name.Task.DidResume, + object: self, + userInfo: [Notification.Key.Task: task] + ) + } + + /// Suspends the request. + open func suspend() { + guard let task = task else { return } + + task.suspend() + + NotificationCenter.default.post( + name: Notification.Name.Task.DidSuspend, + object: self, + userInfo: [Notification.Key.Task: task] + ) + } + + /// Cancels the request. + open func cancel() { + guard let task = task else { return } + + task.cancel() + + NotificationCenter.default.post( + name: Notification.Name.Task.DidCancel, + object: self, + userInfo: [Notification.Key.Task: task] + ) + } +} + +// MARK: - CustomStringConvertible + +extension Request: CustomStringConvertible { + /// The textual representation used when written to an output stream, which includes the HTTP method and URL, as + /// well as the response status code if a response has been received. + open var description: String { + var components: [String] = [] + + if let HTTPMethod = request?.httpMethod { + components.append(HTTPMethod) + } + + if let urlString = request?.url?.absoluteString { + components.append(urlString) + } + + if let response = response { + components.append("(\(response.statusCode))") + } + + return components.joined(separator: " ") + } +} + +// MARK: - CustomDebugStringConvertible + +extension Request: CustomDebugStringConvertible { + /// The textual representation used when written to an output stream, in the form of a cURL command. + open var debugDescription: String { + return cURLRepresentation() + } + + func cURLRepresentation() -> String { + var components = ["$ curl -v"] + + guard let request = self.request, + let url = request.url, + let host = url.host + else { + return "$ curl command could not be created" + } + + if let httpMethod = request.httpMethod, httpMethod != "GET" { + components.append("-X \(httpMethod)") + } + + if let credentialStorage = self.session.configuration.urlCredentialStorage { + let protectionSpace = URLProtectionSpace( + host: host, + port: url.port ?? 0, + protocol: url.scheme, + realm: host, + authenticationMethod: NSURLAuthenticationMethodHTTPBasic + ) + + if let credentials = credentialStorage.credentials(for: protectionSpace)?.values { + for credential in credentials { + guard let user = credential.user, let password = credential.password else { continue } + components.append("-u \(user):\(password)") + } + } else { + if let credential = delegate.credential, let user = credential.user, let password = credential.password { + components.append("-u \(user):\(password)") + } + } + } + + if session.configuration.httpShouldSetCookies { + if + let cookieStorage = session.configuration.httpCookieStorage, + let cookies = cookieStorage.cookies(for: url), !cookies.isEmpty + { + let string = cookies.reduce("") { $0 + "\($1.name)=\($1.value);" } + + #if swift(>=3.2) + components.append("-b \"\(string[.. URLSessionTask { + do { + let urlRequest = try self.urlRequest.adapt(using: adapter) + return queue.sync { session.dataTask(with: urlRequest) } + } catch { + throw AdaptError(error: error) + } + } + } + + // MARK: Properties + + /// The request sent or to be sent to the server. + open override var request: URLRequest? { + if let request = super.request { return request } + if let requestable = originalTask as? Requestable { return requestable.urlRequest } + + return nil + } + + /// The progress of fetching the response data from the server for the request. + open var progress: Progress { return dataDelegate.progress } + + var dataDelegate: DataTaskDelegate { return delegate as! DataTaskDelegate } + + // MARK: Stream + + /// Sets a closure to be called periodically during the lifecycle of the request as data is read from the server. + /// + /// This closure returns the bytes most recently received from the server, not including data from previous calls. + /// If this closure is set, data will only be available within this closure, and will not be saved elsewhere. It is + /// also important to note that the server data in any `Response` object will be `nil`. + /// + /// - parameter closure: The code to be executed periodically during the lifecycle of the request. + /// + /// - returns: The request. + @discardableResult + open func stream(closure: ((Data) -> Void)? = nil) -> Self { + dataDelegate.dataStream = closure + return self + } + + // MARK: Progress + + /// Sets a closure to be called periodically during the lifecycle of the `Request` as data is read from the server. + /// + /// - parameter queue: The dispatch queue to execute the closure on. + /// - parameter closure: The code to be executed periodically as data is read from the server. + /// + /// - returns: The request. + @discardableResult + open func downloadProgress(queue: DispatchQueue = DispatchQueue.main, closure: @escaping ProgressHandler) -> Self { + dataDelegate.progressHandler = (closure, queue) + return self + } +} + +// MARK: - + +/// Specific type of `Request` that manages an underlying `URLSessionDownloadTask`. +open class DownloadRequest: Request { + + // MARK: Helper Types + + /// A collection of options to be executed prior to moving a downloaded file from the temporary URL to the + /// destination URL. + public struct DownloadOptions: OptionSet { + /// Returns the raw bitmask value of the option and satisfies the `RawRepresentable` protocol. + public let rawValue: UInt + + /// A `DownloadOptions` flag that creates intermediate directories for the destination URL if specified. + public static let createIntermediateDirectories = DownloadOptions(rawValue: 1 << 0) + + /// A `DownloadOptions` flag that removes a previous file from the destination URL if specified. + public static let removePreviousFile = DownloadOptions(rawValue: 1 << 1) + + /// Creates a `DownloadFileDestinationOptions` instance with the specified raw value. + /// + /// - parameter rawValue: The raw bitmask value for the option. + /// + /// - returns: A new log level instance. + public init(rawValue: UInt) { + self.rawValue = rawValue + } + } + + /// A closure executed once a download request has successfully completed in order to determine where to move the + /// temporary file written to during the download process. The closure takes two arguments: the temporary file URL + /// and the URL response, and returns a two arguments: the file URL where the temporary file should be moved and + /// the options defining how the file should be moved. + public typealias DownloadFileDestination = ( + _ temporaryURL: URL, + _ response: HTTPURLResponse) + -> (destinationURL: URL, options: DownloadOptions) + + enum Downloadable: TaskConvertible { + case request(URLRequest) + case resumeData(Data) + + func task(session: URLSession, adapter: RequestAdapter?, queue: DispatchQueue) throws -> URLSessionTask { + do { + let task: URLSessionTask + + switch self { + case let .request(urlRequest): + let urlRequest = try urlRequest.adapt(using: adapter) + task = queue.sync { session.downloadTask(with: urlRequest) } + case let .resumeData(resumeData): + task = queue.sync { session.downloadTask(withResumeData: resumeData) } + } + + return task + } catch { + throw AdaptError(error: error) + } + } + } + + // MARK: Properties + + /// The request sent or to be sent to the server. + open override var request: URLRequest? { + if let request = super.request { return request } + + if let downloadable = originalTask as? Downloadable, case let .request(urlRequest) = downloadable { + return urlRequest + } + + return nil + } + + /// The resume data of the underlying download task if available after a failure. + open var resumeData: Data? { return downloadDelegate.resumeData } + + /// The progress of downloading the response data from the server for the request. + open var progress: Progress { return downloadDelegate.progress } + + var downloadDelegate: DownloadTaskDelegate { return delegate as! DownloadTaskDelegate } + + // MARK: State + + /// Cancels the request. + open override func cancel() { + downloadDelegate.downloadTask.cancel { self.downloadDelegate.resumeData = $0 } + + NotificationCenter.default.post( + name: Notification.Name.Task.DidCancel, + object: self, + userInfo: [Notification.Key.Task: task as Any] + ) + } + + // MARK: Progress + + /// Sets a closure to be called periodically during the lifecycle of the `Request` as data is read from the server. + /// + /// - parameter queue: The dispatch queue to execute the closure on. + /// - parameter closure: The code to be executed periodically as data is read from the server. + /// + /// - returns: The request. + @discardableResult + open func downloadProgress(queue: DispatchQueue = DispatchQueue.main, closure: @escaping ProgressHandler) -> Self { + downloadDelegate.progressHandler = (closure, queue) + return self + } + + // MARK: Destination + + /// Creates a download file destination closure which uses the default file manager to move the temporary file to a + /// file URL in the first available directory with the specified search path directory and search path domain mask. + /// + /// - parameter directory: The search path directory. `.DocumentDirectory` by default. + /// - parameter domain: The search path domain mask. `.UserDomainMask` by default. + /// + /// - returns: A download file destination closure. + open class func suggestedDownloadDestination( + for directory: FileManager.SearchPathDirectory = .documentDirectory, + in domain: FileManager.SearchPathDomainMask = .userDomainMask) + -> DownloadFileDestination + { + return { temporaryURL, response in + let directoryURLs = FileManager.default.urls(for: directory, in: domain) + + if !directoryURLs.isEmpty { + return (directoryURLs[0].appendingPathComponent(response.suggestedFilename!), []) + } + + return (temporaryURL, []) + } + } +} + +// MARK: - + +/// Specific type of `Request` that manages an underlying `URLSessionUploadTask`. +open class UploadRequest: DataRequest { + + // MARK: Helper Types + + enum Uploadable: TaskConvertible { + case data(Data, URLRequest) + case file(URL, URLRequest) + case stream(InputStream, URLRequest) + + func task(session: URLSession, adapter: RequestAdapter?, queue: DispatchQueue) throws -> URLSessionTask { + do { + let task: URLSessionTask + + switch self { + case let .data(data, urlRequest): + let urlRequest = try urlRequest.adapt(using: adapter) + task = queue.sync { session.uploadTask(with: urlRequest, from: data) } + case let .file(url, urlRequest): + let urlRequest = try urlRequest.adapt(using: adapter) + task = queue.sync { session.uploadTask(with: urlRequest, fromFile: url) } + case let .stream(_, urlRequest): + let urlRequest = try urlRequest.adapt(using: adapter) + task = queue.sync { session.uploadTask(withStreamedRequest: urlRequest) } + } + + return task + } catch { + throw AdaptError(error: error) + } + } + } + + // MARK: Properties + + /// The request sent or to be sent to the server. + open override var request: URLRequest? { + if let request = super.request { return request } + + guard let uploadable = originalTask as? Uploadable else { return nil } + + switch uploadable { + case .data(_, let urlRequest), .file(_, let urlRequest), .stream(_, let urlRequest): + return urlRequest + } + } + + /// The progress of uploading the payload to the server for the upload request. + open var uploadProgress: Progress { return uploadDelegate.uploadProgress } + + var uploadDelegate: UploadTaskDelegate { return delegate as! UploadTaskDelegate } + + // MARK: Upload Progress + + /// Sets a closure to be called periodically during the lifecycle of the `UploadRequest` as data is sent to + /// the server. + /// + /// After the data is sent to the server, the `progress(queue:closure:)` APIs can be used to monitor the progress + /// of data being read from the server. + /// + /// - parameter queue: The dispatch queue to execute the closure on. + /// - parameter closure: The code to be executed periodically as data is sent to the server. + /// + /// - returns: The request. + @discardableResult + open func uploadProgress(queue: DispatchQueue = DispatchQueue.main, closure: @escaping ProgressHandler) -> Self { + uploadDelegate.uploadProgressHandler = (closure, queue) + return self + } +} + +// MARK: - + +#if !os(watchOS) + +/// Specific type of `Request` that manages an underlying `URLSessionStreamTask`. +@available(iOS 9.0, macOS 10.11, tvOS 9.0, *) +open class StreamRequest: Request { + enum Streamable: TaskConvertible { + case stream(hostName: String, port: Int) + case netService(NetService) + + func task(session: URLSession, adapter: RequestAdapter?, queue: DispatchQueue) throws -> URLSessionTask { + let task: URLSessionTask + + switch self { + case let .stream(hostName, port): + task = queue.sync { session.streamTask(withHostName: hostName, port: port) } + case let .netService(netService): + task = queue.sync { session.streamTask(with: netService) } + } + + return task + } + } +} + +#endif diff --git a/tmp/Pods/Alamofire/Source/Response.swift b/tmp/Pods/Alamofire/Source/Response.swift new file mode 100644 index 0000000..74b1ef5 --- /dev/null +++ b/tmp/Pods/Alamofire/Source/Response.swift @@ -0,0 +1,567 @@ +// +// Response.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// Used to store all data associated with an non-serialized response of a data or upload request. +public struct DefaultDataResponse { + /// The URL request sent to the server. + public let request: URLRequest? + + /// The server's response to the URL request. + public let response: HTTPURLResponse? + + /// The data returned by the server. + public let data: Data? + + /// The error encountered while executing or validating the request. + public let error: Error? + + /// The timeline of the complete lifecycle of the request. + public let timeline: Timeline + + var _metrics: AnyObject? + + /// Creates a `DefaultDataResponse` instance from the specified parameters. + /// + /// - Parameters: + /// - request: The URL request sent to the server. + /// - response: The server's response to the URL request. + /// - data: The data returned by the server. + /// - error: The error encountered while executing or validating the request. + /// - timeline: The timeline of the complete lifecycle of the request. `Timeline()` by default. + /// - metrics: The task metrics containing the request / response statistics. `nil` by default. + public init( + request: URLRequest?, + response: HTTPURLResponse?, + data: Data?, + error: Error?, + timeline: Timeline = Timeline(), + metrics: AnyObject? = nil) + { + self.request = request + self.response = response + self.data = data + self.error = error + self.timeline = timeline + } +} + +// MARK: - + +/// Used to store all data associated with a serialized response of a data or upload request. +public struct DataResponse { + /// The URL request sent to the server. + public let request: URLRequest? + + /// The server's response to the URL request. + public let response: HTTPURLResponse? + + /// The data returned by the server. + public let data: Data? + + /// The result of response serialization. + public let result: Result + + /// The timeline of the complete lifecycle of the request. + public let timeline: Timeline + + /// Returns the associated value of the result if it is a success, `nil` otherwise. + public var value: Value? { return result.value } + + /// Returns the associated error value if the result if it is a failure, `nil` otherwise. + public var error: Error? { return result.error } + + var _metrics: AnyObject? + + /// Creates a `DataResponse` instance with the specified parameters derived from response serialization. + /// + /// - parameter request: The URL request sent to the server. + /// - parameter response: The server's response to the URL request. + /// - parameter data: The data returned by the server. + /// - parameter result: The result of response serialization. + /// - parameter timeline: The timeline of the complete lifecycle of the `Request`. Defaults to `Timeline()`. + /// + /// - returns: The new `DataResponse` instance. + public init( + request: URLRequest?, + response: HTTPURLResponse?, + data: Data?, + result: Result, + timeline: Timeline = Timeline()) + { + self.request = request + self.response = response + self.data = data + self.result = result + self.timeline = timeline + } +} + +// MARK: - + +extension DataResponse: CustomStringConvertible, CustomDebugStringConvertible { + /// The textual representation used when written to an output stream, which includes whether the result was a + /// success or failure. + public var description: String { + return result.debugDescription + } + + /// The debug textual representation used when written to an output stream, which includes the URL request, the URL + /// response, the server data, the response serialization result and the timeline. + public var debugDescription: String { + var output: [String] = [] + + output.append(request != nil ? "[Request]: \(request!.httpMethod ?? "GET") \(request!)" : "[Request]: nil") + output.append(response != nil ? "[Response]: \(response!)" : "[Response]: nil") + output.append("[Data]: \(data?.count ?? 0) bytes") + output.append("[Result]: \(result.debugDescription)") + output.append("[Timeline]: \(timeline.debugDescription)") + + return output.joined(separator: "\n") + } +} + +// MARK: - + +extension DataResponse { + /// Evaluates the specified closure when the result of this `DataResponse` is a success, passing the unwrapped + /// result value as a parameter. + /// + /// Use the `map` method with a closure that does not throw. For example: + /// + /// let possibleData: DataResponse = ... + /// let possibleInt = possibleData.map { $0.count } + /// + /// - parameter transform: A closure that takes the success value of the instance's result. + /// + /// - returns: A `DataResponse` whose result wraps the value returned by the given closure. If this instance's + /// result is a failure, returns a response wrapping the same failure. + public func map(_ transform: (Value) -> T) -> DataResponse { + var response = DataResponse( + request: request, + response: self.response, + data: data, + result: result.map(transform), + timeline: timeline + ) + + response._metrics = _metrics + + return response + } + + /// Evaluates the given closure when the result of this `DataResponse` is a success, passing the unwrapped result + /// value as a parameter. + /// + /// Use the `flatMap` method with a closure that may throw an error. For example: + /// + /// let possibleData: DataResponse = ... + /// let possibleObject = possibleData.flatMap { + /// try JSONSerialization.jsonObject(with: $0) + /// } + /// + /// - parameter transform: A closure that takes the success value of the instance's result. + /// + /// - returns: A success or failure `DataResponse` depending on the result of the given closure. If this instance's + /// result is a failure, returns the same failure. + public func flatMap(_ transform: (Value) throws -> T) -> DataResponse { + var response = DataResponse( + request: request, + response: self.response, + data: data, + result: result.flatMap(transform), + timeline: timeline + ) + + response._metrics = _metrics + + return response + } + + /// Evaluates the specified closure when the `DataResponse` is a failure, passing the unwrapped error as a parameter. + /// + /// Use the `mapError` function with a closure that does not throw. For example: + /// + /// let possibleData: DataResponse = ... + /// let withMyError = possibleData.mapError { MyError.error($0) } + /// + /// - Parameter transform: A closure that takes the error of the instance. + /// - Returns: A `DataResponse` instance containing the result of the transform. + public func mapError(_ transform: (Error) -> E) -> DataResponse { + var response = DataResponse( + request: request, + response: self.response, + data: data, + result: result.mapError(transform), + timeline: timeline + ) + + response._metrics = _metrics + + return response + } + + /// Evaluates the specified closure when the `DataResponse` is a failure, passing the unwrapped error as a parameter. + /// + /// Use the `flatMapError` function with a closure that may throw an error. For example: + /// + /// let possibleData: DataResponse = ... + /// let possibleObject = possibleData.flatMapError { + /// try someFailableFunction(taking: $0) + /// } + /// + /// - Parameter transform: A throwing closure that takes the error of the instance. + /// + /// - Returns: A `DataResponse` instance containing the result of the transform. + public func flatMapError(_ transform: (Error) throws -> E) -> DataResponse { + var response = DataResponse( + request: request, + response: self.response, + data: data, + result: result.flatMapError(transform), + timeline: timeline + ) + + response._metrics = _metrics + + return response + } +} + +// MARK: - + +/// Used to store all data associated with an non-serialized response of a download request. +public struct DefaultDownloadResponse { + /// The URL request sent to the server. + public let request: URLRequest? + + /// The server's response to the URL request. + public let response: HTTPURLResponse? + + /// The temporary destination URL of the data returned from the server. + public let temporaryURL: URL? + + /// The final destination URL of the data returned from the server if it was moved. + public let destinationURL: URL? + + /// The resume data generated if the request was cancelled. + public let resumeData: Data? + + /// The error encountered while executing or validating the request. + public let error: Error? + + /// The timeline of the complete lifecycle of the request. + public let timeline: Timeline + + var _metrics: AnyObject? + + /// Creates a `DefaultDownloadResponse` instance from the specified parameters. + /// + /// - Parameters: + /// - request: The URL request sent to the server. + /// - response: The server's response to the URL request. + /// - temporaryURL: The temporary destination URL of the data returned from the server. + /// - destinationURL: The final destination URL of the data returned from the server if it was moved. + /// - resumeData: The resume data generated if the request was cancelled. + /// - error: The error encountered while executing or validating the request. + /// - timeline: The timeline of the complete lifecycle of the request. `Timeline()` by default. + /// - metrics: The task metrics containing the request / response statistics. `nil` by default. + public init( + request: URLRequest?, + response: HTTPURLResponse?, + temporaryURL: URL?, + destinationURL: URL?, + resumeData: Data?, + error: Error?, + timeline: Timeline = Timeline(), + metrics: AnyObject? = nil) + { + self.request = request + self.response = response + self.temporaryURL = temporaryURL + self.destinationURL = destinationURL + self.resumeData = resumeData + self.error = error + self.timeline = timeline + } +} + +// MARK: - + +/// Used to store all data associated with a serialized response of a download request. +public struct DownloadResponse { + /// The URL request sent to the server. + public let request: URLRequest? + + /// The server's response to the URL request. + public let response: HTTPURLResponse? + + /// The temporary destination URL of the data returned from the server. + public let temporaryURL: URL? + + /// The final destination URL of the data returned from the server if it was moved. + public let destinationURL: URL? + + /// The resume data generated if the request was cancelled. + public let resumeData: Data? + + /// The result of response serialization. + public let result: Result + + /// The timeline of the complete lifecycle of the request. + public let timeline: Timeline + + /// Returns the associated value of the result if it is a success, `nil` otherwise. + public var value: Value? { return result.value } + + /// Returns the associated error value if the result if it is a failure, `nil` otherwise. + public var error: Error? { return result.error } + + var _metrics: AnyObject? + + /// Creates a `DownloadResponse` instance with the specified parameters derived from response serialization. + /// + /// - parameter request: The URL request sent to the server. + /// - parameter response: The server's response to the URL request. + /// - parameter temporaryURL: The temporary destination URL of the data returned from the server. + /// - parameter destinationURL: The final destination URL of the data returned from the server if it was moved. + /// - parameter resumeData: The resume data generated if the request was cancelled. + /// - parameter result: The result of response serialization. + /// - parameter timeline: The timeline of the complete lifecycle of the `Request`. Defaults to `Timeline()`. + /// + /// - returns: The new `DownloadResponse` instance. + public init( + request: URLRequest?, + response: HTTPURLResponse?, + temporaryURL: URL?, + destinationURL: URL?, + resumeData: Data?, + result: Result, + timeline: Timeline = Timeline()) + { + self.request = request + self.response = response + self.temporaryURL = temporaryURL + self.destinationURL = destinationURL + self.resumeData = resumeData + self.result = result + self.timeline = timeline + } +} + +// MARK: - + +extension DownloadResponse: CustomStringConvertible, CustomDebugStringConvertible { + /// The textual representation used when written to an output stream, which includes whether the result was a + /// success or failure. + public var description: String { + return result.debugDescription + } + + /// The debug textual representation used when written to an output stream, which includes the URL request, the URL + /// response, the temporary and destination URLs, the resume data, the response serialization result and the + /// timeline. + public var debugDescription: String { + var output: [String] = [] + + output.append(request != nil ? "[Request]: \(request!.httpMethod ?? "GET") \(request!)" : "[Request]: nil") + output.append(response != nil ? "[Response]: \(response!)" : "[Response]: nil") + output.append("[TemporaryURL]: \(temporaryURL?.path ?? "nil")") + output.append("[DestinationURL]: \(destinationURL?.path ?? "nil")") + output.append("[ResumeData]: \(resumeData?.count ?? 0) bytes") + output.append("[Result]: \(result.debugDescription)") + output.append("[Timeline]: \(timeline.debugDescription)") + + return output.joined(separator: "\n") + } +} + +// MARK: - + +extension DownloadResponse { + /// Evaluates the given closure when the result of this `DownloadResponse` is a success, passing the unwrapped + /// result value as a parameter. + /// + /// Use the `map` method with a closure that does not throw. For example: + /// + /// let possibleData: DownloadResponse = ... + /// let possibleInt = possibleData.map { $0.count } + /// + /// - parameter transform: A closure that takes the success value of the instance's result. + /// + /// - returns: A `DownloadResponse` whose result wraps the value returned by the given closure. If this instance's + /// result is a failure, returns a response wrapping the same failure. + public func map(_ transform: (Value) -> T) -> DownloadResponse { + var response = DownloadResponse( + request: request, + response: self.response, + temporaryURL: temporaryURL, + destinationURL: destinationURL, + resumeData: resumeData, + result: result.map(transform), + timeline: timeline + ) + + response._metrics = _metrics + + return response + } + + /// Evaluates the given closure when the result of this `DownloadResponse` is a success, passing the unwrapped + /// result value as a parameter. + /// + /// Use the `flatMap` method with a closure that may throw an error. For example: + /// + /// let possibleData: DownloadResponse = ... + /// let possibleObject = possibleData.flatMap { + /// try JSONSerialization.jsonObject(with: $0) + /// } + /// + /// - parameter transform: A closure that takes the success value of the instance's result. + /// + /// - returns: A success or failure `DownloadResponse` depending on the result of the given closure. If this + /// instance's result is a failure, returns the same failure. + public func flatMap(_ transform: (Value) throws -> T) -> DownloadResponse { + var response = DownloadResponse( + request: request, + response: self.response, + temporaryURL: temporaryURL, + destinationURL: destinationURL, + resumeData: resumeData, + result: result.flatMap(transform), + timeline: timeline + ) + + response._metrics = _metrics + + return response + } + + /// Evaluates the specified closure when the `DownloadResponse` is a failure, passing the unwrapped error as a parameter. + /// + /// Use the `mapError` function with a closure that does not throw. For example: + /// + /// let possibleData: DownloadResponse = ... + /// let withMyError = possibleData.mapError { MyError.error($0) } + /// + /// - Parameter transform: A closure that takes the error of the instance. + /// - Returns: A `DownloadResponse` instance containing the result of the transform. + public func mapError(_ transform: (Error) -> E) -> DownloadResponse { + var response = DownloadResponse( + request: request, + response: self.response, + temporaryURL: temporaryURL, + destinationURL: destinationURL, + resumeData: resumeData, + result: result.mapError(transform), + timeline: timeline + ) + + response._metrics = _metrics + + return response + } + + /// Evaluates the specified closure when the `DownloadResponse` is a failure, passing the unwrapped error as a parameter. + /// + /// Use the `flatMapError` function with a closure that may throw an error. For example: + /// + /// let possibleData: DownloadResponse = ... + /// let possibleObject = possibleData.flatMapError { + /// try someFailableFunction(taking: $0) + /// } + /// + /// - Parameter transform: A throwing closure that takes the error of the instance. + /// + /// - Returns: A `DownloadResponse` instance containing the result of the transform. + public func flatMapError(_ transform: (Error) throws -> E) -> DownloadResponse { + var response = DownloadResponse( + request: request, + response: self.response, + temporaryURL: temporaryURL, + destinationURL: destinationURL, + resumeData: resumeData, + result: result.flatMapError(transform), + timeline: timeline + ) + + response._metrics = _metrics + + return response + } +} + +// MARK: - + +protocol Response { + /// The task metrics containing the request / response statistics. + var _metrics: AnyObject? { get set } + mutating func add(_ metrics: AnyObject?) +} + +extension Response { + mutating func add(_ metrics: AnyObject?) { + #if !os(watchOS) + guard #available(iOS 10.0, macOS 10.12, tvOS 10.0, *) else { return } + guard let metrics = metrics as? URLSessionTaskMetrics else { return } + + _metrics = metrics + #endif + } +} + +// MARK: - + +@available(iOS 10.0, macOS 10.12, tvOS 10.0, *) +extension DefaultDataResponse: Response { +#if !os(watchOS) + /// The task metrics containing the request / response statistics. + public var metrics: URLSessionTaskMetrics? { return _metrics as? URLSessionTaskMetrics } +#endif +} + +@available(iOS 10.0, macOS 10.12, tvOS 10.0, *) +extension DataResponse: Response { +#if !os(watchOS) + /// The task metrics containing the request / response statistics. + public var metrics: URLSessionTaskMetrics? { return _metrics as? URLSessionTaskMetrics } +#endif +} + +@available(iOS 10.0, macOS 10.12, tvOS 10.0, *) +extension DefaultDownloadResponse: Response { +#if !os(watchOS) + /// The task metrics containing the request / response statistics. + public var metrics: URLSessionTaskMetrics? { return _metrics as? URLSessionTaskMetrics } +#endif +} + +@available(iOS 10.0, macOS 10.12, tvOS 10.0, *) +extension DownloadResponse: Response { +#if !os(watchOS) + /// The task metrics containing the request / response statistics. + public var metrics: URLSessionTaskMetrics? { return _metrics as? URLSessionTaskMetrics } +#endif +} diff --git a/tmp/Pods/Alamofire/Source/ResponseSerialization.swift b/tmp/Pods/Alamofire/Source/ResponseSerialization.swift new file mode 100644 index 0000000..3333726 --- /dev/null +++ b/tmp/Pods/Alamofire/Source/ResponseSerialization.swift @@ -0,0 +1,715 @@ +// +// ResponseSerialization.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// The type in which all data response serializers must conform to in order to serialize a response. +public protocol DataResponseSerializerProtocol { + /// The type of serialized object to be created by this `DataResponseSerializerType`. + associatedtype SerializedObject + + /// A closure used by response handlers that takes a request, response, data and error and returns a result. + var serializeResponse: (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Result { get } +} + +// MARK: - + +/// A generic `DataResponseSerializerType` used to serialize a request, response, and data into a serialized object. +public struct DataResponseSerializer: DataResponseSerializerProtocol { + /// The type of serialized object to be created by this `DataResponseSerializer`. + public typealias SerializedObject = Value + + /// A closure used by response handlers that takes a request, response, data and error and returns a result. + public var serializeResponse: (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Result + + /// Initializes the `ResponseSerializer` instance with the given serialize response closure. + /// + /// - parameter serializeResponse: The closure used to serialize the response. + /// + /// - returns: The new generic response serializer instance. + public init(serializeResponse: @escaping (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Result) { + self.serializeResponse = serializeResponse + } +} + +// MARK: - + +/// The type in which all download response serializers must conform to in order to serialize a response. +public protocol DownloadResponseSerializerProtocol { + /// The type of serialized object to be created by this `DownloadResponseSerializerType`. + associatedtype SerializedObject + + /// A closure used by response handlers that takes a request, response, url and error and returns a result. + var serializeResponse: (URLRequest?, HTTPURLResponse?, URL?, Error?) -> Result { get } +} + +// MARK: - + +/// A generic `DownloadResponseSerializerType` used to serialize a request, response, and data into a serialized object. +public struct DownloadResponseSerializer: DownloadResponseSerializerProtocol { + /// The type of serialized object to be created by this `DownloadResponseSerializer`. + public typealias SerializedObject = Value + + /// A closure used by response handlers that takes a request, response, url and error and returns a result. + public var serializeResponse: (URLRequest?, HTTPURLResponse?, URL?, Error?) -> Result + + /// Initializes the `ResponseSerializer` instance with the given serialize response closure. + /// + /// - parameter serializeResponse: The closure used to serialize the response. + /// + /// - returns: The new generic response serializer instance. + public init(serializeResponse: @escaping (URLRequest?, HTTPURLResponse?, URL?, Error?) -> Result) { + self.serializeResponse = serializeResponse + } +} + +// MARK: - Timeline + +extension Request { + var timeline: Timeline { + let requestStartTime = self.startTime ?? CFAbsoluteTimeGetCurrent() + let requestCompletedTime = self.endTime ?? CFAbsoluteTimeGetCurrent() + let initialResponseTime = self.delegate.initialResponseTime ?? requestCompletedTime + + return Timeline( + requestStartTime: requestStartTime, + initialResponseTime: initialResponseTime, + requestCompletedTime: requestCompletedTime, + serializationCompletedTime: CFAbsoluteTimeGetCurrent() + ) + } +} + +// MARK: - Default + +extension DataRequest { + /// Adds a handler to be called once the request has finished. + /// + /// - parameter queue: The queue on which the completion handler is dispatched. + /// - parameter completionHandler: The code to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func response(queue: DispatchQueue? = nil, completionHandler: @escaping (DefaultDataResponse) -> Void) -> Self { + delegate.queue.addOperation { + (queue ?? DispatchQueue.main).async { + var dataResponse = DefaultDataResponse( + request: self.request, + response: self.response, + data: self.delegate.data, + error: self.delegate.error, + timeline: self.timeline + ) + + dataResponse.add(self.delegate.metrics) + + completionHandler(dataResponse) + } + } + + return self + } + + /// Adds a handler to be called once the request has finished. + /// + /// - parameter queue: The queue on which the completion handler is dispatched. + /// - parameter responseSerializer: The response serializer responsible for serializing the request, response, + /// and data. + /// - parameter completionHandler: The code to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func response( + queue: DispatchQueue? = nil, + responseSerializer: T, + completionHandler: @escaping (DataResponse) -> Void) + -> Self + { + delegate.queue.addOperation { + let result = responseSerializer.serializeResponse( + self.request, + self.response, + self.delegate.data, + self.delegate.error + ) + + var dataResponse = DataResponse( + request: self.request, + response: self.response, + data: self.delegate.data, + result: result, + timeline: self.timeline + ) + + dataResponse.add(self.delegate.metrics) + + (queue ?? DispatchQueue.main).async { completionHandler(dataResponse) } + } + + return self + } +} + +extension DownloadRequest { + /// Adds a handler to be called once the request has finished. + /// + /// - parameter queue: The queue on which the completion handler is dispatched. + /// - parameter completionHandler: The code to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func response( + queue: DispatchQueue? = nil, + completionHandler: @escaping (DefaultDownloadResponse) -> Void) + -> Self + { + delegate.queue.addOperation { + (queue ?? DispatchQueue.main).async { + var downloadResponse = DefaultDownloadResponse( + request: self.request, + response: self.response, + temporaryURL: self.downloadDelegate.temporaryURL, + destinationURL: self.downloadDelegate.destinationURL, + resumeData: self.downloadDelegate.resumeData, + error: self.downloadDelegate.error, + timeline: self.timeline + ) + + downloadResponse.add(self.delegate.metrics) + + completionHandler(downloadResponse) + } + } + + return self + } + + /// Adds a handler to be called once the request has finished. + /// + /// - parameter queue: The queue on which the completion handler is dispatched. + /// - parameter responseSerializer: The response serializer responsible for serializing the request, response, + /// and data contained in the destination url. + /// - parameter completionHandler: The code to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func response( + queue: DispatchQueue? = nil, + responseSerializer: T, + completionHandler: @escaping (DownloadResponse) -> Void) + -> Self + { + delegate.queue.addOperation { + let result = responseSerializer.serializeResponse( + self.request, + self.response, + self.downloadDelegate.fileURL, + self.downloadDelegate.error + ) + + var downloadResponse = DownloadResponse( + request: self.request, + response: self.response, + temporaryURL: self.downloadDelegate.temporaryURL, + destinationURL: self.downloadDelegate.destinationURL, + resumeData: self.downloadDelegate.resumeData, + result: result, + timeline: self.timeline + ) + + downloadResponse.add(self.delegate.metrics) + + (queue ?? DispatchQueue.main).async { completionHandler(downloadResponse) } + } + + return self + } +} + +// MARK: - Data + +extension Request { + /// Returns a result data type that contains the response data as-is. + /// + /// - parameter response: The response from the server. + /// - parameter data: The data returned from the server. + /// - parameter error: The error already encountered if it exists. + /// + /// - returns: The result data type. + public static func serializeResponseData(response: HTTPURLResponse?, data: Data?, error: Error?) -> Result { + guard error == nil else { return .failure(error!) } + + if let response = response, emptyDataStatusCodes.contains(response.statusCode) { return .success(Data()) } + + guard let validData = data else { + return .failure(AFError.responseSerializationFailed(reason: .inputDataNil)) + } + + return .success(validData) + } +} + +extension DataRequest { + /// Creates a response serializer that returns the associated data as-is. + /// + /// - returns: A data response serializer. + public static func dataResponseSerializer() -> DataResponseSerializer { + return DataResponseSerializer { _, response, data, error in + return Request.serializeResponseData(response: response, data: data, error: error) + } + } + + /// Adds a handler to be called once the request has finished. + /// + /// - parameter completionHandler: The code to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func responseData( + queue: DispatchQueue? = nil, + completionHandler: @escaping (DataResponse) -> Void) + -> Self + { + return response( + queue: queue, + responseSerializer: DataRequest.dataResponseSerializer(), + completionHandler: completionHandler + ) + } +} + +extension DownloadRequest { + /// Creates a response serializer that returns the associated data as-is. + /// + /// - returns: A data response serializer. + public static func dataResponseSerializer() -> DownloadResponseSerializer { + return DownloadResponseSerializer { _, response, fileURL, error in + guard error == nil else { return .failure(error!) } + + guard let fileURL = fileURL else { + return .failure(AFError.responseSerializationFailed(reason: .inputFileNil)) + } + + do { + let data = try Data(contentsOf: fileURL) + return Request.serializeResponseData(response: response, data: data, error: error) + } catch { + return .failure(AFError.responseSerializationFailed(reason: .inputFileReadFailed(at: fileURL))) + } + } + } + + /// Adds a handler to be called once the request has finished. + /// + /// - parameter completionHandler: The code to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func responseData( + queue: DispatchQueue? = nil, + completionHandler: @escaping (DownloadResponse) -> Void) + -> Self + { + return response( + queue: queue, + responseSerializer: DownloadRequest.dataResponseSerializer(), + completionHandler: completionHandler + ) + } +} + +// MARK: - String + +extension Request { + /// Returns a result string type initialized from the response data with the specified string encoding. + /// + /// - parameter encoding: The string encoding. If `nil`, the string encoding will be determined from the server + /// response, falling back to the default HTTP default character set, ISO-8859-1. + /// - parameter response: The response from the server. + /// - parameter data: The data returned from the server. + /// - parameter error: The error already encountered if it exists. + /// + /// - returns: The result data type. + public static func serializeResponseString( + encoding: String.Encoding?, + response: HTTPURLResponse?, + data: Data?, + error: Error?) + -> Result + { + guard error == nil else { return .failure(error!) } + + if let response = response, emptyDataStatusCodes.contains(response.statusCode) { return .success("") } + + guard let validData = data else { + return .failure(AFError.responseSerializationFailed(reason: .inputDataNil)) + } + + var convertedEncoding = encoding + + if let encodingName = response?.textEncodingName as CFString?, convertedEncoding == nil { + convertedEncoding = String.Encoding(rawValue: CFStringConvertEncodingToNSStringEncoding( + CFStringConvertIANACharSetNameToEncoding(encodingName)) + ) + } + + let actualEncoding = convertedEncoding ?? .isoLatin1 + + if let string = String(data: validData, encoding: actualEncoding) { + return .success(string) + } else { + return .failure(AFError.responseSerializationFailed(reason: .stringSerializationFailed(encoding: actualEncoding))) + } + } +} + +extension DataRequest { + /// Creates a response serializer that returns a result string type initialized from the response data with + /// the specified string encoding. + /// + /// - parameter encoding: The string encoding. If `nil`, the string encoding will be determined from the server + /// response, falling back to the default HTTP default character set, ISO-8859-1. + /// + /// - returns: A string response serializer. + public static func stringResponseSerializer(encoding: String.Encoding? = nil) -> DataResponseSerializer { + return DataResponseSerializer { _, response, data, error in + return Request.serializeResponseString(encoding: encoding, response: response, data: data, error: error) + } + } + + /// Adds a handler to be called once the request has finished. + /// + /// - parameter encoding: The string encoding. If `nil`, the string encoding will be determined from the + /// server response, falling back to the default HTTP default character set, + /// ISO-8859-1. + /// - parameter completionHandler: A closure to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func responseString( + queue: DispatchQueue? = nil, + encoding: String.Encoding? = nil, + completionHandler: @escaping (DataResponse) -> Void) + -> Self + { + return response( + queue: queue, + responseSerializer: DataRequest.stringResponseSerializer(encoding: encoding), + completionHandler: completionHandler + ) + } +} + +extension DownloadRequest { + /// Creates a response serializer that returns a result string type initialized from the response data with + /// the specified string encoding. + /// + /// - parameter encoding: The string encoding. If `nil`, the string encoding will be determined from the server + /// response, falling back to the default HTTP default character set, ISO-8859-1. + /// + /// - returns: A string response serializer. + public static func stringResponseSerializer(encoding: String.Encoding? = nil) -> DownloadResponseSerializer { + return DownloadResponseSerializer { _, response, fileURL, error in + guard error == nil else { return .failure(error!) } + + guard let fileURL = fileURL else { + return .failure(AFError.responseSerializationFailed(reason: .inputFileNil)) + } + + do { + let data = try Data(contentsOf: fileURL) + return Request.serializeResponseString(encoding: encoding, response: response, data: data, error: error) + } catch { + return .failure(AFError.responseSerializationFailed(reason: .inputFileReadFailed(at: fileURL))) + } + } + } + + /// Adds a handler to be called once the request has finished. + /// + /// - parameter encoding: The string encoding. If `nil`, the string encoding will be determined from the + /// server response, falling back to the default HTTP default character set, + /// ISO-8859-1. + /// - parameter completionHandler: A closure to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func responseString( + queue: DispatchQueue? = nil, + encoding: String.Encoding? = nil, + completionHandler: @escaping (DownloadResponse) -> Void) + -> Self + { + return response( + queue: queue, + responseSerializer: DownloadRequest.stringResponseSerializer(encoding: encoding), + completionHandler: completionHandler + ) + } +} + +// MARK: - JSON + +extension Request { + /// Returns a JSON object contained in a result type constructed from the response data using `JSONSerialization` + /// with the specified reading options. + /// + /// - parameter options: The JSON serialization reading options. Defaults to `.allowFragments`. + /// - parameter response: The response from the server. + /// - parameter data: The data returned from the server. + /// - parameter error: The error already encountered if it exists. + /// + /// - returns: The result data type. + public static func serializeResponseJSON( + options: JSONSerialization.ReadingOptions, + response: HTTPURLResponse?, + data: Data?, + error: Error?) + -> Result + { + guard error == nil else { return .failure(error!) } + + if let response = response, emptyDataStatusCodes.contains(response.statusCode) { return .success(NSNull()) } + + guard let validData = data, validData.count > 0 else { + return .failure(AFError.responseSerializationFailed(reason: .inputDataNilOrZeroLength)) + } + + do { + let json = try JSONSerialization.jsonObject(with: validData, options: options) + return .success(json) + } catch { + return .failure(AFError.responseSerializationFailed(reason: .jsonSerializationFailed(error: error))) + } + } +} + +extension DataRequest { + /// Creates a response serializer that returns a JSON object result type constructed from the response data using + /// `JSONSerialization` with the specified reading options. + /// + /// - parameter options: The JSON serialization reading options. Defaults to `.allowFragments`. + /// + /// - returns: A JSON object response serializer. + public static func jsonResponseSerializer( + options: JSONSerialization.ReadingOptions = .allowFragments) + -> DataResponseSerializer + { + return DataResponseSerializer { _, response, data, error in + return Request.serializeResponseJSON(options: options, response: response, data: data, error: error) + } + } + + /// Adds a handler to be called once the request has finished. + /// + /// - parameter options: The JSON serialization reading options. Defaults to `.allowFragments`. + /// - parameter completionHandler: A closure to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func responseJSON( + queue: DispatchQueue? = nil, + options: JSONSerialization.ReadingOptions = .allowFragments, + completionHandler: @escaping (DataResponse) -> Void) + -> Self + { + return response( + queue: queue, + responseSerializer: DataRequest.jsonResponseSerializer(options: options), + completionHandler: completionHandler + ) + } +} + +extension DownloadRequest { + /// Creates a response serializer that returns a JSON object result type constructed from the response data using + /// `JSONSerialization` with the specified reading options. + /// + /// - parameter options: The JSON serialization reading options. Defaults to `.allowFragments`. + /// + /// - returns: A JSON object response serializer. + public static func jsonResponseSerializer( + options: JSONSerialization.ReadingOptions = .allowFragments) + -> DownloadResponseSerializer + { + return DownloadResponseSerializer { _, response, fileURL, error in + guard error == nil else { return .failure(error!) } + + guard let fileURL = fileURL else { + return .failure(AFError.responseSerializationFailed(reason: .inputFileNil)) + } + + do { + let data = try Data(contentsOf: fileURL) + return Request.serializeResponseJSON(options: options, response: response, data: data, error: error) + } catch { + return .failure(AFError.responseSerializationFailed(reason: .inputFileReadFailed(at: fileURL))) + } + } + } + + /// Adds a handler to be called once the request has finished. + /// + /// - parameter options: The JSON serialization reading options. Defaults to `.allowFragments`. + /// - parameter completionHandler: A closure to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func responseJSON( + queue: DispatchQueue? = nil, + options: JSONSerialization.ReadingOptions = .allowFragments, + completionHandler: @escaping (DownloadResponse) -> Void) + -> Self + { + return response( + queue: queue, + responseSerializer: DownloadRequest.jsonResponseSerializer(options: options), + completionHandler: completionHandler + ) + } +} + +// MARK: - Property List + +extension Request { + /// Returns a plist object contained in a result type constructed from the response data using + /// `PropertyListSerialization` with the specified reading options. + /// + /// - parameter options: The property list reading options. Defaults to `[]`. + /// - parameter response: The response from the server. + /// - parameter data: The data returned from the server. + /// - parameter error: The error already encountered if it exists. + /// + /// - returns: The result data type. + public static func serializeResponsePropertyList( + options: PropertyListSerialization.ReadOptions, + response: HTTPURLResponse?, + data: Data?, + error: Error?) + -> Result + { + guard error == nil else { return .failure(error!) } + + if let response = response, emptyDataStatusCodes.contains(response.statusCode) { return .success(NSNull()) } + + guard let validData = data, validData.count > 0 else { + return .failure(AFError.responseSerializationFailed(reason: .inputDataNilOrZeroLength)) + } + + do { + let plist = try PropertyListSerialization.propertyList(from: validData, options: options, format: nil) + return .success(plist) + } catch { + return .failure(AFError.responseSerializationFailed(reason: .propertyListSerializationFailed(error: error))) + } + } +} + +extension DataRequest { + /// Creates a response serializer that returns an object constructed from the response data using + /// `PropertyListSerialization` with the specified reading options. + /// + /// - parameter options: The property list reading options. Defaults to `[]`. + /// + /// - returns: A property list object response serializer. + public static func propertyListResponseSerializer( + options: PropertyListSerialization.ReadOptions = []) + -> DataResponseSerializer + { + return DataResponseSerializer { _, response, data, error in + return Request.serializeResponsePropertyList(options: options, response: response, data: data, error: error) + } + } + + /// Adds a handler to be called once the request has finished. + /// + /// - parameter options: The property list reading options. Defaults to `[]`. + /// - parameter completionHandler: A closure to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func responsePropertyList( + queue: DispatchQueue? = nil, + options: PropertyListSerialization.ReadOptions = [], + completionHandler: @escaping (DataResponse) -> Void) + -> Self + { + return response( + queue: queue, + responseSerializer: DataRequest.propertyListResponseSerializer(options: options), + completionHandler: completionHandler + ) + } +} + +extension DownloadRequest { + /// Creates a response serializer that returns an object constructed from the response data using + /// `PropertyListSerialization` with the specified reading options. + /// + /// - parameter options: The property list reading options. Defaults to `[]`. + /// + /// - returns: A property list object response serializer. + public static func propertyListResponseSerializer( + options: PropertyListSerialization.ReadOptions = []) + -> DownloadResponseSerializer + { + return DownloadResponseSerializer { _, response, fileURL, error in + guard error == nil else { return .failure(error!) } + + guard let fileURL = fileURL else { + return .failure(AFError.responseSerializationFailed(reason: .inputFileNil)) + } + + do { + let data = try Data(contentsOf: fileURL) + return Request.serializeResponsePropertyList(options: options, response: response, data: data, error: error) + } catch { + return .failure(AFError.responseSerializationFailed(reason: .inputFileReadFailed(at: fileURL))) + } + } + } + + /// Adds a handler to be called once the request has finished. + /// + /// - parameter options: The property list reading options. Defaults to `[]`. + /// - parameter completionHandler: A closure to be executed once the request has finished. + /// + /// - returns: The request. + @discardableResult + public func responsePropertyList( + queue: DispatchQueue? = nil, + options: PropertyListSerialization.ReadOptions = [], + completionHandler: @escaping (DownloadResponse) -> Void) + -> Self + { + return response( + queue: queue, + responseSerializer: DownloadRequest.propertyListResponseSerializer(options: options), + completionHandler: completionHandler + ) + } +} + +/// A set of HTTP response status code that do not contain response data. +private let emptyDataStatusCodes: Set = [204, 205] diff --git a/tmp/Pods/Alamofire/Source/Result.swift b/tmp/Pods/Alamofire/Source/Result.swift new file mode 100644 index 0000000..df62e12 --- /dev/null +++ b/tmp/Pods/Alamofire/Source/Result.swift @@ -0,0 +1,300 @@ +// +// Result.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// Used to represent whether a request was successful or encountered an error. +/// +/// - success: The request and all post processing operations were successful resulting in the serialization of the +/// provided associated value. +/// +/// - failure: The request encountered an error resulting in a failure. The associated values are the original data +/// provided by the server as well as the error that caused the failure. +public enum Result { + case success(Value) + case failure(Error) + + /// Returns `true` if the result is a success, `false` otherwise. + public var isSuccess: Bool { + switch self { + case .success: + return true + case .failure: + return false + } + } + + /// Returns `true` if the result is a failure, `false` otherwise. + public var isFailure: Bool { + return !isSuccess + } + + /// Returns the associated value if the result is a success, `nil` otherwise. + public var value: Value? { + switch self { + case .success(let value): + return value + case .failure: + return nil + } + } + + /// Returns the associated error value if the result is a failure, `nil` otherwise. + public var error: Error? { + switch self { + case .success: + return nil + case .failure(let error): + return error + } + } +} + +// MARK: - CustomStringConvertible + +extension Result: CustomStringConvertible { + /// The textual representation used when written to an output stream, which includes whether the result was a + /// success or failure. + public var description: String { + switch self { + case .success: + return "SUCCESS" + case .failure: + return "FAILURE" + } + } +} + +// MARK: - CustomDebugStringConvertible + +extension Result: CustomDebugStringConvertible { + /// The debug textual representation used when written to an output stream, which includes whether the result was a + /// success or failure in addition to the value or error. + public var debugDescription: String { + switch self { + case .success(let value): + return "SUCCESS: \(value)" + case .failure(let error): + return "FAILURE: \(error)" + } + } +} + +// MARK: - Functional APIs + +extension Result { + /// Creates a `Result` instance from the result of a closure. + /// + /// A failure result is created when the closure throws, and a success result is created when the closure + /// succeeds without throwing an error. + /// + /// func someString() throws -> String { ... } + /// + /// let result = Result(value: { + /// return try someString() + /// }) + /// + /// // The type of result is Result + /// + /// The trailing closure syntax is also supported: + /// + /// let result = Result { try someString() } + /// + /// - parameter value: The closure to execute and create the result for. + public init(value: () throws -> Value) { + do { + self = try .success(value()) + } catch { + self = .failure(error) + } + } + + /// Returns the success value, or throws the failure error. + /// + /// let possibleString: Result = .success("success") + /// try print(possibleString.unwrap()) + /// // Prints "success" + /// + /// let noString: Result = .failure(error) + /// try print(noString.unwrap()) + /// // Throws error + public func unwrap() throws -> Value { + switch self { + case .success(let value): + return value + case .failure(let error): + throw error + } + } + + /// Evaluates the specified closure when the `Result` is a success, passing the unwrapped value as a parameter. + /// + /// Use the `map` method with a closure that does not throw. For example: + /// + /// let possibleData: Result = .success(Data()) + /// let possibleInt = possibleData.map { $0.count } + /// try print(possibleInt.unwrap()) + /// // Prints "0" + /// + /// let noData: Result = .failure(error) + /// let noInt = noData.map { $0.count } + /// try print(noInt.unwrap()) + /// // Throws error + /// + /// - parameter transform: A closure that takes the success value of the `Result` instance. + /// + /// - returns: A `Result` containing the result of the given closure. If this instance is a failure, returns the + /// same failure. + public func map(_ transform: (Value) -> T) -> Result { + switch self { + case .success(let value): + return .success(transform(value)) + case .failure(let error): + return .failure(error) + } + } + + /// Evaluates the specified closure when the `Result` is a success, passing the unwrapped value as a parameter. + /// + /// Use the `flatMap` method with a closure that may throw an error. For example: + /// + /// let possibleData: Result = .success(Data(...)) + /// let possibleObject = possibleData.flatMap { + /// try JSONSerialization.jsonObject(with: $0) + /// } + /// + /// - parameter transform: A closure that takes the success value of the instance. + /// + /// - returns: A `Result` containing the result of the given closure. If this instance is a failure, returns the + /// same failure. + public func flatMap(_ transform: (Value) throws -> T) -> Result { + switch self { + case .success(let value): + do { + return try .success(transform(value)) + } catch { + return .failure(error) + } + case .failure(let error): + return .failure(error) + } + } + + /// Evaluates the specified closure when the `Result` is a failure, passing the unwrapped error as a parameter. + /// + /// Use the `mapError` function with a closure that does not throw. For example: + /// + /// let possibleData: Result = .failure(someError) + /// let withMyError: Result = possibleData.mapError { MyError.error($0) } + /// + /// - Parameter transform: A closure that takes the error of the instance. + /// - Returns: A `Result` instance containing the result of the transform. If this instance is a success, returns + /// the same instance. + public func mapError(_ transform: (Error) -> T) -> Result { + switch self { + case .failure(let error): + return .failure(transform(error)) + case .success: + return self + } + } + + /// Evaluates the specified closure when the `Result` is a failure, passing the unwrapped error as a parameter. + /// + /// Use the `flatMapError` function with a closure that may throw an error. For example: + /// + /// let possibleData: Result = .success(Data(...)) + /// let possibleObject = possibleData.flatMapError { + /// try someFailableFunction(taking: $0) + /// } + /// + /// - Parameter transform: A throwing closure that takes the error of the instance. + /// + /// - Returns: A `Result` instance containing the result of the transform. If this instance is a success, returns + /// the same instance. + public func flatMapError(_ transform: (Error) throws -> T) -> Result { + switch self { + case .failure(let error): + do { + return try .failure(transform(error)) + } catch { + return .failure(error) + } + case .success: + return self + } + } + + /// Evaluates the specified closure when the `Result` is a success, passing the unwrapped value as a parameter. + /// + /// Use the `withValue` function to evaluate the passed closure without modifying the `Result` instance. + /// + /// - Parameter closure: A closure that takes the success value of this instance. + /// - Returns: This `Result` instance, unmodified. + @discardableResult + public func withValue(_ closure: (Value) -> Void) -> Result { + if case let .success(value) = self { closure(value) } + + return self + } + + /// Evaluates the specified closure when the `Result` is a failure, passing the unwrapped error as a parameter. + /// + /// Use the `withError` function to evaluate the passed closure without modifying the `Result` instance. + /// + /// - Parameter closure: A closure that takes the success value of this instance. + /// - Returns: This `Result` instance, unmodified. + @discardableResult + public func withError(_ closure: (Error) -> Void) -> Result { + if case let .failure(error) = self { closure(error) } + + return self + } + + /// Evaluates the specified closure when the `Result` is a success. + /// + /// Use the `ifSuccess` function to evaluate the passed closure without modifying the `Result` instance. + /// + /// - Parameter closure: A `Void` closure. + /// - Returns: This `Result` instance, unmodified. + @discardableResult + public func ifSuccess(_ closure: () -> Void) -> Result { + if isSuccess { closure() } + + return self + } + + /// Evaluates the specified closure when the `Result` is a failure. + /// + /// Use the `ifFailure` function to evaluate the passed closure without modifying the `Result` instance. + /// + /// - Parameter closure: A `Void` closure. + /// - Returns: This `Result` instance, unmodified. + @discardableResult + public func ifFailure(_ closure: () -> Void) -> Result { + if isFailure { closure() } + + return self + } +} diff --git a/tmp/Pods/Alamofire/Source/ServerTrustPolicy.swift b/tmp/Pods/Alamofire/Source/ServerTrustPolicy.swift new file mode 100644 index 0000000..a644ad8 --- /dev/null +++ b/tmp/Pods/Alamofire/Source/ServerTrustPolicy.swift @@ -0,0 +1,307 @@ +// +// ServerTrustPolicy.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// Responsible for managing the mapping of `ServerTrustPolicy` objects to a given host. +open class ServerTrustPolicyManager { + /// The dictionary of policies mapped to a particular host. + open let policies: [String: ServerTrustPolicy] + + /// Initializes the `ServerTrustPolicyManager` instance with the given policies. + /// + /// Since different servers and web services can have different leaf certificates, intermediate and even root + /// certficates, it is important to have the flexibility to specify evaluation policies on a per host basis. This + /// allows for scenarios such as using default evaluation for host1, certificate pinning for host2, public key + /// pinning for host3 and disabling evaluation for host4. + /// + /// - parameter policies: A dictionary of all policies mapped to a particular host. + /// + /// - returns: The new `ServerTrustPolicyManager` instance. + public init(policies: [String: ServerTrustPolicy]) { + self.policies = policies + } + + /// Returns the `ServerTrustPolicy` for the given host if applicable. + /// + /// By default, this method will return the policy that perfectly matches the given host. Subclasses could override + /// this method and implement more complex mapping implementations such as wildcards. + /// + /// - parameter host: The host to use when searching for a matching policy. + /// + /// - returns: The server trust policy for the given host if found. + open func serverTrustPolicy(forHost host: String) -> ServerTrustPolicy? { + return policies[host] + } +} + +// MARK: - + +extension URLSession { + private struct AssociatedKeys { + static var managerKey = "URLSession.ServerTrustPolicyManager" + } + + var serverTrustPolicyManager: ServerTrustPolicyManager? { + get { + return objc_getAssociatedObject(self, &AssociatedKeys.managerKey) as? ServerTrustPolicyManager + } + set (manager) { + objc_setAssociatedObject(self, &AssociatedKeys.managerKey, manager, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + } + } +} + +// MARK: - ServerTrustPolicy + +/// The `ServerTrustPolicy` evaluates the server trust generally provided by an `NSURLAuthenticationChallenge` when +/// connecting to a server over a secure HTTPS connection. The policy configuration then evaluates the server trust +/// with a given set of criteria to determine whether the server trust is valid and the connection should be made. +/// +/// Using pinned certificates or public keys for evaluation helps prevent man-in-the-middle (MITM) attacks and other +/// vulnerabilities. Applications dealing with sensitive customer data or financial information are strongly encouraged +/// to route all communication over an HTTPS connection with pinning enabled. +/// +/// - performDefaultEvaluation: Uses the default server trust evaluation while allowing you to control whether to +/// validate the host provided by the challenge. Applications are encouraged to always +/// validate the host in production environments to guarantee the validity of the server's +/// certificate chain. +/// +/// - performRevokedEvaluation: Uses the default and revoked server trust evaluations allowing you to control whether to +/// validate the host provided by the challenge as well as specify the revocation flags for +/// testing for revoked certificates. Apple platforms did not start testing for revoked +/// certificates automatically until iOS 10.1, macOS 10.12 and tvOS 10.1 which is +/// demonstrated in our TLS tests. Applications are encouraged to always validate the host +/// in production environments to guarantee the validity of the server's certificate chain. +/// +/// - pinCertificates: Uses the pinned certificates to validate the server trust. The server trust is +/// considered valid if one of the pinned certificates match one of the server certificates. +/// By validating both the certificate chain and host, certificate pinning provides a very +/// secure form of server trust validation mitigating most, if not all, MITM attacks. +/// Applications are encouraged to always validate the host and require a valid certificate +/// chain in production environments. +/// +/// - pinPublicKeys: Uses the pinned public keys to validate the server trust. The server trust is considered +/// valid if one of the pinned public keys match one of the server certificate public keys. +/// By validating both the certificate chain and host, public key pinning provides a very +/// secure form of server trust validation mitigating most, if not all, MITM attacks. +/// Applications are encouraged to always validate the host and require a valid certificate +/// chain in production environments. +/// +/// - disableEvaluation: Disables all evaluation which in turn will always consider any server trust as valid. +/// +/// - customEvaluation: Uses the associated closure to evaluate the validity of the server trust. +public enum ServerTrustPolicy { + case performDefaultEvaluation(validateHost: Bool) + case performRevokedEvaluation(validateHost: Bool, revocationFlags: CFOptionFlags) + case pinCertificates(certificates: [SecCertificate], validateCertificateChain: Bool, validateHost: Bool) + case pinPublicKeys(publicKeys: [SecKey], validateCertificateChain: Bool, validateHost: Bool) + case disableEvaluation + case customEvaluation((_ serverTrust: SecTrust, _ host: String) -> Bool) + + // MARK: - Bundle Location + + /// Returns all certificates within the given bundle with a `.cer` file extension. + /// + /// - parameter bundle: The bundle to search for all `.cer` files. + /// + /// - returns: All certificates within the given bundle. + public static func certificates(in bundle: Bundle = Bundle.main) -> [SecCertificate] { + var certificates: [SecCertificate] = [] + + let paths = Set([".cer", ".CER", ".crt", ".CRT", ".der", ".DER"].map { fileExtension in + bundle.paths(forResourcesOfType: fileExtension, inDirectory: nil) + }.joined()) + + for path in paths { + if + let certificateData = try? Data(contentsOf: URL(fileURLWithPath: path)) as CFData, + let certificate = SecCertificateCreateWithData(nil, certificateData) + { + certificates.append(certificate) + } + } + + return certificates + } + + /// Returns all public keys within the given bundle with a `.cer` file extension. + /// + /// - parameter bundle: The bundle to search for all `*.cer` files. + /// + /// - returns: All public keys within the given bundle. + public static func publicKeys(in bundle: Bundle = Bundle.main) -> [SecKey] { + var publicKeys: [SecKey] = [] + + for certificate in certificates(in: bundle) { + if let publicKey = publicKey(for: certificate) { + publicKeys.append(publicKey) + } + } + + return publicKeys + } + + // MARK: - Evaluation + + /// Evaluates whether the server trust is valid for the given host. + /// + /// - parameter serverTrust: The server trust to evaluate. + /// - parameter host: The host of the challenge protection space. + /// + /// - returns: Whether the server trust is valid. + public func evaluate(_ serverTrust: SecTrust, forHost host: String) -> Bool { + var serverTrustIsValid = false + + switch self { + case let .performDefaultEvaluation(validateHost): + let policy = SecPolicyCreateSSL(true, validateHost ? host as CFString : nil) + SecTrustSetPolicies(serverTrust, policy) + + serverTrustIsValid = trustIsValid(serverTrust) + case let .performRevokedEvaluation(validateHost, revocationFlags): + let defaultPolicy = SecPolicyCreateSSL(true, validateHost ? host as CFString : nil) + let revokedPolicy = SecPolicyCreateRevocation(revocationFlags) + SecTrustSetPolicies(serverTrust, [defaultPolicy, revokedPolicy] as CFTypeRef) + + serverTrustIsValid = trustIsValid(serverTrust) + case let .pinCertificates(pinnedCertificates, validateCertificateChain, validateHost): + if validateCertificateChain { + let policy = SecPolicyCreateSSL(true, validateHost ? host as CFString : nil) + SecTrustSetPolicies(serverTrust, policy) + + SecTrustSetAnchorCertificates(serverTrust, pinnedCertificates as CFArray) + SecTrustSetAnchorCertificatesOnly(serverTrust, true) + + serverTrustIsValid = trustIsValid(serverTrust) + } else { + let serverCertificatesDataArray = certificateData(for: serverTrust) + let pinnedCertificatesDataArray = certificateData(for: pinnedCertificates) + + outerLoop: for serverCertificateData in serverCertificatesDataArray { + for pinnedCertificateData in pinnedCertificatesDataArray { + if serverCertificateData == pinnedCertificateData { + serverTrustIsValid = true + break outerLoop + } + } + } + } + case let .pinPublicKeys(pinnedPublicKeys, validateCertificateChain, validateHost): + var certificateChainEvaluationPassed = true + + if validateCertificateChain { + let policy = SecPolicyCreateSSL(true, validateHost ? host as CFString : nil) + SecTrustSetPolicies(serverTrust, policy) + + certificateChainEvaluationPassed = trustIsValid(serverTrust) + } + + if certificateChainEvaluationPassed { + outerLoop: for serverPublicKey in ServerTrustPolicy.publicKeys(for: serverTrust) as [AnyObject] { + for pinnedPublicKey in pinnedPublicKeys as [AnyObject] { + if serverPublicKey.isEqual(pinnedPublicKey) { + serverTrustIsValid = true + break outerLoop + } + } + } + } + case .disableEvaluation: + serverTrustIsValid = true + case let .customEvaluation(closure): + serverTrustIsValid = closure(serverTrust, host) + } + + return serverTrustIsValid + } + + // MARK: - Private - Trust Validation + + private func trustIsValid(_ trust: SecTrust) -> Bool { + var isValid = false + + var result = SecTrustResultType.invalid + let status = SecTrustEvaluate(trust, &result) + + if status == errSecSuccess { + let unspecified = SecTrustResultType.unspecified + let proceed = SecTrustResultType.proceed + + + isValid = result == unspecified || result == proceed + } + + return isValid + } + + // MARK: - Private - Certificate Data + + private func certificateData(for trust: SecTrust) -> [Data] { + var certificates: [SecCertificate] = [] + + for index in 0.. [Data] { + return certificates.map { SecCertificateCopyData($0) as Data } + } + + // MARK: - Private - Public Key Extraction + + private static func publicKeys(for trust: SecTrust) -> [SecKey] { + var publicKeys: [SecKey] = [] + + for index in 0.. SecKey? { + var publicKey: SecKey? + + let policy = SecPolicyCreateBasicX509() + var trust: SecTrust? + let trustCreationStatus = SecTrustCreateWithCertificates(certificate, policy, &trust) + + if let trust = trust, trustCreationStatus == errSecSuccess { + publicKey = SecTrustCopyPublicKey(trust) + } + + return publicKey + } +} diff --git a/tmp/Pods/Alamofire/Source/SessionDelegate.swift b/tmp/Pods/Alamofire/Source/SessionDelegate.swift new file mode 100644 index 0000000..03bcb7c --- /dev/null +++ b/tmp/Pods/Alamofire/Source/SessionDelegate.swift @@ -0,0 +1,725 @@ +// +// SessionDelegate.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// Responsible for handling all delegate callbacks for the underlying session. +open class SessionDelegate: NSObject { + + // MARK: URLSessionDelegate Overrides + + /// Overrides default behavior for URLSessionDelegate method `urlSession(_:didBecomeInvalidWithError:)`. + open var sessionDidBecomeInvalidWithError: ((URLSession, Error?) -> Void)? + + /// Overrides default behavior for URLSessionDelegate method `urlSession(_:didReceive:completionHandler:)`. + open var sessionDidReceiveChallenge: ((URLSession, URLAuthenticationChallenge) -> (URLSession.AuthChallengeDisposition, URLCredential?))? + + /// Overrides all behavior for URLSessionDelegate method `urlSession(_:didReceive:completionHandler:)` and requires the caller to call the `completionHandler`. + open var sessionDidReceiveChallengeWithCompletion: ((URLSession, URLAuthenticationChallenge, @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) -> Void)? + + /// Overrides default behavior for URLSessionDelegate method `urlSessionDidFinishEvents(forBackgroundURLSession:)`. + open var sessionDidFinishEventsForBackgroundURLSession: ((URLSession) -> Void)? + + // MARK: URLSessionTaskDelegate Overrides + + /// Overrides default behavior for URLSessionTaskDelegate method `urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)`. + open var taskWillPerformHTTPRedirection: ((URLSession, URLSessionTask, HTTPURLResponse, URLRequest) -> URLRequest?)? + + /// Overrides all behavior for URLSessionTaskDelegate method `urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)` and + /// requires the caller to call the `completionHandler`. + open var taskWillPerformHTTPRedirectionWithCompletion: ((URLSession, URLSessionTask, HTTPURLResponse, URLRequest, @escaping (URLRequest?) -> Void) -> Void)? + + /// Overrides default behavior for URLSessionTaskDelegate method `urlSession(_:task:didReceive:completionHandler:)`. + open var taskDidReceiveChallenge: ((URLSession, URLSessionTask, URLAuthenticationChallenge) -> (URLSession.AuthChallengeDisposition, URLCredential?))? + + /// Overrides all behavior for URLSessionTaskDelegate method `urlSession(_:task:didReceive:completionHandler:)` and + /// requires the caller to call the `completionHandler`. + open var taskDidReceiveChallengeWithCompletion: ((URLSession, URLSessionTask, URLAuthenticationChallenge, @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) -> Void)? + + /// Overrides default behavior for URLSessionTaskDelegate method `urlSession(_:task:needNewBodyStream:)`. + open var taskNeedNewBodyStream: ((URLSession, URLSessionTask) -> InputStream?)? + + /// Overrides all behavior for URLSessionTaskDelegate method `urlSession(_:task:needNewBodyStream:)` and + /// requires the caller to call the `completionHandler`. + open var taskNeedNewBodyStreamWithCompletion: ((URLSession, URLSessionTask, @escaping (InputStream?) -> Void) -> Void)? + + /// Overrides default behavior for URLSessionTaskDelegate method `urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)`. + open var taskDidSendBodyData: ((URLSession, URLSessionTask, Int64, Int64, Int64) -> Void)? + + /// Overrides default behavior for URLSessionTaskDelegate method `urlSession(_:task:didCompleteWithError:)`. + open var taskDidComplete: ((URLSession, URLSessionTask, Error?) -> Void)? + + // MARK: URLSessionDataDelegate Overrides + + /// Overrides default behavior for URLSessionDataDelegate method `urlSession(_:dataTask:didReceive:completionHandler:)`. + open var dataTaskDidReceiveResponse: ((URLSession, URLSessionDataTask, URLResponse) -> URLSession.ResponseDisposition)? + + /// Overrides all behavior for URLSessionDataDelegate method `urlSession(_:dataTask:didReceive:completionHandler:)` and + /// requires caller to call the `completionHandler`. + open var dataTaskDidReceiveResponseWithCompletion: ((URLSession, URLSessionDataTask, URLResponse, @escaping (URLSession.ResponseDisposition) -> Void) -> Void)? + + /// Overrides default behavior for URLSessionDataDelegate method `urlSession(_:dataTask:didBecome:)`. + open var dataTaskDidBecomeDownloadTask: ((URLSession, URLSessionDataTask, URLSessionDownloadTask) -> Void)? + + /// Overrides default behavior for URLSessionDataDelegate method `urlSession(_:dataTask:didReceive:)`. + open var dataTaskDidReceiveData: ((URLSession, URLSessionDataTask, Data) -> Void)? + + /// Overrides default behavior for URLSessionDataDelegate method `urlSession(_:dataTask:willCacheResponse:completionHandler:)`. + open var dataTaskWillCacheResponse: ((URLSession, URLSessionDataTask, CachedURLResponse) -> CachedURLResponse?)? + + /// Overrides all behavior for URLSessionDataDelegate method `urlSession(_:dataTask:willCacheResponse:completionHandler:)` and + /// requires caller to call the `completionHandler`. + open var dataTaskWillCacheResponseWithCompletion: ((URLSession, URLSessionDataTask, CachedURLResponse, @escaping (CachedURLResponse?) -> Void) -> Void)? + + // MARK: URLSessionDownloadDelegate Overrides + + /// Overrides default behavior for URLSessionDownloadDelegate method `urlSession(_:downloadTask:didFinishDownloadingTo:)`. + open var downloadTaskDidFinishDownloadingToURL: ((URLSession, URLSessionDownloadTask, URL) -> Void)? + + /// Overrides default behavior for URLSessionDownloadDelegate method `urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)`. + open var downloadTaskDidWriteData: ((URLSession, URLSessionDownloadTask, Int64, Int64, Int64) -> Void)? + + /// Overrides default behavior for URLSessionDownloadDelegate method `urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)`. + open var downloadTaskDidResumeAtOffset: ((URLSession, URLSessionDownloadTask, Int64, Int64) -> Void)? + + // MARK: URLSessionStreamDelegate Overrides + +#if !os(watchOS) + + /// Overrides default behavior for URLSessionStreamDelegate method `urlSession(_:readClosedFor:)`. + @available(iOS 9.0, macOS 10.11, tvOS 9.0, *) + open var streamTaskReadClosed: ((URLSession, URLSessionStreamTask) -> Void)? { + get { + return _streamTaskReadClosed as? (URLSession, URLSessionStreamTask) -> Void + } + set { + _streamTaskReadClosed = newValue + } + } + + /// Overrides default behavior for URLSessionStreamDelegate method `urlSession(_:writeClosedFor:)`. + @available(iOS 9.0, macOS 10.11, tvOS 9.0, *) + open var streamTaskWriteClosed: ((URLSession, URLSessionStreamTask) -> Void)? { + get { + return _streamTaskWriteClosed as? (URLSession, URLSessionStreamTask) -> Void + } + set { + _streamTaskWriteClosed = newValue + } + } + + /// Overrides default behavior for URLSessionStreamDelegate method `urlSession(_:betterRouteDiscoveredFor:)`. + @available(iOS 9.0, macOS 10.11, tvOS 9.0, *) + open var streamTaskBetterRouteDiscovered: ((URLSession, URLSessionStreamTask) -> Void)? { + get { + return _streamTaskBetterRouteDiscovered as? (URLSession, URLSessionStreamTask) -> Void + } + set { + _streamTaskBetterRouteDiscovered = newValue + } + } + + /// Overrides default behavior for URLSessionStreamDelegate method `urlSession(_:streamTask:didBecome:outputStream:)`. + @available(iOS 9.0, macOS 10.11, tvOS 9.0, *) + open var streamTaskDidBecomeInputAndOutputStreams: ((URLSession, URLSessionStreamTask, InputStream, OutputStream) -> Void)? { + get { + return _streamTaskDidBecomeInputStream as? (URLSession, URLSessionStreamTask, InputStream, OutputStream) -> Void + } + set { + _streamTaskDidBecomeInputStream = newValue + } + } + + var _streamTaskReadClosed: Any? + var _streamTaskWriteClosed: Any? + var _streamTaskBetterRouteDiscovered: Any? + var _streamTaskDidBecomeInputStream: Any? + +#endif + + // MARK: Properties + + var retrier: RequestRetrier? + weak var sessionManager: SessionManager? + + var requests: [Int: Request] = [:] + private let lock = NSLock() + + /// Access the task delegate for the specified task in a thread-safe manner. + open subscript(task: URLSessionTask) -> Request? { + get { + lock.lock() ; defer { lock.unlock() } + return requests[task.taskIdentifier] + } + set { + lock.lock() ; defer { lock.unlock() } + requests[task.taskIdentifier] = newValue + } + } + + // MARK: Lifecycle + + /// Initializes the `SessionDelegate` instance. + /// + /// - returns: The new `SessionDelegate` instance. + public override init() { + super.init() + } + + // MARK: NSObject Overrides + + /// Returns a `Bool` indicating whether the `SessionDelegate` implements or inherits a method that can respond + /// to a specified message. + /// + /// - parameter selector: A selector that identifies a message. + /// + /// - returns: `true` if the receiver implements or inherits a method that can respond to selector, otherwise `false`. + open override func responds(to selector: Selector) -> Bool { + #if !os(macOS) + if selector == #selector(URLSessionDelegate.urlSessionDidFinishEvents(forBackgroundURLSession:)) { + return sessionDidFinishEventsForBackgroundURLSession != nil + } + #endif + + #if !os(watchOS) + if #available(iOS 9.0, macOS 10.11, tvOS 9.0, *) { + switch selector { + case #selector(URLSessionStreamDelegate.urlSession(_:readClosedFor:)): + return streamTaskReadClosed != nil + case #selector(URLSessionStreamDelegate.urlSession(_:writeClosedFor:)): + return streamTaskWriteClosed != nil + case #selector(URLSessionStreamDelegate.urlSession(_:betterRouteDiscoveredFor:)): + return streamTaskBetterRouteDiscovered != nil + case #selector(URLSessionStreamDelegate.urlSession(_:streamTask:didBecome:outputStream:)): + return streamTaskDidBecomeInputAndOutputStreams != nil + default: + break + } + } + #endif + + switch selector { + case #selector(URLSessionDelegate.urlSession(_:didBecomeInvalidWithError:)): + return sessionDidBecomeInvalidWithError != nil + case #selector(URLSessionDelegate.urlSession(_:didReceive:completionHandler:)): + return (sessionDidReceiveChallenge != nil || sessionDidReceiveChallengeWithCompletion != nil) + case #selector(URLSessionTaskDelegate.urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)): + return (taskWillPerformHTTPRedirection != nil || taskWillPerformHTTPRedirectionWithCompletion != nil) + case #selector(URLSessionDataDelegate.urlSession(_:dataTask:didReceive:completionHandler:)): + return (dataTaskDidReceiveResponse != nil || dataTaskDidReceiveResponseWithCompletion != nil) + default: + return type(of: self).instancesRespond(to: selector) + } + } +} + +// MARK: - URLSessionDelegate + +extension SessionDelegate: URLSessionDelegate { + /// Tells the delegate that the session has been invalidated. + /// + /// - parameter session: The session object that was invalidated. + /// - parameter error: The error that caused invalidation, or nil if the invalidation was explicit. + open func urlSession(_ session: URLSession, didBecomeInvalidWithError error: Error?) { + sessionDidBecomeInvalidWithError?(session, error) + } + + /// Requests credentials from the delegate in response to a session-level authentication request from the + /// remote server. + /// + /// - parameter session: The session containing the task that requested authentication. + /// - parameter challenge: An object that contains the request for authentication. + /// - parameter completionHandler: A handler that your delegate method must call providing the disposition + /// and credential. + open func urlSession( + _ session: URLSession, + didReceive challenge: URLAuthenticationChallenge, + completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) + { + guard sessionDidReceiveChallengeWithCompletion == nil else { + sessionDidReceiveChallengeWithCompletion?(session, challenge, completionHandler) + return + } + + var disposition: URLSession.AuthChallengeDisposition = .performDefaultHandling + var credential: URLCredential? + + if let sessionDidReceiveChallenge = sessionDidReceiveChallenge { + (disposition, credential) = sessionDidReceiveChallenge(session, challenge) + } else if challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust { + let host = challenge.protectionSpace.host + + if + let serverTrustPolicy = session.serverTrustPolicyManager?.serverTrustPolicy(forHost: host), + let serverTrust = challenge.protectionSpace.serverTrust + { + if serverTrustPolicy.evaluate(serverTrust, forHost: host) { + disposition = .useCredential + credential = URLCredential(trust: serverTrust) + } else { + disposition = .cancelAuthenticationChallenge + } + } + } + + completionHandler(disposition, credential) + } + +#if !os(macOS) + + /// Tells the delegate that all messages enqueued for a session have been delivered. + /// + /// - parameter session: The session that no longer has any outstanding requests. + open func urlSessionDidFinishEvents(forBackgroundURLSession session: URLSession) { + sessionDidFinishEventsForBackgroundURLSession?(session) + } + +#endif +} + +// MARK: - URLSessionTaskDelegate + +extension SessionDelegate: URLSessionTaskDelegate { + /// Tells the delegate that the remote server requested an HTTP redirect. + /// + /// - parameter session: The session containing the task whose request resulted in a redirect. + /// - parameter task: The task whose request resulted in a redirect. + /// - parameter response: An object containing the server’s response to the original request. + /// - parameter request: A URL request object filled out with the new location. + /// - parameter completionHandler: A closure that your handler should call with either the value of the request + /// parameter, a modified URL request object, or NULL to refuse the redirect and + /// return the body of the redirect response. + open func urlSession( + _ session: URLSession, + task: URLSessionTask, + willPerformHTTPRedirection response: HTTPURLResponse, + newRequest request: URLRequest, + completionHandler: @escaping (URLRequest?) -> Void) + { + guard taskWillPerformHTTPRedirectionWithCompletion == nil else { + taskWillPerformHTTPRedirectionWithCompletion?(session, task, response, request, completionHandler) + return + } + + var redirectRequest: URLRequest? = request + + if let taskWillPerformHTTPRedirection = taskWillPerformHTTPRedirection { + redirectRequest = taskWillPerformHTTPRedirection(session, task, response, request) + } + + completionHandler(redirectRequest) + } + + /// Requests credentials from the delegate in response to an authentication request from the remote server. + /// + /// - parameter session: The session containing the task whose request requires authentication. + /// - parameter task: The task whose request requires authentication. + /// - parameter challenge: An object that contains the request for authentication. + /// - parameter completionHandler: A handler that your delegate method must call providing the disposition + /// and credential. + open func urlSession( + _ session: URLSession, + task: URLSessionTask, + didReceive challenge: URLAuthenticationChallenge, + completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) + { + guard taskDidReceiveChallengeWithCompletion == nil else { + taskDidReceiveChallengeWithCompletion?(session, task, challenge, completionHandler) + return + } + + if let taskDidReceiveChallenge = taskDidReceiveChallenge { + let result = taskDidReceiveChallenge(session, task, challenge) + completionHandler(result.0, result.1) + } else if let delegate = self[task]?.delegate { + delegate.urlSession( + session, + task: task, + didReceive: challenge, + completionHandler: completionHandler + ) + } else { + urlSession(session, didReceive: challenge, completionHandler: completionHandler) + } + } + + /// Tells the delegate when a task requires a new request body stream to send to the remote server. + /// + /// - parameter session: The session containing the task that needs a new body stream. + /// - parameter task: The task that needs a new body stream. + /// - parameter completionHandler: A completion handler that your delegate method should call with the new body stream. + open func urlSession( + _ session: URLSession, + task: URLSessionTask, + needNewBodyStream completionHandler: @escaping (InputStream?) -> Void) + { + guard taskNeedNewBodyStreamWithCompletion == nil else { + taskNeedNewBodyStreamWithCompletion?(session, task, completionHandler) + return + } + + if let taskNeedNewBodyStream = taskNeedNewBodyStream { + completionHandler(taskNeedNewBodyStream(session, task)) + } else if let delegate = self[task]?.delegate { + delegate.urlSession(session, task: task, needNewBodyStream: completionHandler) + } + } + + /// Periodically informs the delegate of the progress of sending body content to the server. + /// + /// - parameter session: The session containing the data task. + /// - parameter task: The data task. + /// - parameter bytesSent: The number of bytes sent since the last time this delegate method was called. + /// - parameter totalBytesSent: The total number of bytes sent so far. + /// - parameter totalBytesExpectedToSend: The expected length of the body data. + open func urlSession( + _ session: URLSession, + task: URLSessionTask, + didSendBodyData bytesSent: Int64, + totalBytesSent: Int64, + totalBytesExpectedToSend: Int64) + { + if let taskDidSendBodyData = taskDidSendBodyData { + taskDidSendBodyData(session, task, bytesSent, totalBytesSent, totalBytesExpectedToSend) + } else if let delegate = self[task]?.delegate as? UploadTaskDelegate { + delegate.URLSession( + session, + task: task, + didSendBodyData: bytesSent, + totalBytesSent: totalBytesSent, + totalBytesExpectedToSend: totalBytesExpectedToSend + ) + } + } + +#if !os(watchOS) + + /// Tells the delegate that the session finished collecting metrics for the task. + /// + /// - parameter session: The session collecting the metrics. + /// - parameter task: The task whose metrics have been collected. + /// - parameter metrics: The collected metrics. + @available(iOS 10.0, macOS 10.12, tvOS 10.0, *) + @objc(URLSession:task:didFinishCollectingMetrics:) + open func urlSession(_ session: URLSession, task: URLSessionTask, didFinishCollecting metrics: URLSessionTaskMetrics) { + self[task]?.delegate.metrics = metrics + } + +#endif + + /// Tells the delegate that the task finished transferring data. + /// + /// - parameter session: The session containing the task whose request finished transferring data. + /// - parameter task: The task whose request finished transferring data. + /// - parameter error: If an error occurred, an error object indicating how the transfer failed, otherwise nil. + open func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) { + /// Executed after it is determined that the request is not going to be retried + let completeTask: (URLSession, URLSessionTask, Error?) -> Void = { [weak self] session, task, error in + guard let strongSelf = self else { return } + + strongSelf.taskDidComplete?(session, task, error) + + strongSelf[task]?.delegate.urlSession(session, task: task, didCompleteWithError: error) + + var userInfo: [String: Any] = [Notification.Key.Task: task] + + if let data = (strongSelf[task]?.delegate as? DataTaskDelegate)?.data { + userInfo[Notification.Key.ResponseData] = data + } + + NotificationCenter.default.post( + name: Notification.Name.Task.DidComplete, + object: strongSelf, + userInfo: userInfo + ) + + strongSelf[task] = nil + } + + guard let request = self[task], let sessionManager = sessionManager else { + completeTask(session, task, error) + return + } + + // Run all validations on the request before checking if an error occurred + request.validations.forEach { $0() } + + // Determine whether an error has occurred + var error: Error? = error + + if request.delegate.error != nil { + error = request.delegate.error + } + + /// If an error occurred and the retrier is set, asynchronously ask the retrier if the request + /// should be retried. Otherwise, complete the task by notifying the task delegate. + if let retrier = retrier, let error = error { + retrier.should(sessionManager, retry: request, with: error) { [weak self] shouldRetry, timeDelay in + guard shouldRetry else { completeTask(session, task, error) ; return } + + DispatchQueue.utility.after(timeDelay) { [weak self] in + guard let strongSelf = self else { return } + + let retrySucceeded = strongSelf.sessionManager?.retry(request) ?? false + + if retrySucceeded, let task = request.task { + strongSelf[task] = request + return + } else { + completeTask(session, task, error) + } + } + } + } else { + completeTask(session, task, error) + } + } +} + +// MARK: - URLSessionDataDelegate + +extension SessionDelegate: URLSessionDataDelegate { + /// Tells the delegate that the data task received the initial reply (headers) from the server. + /// + /// - parameter session: The session containing the data task that received an initial reply. + /// - parameter dataTask: The data task that received an initial reply. + /// - parameter response: A URL response object populated with headers. + /// - parameter completionHandler: A completion handler that your code calls to continue the transfer, passing a + /// constant to indicate whether the transfer should continue as a data task or + /// should become a download task. + open func urlSession( + _ session: URLSession, + dataTask: URLSessionDataTask, + didReceive response: URLResponse, + completionHandler: @escaping (URLSession.ResponseDisposition) -> Void) + { + guard dataTaskDidReceiveResponseWithCompletion == nil else { + dataTaskDidReceiveResponseWithCompletion?(session, dataTask, response, completionHandler) + return + } + + var disposition: URLSession.ResponseDisposition = .allow + + if let dataTaskDidReceiveResponse = dataTaskDidReceiveResponse { + disposition = dataTaskDidReceiveResponse(session, dataTask, response) + } + + completionHandler(disposition) + } + + /// Tells the delegate that the data task was changed to a download task. + /// + /// - parameter session: The session containing the task that was replaced by a download task. + /// - parameter dataTask: The data task that was replaced by a download task. + /// - parameter downloadTask: The new download task that replaced the data task. + open func urlSession( + _ session: URLSession, + dataTask: URLSessionDataTask, + didBecome downloadTask: URLSessionDownloadTask) + { + if let dataTaskDidBecomeDownloadTask = dataTaskDidBecomeDownloadTask { + dataTaskDidBecomeDownloadTask(session, dataTask, downloadTask) + } else { + self[downloadTask]?.delegate = DownloadTaskDelegate(task: downloadTask) + } + } + + /// Tells the delegate that the data task has received some of the expected data. + /// + /// - parameter session: The session containing the data task that provided data. + /// - parameter dataTask: The data task that provided data. + /// - parameter data: A data object containing the transferred data. + open func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) { + if let dataTaskDidReceiveData = dataTaskDidReceiveData { + dataTaskDidReceiveData(session, dataTask, data) + } else if let delegate = self[dataTask]?.delegate as? DataTaskDelegate { + delegate.urlSession(session, dataTask: dataTask, didReceive: data) + } + } + + /// Asks the delegate whether the data (or upload) task should store the response in the cache. + /// + /// - parameter session: The session containing the data (or upload) task. + /// - parameter dataTask: The data (or upload) task. + /// - parameter proposedResponse: The default caching behavior. This behavior is determined based on the current + /// caching policy and the values of certain received headers, such as the Pragma + /// and Cache-Control headers. + /// - parameter completionHandler: A block that your handler must call, providing either the original proposed + /// response, a modified version of that response, or NULL to prevent caching the + /// response. If your delegate implements this method, it must call this completion + /// handler; otherwise, your app leaks memory. + open func urlSession( + _ session: URLSession, + dataTask: URLSessionDataTask, + willCacheResponse proposedResponse: CachedURLResponse, + completionHandler: @escaping (CachedURLResponse?) -> Void) + { + guard dataTaskWillCacheResponseWithCompletion == nil else { + dataTaskWillCacheResponseWithCompletion?(session, dataTask, proposedResponse, completionHandler) + return + } + + if let dataTaskWillCacheResponse = dataTaskWillCacheResponse { + completionHandler(dataTaskWillCacheResponse(session, dataTask, proposedResponse)) + } else if let delegate = self[dataTask]?.delegate as? DataTaskDelegate { + delegate.urlSession( + session, + dataTask: dataTask, + willCacheResponse: proposedResponse, + completionHandler: completionHandler + ) + } else { + completionHandler(proposedResponse) + } + } +} + +// MARK: - URLSessionDownloadDelegate + +extension SessionDelegate: URLSessionDownloadDelegate { + /// Tells the delegate that a download task has finished downloading. + /// + /// - parameter session: The session containing the download task that finished. + /// - parameter downloadTask: The download task that finished. + /// - parameter location: A file URL for the temporary file. Because the file is temporary, you must either + /// open the file for reading or move it to a permanent location in your app’s sandbox + /// container directory before returning from this delegate method. + open func urlSession( + _ session: URLSession, + downloadTask: URLSessionDownloadTask, + didFinishDownloadingTo location: URL) + { + if let downloadTaskDidFinishDownloadingToURL = downloadTaskDidFinishDownloadingToURL { + downloadTaskDidFinishDownloadingToURL(session, downloadTask, location) + } else if let delegate = self[downloadTask]?.delegate as? DownloadTaskDelegate { + delegate.urlSession(session, downloadTask: downloadTask, didFinishDownloadingTo: location) + } + } + + /// Periodically informs the delegate about the download’s progress. + /// + /// - parameter session: The session containing the download task. + /// - parameter downloadTask: The download task. + /// - parameter bytesWritten: The number of bytes transferred since the last time this delegate + /// method was called. + /// - parameter totalBytesWritten: The total number of bytes transferred so far. + /// - parameter totalBytesExpectedToWrite: The expected length of the file, as provided by the Content-Length + /// header. If this header was not provided, the value is + /// `NSURLSessionTransferSizeUnknown`. + open func urlSession( + _ session: URLSession, + downloadTask: URLSessionDownloadTask, + didWriteData bytesWritten: Int64, + totalBytesWritten: Int64, + totalBytesExpectedToWrite: Int64) + { + if let downloadTaskDidWriteData = downloadTaskDidWriteData { + downloadTaskDidWriteData(session, downloadTask, bytesWritten, totalBytesWritten, totalBytesExpectedToWrite) + } else if let delegate = self[downloadTask]?.delegate as? DownloadTaskDelegate { + delegate.urlSession( + session, + downloadTask: downloadTask, + didWriteData: bytesWritten, + totalBytesWritten: totalBytesWritten, + totalBytesExpectedToWrite: totalBytesExpectedToWrite + ) + } + } + + /// Tells the delegate that the download task has resumed downloading. + /// + /// - parameter session: The session containing the download task that finished. + /// - parameter downloadTask: The download task that resumed. See explanation in the discussion. + /// - parameter fileOffset: If the file's cache policy or last modified date prevents reuse of the + /// existing content, then this value is zero. Otherwise, this value is an + /// integer representing the number of bytes on disk that do not need to be + /// retrieved again. + /// - parameter expectedTotalBytes: The expected length of the file, as provided by the Content-Length header. + /// If this header was not provided, the value is NSURLSessionTransferSizeUnknown. + open func urlSession( + _ session: URLSession, + downloadTask: URLSessionDownloadTask, + didResumeAtOffset fileOffset: Int64, + expectedTotalBytes: Int64) + { + if let downloadTaskDidResumeAtOffset = downloadTaskDidResumeAtOffset { + downloadTaskDidResumeAtOffset(session, downloadTask, fileOffset, expectedTotalBytes) + } else if let delegate = self[downloadTask]?.delegate as? DownloadTaskDelegate { + delegate.urlSession( + session, + downloadTask: downloadTask, + didResumeAtOffset: fileOffset, + expectedTotalBytes: expectedTotalBytes + ) + } + } +} + +// MARK: - URLSessionStreamDelegate + +#if !os(watchOS) + +@available(iOS 9.0, macOS 10.11, tvOS 9.0, *) +extension SessionDelegate: URLSessionStreamDelegate { + /// Tells the delegate that the read side of the connection has been closed. + /// + /// - parameter session: The session. + /// - parameter streamTask: The stream task. + open func urlSession(_ session: URLSession, readClosedFor streamTask: URLSessionStreamTask) { + streamTaskReadClosed?(session, streamTask) + } + + /// Tells the delegate that the write side of the connection has been closed. + /// + /// - parameter session: The session. + /// - parameter streamTask: The stream task. + open func urlSession(_ session: URLSession, writeClosedFor streamTask: URLSessionStreamTask) { + streamTaskWriteClosed?(session, streamTask) + } + + /// Tells the delegate that the system has determined that a better route to the host is available. + /// + /// - parameter session: The session. + /// - parameter streamTask: The stream task. + open func urlSession(_ session: URLSession, betterRouteDiscoveredFor streamTask: URLSessionStreamTask) { + streamTaskBetterRouteDiscovered?(session, streamTask) + } + + /// Tells the delegate that the stream task has been completed and provides the unopened stream objects. + /// + /// - parameter session: The session. + /// - parameter streamTask: The stream task. + /// - parameter inputStream: The new input stream. + /// - parameter outputStream: The new output stream. + open func urlSession( + _ session: URLSession, + streamTask: URLSessionStreamTask, + didBecome inputStream: InputStream, + outputStream: OutputStream) + { + streamTaskDidBecomeInputAndOutputStreams?(session, streamTask, inputStream, outputStream) + } +} + +#endif diff --git a/tmp/Pods/Alamofire/Source/SessionManager.swift b/tmp/Pods/Alamofire/Source/SessionManager.swift new file mode 100644 index 0000000..a9d0ae6 --- /dev/null +++ b/tmp/Pods/Alamofire/Source/SessionManager.swift @@ -0,0 +1,896 @@ +// +// SessionManager.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// Responsible for creating and managing `Request` objects, as well as their underlying `NSURLSession`. +open class SessionManager { + + // MARK: - Helper Types + + /// Defines whether the `MultipartFormData` encoding was successful and contains result of the encoding as + /// associated values. + /// + /// - Success: Represents a successful `MultipartFormData` encoding and contains the new `UploadRequest` along with + /// streaming information. + /// - Failure: Used to represent a failure in the `MultipartFormData` encoding and also contains the encoding + /// error. + public enum MultipartFormDataEncodingResult { + case success(request: UploadRequest, streamingFromDisk: Bool, streamFileURL: URL?) + case failure(Error) + } + + // MARK: - Properties + + /// A default instance of `SessionManager`, used by top-level Alamofire request methods, and suitable for use + /// directly for any ad hoc requests. + open static let `default`: SessionManager = { + let configuration = URLSessionConfiguration.default + configuration.httpAdditionalHeaders = SessionManager.defaultHTTPHeaders + + return SessionManager(configuration: configuration) + }() + + /// Creates default values for the "Accept-Encoding", "Accept-Language" and "User-Agent" headers. + open static let defaultHTTPHeaders: HTTPHeaders = { + // Accept-Encoding HTTP Header; see https://tools.ietf.org/html/rfc7230#section-4.2.3 + let acceptEncoding: String = "gzip;q=1.0, compress;q=0.5" + + // Accept-Language HTTP Header; see https://tools.ietf.org/html/rfc7231#section-5.3.5 + let acceptLanguage = Locale.preferredLanguages.prefix(6).enumerated().map { index, languageCode in + let quality = 1.0 - (Double(index) * 0.1) + return "\(languageCode);q=\(quality)" + }.joined(separator: ", ") + + // User-Agent Header; see https://tools.ietf.org/html/rfc7231#section-5.5.3 + // Example: `iOS Example/1.0 (org.alamofire.iOS-Example; build:1; iOS 10.0.0) Alamofire/4.0.0` + let userAgent: String = { + if let info = Bundle.main.infoDictionary { + let executable = info[kCFBundleExecutableKey as String] as? String ?? "Unknown" + let bundle = info[kCFBundleIdentifierKey as String] as? String ?? "Unknown" + let appVersion = info["CFBundleShortVersionString"] as? String ?? "Unknown" + let appBuild = info[kCFBundleVersionKey as String] as? String ?? "Unknown" + + let osNameVersion: String = { + let version = ProcessInfo.processInfo.operatingSystemVersion + let versionString = "\(version.majorVersion).\(version.minorVersion).\(version.patchVersion)" + + let osName: String = { + #if os(iOS) + return "iOS" + #elseif os(watchOS) + return "watchOS" + #elseif os(tvOS) + return "tvOS" + #elseif os(macOS) + return "OS X" + #elseif os(Linux) + return "Linux" + #else + return "Unknown" + #endif + }() + + return "\(osName) \(versionString)" + }() + + let alamofireVersion: String = { + guard + let afInfo = Bundle(for: SessionManager.self).infoDictionary, + let build = afInfo["CFBundleShortVersionString"] + else { return "Unknown" } + + return "Alamofire/\(build)" + }() + + return "\(executable)/\(appVersion) (\(bundle); build:\(appBuild); \(osNameVersion)) \(alamofireVersion)" + } + + return "Alamofire" + }() + + return [ + "Accept-Encoding": acceptEncoding, + "Accept-Language": acceptLanguage, + "User-Agent": userAgent + ] + }() + + /// Default memory threshold used when encoding `MultipartFormData` in bytes. + open static let multipartFormDataEncodingMemoryThreshold: UInt64 = 10_000_000 + + /// The underlying session. + open let session: URLSession + + /// The session delegate handling all the task and session delegate callbacks. + open let delegate: SessionDelegate + + /// Whether to start requests immediately after being constructed. `true` by default. + open var startRequestsImmediately: Bool = true + + /// The request adapter called each time a new request is created. + open var adapter: RequestAdapter? + + /// The request retrier called each time a request encounters an error to determine whether to retry the request. + open var retrier: RequestRetrier? { + get { return delegate.retrier } + set { delegate.retrier = newValue } + } + + /// The background completion handler closure provided by the UIApplicationDelegate + /// `application:handleEventsForBackgroundURLSession:completionHandler:` method. By setting the background + /// completion handler, the SessionDelegate `sessionDidFinishEventsForBackgroundURLSession` closure implementation + /// will automatically call the handler. + /// + /// If you need to handle your own events before the handler is called, then you need to override the + /// SessionDelegate `sessionDidFinishEventsForBackgroundURLSession` and manually call the handler when finished. + /// + /// `nil` by default. + open var backgroundCompletionHandler: (() -> Void)? + + let queue = DispatchQueue(label: "org.alamofire.session-manager." + UUID().uuidString) + + // MARK: - Lifecycle + + /// Creates an instance with the specified `configuration`, `delegate` and `serverTrustPolicyManager`. + /// + /// - parameter configuration: The configuration used to construct the managed session. + /// `URLSessionConfiguration.default` by default. + /// - parameter delegate: The delegate used when initializing the session. `SessionDelegate()` by + /// default. + /// - parameter serverTrustPolicyManager: The server trust policy manager to use for evaluating all server trust + /// challenges. `nil` by default. + /// + /// - returns: The new `SessionManager` instance. + public init( + configuration: URLSessionConfiguration = URLSessionConfiguration.default, + delegate: SessionDelegate = SessionDelegate(), + serverTrustPolicyManager: ServerTrustPolicyManager? = nil) + { + self.delegate = delegate + self.session = URLSession(configuration: configuration, delegate: delegate, delegateQueue: nil) + + commonInit(serverTrustPolicyManager: serverTrustPolicyManager) + } + + /// Creates an instance with the specified `session`, `delegate` and `serverTrustPolicyManager`. + /// + /// - parameter session: The URL session. + /// - parameter delegate: The delegate of the URL session. Must equal the URL session's delegate. + /// - parameter serverTrustPolicyManager: The server trust policy manager to use for evaluating all server trust + /// challenges. `nil` by default. + /// + /// - returns: The new `SessionManager` instance if the URL session's delegate matches; `nil` otherwise. + public init?( + session: URLSession, + delegate: SessionDelegate, + serverTrustPolicyManager: ServerTrustPolicyManager? = nil) + { + guard delegate === session.delegate else { return nil } + + self.delegate = delegate + self.session = session + + commonInit(serverTrustPolicyManager: serverTrustPolicyManager) + } + + private func commonInit(serverTrustPolicyManager: ServerTrustPolicyManager?) { + session.serverTrustPolicyManager = serverTrustPolicyManager + + delegate.sessionManager = self + + delegate.sessionDidFinishEventsForBackgroundURLSession = { [weak self] session in + guard let strongSelf = self else { return } + DispatchQueue.main.async { strongSelf.backgroundCompletionHandler?() } + } + } + + deinit { + session.invalidateAndCancel() + } + + // MARK: - Data Request + + /// Creates a `DataRequest` to retrieve the contents of the specified `url`, `method`, `parameters`, `encoding` + /// and `headers`. + /// + /// - parameter url: The URL. + /// - parameter method: The HTTP method. `.get` by default. + /// - parameter parameters: The parameters. `nil` by default. + /// - parameter encoding: The parameter encoding. `URLEncoding.default` by default. + /// - parameter headers: The HTTP headers. `nil` by default. + /// + /// - returns: The created `DataRequest`. + @discardableResult + open func request( + _ url: URLConvertible, + method: HTTPMethod = .get, + parameters: Parameters? = nil, + encoding: ParameterEncoding = URLEncoding.default, + headers: HTTPHeaders? = nil) + -> DataRequest + { + var originalRequest: URLRequest? + + do { + originalRequest = try URLRequest(url: url, method: method, headers: headers) + let encodedURLRequest = try encoding.encode(originalRequest!, with: parameters) + return request(encodedURLRequest) + } catch { + return request(originalRequest, failedWith: error) + } + } + + /// Creates a `DataRequest` to retrieve the contents of a URL based on the specified `urlRequest`. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter urlRequest: The URL request. + /// + /// - returns: The created `DataRequest`. + @discardableResult + open func request(_ urlRequest: URLRequestConvertible) -> DataRequest { + var originalRequest: URLRequest? + + do { + originalRequest = try urlRequest.asURLRequest() + let originalTask = DataRequest.Requestable(urlRequest: originalRequest!) + + let task = try originalTask.task(session: session, adapter: adapter, queue: queue) + let request = DataRequest(session: session, requestTask: .data(originalTask, task)) + + delegate[task] = request + + if startRequestsImmediately { request.resume() } + + return request + } catch { + return request(originalRequest, failedWith: error) + } + } + + // MARK: Private - Request Implementation + + private func request(_ urlRequest: URLRequest?, failedWith error: Error) -> DataRequest { + var requestTask: Request.RequestTask = .data(nil, nil) + + if let urlRequest = urlRequest { + let originalTask = DataRequest.Requestable(urlRequest: urlRequest) + requestTask = .data(originalTask, nil) + } + + let underlyingError = error.underlyingAdaptError ?? error + let request = DataRequest(session: session, requestTask: requestTask, error: underlyingError) + + if let retrier = retrier, error is AdaptError { + allowRetrier(retrier, toRetry: request, with: underlyingError) + } else { + if startRequestsImmediately { request.resume() } + } + + return request + } + + // MARK: - Download Request + + // MARK: URL Request + + /// Creates a `DownloadRequest` to retrieve the contents the specified `url`, `method`, `parameters`, `encoding`, + /// `headers` and save them to the `destination`. + /// + /// If `destination` is not specified, the contents will remain in the temporary location determined by the + /// underlying URL session. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter url: The URL. + /// - parameter method: The HTTP method. `.get` by default. + /// - parameter parameters: The parameters. `nil` by default. + /// - parameter encoding: The parameter encoding. `URLEncoding.default` by default. + /// - parameter headers: The HTTP headers. `nil` by default. + /// - parameter destination: The closure used to determine the destination of the downloaded file. `nil` by default. + /// + /// - returns: The created `DownloadRequest`. + @discardableResult + open func download( + _ url: URLConvertible, + method: HTTPMethod = .get, + parameters: Parameters? = nil, + encoding: ParameterEncoding = URLEncoding.default, + headers: HTTPHeaders? = nil, + to destination: DownloadRequest.DownloadFileDestination? = nil) + -> DownloadRequest + { + do { + let urlRequest = try URLRequest(url: url, method: method, headers: headers) + let encodedURLRequest = try encoding.encode(urlRequest, with: parameters) + return download(encodedURLRequest, to: destination) + } catch { + return download(nil, to: destination, failedWith: error) + } + } + + /// Creates a `DownloadRequest` to retrieve the contents of a URL based on the specified `urlRequest` and save + /// them to the `destination`. + /// + /// If `destination` is not specified, the contents will remain in the temporary location determined by the + /// underlying URL session. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter urlRequest: The URL request + /// - parameter destination: The closure used to determine the destination of the downloaded file. `nil` by default. + /// + /// - returns: The created `DownloadRequest`. + @discardableResult + open func download( + _ urlRequest: URLRequestConvertible, + to destination: DownloadRequest.DownloadFileDestination? = nil) + -> DownloadRequest + { + do { + let urlRequest = try urlRequest.asURLRequest() + return download(.request(urlRequest), to: destination) + } catch { + return download(nil, to: destination, failedWith: error) + } + } + + // MARK: Resume Data + + /// Creates a `DownloadRequest` from the `resumeData` produced from a previous request cancellation to retrieve + /// the contents of the original request and save them to the `destination`. + /// + /// If `destination` is not specified, the contents will remain in the temporary location determined by the + /// underlying URL session. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// On the latest release of all the Apple platforms (iOS 10, macOS 10.12, tvOS 10, watchOS 3), `resumeData` is broken + /// on background URL session configurations. There's an underlying bug in the `resumeData` generation logic where the + /// data is written incorrectly and will always fail to resume the download. For more information about the bug and + /// possible workarounds, please refer to the following Stack Overflow post: + /// + /// - http://stackoverflow.com/a/39347461/1342462 + /// + /// - parameter resumeData: The resume data. This is an opaque data blob produced by `URLSessionDownloadTask` + /// when a task is cancelled. See `URLSession -downloadTask(withResumeData:)` for + /// additional information. + /// - parameter destination: The closure used to determine the destination of the downloaded file. `nil` by default. + /// + /// - returns: The created `DownloadRequest`. + @discardableResult + open func download( + resumingWith resumeData: Data, + to destination: DownloadRequest.DownloadFileDestination? = nil) + -> DownloadRequest + { + return download(.resumeData(resumeData), to: destination) + } + + // MARK: Private - Download Implementation + + private func download( + _ downloadable: DownloadRequest.Downloadable, + to destination: DownloadRequest.DownloadFileDestination?) + -> DownloadRequest + { + do { + let task = try downloadable.task(session: session, adapter: adapter, queue: queue) + let download = DownloadRequest(session: session, requestTask: .download(downloadable, task)) + + download.downloadDelegate.destination = destination + + delegate[task] = download + + if startRequestsImmediately { download.resume() } + + return download + } catch { + return download(downloadable, to: destination, failedWith: error) + } + } + + private func download( + _ downloadable: DownloadRequest.Downloadable?, + to destination: DownloadRequest.DownloadFileDestination?, + failedWith error: Error) + -> DownloadRequest + { + var downloadTask: Request.RequestTask = .download(nil, nil) + + if let downloadable = downloadable { + downloadTask = .download(downloadable, nil) + } + + let underlyingError = error.underlyingAdaptError ?? error + + let download = DownloadRequest(session: session, requestTask: downloadTask, error: underlyingError) + download.downloadDelegate.destination = destination + + if let retrier = retrier, error is AdaptError { + allowRetrier(retrier, toRetry: download, with: underlyingError) + } else { + if startRequestsImmediately { download.resume() } + } + + return download + } + + // MARK: - Upload Request + + // MARK: File + + /// Creates an `UploadRequest` from the specified `url`, `method` and `headers` for uploading the `file`. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter file: The file to upload. + /// - parameter url: The URL. + /// - parameter method: The HTTP method. `.post` by default. + /// - parameter headers: The HTTP headers. `nil` by default. + /// + /// - returns: The created `UploadRequest`. + @discardableResult + open func upload( + _ fileURL: URL, + to url: URLConvertible, + method: HTTPMethod = .post, + headers: HTTPHeaders? = nil) + -> UploadRequest + { + do { + let urlRequest = try URLRequest(url: url, method: method, headers: headers) + return upload(fileURL, with: urlRequest) + } catch { + return upload(nil, failedWith: error) + } + } + + /// Creates a `UploadRequest` from the specified `urlRequest` for uploading the `file`. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter file: The file to upload. + /// - parameter urlRequest: The URL request. + /// + /// - returns: The created `UploadRequest`. + @discardableResult + open func upload(_ fileURL: URL, with urlRequest: URLRequestConvertible) -> UploadRequest { + do { + let urlRequest = try urlRequest.asURLRequest() + return upload(.file(fileURL, urlRequest)) + } catch { + return upload(nil, failedWith: error) + } + } + + // MARK: Data + + /// Creates an `UploadRequest` from the specified `url`, `method` and `headers` for uploading the `data`. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter data: The data to upload. + /// - parameter url: The URL. + /// - parameter method: The HTTP method. `.post` by default. + /// - parameter headers: The HTTP headers. `nil` by default. + /// + /// - returns: The created `UploadRequest`. + @discardableResult + open func upload( + _ data: Data, + to url: URLConvertible, + method: HTTPMethod = .post, + headers: HTTPHeaders? = nil) + -> UploadRequest + { + do { + let urlRequest = try URLRequest(url: url, method: method, headers: headers) + return upload(data, with: urlRequest) + } catch { + return upload(nil, failedWith: error) + } + } + + /// Creates an `UploadRequest` from the specified `urlRequest` for uploading the `data`. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter data: The data to upload. + /// - parameter urlRequest: The URL request. + /// + /// - returns: The created `UploadRequest`. + @discardableResult + open func upload(_ data: Data, with urlRequest: URLRequestConvertible) -> UploadRequest { + do { + let urlRequest = try urlRequest.asURLRequest() + return upload(.data(data, urlRequest)) + } catch { + return upload(nil, failedWith: error) + } + } + + // MARK: InputStream + + /// Creates an `UploadRequest` from the specified `url`, `method` and `headers` for uploading the `stream`. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter stream: The stream to upload. + /// - parameter url: The URL. + /// - parameter method: The HTTP method. `.post` by default. + /// - parameter headers: The HTTP headers. `nil` by default. + /// + /// - returns: The created `UploadRequest`. + @discardableResult + open func upload( + _ stream: InputStream, + to url: URLConvertible, + method: HTTPMethod = .post, + headers: HTTPHeaders? = nil) + -> UploadRequest + { + do { + let urlRequest = try URLRequest(url: url, method: method, headers: headers) + return upload(stream, with: urlRequest) + } catch { + return upload(nil, failedWith: error) + } + } + + /// Creates an `UploadRequest` from the specified `urlRequest` for uploading the `stream`. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter stream: The stream to upload. + /// - parameter urlRequest: The URL request. + /// + /// - returns: The created `UploadRequest`. + @discardableResult + open func upload(_ stream: InputStream, with urlRequest: URLRequestConvertible) -> UploadRequest { + do { + let urlRequest = try urlRequest.asURLRequest() + return upload(.stream(stream, urlRequest)) + } catch { + return upload(nil, failedWith: error) + } + } + + // MARK: MultipartFormData + + /// Encodes `multipartFormData` using `encodingMemoryThreshold` and calls `encodingCompletion` with new + /// `UploadRequest` using the `url`, `method` and `headers`. + /// + /// It is important to understand the memory implications of uploading `MultipartFormData`. If the cummulative + /// payload is small, encoding the data in-memory and directly uploading to a server is the by far the most + /// efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to + /// be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory + /// footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be + /// used for larger payloads such as video content. + /// + /// The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory + /// or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`, + /// encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk + /// during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding + /// technique was used. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. + /// - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. + /// `multipartFormDataEncodingMemoryThreshold` by default. + /// - parameter url: The URL. + /// - parameter method: The HTTP method. `.post` by default. + /// - parameter headers: The HTTP headers. `nil` by default. + /// - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. + open func upload( + multipartFormData: @escaping (MultipartFormData) -> Void, + usingThreshold encodingMemoryThreshold: UInt64 = SessionManager.multipartFormDataEncodingMemoryThreshold, + to url: URLConvertible, + method: HTTPMethod = .post, + headers: HTTPHeaders? = nil, + encodingCompletion: ((MultipartFormDataEncodingResult) -> Void)?) + { + do { + let urlRequest = try URLRequest(url: url, method: method, headers: headers) + + return upload( + multipartFormData: multipartFormData, + usingThreshold: encodingMemoryThreshold, + with: urlRequest, + encodingCompletion: encodingCompletion + ) + } catch { + DispatchQueue.main.async { encodingCompletion?(.failure(error)) } + } + } + + /// Encodes `multipartFormData` using `encodingMemoryThreshold` and calls `encodingCompletion` with new + /// `UploadRequest` using the `urlRequest`. + /// + /// It is important to understand the memory implications of uploading `MultipartFormData`. If the cummulative + /// payload is small, encoding the data in-memory and directly uploading to a server is the by far the most + /// efficient approach. However, if the payload is too large, encoding the data in-memory could cause your app to + /// be terminated. Larger payloads must first be written to disk using input and output streams to keep the memory + /// footprint low, then the data can be uploaded as a stream from the resulting file. Streaming from disk MUST be + /// used for larger payloads such as video content. + /// + /// The `encodingMemoryThreshold` parameter allows Alamofire to automatically determine whether to encode in-memory + /// or stream from disk. If the content length of the `MultipartFormData` is below the `encodingMemoryThreshold`, + /// encoding takes place in-memory. If the content length exceeds the threshold, the data is streamed to disk + /// during the encoding process. Then the result is uploaded as data or as a stream depending on which encoding + /// technique was used. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter multipartFormData: The closure used to append body parts to the `MultipartFormData`. + /// - parameter encodingMemoryThreshold: The encoding memory threshold in bytes. + /// `multipartFormDataEncodingMemoryThreshold` by default. + /// - parameter urlRequest: The URL request. + /// - parameter encodingCompletion: The closure called when the `MultipartFormData` encoding is complete. + open func upload( + multipartFormData: @escaping (MultipartFormData) -> Void, + usingThreshold encodingMemoryThreshold: UInt64 = SessionManager.multipartFormDataEncodingMemoryThreshold, + with urlRequest: URLRequestConvertible, + encodingCompletion: ((MultipartFormDataEncodingResult) -> Void)?) + { + DispatchQueue.global(qos: .utility).async { + let formData = MultipartFormData() + multipartFormData(formData) + + var tempFileURL: URL? + + do { + var urlRequestWithContentType = try urlRequest.asURLRequest() + urlRequestWithContentType.setValue(formData.contentType, forHTTPHeaderField: "Content-Type") + + let isBackgroundSession = self.session.configuration.identifier != nil + + if formData.contentLength < encodingMemoryThreshold && !isBackgroundSession { + let data = try formData.encode() + + let encodingResult = MultipartFormDataEncodingResult.success( + request: self.upload(data, with: urlRequestWithContentType), + streamingFromDisk: false, + streamFileURL: nil + ) + + DispatchQueue.main.async { encodingCompletion?(encodingResult) } + } else { + let fileManager = FileManager.default + let tempDirectoryURL = URL(fileURLWithPath: NSTemporaryDirectory()) + let directoryURL = tempDirectoryURL.appendingPathComponent("org.alamofire.manager/multipart.form.data") + let fileName = UUID().uuidString + let fileURL = directoryURL.appendingPathComponent(fileName) + + tempFileURL = fileURL + + var directoryError: Error? + + // Create directory inside serial queue to ensure two threads don't do this in parallel + self.queue.sync { + do { + try fileManager.createDirectory(at: directoryURL, withIntermediateDirectories: true, attributes: nil) + } catch { + directoryError = error + } + } + + if let directoryError = directoryError { throw directoryError } + + try formData.writeEncodedData(to: fileURL) + + let upload = self.upload(fileURL, with: urlRequestWithContentType) + + // Cleanup the temp file once the upload is complete + upload.delegate.queue.addOperation { + do { + try FileManager.default.removeItem(at: fileURL) + } catch { + // No-op + } + } + + DispatchQueue.main.async { + let encodingResult = MultipartFormDataEncodingResult.success( + request: upload, + streamingFromDisk: true, + streamFileURL: fileURL + ) + + encodingCompletion?(encodingResult) + } + } + } catch { + // Cleanup the temp file in the event that the multipart form data encoding failed + if let tempFileURL = tempFileURL { + do { + try FileManager.default.removeItem(at: tempFileURL) + } catch { + // No-op + } + } + + DispatchQueue.main.async { encodingCompletion?(.failure(error)) } + } + } + } + + // MARK: Private - Upload Implementation + + private func upload(_ uploadable: UploadRequest.Uploadable) -> UploadRequest { + do { + let task = try uploadable.task(session: session, adapter: adapter, queue: queue) + let upload = UploadRequest(session: session, requestTask: .upload(uploadable, task)) + + if case let .stream(inputStream, _) = uploadable { + upload.delegate.taskNeedNewBodyStream = { _, _ in inputStream } + } + + delegate[task] = upload + + if startRequestsImmediately { upload.resume() } + + return upload + } catch { + return upload(uploadable, failedWith: error) + } + } + + private func upload(_ uploadable: UploadRequest.Uploadable?, failedWith error: Error) -> UploadRequest { + var uploadTask: Request.RequestTask = .upload(nil, nil) + + if let uploadable = uploadable { + uploadTask = .upload(uploadable, nil) + } + + let underlyingError = error.underlyingAdaptError ?? error + let upload = UploadRequest(session: session, requestTask: uploadTask, error: underlyingError) + + if let retrier = retrier, error is AdaptError { + allowRetrier(retrier, toRetry: upload, with: underlyingError) + } else { + if startRequestsImmediately { upload.resume() } + } + + return upload + } + +#if !os(watchOS) + + // MARK: - Stream Request + + // MARK: Hostname and Port + + /// Creates a `StreamRequest` for bidirectional streaming using the `hostname` and `port`. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter hostName: The hostname of the server to connect to. + /// - parameter port: The port of the server to connect to. + /// + /// - returns: The created `StreamRequest`. + @discardableResult + @available(iOS 9.0, macOS 10.11, tvOS 9.0, *) + open func stream(withHostName hostName: String, port: Int) -> StreamRequest { + return stream(.stream(hostName: hostName, port: port)) + } + + // MARK: NetService + + /// Creates a `StreamRequest` for bidirectional streaming using the `netService`. + /// + /// If `startRequestsImmediately` is `true`, the request will have `resume()` called before being returned. + /// + /// - parameter netService: The net service used to identify the endpoint. + /// + /// - returns: The created `StreamRequest`. + @discardableResult + @available(iOS 9.0, macOS 10.11, tvOS 9.0, *) + open func stream(with netService: NetService) -> StreamRequest { + return stream(.netService(netService)) + } + + // MARK: Private - Stream Implementation + + @available(iOS 9.0, macOS 10.11, tvOS 9.0, *) + private func stream(_ streamable: StreamRequest.Streamable) -> StreamRequest { + do { + let task = try streamable.task(session: session, adapter: adapter, queue: queue) + let request = StreamRequest(session: session, requestTask: .stream(streamable, task)) + + delegate[task] = request + + if startRequestsImmediately { request.resume() } + + return request + } catch { + return stream(failedWith: error) + } + } + + @available(iOS 9.0, macOS 10.11, tvOS 9.0, *) + private func stream(failedWith error: Error) -> StreamRequest { + let stream = StreamRequest(session: session, requestTask: .stream(nil, nil), error: error) + if startRequestsImmediately { stream.resume() } + return stream + } + +#endif + + // MARK: - Internal - Retry Request + + func retry(_ request: Request) -> Bool { + guard let originalTask = request.originalTask else { return false } + + do { + let task = try originalTask.task(session: session, adapter: adapter, queue: queue) + + if let originalTask = request.task { + delegate[originalTask] = nil // removes the old request to avoid endless growth + } + + request.delegate.task = task // resets all task delegate data + + request.retryCount += 1 + request.startTime = CFAbsoluteTimeGetCurrent() + request.endTime = nil + + task.resume() + + return true + } catch { + request.delegate.error = error.underlyingAdaptError ?? error + return false + } + } + + private func allowRetrier(_ retrier: RequestRetrier, toRetry request: Request, with error: Error) { + DispatchQueue.utility.async { [weak self] in + guard let strongSelf = self else { return } + + retrier.should(strongSelf, retry: request, with: error) { shouldRetry, timeDelay in + guard let strongSelf = self else { return } + + guard shouldRetry else { + if strongSelf.startRequestsImmediately { request.resume() } + return + } + + DispatchQueue.utility.after(timeDelay) { + guard let strongSelf = self else { return } + + let retrySucceeded = strongSelf.retry(request) + + if retrySucceeded, let task = request.task { + strongSelf.delegate[task] = request + } else { + if strongSelf.startRequestsImmediately { request.resume() } + } + } + } + } + } +} diff --git a/tmp/Pods/Alamofire/Source/TaskDelegate.swift b/tmp/Pods/Alamofire/Source/TaskDelegate.swift new file mode 100644 index 0000000..1d537ea --- /dev/null +++ b/tmp/Pods/Alamofire/Source/TaskDelegate.swift @@ -0,0 +1,466 @@ +// +// TaskDelegate.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// The task delegate is responsible for handling all delegate callbacks for the underlying task as well as +/// executing all operations attached to the serial operation queue upon task completion. +open class TaskDelegate: NSObject { + + // MARK: Properties + + /// The serial operation queue used to execute all operations after the task completes. + open let queue: OperationQueue + + /// The data returned by the server. + public var data: Data? { return nil } + + /// The error generated throughout the lifecyle of the task. + public var error: Error? + + var task: URLSessionTask? { + set { + taskLock.lock(); defer { taskLock.unlock() } + _task = newValue + } + get { + taskLock.lock(); defer { taskLock.unlock() } + return _task + } + } + + var initialResponseTime: CFAbsoluteTime? + var credential: URLCredential? + var metrics: AnyObject? // URLSessionTaskMetrics + + private var _task: URLSessionTask? { + didSet { reset() } + } + + private let taskLock = NSLock() + + // MARK: Lifecycle + + init(task: URLSessionTask?) { + _task = task + + self.queue = { + let operationQueue = OperationQueue() + + operationQueue.maxConcurrentOperationCount = 1 + operationQueue.isSuspended = true + operationQueue.qualityOfService = .utility + + return operationQueue + }() + } + + func reset() { + error = nil + initialResponseTime = nil + } + + // MARK: URLSessionTaskDelegate + + var taskWillPerformHTTPRedirection: ((URLSession, URLSessionTask, HTTPURLResponse, URLRequest) -> URLRequest?)? + var taskDidReceiveChallenge: ((URLSession, URLSessionTask, URLAuthenticationChallenge) -> (URLSession.AuthChallengeDisposition, URLCredential?))? + var taskNeedNewBodyStream: ((URLSession, URLSessionTask) -> InputStream?)? + var taskDidCompleteWithError: ((URLSession, URLSessionTask, Error?) -> Void)? + + @objc(URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:) + func urlSession( + _ session: URLSession, + task: URLSessionTask, + willPerformHTTPRedirection response: HTTPURLResponse, + newRequest request: URLRequest, + completionHandler: @escaping (URLRequest?) -> Void) + { + var redirectRequest: URLRequest? = request + + if let taskWillPerformHTTPRedirection = taskWillPerformHTTPRedirection { + redirectRequest = taskWillPerformHTTPRedirection(session, task, response, request) + } + + completionHandler(redirectRequest) + } + + @objc(URLSession:task:didReceiveChallenge:completionHandler:) + func urlSession( + _ session: URLSession, + task: URLSessionTask, + didReceive challenge: URLAuthenticationChallenge, + completionHandler: @escaping (URLSession.AuthChallengeDisposition, URLCredential?) -> Void) + { + var disposition: URLSession.AuthChallengeDisposition = .performDefaultHandling + var credential: URLCredential? + + if let taskDidReceiveChallenge = taskDidReceiveChallenge { + (disposition, credential) = taskDidReceiveChallenge(session, task, challenge) + } else if challenge.protectionSpace.authenticationMethod == NSURLAuthenticationMethodServerTrust { + let host = challenge.protectionSpace.host + + if + let serverTrustPolicy = session.serverTrustPolicyManager?.serverTrustPolicy(forHost: host), + let serverTrust = challenge.protectionSpace.serverTrust + { + if serverTrustPolicy.evaluate(serverTrust, forHost: host) { + disposition = .useCredential + credential = URLCredential(trust: serverTrust) + } else { + disposition = .cancelAuthenticationChallenge + } + } + } else { + if challenge.previousFailureCount > 0 { + disposition = .rejectProtectionSpace + } else { + credential = self.credential ?? session.configuration.urlCredentialStorage?.defaultCredential(for: challenge.protectionSpace) + + if credential != nil { + disposition = .useCredential + } + } + } + + completionHandler(disposition, credential) + } + + @objc(URLSession:task:needNewBodyStream:) + func urlSession( + _ session: URLSession, + task: URLSessionTask, + needNewBodyStream completionHandler: @escaping (InputStream?) -> Void) + { + var bodyStream: InputStream? + + if let taskNeedNewBodyStream = taskNeedNewBodyStream { + bodyStream = taskNeedNewBodyStream(session, task) + } + + completionHandler(bodyStream) + } + + @objc(URLSession:task:didCompleteWithError:) + func urlSession(_ session: URLSession, task: URLSessionTask, didCompleteWithError error: Error?) { + if let taskDidCompleteWithError = taskDidCompleteWithError { + taskDidCompleteWithError(session, task, error) + } else { + if let error = error { + if self.error == nil { self.error = error } + + if + let downloadDelegate = self as? DownloadTaskDelegate, + let resumeData = (error as NSError).userInfo[NSURLSessionDownloadTaskResumeData] as? Data + { + downloadDelegate.resumeData = resumeData + } + } + + queue.isSuspended = false + } + } +} + +// MARK: - + +class DataTaskDelegate: TaskDelegate, URLSessionDataDelegate { + + // MARK: Properties + + var dataTask: URLSessionDataTask { return task as! URLSessionDataTask } + + override var data: Data? { + if dataStream != nil { + return nil + } else { + return mutableData + } + } + + var progress: Progress + var progressHandler: (closure: Request.ProgressHandler, queue: DispatchQueue)? + + var dataStream: ((_ data: Data) -> Void)? + + private var totalBytesReceived: Int64 = 0 + private var mutableData: Data + + private var expectedContentLength: Int64? + + // MARK: Lifecycle + + override init(task: URLSessionTask?) { + mutableData = Data() + progress = Progress(totalUnitCount: 0) + + super.init(task: task) + } + + override func reset() { + super.reset() + + progress = Progress(totalUnitCount: 0) + totalBytesReceived = 0 + mutableData = Data() + expectedContentLength = nil + } + + // MARK: URLSessionDataDelegate + + var dataTaskDidReceiveResponse: ((URLSession, URLSessionDataTask, URLResponse) -> URLSession.ResponseDisposition)? + var dataTaskDidBecomeDownloadTask: ((URLSession, URLSessionDataTask, URLSessionDownloadTask) -> Void)? + var dataTaskDidReceiveData: ((URLSession, URLSessionDataTask, Data) -> Void)? + var dataTaskWillCacheResponse: ((URLSession, URLSessionDataTask, CachedURLResponse) -> CachedURLResponse?)? + + func urlSession( + _ session: URLSession, + dataTask: URLSessionDataTask, + didReceive response: URLResponse, + completionHandler: @escaping (URLSession.ResponseDisposition) -> Void) + { + var disposition: URLSession.ResponseDisposition = .allow + + expectedContentLength = response.expectedContentLength + + if let dataTaskDidReceiveResponse = dataTaskDidReceiveResponse { + disposition = dataTaskDidReceiveResponse(session, dataTask, response) + } + + completionHandler(disposition) + } + + func urlSession( + _ session: URLSession, + dataTask: URLSessionDataTask, + didBecome downloadTask: URLSessionDownloadTask) + { + dataTaskDidBecomeDownloadTask?(session, dataTask, downloadTask) + } + + func urlSession(_ session: URLSession, dataTask: URLSessionDataTask, didReceive data: Data) { + if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() } + + if let dataTaskDidReceiveData = dataTaskDidReceiveData { + dataTaskDidReceiveData(session, dataTask, data) + } else { + if let dataStream = dataStream { + dataStream(data) + } else { + mutableData.append(data) + } + + let bytesReceived = Int64(data.count) + totalBytesReceived += bytesReceived + let totalBytesExpected = dataTask.response?.expectedContentLength ?? NSURLSessionTransferSizeUnknown + + progress.totalUnitCount = totalBytesExpected + progress.completedUnitCount = totalBytesReceived + + if let progressHandler = progressHandler { + progressHandler.queue.async { progressHandler.closure(self.progress) } + } + } + } + + func urlSession( + _ session: URLSession, + dataTask: URLSessionDataTask, + willCacheResponse proposedResponse: CachedURLResponse, + completionHandler: @escaping (CachedURLResponse?) -> Void) + { + var cachedResponse: CachedURLResponse? = proposedResponse + + if let dataTaskWillCacheResponse = dataTaskWillCacheResponse { + cachedResponse = dataTaskWillCacheResponse(session, dataTask, proposedResponse) + } + + completionHandler(cachedResponse) + } +} + +// MARK: - + +class DownloadTaskDelegate: TaskDelegate, URLSessionDownloadDelegate { + + // MARK: Properties + + var downloadTask: URLSessionDownloadTask { return task as! URLSessionDownloadTask } + + var progress: Progress + var progressHandler: (closure: Request.ProgressHandler, queue: DispatchQueue)? + + var resumeData: Data? + override var data: Data? { return resumeData } + + var destination: DownloadRequest.DownloadFileDestination? + + var temporaryURL: URL? + var destinationURL: URL? + + var fileURL: URL? { return destination != nil ? destinationURL : temporaryURL } + + // MARK: Lifecycle + + override init(task: URLSessionTask?) { + progress = Progress(totalUnitCount: 0) + super.init(task: task) + } + + override func reset() { + super.reset() + + progress = Progress(totalUnitCount: 0) + resumeData = nil + } + + // MARK: URLSessionDownloadDelegate + + var downloadTaskDidFinishDownloadingToURL: ((URLSession, URLSessionDownloadTask, URL) -> URL)? + var downloadTaskDidWriteData: ((URLSession, URLSessionDownloadTask, Int64, Int64, Int64) -> Void)? + var downloadTaskDidResumeAtOffset: ((URLSession, URLSessionDownloadTask, Int64, Int64) -> Void)? + + func urlSession( + _ session: URLSession, + downloadTask: URLSessionDownloadTask, + didFinishDownloadingTo location: URL) + { + temporaryURL = location + + guard + let destination = destination, + let response = downloadTask.response as? HTTPURLResponse + else { return } + + let result = destination(location, response) + let destinationURL = result.destinationURL + let options = result.options + + self.destinationURL = destinationURL + + do { + if options.contains(.removePreviousFile), FileManager.default.fileExists(atPath: destinationURL.path) { + try FileManager.default.removeItem(at: destinationURL) + } + + if options.contains(.createIntermediateDirectories) { + let directory = destinationURL.deletingLastPathComponent() + try FileManager.default.createDirectory(at: directory, withIntermediateDirectories: true) + } + + try FileManager.default.moveItem(at: location, to: destinationURL) + } catch { + self.error = error + } + } + + func urlSession( + _ session: URLSession, + downloadTask: URLSessionDownloadTask, + didWriteData bytesWritten: Int64, + totalBytesWritten: Int64, + totalBytesExpectedToWrite: Int64) + { + if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() } + + if let downloadTaskDidWriteData = downloadTaskDidWriteData { + downloadTaskDidWriteData( + session, + downloadTask, + bytesWritten, + totalBytesWritten, + totalBytesExpectedToWrite + ) + } else { + progress.totalUnitCount = totalBytesExpectedToWrite + progress.completedUnitCount = totalBytesWritten + + if let progressHandler = progressHandler { + progressHandler.queue.async { progressHandler.closure(self.progress) } + } + } + } + + func urlSession( + _ session: URLSession, + downloadTask: URLSessionDownloadTask, + didResumeAtOffset fileOffset: Int64, + expectedTotalBytes: Int64) + { + if let downloadTaskDidResumeAtOffset = downloadTaskDidResumeAtOffset { + downloadTaskDidResumeAtOffset(session, downloadTask, fileOffset, expectedTotalBytes) + } else { + progress.totalUnitCount = expectedTotalBytes + progress.completedUnitCount = fileOffset + } + } +} + +// MARK: - + +class UploadTaskDelegate: DataTaskDelegate { + + // MARK: Properties + + var uploadTask: URLSessionUploadTask { return task as! URLSessionUploadTask } + + var uploadProgress: Progress + var uploadProgressHandler: (closure: Request.ProgressHandler, queue: DispatchQueue)? + + // MARK: Lifecycle + + override init(task: URLSessionTask?) { + uploadProgress = Progress(totalUnitCount: 0) + super.init(task: task) + } + + override func reset() { + super.reset() + uploadProgress = Progress(totalUnitCount: 0) + } + + // MARK: URLSessionTaskDelegate + + var taskDidSendBodyData: ((URLSession, URLSessionTask, Int64, Int64, Int64) -> Void)? + + func URLSession( + _ session: URLSession, + task: URLSessionTask, + didSendBodyData bytesSent: Int64, + totalBytesSent: Int64, + totalBytesExpectedToSend: Int64) + { + if initialResponseTime == nil { initialResponseTime = CFAbsoluteTimeGetCurrent() } + + if let taskDidSendBodyData = taskDidSendBodyData { + taskDidSendBodyData(session, task, bytesSent, totalBytesSent, totalBytesExpectedToSend) + } else { + uploadProgress.totalUnitCount = totalBytesExpectedToSend + uploadProgress.completedUnitCount = totalBytesSent + + if let uploadProgressHandler = uploadProgressHandler { + uploadProgressHandler.queue.async { uploadProgressHandler.closure(self.uploadProgress) } + } + } + } +} diff --git a/tmp/Pods/Alamofire/Source/Timeline.swift b/tmp/Pods/Alamofire/Source/Timeline.swift new file mode 100644 index 0000000..181c988 --- /dev/null +++ b/tmp/Pods/Alamofire/Source/Timeline.swift @@ -0,0 +1,136 @@ +// +// Timeline.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// Responsible for computing the timing metrics for the complete lifecycle of a `Request`. +public struct Timeline { + /// The time the request was initialized. + public let requestStartTime: CFAbsoluteTime + + /// The time the first bytes were received from or sent to the server. + public let initialResponseTime: CFAbsoluteTime + + /// The time when the request was completed. + public let requestCompletedTime: CFAbsoluteTime + + /// The time when the response serialization was completed. + public let serializationCompletedTime: CFAbsoluteTime + + /// The time interval in seconds from the time the request started to the initial response from the server. + public let latency: TimeInterval + + /// The time interval in seconds from the time the request started to the time the request completed. + public let requestDuration: TimeInterval + + /// The time interval in seconds from the time the request completed to the time response serialization completed. + public let serializationDuration: TimeInterval + + /// The time interval in seconds from the time the request started to the time response serialization completed. + public let totalDuration: TimeInterval + + /// Creates a new `Timeline` instance with the specified request times. + /// + /// - parameter requestStartTime: The time the request was initialized. Defaults to `0.0`. + /// - parameter initialResponseTime: The time the first bytes were received from or sent to the server. + /// Defaults to `0.0`. + /// - parameter requestCompletedTime: The time when the request was completed. Defaults to `0.0`. + /// - parameter serializationCompletedTime: The time when the response serialization was completed. Defaults + /// to `0.0`. + /// + /// - returns: The new `Timeline` instance. + public init( + requestStartTime: CFAbsoluteTime = 0.0, + initialResponseTime: CFAbsoluteTime = 0.0, + requestCompletedTime: CFAbsoluteTime = 0.0, + serializationCompletedTime: CFAbsoluteTime = 0.0) + { + self.requestStartTime = requestStartTime + self.initialResponseTime = initialResponseTime + self.requestCompletedTime = requestCompletedTime + self.serializationCompletedTime = serializationCompletedTime + + self.latency = initialResponseTime - requestStartTime + self.requestDuration = requestCompletedTime - requestStartTime + self.serializationDuration = serializationCompletedTime - requestCompletedTime + self.totalDuration = serializationCompletedTime - requestStartTime + } +} + +// MARK: - CustomStringConvertible + +extension Timeline: CustomStringConvertible { + /// The textual representation used when written to an output stream, which includes the latency, the request + /// duration and the total duration. + public var description: String { + let latency = String(format: "%.3f", self.latency) + let requestDuration = String(format: "%.3f", self.requestDuration) + let serializationDuration = String(format: "%.3f", self.serializationDuration) + let totalDuration = String(format: "%.3f", self.totalDuration) + + // NOTE: Had to move to string concatenation due to memory leak filed as rdar://26761490. Once memory leak is + // fixed, we should move back to string interpolation by reverting commit 7d4a43b1. + let timings = [ + "\"Latency\": " + latency + " secs", + "\"Request Duration\": " + requestDuration + " secs", + "\"Serialization Duration\": " + serializationDuration + " secs", + "\"Total Duration\": " + totalDuration + " secs" + ] + + return "Timeline: { " + timings.joined(separator: ", ") + " }" + } +} + +// MARK: - CustomDebugStringConvertible + +extension Timeline: CustomDebugStringConvertible { + /// The textual representation used when written to an output stream, which includes the request start time, the + /// initial response time, the request completed time, the serialization completed time, the latency, the request + /// duration and the total duration. + public var debugDescription: String { + let requestStartTime = String(format: "%.3f", self.requestStartTime) + let initialResponseTime = String(format: "%.3f", self.initialResponseTime) + let requestCompletedTime = String(format: "%.3f", self.requestCompletedTime) + let serializationCompletedTime = String(format: "%.3f", self.serializationCompletedTime) + let latency = String(format: "%.3f", self.latency) + let requestDuration = String(format: "%.3f", self.requestDuration) + let serializationDuration = String(format: "%.3f", self.serializationDuration) + let totalDuration = String(format: "%.3f", self.totalDuration) + + // NOTE: Had to move to string concatenation due to memory leak filed as rdar://26761490. Once memory leak is + // fixed, we should move back to string interpolation by reverting commit 7d4a43b1. + let timings = [ + "\"Request Start Time\": " + requestStartTime, + "\"Initial Response Time\": " + initialResponseTime, + "\"Request Completed Time\": " + requestCompletedTime, + "\"Serialization Completed Time\": " + serializationCompletedTime, + "\"Latency\": " + latency + " secs", + "\"Request Duration\": " + requestDuration + " secs", + "\"Serialization Duration\": " + serializationDuration + " secs", + "\"Total Duration\": " + totalDuration + " secs" + ] + + return "Timeline: { " + timings.joined(separator: ", ") + " }" + } +} diff --git a/tmp/Pods/Alamofire/Source/Validation.swift b/tmp/Pods/Alamofire/Source/Validation.swift new file mode 100644 index 0000000..ec2c5c3 --- /dev/null +++ b/tmp/Pods/Alamofire/Source/Validation.swift @@ -0,0 +1,315 @@ +// +// Validation.swift +// +// Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +extension Request { + + // MARK: Helper Types + + fileprivate typealias ErrorReason = AFError.ResponseValidationFailureReason + + /// Used to represent whether validation was successful or encountered an error resulting in a failure. + /// + /// - success: The validation was successful. + /// - failure: The validation failed encountering the provided error. + public enum ValidationResult { + case success + case failure(Error) + } + + fileprivate struct MIMEType { + let type: String + let subtype: String + + var isWildcard: Bool { return type == "*" && subtype == "*" } + + init?(_ string: String) { + let components: [String] = { + let stripped = string.trimmingCharacters(in: .whitespacesAndNewlines) + + #if swift(>=3.2) + let split = stripped[..<(stripped.range(of: ";")?.lowerBound ?? stripped.endIndex)] + #else + let split = stripped.substring(to: stripped.range(of: ";")?.lowerBound ?? stripped.endIndex) + #endif + + return split.components(separatedBy: "/") + }() + + if let type = components.first, let subtype = components.last { + self.type = type + self.subtype = subtype + } else { + return nil + } + } + + func matches(_ mime: MIMEType) -> Bool { + switch (type, subtype) { + case (mime.type, mime.subtype), (mime.type, "*"), ("*", mime.subtype), ("*", "*"): + return true + default: + return false + } + } + } + + // MARK: Properties + + fileprivate var acceptableStatusCodes: [Int] { return Array(200..<300) } + + fileprivate var acceptableContentTypes: [String] { + if let accept = request?.value(forHTTPHeaderField: "Accept") { + return accept.components(separatedBy: ",") + } + + return ["*/*"] + } + + // MARK: Status Code + + fileprivate func validate( + statusCode acceptableStatusCodes: S, + response: HTTPURLResponse) + -> ValidationResult + where S.Iterator.Element == Int + { + if acceptableStatusCodes.contains(response.statusCode) { + return .success + } else { + let reason: ErrorReason = .unacceptableStatusCode(code: response.statusCode) + return .failure(AFError.responseValidationFailed(reason: reason)) + } + } + + // MARK: Content Type + + fileprivate func validate( + contentType acceptableContentTypes: S, + response: HTTPURLResponse, + data: Data?) + -> ValidationResult + where S.Iterator.Element == String + { + guard let data = data, data.count > 0 else { return .success } + + guard + let responseContentType = response.mimeType, + let responseMIMEType = MIMEType(responseContentType) + else { + for contentType in acceptableContentTypes { + if let mimeType = MIMEType(contentType), mimeType.isWildcard { + return .success + } + } + + let error: AFError = { + let reason: ErrorReason = .missingContentType(acceptableContentTypes: Array(acceptableContentTypes)) + return AFError.responseValidationFailed(reason: reason) + }() + + return .failure(error) + } + + for contentType in acceptableContentTypes { + if let acceptableMIMEType = MIMEType(contentType), acceptableMIMEType.matches(responseMIMEType) { + return .success + } + } + + let error: AFError = { + let reason: ErrorReason = .unacceptableContentType( + acceptableContentTypes: Array(acceptableContentTypes), + responseContentType: responseContentType + ) + + return AFError.responseValidationFailed(reason: reason) + }() + + return .failure(error) + } +} + +// MARK: - + +extension DataRequest { + /// A closure used to validate a request that takes a URL request, a URL response and data, and returns whether the + /// request was valid. + public typealias Validation = (URLRequest?, HTTPURLResponse, Data?) -> ValidationResult + + /// Validates the request, using the specified closure. + /// + /// If validation fails, subsequent calls to response handlers will have an associated error. + /// + /// - parameter validation: A closure to validate the request. + /// + /// - returns: The request. + @discardableResult + public func validate(_ validation: @escaping Validation) -> Self { + let validationExecution: () -> Void = { [unowned self] in + if + let response = self.response, + self.delegate.error == nil, + case let .failure(error) = validation(self.request, response, self.delegate.data) + { + self.delegate.error = error + } + } + + validations.append(validationExecution) + + return self + } + + /// Validates that the response has a status code in the specified sequence. + /// + /// If validation fails, subsequent calls to response handlers will have an associated error. + /// + /// - parameter range: The range of acceptable status codes. + /// + /// - returns: The request. + @discardableResult + public func validate(statusCode acceptableStatusCodes: S) -> Self where S.Iterator.Element == Int { + return validate { [unowned self] _, response, _ in + return self.validate(statusCode: acceptableStatusCodes, response: response) + } + } + + /// Validates that the response has a content type in the specified sequence. + /// + /// If validation fails, subsequent calls to response handlers will have an associated error. + /// + /// - parameter contentType: The acceptable content types, which may specify wildcard types and/or subtypes. + /// + /// - returns: The request. + @discardableResult + public func validate(contentType acceptableContentTypes: S) -> Self where S.Iterator.Element == String { + return validate { [unowned self] _, response, data in + return self.validate(contentType: acceptableContentTypes, response: response, data: data) + } + } + + /// Validates that the response has a status code in the default acceptable range of 200...299, and that the content + /// type matches any specified in the Accept HTTP header field. + /// + /// If validation fails, subsequent calls to response handlers will have an associated error. + /// + /// - returns: The request. + @discardableResult + public func validate() -> Self { + return validate(statusCode: self.acceptableStatusCodes).validate(contentType: self.acceptableContentTypes) + } +} + +// MARK: - + +extension DownloadRequest { + /// A closure used to validate a request that takes a URL request, a URL response, a temporary URL and a + /// destination URL, and returns whether the request was valid. + public typealias Validation = ( + _ request: URLRequest?, + _ response: HTTPURLResponse, + _ temporaryURL: URL?, + _ destinationURL: URL?) + -> ValidationResult + + /// Validates the request, using the specified closure. + /// + /// If validation fails, subsequent calls to response handlers will have an associated error. + /// + /// - parameter validation: A closure to validate the request. + /// + /// - returns: The request. + @discardableResult + public func validate(_ validation: @escaping Validation) -> Self { + let validationExecution: () -> Void = { [unowned self] in + let request = self.request + let temporaryURL = self.downloadDelegate.temporaryURL + let destinationURL = self.downloadDelegate.destinationURL + + if + let response = self.response, + self.delegate.error == nil, + case let .failure(error) = validation(request, response, temporaryURL, destinationURL) + { + self.delegate.error = error + } + } + + validations.append(validationExecution) + + return self + } + + /// Validates that the response has a status code in the specified sequence. + /// + /// If validation fails, subsequent calls to response handlers will have an associated error. + /// + /// - parameter range: The range of acceptable status codes. + /// + /// - returns: The request. + @discardableResult + public func validate(statusCode acceptableStatusCodes: S) -> Self where S.Iterator.Element == Int { + return validate { [unowned self] _, response, _, _ in + return self.validate(statusCode: acceptableStatusCodes, response: response) + } + } + + /// Validates that the response has a content type in the specified sequence. + /// + /// If validation fails, subsequent calls to response handlers will have an associated error. + /// + /// - parameter contentType: The acceptable content types, which may specify wildcard types and/or subtypes. + /// + /// - returns: The request. + @discardableResult + public func validate(contentType acceptableContentTypes: S) -> Self where S.Iterator.Element == String { + return validate { [unowned self] _, response, _, _ in + let fileURL = self.downloadDelegate.fileURL + + guard let validFileURL = fileURL else { + return .failure(AFError.responseValidationFailed(reason: .dataFileNil)) + } + + do { + let data = try Data(contentsOf: validFileURL) + return self.validate(contentType: acceptableContentTypes, response: response, data: data) + } catch { + return .failure(AFError.responseValidationFailed(reason: .dataFileReadFailed(at: validFileURL))) + } + } + } + + /// Validates that the response has a status code in the default acceptable range of 200...299, and that the content + /// type matches any specified in the Accept HTTP header field. + /// + /// If validation fails, subsequent calls to response handlers will have an associated error. + /// + /// - returns: The request. + @discardableResult + public func validate() -> Self { + return validate(statusCode: self.acceptableStatusCodes).validate(contentType: self.acceptableContentTypes) + } +} diff --git a/tmp/Pods/AlamofireImage/LICENSE b/tmp/Pods/AlamofireImage/LICENSE new file mode 100644 index 0000000..5769f92 --- /dev/null +++ b/tmp/Pods/AlamofireImage/LICENSE @@ -0,0 +1,19 @@ +Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. diff --git a/tmp/Pods/AlamofireImage/README.md b/tmp/Pods/AlamofireImage/README.md new file mode 100644 index 0000000..8576014 --- /dev/null +++ b/tmp/Pods/AlamofireImage/README.md @@ -0,0 +1,584 @@ +# AlamofireImage + +[![Build Status](https://travis-ci.org/Alamofire/AlamofireImage.svg?branch=master)](https://travis-ci.org/Alamofire/AlamofireImage) +[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/AlamofireImage.svg)](https://img.shields.io/cocoapods/v/AlamofireImage.svg) +[![Carthage Compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) +[![Platform](https://img.shields.io/cocoapods/p/AlamofireImage.svg?style=flat)](http://cocoadocs.org/docsets/AlamofireImage) +[![Twitter](https://img.shields.io/badge/twitter-@AlamofireSF-blue.svg?style=flat)](http://twitter.com/AlamofireSF) +[![Gitter](https://badges.gitter.im/Alamofire/Alamofire.svg)](https://gitter.im/Alamofire/Alamofire?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) + +AlamofireImage is an image component library for Alamofire. + +## Features + +- [x] Image Response Serializers +- [x] UIImage Extensions for Inflation / Scaling / Rounding / CoreImage +- [x] Single and Multi-Pass Image Filters +- [x] Auto-Purging In-Memory Image Cache +- [x] Prioritized Queue Order Image Downloading +- [x] Authentication with URLCredential +- [x] UIImageView Async Remote Downloads with Placeholders +- [x] UIImageView Filters and Transitions +- [x] Comprehensive Test Coverage +- [x] [Complete Documentation](http://cocoadocs.org/docsets/AlamofireImage) + +## Requirements + +- iOS 8.0+ / macOS 10.10+ / tvOS 9.0+ / watchOS 2.0+ +- Xcode 8.3+ +- Swift 3.1+ + +## Migration Guides + +- [AlamofireImage 2.0 Migration Guide](https://github.com/Alamofire/AlamofireImage/blob/master/Documentation/AlamofireImage%202.0%20Migration%20Guide.md) +- [AlamofireImage 3.0 Migration Guide](https://github.com/Alamofire/AlamofireImage/blob/master/Documentation/AlamofireImage%203.0%20Migration%20Guide.md) + +## Dependencies + +- [Alamofire 4.5+](https://github.com/Alamofire/Alamofire) + +## Communication + +- If you **need help**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/alamofire). (Tag 'alamofire') +- If you'd like to **ask a general question**, use [Stack Overflow](http://stackoverflow.com/questions/tagged/alamofire). +- If you **found a bug**, open an issue. +- If you **have a feature request**, open an issue. +- If you **want to contribute**, submit a pull request. + +## Installation + +### CocoaPods + +[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command: + +```bash +$ gem install cocoapods +``` + +> CocoaPods 1.1+ is required. + +To integrate AlamofireImage into your Xcode project using CocoaPods, specify it in your `Podfile`: + +```ruby +source 'https://github.com/CocoaPods/Specs.git' +platform :ios, '10.0' +use_frameworks! + +target '' do + pod 'AlamofireImage', '~> 3.3' +end +``` + +Then, run the following command: + +```bash +$ pod install +``` + +### Carthage + +[Carthage](https://github.com/Carthage/Carthage) is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks. + +You can install Carthage with [Homebrew](http://brew.sh/) using the following command: + +```bash +$ brew update +$ brew install carthage +``` + +To integrate AlamofireImage into your Xcode project using Carthage, specify it in your `Cartfile`: + +```ogdl +github "Alamofire/AlamofireImage" ~> 3.3 +``` + +Run `carthage update` to build the framework and drag the built `AlamofireImage.framework` into your Xcode project. + +### Manually + +If you prefer not to use either of the aforementioned dependency managers, you can integrate AlamofireImage into your project manually. + +#### Embedded Framework + +- Open up Terminal, `cd` into your top-level project directory, and run the following command "if" your project is not initialized as a git repository: + +```bash +$ git init +``` + +- Add AlamofireImage as a git [submodule](http://git-scm.com/docs/git-submodule) by running the following command: + +```bash +$ git submodule add https://github.com/Alamofire/AlamofireImage.git +``` + +- Open the new `AlamofireImage` folder, and drag the `AlamofireImage.xcodeproj` into the Project Navigator of your application's Xcode project. + + > It should appear nested underneath your application's blue project icon. Whether it is above or below all the other Xcode groups does not matter. + +- Select the `AlamofireImage.xcodeproj` in the Project Navigator and verify the deployment target matches that of your application target. +- Next, select your application project in the Project Navigator (blue project icon) to navigate to the target configuration window and select the application target under the "Targets" heading in the sidebar. +- In the tab bar at the top of that window, open the "General" panel. +- Click on the `+` button under the "Embedded Binaries" section. +- You will see two different `AlamofireImage.xcodeproj` folders each with two different versions of the `AlamofireImage.framework` nested inside a `Products` folder. + + > It does not matter which `Products` folder you choose from, but it does matter whether you choose the top or bottom `AlamofireImage.framework`. + +- Select the top `AlamofireImage.framework` for iOS and the bottom one for OS X. + + > You can verify which one you selected by inspecting the build log for your project. The build target for `AlamofireImage` will be listed as either `AlamofireImage iOS`, `AlamofireImage macOS`, `AlamofireImage tvOS` or `AlamofireImage watchOS`. + +- And that's it! + + > The `AlamofireImage.framework` is automagically added as a target dependency, linked framework and embedded framework in a copy files build phase which is all you need to build on the simulator and a device. + +--- + +## Usage + +### Image Response Serializers + +```swift +import Alamofire +import AlamofireImage + +Alamofire.request("https://httpbin.org/image/png").responseImage { response in + debugPrint(response) + + print(response.request) + print(response.response) + debugPrint(response.result) + + if let image = response.result.value { + print("image downloaded: \(image)") + } +} +``` + +The AlamofireImage response image serializers support a wide range of image types including: + +- `image/png` +- `image/jpeg` +- `image/tiff` +- `image/gif` +- `image/ico` +- `image/x-icon` +- `image/bmp` +- `image/x-bmp` +- `image/x-xbitmap` +- `image/x-win-bitmap` + +> If the image you are attempting to download is an invalid MIME type not in the list, you can add custom acceptable content types using the `addAcceptableImageContentTypes` extension on the `DataRequest` type. + +### UIImage Extensions + +There are several `UIImage` extensions designed to make the common image manipulation operations as simple as possible. + +#### Inflation + +```swift +let url = Bundle.main.url(forResource: "unicorn", withExtension: "png")! +let data = try! Data(contentsOf: url) +let image = UIImage(data: data, scale: UIScreen.main.scale)! + +image.af_inflate() +``` + +> Inflating compressed image formats (such as PNG or JPEG) in a background queue can significantly improve drawing performance on the main thread. + +#### Scaling + +```swift +let image = UIImage(named: "unicorn")! +let size = CGSize(width: 100.0, height: 100.0) + +// Scale image to size disregarding aspect ratio +let scaledImage = image.af_imageScaled(to: size) + +// Scale image to fit within specified size while maintaining aspect ratio +let aspectScaledToFitImage = image.af_imageAspectScaled(toFit: size) + +// Scale image to fill specified size while maintaining aspect ratio +let aspectScaledToFillImage = image.af_imageAspectScaled(toFill: size) +``` + +#### Rounded Corners + +```swift +let image = UIImage(named: "unicorn")! +let radius: CGFloat = 20.0 + +let roundedImage = image.af_imageRounded(withCornerRadius: radius) +let circularImage = image.af_imageRoundedIntoCircle() +``` + +#### Core Image Filters + +```swift +let image = UIImage(named: "unicorn")! + +let sepiaImage = image.af_imageFiltered(withCoreImageFilter: "CISepiaTone") + +let blurredImage = image.af_imageFiltered( + withCoreImageFilter: "CIGuassianBlur", + parameters: ["inputRadius": 25] +) +``` + +### Image Filters + +The `ImageFilter` protocol was designed to make it easy to apply a filter operation and cache the result after an image finished downloading. It defines two properties to facilitate this functionality. + +```swift +public protocol ImageFilter { + var filter: Image -> Image { get } + var identifier: String { get } +} +``` + +The `filter` closure contains the operation used to create a modified version of the specified image. The `identifier` property is a string used to uniquely identify the filter operation. This is useful when adding filtered versions of an image to a cache. All identifier properties inside AlamofireImage are implemented using protocol extensions. + +#### Single Pass + +The single pass image filters only perform a single operation on the specified image. + +```swift +let image = UIImage(named: "unicorn")! +let imageFilter = RoundedCornersFilter(radius: 10.0) + +let roundedImage = imageFilter.filter(image) +``` + +The current list of single pass image filters includes: + +- `ScaledToSizeFilter` - Scales an image to a specified size. +- `AspectScaledToFitSizeFilter` - Scales an image from the center while maintaining the aspect ratio to fit within a specified size. +- `AspectScaledToFillSizeFilter` - Scales an image from the center while maintaining the aspect ratio to fill a specified size. Any pixels that fall outside the specified size are clipped. +- `RoundedCornersFilter` - Rounds the corners of an image to the specified radius. +- `CircleFilter` - Rounds the corners of an image into a circle. +- `BlurFilter` - Blurs an image using a `CIGaussianBlur` filter with the specified blur radius. + +> Each image filter is built ontop of the `UIImage` extensions. + +#### Multi-Pass + +The multi-pass image filters perform multiple operations on the specified image. + +```swift +let image = UIImage(named: "avatar")! +let size = CGSize(width: 100.0, height: 100.0) +let imageFilter = AspectScaledToFillSizeCircleFilter(size: size) + +let avatarImage = imageFilter.filter(image) +``` + +The current list of multi-pass image filters includes: + +- `ScaledToSizeWithRoundedCornersFilter` - Scales an image to a specified size, then rounds the corners to the specified radius. +- `AspectScaledToFillSizeWithRoundedCornersFilter` - Scales an image from the center while maintaining the aspect ratio to fit within a specified size, then rounds the corners to the specified radius. +- `ScaledToSizeCircleFilter` - Scales an image to a specified size, then rounds the corners into a circle. +- `AspectScaledToFillSizeCircleFilter` - Scales an image from the center while maintaining the aspect ratio to fit within a specified size, then rounds the corners into a circle. + +### Image Cache + +Image caching can become complicated when it comes to network images. `URLCache` is quite powerful and does a great job reasoning through the various cache policies and `Cache-Control` headers. However, it is not equipped to handle caching multiple modified versions of those images. + +For example, let's say you need to download an album of images. Your app needs to display both the thumbnail version as well as the full size version at various times. Due to performance issues, you want to scale down the thumbnails to a reasonable size before rendering them on-screen. You also need to apply a global CoreImage filter to the full size images when displayed. While `URLCache` can easily handle storing the original downloaded image, it cannot store these different variants. What you really need is another caching layer designed to handle these different variants. + +```swift +let imageCache = AutoPurgingImageCache( + memoryCapacity: 100_000_000, + preferredMemoryUsageAfterPurge: 60_000_000 +) +``` + +The `AutoPurgingImageCache` in AlamofireImage fills the role of that additional caching layer. It is an in-memory image cache used to store images up to a given memory capacity. When the memory capacity is reached, the image cache is sorted by last access date, then the oldest image is continuously purged until the preferred memory usage after purge is met. Each time an image is accessed through the cache, the internal access date of the image is updated. + +#### Add / Remove / Fetch Images + +Interacting with the `ImageCache` protocol APIs is very straightforward. + +```swift +let imageCache = AutoPurgingImageCache() +let avatarImage = UIImage(data: data)! + +// Add +imageCache.add(avatarImage, withIdentifier: "avatar") + +// Fetch +let cachedAvatar = imageCache.image(withIdentifier: "avatar") + +// Remove +imageCache.removeImage(withIdentifier: "avatar") +``` + +#### URL Requests + +The `ImageRequestCache` protocol extends the `ImageCache` protocol by adding support for `URLRequest` caching. This allows a `URLRequest` and an additional identifier to generate the unique identifier for the image in the cache. + +```swift +let imageCache = AutoPurgingImageCache() + +let urlRequest = URLRequest(url: URL(string: "https://httpbin.org/image/png")!) +let avatarImage = UIImage(named: "avatar")!.af_imageRoundedIntoCircle() + +// Add +imageCache.add(avatarImage, for: urlRequest, withIdentifier: "circle") + +// Fetch +let cachedAvatarImage = imageCache.image(for: urlRequest, withIdentifier: "circle") + +// Remove +imageCache.removeImage(for: urlRequest, withIdentifier: "circle") +``` + +#### Auto-Purging + +Each time an image is fetched from the cache, the cache internally updates the last access date for that image. + +```swift +let avatar = imageCache.image(withIdentifier: "avatar") +let circularAvatar = imageCache.image(for: urlRequest, withIdentifier: "circle") +``` + +By updating the last access date for each image, the image cache can make more informed decisions about which images to purge when the memory capacity is reached. The `AutoPurgingImageCache` automatically evicts images from the cache in order from oldest last access date to newest until the memory capacity drops below the `preferredMemoryCapacityAfterPurge`. + +> It is important to set reasonable default values for the `memoryCapacity` and `preferredMemoryCapacityAfterPurge` when you are initializing your image cache. By default, the `memoryCapacity` equals 100 MB and the `preferredMemoryCapacityAfterPurge` equals 60 MB. + +#### Memory Warnings + +The `AutoPurgingImageCache` also listens for memory warnings from your application and will purge all images from the cache if a memory warning is observed. + +### Image Downloader + +The `ImageDownloader` class is responsible for downloading images in parallel on a prioritized queue. It uses an internal Alamofire `SessionManager` instance to handle all the downloading and response image serialization. By default, the initialization of an `ImageDownloader` uses a default `URLSessionConfiguration` with the most common parameter values. + +```swift +let imageDownloader = ImageDownloader( + configuration: ImageDownloader.defaultURLSessionConfiguration(), + downloadPrioritization: .fifo, + maximumActiveDownloads: 4, + imageCache: AutoPurgingImageCache() +) +``` + +> If you need to customize the `URLSessionConfiguration` type or parameters, then simply provide your own rather than using the default. + +#### Downloading an Image + +```swift +let downloader = ImageDownloader() +let urlRequest = URLRequest(url: URL(string: "https://httpbin.org/image/jpeg")!) + +downloader.download(urlRequest) { response in + print(response.request) + print(response.response) + debugPrint(response.result) + + if let image = response.result.value { + print(image) + } +} +``` + +> Make sure to keep a strong reference to the `ImageDownloader` instance, otherwise the `completion` closure will not be called because the `downloader` reference will go out of scope before the `completion` closure can be called. + +#### Applying an ImageFilter + +```swift +let downloader = ImageDownloader() +let urlRequest = URLRequest(url: URL(string: "https://httpbin.org/image/jpeg")!) +let filter = AspectScaledToFillSizeCircleFilter(size: CGSize(width: 100.0, height: 100.0)) + +downloader.download(urlRequest, filter: filter) { response in + print(response.request) + print(response.response) + debugPrint(response.result) + + if let image = response.result.value { + print(image) + } +} +``` + +#### Authentication + +If your images are behind HTTP Basic Auth, you can append the `user:password:` or the `credential` to the `ImageDownloader` instance. The credentials will be applied to all future download requests. + +```swift +let downloader = ImageDownloader() +downloader.addAuthentication(user: "username", password: "password") +``` + +#### Download Prioritization + +The `ImageDownloader` maintains an internal queue of pending download requests. Depending on your situation, you may want incoming downloads to be inserted at the front or the back of the queue. The `DownloadPrioritization` enumeration allows you to specify which behavior you would prefer. + +```swift +public enum DownloadPrioritization { + case fifo, lifo +} +``` + +> The `ImageDownloader` is initialized with a `.fifo` queue by default. + +#### Image Caching + +The `ImageDownloader` uses a combination of an `URLCache` and `AutoPurgingImageCache` to create a very robust, high performance image caching system. + +##### URLCache + +The `URLCache` is used to cache all the original image content downloaded from the server. By default, it is initialized with a memory capacity of 20 MB and a disk capacity of 150 MB. This allows up to 150 MB of original image data to be stored on disk at any given time. While these defaults have been carefully set, it is very important to consider your application's needs and performance requirements and whether these values are right for you. + +> If you wish to disable this caching layer, create a custom `URLSessionConfiguration` with the `urlCache` property set to `nil` and use that configuration when initializing the `ImageDownloader`. + +##### Image Cache + +The `ImageCache` is used to cache all the potentially filtered image content after it has been downloaded from the server. This allows multiple variants of the same image to also be cached, rather than having to re-apply the image filters to the original image each time it is required. By default, an `AutoPurgingImageCache` is initialized with a memory capacity of 100 MB and a preferred memory usage after purge limit of 60 MB. This allows up to 100 MB of most recently accessed filtered image content to be stored in-memory at a given time. + +##### Setting Ideal Capacity Limits + +Determining the ideal the in-memory and on-disk capacity limits of the `URLCache` and `AutoPurgingImageCache` requires a bit of forethought. You must carefully consider your application's needs, and tailor the limits accordingly. By default, the combination of caches offers the following storage capacities: + +- 150 MB of on-disk storage +- 20 MB of in-memory original image data storage +- 100 MB of in-memory storage of filtered image content +- 60 MB preferred memory capacity after purge of filtered image content + +> If you do not use image filters, it is advised to set the memory capacity of the `URLCache` to zero to avoid storing the same content in-memory twice. + +#### Duplicate Downloads + +Sometimes application logic can end up attempting to download an image more than once before the initial download request is complete. Most often, this results in the image being downloaded more than once. AlamofireImage handles this case elegantly by merging the duplicate downloads. The image will only be downloaded once, yet both completion handlers will be called. + +##### Image Filter Reuse + +In addition to merging duplicate downloads, AlamofireImage can also merge duplicate image filters. If two image filters with the same identifier are attached to the same download, the image filter is only executed once and both completion handlers are called with the same resulting image. This can save large amounts of time and resources for computationally expensive filters such as ones leveraging CoreImage. + +##### Request Receipts + +Sometimes it is necessary to cancel an image download for various reasons. AlamofireImage can intelligently handle cancellation logic in the `ImageDownloader` by leveraging the `RequestReceipt` type along with the `cancelRequestForRequestReceipt` method. Each download request vends a `RequestReceipt` which can be later used to cancel the request. + +By cancelling the request through the `ImageDownloader` using the `RequestReceipt`, AlamofireImage is able to determine how to best handle the cancellation. The cancelled download will always receive a cancellation error, while duplicate downloads are allowed to complete. If the download is already active, it is allowed to complete even though the completion handler will be called with a cancellation error. This greatly improves performance of table and collection views displaying large amounts of images. + +> It is NOT recommended to directly call `cancel` on the `request` in the `RequestReceipt`. Doing so can lead to issues such as duplicate downloads never being allowed to complete. + +### UIImageView Extension + +The [UIImage Extensions](#uiimage-extensions), [Image Filters](#image-filters), [Image Cache](#image-cache) and [Image Downloader](#image-downloader) were all designed to be flexible and standalone, yet also to provide the foundation of the `UIImageView` extension. Due to the powerful support of these classes, protocols and extensions, the `UIImageView` APIs are concise, easy to use and contain a large amount of functionality. + +#### Setting Image with URL + +Setting the image with a URL will asynchronously download the image and set it once the request is finished. + +```swift +let imageView = UIImageView(frame: frame) +let url = URL(string: "https://httpbin.org/image/png")! + +imageView.af_setImage(withURL: url) +``` + +> If the image is cached locally, the image is set immediately. + +#### Placeholder Images + +By specifying a placeholder image, the image view uses the placeholder image until the remote image is downloaded. + +```swift +let imageView = UIImageView(frame: frame) +let url = URL(string: "https://httpbin.org/image/png")! +let placeholderImage = UIImage(named: "placeholder")! + +imageView.af_setImage(withURL: url, placeholderImage: placeholderImage) +``` + +> If the remote image is cached locally, the placeholder image is never set. + +#### Image Filters + +If an image filter is specified, it is applied asynchronously after the remote image is downloaded. Once the filter execution is complete, the resulting image is set on the image view. + +```swift +let imageView = UIImageView(frame: frame) + +let url = URL(string: "https://httpbin.org/image/png")! +let placeholderImage = UIImage(named: "placeholder")! + +let filter = AspectScaledToFillSizeWithRoundedCornersFilter( + size: imageView.frame.size, + radius: 20.0 +) + +imageView.af_setImage( + withURL: url, + placeholderImage: placeholderImage, + filter: filter +) +``` + +> If the remote image with the applied filter is cached locally, the image is set immediately. + +#### Image Transitions + +By default, there is no image transition animation when setting the image on the image view. If you wish to add a cross dissolve or flip-from-bottom animation, then specify an `ImageTransition` with the preferred duration. + +```swift +let imageView = UIImageView(frame: frame) + +let url = URL(string: "https://httpbin.org/image/png")! +let placeholderImage = UIImage(named: "placeholder")! + +let filter = AspectScaledToFillSizeWithRoundedCornersFilter( + size: imageView.frame.size, + radius: 20.0 +) + +imageView.af_setImage( + withURL: url, + placeholderImage: placeholderImage, + filter: filter, + imageTransition: .crossDissolve(0.2) +) +``` + +> If the remote image is cached locally, the image transition is ignored. + +#### Image Downloader + +The `UIImageView` extension is powered by the default `ImageDownloader` instance. To customize cache capacities, download priorities, request cache policies, timeout durations, etc., please refer to the [Image Downloader](#image-downloader) documentation. + +##### Authentication + +If an image requires and authentication credential from the `UIImageView` extension, it can be provided as follows: + +```swift +ImageDownloader.default.addAuthentication(user: "user", password: "password") +``` + +--- + +## Credits + +Alamofire is owned and maintained by the [Alamofire Software Foundation](http://alamofire.org). You can follow them on Twitter at [@AlamofireSF](https://twitter.com/AlamofireSF) for project updates and releases. + +### Security Disclosure + +If you believe you have identified a security vulnerability with AlamofireImage, you should report it as soon as possible via email to security@alamofire.org. Please do not post it to a public issue tracker. + +## Donations + +The [ASF](https://github.com/Alamofire/Foundation#members) is looking to raise money to officially register as a federal non-profit organization. Registering will allow us members to gain some legal protections and also allow us to put donations to use, tax free. Donating to the ASF will enable us to: + +* Pay our legal fees to register as a federal non-profit organization +* Pay our yearly legal fees to keep the non-profit in good status +* Pay for our mail servers to help us stay on top of all questions and security issues +* Potentially fund test servers to make it easier for us to test the edge cases +* Potentially fund developers to work on one of our projects full-time + +The community adoption of the ASF libraries has been amazing. We are greatly humbled by your enthusiasm around the projects, and want to continue to do everything we can to move the needle forward. With your continued support, the ASF will be able to improve its reach and also provide better legal safety for the core members. If you use any of our libraries for work, see if your employers would be interested in donating. Our initial goal is to raise $1000 to get all our legal ducks in a row and kickstart this campaign. Any amount you can donate today to help us reach our goal would be greatly appreciated. + +Click here to lend your support to: Alamofire Software Foundation and make a donation at pledgie.com ! + +## License + +AlamofireImage is released under the MIT license. See LICENSE for details. diff --git a/tmp/Pods/AlamofireImage/Source/AFIError.swift b/tmp/Pods/AlamofireImage/Source/AFIError.swift new file mode 100644 index 0000000..ed152e6 --- /dev/null +++ b/tmp/Pods/AlamofireImage/Source/AFIError.swift @@ -0,0 +1,63 @@ +// +// AFIError.swift +// +// Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +/// `AFIError` is the error type returned by AlamofireImage. +/// +/// - requestCancelled: The request was explicitly cancelled. +/// - imageSerializationFailed: Response data could not be serialized into an image. +public enum AFIError: Error { + case requestCancelled + case imageSerializationFailed +} + +// MARK: - Error Booleans + +extension AFIError { + /// Returns `true` if the `AFIError` is a request cancellation error, `false` otherwise. + public var isRequestCancelledError: Bool { + if case .requestCancelled = self { return true } + return false + } + + /// Returns `true` if the `AFIError` is an image serialization error, `false` otherwise. + public var isImageSerializationFailedError: Bool { + if case .imageSerializationFailed = self { return true } + return false + } +} + +// MARK: - Error Descriptions + +extension AFIError: LocalizedError { + public var errorDescription: String? { + switch self { + case .requestCancelled: + return "The request was explicitly cancelled." + case .imageSerializationFailed: + return "Response data could not be serialized into an image." + } + } +} diff --git a/tmp/Pods/AlamofireImage/Source/Image.swift b/tmp/Pods/AlamofireImage/Source/Image.swift new file mode 100644 index 0000000..e221390 --- /dev/null +++ b/tmp/Pods/AlamofireImage/Source/Image.swift @@ -0,0 +1,33 @@ +// +// Image.swift +// +// Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +#if os(iOS) || os(tvOS) || os(watchOS) +import UIKit +public typealias Image = UIImage +#elseif os(macOS) +import Cocoa +public typealias Image = NSImage +#endif diff --git a/tmp/Pods/AlamofireImage/Source/ImageCache.swift b/tmp/Pods/AlamofireImage/Source/ImageCache.swift new file mode 100644 index 0000000..eb32313 --- /dev/null +++ b/tmp/Pods/AlamofireImage/Source/ImageCache.swift @@ -0,0 +1,345 @@ +// +// ImageCache.swift +// +// Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Alamofire +import Foundation + +#if os(iOS) || os(tvOS) || os(watchOS) +import UIKit +#elseif os(macOS) +import Cocoa +#endif + +// MARK: ImageCache + +/// The `ImageCache` protocol defines a set of APIs for adding, removing and fetching images from a cache. +public protocol ImageCache { + /// Adds the image to the cache with the given identifier. + func add(_ image: Image, withIdentifier identifier: String) + + /// Removes the image from the cache matching the given identifier. + func removeImage(withIdentifier identifier: String) -> Bool + + /// Removes all images stored in the cache. + @discardableResult + func removeAllImages() -> Bool + + /// Returns the image in the cache associated with the given identifier. + func image(withIdentifier identifier: String) -> Image? +} + +/// The `ImageRequestCache` protocol extends the `ImageCache` protocol by adding methods for adding, removing and +/// fetching images from a cache given an `URLRequest` and additional identifier. +public protocol ImageRequestCache: ImageCache { + /// Adds the image to the cache using an identifier created from the request and identifier. + func add(_ image: Image, for request: URLRequest, withIdentifier identifier: String?) + + /// Removes the image from the cache using an identifier created from the request and identifier. + func removeImage(for request: URLRequest, withIdentifier identifier: String?) -> Bool + + /// Returns the image from the cache associated with an identifier created from the request and identifier. + func image(for request: URLRequest, withIdentifier identifier: String?) -> Image? +} + +// MARK: - + +/// The `AutoPurgingImageCache` in an in-memory image cache used to store images up to a given memory capacity. When +/// the memory capacity is reached, the image cache is sorted by last access date, then the oldest image is continuously +/// purged until the preferred memory usage after purge is met. Each time an image is accessed through the cache, the +/// internal access date of the image is updated. +open class AutoPurgingImageCache: ImageRequestCache { + class CachedImage { + let image: Image + let identifier: String + let totalBytes: UInt64 + var lastAccessDate: Date + + init(_ image: Image, identifier: String) { + self.image = image + self.identifier = identifier + self.lastAccessDate = Date() + + self.totalBytes = { + #if os(iOS) || os(tvOS) || os(watchOS) + let size = CGSize(width: image.size.width * image.scale, height: image.size.height * image.scale) + #elseif os(macOS) + let size = CGSize(width: image.size.width, height: image.size.height) + #endif + + let bytesPerPixel: CGFloat = 4.0 + let bytesPerRow = size.width * bytesPerPixel + let totalBytes = UInt64(bytesPerRow) * UInt64(size.height) + + return totalBytes + }() + } + + func accessImage() -> Image { + lastAccessDate = Date() + return image + } + } + + // MARK: Properties + + /// The current total memory usage in bytes of all images stored within the cache. + open var memoryUsage: UInt64 { + var memoryUsage: UInt64 = 0 + synchronizationQueue.sync { memoryUsage = self.currentMemoryUsage } + + return memoryUsage + } + + /// The total memory capacity of the cache in bytes. + open let memoryCapacity: UInt64 + + /// The preferred memory usage after purge in bytes. During a purge, images will be purged until the memory + /// capacity drops below this limit. + open let preferredMemoryUsageAfterPurge: UInt64 + + private let synchronizationQueue: DispatchQueue + private var cachedImages: [String: CachedImage] + private var currentMemoryUsage: UInt64 + + // MARK: Initialization + + /// Initialies the `AutoPurgingImageCache` instance with the given memory capacity and preferred memory usage + /// after purge limit. + /// + /// Please note, the memory capacity must always be greater than or equal to the preferred memory usage after purge. + /// + /// - parameter memoryCapacity: The total memory capacity of the cache in bytes. `100 MB` by default. + /// - parameter preferredMemoryUsageAfterPurge: The preferred memory usage after purge in bytes. `60 MB` by default. + /// + /// - returns: The new `AutoPurgingImageCache` instance. + public init(memoryCapacity: UInt64 = 100_000_000, preferredMemoryUsageAfterPurge: UInt64 = 60_000_000) { + self.memoryCapacity = memoryCapacity + self.preferredMemoryUsageAfterPurge = preferredMemoryUsageAfterPurge + + precondition( + memoryCapacity >= preferredMemoryUsageAfterPurge, + "The `memoryCapacity` must be greater than or equal to `preferredMemoryUsageAfterPurge`" + ) + + self.cachedImages = [:] + self.currentMemoryUsage = 0 + + self.synchronizationQueue = { + let name = String(format: "org.alamofire.autopurgingimagecache-%08x%08x", arc4random(), arc4random()) + return DispatchQueue(label: name, attributes: .concurrent) + }() + + #if os(iOS) || os(tvOS) + NotificationCenter.default.addObserver( + self, + selector: #selector(AutoPurgingImageCache.removeAllImages), + name: Notification.Name.UIApplicationDidReceiveMemoryWarning, + object: nil + ) + #endif + } + + deinit { + NotificationCenter.default.removeObserver(self) + } + + // MARK: Add Image to Cache + + /// Adds the image to the cache using an identifier created from the request and optional identifier. + /// + /// - parameter image: The image to add to the cache. + /// - parameter request: The request used to generate the image's unique identifier. + /// - parameter identifier: The additional identifier to append to the image's unique identifier. + open func add(_ image: Image, for request: URLRequest, withIdentifier identifier: String? = nil) { + let requestIdentifier = imageCacheKey(for: request, withIdentifier: identifier) + add(image, withIdentifier: requestIdentifier) + } + + /// Adds the image to the cache with the given identifier. + /// + /// - parameter image: The image to add to the cache. + /// - parameter identifier: The identifier to use to uniquely identify the image. + open func add(_ image: Image, withIdentifier identifier: String) { + synchronizationQueue.async(flags: [.barrier]) { + let cachedImage = CachedImage(image, identifier: identifier) + + if let previousCachedImage = self.cachedImages[identifier] { + self.currentMemoryUsage -= previousCachedImage.totalBytes + } + + self.cachedImages[identifier] = cachedImage + self.currentMemoryUsage += cachedImage.totalBytes + } + + synchronizationQueue.async(flags: [.barrier]) { + if self.currentMemoryUsage > self.memoryCapacity { + let bytesToPurge = self.currentMemoryUsage - self.preferredMemoryUsageAfterPurge + + var sortedImages = self.cachedImages.map { $1 } + + sortedImages.sort { + let date1 = $0.lastAccessDate + let date2 = $1.lastAccessDate + + return date1.timeIntervalSince(date2) < 0.0 + } + + var bytesPurged = UInt64(0) + + for cachedImage in sortedImages { + self.cachedImages.removeValue(forKey: cachedImage.identifier) + bytesPurged += cachedImage.totalBytes + + if bytesPurged >= bytesToPurge { + break + } + } + + self.currentMemoryUsage -= bytesPurged + } + } + } + + // MARK: Remove Image from Cache + + /// Removes the image from the cache using an identifier created from the request and optional identifier. + /// + /// - parameter request: The request used to generate the image's unique identifier. + /// - parameter identifier: The additional identifier to append to the image's unique identifier. + /// + /// - returns: `true` if the image was removed, `false` otherwise. + @discardableResult + open func removeImage(for request: URLRequest, withIdentifier identifier: String?) -> Bool { + let requestIdentifier = imageCacheKey(for: request, withIdentifier: identifier) + return removeImage(withIdentifier: requestIdentifier) + } + + /// Removes all images from the cache created from the request. + /// + /// - parameter request: The request used to generate the image's unique identifier. + /// + /// - returns: `true` if any images were removed, `false` otherwise. + @discardableResult + open func removeImages(matching request: URLRequest) -> Bool { + let requestIdentifier = imageCacheKey(for: request, withIdentifier: nil) + var removed = false + + synchronizationQueue.sync { + for key in self.cachedImages.keys where key.hasPrefix(requestIdentifier) { + if let cachedImage = self.cachedImages.removeValue(forKey: key) { + self.currentMemoryUsage -= cachedImage.totalBytes + removed = true + } + } + } + + return removed + } + + /// Removes the image from the cache matching the given identifier. + /// + /// - parameter identifier: The unique identifier for the image. + /// + /// - returns: `true` if the image was removed, `false` otherwise. + @discardableResult + open func removeImage(withIdentifier identifier: String) -> Bool { + var removed = false + + synchronizationQueue.sync { + if let cachedImage = self.cachedImages.removeValue(forKey: identifier) { + self.currentMemoryUsage -= cachedImage.totalBytes + removed = true + } + } + + return removed + } + + /// Removes all images stored in the cache. + /// + /// - returns: `true` if images were removed from the cache, `false` otherwise. + @discardableResult @objc + open func removeAllImages() -> Bool { + var removed = false + + synchronizationQueue.sync { + if !self.cachedImages.isEmpty { + self.cachedImages.removeAll() + self.currentMemoryUsage = 0 + + removed = true + } + } + + return removed + } + + // MARK: Fetch Image from Cache + + /// Returns the image from the cache associated with an identifier created from the request and optional identifier. + /// + /// - parameter request: The request used to generate the image's unique identifier. + /// - parameter identifier: The additional identifier to append to the image's unique identifier. + /// + /// - returns: The image if it is stored in the cache, `nil` otherwise. + open func image(for request: URLRequest, withIdentifier identifier: String? = nil) -> Image? { + let requestIdentifier = imageCacheKey(for: request, withIdentifier: identifier) + return image(withIdentifier: requestIdentifier) + } + + /// Returns the image in the cache associated with the given identifier. + /// + /// - parameter identifier: The unique identifier for the image. + /// + /// - returns: The image if it is stored in the cache, `nil` otherwise. + open func image(withIdentifier identifier: String) -> Image? { + var image: Image? + + synchronizationQueue.sync { + if let cachedImage = self.cachedImages[identifier] { + image = cachedImage.accessImage() + } + } + + return image + } + + // MARK: Image Cache Keys + + /// Returns the unique image cache key for the specified request and additional identifier. + /// + /// - parameter request: The request. + /// - parameter identifier: The additional identifier. + /// + /// - returns: The unique image cache key. + open func imageCacheKey(for request: URLRequest, withIdentifier identifier: String?) -> String { + var key = request.url?.absoluteString ?? "" + + if let identifier = identifier { + key += "-\(identifier)" + } + + return key + } +} diff --git a/tmp/Pods/AlamofireImage/Source/ImageDownloader.swift b/tmp/Pods/AlamofireImage/Source/ImageDownloader.swift new file mode 100644 index 0000000..8fe3305 --- /dev/null +++ b/tmp/Pods/AlamofireImage/Source/ImageDownloader.swift @@ -0,0 +1,559 @@ +// +// ImageDownloader.swift +// +// Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Alamofire +import Foundation + +#if os(iOS) || os(tvOS) || os(watchOS) +import UIKit +#elseif os(macOS) +import Cocoa +#endif + +/// The `RequestReceipt` is an object vended by the `ImageDownloader` when starting a download request. It can be used +/// to cancel active requests running on the `ImageDownloader` session. As a general rule, image download requests +/// should be cancelled using the `RequestReceipt` instead of calling `cancel` directly on the `request` itself. The +/// `ImageDownloader` is optimized to handle duplicate request scenarios as well as pending versus active downloads. +open class RequestReceipt { + /// The download request created by the `ImageDownloader`. + open let request: Request + + /// The unique identifier for the image filters and completion handlers when duplicate requests are made. + open let receiptID: String + + init(request: Request, receiptID: String) { + self.request = request + self.receiptID = receiptID + } +} + +// MARK: - + +/// The `ImageDownloader` class is responsible for downloading images in parallel on a prioritized queue. Incoming +/// downloads are added to the front or back of the queue depending on the download prioritization. Each downloaded +/// image is cached in the underlying `NSURLCache` as well as the in-memory image cache that supports image filters. +/// By default, any download request with a cached image equivalent in the image cache will automatically be served the +/// cached image representation. Additional advanced features include supporting multiple image filters and completion +/// handlers for a single request. +open class ImageDownloader { + /// The completion handler closure used when an image download completes. + public typealias CompletionHandler = (DataResponse) -> Void + + /// The progress handler closure called periodically during an image download. + public typealias ProgressHandler = DataRequest.ProgressHandler + + // MARK: Helper Types + + /// Defines the order prioritization of incoming download requests being inserted into the queue. + /// + /// - fifo: All incoming downloads are added to the back of the queue. + /// - lifo: All incoming downloads are added to the front of the queue. + public enum DownloadPrioritization { + case fifo, lifo + } + + class ResponseHandler { + let urlID: String + let handlerID: String + let request: DataRequest + var operations: [(receiptID: String, filter: ImageFilter?, completion: CompletionHandler?)] + + init( + request: DataRequest, + handlerID: String, + receiptID: String, + filter: ImageFilter?, + completion: CompletionHandler?) + { + self.request = request + self.urlID = ImageDownloader.urlIdentifier(for: request.request!) + self.handlerID = handlerID + self.operations = [(receiptID: receiptID, filter: filter, completion: completion)] + } + } + + // MARK: Properties + + /// The image cache used to store all downloaded images in. + open let imageCache: ImageRequestCache? + + /// The credential used for authenticating each download request. + open private(set) var credential: URLCredential? + + /// Response serializer used to convert the image data to UIImage. + public var imageResponseSerializer = DataRequest.imageResponseSerializer() + + /// The underlying Alamofire `Manager` instance used to handle all download requests. + open let sessionManager: SessionManager + + let downloadPrioritization: DownloadPrioritization + let maximumActiveDownloads: Int + + var activeRequestCount = 0 + var queuedRequests: [Request] = [] + var responseHandlers: [String: ResponseHandler] = [:] + + private let synchronizationQueue: DispatchQueue = { + let name = String(format: "org.alamofire.imagedownloader.synchronizationqueue-%08x%08x", arc4random(), arc4random()) + return DispatchQueue(label: name) + }() + + private let responseQueue: DispatchQueue = { + let name = String(format: "org.alamofire.imagedownloader.responsequeue-%08x%08x", arc4random(), arc4random()) + return DispatchQueue(label: name, attributes: .concurrent) + }() + + // MARK: Initialization + + /// The default instance of `ImageDownloader` initialized with default values. + open static let `default` = ImageDownloader() + + /// Creates a default `URLSessionConfiguration` with common usage parameter values. + /// + /// - returns: The default `URLSessionConfiguration` instance. + open class func defaultURLSessionConfiguration() -> URLSessionConfiguration { + let configuration = URLSessionConfiguration.default + + configuration.httpAdditionalHeaders = SessionManager.defaultHTTPHeaders + configuration.httpShouldSetCookies = true + configuration.httpShouldUsePipelining = false + + configuration.requestCachePolicy = .useProtocolCachePolicy + configuration.allowsCellularAccess = true + configuration.timeoutIntervalForRequest = 60 + + configuration.urlCache = ImageDownloader.defaultURLCache() + + return configuration + } + + /// Creates a default `URLCache` with common usage parameter values. + /// + /// - returns: The default `URLCache` instance. + open class func defaultURLCache() -> URLCache { + return URLCache( + memoryCapacity: 20 * 1024 * 1024, // 20 MB + diskCapacity: 150 * 1024 * 1024, // 150 MB + diskPath: "org.alamofire.imagedownloader" + ) + } + + /// Initializes the `ImageDownloader` instance with the given configuration, download prioritization, maximum active + /// download count and image cache. + /// + /// - parameter configuration: The `URLSessionConfiguration` to use to create the underlying Alamofire + /// `SessionManager` instance. + /// - parameter downloadPrioritization: The download prioritization of the download queue. `.fifo` by default. + /// - parameter maximumActiveDownloads: The maximum number of active downloads allowed at any given time. + /// - parameter imageCache: The image cache used to store all downloaded images in. + /// + /// - returns: The new `ImageDownloader` instance. + public init( + configuration: URLSessionConfiguration = ImageDownloader.defaultURLSessionConfiguration(), + downloadPrioritization: DownloadPrioritization = .fifo, + maximumActiveDownloads: Int = 4, + imageCache: ImageRequestCache? = AutoPurgingImageCache()) + { + self.sessionManager = SessionManager(configuration: configuration) + self.sessionManager.startRequestsImmediately = false + + self.downloadPrioritization = downloadPrioritization + self.maximumActiveDownloads = maximumActiveDownloads + self.imageCache = imageCache + } + + /// Initializes the `ImageDownloader` instance with the given session manager, download prioritization, maximum + /// active download count and image cache. + /// + /// - parameter sessionManager: The Alamofire `SessionManager` instance to handle all download requests. + /// - parameter downloadPrioritization: The download prioritization of the download queue. `.fifo` by default. + /// - parameter maximumActiveDownloads: The maximum number of active downloads allowed at any given time. + /// - parameter imageCache: The image cache used to store all downloaded images in. + /// + /// - returns: The new `ImageDownloader` instance. + public init( + sessionManager: SessionManager, + downloadPrioritization: DownloadPrioritization = .fifo, + maximumActiveDownloads: Int = 4, + imageCache: ImageRequestCache? = AutoPurgingImageCache()) + { + self.sessionManager = sessionManager + self.sessionManager.startRequestsImmediately = false + + self.downloadPrioritization = downloadPrioritization + self.maximumActiveDownloads = maximumActiveDownloads + self.imageCache = imageCache + } + + // MARK: Authentication + + /// Associates an HTTP Basic Auth credential with all future download requests. + /// + /// - parameter user: The user. + /// - parameter password: The password. + /// - parameter persistence: The URL credential persistence. `.forSession` by default. + open func addAuthentication( + user: String, + password: String, + persistence: URLCredential.Persistence = .forSession) + { + let credential = URLCredential(user: user, password: password, persistence: persistence) + addAuthentication(usingCredential: credential) + } + + /// Associates the specified credential with all future download requests. + /// + /// - parameter credential: The credential. + open func addAuthentication(usingCredential credential: URLCredential) { + synchronizationQueue.sync { + self.credential = credential + } + } + + // MARK: Download + + /// Creates a download request using the internal Alamofire `SessionManager` instance for the specified URL request. + /// + /// If the same download request is already in the queue or currently being downloaded, the filter and completion + /// handler are appended to the already existing request. Once the request completes, all filters and completion + /// handlers attached to the request are executed in the order they were added. Additionally, any filters attached + /// to the request with the same identifiers are only executed once. The resulting image is then passed into each + /// completion handler paired with the filter. + /// + /// You should not attempt to directly cancel the `request` inside the request receipt since other callers may be + /// relying on the completion of that request. Instead, you should call `cancelRequestForRequestReceipt` with the + /// returned request receipt to allow the `ImageDownloader` to optimize the cancellation on behalf of all active + /// callers. + /// + /// - parameter urlRequest: The URL request. + /// - parameter receiptID: The `identifier` for the `RequestReceipt` returned. Defaults to a new, randomly + /// generated UUID. + /// - parameter filter: The image filter to apply to the image after the download is complete. Defaults + /// to `nil`. + /// - parameter progress: The closure to be executed periodically during the lifecycle of the request. + /// Defaults to `nil`. + /// - parameter progressQueue: The dispatch queue to call the progress closure on. Defaults to the main queue. + /// - parameter completion: The closure called when the download request is complete. Defaults to `nil`. + /// + /// - returns: The request receipt for the download request if available. `nil` if the image is stored in the image + /// cache and the URL request cache policy allows the cache to be used. + @discardableResult + open func download( + _ urlRequest: URLRequestConvertible, + receiptID: String = UUID().uuidString, + filter: ImageFilter? = nil, + progress: ProgressHandler? = nil, + progressQueue: DispatchQueue = DispatchQueue.main, + completion: CompletionHandler?) + -> RequestReceipt? + { + var request: DataRequest! + + synchronizationQueue.sync { + // 1) Append the filter and completion handler to a pre-existing request if it already exists + let urlID = ImageDownloader.urlIdentifier(for: urlRequest) + + if let responseHandler = self.responseHandlers[urlID] { + responseHandler.operations.append((receiptID: receiptID, filter: filter, completion: completion)) + request = responseHandler.request + return + } + + // 2) Attempt to load the image from the image cache if the cache policy allows it + if let request = urlRequest.urlRequest { + switch request.cachePolicy { + case .useProtocolCachePolicy, .returnCacheDataElseLoad, .returnCacheDataDontLoad: + if let image = self.imageCache?.image(for: request, withIdentifier: filter?.identifier) { + DispatchQueue.main.async { + let response = DataResponse( + request: urlRequest.urlRequest, + response: nil, + data: nil, + result: .success(image) + ) + + completion?(response) + } + + return + } + default: + break + } + } + + // 3) Create the request and set up authentication, validation and response serialization + request = self.sessionManager.request(urlRequest) + + if let credential = self.credential { + request.authenticate(usingCredential: credential) + } + + request.validate() + + if let progress = progress { + request.downloadProgress(queue: progressQueue, closure: progress) + } + + // Generate a unique handler id to check whether the active request has changed while downloading + let handlerID = UUID().uuidString + + request.response( + queue: self.responseQueue, + responseSerializer: imageResponseSerializer, + completionHandler: { [weak self] response in + guard let strongSelf = self, let request = response.request else { return } + + defer { + strongSelf.safelyDecrementActiveRequestCount() + strongSelf.safelyStartNextRequestIfNecessary() + } + + // Early out if the request has changed out from under us + let handler = strongSelf.safelyFetchResponseHandler(withURLIdentifier: urlID) + guard handler?.handlerID == handlerID else { return } + + guard let responseHandler = strongSelf.safelyRemoveResponseHandler(withURLIdentifier: urlID) else { + return + } + + switch response.result { + case .success(let image): + var filteredImages: [String: Image] = [:] + + for (_, filter, completion) in responseHandler.operations { + var filteredImage: Image + + if let filter = filter { + if let alreadyFilteredImage = filteredImages[filter.identifier] { + filteredImage = alreadyFilteredImage + } else { + filteredImage = filter.filter(image) + filteredImages[filter.identifier] = filteredImage + } + } else { + filteredImage = image + } + + strongSelf.imageCache?.add(filteredImage, for: request, withIdentifier: filter?.identifier) + + DispatchQueue.main.async { + let response = DataResponse( + request: response.request, + response: response.response, + data: response.data, + result: .success(filteredImage), + timeline: response.timeline + ) + + completion?(response) + } + } + case .failure: + for (_, _, completion) in responseHandler.operations { + DispatchQueue.main.async { completion?(response) } + } + } + } + ) + + // 4) Store the response handler for use when the request completes + let responseHandler = ResponseHandler( + request: request, + handlerID: handlerID, + receiptID: receiptID, + filter: filter, + completion: completion + ) + + self.responseHandlers[urlID] = responseHandler + + // 5) Either start the request or enqueue it depending on the current active request count + if self.isActiveRequestCountBelowMaximumLimit() { + self.start(request) + } else { + self.enqueue(request) + } + } + + if let request = request { + return RequestReceipt(request: request, receiptID: receiptID) + } + + return nil + } + + /// Creates a download request using the internal Alamofire `SessionManager` instance for each specified URL request. + /// + /// For each request, if the same download request is already in the queue or currently being downloaded, the + /// filter and completion handler are appended to the already existing request. Once the request completes, all + /// filters and completion handlers attached to the request are executed in the order they were added. + /// Additionally, any filters attached to the request with the same identifiers are only executed once. The + /// resulting image is then passed into each completion handler paired with the filter. + /// + /// You should not attempt to directly cancel any of the `request`s inside the request receipts array since other + /// callers may be relying on the completion of that request. Instead, you should call + /// `cancelRequestForRequestReceipt` with the returned request receipt to allow the `ImageDownloader` to optimize + /// the cancellation on behalf of all active callers. + /// + /// - parameter urlRequests: The URL requests. + /// - parameter filter The image filter to apply to the image after each download is complete. + /// - parameter progress: The closure to be executed periodically during the lifecycle of the request. Defaults + /// to `nil`. + /// - parameter progressQueue: The dispatch queue to call the progress closure on. Defaults to the main queue. + /// - parameter completion: The closure called when each download request is complete. + /// + /// - returns: The request receipts for the download requests if available. If an image is stored in the image + /// cache and the URL request cache policy allows the cache to be used, a receipt will not be returned + /// for that request. + @discardableResult + open func download( + _ urlRequests: [URLRequestConvertible], + filter: ImageFilter? = nil, + progress: ProgressHandler? = nil, + progressQueue: DispatchQueue = DispatchQueue.main, + completion: CompletionHandler? = nil) + -> [RequestReceipt] + { + #if swift(>=4.1) + return urlRequests.compactMap { + download($0, filter: filter, progress: progress, progressQueue: progressQueue, completion: completion) + } + #else + return urlRequests.flatMap { + download($0, filter: filter, progress: progress, progressQueue: progressQueue, completion: completion) + } + #endif + } + + /// Cancels the request in the receipt by removing the response handler and cancelling the request if necessary. + /// + /// If the request is pending in the queue, it will be cancelled if no other response handlers are registered with + /// the request. If the request is currently executing or is already completed, the response handler is removed and + /// will not be called. + /// + /// - parameter requestReceipt: The request receipt to cancel. + open func cancelRequest(with requestReceipt: RequestReceipt) { + synchronizationQueue.sync { + let urlID = ImageDownloader.urlIdentifier(for: requestReceipt.request.request!) + guard let responseHandler = self.responseHandlers[urlID] else { return } + + if let index = responseHandler.operations.index(where: { $0.receiptID == requestReceipt.receiptID }) { + let operation = responseHandler.operations.remove(at: index) + + let response: DataResponse = { + let urlRequest = requestReceipt.request.request + let error = AFIError.requestCancelled + + return DataResponse(request: urlRequest, response: nil, data: nil, result: .failure(error)) + }() + + DispatchQueue.main.async { operation.completion?(response) } + } + + if responseHandler.operations.isEmpty && requestReceipt.request.task?.state == .suspended { + requestReceipt.request.cancel() + self.responseHandlers.removeValue(forKey: urlID) + } + } + } + + // MARK: Internal - Thread-Safe Request Methods + + func safelyFetchResponseHandler(withURLIdentifier urlIdentifier: String) -> ResponseHandler? { + var responseHandler: ResponseHandler? + + synchronizationQueue.sync { + responseHandler = self.responseHandlers[urlIdentifier] + } + + return responseHandler + } + + func safelyRemoveResponseHandler(withURLIdentifier identifier: String) -> ResponseHandler? { + var responseHandler: ResponseHandler? + + synchronizationQueue.sync { + responseHandler = self.responseHandlers.removeValue(forKey: identifier) + } + + return responseHandler + } + + func safelyStartNextRequestIfNecessary() { + synchronizationQueue.sync { + guard self.isActiveRequestCountBelowMaximumLimit() else { return } + + while !self.queuedRequests.isEmpty { + if let request = self.dequeue(), request.task?.state == .suspended { + self.start(request) + break + } + } + } + } + + func safelyDecrementActiveRequestCount() { + self.synchronizationQueue.sync { + if self.activeRequestCount > 0 { + self.activeRequestCount -= 1 + } + } + } + + // MARK: Internal - Non Thread-Safe Request Methods + + func start(_ request: Request) { + request.resume() + activeRequestCount += 1 + } + + func enqueue(_ request: Request) { + switch downloadPrioritization { + case .fifo: + queuedRequests.append(request) + case .lifo: + queuedRequests.insert(request, at: 0) + } + } + + @discardableResult + func dequeue() -> Request? { + var request: Request? + + if !queuedRequests.isEmpty { + request = queuedRequests.removeFirst() + } + + return request + } + + func isActiveRequestCountBelowMaximumLimit() -> Bool { + return activeRequestCount < maximumActiveDownloads + } + + static func urlIdentifier(for urlRequest: URLRequestConvertible) -> String { + return urlRequest.urlRequest?.url?.absoluteString ?? "" + } +} diff --git a/tmp/Pods/AlamofireImage/Source/ImageFilter.swift b/tmp/Pods/AlamofireImage/Source/ImageFilter.swift new file mode 100644 index 0000000..65dfab9 --- /dev/null +++ b/tmp/Pods/AlamofireImage/Source/ImageFilter.swift @@ -0,0 +1,423 @@ +// +// ImageFilter.swift +// +// Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Foundation + +#if os(iOS) || os(tvOS) || os(watchOS) +import UIKit +#elseif os(macOS) +import Cocoa +#endif + +// MARK: ImageFilter + +/// The `ImageFilter` protocol defines properties for filtering an image as well as identification of the filter. +public protocol ImageFilter { + /// A closure used to create an alternative representation of the given image. + var filter: (Image) -> Image { get } + + /// The string used to uniquely identify the filter operation. + var identifier: String { get } +} + +extension ImageFilter { + /// The unique identifier for any `ImageFilter` type. + public var identifier: String { return "\(type(of: self))" } +} + +// MARK: - Sizable + +/// The `Sizable` protocol defines a size property intended for use with `ImageFilter` types. +public protocol Sizable { + /// The size of the type. + var size: CGSize { get } +} + +extension ImageFilter where Self: Sizable { + /// The unique idenitifier for an `ImageFilter` conforming to the `Sizable` protocol. + public var identifier: String { + let width = Int64(size.width.rounded()) + let height = Int64(size.height.rounded()) + + return "\(type(of: self))-size:(\(width)x\(height))" + } +} + +// MARK: - Roundable + +/// The `Roundable` protocol defines a radius property intended for use with `ImageFilter` types. +public protocol Roundable { + /// The radius of the type. + var radius: CGFloat { get } +} + +extension ImageFilter where Self: Roundable { + /// The unique idenitifier for an `ImageFilter` conforming to the `Roundable` protocol. + public var identifier: String { + let radius = Int64(self.radius.rounded()) + return "\(type(of: self))-radius:(\(radius))" + } +} + +// MARK: - DynamicImageFilter + +/// The `DynamicImageFilter` class simplifies custom image filter creation by using a trailing closure initializer. +public struct DynamicImageFilter: ImageFilter { + /// The string used to uniquely identify the image filter operation. + public let identifier: String + + /// A closure used to create an alternative representation of the given image. + public let filter: (Image) -> Image + + /// Initializes the `DynamicImageFilter` instance with the specified identifier and filter closure. + /// + /// - parameter identifier: The unique identifier of the filter. + /// - parameter filter: A closure used to create an alternative representation of the given image. + /// + /// - returns: The new `DynamicImageFilter` instance. + public init(_ identifier: String, filter: @escaping (Image) -> Image) { + self.identifier = identifier + self.filter = filter + } +} + +// MARK: - CompositeImageFilter + +/// The `CompositeImageFilter` protocol defines an additional `filters` property to support multiple composite filters. +public protocol CompositeImageFilter: ImageFilter { + /// The image filters to apply to the image in sequential order. + var filters: [ImageFilter] { get } +} + +public extension CompositeImageFilter { + /// The unique idenitifier for any `CompositeImageFilter` type. + var identifier: String { + return filters.map { $0.identifier }.joined(separator: "_") + } + + /// The filter closure for any `CompositeImageFilter` type. + var filter: (Image) -> Image { + return { image in + return self.filters.reduce(image) { $1.filter($0) } + } + } +} + +// MARK: - DynamicCompositeImageFilter + +/// The `DynamicCompositeImageFilter` class is a composite image filter based on a specified array of filters. +public struct DynamicCompositeImageFilter: CompositeImageFilter { + /// The image filters to apply to the image in sequential order. + public let filters: [ImageFilter] + + /// Initializes the `DynamicCompositeImageFilter` instance with the given filters. + /// + /// - parameter filters: The filters taking part in the composite image filter. + /// + /// - returns: The new `DynamicCompositeImageFilter` instance. + public init(_ filters: [ImageFilter]) { + self.filters = filters + } + + /// Initializes the `DynamicCompositeImageFilter` instance with the given filters. + /// + /// - parameter filters: The filters taking part in the composite image filter. + /// + /// - returns: The new `DynamicCompositeImageFilter` instance. + public init(_ filters: ImageFilter...) { + self.init(filters) + } +} + +#if os(iOS) || os(tvOS) || os(watchOS) + +// MARK: - Single Pass Image Filters (iOS, tvOS and watchOS only) - + +/// Scales an image to a specified size. +public struct ScaledToSizeFilter: ImageFilter, Sizable { + /// The size of the filter. + public let size: CGSize + + /// Initializes the `ScaledToSizeFilter` instance with the given size. + /// + /// - parameter size: The size. + /// + /// - returns: The new `ScaledToSizeFilter` instance. + public init(size: CGSize) { + self.size = size + } + + /// The filter closure used to create the modified representation of the given image. + public var filter: (Image) -> Image { + return { image in + return image.af_imageScaled(to: self.size) + } + } +} + +// MARK: - + +/// Scales an image from the center while maintaining the aspect ratio to fit within a specified size. +public struct AspectScaledToFitSizeFilter: ImageFilter, Sizable { + /// The size of the filter. + public let size: CGSize + + /// Initializes the `AspectScaledToFitSizeFilter` instance with the given size. + /// + /// - parameter size: The size. + /// + /// - returns: The new `AspectScaledToFitSizeFilter` instance. + public init(size: CGSize) { + self.size = size + } + + /// The filter closure used to create the modified representation of the given image. + public var filter: (Image) -> Image { + return { image in + return image.af_imageAspectScaled(toFit: self.size) + } + } +} + +// MARK: - + +/// Scales an image from the center while maintaining the aspect ratio to fill a specified size. Any pixels that fall +/// outside the specified size are clipped. +public struct AspectScaledToFillSizeFilter: ImageFilter, Sizable { + /// The size of the filter. + public let size: CGSize + + /// Initializes the `AspectScaledToFillSizeFilter` instance with the given size. + /// + /// - parameter size: The size. + /// + /// - returns: The new `AspectScaledToFillSizeFilter` instance. + public init(size: CGSize) { + self.size = size + } + + /// The filter closure used to create the modified representation of the given image. + public var filter: (Image) -> Image { + return { image in + return image.af_imageAspectScaled(toFill: self.size) + } + } +} + +// MARK: - + +/// Rounds the corners of an image to the specified radius. +public struct RoundedCornersFilter: ImageFilter, Roundable { + /// The radius of the filter. + public let radius: CGFloat + + /// Whether to divide the radius by the image scale. + public let divideRadiusByImageScale: Bool + + /// Initializes the `RoundedCornersFilter` instance with the given radius. + /// + /// - parameter radius: The radius. + /// - parameter divideRadiusByImageScale: Whether to divide the radius by the image scale. Set to `true` when the + /// image has the same resolution for all screen scales such as @1x, @2x and + /// @3x (i.e. single image from web server). Set to `false` for images loaded + /// from an asset catalog with varying resolutions for each screen scale. + /// `false` by default. + /// + /// - returns: The new `RoundedCornersFilter` instance. + public init(radius: CGFloat, divideRadiusByImageScale: Bool = false) { + self.radius = radius + self.divideRadiusByImageScale = divideRadiusByImageScale + } + + /// The filter closure used to create the modified representation of the given image. + public var filter: (Image) -> Image { + return { image in + return image.af_imageRounded( + withCornerRadius: self.radius, + divideRadiusByImageScale: self.divideRadiusByImageScale + ) + } + } + + /// The unique idenitifier for an `ImageFilter` conforming to the `Roundable` protocol. + public var identifier: String { + let radius = Int64(self.radius.rounded()) + return "\(type(of: self))-radius:(\(radius))-divided:(\(divideRadiusByImageScale))" + } +} + +// MARK: - + +/// Rounds the corners of an image into a circle. +public struct CircleFilter: ImageFilter { + /// Initializes the `CircleFilter` instance. + /// + /// - returns: The new `CircleFilter` instance. + public init() {} + + /// The filter closure used to create the modified representation of the given image. + public var filter: (Image) -> Image { + return { image in + return image.af_imageRoundedIntoCircle() + } + } +} + +// MARK: - + +#if os(iOS) || os(tvOS) + +/// The `CoreImageFilter` protocol defines `parameters`, `filterName` properties used by CoreImage. +@available(iOS 9.0, *) +public protocol CoreImageFilter: ImageFilter { + /// The filter name of the CoreImage filter. + var filterName: String { get } + + /// The image filter parameters passed to CoreImage. + var parameters: [String: Any] { get } +} + +@available(iOS 9.0, *) +public extension ImageFilter where Self: CoreImageFilter { + /// The filter closure used to create the modified representation of the given image. + public var filter: (Image) -> Image { + return { image in + return image.af_imageFiltered(withCoreImageFilter: self.filterName, parameters: self.parameters) ?? image + } + } + + /// The unique idenitifier for an `ImageFilter` conforming to the `CoreImageFilter` protocol. + public var identifier: String { return "\(type(of: self))-parameters:(\(self.parameters))" } +} + +/// Blurs an image using a `CIGaussianBlur` filter with the specified blur radius. +@available(iOS 9.0, *) +public struct BlurFilter: ImageFilter, CoreImageFilter { + /// The filter name. + public let filterName = "CIGaussianBlur" + + /// The image filter parameters passed to CoreImage. + public let parameters: [String: Any] + + /// Initializes the `BlurFilter` instance with the given blur radius. + /// + /// - parameter blurRadius: The blur radius. + /// + /// - returns: The new `BlurFilter` instance. + public init(blurRadius: UInt = 10) { + self.parameters = ["inputRadius": blurRadius] + } +} + +#endif + +// MARK: - Composite Image Filters (iOS, tvOS and watchOS only) - + +/// Scales an image to a specified size, then rounds the corners to the specified radius. +public struct ScaledToSizeWithRoundedCornersFilter: CompositeImageFilter { + /// Initializes the `ScaledToSizeWithRoundedCornersFilter` instance with the given size and radius. + /// + /// - parameter size: The size. + /// - parameter radius: The radius. + /// - parameter divideRadiusByImageScale: Whether to divide the radius by the image scale. Set to `true` when the + /// image has the same resolution for all screen scales such as @1x, @2x and + /// @3x (i.e. single image from web server). Set to `false` for images loaded + /// from an asset catalog with varying resolutions for each screen scale. + /// `false` by default. + /// + /// - returns: The new `ScaledToSizeWithRoundedCornersFilter` instance. + public init(size: CGSize, radius: CGFloat, divideRadiusByImageScale: Bool = false) { + self.filters = [ + ScaledToSizeFilter(size: size), + RoundedCornersFilter(radius: radius, divideRadiusByImageScale: divideRadiusByImageScale) + ] + } + + /// The image filters to apply to the image in sequential order. + public let filters: [ImageFilter] +} + +// MARK: - + +/// Scales an image from the center while maintaining the aspect ratio to fit within a specified size, then rounds the +/// corners to the specified radius. +public struct AspectScaledToFillSizeWithRoundedCornersFilter: CompositeImageFilter { + /// Initializes the `AspectScaledToFillSizeWithRoundedCornersFilter` instance with the given size and radius. + /// + /// - parameter size: The size. + /// - parameter radius: The radius. + /// - parameter divideRadiusByImageScale: Whether to divide the radius by the image scale. Set to `true` when the + /// image has the same resolution for all screen scales such as @1x, @2x and + /// @3x (i.e. single image from web server). Set to `false` for images loaded + /// from an asset catalog with varying resolutions for each screen scale. + /// `false` by default. + /// + /// - returns: The new `AspectScaledToFillSizeWithRoundedCornersFilter` instance. + public init(size: CGSize, radius: CGFloat, divideRadiusByImageScale: Bool = false) { + self.filters = [ + AspectScaledToFillSizeFilter(size: size), + RoundedCornersFilter(radius: radius, divideRadiusByImageScale: divideRadiusByImageScale) + ] + } + + /// The image filters to apply to the image in sequential order. + public let filters: [ImageFilter] +} + +// MARK: - + +/// Scales an image to a specified size, then rounds the corners into a circle. +public struct ScaledToSizeCircleFilter: CompositeImageFilter { + /// Initializes the `ScaledToSizeCircleFilter` instance with the given size. + /// + /// - parameter size: The size. + /// + /// - returns: The new `ScaledToSizeCircleFilter` instance. + public init(size: CGSize) { + self.filters = [ScaledToSizeFilter(size: size), CircleFilter()] + } + + /// The image filters to apply to the image in sequential order. + public let filters: [ImageFilter] +} + +// MARK: - + +/// Scales an image from the center while maintaining the aspect ratio to fit within a specified size, then rounds the +/// corners into a circle. +public struct AspectScaledToFillSizeCircleFilter: CompositeImageFilter { + /// Initializes the `AspectScaledToFillSizeCircleFilter` instance with the given size. + /// + /// - parameter size: The size. + /// + /// - returns: The new `AspectScaledToFillSizeCircleFilter` instance. + public init(size: CGSize) { + self.filters = [AspectScaledToFillSizeFilter(size: size), CircleFilter()] + } + + /// The image filters to apply to the image in sequential order. + public let filters: [ImageFilter] +} + +#endif diff --git a/tmp/Pods/AlamofireImage/Source/Request+AlamofireImage.swift b/tmp/Pods/AlamofireImage/Source/Request+AlamofireImage.swift new file mode 100644 index 0000000..f528c61 --- /dev/null +++ b/tmp/Pods/AlamofireImage/Source/Request+AlamofireImage.swift @@ -0,0 +1,327 @@ +// +// Request+AlamofireImage.swift +// +// Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Alamofire +import Foundation + +#if os(iOS) || os(tvOS) +import UIKit +#elseif os(watchOS) +import UIKit +import WatchKit +#elseif os(macOS) +import Cocoa +#endif + +extension DataRequest { + static var acceptableImageContentTypes: Set = [ + "image/tiff", + "image/jpeg", + "image/gif", + "image/png", + "image/ico", + "image/x-icon", + "image/bmp", + "image/x-bmp", + "image/x-xbitmap", + "image/x-ms-bmp", + "image/x-win-bitmap" + ] + + static let streamImageInitialBytePattern = Data(bytes: [255, 216]) // 0xffd8 + + /// Adds the content types specified to the list of acceptable images content types for validation. + /// + /// - parameter contentTypes: The additional content types. + public class func addAcceptableImageContentTypes(_ contentTypes: Set) { + DataRequest.acceptableImageContentTypes.formUnion(contentTypes) + } + + // MARK: - iOS, tvOS and watchOS + +#if os(iOS) || os(tvOS) || os(watchOS) + + /// Creates a response serializer that returns an image initialized from the response data using the specified + /// image options. + /// + /// - parameter imageScale: The scale factor used when interpreting the image data to construct + /// `responseImage`. Specifying a scale factor of 1.0 results in an image whose + /// size matches the pixel-based dimensions of the image. Applying a different + /// scale factor changes the size of the image as reported by the size property. + /// `Screen.scale` by default. + /// - parameter inflateResponseImage: Whether to automatically inflate response image data for compressed formats + /// (such as PNG or JPEG). Enabling this can significantly improve drawing + /// performance as it allows a bitmap representation to be constructed in the + /// background rather than on the main thread. `true` by default. + /// + /// - returns: An image response serializer. + public class func imageResponseSerializer( + imageScale: CGFloat = DataRequest.imageScale, + inflateResponseImage: Bool = true) + -> DataResponseSerializer + { + return DataResponseSerializer { request, response, data, error in + let result = serializeResponseData(response: response, data: data, error: error) + + guard case let .success(data) = result else { return .failure(result.error!) } + + do { + try DataRequest.validateContentType(for: request, response: response) + + let image = try DataRequest.image(from: data, withImageScale: imageScale) + if inflateResponseImage { image.af_inflate() } + + return .success(image) + } catch { + return .failure(error) + } + } + } + + /// Adds a response handler to be called once the request has finished. + /// + /// - parameter imageScale: The scale factor used when interpreting the image data to construct + /// `responseImage`. Specifying a scale factor of 1.0 results in an image whose + /// size matches the pixel-based dimensions of the image. Applying a different + /// scale factor changes the size of the image as reported by the size property. + /// This is set to the value of scale of the main screen by default, which + /// automatically scales images for retina displays, for instance. + /// `Screen.scale` by default. + /// - parameter inflateResponseImage: Whether to automatically inflate response image data for compressed formats + /// (such as PNG or JPEG). Enabling this can significantly improve drawing + /// performance as it allows a bitmap representation to be constructed in the + /// background rather than on the main thread. `true` by default. + /// - parameter queue: The queue on which the completion handler is dispatched. `nil` by default, + /// which results in using `DispatchQueue.main`. + /// - parameter completionHandler: A closure to be executed once the request has finished. The closure takes 4 + /// arguments: the URL request, the URL response, if one was received, the image, + /// if one could be created from the URL response and data, and any error produced + /// while creating the image. + /// + /// - returns: The request. + @discardableResult + public func responseImage( + imageScale: CGFloat = DataRequest.imageScale, + inflateResponseImage: Bool = true, + queue: DispatchQueue? = nil, + completionHandler: @escaping (DataResponse) -> Void) + -> Self + { + return response( + queue: queue, + responseSerializer: DataRequest.imageResponseSerializer( + imageScale: imageScale, + inflateResponseImage: inflateResponseImage + ), + completionHandler: completionHandler + ) + } + + /// Sets a closure to be called periodically during the lifecycle of the request as data is read from the server + /// and converted into images. + /// + /// - parameter imageScale: The scale factor used when interpreting the image data to construct + /// `responseImage`. Specifying a scale factor of 1.0 results in an image whose + /// size matches the pixel-based dimensions of the image. Applying a different + /// scale factor changes the size of the image as reported by the size property. + /// This is set to the value of scale of the main screen by default, which + /// automatically scales images for retina displays, for instance. + /// `Screen.scale` by default. + /// - parameter inflateResponseImage: Whether to automatically inflate response image data for compressed formats + /// (such as PNG or JPEG). Enabling this can significantly improve drawing + /// performance as it allows a bitmap representation to be constructed in the + /// background rather than on the main thread. `true` by default. + /// - parameter completionHandler: A closure to be executed when the request has new image. The closure takes 1 + /// argument: the image, if one could be created from the data. + /// + /// - returns: The request. + @discardableResult + public func streamImage( + imageScale: CGFloat = DataRequest.imageScale, + inflateResponseImage: Bool = true, + completionHandler: @escaping (Image) -> Void) + -> Self + { + var imageData = Data() + + return stream { chunkData in + if chunkData.starts(with: DataRequest.streamImageInitialBytePattern) { + imageData = Data() + } + + imageData.append(chunkData) + + if let image = DataRequest.serializeImage(from: imageData) { + completionHandler(image) + } + } + } + + private class func serializeImage( + from data: Data, + imageScale: CGFloat = DataRequest.imageScale, + inflateResponseImage: Bool = true) + -> UIImage? + { + guard data.count > 0 else { return nil } + + do { + let image = try DataRequest.image(from: data, withImageScale: imageScale) + if inflateResponseImage { image.af_inflate() } + + return image + } catch { + return nil + } + } + + private class func image(from data: Data, withImageScale imageScale: CGFloat) throws -> UIImage { + if let image = UIImage.af_threadSafeImage(with: data, scale: imageScale) { + return image + } + + throw AFIError.imageSerializationFailed + } + + public class var imageScale: CGFloat { + #if os(iOS) || os(tvOS) + return UIScreen.main.scale + #elseif os(watchOS) + return WKInterfaceDevice.current().screenScale + #endif + } + +#elseif os(macOS) + + // MARK: - macOS + + /// Creates a response serializer that returns an image initialized from the response data. + /// + /// - returns: An image response serializer. + public class func imageResponseSerializer() -> DataResponseSerializer { + return DataResponseSerializer { request, response, data, error in + let result = serializeResponseData(response: response, data: data, error: error) + + guard case let .success(data) = result else { return .failure(result.error!) } + + do { + try DataRequest.validateContentType(for: request, response: response) + } catch { + return .failure(error) + } + + guard let bitmapImage = NSBitmapImageRep(data: data) else { + return .failure(AFIError.imageSerializationFailed) + } + + let image = NSImage(size: NSSize(width: bitmapImage.pixelsWide, height: bitmapImage.pixelsHigh)) + image.addRepresentation(bitmapImage) + + return .success(image) + } + } + + /// Adds a response handler to be called once the request has finished. + /// + /// - parameter completionHandler: A closure to be executed once the request has finished. The closure takes 4 + /// arguments: the URL request, the URL response, if one was received, the image, if + /// one could be created from the URL response and data, and any error produced while + /// creating the image. + /// - parameter queue: The queue on which the completion handler is dispatched. `nil` by default, + /// which results in using `DispatchQueue.main`. + /// + /// - returns: The request. + @discardableResult + public func responseImage( + queue: DispatchQueue? = nil, + completionHandler: @escaping (DataResponse) -> Void) + -> Self { + return response( + queue: queue, + responseSerializer: DataRequest.imageResponseSerializer(), + completionHandler: completionHandler + ) + } + + /// Sets a closure to be called periodically during the lifecycle of the request as data is read from the server + /// and converted into images. + /// + /// - parameter completionHandler: A closure to be executed when the request has new image. The closure takes 1 + /// argument: the image, if one could be created from the data. + /// + /// - returns: The request. + @discardableResult + public func streamImage(completionHandler: @escaping (Image) -> Void) -> Self { + var imageData = Data() + + return stream { chunkData in + if chunkData.starts(with: DataRequest.streamImageInitialBytePattern) { + imageData = Data() + } + + imageData.append(chunkData) + + if let image = DataRequest.serializeImage(from: imageData) { + completionHandler(image) + } + } + } + + private class func serializeImage(from data: Data) -> NSImage? { + guard data.count > 0 else { return nil } + guard let bitmapImage = NSBitmapImageRep(data: data) else { return nil } + + let image = NSImage(size: NSSize(width: bitmapImage.pixelsWide, height: bitmapImage.pixelsHigh)) + image.addRepresentation(bitmapImage) + + return image + } + +#endif + + // MARK: - Content Type Validation + + /// Returns whether the content type of the response matches one of the acceptable content types. + /// + /// - parameter request: The request. + /// - parameter response: The server response. + /// + /// - throws: An `AFError` response validation failure when an error is encountered. + public class func validateContentType(for request: URLRequest?, response: HTTPURLResponse?) throws { + if let url = request?.url, url.isFileURL { return } + + guard let mimeType = response?.mimeType else { + let contentTypes = Array(DataRequest.acceptableImageContentTypes) + throw AFError.responseValidationFailed(reason: .missingContentType(acceptableContentTypes: contentTypes)) + } + + guard DataRequest.acceptableImageContentTypes.contains(mimeType) else { + let contentTypes = Array(DataRequest.acceptableImageContentTypes) + + throw AFError.responseValidationFailed( + reason: .unacceptableContentType(acceptableContentTypes: contentTypes, responseContentType: mimeType) + ) + } + } +} diff --git a/tmp/Pods/AlamofireImage/Source/UIButton+AlamofireImage.swift b/tmp/Pods/AlamofireImage/Source/UIButton+AlamofireImage.swift new file mode 100644 index 0000000..fa8325a --- /dev/null +++ b/tmp/Pods/AlamofireImage/Source/UIButton+AlamofireImage.swift @@ -0,0 +1,473 @@ +// +// UIButton+AlamofireImage.swift +// +// Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Alamofire +import Foundation + +#if os(iOS) || os(tvOS) + +import UIKit + +extension UIButton { + + // MARK: - Private - AssociatedKeys + + private struct AssociatedKey { + static var imageDownloader = "af_UIButton.ImageDownloader" + static var sharedImageDownloader = "af_UIButton.SharedImageDownloader" + static var imageReceipts = "af_UIButton.ImageReceipts" + static var backgroundImageReceipts = "af_UIButton.BackgroundImageReceipts" + } + + // MARK: - Properties + + /// The instance image downloader used to download all images. If this property is `nil`, the `UIButton` will + /// fallback on the `af_sharedImageDownloader` for all downloads. The most common use case for needing to use a + /// custom instance image downloader is when images are behind different basic auth credentials. + public var af_imageDownloader: ImageDownloader? { + get { + return objc_getAssociatedObject(self, &AssociatedKey.imageDownloader) as? ImageDownloader + } + set { + objc_setAssociatedObject(self, &AssociatedKey.imageDownloader, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + } + } + + /// The shared image downloader used to download all images. By default, this is the default `ImageDownloader` + /// instance backed with an `AutoPurgingImageCache` which automatically evicts images from the cache when the memory + /// capacity is reached or memory warning notifications occur. The shared image downloader is only used if the + /// `af_imageDownloader` is `nil`. + public class var af_sharedImageDownloader: ImageDownloader { + get { + guard let + downloader = objc_getAssociatedObject(self, &AssociatedKey.sharedImageDownloader) as? ImageDownloader + else { + return ImageDownloader.default + } + + return downloader + } + set { + objc_setAssociatedObject(self, &AssociatedKey.sharedImageDownloader, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + } + } + + private var imageRequestReceipts: [UInt: RequestReceipt] { + get { + guard let + receipts = objc_getAssociatedObject(self, &AssociatedKey.imageReceipts) as? [UInt: RequestReceipt] + else { + return [:] + } + + return receipts + } + set { + objc_setAssociatedObject(self, &AssociatedKey.imageReceipts, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + } + } + + private var backgroundImageRequestReceipts: [UInt: RequestReceipt] { + get { + guard let + receipts = objc_getAssociatedObject(self, &AssociatedKey.backgroundImageReceipts) as? [UInt: RequestReceipt] + else { + return [:] + } + + return receipts + } + set { + objc_setAssociatedObject(self, &AssociatedKey.backgroundImageReceipts, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + } + } + + // MARK: - Image Downloads + + /// Asynchronously downloads an image from the specified URL and sets it once the request is finished. + /// + /// If the image is cached locally, the image is set immediately. Otherwise the specified placeholder image will be + /// set immediately, and then the remote image will be set once the image request is finished. + /// + /// - parameter state: The control state of the button to set the image on. + /// - parameter url: The URL used for your image request. + /// - parameter placeholderImage: The image to be set initially until the image request finished. If `nil`, the + /// image will not change its image until the image request finishes. Defaults + /// to `nil`. + /// - parameter filter: The image filter applied to the image after the image request is finished. + /// Defaults to `nil`. + /// - parameter progress: The closure to be executed periodically during the lifecycle of the request. + /// Defaults to `nil`. + /// - parameter progressQueue: The dispatch queue to call the progress closure on. Defaults to the main queue. + /// - parameter completion: A closure to be executed when the image request finishes. The closure takes a + /// single response value containing either the image or the error that occurred. If + /// the image was returned from the image cache, the response will be `nil`. Defaults + /// to `nil`. + public func af_setImage( + for state: UIControlState, + url: URL, + placeholderImage: UIImage? = nil, + filter: ImageFilter? = nil, + progress: ImageDownloader.ProgressHandler? = nil, + progressQueue: DispatchQueue = DispatchQueue.main, + completion: ((DataResponse) -> Void)? = nil) + { + af_setImage( + for: state, + urlRequest: urlRequest(with: url), + placeholderImage: placeholderImage, + filter: filter, + progress: progress, + progressQueue: progressQueue, + completion: completion + ) + } + + /// Asynchronously downloads an image from the specified URL request and sets it once the request is finished. + /// + /// If the image is cached locally, the image is set immediately. Otherwise the specified placeholder image will be + /// set immediately, and then the remote image will be set once the image request is finished. + /// + /// - parameter state: The control state of the button to set the image on. + /// - parameter urlRequest: The URL request. + /// - parameter placeholderImage: The image to be set initially until the image request finished. If `nil`, the + /// image will not change its image until the image request finishes. Defaults + /// to `nil`. + /// - parameter filter: The image filter applied to the image after the image request is finished. + /// Defaults to `nil`. + /// - parameter progress: The closure to be executed periodically during the lifecycle of the request. + /// Defaults to `nil`. + /// - parameter progressQueue: The dispatch queue to call the progress closure on. Defaults to the main queue. + /// - parameter completion: A closure to be executed when the image request finishes. The closure takes a + /// single response value containing either the image or the error that occurred. If + /// the image was returned from the image cache, the response will be `nil`. Defaults + /// to `nil`. + public func af_setImage( + for state: UIControlState, + urlRequest: URLRequestConvertible, + placeholderImage: UIImage? = nil, + filter: ImageFilter? = nil, + progress: ImageDownloader.ProgressHandler? = nil, + progressQueue: DispatchQueue = DispatchQueue.main, + completion: ((DataResponse) -> Void)? = nil) + { + guard !isImageURLRequest(urlRequest, equalToActiveRequestURLForState: state) else { + let error = AFIError.requestCancelled + let response = DataResponse(request: nil, response: nil, data: nil, result: .failure(error)) + + completion?(response) + + return + } + + af_cancelImageRequest(for: state) + + let imageDownloader = af_imageDownloader ?? UIButton.af_sharedImageDownloader + let imageCache = imageDownloader.imageCache + + // Use the image from the image cache if it exists + if + let request = urlRequest.urlRequest, + let image = imageCache?.image(for: request, withIdentifier: filter?.identifier) + { + let response = DataResponse( + request: urlRequest.urlRequest, + response: nil, + data: nil, + result: .success(image) + ) + + setImage(image, for: state) + completion?(response) + + return + } + + // Set the placeholder since we're going to have to download + if let placeholderImage = placeholderImage { setImage(placeholderImage, for: state) } + + // Generate a unique download id to check whether the active request has changed while downloading + let downloadID = UUID().uuidString + + // Download the image, then set the image for the control state + let requestReceipt = imageDownloader.download( + urlRequest, + receiptID: downloadID, + filter: filter, + progress: progress, + progressQueue: progressQueue, + completion: { [weak self] response in + guard + let strongSelf = self, + strongSelf.isImageURLRequest(response.request, equalToActiveRequestURLForState: state) && + strongSelf.imageRequestReceipt(for: state)?.receiptID == downloadID + else { + completion?(response) + return + } + + if let image = response.result.value { + strongSelf.setImage(image, for: state) + } + + strongSelf.setImageRequestReceipt(nil, for: state) + + completion?(response) + } + ) + + setImageRequestReceipt(requestReceipt, for: state) + } + + /// Cancels the active download request for the image, if one exists. + public func af_cancelImageRequest(for state: UIControlState) { + guard let receipt = imageRequestReceipt(for: state) else { return } + + let imageDownloader = af_imageDownloader ?? UIButton.af_sharedImageDownloader + imageDownloader.cancelRequest(with: receipt) + + setImageRequestReceipt(nil, for: state) + } + + // MARK: - Background Image Downloads + + /// Asynchronously downloads an image from the specified URL and sets it once the request is finished. + /// + /// If the image is cached locally, the image is set immediately. Otherwise the specified placeholder image will be + /// set immediately, and then the remote image will be set once the image request is finished. + /// + /// - parameter state: The control state of the button to set the image on. + /// - parameter url: The URL used for the image request. + /// - parameter placeholderImage: The image to be set initially until the image request finished. If `nil`, the + /// background image will not change its image until the image request finishes. + /// Defaults to `nil`. + /// - parameter filter: The image filter applied to the image after the image request is finished. + /// Defaults to `nil`. + /// - parameter progress: The closure to be executed periodically during the lifecycle of the request. + /// Defaults to `nil`. + /// - parameter progressQueue: The dispatch queue to call the progress closure on. Defaults to the main queue. + /// - parameter completion: A closure to be executed when the image request finishes. The closure takes a + /// single response value containing either the image or the error that occurred. If + /// the image was returned from the image cache, the response will be `nil`. Defaults + /// to `nil`. + public func af_setBackgroundImage( + for state: UIControlState, + url: URL, + placeholderImage: UIImage? = nil, + filter: ImageFilter? = nil, + progress: ImageDownloader.ProgressHandler? = nil, + progressQueue: DispatchQueue = DispatchQueue.main, + completion: ((DataResponse) -> Void)? = nil) + { + af_setBackgroundImage( + for: state, + urlRequest: urlRequest(with: url), + placeholderImage: placeholderImage, + filter: filter, + progress: progress, + progressQueue: progressQueue, + completion: completion + ) + } + + /// Asynchronously downloads an image from the specified URL request and sets it once the request is finished. + /// + /// If the image is cached locally, the image is set immediately. Otherwise the specified placeholder image will be + /// set immediately, and then the remote image will be set once the image request is finished. + /// + /// - parameter state: The control state of the button to set the image on. + /// - parameter urlRequest: The URL request. + /// - parameter placeholderImage: The image to be set initially until the image request finished. If `nil`, the + /// background image will not change its image until the image request finishes. + /// Defaults to `nil`. + /// - parameter filter: The image filter applied to the image after the image request is finished. + /// Defaults to `nil`. + /// - parameter progress: The closure to be executed periodically during the lifecycle of the request. + /// Defaults to `nil`. + /// - parameter progressQueue: The dispatch queue to call the progress closure on. Defaults to the main queue. + /// - parameter completion: A closure to be executed when the image request finishes. The closure takes a + /// single response value containing either the image or the error that occurred. If + /// the image was returned from the image cache, the response will be `nil`. Defaults + /// to `nil`. + public func af_setBackgroundImage( + for state: UIControlState, + urlRequest: URLRequestConvertible, + placeholderImage: UIImage? = nil, + filter: ImageFilter? = nil, + progress: ImageDownloader.ProgressHandler? = nil, + progressQueue: DispatchQueue = DispatchQueue.main, + completion: ((DataResponse) -> Void)? = nil) + { + guard !isImageURLRequest(urlRequest, equalToActiveRequestURLForState: state) else { + let error = AFIError.requestCancelled + let response = DataResponse(request: nil, response: nil, data: nil, result: .failure(error)) + + completion?(response) + + return + } + + af_cancelBackgroundImageRequest(for: state) + + let imageDownloader = af_imageDownloader ?? UIButton.af_sharedImageDownloader + let imageCache = imageDownloader.imageCache + + // Use the image from the image cache if it exists + if + let request = urlRequest.urlRequest, + let image = imageCache?.image(for: request, withIdentifier: filter?.identifier) + { + let response = DataResponse( + request: urlRequest.urlRequest, + response: nil, + data: nil, + result: .success(image) + ) + + setBackgroundImage(image, for: state) + completion?(response) + + return + } + + // Set the placeholder since we're going to have to download + if let placeholderImage = placeholderImage { self.setBackgroundImage(placeholderImage, for: state) } + + // Generate a unique download id to check whether the active request has changed while downloading + let downloadID = UUID().uuidString + + // Download the image, then set the image for the control state + let requestReceipt = imageDownloader.download( + urlRequest, + receiptID: downloadID, + filter: nil, + progress: progress, + progressQueue: progressQueue, + completion: { [weak self] response in + guard + let strongSelf = self, + strongSelf.isBackgroundImageURLRequest(response.request, equalToActiveRequestURLForState: state) && + strongSelf.backgroundImageRequestReceipt(for: state)?.receiptID == downloadID + else { + completion?(response) + return + } + + if let image = response.result.value { + strongSelf.setBackgroundImage(image, for: state) + } + + strongSelf.setBackgroundImageRequestReceipt(nil, for: state) + + completion?(response) + } + ) + + setBackgroundImageRequestReceipt(requestReceipt, for: state) + } + + /// Cancels the active download request for the background image, if one exists. + public func af_cancelBackgroundImageRequest(for state: UIControlState) { + guard let receipt = backgroundImageRequestReceipt(for: state) else { return } + + let imageDownloader = af_imageDownloader ?? UIButton.af_sharedImageDownloader + imageDownloader.cancelRequest(with: receipt) + + setBackgroundImageRequestReceipt(nil, for: state) + } + + // MARK: - Internal - Image Request Receipts + + func imageRequestReceipt(for state: UIControlState) -> RequestReceipt? { + guard let receipt = imageRequestReceipts[state.rawValue] else { return nil } + return receipt + } + + func setImageRequestReceipt(_ receipt: RequestReceipt?, for state: UIControlState) { + var receipts = imageRequestReceipts + receipts[state.rawValue] = receipt + + imageRequestReceipts = receipts + } + + // MARK: - Internal - Background Image Request Receipts + + func backgroundImageRequestReceipt(for state: UIControlState) -> RequestReceipt? { + guard let receipt = backgroundImageRequestReceipts[state.rawValue] else { return nil } + return receipt + } + + func setBackgroundImageRequestReceipt(_ receipt: RequestReceipt?, for state: UIControlState) { + var receipts = backgroundImageRequestReceipts + receipts[state.rawValue] = receipt + + backgroundImageRequestReceipts = receipts + } + + // MARK: - Private - URL Request Helpers + + private func isImageURLRequest( + _ urlRequest: URLRequestConvertible?, + equalToActiveRequestURLForState state: UIControlState) + -> Bool + { + if + let currentURL = imageRequestReceipt(for: state)?.request.task?.originalRequest?.url, + let requestURL = urlRequest?.urlRequest?.url, + currentURL == requestURL + { + return true + } + + return false + } + + private func isBackgroundImageURLRequest( + _ urlRequest: URLRequestConvertible?, + equalToActiveRequestURLForState state: UIControlState) + -> Bool + { + if + let currentRequestURL = backgroundImageRequestReceipt(for: state)?.request.task?.originalRequest?.url, + let requestURL = urlRequest?.urlRequest?.url, + currentRequestURL == requestURL + { + return true + } + + return false + } + + private func urlRequest(with url: URL) -> URLRequest { + var urlRequest = URLRequest(url: url) + + for mimeType in DataRequest.acceptableImageContentTypes { + urlRequest.addValue(mimeType, forHTTPHeaderField: "Accept") + } + + return urlRequest + } +} + +#endif diff --git a/tmp/Pods/AlamofireImage/Source/UIImage+AlamofireImage.swift b/tmp/Pods/AlamofireImage/Source/UIImage+AlamofireImage.swift new file mode 100644 index 0000000..deefc81 --- /dev/null +++ b/tmp/Pods/AlamofireImage/Source/UIImage+AlamofireImage.swift @@ -0,0 +1,315 @@ +// +// UIImage+AlamofireImage.swift +// +// Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +#if os(iOS) || os(tvOS) || os(watchOS) + +import CoreGraphics +import Foundation +import UIKit + +// MARK: Initialization + +private let lock = NSLock() + +extension UIImage { + /// Initializes and returns the image object with the specified data in a thread-safe manner. + /// + /// It has been reported that there are thread-safety issues when initializing large amounts of images + /// simultaneously. In the event of these issues occurring, this method can be used in place of + /// the `init?(data:)` method. + /// + /// - parameter data: The data object containing the image data. + /// + /// - returns: An initialized `UIImage` object, or `nil` if the method failed. + public static func af_threadSafeImage(with data: Data) -> UIImage? { + lock.lock() + let image = UIImage(data: data) + lock.unlock() + + return image + } + + /// Initializes and returns the image object with the specified data and scale in a thread-safe manner. + /// + /// It has been reported that there are thread-safety issues when initializing large amounts of images + /// simultaneously. In the event of these issues occurring, this method can be used in place of + /// the `init?(data:scale:)` method. + /// + /// - parameter data: The data object containing the image data. + /// - parameter scale: The scale factor to assume when interpreting the image data. Applying a scale factor of 1.0 + /// results in an image whose size matches the pixel-based dimensions of the image. Applying a + /// different scale factor changes the size of the image as reported by the size property. + /// + /// - returns: An initialized `UIImage` object, or `nil` if the method failed. + public static func af_threadSafeImage(with data: Data, scale: CGFloat) -> UIImage? { + lock.lock() + let image = UIImage(data: data, scale: scale) + lock.unlock() + + return image + } +} + +// MARK: - Inflation + +extension UIImage { + private struct AssociatedKey { + static var inflated = "af_UIImage.Inflated" + } + + /// Returns whether the image is inflated. + public var af_inflated: Bool { + get { + if let inflated = objc_getAssociatedObject(self, &AssociatedKey.inflated) as? Bool { + return inflated + } else { + return false + } + } + set { + objc_setAssociatedObject(self, &AssociatedKey.inflated, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + } + } + + /// Inflates the underlying compressed image data to be backed by an uncompressed bitmap representation. + /// + /// Inflating compressed image formats (such as PNG or JPEG) can significantly improve drawing performance as it + /// allows a bitmap representation to be constructed in the background rather than on the main thread. + public func af_inflate() { + guard !af_inflated else { return } + + af_inflated = true + _ = cgImage?.dataProvider?.data + } +} + +// MARK: - Alpha + +extension UIImage { + /// Returns whether the image contains an alpha component. + public var af_containsAlphaComponent: Bool { + let alphaInfo = cgImage?.alphaInfo + + return ( + alphaInfo == .first || + alphaInfo == .last || + alphaInfo == .premultipliedFirst || + alphaInfo == .premultipliedLast + ) + } + + /// Returns whether the image is opaque. + public var af_isOpaque: Bool { return !af_containsAlphaComponent } +} + +// MARK: - Scaling + +extension UIImage { + /// Returns a new version of the image scaled to the specified size. + /// + /// - parameter size: The size to use when scaling the new image. + /// + /// - returns: A new image object. + public func af_imageScaled(to size: CGSize) -> UIImage { + assert(size.width > 0 && size.height > 0, "You cannot safely scale an image to a zero width or height") + + UIGraphicsBeginImageContextWithOptions(size, af_isOpaque, 0.0) + draw(in: CGRect(origin: .zero, size: size)) + + let scaledImage = UIGraphicsGetImageFromCurrentImageContext() ?? self + UIGraphicsEndImageContext() + + return scaledImage + } + + /// Returns a new version of the image scaled from the center while maintaining the aspect ratio to fit within + /// a specified size. + /// + /// The resulting image contains an alpha component used to pad the width or height with the necessary transparent + /// pixels to fit the specified size. In high performance critical situations, this may not be the optimal approach. + /// To maintain an opaque image, you could compute the `scaledSize` manually, then use the `af_imageScaledToSize` + /// method in conjunction with a `.Center` content mode to achieve the same visual result. + /// + /// - parameter size: The size to use when scaling the new image. + /// + /// - returns: A new image object. + public func af_imageAspectScaled(toFit size: CGSize) -> UIImage { + assert(size.width > 0 && size.height > 0, "You cannot safely scale an image to a zero width or height") + + let imageAspectRatio = self.size.width / self.size.height + let canvasAspectRatio = size.width / size.height + + var resizeFactor: CGFloat + + if imageAspectRatio > canvasAspectRatio { + resizeFactor = size.width / self.size.width + } else { + resizeFactor = size.height / self.size.height + } + + let scaledSize = CGSize(width: self.size.width * resizeFactor, height: self.size.height * resizeFactor) + let origin = CGPoint(x: (size.width - scaledSize.width) / 2.0, y: (size.height - scaledSize.height) / 2.0) + + UIGraphicsBeginImageContextWithOptions(size, false, 0.0) + draw(in: CGRect(origin: origin, size: scaledSize)) + + let scaledImage = UIGraphicsGetImageFromCurrentImageContext() ?? self + UIGraphicsEndImageContext() + + return scaledImage + } + + /// Returns a new version of the image scaled from the center while maintaining the aspect ratio to fill a + /// specified size. Any pixels that fall outside the specified size are clipped. + /// + /// - parameter size: The size to use when scaling the new image. + /// + /// - returns: A new image object. + public func af_imageAspectScaled(toFill size: CGSize) -> UIImage { + assert(size.width > 0 && size.height > 0, "You cannot safely scale an image to a zero width or height") + + let imageAspectRatio = self.size.width / self.size.height + let canvasAspectRatio = size.width / size.height + + var resizeFactor: CGFloat + + if imageAspectRatio > canvasAspectRatio { + resizeFactor = size.height / self.size.height + } else { + resizeFactor = size.width / self.size.width + } + + let scaledSize = CGSize(width: self.size.width * resizeFactor, height: self.size.height * resizeFactor) + let origin = CGPoint(x: (size.width - scaledSize.width) / 2.0, y: (size.height - scaledSize.height) / 2.0) + + UIGraphicsBeginImageContextWithOptions(size, af_isOpaque, 0.0) + draw(in: CGRect(origin: origin, size: scaledSize)) + + let scaledImage = UIGraphicsGetImageFromCurrentImageContext() ?? self + UIGraphicsEndImageContext() + + return scaledImage + } +} + +// MARK: - Rounded Corners + +extension UIImage { + /// Returns a new version of the image with the corners rounded to the specified radius. + /// + /// - parameter radius: The radius to use when rounding the new image. + /// - parameter divideRadiusByImageScale: Whether to divide the radius by the image scale. Set to `true` when the + /// image has the same resolution for all screen scales such as @1x, @2x and + /// @3x (i.e. single image from web server). Set to `false` for images loaded + /// from an asset catalog with varying resolutions for each screen scale. + /// `false` by default. + /// + /// - returns: A new image object. + public func af_imageRounded(withCornerRadius radius: CGFloat, divideRadiusByImageScale: Bool = false) -> UIImage { + UIGraphicsBeginImageContextWithOptions(size, false, 0.0) + + let scaledRadius = divideRadiusByImageScale ? radius / scale : radius + + let clippingPath = UIBezierPath(roundedRect: CGRect(origin: CGPoint.zero, size: size), cornerRadius: scaledRadius) + clippingPath.addClip() + + draw(in: CGRect(origin: CGPoint.zero, size: size)) + + let roundedImage = UIGraphicsGetImageFromCurrentImageContext()! + UIGraphicsEndImageContext() + + return roundedImage + } + + /// Returns a new version of the image rounded into a circle. + /// + /// - returns: A new image object. + public func af_imageRoundedIntoCircle() -> UIImage { + let radius = min(size.width, size.height) / 2.0 + var squareImage = self + + if size.width != size.height { + let squareDimension = min(size.width, size.height) + let squareSize = CGSize(width: squareDimension, height: squareDimension) + squareImage = af_imageAspectScaled(toFill: squareSize) + } + + UIGraphicsBeginImageContextWithOptions(squareImage.size, false, 0.0) + + let clippingPath = UIBezierPath( + roundedRect: CGRect(origin: CGPoint.zero, size: squareImage.size), + cornerRadius: radius + ) + + clippingPath.addClip() + + squareImage.draw(in: CGRect(origin: CGPoint.zero, size: squareImage.size)) + + let roundedImage = UIGraphicsGetImageFromCurrentImageContext()! + UIGraphicsEndImageContext() + + return roundedImage + } +} + +#endif + +#if os(iOS) || os(tvOS) + +import CoreImage + +// MARK: - Core Image Filters + +@available(iOS 9.0, *) +extension UIImage { + /// Returns a new version of the image using a CoreImage filter with the specified name and parameters. + /// + /// - parameter name: The name of the CoreImage filter to use on the new image. + /// - parameter parameters: The parameters to apply to the CoreImage filter. + /// + /// - returns: A new image object, or `nil` if the filter failed for any reason. + public func af_imageFiltered(withCoreImageFilter name: String, parameters: [String: Any]? = nil) -> UIImage? { + var image: CoreImage.CIImage? = ciImage + + if image == nil, let CGImage = self.cgImage { + image = CoreImage.CIImage(cgImage: CGImage) + } + + guard let coreImage = image else { return nil } + + let context = CIContext(options: [kCIContextPriorityRequestLow: true]) + + var parameters: [String: Any] = parameters ?? [:] + parameters[kCIInputImageKey] = coreImage + + guard let filter = CIFilter(name: name, withInputParameters: parameters) else { return nil } + guard let outputImage = filter.outputImage else { return nil } + + let cgImageRef = context.createCGImage(outputImage, from: outputImage.extent) + + return UIImage(cgImage: cgImageRef!, scale: scale, orientation: imageOrientation) + } +} + +#endif diff --git a/tmp/Pods/AlamofireImage/Source/UIImageView+AlamofireImage.swift b/tmp/Pods/AlamofireImage/Source/UIImageView+AlamofireImage.swift new file mode 100644 index 0000000..2a3de4e --- /dev/null +++ b/tmp/Pods/AlamofireImage/Source/UIImageView+AlamofireImage.swift @@ -0,0 +1,392 @@ +// +// UIImageView+AlamofireImage.swift +// +// Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) +// +// Permission is hereby granted, free of charge, to any person obtaining a copy +// of this software and associated documentation files (the "Software"), to deal +// in the Software without restriction, including without limitation the rights +// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +// copies of the Software, and to permit persons to whom the Software is +// furnished to do so, subject to the following conditions: +// +// The above copyright notice and this permission notice shall be included in +// all copies or substantial portions of the Software. +// +// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +// THE SOFTWARE. +// + +import Alamofire +import Foundation + +#if os(iOS) || os(tvOS) + +import UIKit + +extension UIImageView { + + // MARK: - ImageTransition + + /// Used to wrap all `UIView` animation transition options alongside a duration. + public enum ImageTransition { + case noTransition + case crossDissolve(TimeInterval) + case curlDown(TimeInterval) + case curlUp(TimeInterval) + case flipFromBottom(TimeInterval) + case flipFromLeft(TimeInterval) + case flipFromRight(TimeInterval) + case flipFromTop(TimeInterval) + case custom( + duration: TimeInterval, + animationOptions: UIViewAnimationOptions, + animations: (UIImageView, Image) -> Void, + completion: ((Bool) -> Void)? + ) + + /// The duration of the image transition in seconds. + public var duration: TimeInterval { + switch self { + case .noTransition: + return 0.0 + case .crossDissolve(let duration): + return duration + case .curlDown(let duration): + return duration + case .curlUp(let duration): + return duration + case .flipFromBottom(let duration): + return duration + case .flipFromLeft(let duration): + return duration + case .flipFromRight(let duration): + return duration + case .flipFromTop(let duration): + return duration + case .custom(let duration, _, _, _): + return duration + } + } + + /// The animation options of the image transition. + public var animationOptions: UIViewAnimationOptions { + switch self { + case .noTransition: + return UIViewAnimationOptions() + case .crossDissolve: + return .transitionCrossDissolve + case .curlDown: + return .transitionCurlDown + case .curlUp: + return .transitionCurlUp + case .flipFromBottom: + return .transitionFlipFromBottom + case .flipFromLeft: + return .transitionFlipFromLeft + case .flipFromRight: + return .transitionFlipFromRight + case .flipFromTop: + return .transitionFlipFromTop + case .custom(_, let animationOptions, _, _): + return animationOptions + } + } + + /// The animation options of the image transition. + public var animations: ((UIImageView, Image) -> Void) { + switch self { + case .custom(_, _, let animations, _): + return animations + default: + return { $0.image = $1 } + } + } + + /// The completion closure associated with the image transition. + public var completion: ((Bool) -> Void)? { + switch self { + case .custom(_, _, _, let completion): + return completion + default: + return nil + } + } + } + + // MARK: - Private - AssociatedKeys + + private struct AssociatedKey { + static var imageDownloader = "af_UIImageView.ImageDownloader" + static var sharedImageDownloader = "af_UIImageView.SharedImageDownloader" + static var activeRequestReceipt = "af_UIImageView.ActiveRequestReceipt" + } + + // MARK: - Associated Properties + + /// The instance image downloader used to download all images. If this property is `nil`, the `UIImageView` will + /// fallback on the `af_sharedImageDownloader` for all downloads. The most common use case for needing to use a + /// custom instance image downloader is when images are behind different basic auth credentials. + public var af_imageDownloader: ImageDownloader? { + get { + return objc_getAssociatedObject(self, &AssociatedKey.imageDownloader) as? ImageDownloader + } + set(downloader) { + objc_setAssociatedObject(self, &AssociatedKey.imageDownloader, downloader, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + } + } + + /// The shared image downloader used to download all images. By default, this is the default `ImageDownloader` + /// instance backed with an `AutoPurgingImageCache` which automatically evicts images from the cache when the memory + /// capacity is reached or memory warning notifications occur. The shared image downloader is only used if the + /// `af_imageDownloader` is `nil`. + public class var af_sharedImageDownloader: ImageDownloader { + get { + if let downloader = objc_getAssociatedObject(self, &AssociatedKey.sharedImageDownloader) as? ImageDownloader { + return downloader + } else { + return ImageDownloader.default + } + } + set { + objc_setAssociatedObject(self, &AssociatedKey.sharedImageDownloader, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + } + } + + var af_activeRequestReceipt: RequestReceipt? { + get { + return objc_getAssociatedObject(self, &AssociatedKey.activeRequestReceipt) as? RequestReceipt + } + set { + objc_setAssociatedObject(self, &AssociatedKey.activeRequestReceipt, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) + } + } + + // MARK: - Image Download + + /// Asynchronously downloads an image from the specified URL, applies the specified image filter to the downloaded + /// image and sets it once finished while executing the image transition. + /// + /// If the image is cached locally, the image is set immediately. Otherwise the specified placeholder image will be + /// set immediately, and then the remote image will be set once the image request is finished. + /// + /// The `completion` closure is called after the image download and filtering are complete, but before the start of + /// the image transition. Please note it is no longer the responsibility of the `completion` closure to set the + /// image. It will be set automatically. If you require a second notification after the image transition completes, + /// use a `.Custom` image transition with a `completion` closure. The `.Custom` `completion` closure is called when + /// the image transition is finished. + /// + /// - parameter url: The URL used for the image request. + /// - parameter placeholderImage: The image to be set initially until the image request finished. If + /// `nil`, the image view will not change its image until the image + /// request finishes. Defaults to `nil`. + /// - parameter filter: The image filter applied to the image after the image request is + /// finished. Defaults to `nil`. + /// - parameter progress: The closure to be executed periodically during the lifecycle of the + /// request. Defaults to `nil`. + /// - parameter progressQueue: The dispatch queue to call the progress closure on. Defaults to the + /// main queue. + /// - parameter imageTransition: The image transition animation applied to the image when set. + /// Defaults to `.None`. + /// - parameter runImageTransitionIfCached: Whether to run the image transition if the image is cached. Defaults + /// to `false`. + /// - parameter completion: A closure to be executed when the image request finishes. The closure + /// has no return value and takes three arguments: the original request, + /// the response from the server and the result containing either the + /// image or the error that occurred. If the image was returned from the + /// image cache, the response will be `nil`. Defaults to `nil`. + public func af_setImage( + withURL url: URL, + placeholderImage: UIImage? = nil, + filter: ImageFilter? = nil, + progress: ImageDownloader.ProgressHandler? = nil, + progressQueue: DispatchQueue = DispatchQueue.main, + imageTransition: ImageTransition = .noTransition, + runImageTransitionIfCached: Bool = false, + completion: ((DataResponse) -> Void)? = nil) + { + af_setImage( + withURLRequest: urlRequest(with: url), + placeholderImage: placeholderImage, + filter: filter, + progress: progress, + progressQueue: progressQueue, + imageTransition: imageTransition, + runImageTransitionIfCached: runImageTransitionIfCached, + completion: completion + ) + } + + /// Asynchronously downloads an image from the specified URL Request, applies the specified image filter to the downloaded + /// image and sets it once finished while executing the image transition. + /// + /// If the image is cached locally, the image is set immediately. Otherwise the specified placeholder image will be + /// set immediately, and then the remote image will be set once the image request is finished. + /// + /// The `completion` closure is called after the image download and filtering are complete, but before the start of + /// the image transition. Please note it is no longer the responsibility of the `completion` closure to set the + /// image. It will be set automatically. If you require a second notification after the image transition completes, + /// use a `.Custom` image transition with a `completion` closure. The `.Custom` `completion` closure is called when + /// the image transition is finished. + /// + /// - parameter urlRequest: The URL request. + /// - parameter placeholderImage: The image to be set initially until the image request finished. If + /// `nil`, the image view will not change its image until the image + /// request finishes. Defaults to `nil`. + /// - parameter filter: The image filter applied to the image after the image request is + /// finished. Defaults to `nil`. + /// - parameter progress: The closure to be executed periodically during the lifecycle of the + /// request. Defaults to `nil`. + /// - parameter progressQueue: The dispatch queue to call the progress closure on. Defaults to the + /// main queue. + /// - parameter imageTransition: The image transition animation applied to the image when set. + /// Defaults to `.None`. + /// - parameter runImageTransitionIfCached: Whether to run the image transition if the image is cached. Defaults + /// to `false`. + /// - parameter completion: A closure to be executed when the image request finishes. The closure + /// has no return value and takes three arguments: the original request, + /// the response from the server and the result containing either the + /// image or the error that occurred. If the image was returned from the + /// image cache, the response will be `nil`. Defaults to `nil`. + public func af_setImage( + withURLRequest urlRequest: URLRequestConvertible, + placeholderImage: UIImage? = nil, + filter: ImageFilter? = nil, + progress: ImageDownloader.ProgressHandler? = nil, + progressQueue: DispatchQueue = DispatchQueue.main, + imageTransition: ImageTransition = .noTransition, + runImageTransitionIfCached: Bool = false, + completion: ((DataResponse) -> Void)? = nil) + { + guard !isURLRequestURLEqualToActiveRequestURL(urlRequest) else { + let error = AFIError.requestCancelled + let response = DataResponse(request: nil, response: nil, data: nil, result: .failure(error)) + + completion?(response) + + return + } + + af_cancelImageRequest() + + let imageDownloader = af_imageDownloader ?? UIImageView.af_sharedImageDownloader + let imageCache = imageDownloader.imageCache + + // Use the image from the image cache if it exists + if + let request = urlRequest.urlRequest, + let image = imageCache?.image(for: request, withIdentifier: filter?.identifier) + { + let response = DataResponse(request: request, response: nil, data: nil, result: .success(image)) + + if runImageTransitionIfCached { + let tinyDelay = DispatchTime.now() + Double(Int64(0.001 * Float(NSEC_PER_SEC))) / Double(NSEC_PER_SEC) + + // Need to let the runloop cycle for the placeholder image to take affect + DispatchQueue.main.asyncAfter(deadline: tinyDelay) { + self.run(imageTransition, with: image) + completion?(response) + } + } else { + self.image = image + completion?(response) + } + + return + } + + // Set the placeholder since we're going to have to download + if let placeholderImage = placeholderImage { self.image = placeholderImage } + + // Generate a unique download id to check whether the active request has changed while downloading + let downloadID = UUID().uuidString + + // Download the image, then run the image transition or completion handler + let requestReceipt = imageDownloader.download( + urlRequest, + receiptID: downloadID, + filter: filter, + progress: progress, + progressQueue: progressQueue, + completion: { [weak self] response in + guard + let strongSelf = self, + strongSelf.isURLRequestURLEqualToActiveRequestURL(response.request) && + strongSelf.af_activeRequestReceipt?.receiptID == downloadID + else { + completion?(response) + return + } + + if let image = response.result.value { + strongSelf.run(imageTransition, with: image) + } + + strongSelf.af_activeRequestReceipt = nil + + completion?(response) + } + ) + + af_activeRequestReceipt = requestReceipt + } + + // MARK: - Image Download Cancellation + + /// Cancels the active download request, if one exists. + public func af_cancelImageRequest() { + guard let activeRequestReceipt = af_activeRequestReceipt else { return } + + let imageDownloader = af_imageDownloader ?? UIImageView.af_sharedImageDownloader + imageDownloader.cancelRequest(with: activeRequestReceipt) + + af_activeRequestReceipt = nil + } + + // MARK: - Image Transition + + /// Runs the image transition on the image view with the specified image. + /// + /// - parameter imageTransition: The image transition to ran on the image view. + /// - parameter image: The image to use for the image transition. + public func run(_ imageTransition: ImageTransition, with image: Image) { + UIView.transition( + with: self, + duration: imageTransition.duration, + options: imageTransition.animationOptions, + animations: { imageTransition.animations(self, image) }, + completion: imageTransition.completion + ) + } + + // MARK: - Private - URL Request Helper Methods + + private func urlRequest(with url: URL) -> URLRequest { + var urlRequest = URLRequest(url: url) + + for mimeType in DataRequest.acceptableImageContentTypes { + urlRequest.addValue(mimeType, forHTTPHeaderField: "Accept") + } + + return urlRequest + } + + private func isURLRequestURLEqualToActiveRequestURL(_ urlRequest: URLRequestConvertible?) -> Bool { + if + let currentRequestURL = af_activeRequestReceipt?.request.task?.originalRequest?.url, + let requestURL = urlRequest?.urlRequest?.url, + currentRequestURL == requestURL + { + return true + } + + return false + } +} + +#endif diff --git a/tmp/Pods/Manifest.lock b/tmp/Pods/Manifest.lock new file mode 100644 index 0000000..95c26ee --- /dev/null +++ b/tmp/Pods/Manifest.lock @@ -0,0 +1,20 @@ +PODS: + - Alamofire (4.7.2) + - AlamofireImage (3.3.1): + - Alamofire (~> 4.5) + +DEPENDENCIES: + - AlamofireImage (~> 3.3) + +SPEC REPOS: + https://github.com/CocoaPods/Specs.git: + - Alamofire + - AlamofireImage + +SPEC CHECKSUMS: + Alamofire: e4fa87002c137ba2d8d634d2c51fabcda0d5c223 + AlamofireImage: 3b35b586853abaf94ca1250f4e94cff3c21a4c0d + +PODFILE CHECKSUM: 1a994c3bc25d0a81e6947d151382130d8377d015 + +COCOAPODS: 1.5.0 diff --git a/tmp/Pods/Pods.xcodeproj/project.pbxproj b/tmp/Pods/Pods.xcodeproj/project.pbxproj new file mode 100644 index 0000000..f1b976b --- /dev/null +++ b/tmp/Pods/Pods.xcodeproj/project.pbxproj @@ -0,0 +1,853 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 05006BDD7301FCF2678618DEDCC69B94 /* UIImage+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 40925083A89DB524274043A5544403F4 /* UIImage+AlamofireImage.swift */; }; + 10EB23E9ECC4B33E16933BB1EA560B6A /* Timeline.swift in Sources */ = {isa = PBXBuildFile; fileRef = 75A86E4845F495D22067D31DD2444516 /* Timeline.swift */; }; + 1B9EDEDC964E6B08F78920B4F4B9DB84 /* Alamofire-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F7CB86E5445E708C236651606143CDEA /* Alamofire-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 202822E4668C16D115A8F68F3ADF0E0F /* ImageDownloader.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D6EFA1B14F4F2AC1C907F7D8D75E2A2 /* ImageDownloader.swift */; }; + 26479B07464784F3BF8C0853CA049976 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D0533E4EC2277AAAC8888328EC5A64B /* Foundation.framework */; }; + 27996F52CCABBD6D0874B79D1B913598 /* ImageFilter.swift in Sources */ = {isa = PBXBuildFile; fileRef = FC78F0C59D72E536A49A29DF9551B2FC /* ImageFilter.swift */; }; + 2BD7CFD41DACC439E8C0A527F1643495 /* Request+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = E39A0238C2D2ED7E1BCF74C638704BCC /* Request+AlamofireImage.swift */; }; + 2EA0415A1A8A4FFC7403E201F915F9A4 /* AFIError.swift in Sources */ = {isa = PBXBuildFile; fileRef = A99FF6D0367AC8FAF28B714B9C517B09 /* AFIError.swift */; }; + 304C5736AC5D49B526C709397D0CF048 /* UIImageView+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1B8F864B86D55C1EBA65BB1005488236 /* UIImageView+AlamofireImage.swift */; }; + 32EDA9ED83F4442303A46839027E152E /* AlamofireImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = B6AE7280F92BC48588D6A2AE0AFCD38D /* AlamofireImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3626B94094672CB1C9DEA32B9F9502E1 /* TaskDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = DF45CF505DC4805961C6AE375E9B4449 /* TaskDelegate.swift */; }; + 37F951F2BDB75BD682C2999EB7B51A35 /* AlamofireImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 7944BB03BFA1F1121ADEE78BA6A9DC62 /* AlamofireImage-dummy.m */; }; + 5387216E723A3C68E851CA15573CDD71 /* Request.swift in Sources */ = {isa = PBXBuildFile; fileRef = 017C040C3370B9A89F31C2BC19AF5D1C /* Request.swift */; }; + 61200D01A1855D7920CEF835C8BE00B0 /* DispatchQueue+Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = D46909E67FE468BAA9A40190506BC2DD /* DispatchQueue+Alamofire.swift */; }; + 613167D898FF421A6F75D1FE5D145B9B /* Alamofire.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 706C7AFFE37BA158C3553250F4B5FAED /* Alamofire.framework */; }; + 62C1663C9E51F5D3D64221DEA0D32A14 /* Pods-bx24-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BDB357AA21E5D1C10EA0E504D5CF28CC /* Pods-bx24-dummy.m */; }; + 62F65AD8DC4F0F9610F4B8B4738EC094 /* ServerTrustPolicy.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5D61BFE0C2AB6D5B144D90851B0FBBDA /* ServerTrustPolicy.swift */; }; + 73B9C996AED49ED7CF8EC2A6F1738059 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D0533E4EC2277AAAC8888328EC5A64B /* Foundation.framework */; }; + 7B5FE28C7EA4122B0598738E54DBEBD8 /* SessionDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = CEB169F7011C3AE22F10E4FB8BB941D0 /* SessionDelegate.swift */; }; + 7D8CC01E8C9EFFF9F4D65406CDE0AB66 /* Result.swift in Sources */ = {isa = PBXBuildFile; fileRef = EBB939DAB70B7498BD951FDFBB552630 /* Result.swift */; }; + 8977ABCF54B643940EE22C07F8C402FE /* Pods-bx24-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2959BA109AB23FA403057824C4BD62E8 /* Pods-bx24-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9ED2BB2981896E0A39EFA365503F58CE /* AFError.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7DA7696A230A8C5098EDB1708AB122B /* AFError.swift */; }; + A2A6F71B727312BD45CC7A4AAD7B0AB7 /* NetworkReachabilityManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = F750B175C7230B153936AECFDF9D4B69 /* NetworkReachabilityManager.swift */; }; + A9EEEA7477981DEEBC72432DE9990A4B /* Alamofire-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = EE026AA0127DEED5833CC06E4854B0FF /* Alamofire-dummy.m */; }; + AE1EF48399533730D0066E04B22CA2D6 /* SessionManager.swift in Sources */ = {isa = PBXBuildFile; fileRef = A1F0D298505D12F22418F96BD2D6DE4F /* SessionManager.swift */; }; + B65FCF589DA398C3EFE0128064E510EC /* MultipartFormData.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7A337CF61ED3C76DCDB6CABF7DDA57F4 /* MultipartFormData.swift */; }; + BBEFE2F9CEB73DC7BD97FFA66A0D9D4F /* Validation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 445B347EC7347C5B752DAEF7EFC85B3D /* Validation.swift */; }; + BE5C67A07E289FE1F9BE27335B159997 /* ParameterEncoding.swift in Sources */ = {isa = PBXBuildFile; fileRef = F0E36A061568443C4892C00390B9395C /* ParameterEncoding.swift */; }; + C1640662F8947D1229666F03A55C47BD /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D0533E4EC2277AAAC8888328EC5A64B /* Foundation.framework */; }; + C73BF39A4CCC3E450E102C23027F8FF8 /* UIButton+AlamofireImage.swift in Sources */ = {isa = PBXBuildFile; fileRef = F506873F53797C3F19F6F175128C827D /* UIButton+AlamofireImage.swift */; }; + CB6D60925223897FFA2662667DF83E8A /* Response.swift in Sources */ = {isa = PBXBuildFile; fileRef = AEF21FE9D010AA7E8064CAB3DDEE4D01 /* Response.swift */; }; + D9E544B8CB42DA8DD44838F83610D8E0 /* ImageCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7F1B46CA3DB56C3D2E677654A1304B15 /* ImageCache.swift */; }; + E1FF4985892E23B75A3381EFF830DFD5 /* Image.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8303DFF4F0412C06016FB01FE8A0AE2C /* Image.swift */; }; + EFD264FC408EBF3BA2528E70B08DDD94 /* Notifications.swift in Sources */ = {isa = PBXBuildFile; fileRef = CD48160E946CF60C44697D4766239A69 /* Notifications.swift */; }; + F6BECD98B97CBFEBE2C96F0E9E72A6C0 /* ResponseSerialization.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5F1F2DAC9C123E8BF5B8BBA7C3F17E4E /* ResponseSerialization.swift */; }; + F8B3D3092ED0417E8CDF32033F6122F5 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FBD180178B74D26C52790871D11EA82 /* Alamofire.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + 15F539DAA50DECDFAABCF83E8838F9A8 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 9EFE4C70245EE2857D336B8B9FA4E825; + remoteInfo = AlamofireImage; + }; + 7675217E9FD8CE3946912822673CE3F2 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 88E9EC28B8B46C3631E6B242B50F4442; + remoteInfo = Alamofire; + }; + A1758AA696D56310AA192B587162169A /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */; + proxyType = 1; + remoteGlobalIDString = 88E9EC28B8B46C3631E6B242B50F4442; + remoteInfo = Alamofire; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXFileReference section */ + 017C040C3370B9A89F31C2BC19AF5D1C /* Request.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Request.swift; path = Source/Request.swift; sourceTree = ""; }; + 0D0533E4EC2277AAAC8888328EC5A64B /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS10.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 12DD748820FAEC5B3DEE34245986D30B /* Pods-bx24.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-bx24.debug.xcconfig"; sourceTree = ""; }; + 150E40416DED683FC049B6657D3FAD65 /* Alamofire.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Alamofire.modulemap; sourceTree = ""; }; + 18B6A34DD4EA6C42D579468E080F81D2 /* Pods-bx24.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-bx24.release.xcconfig"; sourceTree = ""; }; + 1B8F864B86D55C1EBA65BB1005488236 /* UIImageView+AlamofireImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImageView+AlamofireImage.swift"; path = "Source/UIImageView+AlamofireImage.swift"; sourceTree = ""; }; + 237C87A8BC76692C88E2D111CAB28EE8 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 28C5D8DE2D8C0384168D28DB30C38FF2 /* Pods-bx24-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-bx24-acknowledgements.markdown"; sourceTree = ""; }; + 2959BA109AB23FA403057824C4BD62E8 /* Pods-bx24-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-bx24-umbrella.h"; sourceTree = ""; }; + 2D6EFA1B14F4F2AC1C907F7D8D75E2A2 /* ImageDownloader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageDownloader.swift; path = Source/ImageDownloader.swift; sourceTree = ""; }; + 40925083A89DB524274043A5544403F4 /* UIImage+AlamofireImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIImage+AlamofireImage.swift"; path = "Source/UIImage+AlamofireImage.swift"; sourceTree = ""; }; + 445B347EC7347C5B752DAEF7EFC85B3D /* Validation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Validation.swift; path = Source/Validation.swift; sourceTree = ""; }; + 55533E3E01857F3CCEDA4F80131103AD /* Alamofire-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-prefix.pch"; sourceTree = ""; }; + 5982CEBEDECD8EED6E707EF56C6A95AD /* Alamofire.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Alamofire.xcconfig; sourceTree = ""; }; + 5B7ECD15D7270FB36FD35BE37BE61DCD /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + 5D61BFE0C2AB6D5B144D90851B0FBBDA /* ServerTrustPolicy.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ServerTrustPolicy.swift; path = Source/ServerTrustPolicy.swift; sourceTree = ""; }; + 5F1F2DAC9C123E8BF5B8BBA7C3F17E4E /* ResponseSerialization.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ResponseSerialization.swift; path = Source/ResponseSerialization.swift; sourceTree = ""; }; + 6366B0655A69D3DC61431803FB4195E9 /* Pods-bx24.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-bx24.modulemap"; sourceTree = ""; }; + 6FBD180178B74D26C52790871D11EA82 /* Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Alamofire.swift; path = Source/Alamofire.swift; sourceTree = ""; }; + 706C7AFFE37BA158C3553250F4B5FAED /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 75A86E4845F495D22067D31DD2444516 /* Timeline.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Timeline.swift; path = Source/Timeline.swift; sourceTree = ""; }; + 7944BB03BFA1F1121ADEE78BA6A9DC62 /* AlamofireImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AlamofireImage-dummy.m"; sourceTree = ""; }; + 7A337CF61ED3C76DCDB6CABF7DDA57F4 /* MultipartFormData.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MultipartFormData.swift; path = Source/MultipartFormData.swift; sourceTree = ""; }; + 7F1B46CA3DB56C3D2E677654A1304B15 /* ImageCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCache.swift; path = Source/ImageCache.swift; sourceTree = ""; }; + 80E818A6D9E9288EF7DA42606BB6D46F /* Pods-bx24-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-bx24-acknowledgements.plist"; sourceTree = ""; }; + 8303DFF4F0412C06016FB01FE8A0AE2C /* Image.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Image.swift; path = Source/Image.swift; sourceTree = ""; }; + 924D7B35DCC427073BE538FFBA1A0813 /* AlamofireImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AlamofireImage.modulemap; sourceTree = ""; }; + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 93EE4728C7931E90C8B32E868889213E /* AlamofireImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AlamofireImage.xcconfig; sourceTree = ""; }; + 9445A4AC5AF5D8CADE7D2A57CDA5D1B0 /* Pods-bx24-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-bx24-frameworks.sh"; sourceTree = ""; }; + 99AE59AA3F9F7621F50C3C145B8496F2 /* AlamofireImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AlamofireImage-prefix.pch"; sourceTree = ""; }; + A1F0D298505D12F22418F96BD2D6DE4F /* SessionManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionManager.swift; path = Source/SessionManager.swift; sourceTree = ""; }; + A91FC1D73892193136AD580AB8A514D0 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + A99FF6D0367AC8FAF28B714B9C517B09 /* AFIError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFIError.swift; path = Source/AFIError.swift; sourceTree = ""; }; + AEF21FE9D010AA7E8064CAB3DDEE4D01 /* Response.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Response.swift; path = Source/Response.swift; sourceTree = ""; }; + B3F4A9F8BE60CF3B42031205B9720355 /* Pods_bx24.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_bx24.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + B6AE7280F92BC48588D6A2AE0AFCD38D /* AlamofireImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AlamofireImage-umbrella.h"; sourceTree = ""; }; + BDB357AA21E5D1C10EA0E504D5CF28CC /* Pods-bx24-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-bx24-dummy.m"; sourceTree = ""; }; + BFDEC76B4414B6590F6CE08EB448103B /* Pods-bx24-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-bx24-resources.sh"; sourceTree = ""; }; + C036F4642A8E8D25ADBE080A869FB3DB /* AlamofireImage.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AlamofireImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + CD48160E946CF60C44697D4766239A69 /* Notifications.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Notifications.swift; path = Source/Notifications.swift; sourceTree = ""; }; + CEB169F7011C3AE22F10E4FB8BB941D0 /* SessionDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SessionDelegate.swift; path = Source/SessionDelegate.swift; sourceTree = ""; }; + D46909E67FE468BAA9A40190506BC2DD /* DispatchQueue+Alamofire.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "DispatchQueue+Alamofire.swift"; path = "Source/DispatchQueue+Alamofire.swift"; sourceTree = ""; }; + D7DA7696A230A8C5098EDB1708AB122B /* AFError.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AFError.swift; path = Source/AFError.swift; sourceTree = ""; }; + DF45CF505DC4805961C6AE375E9B4449 /* TaskDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TaskDelegate.swift; path = Source/TaskDelegate.swift; sourceTree = ""; }; + E39A0238C2D2ED7E1BCF74C638704BCC /* Request+AlamofireImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "Request+AlamofireImage.swift"; path = "Source/Request+AlamofireImage.swift"; sourceTree = ""; }; + EBB939DAB70B7498BD951FDFBB552630 /* Result.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Result.swift; path = Source/Result.swift; sourceTree = ""; }; + EE026AA0127DEED5833CC06E4854B0FF /* Alamofire-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Alamofire-dummy.m"; sourceTree = ""; }; + F0E36A061568443C4892C00390B9395C /* ParameterEncoding.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ParameterEncoding.swift; path = Source/ParameterEncoding.swift; sourceTree = ""; }; + F506873F53797C3F19F6F175128C827D /* UIButton+AlamofireImage.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = "UIButton+AlamofireImage.swift"; path = "Source/UIButton+AlamofireImage.swift"; sourceTree = ""; }; + F750B175C7230B153936AECFDF9D4B69 /* NetworkReachabilityManager.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NetworkReachabilityManager.swift; path = Source/NetworkReachabilityManager.swift; sourceTree = ""; }; + F7CB86E5445E708C236651606143CDEA /* Alamofire-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Alamofire-umbrella.h"; sourceTree = ""; }; + FC78F0C59D72E536A49A29DF9551B2FC /* ImageFilter.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageFilter.swift; path = Source/ImageFilter.swift; sourceTree = ""; }; + FE167D363996897DA0B7ADA939B77EAC /* Alamofire.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Alamofire.framework; sourceTree = BUILT_PRODUCTS_DIR; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 2C90AAE2A4BFB9434ED949AB410E9C75 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + C1640662F8947D1229666F03A55C47BD /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 99195E4207764744AEC07ECCBCD550EB /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 73B9C996AED49ED7CF8EC2A6F1738059 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + BF98FBBDC964E0CC738F6B323B4C1BB8 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 613167D898FF421A6F75D1FE5D145B9B /* Alamofire.framework in Frameworks */, + 26479B07464784F3BF8C0853CA049976 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 1C7DD18A096A9DBBA87DD83EDCFBA424 /* Support Files */ = { + isa = PBXGroup; + children = ( + 150E40416DED683FC049B6657D3FAD65 /* Alamofire.modulemap */, + 5982CEBEDECD8EED6E707EF56C6A95AD /* Alamofire.xcconfig */, + EE026AA0127DEED5833CC06E4854B0FF /* Alamofire-dummy.m */, + 55533E3E01857F3CCEDA4F80131103AD /* Alamofire-prefix.pch */, + F7CB86E5445E708C236651606143CDEA /* Alamofire-umbrella.h */, + 237C87A8BC76692C88E2D111CAB28EE8 /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/Alamofire"; + sourceTree = ""; + }; + 51A9B78D6A7E7FB5A465754528750815 /* iOS */ = { + isa = PBXGroup; + children = ( + 0D0533E4EC2277AAAC8888328EC5A64B /* Foundation.framework */, + ); + name = iOS; + sourceTree = ""; + }; + 55DB54AA1C1C4DB3F4DCFB246556ACBC /* Support Files */ = { + isa = PBXGroup; + children = ( + 924D7B35DCC427073BE538FFBA1A0813 /* AlamofireImage.modulemap */, + 93EE4728C7931E90C8B32E868889213E /* AlamofireImage.xcconfig */, + 7944BB03BFA1F1121ADEE78BA6A9DC62 /* AlamofireImage-dummy.m */, + 99AE59AA3F9F7621F50C3C145B8496F2 /* AlamofireImage-prefix.pch */, + B6AE7280F92BC48588D6A2AE0AFCD38D /* AlamofireImage-umbrella.h */, + A91FC1D73892193136AD580AB8A514D0 /* Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/AlamofireImage"; + sourceTree = ""; + }; + 59B91F212518421F271EBA85D5530651 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 706C7AFFE37BA158C3553250F4B5FAED /* Alamofire.framework */, + 51A9B78D6A7E7FB5A465754528750815 /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + 65D4A096D5F18879D2295C655E6EA2BF /* Pods-bx24 */ = { + isa = PBXGroup; + children = ( + 5B7ECD15D7270FB36FD35BE37BE61DCD /* Info.plist */, + 6366B0655A69D3DC61431803FB4195E9 /* Pods-bx24.modulemap */, + 28C5D8DE2D8C0384168D28DB30C38FF2 /* Pods-bx24-acknowledgements.markdown */, + 80E818A6D9E9288EF7DA42606BB6D46F /* Pods-bx24-acknowledgements.plist */, + BDB357AA21E5D1C10EA0E504D5CF28CC /* Pods-bx24-dummy.m */, + 9445A4AC5AF5D8CADE7D2A57CDA5D1B0 /* Pods-bx24-frameworks.sh */, + BFDEC76B4414B6590F6CE08EB448103B /* Pods-bx24-resources.sh */, + 2959BA109AB23FA403057824C4BD62E8 /* Pods-bx24-umbrella.h */, + 12DD748820FAEC5B3DEE34245986D30B /* Pods-bx24.debug.xcconfig */, + 18B6A34DD4EA6C42D579468E080F81D2 /* Pods-bx24.release.xcconfig */, + ); + name = "Pods-bx24"; + path = "Target Support Files/Pods-bx24"; + sourceTree = ""; + }; + 6FF3CE06F7D89F16588F3A74B93F1B66 /* Pods */ = { + isa = PBXGroup; + children = ( + D3EFF33CB02313904714763B0DD78DDD /* Alamofire */, + D5657C77624373FB43928E616379C888 /* AlamofireImage */, + ); + name = Pods; + sourceTree = ""; + }; + 7DB346D0F39D3F0E887471402A8071AB = { + isa = PBXGroup; + children = ( + 93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */, + 59B91F212518421F271EBA85D5530651 /* Frameworks */, + 6FF3CE06F7D89F16588F3A74B93F1B66 /* Pods */, + C00977B61588E559FB03E8B617C47F91 /* Products */, + B056008D77DD0B64110162F2BE170389 /* Targets Support Files */, + ); + sourceTree = ""; + }; + B056008D77DD0B64110162F2BE170389 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + 65D4A096D5F18879D2295C655E6EA2BF /* Pods-bx24 */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + C00977B61588E559FB03E8B617C47F91 /* Products */ = { + isa = PBXGroup; + children = ( + FE167D363996897DA0B7ADA939B77EAC /* Alamofire.framework */, + C036F4642A8E8D25ADBE080A869FB3DB /* AlamofireImage.framework */, + B3F4A9F8BE60CF3B42031205B9720355 /* Pods_bx24.framework */, + ); + name = Products; + sourceTree = ""; + }; + D3EFF33CB02313904714763B0DD78DDD /* Alamofire */ = { + isa = PBXGroup; + children = ( + D7DA7696A230A8C5098EDB1708AB122B /* AFError.swift */, + 6FBD180178B74D26C52790871D11EA82 /* Alamofire.swift */, + D46909E67FE468BAA9A40190506BC2DD /* DispatchQueue+Alamofire.swift */, + 7A337CF61ED3C76DCDB6CABF7DDA57F4 /* MultipartFormData.swift */, + F750B175C7230B153936AECFDF9D4B69 /* NetworkReachabilityManager.swift */, + CD48160E946CF60C44697D4766239A69 /* Notifications.swift */, + F0E36A061568443C4892C00390B9395C /* ParameterEncoding.swift */, + 017C040C3370B9A89F31C2BC19AF5D1C /* Request.swift */, + AEF21FE9D010AA7E8064CAB3DDEE4D01 /* Response.swift */, + 5F1F2DAC9C123E8BF5B8BBA7C3F17E4E /* ResponseSerialization.swift */, + EBB939DAB70B7498BD951FDFBB552630 /* Result.swift */, + 5D61BFE0C2AB6D5B144D90851B0FBBDA /* ServerTrustPolicy.swift */, + CEB169F7011C3AE22F10E4FB8BB941D0 /* SessionDelegate.swift */, + A1F0D298505D12F22418F96BD2D6DE4F /* SessionManager.swift */, + DF45CF505DC4805961C6AE375E9B4449 /* TaskDelegate.swift */, + 75A86E4845F495D22067D31DD2444516 /* Timeline.swift */, + 445B347EC7347C5B752DAEF7EFC85B3D /* Validation.swift */, + 1C7DD18A096A9DBBA87DD83EDCFBA424 /* Support Files */, + ); + path = Alamofire; + sourceTree = ""; + }; + D5657C77624373FB43928E616379C888 /* AlamofireImage */ = { + isa = PBXGroup; + children = ( + A99FF6D0367AC8FAF28B714B9C517B09 /* AFIError.swift */, + 8303DFF4F0412C06016FB01FE8A0AE2C /* Image.swift */, + 7F1B46CA3DB56C3D2E677654A1304B15 /* ImageCache.swift */, + 2D6EFA1B14F4F2AC1C907F7D8D75E2A2 /* ImageDownloader.swift */, + FC78F0C59D72E536A49A29DF9551B2FC /* ImageFilter.swift */, + E39A0238C2D2ED7E1BCF74C638704BCC /* Request+AlamofireImage.swift */, + F506873F53797C3F19F6F175128C827D /* UIButton+AlamofireImage.swift */, + 40925083A89DB524274043A5544403F4 /* UIImage+AlamofireImage.swift */, + 1B8F864B86D55C1EBA65BB1005488236 /* UIImageView+AlamofireImage.swift */, + 55DB54AA1C1C4DB3F4DCFB246556ACBC /* Support Files */, + ); + path = AlamofireImage; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + 7A1598A5A333D5D1CAA2B109E5293180 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8977ABCF54B643940EE22C07F8C402FE /* Pods-bx24-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + B4002B6E97835FDCCAA5963EFE09A3E0 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 1B9EDEDC964E6B08F78920B4F4B9DB84 /* Alamofire-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + EB21FD03B7703901958C3CE43325DAE9 /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 32EDA9ED83F4442303A46839027E152E /* AlamofireImage-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + 775C1EDB18868F8AF99E70BBBC35C333 /* Pods-bx24 */ = { + isa = PBXNativeTarget; + buildConfigurationList = 673FD43BEE743260CF7364D086D729F4 /* Build configuration list for PBXNativeTarget "Pods-bx24" */; + buildPhases = ( + 77037F4263133875A16FD260E102D71A /* Sources */, + 2C90AAE2A4BFB9434ED949AB410E9C75 /* Frameworks */, + 7A1598A5A333D5D1CAA2B109E5293180 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 4C84198673C5954B47E67FA776E1817A /* PBXTargetDependency */, + 7D59E7C876FDC7EF56C0F63978872D14 /* PBXTargetDependency */, + ); + name = "Pods-bx24"; + productName = "Pods-bx24"; + productReference = B3F4A9F8BE60CF3B42031205B9720355 /* Pods_bx24.framework */; + productType = "com.apple.product-type.framework"; + }; + 88E9EC28B8B46C3631E6B242B50F4442 /* Alamofire */ = { + isa = PBXNativeTarget; + buildConfigurationList = 419E5D95491847CD79841B971A8A3277 /* Build configuration list for PBXNativeTarget "Alamofire" */; + buildPhases = ( + 32B9974868188C4803318E36329C87FE /* Sources */, + 99195E4207764744AEC07ECCBCD550EB /* Frameworks */, + B4002B6E97835FDCCAA5963EFE09A3E0 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Alamofire; + productName = Alamofire; + productReference = FE167D363996897DA0B7ADA939B77EAC /* Alamofire.framework */; + productType = "com.apple.product-type.framework"; + }; + 9EFE4C70245EE2857D336B8B9FA4E825 /* AlamofireImage */ = { + isa = PBXNativeTarget; + buildConfigurationList = 01F2198AF9DCCF3700AE9DD21E64D480 /* Build configuration list for PBXNativeTarget "AlamofireImage" */; + buildPhases = ( + DB0BE2FBB4DB070AD3C57C41C562C32B /* Sources */, + BF98FBBDC964E0CC738F6B323B4C1BB8 /* Frameworks */, + EB21FD03B7703901958C3CE43325DAE9 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 8937A2057A0DAADF003B7C65E7CE115D /* PBXTargetDependency */, + ); + name = AlamofireImage; + productName = AlamofireImage; + productReference = C036F4642A8E8D25ADBE080A869FB3DB /* AlamofireImage.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + D41D8CD98F00B204E9800998ECF8427E /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0930; + LastUpgradeCheck = 0930; + }; + buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = 7DB346D0F39D3F0E887471402A8071AB; + productRefGroup = C00977B61588E559FB03E8B617C47F91 /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 88E9EC28B8B46C3631E6B242B50F4442 /* Alamofire */, + 9EFE4C70245EE2857D336B8B9FA4E825 /* AlamofireImage */, + 775C1EDB18868F8AF99E70BBBC35C333 /* Pods-bx24 */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXSourcesBuildPhase section */ + 32B9974868188C4803318E36329C87FE /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 9ED2BB2981896E0A39EFA365503F58CE /* AFError.swift in Sources */, + A9EEEA7477981DEEBC72432DE9990A4B /* Alamofire-dummy.m in Sources */, + F8B3D3092ED0417E8CDF32033F6122F5 /* Alamofire.swift in Sources */, + 61200D01A1855D7920CEF835C8BE00B0 /* DispatchQueue+Alamofire.swift in Sources */, + B65FCF589DA398C3EFE0128064E510EC /* MultipartFormData.swift in Sources */, + A2A6F71B727312BD45CC7A4AAD7B0AB7 /* NetworkReachabilityManager.swift in Sources */, + EFD264FC408EBF3BA2528E70B08DDD94 /* Notifications.swift in Sources */, + BE5C67A07E289FE1F9BE27335B159997 /* ParameterEncoding.swift in Sources */, + 5387216E723A3C68E851CA15573CDD71 /* Request.swift in Sources */, + CB6D60925223897FFA2662667DF83E8A /* Response.swift in Sources */, + F6BECD98B97CBFEBE2C96F0E9E72A6C0 /* ResponseSerialization.swift in Sources */, + 7D8CC01E8C9EFFF9F4D65406CDE0AB66 /* Result.swift in Sources */, + 62F65AD8DC4F0F9610F4B8B4738EC094 /* ServerTrustPolicy.swift in Sources */, + 7B5FE28C7EA4122B0598738E54DBEBD8 /* SessionDelegate.swift in Sources */, + AE1EF48399533730D0066E04B22CA2D6 /* SessionManager.swift in Sources */, + 3626B94094672CB1C9DEA32B9F9502E1 /* TaskDelegate.swift in Sources */, + 10EB23E9ECC4B33E16933BB1EA560B6A /* Timeline.swift in Sources */, + BBEFE2F9CEB73DC7BD97FFA66A0D9D4F /* Validation.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + 77037F4263133875A16FD260E102D71A /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 62C1663C9E51F5D3D64221DEA0D32A14 /* Pods-bx24-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + DB0BE2FBB4DB070AD3C57C41C562C32B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 2EA0415A1A8A4FFC7403E201F915F9A4 /* AFIError.swift in Sources */, + 37F951F2BDB75BD682C2999EB7B51A35 /* AlamofireImage-dummy.m in Sources */, + E1FF4985892E23B75A3381EFF830DFD5 /* Image.swift in Sources */, + D9E544B8CB42DA8DD44838F83610D8E0 /* ImageCache.swift in Sources */, + 202822E4668C16D115A8F68F3ADF0E0F /* ImageDownloader.swift in Sources */, + 27996F52CCABBD6D0874B79D1B913598 /* ImageFilter.swift in Sources */, + 2BD7CFD41DACC439E8C0A527F1643495 /* Request+AlamofireImage.swift in Sources */, + C73BF39A4CCC3E450E102C23027F8FF8 /* UIButton+AlamofireImage.swift in Sources */, + 05006BDD7301FCF2678618DEDCC69B94 /* UIImage+AlamofireImage.swift in Sources */, + 304C5736AC5D49B526C709397D0CF048 /* UIImageView+AlamofireImage.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + 4C84198673C5954B47E67FA776E1817A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = 88E9EC28B8B46C3631E6B242B50F4442 /* Alamofire */; + targetProxy = 7675217E9FD8CE3946912822673CE3F2 /* PBXContainerItemProxy */; + }; + 7D59E7C876FDC7EF56C0F63978872D14 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AlamofireImage; + target = 9EFE4C70245EE2857D336B8B9FA4E825 /* AlamofireImage */; + targetProxy = 15F539DAA50DECDFAABCF83E8838F9A8 /* PBXContainerItemProxy */; + }; + 8937A2057A0DAADF003B7C65E7CE115D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Alamofire; + target = 88E9EC28B8B46C3631E6B242B50F4442 /* Alamofire */; + targetProxy = A1758AA696D56310AA192B587162169A /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin XCBuildConfiguration section */ + 553022A828EE1991F07D2D73F565AEF8 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_DEBUG=1", + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Debug; + }; + 58CE816B060A41D32CEC095441D0E3E0 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++14"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_ENABLE_OBJC_WEAK = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_DOCUMENTATION_COMMENTS = YES; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + CODE_SIGNING_ALLOWED = NO; + CODE_SIGNING_REQUIRED = NO; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu11; + GCC_NO_COMMON_BLOCKS = YES; + GCC_PREPROCESSOR_DEFINITIONS = ( + "POD_CONFIGURATION_RELEASE=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + MTL_ENABLE_DEBUG_INFO = NO; + PRODUCT_NAME = "$(TARGET_NAME)"; + STRIP_INSTALLED_PRODUCT = NO; + SYMROOT = "${SRCROOT}/../build"; + }; + name = Release; + }; + 9B753614A350734D8D7FDD2D3DA576F3 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 93EE4728C7931E90C8B32E868889213E /* AlamofireImage.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/AlamofireImage/AlamofireImage-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AlamofireImage/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AlamofireImage/AlamofireImage.modulemap"; + PRODUCT_MODULE_NAME = AlamofireImage; + PRODUCT_NAME = AlamofireImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + A13FF54BEA670061976A751ED9F92880 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 93EE4728C7931E90C8B32E868889213E /* AlamofireImage.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/AlamofireImage/AlamofireImage-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/AlamofireImage/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/AlamofireImage/AlamofireImage.modulemap"; + PRODUCT_MODULE_NAME = AlamofireImage; + PRODUCT_NAME = AlamofireImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + A18C9CC7E37563F2891E7DC87F2DE6CE /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5982CEBEDECD8EED6E707EF56C6A95AD /* Alamofire.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Alamofire/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; + PRODUCT_MODULE_NAME = Alamofire; + PRODUCT_NAME = Alamofire; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + B45265BD23BFAD4A123B665015DC262F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 12DD748820FAEC5B3DEE34245986D30B /* Pods-bx24.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-bx24/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-bx24/Pods-bx24.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + B6E8A532D3BB5FD77E2BF2888E54FE31 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 18B6A34DD4EA6C42D579468E080F81D2 /* Pods-bx24.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = "Target Support Files/Pods-bx24/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 10.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-bx24/Pods-bx24.modulemap"; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + EA0ADC75B20BB62958101306980460E6 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5982CEBEDECD8EED6E707EF56C6A95AD /* Alamofire.xcconfig */; + buildSettings = { + CODE_SIGN_IDENTITY = ""; + "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; + "CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; + CURRENT_PROJECT_VERSION = 1; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + GCC_PREFIX_HEADER = "Target Support Files/Alamofire/Alamofire-prefix.pch"; + INFOPLIST_FILE = "Target Support Files/Alamofire/Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + MODULEMAP_FILE = "Target Support Files/Alamofire/Alamofire.modulemap"; + PRODUCT_MODULE_NAME = Alamofire; + PRODUCT_NAME = Alamofire; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 4.0; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 01F2198AF9DCCF3700AE9DD21E64D480 /* Build configuration list for PBXNativeTarget "AlamofireImage" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + A13FF54BEA670061976A751ED9F92880 /* Debug */, + 9B753614A350734D8D7FDD2D3DA576F3 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 553022A828EE1991F07D2D73F565AEF8 /* Debug */, + 58CE816B060A41D32CEC095441D0E3E0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 419E5D95491847CD79841B971A8A3277 /* Build configuration list for PBXNativeTarget "Alamofire" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + EA0ADC75B20BB62958101306980460E6 /* Debug */, + A18C9CC7E37563F2891E7DC87F2DE6CE /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 673FD43BEE743260CF7364D086D729F4 /* Build configuration list for PBXNativeTarget "Pods-bx24" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B45265BD23BFAD4A123B665015DC262F /* Debug */, + B6E8A532D3BB5FD77E2BF2888E54FE31 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */; +} diff --git a/tmp/Pods/Target Support Files/Alamofire/Alamofire-dummy.m b/tmp/Pods/Target Support Files/Alamofire/Alamofire-dummy.m new file mode 100644 index 0000000..a6c4594 --- /dev/null +++ b/tmp/Pods/Target Support Files/Alamofire/Alamofire-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Alamofire : NSObject +@end +@implementation PodsDummy_Alamofire +@end diff --git a/tmp/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch b/tmp/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/tmp/Pods/Target Support Files/Alamofire/Alamofire-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/tmp/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h b/tmp/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h new file mode 100644 index 0000000..00014e3 --- /dev/null +++ b/tmp/Pods/Target Support Files/Alamofire/Alamofire-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double AlamofireVersionNumber; +FOUNDATION_EXPORT const unsigned char AlamofireVersionString[]; + diff --git a/tmp/Pods/Target Support Files/Alamofire/Alamofire.modulemap b/tmp/Pods/Target Support Files/Alamofire/Alamofire.modulemap new file mode 100644 index 0000000..d1f125f --- /dev/null +++ b/tmp/Pods/Target Support Files/Alamofire/Alamofire.modulemap @@ -0,0 +1,6 @@ +framework module Alamofire { + umbrella header "Alamofire-umbrella.h" + + export * + module * { export * } +} diff --git a/tmp/Pods/Target Support Files/Alamofire/Alamofire.xcconfig b/tmp/Pods/Target Support Files/Alamofire/Alamofire.xcconfig new file mode 100644 index 0000000..6b8baab --- /dev/null +++ b/tmp/Pods/Target Support Files/Alamofire/Alamofire.xcconfig @@ -0,0 +1,9 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/Alamofire +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/Alamofire +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/tmp/Pods/Target Support Files/Alamofire/Info.plist b/tmp/Pods/Target Support Files/Alamofire/Info.plist new file mode 100644 index 0000000..3412530 --- /dev/null +++ b/tmp/Pods/Target Support Files/Alamofire/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 4.7.2 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m b/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m new file mode 100644 index 0000000..ff0744b --- /dev/null +++ b/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_AlamofireImage : NSObject +@end +@implementation PodsDummy_AlamofireImage +@end diff --git a/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch b/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-prefix.pch @@ -0,0 +1,12 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + diff --git a/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h b/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h new file mode 100644 index 0000000..483fa10 --- /dev/null +++ b/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double AlamofireImageVersionNumber; +FOUNDATION_EXPORT const unsigned char AlamofireImageVersionString[]; + diff --git a/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap b/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap new file mode 100644 index 0000000..d43423a --- /dev/null +++ b/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage.modulemap @@ -0,0 +1,6 @@ +framework module AlamofireImage { + umbrella header "AlamofireImage-umbrella.h" + + export * + module * { export * } +} diff --git a/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage.xcconfig b/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage.xcconfig new file mode 100644 index 0000000..033e5f1 --- /dev/null +++ b/tmp/Pods/Target Support Files/AlamofireImage/AlamofireImage.xcconfig @@ -0,0 +1,10 @@ +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/AlamofireImage +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/AlamofireImage +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES diff --git a/tmp/Pods/Target Support Files/AlamofireImage/Info.plist b/tmp/Pods/Target Support Files/AlamofireImage/Info.plist new file mode 100644 index 0000000..d4b3c29 --- /dev/null +++ b/tmp/Pods/Target Support Files/AlamofireImage/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 3.3.1 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/tmp/Pods/Target Support Files/Pods-bx24/Info.plist b/tmp/Pods/Target Support Files/Pods-bx24/Info.plist new file mode 100644 index 0000000..2243fe6 --- /dev/null +++ b/tmp/Pods/Target Support Files/Pods-bx24/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0.0 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-acknowledgements.markdown b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-acknowledgements.markdown new file mode 100644 index 0000000..9ad9ae0 --- /dev/null +++ b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-acknowledgements.markdown @@ -0,0 +1,49 @@ +# Acknowledgements +This application makes use of the following third party libraries: + +## Alamofire + +Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + +## AlamofireImage + +Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + +Generated by CocoaPods - https://cocoapods.org diff --git a/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-acknowledgements.plist b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-acknowledgements.plist new file mode 100644 index 0000000..ef38939 --- /dev/null +++ b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-acknowledgements.plist @@ -0,0 +1,87 @@ + + + + + PreferenceSpecifiers + + + FooterText + This application makes use of the following third party libraries: + Title + Acknowledgements + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2014-2018 Alamofire Software Foundation (http://alamofire.org/) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + License + MIT + Title + Alamofire + Type + PSGroupSpecifier + + + FooterText + Copyright (c) 2015-2018 Alamofire Software Foundation (http://alamofire.org/) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +THE SOFTWARE. + + License + MIT + Title + AlamofireImage + Type + PSGroupSpecifier + + + FooterText + Generated by CocoaPods - https://cocoapods.org + Title + + Type + PSGroupSpecifier + + + StringsTable + Acknowledgements + Title + Acknowledgements + + diff --git a/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-dummy.m b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-dummy.m new file mode 100644 index 0000000..bf8ccc7 --- /dev/null +++ b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_bx24 : NSObject +@end +@implementation PodsDummy_Pods_bx24 +@end diff --git a/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-frameworks.sh b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-frameworks.sh new file mode 100644 index 0000000..428b60e --- /dev/null +++ b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-frameworks.sh @@ -0,0 +1,155 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +if [ -z ${FRAMEWORKS_FOLDER_PATH+x} ]; then + # If FRAMEWORKS_FOLDER_PATH is not set, then there's nowhere for us to copy + # frameworks to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +echo "mkdir -p ${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" +mkdir -p "${CONFIGURATION_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + +COCOAPODS_PARALLEL_CODE_SIGN="${COCOAPODS_PARALLEL_CODE_SIGN:-false}" +SWIFT_STDLIB_PATH="${DT_TOOLCHAIN_DIR}/usr/lib/swift/${PLATFORM_NAME}" + +# Used as a return value for each invocation of `strip_invalid_archs` function. +STRIP_BINARY_RETVAL=0 + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +# Copies and strips a vendored framework +install_framework() +{ + if [ -r "${BUILT_PRODUCTS_DIR}/$1" ]; then + local source="${BUILT_PRODUCTS_DIR}/$1" + elif [ -r "${BUILT_PRODUCTS_DIR}/$(basename "$1")" ]; then + local source="${BUILT_PRODUCTS_DIR}/$(basename "$1")" + elif [ -r "$1" ]; then + local source="$1" + fi + + local destination="${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + + if [ -L "${source}" ]; then + echo "Symlinked..." + source="$(readlink "${source}")" + fi + + # Use filter instead of exclude so missing patterns don't throw errors. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${destination}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${destination}" + + local basename + basename="$(basename -s .framework "$1")" + binary="${destination}/${basename}.framework/${basename}" + if ! [ -r "$binary" ]; then + binary="${destination}/${basename}" + fi + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"dynamically linked shared library"* ]]; then + strip_invalid_archs "$binary" + fi + + # Resign the code if required by the build settings to avoid unstable apps + code_sign_if_enabled "${destination}/$(basename "$1")" + + # Embed linked Swift runtime libraries. No longer necessary as of Xcode 7. + if [ "${XCODE_VERSION_MAJOR}" -lt 7 ]; then + local swift_runtime_libs + swift_runtime_libs=$(xcrun otool -LX "$binary" | grep --color=never @rpath/libswift | sed -E s/@rpath\\/\(.+dylib\).*/\\1/g | uniq -u && exit ${PIPESTATUS[0]}) + for lib in $swift_runtime_libs; do + echo "rsync -auv \"${SWIFT_STDLIB_PATH}/${lib}\" \"${destination}\"" + rsync -auv "${SWIFT_STDLIB_PATH}/${lib}" "${destination}" + code_sign_if_enabled "${destination}/${lib}" + done + fi +} + +# Copies and strips a vendored dSYM +install_dsym() { + local source="$1" + if [ -r "$source" ]; then + # Copy the dSYM into a the targets temp dir. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${source}\" \"${DERIVED_FILES_DIR}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${source}" "${DERIVED_FILES_DIR}" + + local basename + basename="$(basename -s .framework.dSYM "$source")" + binary="${DERIVED_FILES_DIR}/${basename}.framework.dSYM/Contents/Resources/DWARF/${basename}" + + # Strip invalid architectures so "fat" simulator / device frameworks work on device + if [[ "$(file "$binary")" == *"Mach-O dSYM companion"* ]]; then + strip_invalid_archs "$binary" + fi + + if [[ $STRIP_BINARY_RETVAL == 1 ]]; then + # Move the stripped file into its final destination. + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter \"- CVS/\" --filter \"- .svn/\" --filter \"- .git/\" --filter \"- .hg/\" --filter \"- Headers\" --filter \"- PrivateHeaders\" --filter \"- Modules\" \"${DERIVED_FILES_DIR}/${basename}.framework.dSYM\" \"${DWARF_DSYM_FOLDER_PATH}\"" + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "${DERIVED_FILES_DIR}/${basename}.framework.dSYM" "${DWARF_DSYM_FOLDER_PATH}" + else + # The dSYM was not stripped at all, in this case touch a fake folder so the input/output paths from Xcode do not reexecute this script because the file is missing. + touch "${DWARF_DSYM_FOLDER_PATH}/${basename}.framework.dSYM" + fi + fi +} + +# Signs a framework with the provided identity +code_sign_if_enabled() { + if [ -n "${EXPANDED_CODE_SIGN_IDENTITY}" -a "${CODE_SIGNING_REQUIRED:-}" != "NO" -a "${CODE_SIGNING_ALLOWED}" != "NO" ]; then + # Use the current code_sign_identitiy + echo "Code Signing $1 with Identity ${EXPANDED_CODE_SIGN_IDENTITY_NAME}" + local code_sign_cmd="/usr/bin/codesign --force --sign ${EXPANDED_CODE_SIGN_IDENTITY} ${OTHER_CODE_SIGN_FLAGS:-} --preserve-metadata=identifier,entitlements '$1'" + + if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + code_sign_cmd="$code_sign_cmd &" + fi + echo "$code_sign_cmd" + eval "$code_sign_cmd" + fi +} + +# Strip invalid architectures +strip_invalid_archs() { + binary="$1" + # Get architectures for current target binary + binary_archs="$(lipo -info "$binary" | rev | cut -d ':' -f1 | awk '{$1=$1;print}' | rev)" + # Intersect them with the architectures we are building for + intersected_archs="$(echo ${ARCHS[@]} ${binary_archs[@]} | tr ' ' '\n' | sort | uniq -d)" + # If there are no archs supported by this binary then warn the user + if [[ -z "$intersected_archs" ]]; then + echo "warning: [CP] Vendored binary '$binary' contains architectures ($binary_archs) none of which match the current build architectures ($ARCHS)." + STRIP_BINARY_RETVAL=0 + return + fi + stripped="" + for arch in $binary_archs; do + if ! [[ "${ARCHS}" == *"$arch"* ]]; then + # Strip non-valid architectures in-place + lipo -remove "$arch" -output "$binary" "$binary" || exit 1 + stripped="$stripped $arch" + fi + done + if [[ "$stripped" ]]; then + echo "Stripped $binary of architectures:$stripped" + fi + STRIP_BINARY_RETVAL=1 +} + + +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" + install_framework "${BUILT_PRODUCTS_DIR}/AlamofireImage/AlamofireImage.framework" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_framework "${BUILT_PRODUCTS_DIR}/Alamofire/Alamofire.framework" + install_framework "${BUILT_PRODUCTS_DIR}/AlamofireImage/AlamofireImage.framework" +fi +if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then + wait +fi diff --git a/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-resources.sh b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-resources.sh new file mode 100644 index 0000000..fe3f9c7 --- /dev/null +++ b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-resources.sh @@ -0,0 +1,118 @@ +#!/bin/sh +set -e +set -u +set -o pipefail + +if [ -z ${UNLOCALIZED_RESOURCES_FOLDER_PATH+x} ]; then + # If UNLOCALIZED_RESOURCES_FOLDER_PATH is not set, then there's nowhere for us to copy + # resources to, so exit 0 (signalling the script phase was successful). + exit 0 +fi + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + +RESOURCES_TO_COPY=${PODS_ROOT}/resources-to-copy-${TARGETNAME}.txt +> "$RESOURCES_TO_COPY" + +XCASSET_FILES=() + +# This protects against multiple targets copying the same framework dependency at the same time. The solution +# was originally proposed here: https://lists.samba.org/archive/rsync/2008-February/020158.html +RSYNC_PROTECT_TMP_FILES=(--filter "P .*.??????") + +case "${TARGETED_DEVICE_FAMILY:-}" in + 1,2) + TARGET_DEVICE_ARGS="--target-device ipad --target-device iphone" + ;; + 1) + TARGET_DEVICE_ARGS="--target-device iphone" + ;; + 2) + TARGET_DEVICE_ARGS="--target-device ipad" + ;; + 3) + TARGET_DEVICE_ARGS="--target-device tv" + ;; + 4) + TARGET_DEVICE_ARGS="--target-device watch" + ;; + *) + TARGET_DEVICE_ARGS="--target-device mac" + ;; +esac + +install_resource() +{ + if [[ "$1" = /* ]] ; then + RESOURCE_PATH="$1" + else + RESOURCE_PATH="${PODS_ROOT}/$1" + fi + if [[ ! -e "$RESOURCE_PATH" ]] ; then + cat << EOM +error: Resource "$RESOURCE_PATH" not found. Run 'pod install' to update the copy resources script. +EOM + exit 1 + fi + case $RESOURCE_PATH in + *.storyboard) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .storyboard`.storyboardc" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.xib) + echo "ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile ${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib $RESOURCE_PATH --sdk ${SDKROOT} ${TARGET_DEVICE_ARGS}" || true + ibtool --reference-external-strings-file --errors --warnings --notices --minimum-deployment-target ${!DEPLOYMENT_TARGET_SETTING_NAME} --output-format human-readable-text --compile "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename \"$RESOURCE_PATH\" .xib`.nib" "$RESOURCE_PATH" --sdk "${SDKROOT}" ${TARGET_DEVICE_ARGS} + ;; + *.framework) + echo "mkdir -p ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + mkdir -p "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + echo "rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" $RESOURCE_PATH ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" || true + rsync --delete -av "${RSYNC_PROTECT_TMP_FILES[@]}" "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}" + ;; + *.xcdatamodel) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH"`.mom\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodel`.mom" + ;; + *.xcdatamodeld) + echo "xcrun momc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd\"" || true + xcrun momc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcdatamodeld`.momd" + ;; + *.xcmappingmodel) + echo "xcrun mapc \"$RESOURCE_PATH\" \"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm\"" || true + xcrun mapc "$RESOURCE_PATH" "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/`basename "$RESOURCE_PATH" .xcmappingmodel`.cdm" + ;; + *.xcassets) + ABSOLUTE_XCASSET_FILE="$RESOURCE_PATH" + XCASSET_FILES+=("$ABSOLUTE_XCASSET_FILE") + ;; + *) + echo "$RESOURCE_PATH" || true + echo "$RESOURCE_PATH" >> "$RESOURCES_TO_COPY" + ;; + esac +} + +mkdir -p "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +if [[ "${ACTION}" == "install" ]] && [[ "${SKIP_INSTALL}" == "NO" ]]; then + mkdir -p "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${INSTALL_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" +fi +rm -f "$RESOURCES_TO_COPY" + +if [[ -n "${WRAPPER_EXTENSION}" ]] && [ "`xcrun --find actool`" ] && [ -n "${XCASSET_FILES:-}" ] +then + # Find all other xcassets (this unfortunately includes those of path pods and other targets). + OTHER_XCASSETS=$(find "$PWD" -iname "*.xcassets" -type d) + while read line; do + if [[ $line != "${PODS_ROOT}*" ]]; then + XCASSET_FILES+=("$line") + fi + done <<<"$OTHER_XCASSETS" + + if [ -z ${ASSETCATALOG_COMPILER_APPICON_NAME+x} ]; then + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" + else + printf "%s\0" "${XCASSET_FILES[@]}" | xargs -0 xcrun actool --output-format human-readable-text --notices --warnings --platform "${PLATFORM_NAME}" --minimum-deployment-target "${!DEPLOYMENT_TARGET_SETTING_NAME}" ${TARGET_DEVICE_ARGS} --compress-pngs --compile "${BUILT_PRODUCTS_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" --app-icon "${ASSETCATALOG_COMPILER_APPICON_NAME}" --output-partial-info-plist "${TARGET_BUILD_DIR}/assetcatalog_generated_info.plist" + fi +fi diff --git a/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-umbrella.h b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-umbrella.h new file mode 100644 index 0000000..ee05765 --- /dev/null +++ b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24-umbrella.h @@ -0,0 +1,16 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + + +FOUNDATION_EXPORT double Pods_bx24VersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_bx24VersionString[]; + diff --git a/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.debug.xcconfig b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.debug.xcconfig new file mode 100644 index 0000000..0747d51 --- /dev/null +++ b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.debug.xcconfig @@ -0,0 +1,11 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireImage" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" -iquote "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireImage/AlamofireImage.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireImage" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git a/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.modulemap b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.modulemap new file mode 100644 index 0000000..0c362b6 --- /dev/null +++ b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.modulemap @@ -0,0 +1,6 @@ +framework module Pods_bx24 { + umbrella header "Pods-bx24-umbrella.h" + + export * + module * { export * } +} diff --git a/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.release.xcconfig b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.release.xcconfig new file mode 100644 index 0000000..0747d51 --- /dev/null +++ b/tmp/Pods/Target Support Files/Pods-bx24/Pods-bx24.release.xcconfig @@ -0,0 +1,11 @@ +ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire" "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireImage" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' +OTHER_CFLAGS = $(inherited) -iquote "${PODS_CONFIGURATION_BUILD_DIR}/Alamofire/Alamofire.framework/Headers" -iquote "${PODS_CONFIGURATION_BUILD_DIR}/AlamofireImage/AlamofireImage.framework/Headers" +OTHER_LDFLAGS = $(inherited) -framework "Alamofire" -framework "AlamofireImage" +OTHER_SWIFT_FLAGS = $(inherited) "-D" "COCOAPODS" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_PODFILE_DIR_PATH = ${SRCROOT}/. +PODS_ROOT = ${SRCROOT}/Pods diff --git "a/tmp/Screenshot at \320\274\320\260\321\217 09 18-30-01 1.png" "b/tmp/Screenshot at \320\274\320\260\321\217 09 18-30-01 1.png" new file mode 100644 index 0000000000000000000000000000000000000000..3d04aa12990d04169b485accba032e33e9f54cbd GIT binary patch literal 30670 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�)RBySSl!avCQja$$ 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 literal 0 HcmV?d00001 diff --git "a/tmp/Screenshot at \320\274\320\260\321\217 09 18-30-26 2.png" "b/tmp/Screenshot at \320\274\320\260\321\217 09 18-30-26 2.png" new file mode 100644 index 0000000000000000000000000000000000000000..9ca0ddf6227a427c7418cd5a579a54c37cfded30 GIT binary patch literal 50211 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

* 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 literal 0 HcmV?d00001 diff --git "a/tmp/Screenshot at \320\274\320\260\321\217 09 18-30-48.png" "b/tmp/Screenshot at \320\274\320\260\321\217 09 18-30-48.png" new file mode 100644 index 0000000000000000000000000000000000000000..43bade26e9963dc2ce6e61f5adc72f8f7529581f GIT binary patch literal 54005 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

m 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 lqU<*hmpHmpRczx0nWuIX_k_8ozW{+qGDH9X literal 0 HcmV?d00001 diff --git "a/tmp/Screenshot at \320\274\320\260\321\217 09 18-31-11.png" "b/tmp/Screenshot at \320\274\320\260\321\217 09 18-31-11.png" new file mode 100644 index 0000000000000000000000000000000000000000..7ca1d2f260756bc36f76db87b5abef7b9adecf9c GIT binary patch literal 46726 zcmc$_RahKN7q*K-a0wbT1PJc#5Zr>hyE_DT4ekssf#B}$?(V@MxI647@3;50PyXZo zY`S}@r>dr_YpwfvR@ir0F(i0AcrY+9Bnk0v3SeO1s$gIcns6|{neU$#UctbiaLt8< zzgr563ENuPIw;!d8ybrl+Za2T8!Ctifq`*EMk;HY;VXaSYjHFs{W7j-#S-N7n;(e` zDPDyor?%N=ZH>()NrG+p^MTRr>3GV}I0tjfOOBk#cTdK@X&-w#8hnYr-k_}T)zT-z zlP%8@f90#a5BPrYv*0L|n>p3IxoX|`)blFiEYst($@C2Rps83bDfS~c7O0#Sn`z52 zBs!FrIwmkA8yhA^Ri1!ayGR;>O%B1ePIE)J+e3G0ZtXRztU;6jlh~ffpl0tkLTEJj zd7<)%3%L7ZED`@-4Z>T4g9b){UV8V&O~ZvAM?UXJbCVsKt(j10Wkrk7WYp-{wd^XpGyT^r>n^jPE9;)ZiPS8r%**}VzpS7U54Ug6kF9Rvw_XleoF|8# z2Umefw6M>=k`n?jdjmp!azq7h_qSfFRwYp(aV_w6C4A`O@{l#@x3#Sc4kn}!vDs&d zq_B=2{S>m_zSaD6@U2jXDUpwelv}24`g`;s-#3o!ndKS8R^sQ=j#Tpj`fCb9NE^J2 z8YG(0R{@v}tVOe;0Av`Zk7XZm!*z2^us`j0@?3J&rjB*BcPG3K4(bLxG>+F&8HMoq zV^!llN0nmD7+;hGX&GYhd(*H(@RQ>bqb~(a=rBp##@aK1e|8J!k-3e>uf{Msdt8*X z64BvdpMPnMU{)wd6ItV|ZOPVqW2TbUQd}sdL9P!b9ie=J)^2<5*R9ezq+yq@-@?sk zRvmxPeK>k%x}|=$$p7QBqk7TcFrYEoQZ3zcY^CPts*Gn1vyF8=mD(59M{s3-v7?G2 z>YX%{x?gdv&7*Ehhb&r}4E<>Fpn@wK`K|Oi;5ww1rj5eu>q~#znAfn^nAf;hmo`K! z_ejQe`zD{Ug48gJDm!6*i#k6walxsveKbl0wsZptqe!IAV$O&VWWryHl@2p z)vKJ(iE_IN=BSF?iWo&zvw|ogH3cr&)(}t61an0;)e3*74cEOO)MvPCj*!MMU8Sbu z4e%=1sFFZ`4?=(A1P@9_nJI=WTWfrRK3l(zzD{FmLBY_Z6H9+W>}==1IDVqrimC-m z!uRzXAhp4n7=~Sk=C}%6u3qUPh!yul_%nNVeB1HJ^uzmQ_Heb=v2>r-w~n1VqhsUD zX`WButpv<8(g!>{%TpOr3*ih5OaM&co1oGU@Z$_IbY9O7J@uP}Og z+5VAb#E%V?+zbLfSX3^)VZMvuv+PrL&9sit^ zr8Y5dc$~S8r*ksL*DaZ((PClRSU&}DGMT4KTU#O|2AbVL6 z1j@<(cm9_cFPCtkBe&9DYfsbI9wy61Xf17AqAg5JNUKH8EK)v!wF- zv|F{^%s;H7P|2^i1tWcul$DjGDd(pj&rMXM6#F|@g5APrIZxvS%eG_`ulD1T(R3WY zNVlWCjfhcc_-?$_?J5BlWHs}xc=qeP4rZa#l3>*3O11GwzVp$%eV$#Ge4gk~tQaBg zT{FMBfy2pKOGE3;yk_;oUfPI1G{VmPc69Pjy5_GYy*D4Q>w=(s9(I!O1BO9wc*Ge|FVggDIyusSvv#?xSW_fYD<@GYmkciG`q07>IK`L{jzN*E7iM`=IscuF?Lpz!8hXr& z=0mTIEK)2St{NcR=Nohe!4qK+nOyCS?LJ>kBts%|2s9EAG4%3#KmWkxu*=RSaJ1!9 zi@*NNU^Yqou=SI^cDh79FBs?(?_>IMtvRV_x_vOd<0#|fF^O)u{p+lvTw=1WxB4A@ z$FoC`PFwT$s&b7wDqVd~<`~miSMCIE%+dw=jGYW>U8-Ga#{jn2CbA9_ujreAT(S1(z~6=KnGnl^`&zzXh2cUd-< zY|rw#O^u_f6YB7O$yX`UD7JSwTi34N@b+*9f4W_<-7PLDcd)mOC2(Dpmw{bcayv!h zyP`<9^Y=E2VQ~}4D`2N|Gm zt@$1kD^OX1u9QMqmIk5-O3Kj3^A2y1mlU&T6YY35Mc!|5WB8}-VLO`t+G}upc>b!^ zA&TqoSF)w1t38W80(t^&)poSO#MK)bfz1A&3JpIl3|Q&ohzopy(dfFtwsRd<_9!(W zrWJOx)1fudY1E3>b=yIhg~7?t*Fx07*Y@*MJQwY|u2{3r5&pQC`c@UN{$o4RJrV_3 z5VG%dxz18mz1k>@?QVkiPOFT!yyMlK%pM8nF`(=;-En-X5rzM`(mNsMD}j2-Co>g= zgAhXZK`RTA)#;iSCflq#M= zZeH(o?ZSRBcMRQjvpa~%>EQd}^e?IP8rK`9MB1{94;bXVqarB{(ujWDsOPkw*2@?T z`wv<;9CpMXP8v39tL46x=Bs~puwKm0x$O;N7A}M&f*a$gMH);ZZ?`SD$oVmsN(+)u zB39zcyH7#2GLQMv(d>LA8nDkTN-A1nzEGZ#eQ~Lub20tg%cGy6{_sa~1$-iNU0H+8 zb=|FSx%!7rN+_`^l@65w)e_koZR`kLi}X168BfzzIQ7oFrtRGP&xRp#Dkzr~BJX>_ z4KXUabtL*2&NE0CHMmUpwZXYO!<8R!oyN6+s6PTrOK=m;Ik? ze-m_Ar`2mrDX7oT2y=fOrR`5fbwnjlejew0I#z?lU1)j>qsaUUyiD5TIL^`~`hHmFv-mTr%>O#tpLrJC3Q4jAu%lAKNECoNDe7QmzxhVdc_FO6E6BGk%*PSi#O0 z-A5Z(Y^XHW_PUuXPVK&R;?a{rFhy>_W>Kfl4{>oHrY!vJby8|$TBN?2A1@nMtXynS zsAkV92Zu!)YO>vjty@Zz-w|!i3<=Iv$bg#@c}b#&GEm#o63E+O5(!c$av(eDZN6Lg zQ102y=%Vgzv6_<1nU1iia*DZN?6oXFBeX?lK^j&45ks7g(h;5N7q^>R3-^ced^cHl zI7hQS9Q+@p?QB^Hj0JTt20JU_0z63DN*ufUCNPX3AX)@r)1k`j;`7kZI2zx_FZil*A1`2a z#V#xP+8abxyXh#v!JlQ__ENym+wxP=DmM(V!qNZuyuB1Ax+S8t;T)gE4V%jGbEtMbt!WqdZ-&o5b#u}V|fyc)%;3yVV9qj+oHGwdbJ}UD| z8$xJY&PemlRs1r|{pKMqNsxaKI}{?gaJJ{?7^bnrqWVYAOi~K|6tY78B(gmGA<(}d zsWOK+2EAWc@r0R2j1d2GwL_CQZ$s{d$tU54|Kchu9JntTS|syN9fPs3>rTDRLaW7< zpQAI-#B2O#`iB)7d`)fe$9GqmT+3L5K>xML|Kyh+SAt%`488gmtVv^IOjyO|Wy7dU%w$b2vp7jXf4X@aa8%tK@_GQYMU0 z-P<2d*@Y#r3in?9kILmobpo-H8+#1veL7^Lai52o zh+wj%ZsBi+i&g((O)_C(%ALQgDs@#{ik(=Rp*-t-=B1jLvuX$<>k5S@>#yEPEY2lg zpBbIC2fcOo#Y0T|tZF25+!2yZCEgg997Ic2Q)pdBb(b!e0%=m&R%qF;vIhH=9d=SO z<_G6<`V3WD4l3SKXbrXZ@s5b<*Vtl6UA6Lb5Pja#el0|;P{ycw560pCtTx*3Z<_8~ z%Zo#3aWYQg;rXn|RX3QJgmhK&TEcHUGV7-9@bGHMa_peW*t&IkHFIrMbUH82?Kz-j zzTHX|v*0rvE5in#|Kj2{P%qp5 zZW%>{Y$>v(%~gK4`R$`EIx+ zD(m!2@te2Zw~qZ~CO*dL*b@tb{UN4?j_4Ul+XLe1{8PM>O75)-e77Dns`mE4EBysg z^#*(F=Q@e;_2*UW&#aaeEj**KmMd6(JZ{5yL-uZ*mUgl<&&}WKO@S0B)wk2Vh!+*S z?XhGHrDzw++8Y0JKx>W2+sg!N)7d8wS>Y*#!}%>q9mB^P<-&^_JPiq-Xl@y|I#R}+ zk)b6UT$|V#?W>G}c5GA37`n2BK}4|>A6h5S*)`45Xj7oGSv}p0p^FabNO}nlh@m=m z#Ajc7RWGDfn6uuPaBj>&gRHu$WnCYou*f@soxvbd>Mus2$Z1VL^yc($8i(QXrpr9i ztC03lG_HLtI<$uc^VvR3s;KpzYGd7Gn=A4o1AU>Col(LOd>u2HqSsDG$*X*1MeZSlSYi8WLY&@rHIH#W=3pZa+jys~1lxwuHdtqf7 zy{=2}Q@2JxxVma+29zSX70vWFZGd}K?+#Kp?383-kn3Z=FTgRlMmgt~!12tMXswgl zeo3Z3Jp%17l+k)wT%@Y?zm-|?Jb6iCmd3sBcb5FDb_QuPC-Kj!D`u!%$4S$O(pB#J zP~2!1TLp;`wDxDt97S%;()n+nI(B3ClVsB}HFb?*XNXNX&jPL4hej4sI%CMAw}~6KNgx)8-JMXfc`TbzwKJ;XwOlGP;+=|1I_sN_*a~-uNV(;8$vey_9Bi( zq4y@kk{!4Owol?4xWMb$>5bCr?I`Yyq`5xxO4Lm?vC4feq$I-o+#S`zlgv3j+f%>X z?*10<>>AtCneHVC-BB!-c4Jw`bPjH*)5qQ=MSh3;RX(Zu;&^JdBT2SzLrH{Zs&QxD6IoY2TBgg`@zpo%1`3%fFKZiaYBEl}ts7D54&53p zb{uXPZ)Hk1xCn@x<0LQ<|1#i#2nZ16kMsw6D-cnp{$qT`;E7Ee61ZuI*L9kl+_4Q-$2et)JVF z;U2)vlaZEbgri&WV1Ub5-|?5XePr_ghQ{S^Pzt{y)w6IVw2L-&A-CVS{z%hQ|MFMO z(NMe;c>@7(@jn%mv&16ixf zHD{Lcw7^&DZ_;83?2HG{cd+Tmjr?Mw+AX4;^y$b0a1Vc8%Vk5ISLLy?Y;?Xpz4!U> zn;ydcPmsvfnnWm9Ts)chA6e6Y6ZapPVS4GzXz6!CF01m2s3xsZUmeiNam0t>vnP!2 z-S6>ThVcu>`def`=TD z!2R$gD4t9HE~9v`I)l!ZE!{}2UgKc1P__bjKX)GnZ!fk3QA$3MU%q8|ySSOsLdBe3 z4FM&Ohdpsf$ZED{qmgZgYlikGRr|bFHtmv2%qtkj4CXgEo4^DjPUTTE2?WuBg=Khp zb8`(L;05`;9xjk|A%96LPeh=n`RVtZLWN0Y%XH3%XVtum`MV$NrYPF`;kwVWDd<%% zF1<3*I8_C(t}P`bF;q|rqUA;@t>0wG;I#Cd7v!XUBOf#{d6`It^C#wvMoWcMTROLS;y^EYhnH|1bD{ z55+g{7nT1DzJq|H|Kl}*ZsfA9{CbNyD!0ub>>U6V#QqmYXSJA(dC#kX47KJX7B#QL+s%UR<(~kQ;e3gBc%wfP{BH>% zMBZwA&*wc53&(*Z-|?V=QHbbNwVe~wJuinG-q9YwytF|^G_u90cD*>?eA29{!%9$p zQb;A!Apyu#r?j&ilE!SVSox2|(x2KHS!$K^%Z~?j3pxntY(&>*8~nQU6w)cEwU!HX ziw-|&16((}*f&_Y8K5KsI)zbqKh72@QrPv(2Jqf4lA29s3sxQ$q`^$^Jz1H@)o@4% z`I`QDsGS9sPhyj(X_)?EX&)ES z>As{T6^~um1b>C~{5&!NaiOR3`!|#8sg^xn^D_YPBufVfU9J3b(P2DT2tolaT>o9& z&Atrc;c|q&&z#)C{bC;=QPjPbEA?f|Wf>+kDFn+6wiSzyb_m#X2>_FoDB;zR2zW$# zHYa-hlSgk^10X5M+smCU&Dgo@TC+2&Ocvn-4wuvKy(XPDcOhs+ zt>jkQ_6O0b4}}x$GpI%tZMVa&?iX8qmqQd;a65{5{r%-L*J@p!yT&(v=Pn=ivqk^{ zR`_jaqUPoKiXPuZnRNqSkxkqZAawHVLgOTjL~;GH+$Ucm@mQxFb-iv9Gx`7cLT)Yd z0W=ufzKna5%L_wia02em)5qCp&`k@otMF?Rz+Rv+W&wIfvckTm6VPBbC3M<+M92Ah zzim7iL*npqvw)o#p)JP>p%a8;D`kN7wTSJ6&&0Z25AVlT7=B-YcT~~Q-_41{#j&662q88Pes{6OcaRN0Uc7bZuNIG1EiNZ`92Lk!rIWOq z8VxoC92>?j_R*1S%U@ku-(H^vE=9dFL@_y-=9moFmW-3NAu6dPRm!z+IfSMgUv;dS zHo9Pm@V{fx=P#71*Z5ZZqUgJl<|eV;|7wB866;*rUpgepi3wN5dsab-!_o<3UKUA|xa{UohAaC5sAE zmxTJyJH9^bm+U#7wcSZ3(`h4ojF)ZWK5JE++!2eyFDkc4K`w8-lmuQNGBiBPk^J7< zk?cDF#Ge`$RAnsE`~<$1MiPi11%O&7Us#a&J&4re5D*HS4kiUB;ivrR0bJ%B-2%u4 zJrZA5#g3ee$Tz&7$_l1h-5i&G8B59hbcBRKoNUcm({Wka-5L~6FH>)Sd-cF&F^k#T z52r4V3Bw>KZ-vGF%C13=$NBKZn&rZ}eo2&7geVnjlD1*>^EgZqL9pHvpr(Y8%GhIu zjb`z0z|MK(d5JEmo#}$=QqdAVZfH$;WK;ftwgXEB8ftcm-hh z4gjcQ0FX=~~F6}h7C*?DH_Oa(Q%ogEU0v65g82d(oiA>s%$qm~KF^eDx>LBql zk0-D=>%qW*Wpok&VAW#%$ME$N*hh3!~!RHuB2&@3LpM@>3Uv>Gyw~v zcIX60j~4TO(M@w>_HGZK&%o+XeQ8P3os*NZ3QpEiX)DK{WCQMk0U^U_THZVj3!{O5Y!-<02A4Q$BLMHwjTt*AEV~5IIfj4Ys;upBC_b=4Y-7!?`vx*Z4x; z?LAZz$yG+T17L4?#s}DXEKxoCFUaljnwAy2=raFM%aZvn$nbO_3K{pfV)jw${NPUJ zg4*JLnO&1p6m{(DXYqc%hc|Z(YMm6V^vZA;rnEm9zQ5;U_Fab6#!xbu$Sl*qgG%|d zv*!UpA6hF!D1w0Znes*x#v^Y5f9G8HxQuOM1Cm(Zyr4`mIqxv48H|(c#c1NfuVQ zHmi$Z>z3S!-om;}4ElsepOQl+S|1d)=hT7u3 zKc2z*fr|LJOR0RZCePnwm^YbTlWx4`i%V*&!o{S&M7|R$42d_-=DOK%SSYU!K6f%6 z)U;5!liByH+?s9xk+#w zEUE@TIwbLwyqjX`*`p5qX^NJp?YgEcL!A&J%gU9^(D0p6G{`|XDnJ)s3+&UD;rbuG zi@<8ZPP4+mFaxRe&YzcQ`PhE7G1Oz2wcPI7Q!G??O_$=@rg81hh_xKs5zITk0IIuS zC?`iBKt%`0N=PHHA{dP8f8dWB7RAil4Q-`a;E^Lw03~sXoLvV#1*aRr{z{+F`+jqJ z|CMi3s_JEoZH!qyI|mSXcwN@d8l$i~G!L-GKAhk)iGD(f2OHBEpZR!e68s}9Crs#e z(Fy@$ui;?r$;P>$P$*9!r!hc8XN$Kykcu8qZpC z^@wj)jp!ui9u7N($Zy?WaL0u2apDBiwhg0QCMPwzSj`*OT&Qaw!u!RWTsFM!?53e_ z&0iJQ0qIp-2CEjGSj}ppHyVDK$RzBXeq||Q`-3q`2zB^@7oJ&xSyEHEL0C9FyGGeS zmi3GKjq&WD{8lSpuKXo|>(RW-!K@JH2ZTh#Gt|Aj9~1oe^S6r80var;;eBG`u;Lhz zAU+JJOE+LUHq4+H8k~6-24n=%Tc-4Mai0CXzoWtk>rd&VYbLT?9iYk0%7a(&0m=v0 zCK8A*e&dhjVGue09;7%&Y$UpM)B^zyRhUY+icAebwP<`#l6&_Diu*4MmLmg^8+1C* zt0AeA;#vDLWMKO8@?X#^^|+)w70kDQh#(s8V+~BNNIcOB&#Z;P`Yx5tz~Xr{}eah#Hb;No0s zK?OgZ_qjVDFskEQ#_uX9t3oSOxTl6kuLUc6Om7QlB3{q#)sYImu+tv7l_Z{X$8Q*o z1+n0c_P(R62y1lRN+L2(#W1SNkjq z3sz+ccewBy=sd?}KB9fvzQtE2?Xz^&JI&aD?J>YOEl`30(+l86ICkY*eR@iTO-DaM!| z$f9P#ZNFYWPi0EASm=sSY#`Dk)mEi8;JZ==-sNXiE}8gGu-SxXJOu^YFSs5Lne>omc|K!t*L}BM8Zec@ z)A`hE4fp8>hYg37{!@bGD7)boZVJsoIi8%NaLR6FDlR4WJCzpfK{*b>dKC@k@gm*V zv$t1zPs(}}IteT=aYX4iG-SAR1yL`c;b(mp1h`Y!#-gd0jTP zPuerR?q6s;Jzg0%-GHd_BB*i~gwzdEOFeR$2;2{H#xpf0bq>!22hjDySGsn#m*!Ew zQbSFfU}gKV%p8ynXo4B?WzZT^maEJZa9H|IZFUFZkf-{Ajd{AC8_JY&EK$j(a7-O1 zki;-Sb({FrT9kY8c&m{{Ef~{|;zL#C@)CJib>Wr_bMd=$IKySPVTqOo(#WPbQ!Zz| z(}w&+tp|?h=K|@p5Cj?Z;RH&>YnQe34Lzq&6ZO5GQ)2)QV50cd#!=f%bB6~DO|a(4 z4ol*Ub>rv3wI}>17=6L;tBt1?M$2&Z=L#01fR`{4%rj?9_&DHU^+i?NP5HX|f0B?6 zTz-aDRZDK$=bp6$Yh$vAk3u-HN<|LKFvW?=_9uMr{GvSv3=f|Uvp8f9B78DY z>!0Yhd8gu-aPL2*7JO2^IV7VH#H@HpQVP-8X!D;_DK1h#H0B5pYH?~>`qLcfQ-e$f zb2)#t~Vo&42nurL6om{T?V3bGa8CvwZE+4tQP;fY%HM{ z7$!AIr${F467gqcI3J(f_$OH2)_p3_2Liu{Lvqu0g}}PP6g^JNny1Rz0U)CVul1k?*F_rBPa{w_ZWQM5cCy79%zsObmKfvq?SN zOWEPT+!=0GFq4tKwI3o&&fl3bnAdX-I-is|9YWP4$6NXi&CNcNN%LY`G+Ux82OG)Y zOmyU5wN(^G@_h<*5XT`XqOwJ(oQC_DoL`n}zEn8q2gbK*+fKxX(H!_#rWO9HU?xta z5~Oc!#3@dJO`=l{A11;Zf%Ld(+_|&0P+q@WdGBe|;f-7t^jj(=hApK^8nFPAzVsWO z_EHDIw{e&Df|Awf4=B zDkq*xp1TvnMO}Qv;}h+MFf2W)$me26Y$e}bCyv6wZK|y)PnWg$WLEGXQlkX=V@euY z46yXj^+E$=3ys3kaPN#gSbT+6bSt)Q4Fc<%0I-QMhdoRlSsNKFRogsOwUV+ zjPT5 zAIg?_XoE52IOM~g4)UU70rP{Zj6e)a;!j}yV^Ig+<_epP)=!76UY)F(jH%<2NNp{R zlirl#sWmv?GzR1x?0K<5@3~52eG^n2yChAnYBk!m$*p?*$l3peB{+)O)7V@xXz<0SJf5 z?hkPr)+=OD)sN42CVm|@;~t+&dFfI*1gOEbD#I<*7`O%Moy4oYAv2jz8x@ANml4Ft zJKTJWggKK)f6Cp=gRanO`kdYh@G(q?_s;V1xX+NNvXq!Px_hCCrSZI6&n&Q~241|q zxW>jITYeQJyntfTcd&yx`AAE!*-9bKi?)vvxQ8`5L+ILV$R?PEgs@D8DZ$$il|WGq zq$4PP!po%_-ze}8`2g41YjvXt`VBsX*{#QByY!EM#-NL5^M>O)mF5Z7?!Yr7Lj0B> zs5vMIwuGR{bo#Mn?W#{JQ6w=ra7G`SE~lni`%c66xXiu_Mp}B=Ul)Yj$WZ8bTE#C4 zA!t(JGhHAo=x1HyaUo#OmnJr3Yq!>N4nTO)EJbkok(n1OmytJY*taY*d*RpWiboJW zbVC{B|MJ}%HSn<^Q=fD9!Y5}eq{t%Yum9@@3HvBj^{XZ9sLypVr!FKc@hFXbT`L(; ztcM(b58=2n#d}gm@j=@26=3@btPr>&wj6k&A1?9wwoFTZ}H((dzU#7ZIJwhi)eAFSJP0VZ#M!R#Y~W zc6CUGn(Gy7-b@a&;&YWN4YpZIEAH3pE>>{)2!0Wy3p293+U3oEEu4qC>C|)vog*|s zsbu*iL@c)6`hMqpFV~9N-5}&T!zfPC4@GiWe0UKBjscHHpr!n6A3lOX(Xyvn^2DQQnMFj?7uAR+5=xtUqsv=Us z@%r1$V^`3o^+J>k2}bCL?xbBikOF9T^@SI(^};tvr!&aErd~v|rGB!V;vi}=U>AYx zm&LbXb6mG9Ngt4Hx$ZEYwhAd|<~P3lxMVOwTT2@8l*hS^={tgjiD`ncTGncpspAQ{ z5@+Gr_e}pgr=>GrPs4#Ccoo1imGFsmc{SF7P|%T=>K@F{&;%216kQ4H2Yw2$IYIlK zLj>U#Hccb;VZk-YX0oU!0eSLVvFgZ=v9>cX!QR;l4+v3dXF`Z`c)3j zD18t9hnd^G&z8!!nHrwbQOOEk0tqvt7%QcNz5xXPahi=BOeDjB_kFz`4bHM0SE8IH z^=_>p(oq?&OlB#HfLrot-h&+aW;n6rw@G?JFAdtiOoAXMKnK#HnybG))TP#Uuq;xG`nGUd{z5e)SioczkGEQMy-94*`T^EDf#nbs+tjs8{Uj&%2lI={ zIwr1A+_zMY-rj%uh|y=%TdYAdhhLNLe!f>6u0!Zify-Vsa7ag5al z(K8Q7L!AHpr;-r@O{5Fx$&;V|n;ICX?j6t+frfc!zs)~!NkHLUf`X4o3jHS*J)ki- zj75hK;QpJ)kAMsn50OV^@K3Dr29B<_^~L_FNME1<2YP;|S=fK~CGyLKJ=jOlEhT-H z!lr#xRij(}uir>$ehD$uq`&{p4r!j-2t&;cTfN`RHx>Gr0C2ej4+%7&hZTS+N&Qog zz)4j-VE+kQ;@}XX<&M|z zi~txbE67MA@o(fz2!0B3No|0Mm-Bj3*!cc@vyV<5;K{qKSK}C1I4u9*|dy^ezM&`xw2LV8SjmzIxJ|r4gse2FAF*z*6l|w|0#DOLfJs8 zj<;88nKZV!n=-J#g0}%8ADZ{{TFaAMHvMa|wo7XH*UsY7cl)kY-JFVj&+>m=8zzO& zAFG=s(5SPRivyl~on%dOK;BsOyc+uuh8a`8V#9qnl^0@FJw(oAJpA!p3K=1F3EFd; z&X;fiZ1Y2a$fQLKVEye`{7b+9jL;JxgXni7;v2+G^y3eB)64A&G;@YTFv*`3w$N96 z@a8lAhiZTaWdmLH`$YKZ-2pw+AqZ0R1oj_@!Y2pFj5az2et_&?pv z{HpHhv}~5|Cz8wS^Mj3lGS@E|s_kuka*n%IN2B#tw@bjTJtPQAphP^8f+`B&c>VMI zPOB~GmRmq@`@NTR9$uH_c^NjE!L7>Wa{LuAwfI#G z{w;;BHbCR4z8dG2sxcWe*k9_>Qp^*LTx167CSncVrNz)0Q3HL6?F`rT*!eQefk(t2 zqUFlu8C=fciJVwnClR>JqJy7Cx>QS4XkE;gs*NuJ9R+Sf$i<}|w3yC@*FtC;;yPRx zFmE2z%VT$I=X{SSw-2{?=0oe=cz@e~+BpjTh0cMoOgtg!BZXU`un z(G$NHhxh}oc7B`wbSV%Ui58$oRp{!D!2n!Zo`!}TN-Xoi&i%X#7Si+#x!LuM@IS$* zKHFxkxeKV+!23B;rzpp(Joa&%F8S;k$PjStCIE5xXx_~hU?>n`NmX`1Cp7BSUlu*i z+HNve7tquN@Q$yz0Y(*|T%ux*4p`uQ{v-*b;M<$yepmrGi>I-q6FsQ;WVsF@-PVc5 zdb$EwEt7x^U+p36trtTM>OGM%*bY^_ssZE_SQOst?=)^=cHj$NebgFJWULyrJdUp` z^?N=({SMm)bn8jey+<4a{h<+H_erfZ_XcEGizN!VO#Gk1T;q4#!3f4XD=n{&M**v= zt7?r0E+l*gje`U*&jijgOP0-i|9 zMJS)0GLB4r+M^n2f1Faa{2|!mQ-*g`ioxdLZ#$wiLVh4_UZ!*b1iN9NxPc}`9rcc` zulwM`-9T(*>*L=NkV<1s9uQ**Wy*5ye$0tSDoY+0XX!mEZy6V(cN!6hc`xXYe%0`umr>l*n-pd|#2C@ME*oLQKor)^SAYh9Be&998 zzRdVK%V%9Hz$MmW?0}iN3Q)J|9%Sx8Rb8)NZUVw0QZN*?p7eTQNw}EP2;1Y%<8H@2 zo18@L{QBJkfDie~vwLBw#CleP^&ZLh zJri)^PVFP0W(Bj*yh)-CJ8UMK2_^Mr5N(VVJP6emCA=3i>D@&PescRm zfRYB*eb*l$U>s~Zgln3flg#k+2XfpoJJ$}+gCqPTS@>P`0G3t=P?IFW+5(M$rNrT| z+atu>#}=&3VzF^`7G_Ck3B3(+vxrXTvM#oeY!b{Y_}kM4ybmGtn@vjIMHqwqioTUg z``ooPfcrfRVq$aDid+T+f5fV-=##=4Nf=U0z@LoMj&|Y*RVr6fcfb8h3AhmC+OIB< zRmwGrmO0qutkU)EWz6PuI$mxy$xP)gHyMsA)T)H2i?)>7^}=`^W`E23k707NKbb|! z%V3_o^RtLGWEpfM&Ma;B6J-`Bn2sM^uLxaY&@G3`s@lH_o1(B}MEb6x;U|1Oo5-E1Ac);I zvm!KMZAk{&;8$*rA&QV5Kh?Mj#rQboc!pH5as^gf`WcRO>NqZFZz>w&B)owB&JEDt zullxq1xaE)`@`Uop>b(@QY6Aq?Vtq0=nF>lA|T)qEOR~h8KDnd?v4ay)zpx~=k9-i ztZD;_sz8LBP4v4F6iQ5gFp??{i9Iu;y5Ea7WCeR`C3A(K{R?E(8TD7~dXOB(SQiEf zJx&I%W{LvAJt@1Wa}WM3VJ<5gYy!i&choO$S`&1~L*pYqlg1pf120(QF~z z`vHN7PB>ayEX|!hu;RgMBf&V1!21_wt^DveGKi_*Iz<)*4H|%Hd4X>sZP>1_x)rwt z^OAKhyzuQow=#APIjd0ODpqA@G$XST(bS);Hr41ApF>RPQ-x8aNH+u0d`sXyBzeg1 z?}ypH^4xMo45QymdyM}k6isDsaoyLV_W{yfD8*DbqYe&t@)BHrkd|LyGQ5Kbb*GB5 zR^-=2yDiD>ldPe}3G>2?JuW7d7X6N7>Lo5)2tRx@K80gnV88Gloueov2|7ceG%yXS zoSL-j2w!%X0%L>~Py>WgTMl=ttmv$9vSat3*z~cFHw#P7MLVyrPquTl+vXEh-@=<9 zhxA_cKN8ufEo!t)PO*7CI&mK6$ImaBz4T4qZp-n_=K&6!pmD5Kk(zyPB^cCC{=pKa z+B{=8CvlSf2s?OlD@M1Y@*;+hbY%xtMZHQw7UD# zqQHOViMp88D$l<*d7)rvC|n|&6J|pKHyVnWk7XbZPG&VnVKVjB@;WJ}7teN0jL6c`EvzUJPu{hwc zu;ywWggrlAgD=J-bUhIG1{G)rqqN2M(Z@5?RTMI94_#E=!=Rj-5??cxCRC0 z2O>flSH5nb=1=rPY&5!oaEr_rRP;>}a~2)GaXZtcx0j8#LjnJ97o5?&I5N@5w0w3{ z9D)0OmTF8xa5PW1CnX>jflmpadT%NnUCdrtqj+wpH9~^C*71H^?FJY9(`gkJT!!?hoDFXO*?xutGEKf-f)% zB`%pB${e(!huNC~R4g|i!xYm#K~rbF2d z!=hdA2p>e2^Sj_^_hTyRg-oarRzzN2e%6pppz3gJZ2m}iNSoRie1^U<+|7Ru3v7+W z!bAhP@aV&^aYdY)Wyb+N$@aYKN5w;5XiNzlY#w;xy02A=FjieWkeCY-xBG$qi;mV? zfni*A1r5;5e(>#MI-LoY?OVB!5vJ11o5Mf%qcia3AiG<@DgKI}A#cw}*Y<6L$?&4x zhHWi9%o6(+(ceC=3R>lYcVrEtX`BXyhn4(t&QGd=go${R2w^}U@XO&Z{7^uO;4%RR zQNFJuX2hsL8OuSBLC~}toJ$UGu#e=&Bt~3DTHAdCJtk`5dTc-YdWd>9BC(HfD;I)M&Kb#I17C6o+4a+FQEHA)q3zz@FuNDMtHa?A?8}_s97;q2KD&jQqkFP6g#p8AK zzB~7%&urP50ncuDkia5M%tlK~#7NkDGf;DOpsjt?8gWL)^^9sDq9}yG^e>?zR)5zv zC<9#w3rItwqN_h@C8LJ2t{&+mxm9`qNu@yFH{z3>zbECW1Q=Eci45LpO)O}8d;eu) z051TfifEwhmjE;9jr5e&nC#x^bK_S=iMs!+j6?5@!`tE?1Y)aeTeft6GE{~C?~3UA zl^)s}Ba%h!!!EfxhFGS&JX9D4fX=)l0V}9!+47H}hxa(ugVI9M2eB6VY*c|HSi?aU{Ji)TywuQ@yvlRu!LJPzfjQc@*$Pvb=ln5?>0 zoA^o^d(&D2`R3QG|0x_-UQ7?7R4>}8ydU)YzkK3S=hM{~sU!JLh$_C45Fl@Nj&ts! z`mCK+nsLp6XX6!BD3gJuY0swIUM3AWI4UhaG(Ma(PT@5FAd$DgmSCtNs+ViSMH|h1 z%2Be)mH^w~m&9y1IJcsmY7>>Hp9;ykDIj~w-ggS~R{cXE2ZJRLWLqT+2 z)Ogw%Gv?jc4ohlO%m)WG!|*w+F8|#eAXyBL03-lv4Qfki!Ezdn6nF>YCbTcgS8$Ug z1FIRRC24eW`{Wt5o%tS8eFXvQq6_&8wB-_;%xRX#~_UK0q@P)G%MOP`}BVl|qm zr7bjZa!miS6ry-CW)dW*K1NJ2wXd3h8PRDHig_+?smkFHNHGeff*Ls`d%B#nmRi)N zn|h9aJD(#WKz206&xJNj2L=%le(e<5sQGG|$ET{fp^ zBQk#lGV3ai80sU%s&257(MQip1F(tcp|ZT6{|{$x85Y$S{(A$0beD94bR#7l(kRm1 zLpRcmba!_sT}n%LhqThDG)UK3&|F*L>o-VnmZ;g>aKUJ8r7y{(uDf^Q-!#$dfp+>y0Ebe3bepJdS9 zZ0sEKwLL8E8Kbd?QRll-ZK*6%ezs-S^K^-zXiC%9?2UuCD#C9qCuO%xmEpq^`cX0h z$*KEdhiBNaUYZRi&STwyL}-N$heE4ZtFiH}&v$my?$;Jwal5aGbDJMYSz&BP!3BB2 zt#-;?`*YSvAa4mba8@Oe#!Vkn6dg=W7v>11%ew2Nd-p)8`p$hYn z#WImeyUsb(`t$XHMui6NhMi9s;d1UP^>t#IbCRFBwmmE=L1JEhIx?}|KW5YjxwAoF z$kqz`4Qi02*5?q@F_@|=Th?!nw-vc@kH((ZLutZOtAnhp?Jvob($u=CAPvUiNz$eR zXtiKw*r%H@b$tFzyqvUfH}IF!zm5PCHB>_9VW9d}-oc^WRfJ%Is+7W_)BJ{4wsGL# z;Jy^bU#0PzbQHmFD)>JUs9Y@a4O@c5N6?jwUn_{{V!h#GVb-jibJaRf{+?mnEAC41 z&4gf%2Gf_blY|-8<2j@d$pVIbn<9p&Altx)x!3S~&&~$Pwj63L6t10g&l(3; z%z^57S*ChDIR<>HqL4k0q3dnF0Kpe6QuDu2=rfI$2{Q0X*fC8UM7-9?nYdFN(+9uZ zzJZy3p8n64QZ~=qaX6kOR9uT^z0c(l2^$i`OSjihb8OI>^AoQ@6smD)vWewtlHL6m z^Ye*2Wq!dQiV6tWN$B9)PpwJ*d{p+_$%Mu{MLBjf7>$_cK?gGcBlljY_wgV{nv(_YbGiEma zf=2`^hhVKG419CrruKZL+3w{fn=;WjkFM zIuWQ)aspb+jMIhVGXj>|#Dw-jEwI$_-w{x@Hgd8^nlT%jtg9iOHJ!KC?M6f&Vs{11 zM)-2I1Dx0C#9VS=afd218URJ&X=b>`Y9MSFpX*ZTa3F?ckC|OEXc**Km_vE+EvwCdf-`%m`7kwG&ic5rRDFbH)C-8UASiv43+)j_0p4lI-QaVwN-GJ z6@ovahZqWrM@6S$824_I4LnaYrIdMJ_**J23T5)b!|5fvj)PpWaqmYuWP4-uK<6m2 z0jp}t8-U0d2GE0wju}W0NIdBdJd0+=Bc^@*>ojvA{duij;oFZ*Bhl>X=2Jjaj*Jo0 zav6W)+|M&rwUQyhfGss&qCn_|OT9IWC4*BkV?#;g*~kO#bouvG@u%A;#fxV^#mP;S zMn%LVucXNy`B~IJ3eCgQ)2Oly;lupSU$U;KY7EOU6;#}v%%gCzF5CJTo8!UdeQ6sr z$?LFJY!%z+@Ka=mnfzDGK^*v=*s3Ch4D*U`n#Z^U4)AFeQ*P-)=OAp5ubiSH-SswL9R3ruKVt(K{vwl3q-Mi77dn=1 z2BGu)5Y%$BUYN#KxgO?997gR`0#>x|Ycr|j{|1du5|lLhbw0*KkCES)GnvhXirLVp zF4QhL#d#X;2XSqy6z_v-i-!Oa#P!E}!M=2|{ZaOB(S+j@{}gpqYxo{A9pE}7$0Lis zXdvfB=ZO9rh)DhtFNCA}HUNv6`@&nOQq)2BpM?FLFwhwoiKz)nK;Eid8O>74v$|~` z6nks*cmJw5>)iFDayC>5`r|lW^_9(MpuBLVasS`R_etijCfKw~EDHRmg`)>@v{<-? zX_UfR-ux$gHv`q3fRGUtn(z21h73#qR#+{9xqlADCbiMFj$ScKHuzv)z|o0y4K=|V zX{-J_RAdzBi#R3JJN|o~WEkKA-~^b9|1(BjvH{7yUwWkHzjK9_SQKDV5&n5W`Ty@v z*yUAK&@ZSCZWT4kQu=e~8LYeD0+9mrKz#hU>VLgw)g$be7iLQ=Y8~KXL{g~5)3jcw zuEI40?vZYNeSIX!`2V~nHY_9+0WIrsH?V-`a@y?kK@b4}{SZSfXBU?p02)XwkPI6E z+TUvN0;b$}ChyK}mIDT2gYUm{XTpOk`L0LEZcwS9GnxBZ7Z#97V%Z+U_()Wc{3itV zhAL`0KS!bX-JcHD&ui%RqgwAle{<sG&`eTBdzagGk*pN%cLeR9)%t{$Om}Uyeq?r&t4(H>MSUeVhCu z5MtshE|(w z7L-BY-V*%^&=>HCI@=MhL8oCS!!kF)(Eowg@cXAXS}aau>74aoz~64OK>R2shph!f z>THl+ZneD!k78M|ZHR%Y<<1}|uaI|lm&_x8nnw*UZ|A~l=V#xtLjdh9%s&_MJj1&( z;bF9UM?~QO^w1dqSV&AtqLKWFHr|&{0$%%7EzwH$&TEMY!F`q`fQ~TT7>J{&Db2(n6C47y1p*-zwKLH8 zz};jq?9>yTfcipAn$@JJYKs`Bi0H(>Y=3cYJ-3-FFUWS1Nz*E$8%>XU!6^ZXHUO;_ zUI2y&r!5(kcN#i^Z@Y_Kf$}tX)a}Mpv(X#I%-5LgF$wKCM78=XIeS(=xj+@xfMdZ;)R?fZXPnTx z8$Vz>@&!@ex+s0PdMK7jWz{9%heOJadFg1c_o+oL^PMl$$&pnJyt{^zwe1EXKQ=!O zGD!5OQ_5Bsu{Q%W2;5#KLGwH$cy~MtF_r^v=42CzaS>7!6C_LFJC}#Didek2Id1H8Wi?jk$gEk7rZ+0#)Op-_XR`MM7%urX3)Pv=uk2cVXS)*Q9f2i)SiQwb zP+gltr;rK{3=5R(f#Pp~81+1M%w$lO%S*tRRJj^;0j#0 zjv{wNr#mz%wXmTfPvW0HqgZd;$jSoGwIZZTqT4mA>yh18on+Vc3|0rDD&m8n1rQ@b zf?DbcsxVR#-qtPH`?MWH~69}(z`>g7GOuI z-*s$!BQ65b946Q|Lox`_4s{3I-pM@6KKx%a4 zL)J?Ty=}d}K7SV(aL`F!UvA*oIhnSDFWkH+DT%N-&15?&v>-9Hq?^tISrmiRg@B5V z-&@ufYGl5Y^uJ~E$A(j=&+Djw|JlZee~}OO5D1@hNr|Pk^2Kf|HQHk5g{)${{=@AB ze9vZ4zCf$dMi876RMP*w)KJD>rAF?t9_TaP4Os_coV@;zY`)Cnna?Q|+n^*ex644Q zJV_rc$kx0LN5x_m?b#E>5Oea~kcM1IuU)FX;oN{G_92en;oHNP)O{fBr$U3LW%RT@ zD|TOz;m<+!T;u-tPb6)5aq!b<50G+UpqE=~z>Y%OEk7Hey+ez~ zhH6C-<@&D*1nk&M!q4Z8K73$p4EgG@U-h-G$)eBdll2*_LRrhm;fK}g9aq+r5T`Bu zu11%6b!kE;OpH3Bg&&GJ!VQG4^FIYIeif1TzG35R z-{ISc=+iw7aDvoe4ZpzeS$AM z%*MF8WFiA?&S0t5Skm))BkZDcgJaQ*YJ|^jIYeb}?Slnuw>RA83b+!Ug?9h=GX`%R zMyp4ydkpw(DaDj|g=Xh6S)<`KGDFAT9@zXJ9@1F!npMlqC~tUMY|f-*qdLKL%5-lk z{?lCHG9@fT{~muLdGOHIh_pl>U$S3_C8fbL$q?~f|N*wytO?1 zu0z>%TNOV$ynpS(cqDQSZmZI~Zn;7!U*s$(;|ZLl6`a3FZAh2&Zi1531R76bGOA@< zG7wO8AH1e{rppUMq|{R5f-HD+h~OmwdLvzFsU(Zs`h(&v<8mNraVFH5Uef_2|}XN0_-kcnbo zPYwg^{c|RdR^kUFzTB})-iiRZp!NaWj~?f_UV&pTb>EkBKql1QuJcMDQcZ4#)5L~9 zR}T$x{k0vb!J=zh7s`KEb6!5ejes9cDkv@jF3rL>pzJx94gZ`zBN%ueDF)g+%s!&O zrK=&^BU?K~J$?gS5n$1%iOg52J{9tJ{DTkPCtFBvu-tn+*-*b)z@-{7wGU@lBqD+x zlpW}(-3bl#7ITNpEJ|-hJT3md+11qP-u)w(3{M^WhW}C`iKr(iep8)Zgp?kI2|jZy z6gh=31^M;P8v6koug%Iy zvtDl;$CL%_kKx|GEec9i;y>72Oe&Hv-_Dc#t8@KA4JPwK>D3zT_AG4!me$okno}pZ zUW?M<_(BUU(=}mce-TIS(mC1Islz7e|zij#s1mB1t9A#VDgPl~i$;LnC zKD77am2bL-t`7b5-L+%YC8PxC9S!O6_Z?R10fdtg^?3BI;hf=!{j}Dbj4ZkO%tBC! z98%50ISoH`#3fEiBIrYzZ-%UcLxBz-<e%c?P5XhP_XG=^%$YVYHStV^&>4cOQUQf*%|CoQG&5`{zX7c3T7++<@ll!>QW#F zq<(X7cu-}JZjw}pCIzOmv=f&;6D{P8B_S=^G}hn>=LQ7k=*(7l)_i87<#W*;-Ypig0X_73cvAxX}m9UXdz1%GWP2 z(Q>(i5g{=~en_atspuNWG>N$njR_U!jPIRyN{T<}YEXy^r%xkMiDiD?m#l=?oZ3cX zQHQ{0O!-J|iP_x!9?aVg?Ph-|r#fv^CfRlYNA$h?Esabn7S%FF@nVH0`{7Fo+=0$F zHLr`hAlM$m?w8sVVOiUm3U(CJZ)KpPt>R*Kf^^5h2Jcb z#3lT65`dUz`9&DhtD|lhCpVIj1&cY85g*<~U3GZMGh~HiJH&mM61K6`@jS2o)aRwc z`>qHZgJ$+c+0(9QaRfa3FSu7A+cC8#>yt|d5_+&t%2Gd36@{^AQdp0)gb{PuCtc~`+$NaTZc;3Qo14IL=`jZkYtY*4+(a?!?>DfP6 zAp~^~$he5!7u^1ZbejAu;yTTd#$`}U7I4{nIn7_@H!rf}WlT%3jsN|n6T42WkvI$4 z46U74Td$Nn@#&^Zt}-hROOK@UhPQJEE!V8o7<2Y+%1d;|4TJ5h`dNvWm7Yp;d!+mG zhb#%K2@^EAgv8Yj62Y+7lI|Wa#iDs8IR!kqii0D+i-SPh8UFOjhw0=F+MZZ%vFK!k z0b%aeDP~47AcS;FDk`t2uz8Wl?Xt_!I+0kd&c5fns`HA&`-G}L?NQ#8h%rN0F zMq-ed)?3A_U3s}FgJ~X*4Q%V9dV-H!5|!as-&pO)uN`r)(X0js@8xc5vd@c8{r zcf_(wx21~p*g(qqCA^(GBpvNRm+*0->N5u{p@R(@i{4*iVxz+Q*$Q&}lNb}ym~SA< zB2)C+sr>^x@q#QGF2`QEBI-FLU<|jU|3+%z{-JPX{Er>|J@+sW+quHKBzq8L&!Z-C zq^dbYY(IbTOMbz}VQUD62N*kIq5HS8Wjy+<=n_hnFdB4{`1ErZn zhJl0Nw^ihsf2;gH-*cSkbd6-%^&k7;4Ii8pgCu+CQ1gW3-nkRWWfMg5F1 z+7yYhjBm28ID7AZEX?qMmw*n^yp$kS?)Or21L-w`y?5N0LYGbeF*qYKgj8;-ACM2s$Y= zw|k%&eK5bIP37&DW?JfLbnIOtK0|V`E|o}6N@^-9l-MI;GpsahqC(-;;Cy0w_9~q# zz6Ca&96KokKCm zGT#pR+jQr+Po&z|fd2S(o~T1hJ~Q-5>mr~<6Y5udg!&cR!D}hnpS6V9m$p&rV#r_X zWZVcB+ZZ-6LFo(H)yk!Y?emSi{nf(L#t$<-V0G;(qIx82 z6V&(y*KU@*5y?0aQ-}CqRv_FeZ0`lWMpOSqj9k6;LgXj-43;dq((bMy-pF(^O?Y?| zKV&Nw{3Hv>>gzU>EK`Y1Gh_G%wc51s6;fJ{qU}06NiPo*+0BvY$@WtbF@3=1%!ndByvd#9R`9do@9t z#{Q^Ikj{=*!{aXb)1->dqxN#v7val^=bmeEb$0 zKy1q^26rH-QEQ>Xe$6c@e6}FGPZyt(bm0={n~`EN2^Ci#q)AL#l71EU?LXsEatjGP z+pKDC5wW^!1`ET;1mcBTt8cazIPsg?yd~TU+Vnb+GEE_$os=e6@ef#!HP6vr) zxn7^GL&mlzXBY;_K4jr6o7kd<9t$9aYPOn(kX4i?KGo*)7G-z?@UBB+P#4;^5Z41Q_@RIh z_P=Tc#2X-o=P&Z#!8$WBXd2X+w6JZ#y~UTQR>X+ShwVJS6l#rI3M!E)SDmuZj=&e6 zm9e?#5!CII&C+XjEWlwLclJZdWZ90iC{Idgb8Flj4nf8Z2|dEv%{P0^q(ObbWjT?( znE1*V_gN+fE9w_Wr{6EGD!5dZZg?z%>AAAKujx2i!>RSAS3gvRu7%0JR5e2lg_-Ek zH7Q@qLRf|rLqZt+lkgV+CkFPdd zJOas`aH}Xt(cfZ1dPTn8xKJ`}vXqhVi+v)#1B4iYvoo{3N!hQ8SQrEGC(!CuNZi^S zYKmTsLC4$=1(!UGmm&9e{SWQWCp^Dl=y=e(Pk2-PgjB|}S4@0tGNTyy@=;7$f^utU z9v8P`6k;Kbtz0UMmfB9vWfpFMnE24|2}_AZ(AP_#$zj{+iZ@LZqEh+o5*ld?b zUK+hg+lPFqr0p(@I3@7xI~wH@fh;8l`rNj-W)zc7#(Nk%7oh-Ibr8s1%1Hff8YiH^ zE9BMu?bceV)STVe&oQrX38UMnCZzq^IILI_5r|OOw3*o4SSfuZkYT;OL~z>`b`Rloveq?c9DaCu5wAj8Q@VO_0NT-T?+?A zvVRV=ksp(SLB^6Gity*pN$A%^igJrbQ;b~1r+JzFlo(KoWm~k)GU)|Hg-P4ddG34i z6K0nXT0SE4kq$t!{P{jKSl{)y6ZHbqN~(XKh;v}(Z{Y8Ueh!SfmOQ^`-LGb*PSyuE zO7NfCP@iIJ46c(Os1viXS(*l((%z*HH)gg@YK4-+|Ap4yQ^nV1G9#4shGDD!Z8lXg z*>t9{)!XUjMVY_uk-)p0~FzVGHnK0OhQq;Kr))Kjw=uqH;jYU z6^LEdadfMEE4D>PO4*oCGR?z=_r>hjs$8K|odt^aLF+*wd7w}T)!BiwP&Di|5KW|G zKhVLghts`-BlY8FeEdJ$P?W%EdQC$J>00l* z^t*Tbq}3|Z&C)R~n1f&c6Rp9pB$EWyNvd~DUb2AuZ#2u90sM9HfXm`w3%Q}Hg@ehX z8hdoyRWDly-+m1!!b0KmX4LVZB@mrec8+|A`%|^XjZ1^9WjE8t6=&BYK+knrn$zUs zyyw<~A;&eb{qKyzY2ng;R)c(uShFN^(Qpb5mpD?xqN(9U&k!ZSUDPY&M$BFUT~=iqiQeVpT9;Y~sR!ySyktrNHl={KV4 z6I6fo>K%T<$nr>UO-(~+2`6s2M{(OQ8zd3TfWKQjOZxDc1*{{=Vxk034J zTi^v)%l*gC-?l#fkFd`uMoD+xvb+17%m2qcp4q~G<%4`50DN^GpO{D-|FgsTOkc#P zR`1^fq-Q?rI8e7sK^q8JVDz5MX0^|0I_R79XJDEr%}(n9EK|0uip`#aIl&C$A^a#2FZOD z4TFH-K76u~S3($yx9ST*5zc?7Wk*3$8>RRW2;NY{KBMp5C9C7OGVq?HjerT@4A^6> zkI@=EOv66GP>@z7h}Rd(XKz(yV{++N+V&=cHTO!YN7VRRSn7K$>6u z@Msu1*wO$*M{GxzXRdTM7!1Xlk1;3#{alkkzD}vzYS1ZN!`JS`x058 z$Q~VD8(a8!yqt@`{OGp5(v|rcNCa^1|5(R1e96W zORDgc*y>1@Jipsd&|jB)InaFHA5!ZXWIBRQgPh_@2Z)H913pzG0(7SXVbEt-W;!7Y zH5!;%hvKmPzM8Ohq11J4p02bo;2zS@Xm*UC&ff2=oix=+qv9tf+Rdosx=T~X91t(n`dwn zFeLvW)$aV>(NxRfHc!-ab%=EX$u~DMtC&&UQWG6&4+(=Hdf+)M2I(n+J<-W}+|Q?% z@iem5fi4QD)^p|9P!XLNLyy#|zbEzuC-r|$3Av}#BzBo>9C=^^;DsPU_kVb{Aot?_ zcE9HF{kkCOv#-hgO`48i+U}oV*Q@1lEH3)(Y-m|AE8O5lOMt4mIFU%F5Cq%<0Y`fB z2X%n7bKJ%fa#xx)y7)W~d(#2vMnRdpHqU{_rnG*a1GdZ{{>8bo?qytW(jVF7ng8o< z^SGZN8sz?;x)O{HT+`5gCxjh-Sz&X;f4|N|)c+e8bkS=)ON{?eS!o7dRtKa)P!lIR zg4waOYSGj3m1cAluQ9wFQV-p^qCO> z(QVqH29(hPY3{qQT^zq_Thb{q5D0X~(tPOOt@`>y9;-*Wj2O1lc(Tmgo}e6TPjT?| zr=QM0i_ofE`JKN4k6hzt;MIPTnQPRZg?mLN{fl z(Ftxpe{`-usbUC9@P~#Ly#kz(L|D*&FMKn$ibgcc5&3&A7Wu1lMId)*54E-LZ_4-SRFM(pe6>QPx4sd*%Oj1tx zWncJDvI~3~g@4hyZ);Whn0S{+pMa&vXN?1)^l2ldnK-eGBxdOW3W5SFUF^f^bQs`I z&?>hj>ANpUj}kvf9?a+y4yxM&s())f|G=`M3pI>C^NN7xonRzuLKqC6$blUs4zv=o z+~4)lki6;TW!!lJ)RE+9R2t$&qDI|?_v$2+dMUW@hgU5G+9&+Hh{-x10#+$A=x}RMeer_STof zi7Zv5Q?b)SPy%58Tn71EHEC>IP8PX4dq}~%h~1=pG_Qi$A=KX{4Y4SE3(yT!R7`71 zxcZ($d)YFv)q*p&^!U(+Zs6!7AJ9UsIb?mnbwE_F}W-GZNnY7tAcV5Qx1ja?cWzc^QEavhozt5A?S< z08eRM*Fko@{)wNHO6nXfBavY88;5qCPiQN?rybARML;gFVus~L%B1MiZ_}_loXg}i zl?jAkxi`KW#1zWKVk1qhR~?o@_}Z5Mu6H&81Vs2$IhJ6VZp~B9d?n9%2eKChCYHFJrfp>jtH$1ZpN_lCUP(#@TfTtr3cs|2nY$n zF<2eJPvSeh=e3S2#W>&RHJM&KcQgSGYs?1BZ9IC^M()P8HTMe#LORJj%xZ9LerWwg zql288y&rg)<`$)aVoVD5U0K#nJllx`o7k5W_Cr~cW`AE5%@d$9R@bNo z7T%Z?<|h^ePok#4=O}^@h!{V6(inywfh#NG<$#3Zq&&@s(|guqj+2ey{4OM~}_TA(3RA)ne& zCq={=5c9;*;EEqGefs&svrF!+nSXm<N9hIOKeN+f@&Nk@7q z1h+}}-GB|n7aV13Z^taVTrDSlzaI6sa} zUf|nJxf^P>XdX0J-LdVoyrLa+%?ahzILi3E*$;yuOj!?q*4GPDg^vp-l|^t+`919W z$=VX=n(41l+396-_>0vGk0ma63G?R>ke(+I3z3s*nK@*=$WNNaoDNkg+Kp=wY_dBd7A!t@mLj--$D^)=fT~ zJYZVL@Dv%eB|YrE4vEm1_Y1tVsFNmiDNbVB5|zxx;@j5J)ZD{d@TLo)Lk+rKxz*Q# zJS~!RBdpLQ4j>47X@4(%PbMoQ(FJFy$JUp`N@7%g)|A-I_)wZ>-_pwQYV7lH zASdJeW91f>#jQ{>TiWBnN;bW2Y#LLR2nJOuO~3QQx=e`>){`kck2(Zu#s2o^bE~bc`sP>xj#F9>%AJ)uoc>0FU4D$%a8%T)WH$a0xwxhA zWrAvY#{v3<5Vo*7SR6}ytB5Mzw1K7#`DwJJ%~1&@Msdmh!^jl32rMM*z|2JESzY%G z%I5L+x>K>Wo~Nc3PEyqHApuzBcyPRQnu5~}vMLK{I(I>+v zeyn4d+9(NbS*FZ$LXXo`Nv-PQ+<)|kkPXS_EqdUP(>DpG4L|i5zI}2DF(f?Hz|16O zM{Gm9PpND8KQ%V3Of1dsilvZ{V5wBC;DabNFV9Vh%Tw1b09@LgU!t=9tHv#J$t^eo zm_W**l#Y#NN%h{N5d$|aGwQz1WbiOb_%ks|;M5%bDMH+_`#?89pG83FLX9d19)ktv zNr?pywi}|BrII2XLE$)1)>zMDa5%#l{@Mf=FkylZZ=S*9nTYDn6_xh68S5o@mtt7s zr6RTR;0q}q?ZK)$F{i0b>XcnJ1m2u8P5-WN)(n7Y@y0BRk7}9JW zE_8zd6wM5ph3k7%tIw*U#YP4xKD28)f1(?2q$tZM2t$ui)401!l#FzpGBc)J)d#Fx zJw4r9WsJK$1@vk^1`&>z`SV7o^&%r&d;dEZmZci62 zZOI`x-i9+eUqYO`c<3@U2Fb(N^dXH%0>o2Xo@{szEFxO;gw4W%;IQ@SY*COBTJtQO zpHqk(_O|@G{e)@hhMyFxsWAV? z0pyk$gOff#bgNnA8FkYcsx0wLqX-g(&m_yJk3apdI#B1vSwj7WFAu*FdD$r;!GqvP zHInw*K?6?r)L`Z`k{9o+D2ux&19izI8a;>boCEO`kYRhKuZQ}?*qEuOld7L3!ND(n zbr9WWb8k~PKt#qMZ%?D6CmDYlWzSA~wqyn%k5+!Uj}1hA+m5ox$G!41827el>mHGUhDZ9RNCU*|&o6;E`=5ZT&kMRnN zN4LIzhTPdd;T^(#hgiV&{pRChT!$+89j8RTHN}m8j@x%9`dE-bTPjJ}ZEbY415ogs z!;HswlQ~<*JVJ-a5ulp{MS~kOUev1vozsb!^oRmiiOvVjIF!nms z9C=`Ca$YdTls=biFa&T5Q#fUVXVW<5lxGWmS}|CEfr7jXOo{E7EX_*ru{y$LE6yekhj!3?x>+yplpA^k_w9&PCS7b z#KICmSu0+ zRxhe~#^ool)%A^CHt1*A)aKkG@Qh(wRb2q=r?XXU3k5gM8}}p6UH6MX!oxiLhLASZ zrx3AqBzW2CZJEtMIZB&@@cW@C%BTB1(KQKNJ9GR8KtFdK|LBwcC@EH^+qRuA9!&aa zGu1UispuXM=mcG0_!gn~1zSzReSYqS?S{$M`|oTdA=h(WT)ou?`dR6)$+)G*vZPKS zZLcyJXK(-Z;OOw8>KL?LUf2QZFQ4x5_%2xKyB3cH5nUM14C~PL@4|0 zgq|KBCmc;Hk>5mx6`fas_$5z&%$SapE2ubs;yHrwi! zJ!hSQS9Pi%y{5ISF!@a}UesS~xbn}D6rVBgJ zzkkipJQxH~*l*tDMld$j(GZt-=Xdv| z!HqJ=#zhxS=%%6W2c!9+68Q#MC7rIXAG!BlzVa6G{@Hh%Bzn9*_Bq&eHSKaX4#c7R z?AG;47af+1RTx^Nzg(g=zRD4F|GY3UX5*@ggogy1O#QTiI>7=H3(<#IR6-i8b4t)d zKfY4aZPaX>q-DHu2i0~!7u-qvK!SG9Ih5S}l1}?VmEbT@lvZg7%U);ZqFD5mM((-x z!U^4(0s3!2E>T^$!4EBokE0n^(}3v>wwbi9PJi}g$%16hqOb835L?h;KA$OxMM*{} zCh4Cs@d%e5J`Se}mt8^c(_sIOU1Hi6I8MJb(}8Fwh^b|ty*9FVLtl%*f8ziToSZZI z42xJ8I|zgBA$oyzxu9l&d{7q(uTTLkI0RB)I~J0LOG)pwXnhH;F1=9hVo|Ip{gDC^ z^GT(xC33ZhLAy|z=m68#xcxt)zto{4z|=eV#7rB%>s^5t z*|W&C(ezPqJFnC%j+6mozzBOamHmvc2FT#`Nlw+iRBA*2p zSpW4AEKMR`KXVK=L7WErJ#1IgnI!*z2WN+D2%#WLBqB-4_c4qiG{47I46#emcAgSP zY*~Ak9Sm9Oi8#dX9^Z$$kH;4(|Arz)c$9|x&<60s&p8N^pYpK@E1PL4SmxXQ z(*d5|4i+{8VY%mJMI1Ph_hhgMHuF>q=-`z>P?5s*R{sD05J=#ODhxvAY<$3*P$RMP z06XuZWjsSNVg2{po$aUz4vw$_ai9N z)rt-qlJK<)D2d0VHZ;10f|5_NDQSD)G%XG*>zwQDWIFSLPNEGc)_L` z6R!{{d}_JF@(&e4#OScs+uVS$L2@?s0M4<>Z2ofv0#akRUY5&Gx9{46`j-HWl?8pg zfI8kEVxEYiSdkIi#%Y;dkOJpLWp8)1xI=bVv+K5>Fl;K;@vZ#s%M_}su20sM^D|GJmL=j}P*>0|+oej;Wt@9Ez1gU{bz(|jna;5r|U zZ4oO#{8;>WQR7dvN&p7`H|JSD@9C@e!63l{>PNgFY}9(Ebn?1eowFkLy09qQsG6(Q>Ff#-_NrIU^9u-8`cgzmKQI0|#+I>C!nEt81n`h9$tfH_5c7vSX1)%Zri@i{9JIy0*xSr~=DDhImM zGizJ!0Z?VNIT?C0Dp#b;1#Onhjy#^{J*9&&>Zg_WWr3wK|3(OX26Ana=~35!tfAE_ z5-EDc^!3;RP;@l_hUhNX{DcEEN;x1_keStUcK@5Gmh~W1;`zp34Rpk&6fo5WM}R>J zXqKQRIJtBJ#dd|2(8-(wR9HG_m8@EQv?B31Th?i}6#oDqNYxaL^IPt}3c`pjgdjg- zkaYx211#(*#$xanZip#W-JDC}6#cRM9HCC9_s`5n&iNewr+@seeENg#U0u>;%UG$K;@`?&>jU+eB5a(vcqk{%n5+M@DtFwzg zye#m<#NnT(I>Ak0aw&b0FUq$P4_3W^v1K)gViD~7ZGTd@9u~KoO1F41wVUgEsr|Ki z(B^wwq!(ZwF4CHqn+}3Hq1BgVYvzW@A9u~tJpK+xVO0b|%DdSx>ftLB&8>tmGaB;) zP3qT$;a6)6MJ+ew;)E7BF?_CW&KnR7DH_7(H4WEdzKW*$n2R5R=#z`i4d`-PoK(ql z1^Atc^^SEF>esIg3;yjCM4AiHyP+<6;E=Yfa$f+ruX&|o#{}rc5jmw$TH#<(q%MID zHSJ=V3dM))6e}O|*&x=0E$C2s*S(1F*%kZh2C!MVY&H1*loye97e|DC63F5|!GMfa z%jzZ_j<*|U1jnP%!wO4KW)*)7Z3#p~XuBDC{gUIYQJz#18^d3sr02|g=|WQ|*un($ z_aXo{v~Pjmsr)7u(IgdG37m-P&6C{fUyY|*O%qk5@UZ0Y9(I1!XQBA5uFfkixbn6> zwnOMtKa6bIbLLq{{d%+joDhE|_fHa_LzDw0M!!*ArJChWKGmGgl*a*zZGUDUUoi6= z*rE%s4c$|dIUKV-IHbdawa;I@{7jgb74;27@gC9;ayS5*in;pl zy?U&K{frap=c0B8eG{e9)m7AD#j88KFWli>z!Lp&ncl|4{PTEkj~8Jd_$x!*%PAj5 zO=S);$8RYbI*irF4Jx88v`Ku($rWYq_5dSYeK~n&VN4Psx*Jw0g$OoijX;z0c2rV8 zL9k|ZNzZ-B99`L%fC%hXrn|aX5Pr%0i4~5QMw17j)8l?f-pZsYV4(H-g^v?6T|7f3 zzF*FFgrSG^#gb4t7);oqY{%&9fI{&U93E=hn#D^kEI6S?CUzE$4N1YXz68$hYnR~# zY?_Zk-pp5fvO~P_FZx6rCj;@RH2l9&d1G>3=_q}!uAW#D)zov6{y?EI^mWk$^&E^~ zYlKx-C<5YVkSpPnllYV6moHA^H&XCFkZWM!VIsD_oRarcZ73haYt_NDI}rt7FFny; z6q!7B3L?V33>gz!O3t8Q+lI&>_Hw63RBzR9G0pLlw`mN3JW3VFA_JSh1uJy+Uw7JEN1X=n^Y{0GPu! zxQR0HM{jgxy!#E%Zdo!p!P5V;w7``;OIe1)X zvc_G7bd!pCD4bF-p5TiCAH5NceQbU~(d&szg*IQZ`za8*A$9>7r7WURKL&<(?9EiM}eLJbpc(%oZiB}9CRER zdZRb`P4m7)6vhNu&E(2GQN1F6j`a5D3(H28qZp!qFW2s>A1`Of`2zCwjF`@=J)*5# zLhfi+=CcJ|l@PE`FlvSugkNE6RnZbubhnJde|N{DsJJA_UOP02wL!$#no@WXpSS2$e&fO?Y0lC|LNLu2TD$otiLH0WIug55{fgr+I} zsda+mMvq|pePIqU)P5T3V=Gr*l!dxYN>%O#7%XG&9{2DZ zWFei@JmVj#n_q%z7f2cW>_W$+*0}KK(puz)43rcr42uLd` z-Q7qF(jC%0NGsjlAzjib-6cpjoNIj6|NPIJbJjU;&-(d_oUQc$%Mk?xT1hQ-gXw1&lYzJW46AwP57Y zyg1M&CPTp=e`?yqKPW}!u{KwJ6p)-gTH0#5*d^U) zW;Jbc`w;us7*IG+JgpUstc|gUMO7R4uSS55EE-8qa?JlNh!&pHLf?A{ zOKz$(taMgMPr46!^kJtY=|gpW|EF4)FX~#G;}jHsFp)Xu@8Hi+N58WyMNchSQR~-h5fjcuvhk-ei>Fdc_V2sGDe7ev>+Son>>lB z^;#n(3AF9UOrGSL>+A)nHRIgkb1a+jUK)X@N}`-2#k;V8!YVb1B&6s5Z`=&OgATmA zO&^)njHst&sqd-2tWQ%y0o_Rv-Hiq z=3e*8bD>a5WRQptf3u-Mp__`__q!G;{x(5@jd5xcMgOhWr6>CJ)hkA-ikIEwPCaqe zk*>*~V3AxnOtWn!S8-1(;?QxDkWJZfFkUNDLe$xTNDW4SAk0%6V5evq$@HBXMYNgD zu+q;iA|Vl z{~*`2`RtWJX9Ovv1xP`)^STm;LB*P$pRt^>%Ihzkl*k`r`uz6_Ufs)JzB}r-%>T#7 z;oWB8bo%}6fhRvDb!XqQ)H7>i8}0^K4WBM~Xm{a9Z__ati{BtmsOA_|=1>tffY{rew3#FZQck_4$t$vF9(cHR+1Ecw!mVlJ2R^xg;!JB@ zwk-hf$ItNY%Iavbt`Xn~ZHWFbSrED{v^EKvLR`CJ$S5E4imm=*?AwW-ob<$IHH@DN z9;`RICe0K~q2XK>tk2bE+3GNlsZRgS<7dL-o{zvVWlw_&F00RDh+g2-y@c!C%Qao) z#RyUMvV`3Us>zKVf#pB%7;^AU59x!;W?-OXTBQ{orMLjSw>ivXCKPW>AwHBUkD9CRKl$}^NX4+Igtnx*~ya6!=I9sY7Y5bs{w z^^lr-@Br+9`*UU7fiUw?lW36eGh?V}B5EH7oSL^N7i9?THSXxK7|mO@Jbim3fuL@$ zkMnH(0|P9fVF>AleatfzmpNVZLb@o55fG_9X%>J~mV96M-DxqU07Sm`4R-N}8QZ7OcHZ_onHKS~g!e;qJ2M zh`QPYD3SQGsKI;^75TQGo0y!wb12q3y#u?&k81(vqP*VYh>5=mnMCplJ%$6%;FN|D zy34o`{uzO!#@V+VgDy`ZSCWec%-TZ9&BBo|LEZv4QTn1)aC`Se4WYPY-@@~!+dbT` zd9fe;XruWAc8to0`-3fUQ!*nvqt82ccyINnQ|$^)v^&kdM$+oxQ^*NWM^BYKjF1eR z9}m@O3mh+<%52lm^8c2L!v1jmaFtqtk!@B`_ z{4LI=G=8vTsBX*p^h)SZWr>~jbg7=TTjBzhpEZd8=w^4xrA%uyEseBh#&hd%WE)-Y zp3p(S)Md*vsheHRKMCuG{iY&_aA9AAIjg z?ljJ)@#dUTWGvI8$!YTDtkAYsR{I{R<~;8xyOAdK%K*36!t+kQa#oE(x!B-Oc~G4F z_i%eAoVFULHdKj17u^EB&@homIQ`g%>;}2-U@xnagN=`5%pr3>-e+!Ouvt+&f*|}M zz9LHY*dWhg2S9BZjwu)vA`di@lzUTZ-7c=$9}nr@XVOhjK!Cs;g!?+$;v=SdbKI*) z{rg+q&9AHYHma?8u}keP<8P%t?pQvQ+XL=+j z1ynzmolW-4vQRZ_JyzSis1*eoZUVox`-?0fK`;yLFRCJk?}byS7z4TC?xVwR&M8T! z^H_dsP?J^64VDg2Zy9pkc?ts|>`{$YVc}_u2+;A?QwYSXyVB$34xJb+`C8KNs6}zB z0umo%&&%7x`D?YL-Dn=h{ZFkQfCPtGlF+5G-rJLA&8s-Z_{UZqx!;yx%>NA%LKa`z zf#6*&Pd1nzSMaJr3c#7Rk0%MD?ctL3yNY+btR8Z$Kz^HE z4LsdBs9?$X*WV!`3rrGqSK-msem9EHeU-cIrJ)2@|F3FGV#972ER_E~J8uz+UQQhH z_c?!$HX8c8mvalXNXALs5d#Ulhw_8HdaB^2yV{6l8X+JIR>rv#Z~xCXh*(pgw_NXE zo1cjzV1x)1;xA&ow)5@<`h*6j?Oh?dfGrNRB5 zkO7`>*!@NjoIr9B@SsSKLg3HAoeptfb@-lG6DZ&SkYA-!VyXi|Ks!?fdfw&-Kvg^S z(5~O#=fO!iOlj8y3U>woYPCj`b3{+Wh=ytYamcvq`61J18T|KdRaC>4b`lySAUp?D zPG`6u?zUPauzSoSoVQHX<}pm~DZoSdi6G&ca@9qfuY+2o+^O}J+ut_E{fsq*&R=j4 z1`SLHcMw=gqA#xf0mg|VTJN((c}c**gL8%tfv0TvL+{sW>VZ3-1izrLJS6nu9--_K z6U%n_0{iX&DA6(BNO9Ia1{4DhMlo|WSc*m{qzTP`KLLW_CGm+@;0WlM-(-8)gEs$w zlq69C(hSB^M5`FO-^<`n28aC1Aa1GXcflIWnceloG+{OWdD*C&#b-e<(_@e_ltCXc z0@?m*J4dDR9mV?qY}a;dZjRON2%F)rpw_DQ21u?P2_>o$PLS zspRwd{suTic-+o=t``uv6@I!Pn2?fykcQxMm1n;qOS zD9)6{VeZ>3tQph$qlA`3kfUf?;B|)~SA?{Jj!7egcKMHSX#aO(Px~SE2w8gJ0>^x} zbzD>2I<6dEAQu#SYa(JB$AGF-@r{WP#Z>&{>wo5XbC_+j*!=VP4-{I)L@dw~CY8V> z;LbEOl;{LArf|WedA!dZaeKJQIPj%b@m-AS#(Zkm&OLY^41hK4{Mwnv*^J5l^^Zc^ zKoTd@Lf4cMT;vanuUZ|@##({oZ@B=v^oSfA_-dNAGD8PgyPp}{0j6()w@Z-bsRssT zm?iez0^2+{Vls!fX_Ickf^o9d04P*h$Kh@G4K9i1cSEx!!k250op16BitWZaI8uTB zpVDv+PzJuv5HYEF;4{0R8PFOv03r`IXQ1%AW=pl?O%l#40sgIYU(NXw##?THN!V{U zw~GV7X!WkIV8~527$Cl{eS3Y*jgXG0X4z^!=8&(|*Vm(++P5Hx!p8;7cSd`cO`p%5 z-Wjn$z^Us!-AAGQ4OC;}z3HoL!W~`^QW(H^@pY-do}Iqb6V%`U$@>z>=!3xSZf@Ot zxp8q3giD2GutKJM7_76vQq2FmG6q3iR^EL%2BPN%X?Mo>&3oe?pJ+ngu(H+Mdc%@HTczI^JII_Gm*T;Fx~xUCpLDgoLKSkXQ&JaK>Ow z#*T1HyO}hyBK-P1-+2<3qeSOHWmnlDm-T44!GU~$%UU27lHR>Lpbo2iE;wdyx`9M) ztqk6!2=6}}fqZ6$SAC2Y{^)*XH3-mK_7k4lOUxd{5vs9ST&PTLO3|2GrC@Q`dSha8 zFj7l5s8>3vZowN7 zi&zPBBK@R-vEbx`;~mx6(cbO{i&6_j`O?J&pdacupFMrf#fUrGf*J!)NQ*UQ;XVgEIAJNdO3cbLU$Km0DF* z$~@3ZYd&PuQ@NrNXY$4nXwOk8HgG`0nR|&yr|do9FQ@V9!Ba8hEbN)>X45zV zFQQcZC#r&p&P~QP$rOI)@V$tBk_slvs9RhKr#6;y;ej6WL|g;JWcKcOV@ReN zb(`^1K!_@YVWyUA+D6$BgP+L;LqPr0vVRu9S2RM#o;M>lp4Y#6%-=*!G_S16yNF*R zG;J*l>B0r-Nm4SknuZ?p-Y9Ao=kOyy7J>@9UvoI^O}nm-k?nSS|0CN}r*erZn4a)^{u0}w(jgagB#90k7<|iJL$u*XJBV(-J%8a6xaE?8!!l^Q? z7~~4w6K7#E8Y<#wTgy&ZnyaHXo?F#+QzU5)%^<933kP6U!1QR9xQ$Ua37B zZXCWVZaP!vmNzESQDAD?Q}WGw!1$6@jyLJ2e!w)C*gnq@pT{suPsBwmz<^XI%ffqe z;CXNHM@j=uDOWYJ5f9QuzDcdWgf|ln9&z7Fwl{(A_1z@V(NmBt;>fX@4HR{Aug6M5 zFbaE6rUeHGZy+T*%rtlat<)&zwv2aZfZ{UY19Nw+kXksG5yqkci;=QdZ>Nx{?Ah-C zV(X8|Hl+!(WcmV+64euT*ndjLNL_g_n3e?x+O}IB0`SW}n0SgM$E3DEx6OCL>j}wk zPM1h1>@vS-TPg@lDXqF}IHK}aEzK!EP1yE`7tyxN2iYMLEaAk;!EqhmU$dZD#`F)L z?v9263%ag)YjqP4`Bl$rDppny)JL!0qRQBys_25p=7thusswcC6^EZl;^41dEVFxr zVSK}0R+S%7l`qk@?IMkVjA;ZFkNeC5<$q}a<2&h_UKulPt_`qd8rJJ|4sBK!{EpOH zmW0Y4K+xwks3gm{j?-B(ZB=weqf z7^k&hGjcWV%}df@YiJ7koA^KOCYGMK9WkOSqsT- z!}-FDMNZaKdD5hTTu)RVmpxc4s>)(Jt>%QkiUzv8AaZb|e$NYZQBGg`^Cc4Ds zKMD9dDD?P^rBvLgs}3Yrn!FHmvErMcB=`};6WI3XrjotPSI`Fnkg_)zmi|a6Dr~ys z>hjeB&a9vL3#^iMi(X#u?}4dP;hzo#mNFc`yMZWs%B&8ou}JbBHvqURvA2D-7J>#s zI#M;T(P^4+Qo(wS-_@V5@a6C1u7?#^Io*y=xs9VF%!cIJa1uW_H>0TC{#hSh8+oFl zs)y?N^7!fF9*dHujq3MVMW6Lhg+n#fupr{hbH27cc-i|P)cHlRj6Ct=Ns!|6h2a;* zXo>EPQc^3G+jB0|Ql;aA;(E&d=r6M$;fptI$dH_%*h3-xC~`^~5TZM=g7H*@=RrRB z(AnQDfBAk|b?QQ_{79YFTQ^Cv0#EUT#RCcwgLV__rv}6<^v&8V)Uj7@b-TqIejIyQ zAPPb~lRg`%_i-RVzl9*4BEFcc7`y(5uOEyXplb?Q6krbg2->JY4N3Nw_=oPdV`+D5 zmOfcSgui#B>;oQ{6DYEbR|4T zB#6xCi7iVrEa+9me`vGk4A%Ow2J{BLs=tk`z>KzLpbZ^Xl*3KrCjV_$o4q@>=?2Rs ztg{~d95c<)`j`i@jQ()hP`(cSO9+ZT_^{}S{KF%#_z_G=qub}*n-=pGZ*TL*aL!;@ z?)JIG;U?+9V2t&rWHx1(D_~_9@vz1ASyS_Bb0JA)erNi1lwP#3S$>kf1DDroCABtu z+0}2*8GILUeZDVG-0Z(rx$?2P1S=Wm#VD|k@$8$SbLmO1TaK6H?fMeVPaCbO7u)A4NpLOzIOF93SZCKj=07x43l*vZJTm4HB7;4S)cl-44xgW>kLGC^RB!Y4B!4%Y>Xea9 z-O(3IlB_dZ2fnT`Rc_L6%y02EESI_dDJ>7Zefk>}o3v%pWix3?)O({nqLcX|1G^mh zLxyekg_EF1qYje)Rr-f6t;2#iKf z>=7JM8G2cI8Bcv#{n}ZDDqf0Tm;0eoDUZ`)#>4ED3LD@WTR(~if7TRL&-O8H=mso% zcYb-mj77?&J+|q(-)$VWSaei?Ju%g9JBi%rCD`4_TqeA~t7_~2^p>KXP7nv8{JYJI z6*0MOJ^=NhUc|hvFZRw%Umz*pcvVc9?oA%S0p5)dt%gGB=Za6=KD3Jjq%=42jTm(E z8+MM{n&HrCX0g45^~KHKo8~zz3VY)@8+Tw9chFwMa8)~B%60aK(+Tr}iaj0mV6+wX zzNP|-$!D-X_bpM;!u)h2IAZBw=a$~yE!UP|JVGfWGQCK<%S&~s2;t17pb|a|A%<3{MaujRWMEgR{sIxx$Yj-X z?!26>pLmaL#5PI^sc&u5`Cn2T*{g*&lzVvj0i|96$6TX{?M|GtS)UOM;|h@iLC&jb zz%xlFx+{K_uW#~CM{$u)(Sd9cDTX%;fjDMXf^DeUq(F8ymY=Dl@hGGL{W5l1|6hmX zdm<3ic>*;o1yN_4aiYpuVWCG(l{lh0;U`Pwa$7RH|?A{QOeP zQ7jFa>?~ZyB+3PFGkFv{J`cRGX*>*|`VbzYUv^T@*(NG zhLo={-`)*@(#(Y1$ZOHL3$o)@4g0|=OXZoQsbT9`Q3cwraIaz047JN*atmbLUp#G( z2n56t&TlGMhfh2@NNoBcF~o(9C8SIMUM*QW9AGLBDx{Mp`jg+M=H5lp^8f7Xl=e>q z{vk+$PDrPKPj_VA1MG<1U}nrq{U2UfmtXSy2613ykUdU4F7e37;hfI_J*1UU&BLR; z&qHtFt^#_ii~XBQ#9X=E3Fq)?MbV?Z3U&hG5wYIo&TziIWAqU`!Zdrc4AM#$7MD3! z3z&F<925Y!(6PC(^;0!yB^tzML=!3IM_Dj zuFsZExQf(vOQFqH5{-uz198kj4Lb%U74~6I*te#34Q$Bnet=d!0&HLkVT^ZD z!S_6ZK`EHM$4fKt3@X6@jFe1y${|(x$Z!5oZL}ES6vO($@^UI(8(;sqVQXCNV1C&< z1|`WX*31+;#S$a2V#_Y_$8;`n8}MV5>+FKH1kXqkBD#W$%5C5o%1;o-JnH=7^`?cO z?`q3P0LvZXHh>jL4`7NJ`iARIDj|j4)d)eoaN%X19DjQ`mo$MNu2zf)tO9$O^rq|} z3L{RpC+^8yQ%@s2fyGhkm+Xs|a*H^4lEX}hmVZd?S$iG!rbkG$P3Ehx^O`BlD^;Qjq-0BqPyvH_`i4TJr|MWHWiZJk#SH&|;~1Tk zZ;4C#D`M$BcEsnnvzFajNhm*R5f@AGZdZoB$nfrZ@tzO4L(V%TR(JV(rPks(_kvsd z8}z)yqyWV`2fHTnRnzisu^XvjQBTkPp0h@!o2^JkK4JSo3iP6V9-60?9niIHf}$Sx zfXU#c=8O{U^!SzZhcT;%q#Qme;z3*o2G$@+!kd)R)B#>jT&EZj|~DB>elOT zP+jpSP?xku61JIrMWMTn#{0JG@Yf^SU}(tJ^ixc`Ss-iennfhylRqz^RwCF}0Ly5H zwTBd|C80Vjp~|M7rUi3p5+$U9uC>301c&CV-ws^Ite{CWX%AC26fF!|&X{DQ^^K<- zn@)M;M_?xzBr-)Rr0~_BRj@u#l0XS~e|>&%FjwR@fA`cL2TotCI&H+7HoO3OHGW2- ziUC$ig2E_^kj%`lbM6J^<6V734U-K0deRo(AUFAy=j{!xeJqPyNd~IfdW3EHPWE^n9;FPmmH%c3Upm7b&svn zohDTe$y}SH893FHQtKCuLvvH#;6jz`jq>}?-r|c@FSuH4rfXY`LLFPjnZTv{hXjBa zXwt8mk(l;wa34|GO@ zNfvWOK`&G~-IF#NSModbafMRx{))`nP)I@DsNUBpTc>U-bnfTXZsl|b6&)*7bzlyH zk-o1+^iWKv<3;KUsYJ@OgRQUmfSGWGKFJe=&KxTOj)>@*LgrpAfv{mq^K;oRW-1Gd zu)^y%hA3ej*hCzrk^I(LaLR`E7YM2X9J0hw^!5NgT(w7Ol|>Y4MDbhurge0m{wvU9 zK$ZxG02;)+2=w7bEe)kjI>^^)0X+4IB63UIxK2Agrau158a7W5B=5)p;}ABdo%;7F z|6MyULwsmd7R{bb#2kSc6Lsm-VJ@(xLIrYMW{-xP`$CofdbaY#(=xa>T54WCFN067 zhCJ`aNM5|=VA3#~0lwpTYwEoUNIp#^$rN6t|3{Y#qwHJxF~_Znzsfx|0;_NuNE&7t zT3NmhOu_g0stHspW1zIkr`e@ZEGf-sfw3%>L8#<^UxxR1-fKR}!*GiRr;3?3pH@k{ z%b7_iK4PSzfXoc7bYZNx0d+3)`mkw<)$5=zXo4yeag;}5VFVqqPXCFU6Q)Apfiva@uD;F7&xtV2ngUaB5`S3h#c!{Cj4{&?JG;9v2{%&eDHAasQ2F|MPkH z|M~NfNL9ilmwJ)Wkic|AUrvIq8eL% zeXH-<8i#F)G{-W@q4C}Mc-qi77i-&VzM{C27xQr@T5ngA9}(3p;)*~$WAbP6MhN!z2#OkN#LUsIS?Aw?f--giv_(bQ5|ss z^>~UW6g<`>xHCL#VixLU^l08PTIg{S@QJoC-KE=}34>5ou?$N^iXH8Hkbrw;uAbM+ zleau6J>2_YnE8Dzug3nu;4Rmt+dTNjrl({gJy#&;!a)0(mYw`yOSxCJG$B{w1$x`c z#=8-3b0sA+9$64FZgoAQsu=k~OuKvqsTyV%Q9ySvn#w_`5%*^$@bO;8Fw z)JsunQXqP7V3=>dgz(+L_FK)W4ALiTOPoDvUxtJN1TDrL9h>6A30XKy&RIfPjFTt- zFM01`b&-yKRT_|G%2CmZ%k(YBCy&Z~pKC#t_mG>SqX@j+cJD8to%GPUXgJ?Ce(c@khPK zlNXjd+84{hP2XMht0u<*&C#}6xt>$&Z%(eNI5vWC6PDMRT8 zReyE(H0&4PQ zVz4K4((Avoyus1j@WgP(YBD=Yu_~7#CbdQydpDHNKjiJXfbMY808Maa0n=*ZXGmn|zXF z#l0^UNGiN4sK07vg%LyRie2(-z@A_5=YHANemR~tTK5LinBlQKfgeM6m7PvB#Hr$- zNy#`q4Eu={GAI{gt`fRzqlpV~vHmyqZzf9{BB~aHWY#m>?@qz1(`Sb5n0k;DJU{;d zQd_KvVW@QouA89c+LdnncquQ~&Ds0YyRIh|H=ozpqt#xg@&kIm22S4Wu8j-lc>$sK zG7z(9U(mc!(Qeo}S&f%bx! zN>iYXKH)O?`9O|Fz%b`i{iOOy6!8-rSqu%8hJ>4nNZGOV@%gAAbg5;jqkdq`LDl2b zR?$^)f|u1!U0v0+ScD%*9yA%c|7_uWaWeIPm*2pXv~Pu#z|la(i3pLD z9LJ!P8f3(Ukd;2}WB&@5{Ib4%&} zylfZWAIovf^Sfps@Mhp12y|~6L<9+0CWlQzbSB4gaVoWrgiI=f4jQBAN;&X^yO{pf zb{~uDx%N`)cdJTELn*yqU&t*MtMdzs`xkf@s`ME5hLcCG@s=pmd7tRZ0|+UDw?uDdf_KU@_>Brp;%jBnjzD za(!B}9Qv`p)EW;3-5z#lNB-U)%QTrU*SOmfy!`#C=Cc1Y8iB*RB0>3GQL)5&IxuJ51~BcodS>f_$*&tbiK$ zzEY-M)=Od3vu(*6_xWD7rl$=(*GRbLzU)|&HA+phLcs0BWUb2Vhi!L({hwVMYk{PR2;8zy& zNg_~i4;;85q@#pB+1-x&^+aOPkU{E_ED}V)m+I4|4WBKVzpkJ}Ao)7JueaBGsd_Tu zDCC7cuTR&*v{m0oR+}9PlBiYs8;`r82$Q-4p;n$@`~|LhQKw5)X=R)FJ@4uf?=tN= zse$RfsoL&A6iiyN>(UucWwhg6;`x3&xDzYLaCfUSu4e@TJt5`tfeXZm$>hhVw>>wfZh>Z>wPlZGE?`Dan!6esNa*G)QOZOj?m@J;262{SqTKZnpeGU#u`x(B_Nym zx+kpTPk{KgT*46%eZXVV_rtHv2YvZFqgZ>t?y2>~)95$u_1Uhp<3&eDq5I9g<5eG~ z)-^t>X%xAtM^LJ+hqTLz4QH8yuG1L1<8M%?MWkv%p9f*vmOTuWJ6-O>yuk7!BKGf+ z=ARDEC-VcnyNN88f6MkNA=`s~3g~=)d*0hkR7{z#&{7dA@TAx8CmH0-F zR);hJWegQRZNZuq`hZpI`~G_GVl2XwVOyo!ar#or;hO6$n|qSnca^yoQm+!~qN7F@wrwvhBQe zgkZ-+bW*6M&E*2jVYf;qnP%&hxoawH$~;E!%}sb`uSjIaXo;b zn~A&hLezstd$9ByIsMS!&7;|5ZG4_5>|hYD{xB$i*-OkxX`}apN4~p7qk@RO!lM3{ zh?{~njWas`Xk5Kf;eb(0Hh5iE|oQnK58t~6~J zV0@%e=68$@u~MZDF~u2S{&;UiDW$}og>4ttQU;nIt-c>~FFB zcWHC>?zUlY4#ZkfUk|x@H0cmnbVGg`;5>#?3D0b%e|K@aPNmKLUT(N0tfZ9y4N3yh z`SxVRZE~?wBz{yJUfa)~LPLFhUmvWtRUnG+xfk9H*&ppT3*x5rg1S2!IxBS)AI|rO zw7&12fw+o&z#S;|_2dkdZjQbi{H;iH3{#E4<&Q;Jru~IED>Ye7%Z$qeqVC#ryl{bV zr$Tu5@DBN}T?DcOV7=Ln8_b}+o>I)*20a68Xs1aQeXZY5tf2_zO{EbJ$OR`L-Ph_Q zaYSC*>8_UJ;$`3IX`qFCxR@QpxMz$NR?c%|PoMd4g@yBbPg^DgBv@lew;CWE#VQ?+ zXN~`Xln8z>1IMu(|GLGVVvv8JBaRh7E>0n-`)dC%jTSUjizzI{Sm6i!5E}nLIM})w zS^&O5^S36>+s&X)V@v!8PPj#dhS<&AENuTZTpR3{VAZHUE%y)M?81SPFJx^MwV;Cn zzYb!6$y6={NVERKQ2)yd2j@$_ahFY>>Kb7frE}$y{~pDucrMNi=5f>v+*kkTW1cx_ zob%Y+MU|%_cs1no=y>n%<269UbDZ3FJ<}%~wGG zH@wfVVA90uvgQ3~m%B=J=?nXChG!c~iN&5~>*2@>9WG%@LX$`i-`+S|gX-N#j-f(1gL4+;^Zk}`pq^*s z*CLVyHRp*MM)I@mw-PJf`o%2O`a0oWgNwWe$>AlEef1B zQg}^-OQX`$Np4aj$~7s!bbigq`hLl=#98frs;2T1sP|>hb4T0gy~p&~bNVjNh9kmY z%a{6YksHeMdVPZWdg2(3yU?Z8neBke;JR`ni^Q9Ijn=eEp^m82Z|FsY2Vzy6uc+KEyg4%|g@X%qUrZjK&^%urUT0pPtchPGf$01U z57t5;sb$D6`b^oh@{M>tmB-Uj4j~+!?EHQ8w8TW9%BCf-{o!tvD*l)6#U%Sd1= zi1Ct#OgNuumRagw+4ykQv2_{KNQW?|UPTf!{!|LR(a~nM(br zmM!>rGYaE0avyD~>uXGs1$gQBT#PU}y^|sDi{eENhv=DicK0#%bq=`ex{`+X@}(pa z?-1NtLL)Ytp3vP619KSnt1>hVE1nGQ5x$n~Ikd-q^W8zu4cvfN3#e7usFXF=!a+fa zNJ$B7M{lDq{jP6CMlCxHXpe(&>@3rG7nj%$>$y#J!gGI|H@M&o7j<8n*~G0Zq=l0bncP@09>Q#gEUq=dgNPUFu(zLQ3lH03qK#VA*~GY`_eN1_ z9%feYJgSWv2dhVng+ofBKYO1NCid2J$?kgaoCnNsGjC3I#A(!)<4x*`7fj*#k9@Z{ zq*>37c&NrEx=2%fRDcZhCqSt3E1?uf)tlN)=&31(O$9ztK-6scyN+4NYHX}be53*r z_mQ8UCKeS>uen!;WOB7HBbK~-88P$j3HL8kT-$ir(M$a3x$v6LQUeq#yM&@?uxi+2 zuF4Uo79xK%7dDjNHA1Zu;VHht$zxHQEpNOru`Utslw^6ELypleRjQ_N4rp<5WE>x0 zqmnkJmv*w@>@q{Oq7=s@kYEzzFmz$D`0k&ub#pgaRt)+|6pV*Yy7RH{sK&5==loe$ zKxP`W)c?1pTfcE^*CBf}2JcD!BX&{2KsASb>hh8Z#u|r;N@}AUv3VwtTDB{`Y8aoU zE}o>(FM}l@4HR(?o-jLWi+V&bW6|FTH2}_D<4v;ZnS+2n#VNp$G zdvaHzWl$$6SX;D5mTLW)mlILMQhz93c4qLb2qn5*_lEH}W5V+X$l{#44Vr($kA{Rr z_OXM$lPT!l_Meb>V_LRdP{X!DG*0F`c9S*Q;499rNkmXUukV1DaLQ_66DN3^UQ`j} zEL^1#zx$QNKp!OuAVaY?yKfOu52W&txVVQsq~go?xg^n+W^vT}(Yk~sgKhg*y06dC z1*PIfLumN+V=ybmvxqtP=X&09<&8Qvyv$v!?5aKwys92Cbi{&h*elmv(X2Kvr(d5r z4O~LhUU&YWIpF-I6CJ0-OCrHzVzk7=5w@BO3$e93D} ze{HMEN)3g;+rprBb{f&ZV0}Gi96B8BB)nGjh}lx>u&bcOd^?ST3jFr2spUpmFQ^Nv zES@6QS%3cI9h0%@PUBKa#++PRQpgY-8{2+uBO{&dp@3tOg0*h{k1K2-UHBW^-BUimOTkT}HX0z(*x$n2w`H!r5 zf_Nl86&q2TjY35u3{ED*ayWFXDX=4yU&w#`orK1HE);)mhIP|-H-o3mD=zVVtbyX1 zHd}7VLy6j_)SbqOz?ShaG=TMdZNa-dSFIK?`*U}Rr<1wROV}yCEOxB95|Z6z_Uw2@ z5!hy__@D~`Dk$dh*U^z_TD!S&rKTj^Q8uZ}ppa;FF^+}v&u;-Eb0rbO+UQkf^57cI_ov$gedm% z*7Bbk{jXxxw$~q=me3XewKB@u=<0v*HdPyb z)qD1?pPr$O5Z91Ha$lFfq133ZMG<@5$&xdg>7&KB%QR4Yd_{Zk1cgd%WYNtP%`^K^ zvGhUc5$L3i)lVcN8s;C+Be|282=%38~|FIYqP0-bkv{k1Cmod)K~v& zW(wLk0wZiZh5HuZ)DnNGl$Z)A2~m4qbTsk3T=sma`LV<*{%^qkU=l>?yRD{UIPOnJ zB_;p~1+n_FI78^R>F>DqeW8!ynDHOZ{0!o+9dA{g4X_1?Uy5WP5?!9|hY~4Ao^DS} z=1Nt0UspXu#PjlyE>9t?P2btqXn*F}3jev;57!3xCE7qpc$AP`2xa1Q0JYwOGpS`QySzJV2ToX&znVoQtc#d*>o&}JXOafo$qaNr`9I( zoEqa(%-bM4nD_HtveP)X`g;OgGwSxxd~nIO&vN$O!=7SNabdKflf@ zQ#1`gujsV^{2oNWo{9NPv3$aK;T)P7_}k+Fq5F0?TX$8XTk@M z$A7;{I#Z&^IDUy%YBiClk*B01O>8*|Y|E!iX8?^@*Xwb|ZDwYP@80>a4Xe@V)dJ9; zs^fe&a^0ib;J7Rq_B;L2CKLSk&O_G#l>=*1^BonN*=b*{`|l(`CBjs~`oFpZtmpJk z2hv}<6|H(X2>Rn$+<&SadqUu+>n&6~W3m>{`eO+hPv$FbPT+igeJP5ln3x0G;oB)U@ z6M#_s(qyY6EA|F@16*7|woNy#6*}3(Vf35=q{yR2ll79}3D?7BU=c9$9IpV+i9D@U zZ;ov7`~r-@Wa@|bo!ca*uqQ>@^K&S%=rl96zoOc7i6UV)-0fx{;xOnfLiG|ZhqXDW z$vFSL_Tyy_;u#f9naAG;1)<;V%{k92z`i)vmfG+Fa1^=#2if7cH|!2j%M-0a0tY`e z3X08iO)mhZ@~^Js~j} zgHQ5>!Rl=;HWTeHImDz@&PUVh4g>fH*eq8!nW-xTzFWbVFKovJ>i{R~xgXqk1iZXU z{uv0x7cYs(yUOP6&l7PC11(u;n9CH*_yXH3YpW!dfPdMLb@LX~2S?9z zG;K?@Ol|CBuB<6{oYjnnN-H)O>%p-Hp3`lvO#Oa;JpH5ur}lP~X}vM^8PVtYv@Z4@ zU>iMF+r$iclmQaaW4%~D)37!jVPOSef9Op$=8#pCe97QJbNB~}yndiR!iZ;U6EB{= zO>tj}WK7ae1SRdk=u1`t@tU=eFA60~hUAv?!Ij=Y1pAf9XYON%21)Ab{s!i3of3X9 zIrV(WEVp3}D>R+nwHpGn*ZDKW`XY)}oVK3VmAEWZvE3bk?~6khc0ZrN3}fpdN$g8p zAFyg{XWlN}-zFwf=P<*D%}3V(3i}A(eK&rcIYc|^&U$8le2fUWfLs$VD&!~{o3%e- zC5~8>ufW8;AM|+a#me;03|7T5FOc@=VOm>P+GPNo=iTWM)zH_KFNZ1O4Fbv+zg zq91K=AF%*^d2s`Zz)h&t7VgKAbQ{}ylI#s%H0jHELl}`ytt$*`!i`@EL7!IKeQ?1 z7!H#?Lz#k((&=}%vQO!E4%f+^S{vnP<&=8M8TBDMGYSZE^3nR4C<( z%o;qu7@iEQqV`kQ`cdrDf=ww3F(`8D{|0FRQn`}`&xzsU21@*iJm(tOTAS;{*C`FN zY!kCYY@6ODd4ndeooG%v4ez@pv*{WmNm={!&j&=H+fP>mgcWO%E<7lo)%>$((?H5? zCe5V`*%)O97b%DfoEiDkbOhdCoVsm8&u){|b%$y{x&57zte{VMo&F^a^KhWF?_vQKZw=Ir^pb(yzM$<~xFx~PKB zEvZ`TK4U72BHU*2Rp2yvbEwXr9*YG+mWlN^OlVN}@peJ4Xe07f&fZ*t#)b*UfGP4F zKhv%HWxFrZCi4|;rAuGSZlkl~RU9gaKMeuH)8$*ST)N@OVzWWPWhYmDg)<+Q5V7RB z^tZvl$$hG=Re%PRJykYgqkl(|qG`ES5;lHhcN&4~Mj`3$3ExLTgYJ``5sz%$&#*c* zxW>j!t-kqV)3ip>^>Q7F_3S`K40$5^cWsfOf)uu5H$j%6X4$@(pG)?<{YC+oaCAif zwBimin*BKV$7>REV;k0i%vathZ?#FGM>f&XG`fBT+i);2cvrvndh;-a9#=8EauAe} zbMLjY^ta+C-@p`? zKMRY)6i%3vQ#sp@p2NawnliN`Y)3fmV&4Q~C5CnoWLe7f6epG#!ND%Tb0gsJQK52d zf^uY0$~1H2IMl0L2h|kWZ1&xjq49x9ldJEPSBp*rbd}@N>o><@wPh%l^TtGAd8X%0 z;bdlEQL5(*CVNDa4hcN;hfo6o&#(5Ib6)0kkM{NtRc;lKr#KiHQ45y~BoUb#hxBJo z?`_vwVKfPPTtn7-StVd_GHWK5i8(>{(y#*laJw<54_@{rDuN?EZU9)JN6tUwn1}d1 z?-5L43AtXI&3O>ZhEEC%&Pv*h>U0!N`TLJ>k-L5cobQW@Mkv5K`&&an%EQisUYQ(& zmems={R5Esd{}n9u7@a}y8`tN!I{Omh0DlFN$Iqq7J8IcxiYPtL5i_?YOA@fS?}Dr zE0-L$dJ7->3&+~necPq=-BTMGc3fI!{Syw{bt)JWrbn8xAI4Y@X$K8?$G(P`znv`zNgQVP zdRmroDHYQuEZ^?iq#ITUOArMlOGJIOv?0m^AS)Kh9kHZb!c1*XxYe4Rrq#TOK}p8c z(>`F54cX%cbP;3MbL+ZWp+k6hc6Nl#7e;#i1PyiSf2U-sMT_kuZ|m&bCoh77q3F6pQOW^J;4 zS0MGDLXU8D8%`e?yM-_jim$z=jXoKb5XF5ROE#EwKgdqCgQt|Z9^>2?ZF)-7xN2C? zwF>nGcPZ%Z&DdDRqL|yhIx5GijCRMDrt>qGm^&LJ2;BtN zl@cNnfQc*pg)F^&#)10pLCru*yhU~Tn#^R!mDw@bwQ&>UB-r&%%c2K8loVj+il1iO zLy7jT1j7e6@N(^ttBO{qdZv0@qfMJ@Y#!Ddy?1`J6M_tfZtdiCFm#V-D$D zl~C6y8+d|DB>)tg7(o!Ve4ve$u!2*$hIvOPb1`!*>C=f^!B_fj)AuVC&V4E8bp zj0AP0fL!L~DRT#Gn(RT45q|%t5Je6J7Ke!0QjagbrkOBhyfGFn64~hVA1)ZQ_2e>xgY|6a=cWVfTw{A%xF{p8_ z<(X;o>PmTs2y;gPQvK#x^^ntFE=AJdqiUZcua;NBA^PXh1$N&#mXpRr{kmkjNq)#31lna9(ACjkMKZbPpl`@oDBx*kW;NkI``A&kC1d|dUP?;PWXam; z$~(oET6o|FJK*s*d6-l5JU}kG2n&!rcaskn@BR z0Ms`?gb*Q1@wC*=;y7jPz^H(y^Nw$$%E|U7{pP#eY)w}-A=byhFc4_`k5CB4|LEAw z(%L*uI71c$`{I`%_jS77Ef-<=uOUXGgzEokWmG`+b2MQ#2}=x?L4kn{ZbpBa(j7x6 zaygq2GvRUpJVB<(;<1>9;M#5k1(@jK`s$KIzji-=D?i>~@ zF-;4qforE=q0@@wqxWNS7!s!JcVYq5AS5L7$-zEL7h&QFbqQIPy&7|=6|)1pICWPRrSOtMvs`=hX3)>NKJFA=ROYS+yo9_{8&HC$j( zkD&w&LjrG3m%`cFGpVhTYdZ#yRm)7Ca%U>`v9xDqvm-pOZYBg*8l*J#2n|xT?_vxq zWGH-zoN=rr$N#K&nZ2sM1>i@HnZM;LV1Sm$b1^I>9`_)I4*7xFE#iM-x;1vSV^A;g zp#c*I{rFt@U)=r{VALZ7bX)$lMFBNof^F{041D~vL45v)iq314FdH(GL{#i0gf9>b zdF#?>!$T@Xu-b5fo@2=9%E$$pC>IqPHaZ*qWCqMh&8rGGt2By3Tye(#E*^oPuFHU z0*&zwXZGJ2wVNkh3h5BtbVG0G9Ga|LQ{V^%{wyyMTkv3ggoP;4-I?N_xhuyI*H2Pk z=@~CsC-@SnWb+002hri<<7(UtFUihnzyz6 zJ}Swzz3($@`Xm94L}+0?BDY914VKA}jehp+W&@`TMr3g$m66pm2EJai-U@YZ5go*) zUZn4{i%~lfu_Imu7geD$=bu^A6ma7zhPxrdkZe*dmqnZPcK7O^YizMk-%x*e1z+D` zc?M5)PvLtb>C;Q_~b0W2mE%2t+BV3 zKEP?WZa5Um-#Mwf15=C?#4hV_I$3jxe-;B__pKx;pHtL)5WRxKJkeONv`F?X8J#wD z#l`?jp>7OnC4nfY!Dg|!+m;U+RPo)Y6%Owqg&*Su>WdK~<@kj29)qdmRNh^)W1q|l zj8cfs*T8@!|K~{22sabsyHjon)YrxFdf3D=QpgP_;o13YhcD)xb(>XTX&4WSC}yrHPFj3~YMfN1?lx##rXX`~2YhUeOp7Sb(q{ zh7#7hlsqMuJrnCZ%pDL#Ba0JscU)Gb8Ov+JRFXFa2|W_{K;U<@5(!I*cqy7b)?!5%GTLGvBF^AuaT4AU`H3WyrC4wiqT? zzKRj&SGIvo+xBy}OH`IV;@~F2XWD&eb-~BOL;D~3CJ75LHvI+zgT}KzmFF8}b@3cl zC68f72-+?TT$}n%1HB)Eb`;~n6Dc&|Gm%GtvK*7)M;E%k4%kQ52+Ip!1$aAdFsLss zTTIU8=Bu=knXN$z$zHcZxe6w4Lk5VL3uA3kIj&!ZxZqjcU8){B8Si70`n_idQ0$UJM{0p(%0w&=OLph2NJ+MBl+f z6(-r@0xc6#(5qNQWi#Yk-p-@xI?kJ)5yzt)9wYr$WktNk03`R`5>*aX^w{jR{#l$I9_^fgX&R zEeEXYKcK6&Vr#d4#V-A##CEr*VJf&_k1!y?ck)&~kDFZhPO-3BbYAWhIZb+_6ZLW5_ zykSP>k=8p2gQA3$r0HF2*3{~h<79Zc3iiJZ1pJ&~SPd;Y&ez)7dVnHnI_ z+s`m_EJ8OgrDF{n$hqZaMn*FwX36`0GVgdJ&p8rKnf)y-v()CpF+ma_)EQUS<`S|R zqd$e@R0`4Naeac?Mt8HZWLPYnNb&d`r$YS$Arpf=%2f6tDR%s46r=m_i6x54GOK=I zPa)(m3Bc`zgDL;-l1LFy%l2Ue=szsz5khPL0-tI&Fa09V zh*m;S0|xAr1zk^h27vkI2GkUz43_W5Uq3K)5nyk1+)p>_x9-4ARQ9C;;}+W7@O@8i zTKA9z6dFn(36~TW747BKo33F){}iQ#p?U}Yc70e7I}8|K4K1I~+b#-?24Yx@2a%S5 zUMGDsnw%nR5#L;M-AGoe(A4NN{p|;ukdu?MQd+MqKmsUpB3&pqmhQ zE@!ivr^^L2FbquaZ&*i_ZRZJq>ZMt#RzU+8>U|wr{*t(7yR*Qe4biT{MEA?t?~L2i3X3=t&oOMaO3znP z_y)dC9x$-KJO>qEoGJ=D8uM=3r~fi~xZDENIaDAGcw4hPHrlSy*eusyRW0ouBu>HE zSgkZxAWdx>16tiR0CI=RHR{ON*;N&I&+6qU$Ws@*ueCb>1#`N=O8scAEVbTtZCOC@ zyx9kX1$^|=MT_8#W9B%s6*FUsdW)mUMEmIa%i~QQL)-+n<^0d1bo3TJQNwlMTtW7k z;Ef+;kqK~&qSI_}h!wH(9tc}cdd>RFyJagzyIo3B(vu57vg*Twi)Njq)oHC?s5TJ2 z01BA<8^tuHZr0r+{`Z#~pJm|e!P!~kifvAK*ySj!&5ZnPh`bDhZ+vSbJ=%TMp zrre;mTx(7Iil;ho+T@)8=g&=Z$x=L^fO!D9y5V5AJ!J6I>9^~fW~23y%~EZj+U{*y=Z24WA0YH?SMT(4f7hNxR5O)2)f3$N5QeIN0L8!+ZExfU z!no>wly%}^4maS2tN#`%_y&u&#cXg)5m;{ZeL2tAN!YBWi_b2AAoVa*zXy;l*FPy` zD!bl1JkOl=N3Rf7V#BSk9JX-Wp)LSh`UKq7tJfAIFw|IYiPa9lr^A8{z+~Ic@7mn{ zHm(OAm9XnXeUEDMN0I7y_jC9DZY<^o+*${qP#?g2m#joepQ1R8eA@~ol$d`6bSlkS zzZcUt_8C^3?0euGh+CZSC3&#+QG1kh_q-9CzHCUUo==OSE?)CR=QCdzi&P~rjm>5x z+)*(!1RL3W*Mp?GfLzPRTK+ex--0XyW%*$gM;y; z^h?-h6RZmS6Jkzo5+gS;-1}Iv&4RCgRsPIOUE#Yd8stm~@vGmDrnA~m8rM7IYGcxC z8pA*)JOitMK1a{{HhH1h!6*}<6Z-pPys(R~KN>EZ`6jl_ieiX%_Zx87<96l&j9TOp zIJ@$9=13|Q=w36pE8qxlZ+F%Y7K$>RHJE`!z%%DHDp>RQaAcGJ1!S}3{gH7&z~L)w zaj*xIX!T_b3^+Cv7fRqE^&v|!K5=tUh(b!2WfGT6dGsPBVg*EDryT5)!OdZvZ>{p2 zl-H4zF=^%^3H!nPHqYmn08U@gUcmWCQYd6l0XF~IyL$bt?m)<)4^i;M3lM07kec0C zY?j#!0z#*V_97WOFYD4%HACQWDfWZwIrP;B05C%nGPqZOD2O6Dn?8P~j`Xk{ayxs} zKAT3c>MDm=+*92JpC3s~sP#0fqS&wxC5OdjXl}*_zykiQ&E1gA!r(DX38RJui+aJX zGcHfA1>nFCr74-g81mJ4VwCd?_Xv?wtU0bJvK+TCs?a4~8ZwjXDv;P5kBU;4Mbo_9 zDq9eXSZ7OojvaXUy5>do1e_ zm^FWleF7DtT092g(X`{~L#pymwY=UPnr8@+XR}^$QccgVA$K-{tZp1krd1zqf4nJQ z;9QHmeL=wI`AQ^b?f9yDN-1&UJSXOJ?U<4OV-@gzFz*7Kwe}-$cE=_&>KAb_-TFSe z)xzK^w-Y^gJK%J<9_PL2-KEy}QTX?GO*U#DJCWel=q6<>Kt6rRagi&~u-?ha=@p3g z@`~wrFD67lpIJ8Mr71`bMKpPW&sii*XAT=f*W%oW9ygport^bGgZMqvXtPrO%GJ-% z@tTM2JqRdQI%-z$!J9n+YkyO;Y-@(_K2D6CIrXt3VVr}Wu`G9C)dl;ed4h1`vSxPJ zp7zs-<9^gO{LBa#th=&2G^dV!#DejgliZtrpA2g^d;Pw}%QCd|@@Q#84yJ|TAks0C zB7UsNbA*G3I?+%BHC$pDzch8DcXZa>s9#VOIU2@Dv|<*gm02Jb#Y=xX6gvFbqL$;mt?&-0+ln}Zb6i<-mOHCZ_3Avgd3oNfJUi)Msh>XRLU)I! zyECnyO3ZhhD+E$EwId88vm9(9Y|tUGLvbG`BRcW==S_{Yr$DC2vYB2)am9@&ATdb% zpsU)iWn`Nfa-Ydg_kk_6sYjg6mNUtDV2x7jH&Yq{cyu_6@K#^Z4Ks%bZZ{I&erH=g zUG_IM{B&B>+i;HI?^E$Y^}=Up(P;A73QThC-K{B%TDA=f`h{Yb&CfCJ{$X(Th9a=L zpL5Jh`t$c|A9JG&nN+#_51Eq1U?>t5vUwgu!@Pd)B4P00*E_RK@JK`!vtG=U#Exe2 zGG?hpWpB9r=;yY$5HE(KAYNsb*qf^V6Z=tukBF;~^->B3VUo(U$vRj5RLar!IrTT- z)xC7H?F9COzFM0VwU(_AT!`AfoD(_Z_PqXZ^D(3#ePZ))VR&jc1u0}++S|N*WFPd# zgCC%V2!7QBo~JeX4)45-@A;twmS-MT^X2R+DP>OslRu(Jhb>pQ`xdImE+P1$MWxr> zcHnVCf?sD~P-&u2WuiWrg+|Zg!+H5!nS^wtrQ3vqkLBD}f^5VNUN{)y3155%%Uyh1kb9&XEa zoWX-S8UV}`OtCsuZCj5hS~de<%i$AKbJNu2z$mgLE6*G%Mzc8=EOi&Db}Z<)q$kJ2 z*4nT7acxdbE+LGeV{}rsDrW?Gu&zW3uKG-2i~Eq*Ts(Sh-1UolymE9XJDn>S;YL0^LimO zb09KIZ%}bWIuz<>vf#57Wc5{4@*|Kl7F{3N>CyR}7xNwiPu7wi2E|d@36^Dk98Meo z7h6-^{42-{n}m#?b7&v{jlGaGi)OVjQgvdld;C%=xO6LGyf`t*g*|>V&1`)D!Db+k z0ymWbT|OY@7lNxuL^dom%eCRg9f-h+=kB(J3d3Q*#*e4jzNuj3S{!ejfLsV1WECuv zc6xQjLn6&M{DjCyNqprFYrAh#{R3N zB3Vo;ig4;IMZrU?mQd(yT=3yi2jy&XETc*y!V~4ZwHa=GhTmVs4t~{I5ycq>>NM%W zBHHjt3SBx*;X%jd59A1VdyL9qS*M;XR3MrvF5mN)om=1wZGEqT^+ujl*g^M6% z*L9Jim%(CT{kq5X=t$F!2X|7YUdGU-It*R)dEUT~j$RGvbC1_GtF;N$I1|zZi>QXk zl06-FcaYzF#LNiHJ(T>wTwgT?CH!qr=-(tsUh*tzs@ZNhdek_(i?t8N#|RUCf9#mo zCgd{U3?XF;`_cB=wbpR&^NNHVraqFQIqr9djmi3gAS6~iiN(4jGNj76-u&eyb7vlX zVM&x;h!WyL3<{S@P_60qL~oSV@MZrR~v#)F9rqkZfxCxzc=yfr7y_I?hz zzjznjui*44DW?H=GaVlN1A5=#d;c@pHi$ew!QIucg~uC_Ukjt#dqQc;^zLO~reLaa zvn9l&7$O&=o6;a+I8=C6Dzmoa1Lt?4lyS9@i=U2#q{@5JB`*L59$(;t#aAKm-;EI@ zK5)oHvTwf=O)wy~eZVgF#Se)b64|PgtJ$!kHq%^PEa*0bd^FyEgQ}(m3 zjFN_*)=cj!w)~1abm4is%27I+e>pNyEl5Q&JMuP+aoExC1-2cNS!eM)5WxPvuj#k& zqhuWd>Gx2gDi4_TpZl$mYf2q>K($JR2UN8fG0%AwAJxAOoPS{^ z#AQ@waxTiBAkp9kmh5T)D&2|lpma&_ssE`E7m)!+1+7r|GxA0%0kEJ3SC z3Q5UGeuUab)MYOo+8=ePe}D)eoJ5qQ`Z*ioqQc}$+hTKze4)Al)MhdoLs9j#FTegf zo1`oRJU0ySe&PFGS0>k&StXyNU(L&EnZ}!oP8>RNrS+eG^G}4(^iVQvG-nq-GPLj? z`6R{vQJT<@K13ol>PR?B6zdXGUy`zJ7WlZ9MY&I-GHG4-4Hy<`dw-k%RqDL|w%D7W z0~rv08t?+~)xRNO(O6YeSjsb!vf1I&1S|iqF3F&Q$d&*;D~hd#y3J~>KtFbtF$yn- z1y*>q-UuZcpj-y1B8U%~SDVSo`Z^WWfcWqS10CpKshokdymay%{_;wLbk9Jw z{wD#oE1rWaCubeMZReZFqXvp>Z2*Xq8q^s5AJ*RTFRJbh9~Bs-TR?g!L0Y;yr39oy znxVUqP6_D_5kcuL0qO4UEg-@QU433&A8whcV6o{~Z9J0>EpLz}dLqLt)KJ zJVPno$R{JQ8cSUvI2t+5p{mdqkJ=2km0egh+uaT(p23J4aPv6_oKATotV_N$TggwQ z*I231f4b2XEPd!f2t-G}5s;qEk6;!d8#}qUlbSOTj6U5LH-n9f7n#262R!gT49bSt8t7Me{aLqxNmTEPl4 zSwEOprtM@BUb=`MtooeP`SXj%oR)oI7I%(WT`db_~M*k}RSX?(UAU0C)7HhFci|1zGiaL(%$f$9w zH>5-9Z2kx2=(%_%CRzqF31>cv03_t^JZlz9!9H2%Zs6(3e@2UW4LF@^=sF=S;?#|V zNlGr5Y(gToWYYKxh0c(8(#wfhjfh95)w-?~i>r5fT3bE9hACqW__B{w%4gyUrL-ID zSD3j4G61&&7KDYM``pz)fZ17$V&i!vJ?CW_=w3|f>e_iOLp$R1ds>$=*ePv zXVl0){?%EAPpc`c27}fT3+aOg{g8xqLSkQ?t(7E2(t)0#M*OLX_LY=*AkVIuK+MX? z<81c(a$7~`es^^gI)LxFHSwH^OOcGP)-l9b)NPw|=6=O}XkLRbi~SW&C=RWrZH3~x zSaYd5y}M+$zF1Vzs$*GX5y^v7127|8%`0 zWto)Qn%3Zl>p*?)z@vtifm`wsG{Q=zk&SOPNqPwkikYZx6SnyG$b}%n8?*VY?`|0`7;jWh(p{ zgv|O-SU$!^7l{o3+e%%SJnh|$pxXzfHKWzB-xup_^zfh5YoBf}cPDUAGw79SFQ*W?4zcFX6UMk$`Do_)@tCg<=Ww}WG{IPuvy|P2T_TT}XY~cIAG-lgwW8ywEp_~HmmQ&9Wz1^uW7>S=%o2#Nx4~Mhrm8?S z^z~CCJcej0Gu5LRE>J+oVIekAYjLU6eg)QxMPiALLiWQQHhN&3FyCNnkcboLI;nbj z^9b^#22{DbVR%^2Zl$eYIvO$z1mHYk+yHv#4C#%Dys1fIJ(PD3n= zconRO*I+bQ3mHs4yqb@dPIzf5o^znKv0Wl8B~dGgffbhuD)`B1{;zm3qmDB* zNHq}sAE`iqcw-wh)pns+UQQ7A+$KJj66nr#JW4A+n25AfT?2sU7F~m=p2yk;E~0@^ z#W`#r7#W>e9OlfM=)9@;OoIv|n!p@}n&gNEp1`W@Fa782AKt-P4=5YTwqVn4fs?N0 ze>L2fk78;17u(~E#ZXxD|90*GCm%?S%ihB&6gog}^qklKmIjwf%nw+2GS*OR9^gy@ zGoV3OQW^}{;9{h6QsCgZm(l(W_Y;~#0v4pI<;Z&iY!|l%=T&$+b=%<8lmhtfs2#hx zDB$}Eyod8IZMd_4!G1q$1FT+`*`e967Hqf83wC=OQ#o4!*oYoH@ZBa}OP623cF;Dk z+YyJ5IzM=In*y(HhnC8T%D{HFaPq~Ert}his8v#*rR>Wy2p$&F907IE^eTtVoCG*C zconC~pPfH7EPDrz+Brh3yx;BN?cw7 z-~+P!v9^}0Y4an~;p02jGN{OVuUi5@hdAX?-vzackLk4F808AkHg3VrBtAR7x6A3T z1L;ANHI^z106{_j!$>t3l(awfO)pUj=r+GvO%=XY63?U%aQ(hwcLk{1PyB_V&jXjC z?Ea6wUO=p94v2I2sS)7%ct0v~XWO*Bsem!HTPVYlNckT#^8FF$PtSqAVGsn3;HodB zy*Awj3`0ZxeixP?^Z!go!A}Ys0j%;CJf8fo-v4ZY2LPRexmzB*XtyKjbNiK&bzkPf z0}<$rfK|W-?h-Nw*%EP}q>=+xr}KS9T{|ab$}3_X9mI~gK+?`tgk zNk#ZFX*fr?nXg0jdj+?OMWDn7^QZHTC*OS8=JZ`+W|+re*!(QhG!lxOfal3}VOw(vW6T8d~k8~mX*+WhhBOO);3wttUI@Is^(z&KcZ z>rX`4VwZvcYbC=kR^Wgk^AXThgBjd5%#SzFPKivvzx(t)Enx0^G(J87s5pb@<4t}N zi{5N~kwLTjO88$iZ2)We!zw`-l{!b5Jfb#(_`2O>;xG2krzB}+0iIW`p!k%GSLKmA} zVbd)D;`0d;YXRqIUMwmsywbd1nAx)8zBB?i%n0XCc!yyKNxq=CUwaU_80Ktc(W{?lr0`rvSgHpX%Nx)V*TwIO zHqWAkf!D?FZY$dcltrr`%*$q|`N!?oRyY9!D5(RY9g-204$kZtONp~XkI^2ltQV7) z#Tq5Mfd+5eKXQN=u!6%s2(a#`2Z??ZXp*Spzul7NUW|kzQ@g1CvgKe9eWHWpA9==^CZ$nje@KtE_|2kI zJsn)ykA6$$ce6q9HHgm{ZsRy|;M}fZ6JoQ8(}rs0<9dlZKdk+Gw0zGs<>4dlOvh&C z3Dy$cGJ+S;52L{?R37=a^A~1&l!IkJx-ly*i-^kl{^xRGd@KerM|b@OsB+GsgaX?j z0B43Xqn1u5pPybRc><3Gff#eTVo54wz82iIyBFiH$ed59R{8g`w!}ZL--2=LMW5vu z)Bw0!uOxA@CJ7@zrtGi(GRhJwXTVb3MzhMyYZ|hSeC((BG|ba9c{a{JUJtwj%d1HF zGd>pECa70{XS@78dQ4<`(J(d*Qn|8Ls596oaZvtaP~h~G5TK?^3~PNS28fUU9Ipu4 zuVC=zhgo=Dj7T1(nx>7iy8*wOdxR|)p0OtpnaEwb%jph4R|q9z&w(#auEt`7S^-aq zy@wCVs8vM0`?TJx-=>yQ@ZI|+>w()eYbIa3W#Y^(k7#R zi7;%+;{tfkx_=>ZgbWjbF~az)fY0h~#>O#H*-0DfD#aXyy_OnsvgHhvNNDp2(6;coTg ztv-SxO}+@Fc@_O%`H7i_-ho57@@%!4n7FFt=F>l2K95Q=`|r=r*R@x}_>c8@~5phkU$J zFlohEU*BFY;gB-fVWN{C12TP+KA%g>!Z^Ln=x58HNd=ztAMm8FrrX_2yRUM5 zY}a@lF9EFB&_}lWNUWsKQ@RE zzQ@D3R1(}x zGcBD(+^3WD%tJZty;ETzgpf`%uoE}t-2o4YWq6HeF_rmCvXD@$03yP~;HpniPW>S@ z^J_4+XcEr>zBNF~Qzl~LL(IZ?gdNx0(@c-UeHJ2x*4Y}=zDS|Iu9pw&hvNAOijzts zg~VmacaWp|;Yo{!8)XT1Y%8vHq>hHf_i?XO#D64U)E#T9Vv~*if>O`x4r`-Wv^?y6 zJXt5&@=OBm)jRoU$IWz(cEWqloQQWu^OOa!&*q6I@SH@T%b2KG`jE%zeBDtX{lNrH ztOmU2n?v1;pNl};g)Zf-No!=j9J&pBrw}x8r)XJk+O%S4{e)iR)RuVW)k|!N;;t5f zJGo8gNOA$x45hu^qfL7^dFrr499WWLD+VX(O2@HofiuDWbd$QGW~~D+^L9ZDUT5kr zBdEI~?kLt9!~RHAocZ^`8xpFQX7n*UlBXESMWik<_?9M7${_RY zGr_`jr|aw=zp_v=o$IY@1!SJ7j!|t(`_bQH*~}fkSoCLiIBg!nzm%6H7x^?a2Tam} zh)^kP&ICc;e6-U|5hs>NIO>-Oa_a^FGn_Hdo%lVAVyOuZc~n_)yc=Naz(w>TdMYlt z85(Gmt}3}qyB)UwWb>DorHU0W+SOqPk#?-X9#uQv5>>zacjU3mn#`z$w-tI_!@<>? z-d~zs$=_}+;Ul$_$ATk5LR|Pv@#Va>S029#2c&bI9~z5)S0340>27ow?TXl)AwaKq z$(x0C5OLZ7z!7V3y!=he|TWK_qM(6DBvefl?E2(ZugoKMPl zKHR#m=7-%np50Y)NzC-_GWGq=k+_3iPE?)MfOW%V7j+apbt`Pk;e&)TEKk)M+Zs}kx7yK9Er z$;*c7vJF+tZX;(@!(67W2Tf-;*z-fnkC^T& ztIsHw4?|S*Ugc?wZ*3A_u`UPka+lCaTsND{`e1uK z<$gnrjzZ<)rW*VA%pEy0=}lVMb5@lfoRV?5`%N7#&O-Fn^R-@yURawm2s|*C+Dx9g z*Ty=LVRJ(M!+f1oFUC?LE>M;@Ny_m2XPCgtP=|! zUWM7+U9m1=(fa5TmhE@zkj)aq)*mXvE!a3zZs7wNF5@zbip0m#n$?GE=GFEOKN=T) zJ+D?*Sw{OKR*t)#jmAb>h6!3&=zPwFAY%!#ZFR@kC?&67-|T9In8}$ z3yxi!EmiDy-|d)Gtd8aluG@2JZbfYkY6MbC2jwI-Ukprk!@INM@TbvTeBndL$pJ>U z-}kunXLqpi*g-T(BsGaA<>rjEcZ=z<@5UG)&0gJqQ@g>HW4TwFCM2YXj2A}M^3@!r zJF$^En;(TOM{{gy79&3oq=kpOaSt3#9egB4lwx8ZVvDbg8v*jQ6ox2Zgh3-in9)bS zCxpR6JdCuY#0K27T1vc?;H&I)6xtQ$0Q%H6DOKcBTrmbPov41Xpl{mp#iNkahhFT$ z^F+W(_z?c&M~c#}e$pt!LyZ#4yySdvEC*^LT3S;rqDzi&{r{U}iG}0uDr^Y*ie8Ge z5dP*kLP8qj6f~Eu8a&L{Q8X&ya>RuYb9Ct4cmFyCQFX*R9;RT|Rre-bXk`8>@Pi%%u1e|Ykak809l{^M(Xj$OctbzGPxr%D+^~7MRIU{T{B2cEr{w z!no8JqQuPnTJ9&@h1XcM#e966)#0K_PfqhY&{-txcv?CemT6xjjgshIsm!#dBbtnr z5KGH^Xg%~`9&bClWd2H=aL6Lc%JHo;CQV_R2LXhm4b!WU!!Qd(kaV#sk8Jjzh1jt! z(;^!Bx|^FLfSUvh>}0@s<B8s$8uMx>DWAreMyilc@+XdnKQq^8>o>)>-=jXX7Qb7lisM5U zpiyl`gbW>c{HGRw=lm3fOYPB_+IB!S$^2rMMWku6qZ>csIifjRX&^H21^&-X!F9e9W{8Cmj|8BiY=k?E-q2R{~ zteF%MT-U>;nJBL$IyAmE$UI_0C6kE`GOEx>Zo6p_(k|vVqMA~AxapqPFRocms`Aw zXvemNY6!lVqpZ3Q`zdxI#JzgwZ&PZ|!T?c#bldS4_&E03_q2izNx{XS%}r!xol(8T z=NR%e2`ZuwwQr9f(fFOo(~vepUj)W1*+km7)oTxmImSY_i~~>ui+bkS_Kl!tmD!8& zHlEFij@hsT02@`&^#mdzFDjjD%k`no1&77FwR~&Kmn@Is?hGzRjSijx(v=36-C#|+ ziR1O6(E~{En%98a{J(_0#u$E6ImDmIWY!&(ogJz-Z&1&UCTS414QQc=C86@E&`h^q z;~jI)C#0&Ps$adQMxcBg|GPj=phU4pwWKL1o*&vmw$SwFl>V$AhnaSmS};z;U7a2_ z)ar9xe`OeU$M+ehyueb@=jVV zMnkllh>{fJAbK)H8hJ+`v?9+=gmx$d1yUX4dSk})8=bYWT_DmCf{Xt1f*YA148AA9>S)V&{0MZuJN6{(4iIG5j%brLE zLRQKn9zwR+k+b|CZ&OOgABipU`8U17eW~UTt-}?8NyCz}6AeahA@~=*~eYGB_VJne<=l z?Gl+VY-w0?IeEtzfbxhr1iKnMo_(U*5|q>vI*9v9`UClQXl13{ zGkFM0Y?~CG2GOm}^!E)S7uq+7v|2S5O8?UC@XG1$mv&roRr~TMf4xW(iX)F?%*}Sr zki}&fMA?qiC;n(6>6)PgP(a%_A&Mg@XW($X#bS{|9^o0Q7k^Z%+_%Y5ZP;N? z?xXzjqv^z#Hq*|SFXyyxOe1?(Ewm}wpcE`g8$NOR_%q-7;5Epc7%-}QoJGu22C3Z* zxBPrB>d#ZvBW1G|ioSs%{ z^b<6x;dU8ky$C_V?b415GMFjD9%3#$L`x*szrl+o{a<`-La10dsAT?N@-7=Koq_m! z9b}DalH^S9zkl{kql`&@O&6)BXhf5653;_Hlp#zo_Hp<>KA8NBT{6NdIs}3XSp&&g z`wKOe)r%?l-rDOSbdPbsk1#Y!OYItIl`3wm(*}y@1!*snoj1*;5%sfqFXPMrl*mqmVr~(#VaTFNvM_bU^Cqri2dd(~d|PUq*z} z|CKu1PXkZ?oCqbB*eI_3{BZPz8tEB^qkQO9A~%|Le56%+8t=RRio1R$#9Nv2a$`7t zX7Ju%kP2h>3JrepnJSOTj= z$^VQem4Ls|oj-}IhbO{)qy-#{^m)BiKAe8}|L0##y3B&B$%Ws1s!eV`dWLhuvljs$ z6bx!k?&OEcVhdXY16!PF^#3_W5D~c1r2@Xl|980C1c2pfq5i(}9|;v92B;y#=Sph- zaaMo@YT6|bXMwXpAH^WxxN$$j62LivW)ae0!wM8@@DuEd8mC`_VHOB=w?puiaooun zn4Lj7&>)CyDqpI9oB%qOyzu5JcA@Z6o$CRGzB7m!7X1q!Kz-9?vKAH@QxD&3C+YBJAW!sE$SRvOz$ zzR<@?K~=VOi{HI!=H}MZBKrErzsO%a$FNX2n-RQbQht{=E5qZI(&}3P)6^N;Xtz|K z3=Aj&{|{x8Un@)DCH3?ETwwupW6-eIt%Vs+y-DhyV#?0kg{AYs*&i%+e)$|u%UHPI zq#8EyCCvmN^5yzIM|DBO1;DTHy6;aobsQ;#$95hHf8}D3aP=P>`2uo&P~`5A22R`j zHxb&ps8^)Oiy$tJ&{3-EZNVF7G%PzueLxu3N7rp0`!+Of?ZJTvina>H3@&*fJ$-%W z+cfpweZl-3uunscPFvf6jC33Ls}lgfM@TntJwE8s(1mx<9*9(Cfh#lud_6~TqgKrT zZjXcaMgS>oFwrGA^8-ZjiGUuE2bjObl<-(0*o_J>)tlEPAz|@}y;R9z?h40FwJC3s zv7ReGO8p1&jm-Pws3t*Jk<~(VLGDkG_2+X88e6=boSL#*g2yct={Hs9(oYaAo-W!{ zEbvI}lz>n**OLi@%08ED(5)dAlr8T7f@Tz6v6uCsJ_}a<3eZ50An7Z;dQ#QcL|$IL zs&8_tVW2xQ5$;?)2Uz|fIBjEDv^0|}cHd`XASMuQ;L)#sI9zLMv$MHAUO74esU-sd zcQ#Vu2f=>l7xvn1;(tY!wBQ_&&wIXrXHAY95^$K3&RR|cP>ma(_VPgK=V!oaIa+%Z ziqY{nZ~6%kB0p~Cwk}w= zcIgfvpDu=xHh^k=G*i^yZ}#aqf4Enk@WmIeK5~z&xiXOD@jzTQnaOS}p{8qbSZoMp zj#fB3bq81tVM%X8z^b$o`;Yd&Yop>i`N&j$%J}a4IyneT+QFaxtYNN?)& z13Xvv>MsNfw90h3|D$cDZmPX5EGod{owMJ4|7Rj!RxcXl>S>6^uz{8mr;S=!W06&E z-r!;TTGm(aR5XTs)vzmz-{pQgo<`Oi*dVJ;vQer2U~Kq=rL~qDH20SEv61aXQF%m- z$WnfIP9Oeqj~B6}D^}q)Y5mg|<#HTb<$usjK)P_NGzvO%FD7{av!svA(wQGf7wZ>j zyE_)V;{X(!T~1Z*f>29stQb^=R~kBJ}QWL)eZMNSsn(jZqh~B6-P#0!4nu2DgpN= z=SgAu?Fx&38wXyfUPQj=gp+Be{UFFVC4{PQXDD?^K&wLcDBE*0(h#`SgiVnftU^Qe zsaymMj~j?rm+Ir6p?)hY^tPyt$072-@rCZ^NrrpNY}G^TYfU}0MbV#t_sh!}W_F(| zTR6v=Du7|I-MO zog_Vmj1Qy-QkOspQ}bBk2{E#97gv7u%bd@oRhW$|a+`3?rd4}}-Tm38k@=kfDpU4d z?HlC6XJNHzNG~)6jkRqJrL1O(lZ~D^N*=_fx+kc}L?^vA?b8k?D|~v+p-RgvV}nI6 z{m3&`$NiLjxuA8XM5E!B-5;JDIy?Ltut5A<(VX}0Axs=0rsRRs8;c~PT@H&;#9>rT z6V`SqD~v|~YJnU3c%DWE?ESUY@t=!XT~y1T9UUMO|`sL~6g$2Gd% zqS`g?)(rb_1bUHFUK#~&q^&6b8Z;G@TQ|3b#C4RNll01+6KwmZd@7{2f z+r#-}`NVH++2NSi%kby2Aegw$hqL!u_JmLP*?8Ldni7!x`vVY=20wZo?0<{y|78Yc zVmEfCWp#aKM0D78W;1YNn9sdL>2*d#BueIPnC}XoQx^D%J!b z-frRV6)#->HKG~DL{9GS)bSyb_zJ4uH$cXlplhDd)GOQU*5;r&z@yJ7HSKLw7OZw1oq%N73#8eeQDOVm-B`MKP|!RyCyo2RhdiIoAFB48^%g z(^|7(q#J4uNuj@;6ZUtxev*|K3lobk9^;>tMg6-5zRYl*#OHD(7f(r0CAY0_{>s1L z1^V4g>B2HsLZ`rAP$xx74ACjb2v5;UVS$RFX~bx>Fa=_qx-TL55ynyMgyg+12X?La zaoJAiE`7G`^MLvh41uqRsDB5TflaH{tX@VUnmI`9d`6Ma6I(1v+!JfnkOXT;}Tf^^BtcEAmJgd(9!hOky3EJ&UM z!;N|bcw_AXDJR~HZ)>9x64k1qm=3WtxcUV#`4#>75K5rw=%=~lOPfgY7jtfHox*S1 zxTZ(qqa8slBiDPy=dN65$yTm-KrmVyLnv{_l-w5)>>FfItwu8Hg^i*R&ZG{t$>Eng zeq)hhefv%zSF`QSei#2R8xE`>Pq^G5I^`Ei!=kl~DD|0e3DH3`DnsK=Xv=1<&>o1q z9hx-R{OBR%r#9_aa6#)Y|A=DtrabU1$qch$8W4PNGu|m)gbGclO$fav@Z@Eoc_(^j zmnb~HE!VX@0V=v>Qim4Rj5v8s$mEL;6R_*qC5QCgMPNGN6b^B1NyE7UrcH$q^72rX z2*etcM7lHw_A2)K@a|tYRZ}x0LE$aB=csw-rQ@|{!qS<&LS4n&!}N;98h9x2qmcKy zGSBA;kOqt?I{p#aO*Mbl(c?L8t!j4s6KY{|or59+Ga8YDsK4<+$)L7)axl>H1lDw zr_ly%#B>m36@P7MJ8!SE%3Jf{ZBfm0uBQ>u+kBZsDRt9`L9^$O{%F<=nvh~mLOv&68BD74(DpfIM{=K-SV(HLyl4-?`jQ}) z>Zv9okd2c?u37IAGTDJ zll}YkEw(7vrWa{h>61$96(_~|mSoFDnQ987@3$E3Wh@xkf1lfai~8y9+XDBzhdjDox^z}AvPowL zwc-M$9NDhjij1#y!D~f5 zVbn!I3EZTPYtjiIP(8bxPyXCx*FE+um35it)dZ&PI(X4|VdxR10sA;&drmdhIsy=etGTZut6%rDF15<%;&}mtC>!b&Bwp=%t zEXLwoheI0isstidK3YfCzbgriD@O<4$qfHaF0_$qiX*&S1qo9H@L?Q8X$h!{v$UzX zmt{t!w5~ooYGs8Li~Onjr@Rf}2f7*x-$P9sVY>2PJ><-iET z&6UY&#K~i~6#4cW#iAySQ&S5XOA|%hlBiIqR9nw(EGfm=5Us@L2>7wsX7~aSZgIE6 z%BZS`6dlCtnOI_1p-5C;nTk>kw;0X{NAEJ*j~0FS4qp2uf)N zSPM;iAZGi5D#aH#Tf)@)0jOv)rLVqb0psf$mss2TqBSEguZF2HcV~lpnMHB?<|7_- zzZbE$X8Cp|Cb&}rCxOFq!#%Dc!JSba@3HIVPb`C*6v&;a~}+Ua8dnnnfFN~ zU+~%hlK)XEH=$3VM8_t15}SJ&J3eXsrV&eaMfUYWB74xB#>$$<@2dG2l+?+S#JEMt z**j+;&?gj9&r~J9G7koL&L8DgGJ}=%PXkMBrBw)5mcZpJ^b^FY+p?e$^)3fRJKEmY zua6c0F+}G_M1!us$QaL5)zYXeM>yEUdd%xm?@}5YtY5_W5{FAwF4MdENyztlDNZ>& z=DS|JJ$!;frGlxA7*Npr?q-PJOveAoq9x@lHHQGVJgqa-gYU&1;FL?d2Ed zs)n=|B!2gfG~8U05g)xPA?XaCA)FyEP#dzJ4;Fx`x7+JY7?phCC(3*`$x_>CjC8e^ zRLbMusqR3c0aecOPt#{#x}eOc5EV;AovnI$TtsPU@Kp7TYFnAmV?jw&gjN%=mo|>U zI@>ehpM*^>7cK@M&%2VvT$y95axzz=ZWaURj->NzycT(0H&a}>pf zic!G}Mz6qm`p<-_=jR}`VTvx3X@WUYUq@lwJtJO!|LqG3NeU~(A}B^#7c+leD^H-WowMB!JRW^yKGDg26j<|4xN;c&#)FoK%t{e|2N?o31XR_Fn8;0W zxPEbt@^#sk&#T|Yp8BTh?3VE0ux9#HW^?R^8pX<4mw_&>-@QEFu7XIrXfvW;Edd3{ zoClPC=+U+GJm+6pqP<>n5T()RwEA>GmGs_ghk)~`QLyxsSv8|l%HfZ%xO4a_BF1@jR9wSs zfx{>hWD+iOXyVFy9$-l8+`FRI zN-)msnMRP$|G;V8VHbmCp6xbUh4pH?Ooi$#c#`O~+B;UYKCz1@)Js!&iBrRTjm@=$ zZ+SUb>eb|4!U|xf;^W)w#Oxa(3&Fw!So8m$c#O4P&u?RYMZ!G>EoseZpQ*;b7n)?? zvA$|=1-Ruh5LcUZ+*W#-7>ZYBe~Gtmd${sbvy~O({fBswsrf>Hb27wR4J6N{AzhI* zek<5Z`|Wh`tjnKki2aXj2^`ialgzWtL592`4Z@t|xcf_a*cVRjp5_$-!KBO-#P?iA zdWJ{!Rt|C>MHVXhkJ>Y|q#oz@YMX7m|1FK^t*U#le>`;?$*aq;B_)MxPapm5_oMxZ zmLsBV5uaV(-w$ypu$f-xI1j!$o4Q(A!q0b`GvNJVIMZzt>)v+VP?qxbz)RGW!mep2 zC4O#|dNJX?8ASb1uf382%`zolVT*=*5_%<@<4E&UDRvO%|E1%Rk`u+56#fVvmj?;Ro}9eX~+~#WtC5a2`%u=NYyvFTa~8RGysk zJNej{7Po~Y!RwvS6&6InO>gj#(QrMc8DQL21?q>@u27Nu(*bakDtoblk($m=8) z#$jSR2AxET3+)C%rHS;Wy~@6GrB5gLNMwLmoaNTP2PGSo$11i(H>EElS!=m(kDL+mLUY$haiYG%Tpi2$qo+nm{Zbz^;7EDyK?^@D2`Cdp zSE)ShnIoF)sXAN-UsJ4Javr$ul+&k#D#$?Mma#tRI;|?3e(|Br?}5zb>VMTwDNfp) zibM=by0MQCkXUvakEn!g-8hMWe4Je&{}JxFG#8^UV!q;?cJ>UgaU9Nt4rY4|xIqQqxD6s~CfEu0NJHz2OvJC?>d z=%z;AoK+#Kd z&Zq^-LJ1nEGs~YXjV(}b_M;=j+Zgtj=z}9eiwWqj8~>yggAcAb8$_zyi>ksoGysQz z3z2$GLe!938GN_}2d8N_v}KS09N9QZt#!?zbp+1-AE1JCnn*1;LMx`5@%ry9^Wfml zf>WDb!=L%Lp)%_5ZxuuFjR_b={QC+Nolpo#0N5YGXGR71_5uAGZSX&ah#`SJ@H}~E z{tEmN{CdC(|1S>g31Zn5;SHb)R^Wj~0gQF53Rh}L|9w%$(?HF{-vGoudAuF-=TQ(` zZuoi0;sFvQ1rQ0|{8v?b(Tp=XKLA11GLWin055TC%kTG^kMIBe)rz+vrWSw?Gd75> zba`GiPz`);2Kr_fY=zb(Hg^|Ji&2!B!M#Ljt2L<^mI}$my7MFfJj6>H96~A0yN8+F z{Nw&7fjsd{JO8%nMV%l|vNCsoJH!K^z>a+sKBY^}Lo7p|Z>Dk|x646}O2b}`&kqpn z({Px91;zrd(Q~i$Kx6@l!4p8O+k+~=-X`UTC=FzrB@Q7D0DZ1-`Uim2k6I~9X;Hn6 zphw0eOYOMC@t){EuLW*$lt5;j^=miK5SX8uRTKW^ zo@-CiCwS7bmGa)ttKo81 zuNeUCWl6`N&4m-lCU*u)m6G2euO&Mi0~i*3Nf95Qon2z)TVP*jO(kugcy4Kn1jr^j3#qf)3 zU@7QRS-J+(T_a5_U#IFbiR{P6>$c{$Cj88B0ES-b`QJX##|?OIpz8|% zhoOnHbGDa|bP^PQNKBFhFKO{=Qp?;-}u@U0CjOt-EY>ptT5 zS!<7`FJNEmt7``vR=^OnK+^`3s*g2yqTi|BYQsBAOU8TNJl!@ujcf81I9r0KwNrUyb;ei=4nUPc)0`%*AeBptg^)fpv^^Zf)gJ5tcGGff16bj#UQ=m}C=!tb2b}EW zpEiKL@ONw0c4wl6{nz#J|8S+)TK}jWk&B9*W4^sD_gV)67iOmm6WwZJGR3r4p!q&^~-meaS@;<*=ML>MMH zAxq0?=Y)g*onAA=F@!pxm z*ob8S8zIMKT}^~@Mt|bD`=S;79HF3^F41P>cs6Lerjhu0;)e2=Y>v|VSKcJMJAir_ z3@mT@94GOk7i1oy^nT1{uwh(U2^u2I2r+nH9a?4R0X_7y>1=P``+>gEMA&_`;O%ze z%C9JyX1H%*7}J~x9~ou~%L9$wxR03huewbaadiP#7Oc=^9+sRXnRrEBfJDjln(N0` z&rao>Vo!``@Tkn+z#D1hnkT$=JL<9Q;CDf~H!!3~oyHs_lQE2fxqx3f2b{4PVLsna zg0V%k-F-l^&~$f7rabm_ixX1qpY2o~R#0I_WsLEhG|da{ij5AU{qHOYBjK^rH) zqe^IEq!&8;c#-?>U6v6wn<8X>rgEzgbvFRS)Xg1%M3CdpNZ5=tT7%sN$Q)gK+!krinxE-dNCsHJx$? zVFm8HRt2_6k z^nB{X-r{h0g^%S_R#Wiwl%|(;K&k^+Hhv>kIs501+|6$f1HOz59|OEk-0UU{Co(3` z&bYgKpE<>O=tBd5LQ)_CCk72M$QFu%LidV!`twnXYn?7C zr^MHGEq29G#E?i>mVA`QXiWV<7m4o6gsR;$rRE`!{`GU9iQbL?45sX<`$RSNg#MtoKqg@tKHPDg9#pzzgyksLlY z7W28e!Q%owSqp#WDaw0?1OtC3kv{LMp00j&LA!s@?;^G3MC5T zG*t=%1v}6w|`jgq2`G2+dmVZ&bU%0TOGXgSz(lw;gjnX9{ zrId8X(2{~6NOyM%Qc8CS(kTtn(nClKN(p%G;d`F*M?9aOFP+WoJv;8b)>X@YBxs<9 z>#^43w&z=hnKvIzLfom(?!ejeqji1)LpAqs+Hw?w5eiwV<+hadK&X5`5%R?Wz`F8vn$y4!Mp1vVI z-8Gtj=W>&&osn;@d|KBF>pHN-k9Dseu;Tn%phZS($~|?W!=2f^4%8PstZ5>M{2;d zRInmD(3F!1(EJyPUvbYX_US8V8CqBfj(CYM1ig&;@WUBEpGj`vh_?Uu(JEDo{rLwW zp)`hy-VEz!$UjuaG9@2d8x?+4S3So`xKl4699f zap?V!zUyBy`Drz+cNN**K55i5<_SQD7^LS$lJX96#`_PneeW6+KRcns#WAZiSL$;KV5sE zlNxHGn;;MYxa^j=il!O%?FUE{BA<_j>8t?q+(CYytWz*AC(QNiCLD&)e~lYre6h+q zfR;9nU8~5Xb<}}0+^Y$sZ#yn#T@=Y`rNcC2up5%BS>=u8pU0Vp61mNi!8!Ubo0tDu z#@r3go=qXyyNX&Q`k>r@kEgTk;Y8<5Qrhlxxq_UcoY&rOx3AKFzp{pBaIMXb)1R#;^6SW2RZfHrALQ4*i>I7D_S-rCQzk>3cN} zvWUrq7iKFA^}<@ha*!EwvlE*`i$og8H-xMg5hH1I&Ai#(^c6`-R|b>Ly;~$kYL2{R z=|jz<&z9=RJj!ta4?n+KB0lf@*VoB` zMspuhA5MraWqcq>>r&I+9VY0x_3N%WfjJazn;%e%q@GxF=)8P)3kKxOq54W4|2N1u zxmhL#YrMV+$FUsAdYjOxXF%f9Pl=p7SS62u$duQ;m~aCPWjY#I2_G_BYAtEZi;692 zYfS|joTRlIpFPr|nIhCWmA~x|sZd)bVK-P_u(BpG+&0m4@YttK)rA?0u@ix!V(Wjc zsw=D&1Iv#7`xLa;o5*j$v|_l=Y!-BqP#M|tH@SA59kO(AV)gkbyKy;ElmB>OwiwWfN_x>wLJ5K9Pj2|altIIp8B`ims<$)@d(-9qQz(8XQ_ld^$F&zV`?`%I zfy5Lzf0fnO6gJQALy4@4b%L^Ti=oYI3awJ_x6yqf?hC^>E;S#J`PmKpvCW@_HB$Sf zc22*YI#6`@r^RkyxP^ik&V2u!`MNw%WnQEAnoo9i(a#)Ifh~mN<<4;q5 zs_x6%w2TBl>N$c)09S=bziL+cLC0v4a&(bWTD*IN0ln)p-QP3mWPDs`xq^^gzn^r7 zjlGkwWGz-h4UCd04V{`W{(5&lEvZJ0a57N)YFPwIP@n*69hvq(b#_NI`4GIkfQnsp zRZ$BHjv1S~ezWN>(O>4gBVveEu7Xy|Vfvd>GS&*L84%nHOw~%24}Eb5&P$*@AR^_1 z*=%-#5YX<8BoxqQx=%C{0E>;2&v!Cm6(cr+U1lm5%)#3xqW=Vv!`TE!gTfS)xKUk2 zGYGh(lEm$@+&E`A$;5aWPa}CTA>~MP=NKsP8iHuQi?Ww0w;Wt@U<$FI$m#?&IVv}e zp7z&H@3nDZp-HRoi2G}+(d*Xh%O^kn@fpS-&*o~xd6jV|jH{znF`dJ4kXRQJS|4#? zWhbZ@|LrW?I3O&->+-LJBixjJS81fK@{xQ+Kfc`d*YMS~Udo_6=$wF+vJM~iWyXqKbd7Rd0;bW7pZi^2?c7%jXX`bJ8g zNQnNU`$xZns=hmINrpy(zk0(C@Jar4oU--|`E#+nXMoDgfH}Inf)f3p{}bF#{Zt-H zdTJ{Kmulkjr@d#R7Aht@5)z)v%P?v~pqy~#q{L?snh0a*A;O|LS-i~7`uTm$r#LA``f6XXm>>x?2=lln=Qw$9uV2zIU z3*C(T)0_2VONLj$e}NNzv{(VT{#@D;Vi~}ga>YVx2x9G{y4P5zSvI&&{-ima|LS6w zdemrQ)nnKGS`?zoDnq5jvFd$H#ABYu!xRL%_6#PnnJ3)OWX4l&Mw2#F#cGMdnqLMT z%5W=x15E;=5DWc+K=jVBMF+$>>@5xxAizA21pupZKSrV+xx-IYt5#dgXR_PQ1q~QZ z>d#}JYqZF)uU8lpNU^2yKJp8Y7^8;s+r`V%!dnxtSB1pdfi5%JD5*XrD?`YwI4C0c z(WLqO1DSxV3IZuahGF(JE6K!1bt)z#Tj9Sm;TcC{m z0_JEBb2u4sEsyz~?#|4-`*o300OiZJ*0h%-+uP% zGBCUH00cB}#{}id;k(p`XV_C?1)eVfwpFTng4qz$$w=#{ojQ_i72wwzl%<4fmuh@~ zNST?w(~T=wvso9oYUh2f%PKlEK1BXllJ!}hG)@c-?-uNl?$e)d?UuS~mFNEg-kMCu z)JxVSW_gfJgq+HKlGX&9Mv%>}9#J`qfIpTeIlMEm&P&O6bwQH4e5_-cR-s=v7Ck^B z*(IAt$%mjhl&wq1qNgc0`v_??Y1`1(E+48x32W`@O~gY{z=hpv5})O9_Yyf~3^r4p z|Ha1%QFxhHkVJ@Vdt3j@^An$Np9in>t|G`TNS+=iu#KbC-0oc_AymX=RlVe&eFN^| zM_UeMnw(w0O=Vgf#WPDUX22|n>gvvp|3{&$YW#HR41~rpZyv`1(hyo z*P<>VU$ySfwV5|yIC!5?UcOw6ru}wI@GFI}-(!sdn|~T>(NAVsOLpG~G|JWkwuZa&WhE!+ zmBaZnN}2NS9W9+7YSJm}z=_mbyRyvan19Ihbubt?e`MC5DFPHjk4%mxFx=El>)NJ? z+fM8kdz~Fbx1BzqJo?~sX-$9mb};J_snLvuH<`h^^L24zhHgZ6Mo;sT11MT@J`j;12i3mu7IL5!0ZN> zSu!V6d_}&5w1ye(12LK4XO$bRPp*52A4Uz5Iy{5$F8#+BXhCYz_2JW%4q0VLR7_JJ z%g2^L{>w)C)d_yk*pG~k6lrbb-YrUPV+@0w7##XQKBw(|L=ifo=vlAHAdgm77UPrD z;G!R5cR&cNmvB!pO?`0}+$U;k<~6IU5j?wgb@}T;!qdJRiqURbPeuu|LY9~ z8&NfjF=8=$Q*N!#ytbqPj?4w~1m*YvH#QWO{|U!0IF^;)n33?WXEpIxwZ?=mHgoOW zsk~r>hUo&bisv~UYO{WHzu-9A7H75ryNE-CNJVMe`Z@KLbIpj}1t4L#&gjNCkV0pj zCCNY+!_`0+%P^zmg)>xkr+D$UeoLmMb+(5-e@=h9OCrE?WW9gfgd&u37$Kqhdj9bf zx9q_V&;#i*8$bU~yaNSXM{-U+-|bfjfkJi~ni_vAywUZSC^>ae9t5zlxI%NO?d=v# z=zc>3{DI2ZtYhl*w^vsa)}N_QVo>YM_L*g4xAt~_v5@{v-TuB}S#aDyY(qEG^5OkA z5^x}~;6QLLw5J|{Tl-iRVD@K3FD}3rKOh8$3#Ta|X9R@E5~OxsZv~**4H^8lT1$U8 zlT@|SG_`aJTuV7`4?=_h@vzAU$laq~PY*vBu>f%R8($!7U$o4yPiD?$(L-G}WAH6( zC|?Hu!$3Ae)a;1#VwK`Z)NR6vUN)hRp^qXy0EmA=39mazga?E)lJQz0wSoYg-T4l* zcG2hh3Sl4n-+_^E#Lj06%Qx=F)j)%=2=N9&dCkMmzbQ)7wModsB{KSx(ox9$LG$vp zgEZ^hUfMF~`43XfqMh0JO_Z#ayA!Yz+Z5pyM6~C96JsH z&2c*)K4xE~Q?R4^VRhzJR$X)2I#L z{sI=$@41=`SP5vl_;s5 zx(Sj6_Z4qUs4vz|IN2gVTFkNm$cQZmiVLl2Ff#@@BDBj!KVQq!hz*Y+yY5a{V;cQlD+jwQ`O*2`HS>j)SC4MaGx{Y<%1l}rFxzlNmRNEz&ESG z`%V-JqSUscg%6&1jsH6e5pP5?5T}0=3pjOZX^dR}RKh#KcbBdq%BSFQRiI%1jczoVAZH-I`LlVtz;dm{Nj{NF`P*CxgCP8bOtuNumj+$6 z4*~au`cc%51DKWK2B^&JxD}APj5h<~PnN&=y?2_@0~c|z-OnpoS6=UYm<<@mqP=1T zmpr;EmqAfbih&#UI7O(evh$v7Yi5zzbNU`&9o4z{wdDfloy;FP0OLXB@}2T1;2nwf z0?+g!Ffi{E>*QaKIEx7TsDqqXC)dn>=Y8V1U;x_OQ04(vN+QM;|}(20Yuk`|`Ut&A4c0U+!QqF;7BbC_JjT zJ!xTj!2PtJ4JBe~1d&KHBPaMs=xXjpwo@;eY)d{3k9nx_(P~U2v9_{2j!JAV>Ya2Z z{Q`061n!krlSPY{^NuADu$3hTSSU&M=Ld%XRKDbCW9DXLhm5cw^lc_UfxOB%10Kz{304zT(Ajl~_8z}ma7{|&GAb{ifYmF;XH9@h@V2A4=un>Nd@z38X z2)+WteMP|VsbYcPNuZef>IG&fE}~F7rn|MZ`N01DmFdD6AL))FQc=3%e)g6`4y z>F_duyo(7tK){myc|;-Ef$DUKSt!x4FvMeApjLaQ9YU*8u3yB9L--of_e*te^;hlp z&+*1KXzKHQ@`1}FeMvibt9kDx2-upC@daCVxF?#9Gl3SWtvZ^;kV)p7W8~H;U^oZ3 zEO{Qf;4+c;7^SK(T+jn~6_3m+mVM&)Z(dsl?(WRl9;Q0KT0~;es{uA~%Nw?y;HQs) zp4^f58W+0oyu5|BWeiaOP~}RzKZ-#;t(C6lsBBFWT2374X=CXq#+nN72B?=7?mAfk z+=QYbhj1^Y#8yDb{qBc+N`&KKTtD6c?o){(a+#D#p^?U!G3JR%zJ*jYNgE^UN;_re zPoU}4v#aV^dp1{@NoEhh{#YWAD_}ca6g}|SCQCy^eJ85-4JczWh(mf6^{VW9_h)|u z2n^eK!O8>hvK-VZ7eG26f}}h7!H$A3SSG0T`aAnq#(hP0WUt*dcs{4GY*Xezr}x@$Jia3t67YlqEleTr1!dw{~8<_7blxCiI&#+Ndy z+J&XwJBRbQhT{aHk@2n`f$Y5}Ogv+>daNxuuk@XQ@ZMBGk1@oNvC`kFyL!V;2NbF7 z%3+XG33|F;oM;ZHI)aCXcGf;53A1FDc<@x6HKPDEIkxDfMEcOQ|6XEwgb zQ9EUWsiPGSC&aDbq?iE_Qc`w0EFZchQ52g9p1Ua_YOar6#%l-hikwc;r!?_OHf_*( z)g=X~t)?Ri)sy0tGo7D;&wY%00!iGF$;Kjb8?JQfC>Y<+_>>aC1l7Hlz%oF?`v>`K z#k-EAbgBO67?r)+S2#Wh85 z>F?+0lXE87@->J4chlGKeU1XYS9AGQ_F<(9%)f=Tu&~70g69gaD>j;kt51V4F$g8# zaD`G>{ZP+wg`Wlqm@xPLR=4J>2Cr$dj(EW=sjpIZ!#@Y~JdX8*&3DM-`WIj%AY%Yr z6K)U_Mj0#^1>+0kBAA@G8fTbbP*#+0=G-U89E5!_YV$b&t!7=y9bxj$$`}QRrB?tK zH27)myrSRk17yq@+F2DL8wai;JjLj0jl@ERT2=ZkdYUQ-3b0I*W)5}lH;3h;jGn1a z>3xiBTTdotkiJ##{GgcfI$Kru(%aggzN@#(A?{z*XKlQi>AQRobfmR;`G z+(i-azndxn`*rb0)yDt2G;y4za4gX2A>=q4xx@L;dCqc4m?#m)kkI-~7mVByv!9K% zgY^zwkxF9NE-8ohtT&)9t=_E6WD^b?BXH_1d=wEofWUaf*rBDs9I)AoWcsqTLzdN8tE`5_B6XZZh-n97Jg-a~OlU0pRUOXqc((Q@oA33m5lV?N0-Qkt9R=(j zA`FK(eL!c_h^k>qiF$g6@=2NKTi5;CT@v}g`HpApqV!>Cp^b{IS9!w!Q3VNw8Xw{~ z@aJY8Ecx_yKjc(T{k#mkruKelH}SJZRnd_+vY3H#5hO|VoL!T0eMc|u_E72i^(NIhh9`BcFLmdyKi+VoYArTbH z$oc6azOmX{ryJvF_X%z^(kFVaJ=>)t-2-9oQ7Jhg2y7Tq|Ue)S~lX z;#%l9@qvw#-o;p6h_0w7@fCJI2|kgK;Y1=LE9$zwr5v0|_r^OpsPVw##EH4+h!3Dk1rk`kPsX0T^pK$A6g4+gJCx zvl&;1Ts#w}XnteTwm6Q4r9n|=KuV-aHgTC+iUOb$5%W8uBy{54F)dFEY^JV|Mo1{* zu}_bRYfv0-Cqs_u#?% zCWFCh(fRhq2G5)uGkH2qw$U<3w)mntm)%%%YMA&o^ww`~nO@3m^B2PqF?lf*4G3lmz^M&cQEhhvm zZ_*f*9d* z6AQ|5u#zDt96($h`W{*YRv8X{LHB$s=4;rR|8R^R-CpK$B+uWPIoXe~JD~*hb_rGj zxK{(pXGIBkf9%XgY)lgA^5T;h*m(cjm`!D~V_t))tsQy+v3etG0`sCqS z0G3IB%~2FihDwbjKRk6#IUKJ%OeXe$`$ZcF&}Mr9-*}1r^4{#WmjO+Ei{o;|LGHo# z08Ka7`*x5hV%^6}56y?MXJ_X+f(CoLx`kHelD!J3- z7^UP32i8-muHowa;=`J_YC`+9lS&EFT?M>!YG`PGwFQ)@z58Spw((!n2|Q^0xGL?v zw}by#jaYat@7D*A3RGXgEF;^9PnYP=*%#}T3Sp=xBY@BjKi8J>*Dvz!9Lw1chA|*= zVp(+`aktQVtT{`T!`PkjW~n}8ov-^BM#|!I;9op?c(&-Ts<00u#`vjl=Ls8B-HN?!DI{>8E`G3$Ex?pnZ1N1 zmKNVVN*8-~nP@MD2cIyJ=u9LcQ4)i(n%F~VqG9;q_v2|J;0VLUkiYO(LQz08_np1= zNQzi6QsvGXb?qqaR%^9Kpx*DtnD_ip1f!y?_a{CRf)1eLRD159tYJ%l76#9j5GcsV zSiuPl#(T&s$M5{?gkFgG_?#$4Z%nFn-J<=vqK$j9Y~Ji4eN)b`qyyp<@&Sl93wuWC z%=vVgI2;ox?7qaZG7;Ar2$f#6@wY8zT-~k4A!qsX7O0E{O%alp$3QDm z_l~}yc9$)&i5G{oKStd!C(#n(@kO8XM2YNc@CLkAar%I+i^BZDN#;BQu_IfR7mR2T zoODN3Ns*Cy)lNA1laWXv5QaASJ09&`!hWy}0iPmG!(eNk6OZ5T#Y3N&=#uM`V?|EA z1-Pp0T^OOXj}ne#d%XA%w)NV2SlV@hDD9DXBj~vd{@r*bI+#FIsp60>P;(0T4}9Ng z!V-$Jj{dQMe!Fm(CvFPNycNFg!kZRMK$nR+WpTzs{H&2jxx!i`O6$o59rV+B6EGvk zzIANg8?P?L@h@f^CcU1z8(L!`n%~t432uW>DUUr;kWQRV($XCe1)ZC$j}oZ~QIFPu z=oH`5`vI3x@vVNV^(eu5lP465uN^_;TYtQ>ZQR2RH6y0+F}{RfpF9MBJhb-2jwURN z)K8=kutJ3^0@UXP10vHgPOQXzgIR(PNc;}cGCC?s<{)X-x!NFy@-{vRUdC1jz>wJc7F zJ1>VEqW4cIezW~R!n}^CXMO>mgZV6B03J`aPp>WSkHLRlb3@pO3NSGl#si$2 zd?n*JM_6rt-Ha}PY_4B%mymkCruv90{cf*6v&-Ahb$5DdzPZ+3C*uAEjqQ%h) z84~>2*HE#>WB13lRYKX7?%C_FR)9>k2*Oa!(aJVTg{dToT_bgo(5J_`20!(WBN}|? zuMP7Q4U0YZtcK_v%R{eTG?>l<12d3UL|v_gRPWX<5UI~KB~yF2NcZGVjl5FI>`>S- zQl+>eob7*udpgAX$Pln5g;MRTbc`H9>IundCTn^7!EzRGG=~#kbw;0L2ASF;p(A0vD5;RcD?|da$#}DHNt3GTlZM< z+$t!naI0ESTl^83#ygb!iq-yD=qC9*yIzZQsSqmm`APv)F{#Zk063fK{W$8Q_@dCD z>I`CiT**v_ZkVYC1_}9A-ZSPPhK7u1SQ8G@?HY`&x_cD96Lz~T813(N&K)y#vFzaJ?DwjU0rux$rM*bld z7)z)uG6Gi)`x&NkBm;(+iG&eeI14|ypY|T8_5+cqeKPfMvdSG3X#j2j2ycmri~q}zAQy0x{^L3vfb?eg z+FL^y>|E#(pe62Ku4ve!js#WNx`@+Ep&TFg!+}jBKqS0xwZ1W)x61x?eyDPa~oo=QcmM@^m3eA{VzBhFm!$bu%@K! zeUTZKN&*&T@Kand&0W|piL_9k_hW(ma#WVQ0LKs>4R*V&s=beLqmY0jZE7!m@f89#lL8wI`j9?Fff4Y-tuo4_eC@W;-QfJ?#IW6=QHd_>t@{8|9mw~<=j;RA#loP8ze^NS!Kt!u0z*HnBV&AP}Z@k9%2{NaK;duKo-_p zG=s>`b2F`P7!cnUnyCT$TNxF58ak#_x6*(>i9uNGaGk}I$4R&EGY;??a_cDQzC}!u x0j^_Drt%z6^e9OKcyk%Neq43Codx7d+?4Tg?e92xl{?^{!ZQ__aw%i~{{zV}1qc8D literal 0 HcmV?d00001 diff --git "a/tmp/Screenshot at \320\274\320\260\321\217 09 18-31-52.png" "b/tmp/Screenshot at \320\274\320\260\321\217 09 18-31-52.png" new file mode 100644 index 0000000000000000000000000000000000000000..fa7f425d7a0336e1c8f3aa394bede23bd914a78d GIT binary patch literal 53725 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 B&xHU0 literal 0 HcmV?d00001