diff --git a/Podfile b/Podfile index 9a298fd..92beb39 100644 --- a/Podfile +++ b/Podfile @@ -10,6 +10,7 @@ target 'CustomKeyboard' do pod 'Masonry', '1.1.0' pod 'MBProgressHUD', '1.2.0' pod 'MJExtension', '3.4.2' + pod 'DZNEmptyDataSet', '1.8.1' end target 'keyBoard' do diff --git a/Podfile.lock b/Podfile.lock index 56f27f0..b534555 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -15,6 +15,7 @@ PODS: - AFNetworking/UIKit (4.0.1): - AFNetworking/NSURLSession - Bugly (2.6.1) + - DZNEmptyDataSet (1.8.1) - LookinServer (1.2.8): - LookinServer/Core (= 1.2.8) - LookinServer/Core (1.2.8) @@ -29,6 +30,7 @@ PODS: DEPENDENCIES: - AFNetworking (= 4.0.1) - Bugly (= 2.6.1) + - DZNEmptyDataSet (= 1.8.1) - LookinServer - Masonry (= 1.1.0) - MBProgressHUD (= 1.2.0) @@ -40,6 +42,7 @@ SPEC REPOS: https://github.com/CocoaPods/Specs.git: - AFNetworking - Bugly + - DZNEmptyDataSet - LookinServer - Masonry - MBProgressHUD @@ -50,6 +53,7 @@ SPEC REPOS: SPEC CHECKSUMS: AFNetworking: 3bd23d814e976cd148d7d44c3ab78017b744cd58 Bugly: 217ac2ce5f0f2626d43dbaa4f70764c953a26a31 + DZNEmptyDataSet: 9525833b9e68ac21c30253e1d3d7076cc828eaa7 LookinServer: 1b2b61c6402ae29fa22182d48f5cd067b4e99e80 Masonry: 678fab65091a9290e40e2832a55e7ab731aad201 MBProgressHUD: 3ee5efcc380f6a79a7cc9b363dd669c5e1ae7406 @@ -57,6 +61,6 @@ SPEC CHECKSUMS: MJRefresh: ff9e531227924c84ce459338414550a05d2aea78 SDWebImage: f29024626962457f3470184232766516dee8dfea -PODFILE CHECKSUM: c61e30c30e1b3bee64d09e23c2f83fc77e0f8ff5 +PODFILE CHECKSUM: 3619f65be1b908e009b5ab96b3d06d846883eac0 COCOAPODS: 1.16.2 diff --git a/Pods/DZNEmptyDataSet/LICENSE b/Pods/DZNEmptyDataSet/LICENSE new file mode 100644 index 0000000..199759a --- /dev/null +++ b/Pods/DZNEmptyDataSet/LICENSE @@ -0,0 +1,9 @@ +The MIT License (MIT) + +Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl + +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/Pods/DZNEmptyDataSet/README.md b/Pods/DZNEmptyDataSet/README.md new file mode 100644 index 0000000..6f6be21 --- /dev/null +++ b/Pods/DZNEmptyDataSet/README.md @@ -0,0 +1,296 @@ +DZNEmptyDataSet +================= + +[![Pod Version](http://img.shields.io/cocoapods/v/DZNEmptyDataSet.svg)](http://cocoadocs.org/docsets/DZNEmptyDataSet/) +[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) +[![License](http://img.shields.io/badge/license-MIT-blue.svg)](http://opensource.org/licenses/MIT) + +### Projects using this library + +[Add your project to the list here](https://github.com/dzenbot/DZNEmptyDataSet/wiki/Projects-using-DZNEmptyDataSet) and provide a (320px wide) render of the result. + + +### The Empty Data Set Pattern +Also known as *[Empty State](http://emptystat.es/)* or *[Blank Slate](http://patternry.com/p=blank-slate/)*. + +Most applications show lists of content (data sets), which many turn out to be empty at one point, specially for new users with blank accounts. Empty screens create confusion by not being clear about what's going on, if there is an error/bug or if the user is supposed to do something within your app to be able to consume the content. + +Please read this very interesting article about [*Designing For The Empty States*](http://tympanus.net/codrops/2013/01/09/designing-for-the-empty-states/). + +![Screenshots_Row1](https://raw.githubusercontent.com/dzenbot/UITableView-DataSet/master/Examples/Applications/Screenshots/Screenshots_row1.png) +![Screenshots_Row2](https://raw.githubusercontent.com/dzenbot/UITableView-DataSet/master/Examples/Applications/Screenshots/Screenshots_row2.png) +(*These are real life examples, available in the 'Applications' sample project*) + +**[Empty Data Sets](http://pttrns.com/?did=1&scid=30)** are helpful for: +* Avoiding white-screens and communicating to your users why the screen is empty. +* Calling to action (particularly as an onboarding process). +* Avoiding other interruptive mechanisms like showing error alerts. +* Being consistent and improving the user experience. +* Delivering a brand presence. + + +### Features +* Compatible with UITableView and UICollectionView. Also compatible with UISearchDisplayController and UIScrollView. +* Gives multiple possibilities of layout and appearance, by showing an image and/or title label and/or description label and/or button. +* Uses NSAttributedString for easier appearance customisation. +* Uses auto-layout to automagically center the content to the tableview, with auto-rotation support. Also accepts custom vertical and horizontal alignment. +* Background color customisation. +* Allows tap gesture on the whole tableview rectangle (useful for resigning first responder or similar actions). +* For more advanced customisation, it allows a custom view. +* Compatible with Storyboard. +* Compatible with iOS 6 or later. +* Compatible with iPhone and iPad. +* **App Store ready** + +This library has been designed in a way where you won't need to extend UITableView or UICollectionView class. It will still work when using UITableViewController or UICollectionViewController. +By just conforming to DZNEmptyDataSetSource & DZNEmptyDataSetDelegate, you will be able to fully customize the content and appearance of the empty states for your application. + + +## Installation + +Available in [CocoaPods](http://cocoapods.org/?q=DZNEmptyDataSet) +```ruby +pod 'DZNEmptyDataSet' +``` + +To integrate DZNEmptyDataSet into your Xcode project using Carthage, specify it in your `Cartfile`: + +```ruby +github "dzenbot/DZNEmptyDataSet" +``` + + +## How to use +For complete documentation, [visit CocoaPods' auto-generated doc](http://cocoadocs.org/docsets/DZNEmptyDataSet/) + +### Import +```objc +#import "UIScrollView+EmptyDataSet.h" +``` +Unless you are importing as a framework, then do: +```objc +#import "" +``` + +### Protocol Conformance +Conform to datasource and/or delegate. +```objc +@interface MainViewController : UITableViewController + +- (void)viewDidLoad +{ + [super viewDidLoad]; + + self.tableView.emptyDataSetSource = self; + self.tableView.emptyDataSetDelegate = self; + + // A little trick for removing the cell separators + self.tableView.tableFooterView = [UIView new]; +} +``` + +### Data Source Implementation +Return the content you want to show on the empty state, and take advantage of NSAttributedString features to customise the text appearance. + +The image for the empty state: +```objc +- (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView +{ + return [UIImage imageNamed:@"empty_placeholder"]; +} +``` + +The image view animation +```objc +- (CAAnimation *)imageAnimationForEmptyDataSet:(UIScrollView *)scrollView +{ + CABasicAnimation *animation = [CABasicAnimation animationWithKeyPath: @"transform"]; + + animation.fromValue = [NSValue valueWithCATransform3D:CATransform3DIdentity]; + animation.toValue = [NSValue valueWithCATransform3D:CATransform3DMakeRotation(M_PI_2, 0.0, 0.0, 1.0)]; + + animation.duration = 0.25; + animation.cumulative = YES; + animation.repeatCount = MAXFLOAT; + + return animation; +} +``` + +The attributed string for the title of the empty state: +```objc +- (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView +{ + NSString *text = @"Please Allow Photo Access"; + + NSDictionary *attributes = @{NSFontAttributeName: [UIFont boldSystemFontOfSize:18.0f], + NSForegroundColorAttributeName: [UIColor darkGrayColor]}; + + return [[NSAttributedString alloc] initWithString:text attributes:attributes]; +} +``` + +The attributed string for the description of the empty state: +```objc +- (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView +{ + NSString *text = @"This allows you to share photos from your library and save photos to your camera roll."; + + NSMutableParagraphStyle *paragraph = [NSMutableParagraphStyle new]; + paragraph.lineBreakMode = NSLineBreakByWordWrapping; + paragraph.alignment = NSTextAlignmentCenter; + + NSDictionary *attributes = @{NSFontAttributeName: [UIFont systemFontOfSize:14.0f], + NSForegroundColorAttributeName: [UIColor lightGrayColor], + NSParagraphStyleAttributeName: paragraph}; + + return [[NSAttributedString alloc] initWithString:text attributes:attributes]; +} +``` + +The attributed string to be used for the specified button state: +```objc +- (NSAttributedString *)buttonTitleForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state +{ + NSDictionary *attributes = @{NSFontAttributeName: [UIFont boldSystemFontOfSize:17.0f]}; + + return [[NSAttributedString alloc] initWithString:@"Continue" attributes:attributes]; +} +``` + +or the image to be used for the specified button state: +```objc +- (UIImage *)buttonImageForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state +{ + return [UIImage imageNamed:@"button_image"]; +} +``` + +The background color for the empty state: +```objc +- (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView +{ + return [UIColor whiteColor]; +} +``` + +If you need a more complex layout, you can return a custom view instead: +```objc +- (UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView +{ + UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray]; + [activityView startAnimating]; + return activityView; +} +``` + +Additionally, you can also adjust the vertical alignment of the content view (ie: useful when there is tableHeaderView visible): +```objc +- (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView +{ + return -self.tableView.tableHeaderView.frame.size.height/2.0f; +} +``` + +Finally, you can separate components from each other (default separation is 11 pts): +```objc +- (CGFloat)spaceHeightForEmptyDataSet:(UIScrollView *)scrollView +{ + return 20.0f; +} +``` + + +### Delegate Implementation +Return the behaviours you would expect from the empty states, and receive the user events. + +Asks to know if the empty state should be rendered and displayed (Default is YES) : +```objc +- (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView +{ + return YES; +} +``` + +Asks for interaction permission (Default is YES) : +```objc +- (BOOL)emptyDataSetShouldAllowTouch:(UIScrollView *)scrollView +{ + return YES; +} +``` + +Asks for scrolling permission (Default is NO) : +```objc +- (BOOL)emptyDataSetShouldAllowScroll:(UIScrollView *)scrollView +{ + return YES; +} +``` + +Asks for image view animation permission (Default is NO) : +```objc +- (BOOL) emptyDataSetShouldAllowImageViewAnimate:(UIScrollView *)scrollView +{ + return YES; +} +``` + +Notifies when the dataset view was tapped: +```objc +- (void)emptyDataSet:(UIScrollView *)scrollView didTapView:(UIView *)view +{ + // Do something +} +``` + +Notifies when the data set call to action button was tapped: +```objc +- (void)emptyDataSet:(UIScrollView *)scrollView didTapButton:(UIButton *)button +{ + // Do something +} +``` + +### Refresh layout +If you need to refresh the empty state layout, simply call: + +```objc +[self.tableView reloadData]; +``` +or +```objc +[self.collectionView reloadData]; +``` +depending of which you are using. + +### Force layout update +You can also call `[self.tableView reloadEmptyDataSet]` to invalidate the current empty state layout and trigger a layout update, bypassing `-reloadData`. This might be useful if you have a lot of logic on your data source that you want to avoid calling, when not needed. `[self.scrollView reloadEmptyDataSet]` is the only way to refresh content when using with UIScrollView. + + +## Sample projects + +#### Applications +This project replicates several popular application's empty states (~20) with their exact content and appearance, such as Airbnb, Dropbox, Facebook, Foursquare, and many others. See how easy and flexible it is to customize the appearance of your empty states. You can also use this project as a playground to test things. + +#### Countries +This project shows a list of the world countries loaded from CoreData. It uses NSFecthedResultController for filtering search. When searching and no content is matched, a simple empty state is shown. See how to interact between the UITableViewDataSource and the DZNEmptyDataSetSource protocols, while using a typical CoreData stack. + +#### Colors +This project is a simple example of how this library also works with UICollectionView and UISearchDisplayController, while using Storyboards. + + +## Collaboration +Feel free to collaborate with ideas, issues and/or pull requests. + + +## License +(The MIT License) + +Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl + +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/Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h b/Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h new file mode 100644 index 0000000..5dd70f2 --- /dev/null +++ b/Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.h @@ -0,0 +1,280 @@ +// +// UIScrollView+EmptyDataSet.h +// DZNEmptyDataSet +// https://github.com/dzenbot/DZNEmptyDataSet +// +// Created by Ignacio Romero Zurbuchen on 6/20/14. +// Copyright (c) 2016 DZN Labs. All rights reserved. +// Licence: MIT-Licence +// + +#import + +@protocol DZNEmptyDataSetSource; +@protocol DZNEmptyDataSetDelegate; + +#define DZNEmptyDataSetDeprecated(instead) DEPRECATED_MSG_ATTRIBUTE(" Use " # instead " instead") + +/** + A drop-in UITableView/UICollectionView superclass category for showing empty datasets whenever the view has no content to display. + @discussion It will work automatically, by just conforming to DZNEmptyDataSetSource, and returning the data you want to show. + */ +@interface UIScrollView (EmptyDataSet) + +/** The empty datasets data source. */ +@property (nonatomic, weak) IBOutlet id emptyDataSetSource; +/** The empty datasets delegate. */ +@property (nonatomic, weak) IBOutlet id emptyDataSetDelegate; +/** YES if any empty dataset is visible. */ +@property (nonatomic, readonly, getter = isEmptyDataSetVisible) BOOL emptyDataSetVisible; + +/** + Reloads the empty dataset content receiver. + @discussion Call this method to force all the data to refresh. Calling -reloadData is similar, but this forces only the empty dataset to reload, not the entire table view or collection view. + */ +- (void)reloadEmptyDataSet; + +@end + + +/** + The object that acts as the data source of the empty datasets. + @discussion The data source must adopt the DZNEmptyDataSetSource protocol. The data source is not retained. All data source methods are optional. + */ +@protocol DZNEmptyDataSetSource +@optional + +/** + Asks the data source for the title of the dataset. + The dataset uses a fixed font style by default, if no attributes are set. If you want a different font style, return a attributed string. + + @param scrollView A scrollView subclass informing the data source. + @return An attributed string for the dataset title, combining font, text color, text pararaph style, etc. + */ +- (NSAttributedString *)titleForEmptyDataSet:(UIScrollView *)scrollView; + +/** + Asks the data source for the description of the dataset. + The dataset uses a fixed font style by default, if no attributes are set. If you want a different font style, return a attributed string. + + @param scrollView A scrollView subclass informing the data source. + @return An attributed string for the dataset description text, combining font, text color, text pararaph style, etc. + */ +- (NSAttributedString *)descriptionForEmptyDataSet:(UIScrollView *)scrollView; + +/** + Asks the data source for the image of the dataset. + + @param scrollView A scrollView subclass informing the data source. + @return An image for the dataset. + */ +- (UIImage *)imageForEmptyDataSet:(UIScrollView *)scrollView; + + +/** + Asks the data source for a tint color of the image dataset. Default is nil. + + @param scrollView A scrollView subclass object informing the data source. + @return A color to tint the image of the dataset. + */ +- (UIColor *)imageTintColorForEmptyDataSet:(UIScrollView *)scrollView; + +/** + * Asks the data source for the image animation of the dataset. + * + * @param scrollView A scrollView subclass object informing the delegate. + * + * @return image animation + */ +- (CAAnimation *) imageAnimationForEmptyDataSet:(UIScrollView *) scrollView; + +/** + Asks the data source for the title to be used for the specified button state. + The dataset uses a fixed font style by default, if no attributes are set. If you want a different font style, return a attributed string. + + @param scrollView A scrollView subclass object informing the data source. + @param state The state that uses the specified title. The possible values are described in UIControlState. + @return An attributed string for the dataset button title, combining font, text color, text pararaph style, etc. + */ +- (NSAttributedString *)buttonTitleForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state; + +/** + Asks the data source for the image to be used for the specified button state. + This method will override buttonTitleForEmptyDataSet:forState: and present the image only without any text. + + @param scrollView A scrollView subclass object informing the data source. + @param state The state that uses the specified title. The possible values are described in UIControlState. + @return An image for the dataset button imageview. + */ +- (UIImage *)buttonImageForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state; + +/** + Asks the data source for a background image to be used for the specified button state. + There is no default style for this call. + + @param scrollView A scrollView subclass informing the data source. + @param state The state that uses the specified image. The values are described in UIControlState. + @return An attributed string for the dataset button title, combining font, text color, text pararaph style, etc. + */ +- (UIImage *)buttonBackgroundImageForEmptyDataSet:(UIScrollView *)scrollView forState:(UIControlState)state; + +/** + Asks the data source for the background color of the dataset. Default is clear color. + + @param scrollView A scrollView subclass object informing the data source. + @return A color to be applied to the dataset background view. + */ +- (UIColor *)backgroundColorForEmptyDataSet:(UIScrollView *)scrollView; + +/** + Asks the data source for a custom view to be displayed instead of the default views such as labels, imageview and button. Default is nil. + Use this method to show an activity view indicator for loading feedback, or for complete custom empty data set. + Returning a custom view will ignore -offsetForEmptyDataSet and -spaceHeightForEmptyDataSet configurations. + + @param scrollView A scrollView subclass object informing the delegate. + @return The custom view. + */ +- (UIView *)customViewForEmptyDataSet:(UIScrollView *)scrollView; + +/** + Asks the data source for a offset for vertical and horizontal alignment of the content. Default is CGPointZero. + + @param scrollView A scrollView subclass object informing the delegate. + @return The offset for vertical and horizontal alignment. + */ +- (CGPoint)offsetForEmptyDataSet:(UIScrollView *)scrollView DZNEmptyDataSetDeprecated(-verticalOffsetForEmptyDataSet:); +- (CGFloat)verticalOffsetForEmptyDataSet:(UIScrollView *)scrollView; + +/** + Asks the data source for a vertical space between elements. Default is 11 pts. + + @param scrollView A scrollView subclass object informing the delegate. + @return The space height between elements. + */ +- (CGFloat)spaceHeightForEmptyDataSet:(UIScrollView *)scrollView; + +@end + + +/** + The object that acts as the delegate of the empty datasets. + @discussion The delegate can adopt the DZNEmptyDataSetDelegate protocol. The delegate is not retained. All delegate methods are optional. + + @discussion All delegate methods are optional. Use this delegate for receiving action callbacks. + */ +@protocol DZNEmptyDataSetDelegate +@optional + +/** + Asks the delegate to know if the empty dataset should fade in when displayed. Default is YES. + + @param scrollView A scrollView subclass object informing the delegate. + @return YES if the empty dataset should fade in. + */ +- (BOOL)emptyDataSetShouldFadeIn:(UIScrollView *)scrollView; + +/** + Asks the delegate to know if the empty dataset should still be displayed when the amount of items is more than 0. Default is NO + + @param scrollView A scrollView subclass object informing the delegate. + @return YES if empty dataset should be forced to display + */ +- (BOOL)emptyDataSetShouldBeForcedToDisplay:(UIScrollView *)scrollView; + +/** + Asks the delegate to know if the empty dataset should be rendered and displayed. Default is YES. + + @param scrollView A scrollView subclass object informing the delegate. + @return YES if the empty dataset should show. + */ +- (BOOL)emptyDataSetShouldDisplay:(UIScrollView *)scrollView; + +/** + Asks the delegate for touch permission. Default is YES. + + @param scrollView A scrollView subclass object informing the delegate. + @return YES if the empty dataset receives touch gestures. + */ +- (BOOL)emptyDataSetShouldAllowTouch:(UIScrollView *)scrollView; + +/** + Asks the delegate for scroll permission. Default is NO. + + @param scrollView A scrollView subclass object informing the delegate. + @return YES if the empty dataset is allowed to be scrollable. + */ +- (BOOL)emptyDataSetShouldAllowScroll:(UIScrollView *)scrollView; + +/** + Asks the delegate for image view animation permission. Default is NO. + Make sure to return a valid CAAnimation object from imageAnimationForEmptyDataSet: + + @param scrollView A scrollView subclass object informing the delegate. + @return YES if the empty dataset is allowed to animate + */ +- (BOOL)emptyDataSetShouldAnimateImageView:(UIScrollView *)scrollView; + +/** + Tells the delegate that the empty dataset view was tapped. + Use this method either to resignFirstResponder of a textfield or searchBar. + + @param scrollView A scrollView subclass informing the delegate. + */ +- (void)emptyDataSetDidTapView:(UIScrollView *)scrollView DZNEmptyDataSetDeprecated(-emptyDataSet:didTapView:); + +/** + Tells the delegate that the action button was tapped. + + @param scrollView A scrollView subclass informing the delegate. + */ +- (void)emptyDataSetDidTapButton:(UIScrollView *)scrollView DZNEmptyDataSetDeprecated(-emptyDataSet:didTapButton:); + +/** + Tells the delegate that the empty dataset view was tapped. + Use this method either to resignFirstResponder of a textfield or searchBar. + + @param scrollView A scrollView subclass informing the delegate. + @param view the view tapped by the user + */ +- (void)emptyDataSet:(UIScrollView *)scrollView didTapView:(UIView *)view; + +/** + Tells the delegate that the action button was tapped. + + @param scrollView A scrollView subclass informing the delegate. + @param button the button tapped by the user + */ +- (void)emptyDataSet:(UIScrollView *)scrollView didTapButton:(UIButton *)button; + +/** + Tells the delegate that the empty data set will appear. + + @param scrollView A scrollView subclass informing the delegate. + */ +- (void)emptyDataSetWillAppear:(UIScrollView *)scrollView; + +/** + Tells the delegate that the empty data set did appear. + + @param scrollView A scrollView subclass informing the delegate. + */ +- (void)emptyDataSetDidAppear:(UIScrollView *)scrollView; + +/** + Tells the delegate that the empty data set will disappear. + + @param scrollView A scrollView subclass informing the delegate. + */ +- (void)emptyDataSetWillDisappear:(UIScrollView *)scrollView; + +/** + Tells the delegate that the empty data set did disappear. + + @param scrollView A scrollView subclass informing the delegate. + */ +- (void)emptyDataSetDidDisappear:(UIScrollView *)scrollView; + +@end + +#undef DZNEmptyDataSetDeprecated + diff --git a/Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.m b/Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.m new file mode 100644 index 0000000..ce43ffc --- /dev/null +++ b/Pods/DZNEmptyDataSet/Source/UIScrollView+EmptyDataSet.m @@ -0,0 +1,1074 @@ +// +// UIScrollView+EmptyDataSet.m +// DZNEmptyDataSet +// https://github.com/dzenbot/DZNEmptyDataSet +// +// Created by Ignacio Romero Zurbuchen on 6/20/14. +// Copyright (c) 2016 DZN Labs. All rights reserved. +// Licence: MIT-Licence +// + +#import "UIScrollView+EmptyDataSet.h" +#import + +@interface UIView (DZNConstraintBasedLayoutExtensions) + +- (NSLayoutConstraint *)equallyRelatedConstraintWithView:(UIView *)view attribute:(NSLayoutAttribute)attribute; + +@end + +@interface DZNWeakObjectContainer : NSObject + +@property (nonatomic, readonly, weak) id weakObject; + +- (instancetype)initWithWeakObject:(id)object; + +@end + +@interface DZNEmptyDataSetView : UIView + +@property (nonatomic, readonly) UIView *contentView; +@property (nonatomic, readonly) UILabel *titleLabel; +@property (nonatomic, readonly) UILabel *detailLabel; +@property (nonatomic, readonly) UIImageView *imageView; +@property (nonatomic, readonly) UIButton *button; +@property (nonatomic, strong) UIView *customView; +@property (nonatomic, strong) UITapGestureRecognizer *tapGesture; + +@property (nonatomic, assign) CGFloat verticalOffset; +@property (nonatomic, assign) CGFloat verticalSpace; + +@property (nonatomic, assign) BOOL fadeInOnDisplay; + +- (void)setupConstraints; +- (void)prepareForReuse; + +@end + + +#pragma mark - UIScrollView+EmptyDataSet + +static char const * const kEmptyDataSetSource = "emptyDataSetSource"; +static char const * const kEmptyDataSetDelegate = "emptyDataSetDelegate"; +static char const * const kEmptyDataSetView = "emptyDataSetView"; + +#define kEmptyImageViewAnimationKey @"com.dzn.emptyDataSet.imageViewAnimation" + +@interface UIScrollView () +@property (nonatomic, readonly) DZNEmptyDataSetView *emptyDataSetView; +@end + +@implementation UIScrollView (DZNEmptyDataSet) + +#pragma mark - Getters (Public) + +- (id)emptyDataSetSource +{ + DZNWeakObjectContainer *container = objc_getAssociatedObject(self, kEmptyDataSetSource); + return container.weakObject; +} + +- (id)emptyDataSetDelegate +{ + DZNWeakObjectContainer *container = objc_getAssociatedObject(self, kEmptyDataSetDelegate); + return container.weakObject; +} + +- (BOOL)isEmptyDataSetVisible +{ + UIView *view = objc_getAssociatedObject(self, kEmptyDataSetView); + return view ? !view.hidden : NO; +} + + +#pragma mark - Getters (Private) + +- (DZNEmptyDataSetView *)emptyDataSetView +{ + DZNEmptyDataSetView *view = objc_getAssociatedObject(self, kEmptyDataSetView); + + if (!view) + { + view = [DZNEmptyDataSetView new]; + view.autoresizingMask = UIViewAutoresizingFlexibleWidth|UIViewAutoresizingFlexibleHeight; + view.hidden = YES; + + view.tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dzn_didTapContentView:)]; + view.tapGesture.delegate = self; + [view addGestureRecognizer:view.tapGesture]; + + [self setEmptyDataSetView:view]; + } + return view; +} + +- (BOOL)dzn_canDisplay +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource conformsToProtocol:@protocol(DZNEmptyDataSetSource)]) { + if ([self isKindOfClass:[UITableView class]] || [self isKindOfClass:[UICollectionView class]] || [self isKindOfClass:[UIScrollView class]]) { + return YES; + } + } + + return NO; +} + +- (NSInteger)dzn_itemsCount +{ + NSInteger items = 0; + + // UIScollView doesn't respond to 'dataSource' so let's exit + if (![self respondsToSelector:@selector(dataSource)]) { + return items; + } + + // UITableView support + if ([self isKindOfClass:[UITableView class]]) { + + UITableView *tableView = (UITableView *)self; + id dataSource = tableView.dataSource; + + NSInteger sections = 1; + + if (dataSource && [dataSource respondsToSelector:@selector(numberOfSectionsInTableView:)]) { + sections = [dataSource numberOfSectionsInTableView:tableView]; + } + + if (dataSource && [dataSource respondsToSelector:@selector(tableView:numberOfRowsInSection:)]) { + for (NSInteger section = 0; section < sections; section++) { + items += [dataSource tableView:tableView numberOfRowsInSection:section]; + } + } + } + // UICollectionView support + else if ([self isKindOfClass:[UICollectionView class]]) { + + UICollectionView *collectionView = (UICollectionView *)self; + id dataSource = collectionView.dataSource; + + NSInteger sections = 1; + + if (dataSource && [dataSource respondsToSelector:@selector(numberOfSectionsInCollectionView:)]) { + sections = [dataSource numberOfSectionsInCollectionView:collectionView]; + } + + if (dataSource && [dataSource respondsToSelector:@selector(collectionView:numberOfItemsInSection:)]) { + for (NSInteger section = 0; section < sections; section++) { + items += [dataSource collectionView:collectionView numberOfItemsInSection:section]; + } + } + } + + return items; +} + + +#pragma mark - Data Source Getters + +- (NSAttributedString *)dzn_titleLabelString +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(titleForEmptyDataSet:)]) { + NSAttributedString *string = [self.emptyDataSetSource titleForEmptyDataSet:self]; + if (string) NSAssert([string isKindOfClass:[NSAttributedString class]], @"You must return a valid NSAttributedString object for -titleForEmptyDataSet:"); + return string; + } + return nil; +} + +- (NSAttributedString *)dzn_detailLabelString +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(descriptionForEmptyDataSet:)]) { + NSAttributedString *string = [self.emptyDataSetSource descriptionForEmptyDataSet:self]; + if (string) NSAssert([string isKindOfClass:[NSAttributedString class]], @"You must return a valid NSAttributedString object for -descriptionForEmptyDataSet:"); + return string; + } + return nil; +} + +- (UIImage *)dzn_image +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(imageForEmptyDataSet:)]) { + UIImage *image = [self.emptyDataSetSource imageForEmptyDataSet:self]; + if (image) NSAssert([image isKindOfClass:[UIImage class]], @"You must return a valid UIImage object for -imageForEmptyDataSet:"); + return image; + } + return nil; +} + +- (CAAnimation *)dzn_imageAnimation +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(imageAnimationForEmptyDataSet:)]) { + CAAnimation *imageAnimation = [self.emptyDataSetSource imageAnimationForEmptyDataSet:self]; + if (imageAnimation) NSAssert([imageAnimation isKindOfClass:[CAAnimation class]], @"You must return a valid CAAnimation object for -imageAnimationForEmptyDataSet:"); + return imageAnimation; + } + return nil; +} + +- (UIColor *)dzn_imageTintColor +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(imageTintColorForEmptyDataSet:)]) { + UIColor *color = [self.emptyDataSetSource imageTintColorForEmptyDataSet:self]; + if (color) NSAssert([color isKindOfClass:[UIColor class]], @"You must return a valid UIColor object for -imageTintColorForEmptyDataSet:"); + return color; + } + return nil; +} + +- (NSAttributedString *)dzn_buttonTitleForState:(UIControlState)state +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(buttonTitleForEmptyDataSet:forState:)]) { + NSAttributedString *string = [self.emptyDataSetSource buttonTitleForEmptyDataSet:self forState:state]; + if (string) NSAssert([string isKindOfClass:[NSAttributedString class]], @"You must return a valid NSAttributedString object for -buttonTitleForEmptyDataSet:forState:"); + return string; + } + return nil; +} + +- (UIImage *)dzn_buttonImageForState:(UIControlState)state +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(buttonImageForEmptyDataSet:forState:)]) { + UIImage *image = [self.emptyDataSetSource buttonImageForEmptyDataSet:self forState:state]; + if (image) NSAssert([image isKindOfClass:[UIImage class]], @"You must return a valid UIImage object for -buttonImageForEmptyDataSet:forState:"); + return image; + } + return nil; +} + +- (UIImage *)dzn_buttonBackgroundImageForState:(UIControlState)state +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(buttonBackgroundImageForEmptyDataSet:forState:)]) { + UIImage *image = [self.emptyDataSetSource buttonBackgroundImageForEmptyDataSet:self forState:state]; + if (image) NSAssert([image isKindOfClass:[UIImage class]], @"You must return a valid UIImage object for -buttonBackgroundImageForEmptyDataSet:forState:"); + return image; + } + return nil; +} + +- (UIColor *)dzn_dataSetBackgroundColor +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(backgroundColorForEmptyDataSet:)]) { + UIColor *color = [self.emptyDataSetSource backgroundColorForEmptyDataSet:self]; + if (color) NSAssert([color isKindOfClass:[UIColor class]], @"You must return a valid UIColor object for -backgroundColorForEmptyDataSet:"); + return color; + } + return [UIColor clearColor]; +} + +- (UIView *)dzn_customView +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(customViewForEmptyDataSet:)]) { + UIView *view = [self.emptyDataSetSource customViewForEmptyDataSet:self]; + if (view) NSAssert([view isKindOfClass:[UIView class]], @"You must return a valid UIView object for -customViewForEmptyDataSet:"); + return view; + } + return nil; +} + +- (CGFloat)dzn_verticalOffset +{ + CGFloat offset = 0.0; + + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(verticalOffsetForEmptyDataSet:)]) { + offset = [self.emptyDataSetSource verticalOffsetForEmptyDataSet:self]; + } + return offset; +} + +- (CGFloat)dzn_verticalSpace +{ + if (self.emptyDataSetSource && [self.emptyDataSetSource respondsToSelector:@selector(spaceHeightForEmptyDataSet:)]) { + return [self.emptyDataSetSource spaceHeightForEmptyDataSet:self]; + } + return 0.0; +} + + +#pragma mark - Delegate Getters & Events (Private) + +- (BOOL)dzn_shouldFadeIn { + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetShouldFadeIn:)]) { + return [self.emptyDataSetDelegate emptyDataSetShouldFadeIn:self]; + } + return YES; +} + +- (BOOL)dzn_shouldDisplay +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetShouldDisplay:)]) { + return [self.emptyDataSetDelegate emptyDataSetShouldDisplay:self]; + } + return YES; +} + +- (BOOL)dzn_shouldBeForcedToDisplay +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetShouldBeForcedToDisplay:)]) { + return [self.emptyDataSetDelegate emptyDataSetShouldBeForcedToDisplay:self]; + } + return NO; +} + +- (BOOL)dzn_isTouchAllowed +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetShouldAllowTouch:)]) { + return [self.emptyDataSetDelegate emptyDataSetShouldAllowTouch:self]; + } + return YES; +} + +- (BOOL)dzn_isScrollAllowed +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetShouldAllowScroll:)]) { + return [self.emptyDataSetDelegate emptyDataSetShouldAllowScroll:self]; + } + return NO; +} + +- (BOOL)dzn_isImageViewAnimateAllowed +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetShouldAnimateImageView:)]) { + return [self.emptyDataSetDelegate emptyDataSetShouldAnimateImageView:self]; + } + return NO; +} + +- (void)dzn_willAppear +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetWillAppear:)]) { + [self.emptyDataSetDelegate emptyDataSetWillAppear:self]; + } +} + +- (void)dzn_didAppear +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetDidAppear:)]) { + [self.emptyDataSetDelegate emptyDataSetDidAppear:self]; + } +} + +- (void)dzn_willDisappear +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetWillDisappear:)]) { + [self.emptyDataSetDelegate emptyDataSetWillDisappear:self]; + } +} + +- (void)dzn_didDisappear +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetDidDisappear:)]) { + [self.emptyDataSetDelegate emptyDataSetDidDisappear:self]; + } +} + +- (void)dzn_didTapContentView:(id)sender +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSet:didTapView:)]) { + [self.emptyDataSetDelegate emptyDataSet:self didTapView:sender]; + } +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" + else if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetDidTapView:)]) { + [self.emptyDataSetDelegate emptyDataSetDidTapView:self]; + } +#pragma clang diagnostic pop +} + +- (void)dzn_didTapDataButton:(id)sender +{ + if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSet:didTapButton:)]) { + [self.emptyDataSetDelegate emptyDataSet:self didTapButton:sender]; + } +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" + else if (self.emptyDataSetDelegate && [self.emptyDataSetDelegate respondsToSelector:@selector(emptyDataSetDidTapButton:)]) { + [self.emptyDataSetDelegate emptyDataSetDidTapButton:self]; + } +#pragma clang diagnostic pop +} + + +#pragma mark - Setters (Public) + +- (void)setEmptyDataSetSource:(id)datasource +{ + if (!datasource || ![self dzn_canDisplay]) { + [self dzn_invalidate]; + } + + objc_setAssociatedObject(self, kEmptyDataSetSource, [[DZNWeakObjectContainer alloc] initWithWeakObject:datasource], OBJC_ASSOCIATION_RETAIN_NONATOMIC); + + // We add method sizzling for injecting -dzn_reloadData implementation to the native -reloadData implementation + [self swizzleIfPossible:@selector(reloadData)]; + + // Exclusively for UITableView, we also inject -dzn_reloadData to -endUpdates + if ([self isKindOfClass:[UITableView class]]) { + [self swizzleIfPossible:@selector(endUpdates)]; + } +} + +- (void)setEmptyDataSetDelegate:(id)delegate +{ + if (!delegate) { + [self dzn_invalidate]; + } + + objc_setAssociatedObject(self, kEmptyDataSetDelegate, [[DZNWeakObjectContainer alloc] initWithWeakObject:delegate], OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + + +#pragma mark - Setters (Private) + +- (void)setEmptyDataSetView:(DZNEmptyDataSetView *)view +{ + objc_setAssociatedObject(self, kEmptyDataSetView, view, OBJC_ASSOCIATION_RETAIN_NONATOMIC); +} + + +#pragma mark - Reload APIs (Public) + +- (void)reloadEmptyDataSet +{ + [self dzn_reloadEmptyDataSet]; +} + + +#pragma mark - Reload APIs (Private) + +- (void)dzn_reloadEmptyDataSet +{ + if (![self dzn_canDisplay]) { + return; + } + + if (([self dzn_shouldDisplay] && [self dzn_itemsCount] == 0) || [self dzn_shouldBeForcedToDisplay]) + { + // Notifies that the empty dataset view will appear + [self dzn_willAppear]; + + DZNEmptyDataSetView *view = self.emptyDataSetView; + + if (!view.superview) { + // Send the view all the way to the back, in case a header and/or footer is present, as well as for sectionHeaders or any other content + if (([self isKindOfClass:[UITableView class]] || [self isKindOfClass:[UICollectionView class]]) && self.subviews.count > 1) { + [self insertSubview:view atIndex:0]; + } + else { + [self addSubview:view]; + } + } + + // Removing view resetting the view and its constraints it very important to guarantee a good state + [view prepareForReuse]; + + UIView *customView = [self dzn_customView]; + + // If a non-nil custom view is available, let's configure it instead + if (customView) { + view.customView = customView; + } + else { + // Get the data from the data source + NSAttributedString *titleLabelString = [self dzn_titleLabelString]; + NSAttributedString *detailLabelString = [self dzn_detailLabelString]; + + UIImage *buttonImage = [self dzn_buttonImageForState:UIControlStateNormal]; + NSAttributedString *buttonTitle = [self dzn_buttonTitleForState:UIControlStateNormal]; + + UIImage *image = [self dzn_image]; + UIColor *imageTintColor = [self dzn_imageTintColor]; + UIImageRenderingMode renderingMode = imageTintColor ? UIImageRenderingModeAlwaysTemplate : UIImageRenderingModeAlwaysOriginal; + + view.verticalSpace = [self dzn_verticalSpace]; + + // Configure Image + if (image) { + if ([image respondsToSelector:@selector(imageWithRenderingMode:)]) { + view.imageView.image = [image imageWithRenderingMode:renderingMode]; + view.imageView.tintColor = imageTintColor; + } + else { + // iOS 6 fallback: insert code to convert imaged if needed + view.imageView.image = image; + } + } + + // Configure title label + if (titleLabelString) { + view.titleLabel.attributedText = titleLabelString; + } + + // Configure detail label + if (detailLabelString) { + view.detailLabel.attributedText = detailLabelString; + } + + // Configure button + if (buttonImage) { + [view.button setImage:buttonImage forState:UIControlStateNormal]; + [view.button setImage:[self dzn_buttonImageForState:UIControlStateHighlighted] forState:UIControlStateHighlighted]; + } + else if (buttonTitle) { + [view.button setAttributedTitle:buttonTitle forState:UIControlStateNormal]; + [view.button setAttributedTitle:[self dzn_buttonTitleForState:UIControlStateHighlighted] forState:UIControlStateHighlighted]; + [view.button setBackgroundImage:[self dzn_buttonBackgroundImageForState:UIControlStateNormal] forState:UIControlStateNormal]; + [view.button setBackgroundImage:[self dzn_buttonBackgroundImageForState:UIControlStateHighlighted] forState:UIControlStateHighlighted]; + } + } + + // Configure offset + view.verticalOffset = [self dzn_verticalOffset]; + + // Configure the empty dataset view + view.backgroundColor = [self dzn_dataSetBackgroundColor]; + view.hidden = NO; + view.clipsToBounds = YES; + + // Configure empty dataset userInteraction permission + view.userInteractionEnabled = [self dzn_isTouchAllowed]; + + // Configure empty dataset fade in display + view.fadeInOnDisplay = [self dzn_shouldFadeIn]; + + [view setupConstraints]; + + [UIView performWithoutAnimation:^{ + [view layoutIfNeeded]; + }]; + + // Configure scroll permission + self.scrollEnabled = [self dzn_isScrollAllowed]; + + // Configure image view animation + if ([self dzn_isImageViewAnimateAllowed]) + { + CAAnimation *animation = [self dzn_imageAnimation]; + + if (animation) { + [self.emptyDataSetView.imageView.layer addAnimation:animation forKey:kEmptyImageViewAnimationKey]; + } + } + else if ([self.emptyDataSetView.imageView.layer animationForKey:kEmptyImageViewAnimationKey]) { + [self.emptyDataSetView.imageView.layer removeAnimationForKey:kEmptyImageViewAnimationKey]; + } + + // Notifies that the empty dataset view did appear + [self dzn_didAppear]; + } + else if (self.isEmptyDataSetVisible) { + [self dzn_invalidate]; + } +} + +- (void)dzn_invalidate +{ + // Notifies that the empty dataset view will disappear + [self dzn_willDisappear]; + + if (self.emptyDataSetView) { + [self.emptyDataSetView prepareForReuse]; + [self.emptyDataSetView removeFromSuperview]; + + [self setEmptyDataSetView:nil]; + } + + self.scrollEnabled = YES; + + // Notifies that the empty dataset view did disappear + [self dzn_didDisappear]; +} + + +#pragma mark - Method Swizzling + +static NSMutableDictionary *_impLookupTable; +static NSString *const DZNSwizzleInfoPointerKey = @"pointer"; +static NSString *const DZNSwizzleInfoOwnerKey = @"owner"; +static NSString *const DZNSwizzleInfoSelectorKey = @"selector"; + +// Based on Bryce Buchanan's swizzling technique http://blog.newrelic.com/2014/04/16/right-way-to-swizzle/ +// And Juzzin's ideas https://github.com/juzzin/JUSEmptyViewController + +void dzn_original_implementation(id self, SEL _cmd) +{ + // Fetch original implementation from lookup table + Class baseClass = dzn_baseClassToSwizzleForTarget(self); + NSString *key = dzn_implementationKey(baseClass, _cmd); + + NSDictionary *swizzleInfo = [_impLookupTable objectForKey:key]; + NSValue *impValue = [swizzleInfo valueForKey:DZNSwizzleInfoPointerKey]; + + IMP impPointer = [impValue pointerValue]; + + // We then inject the additional implementation for reloading the empty dataset + // Doing it before calling the original implementation does update the 'isEmptyDataSetVisible' flag on time. + [self dzn_reloadEmptyDataSet]; + + // If found, call original implementation + if (impPointer) { + ((void(*)(id,SEL))impPointer)(self,_cmd); + } +} + +NSString *dzn_implementationKey(Class class, SEL selector) +{ + if (!class || !selector) { + return nil; + } + + NSString *className = NSStringFromClass([class class]); + + NSString *selectorName = NSStringFromSelector(selector); + return [NSString stringWithFormat:@"%@_%@",className,selectorName]; +} + +Class dzn_baseClassToSwizzleForTarget(id target) +{ + if ([target isKindOfClass:[UITableView class]]) { + return [UITableView class]; + } + else if ([target isKindOfClass:[UICollectionView class]]) { + return [UICollectionView class]; + } + else if ([target isKindOfClass:[UIScrollView class]]) { + return [UIScrollView class]; + } + + return nil; +} + +- (void)swizzleIfPossible:(SEL)selector +{ + // Check if the target responds to selector + if (![self respondsToSelector:selector]) { + return; + } + + // Create the lookup table + if (!_impLookupTable) { + _impLookupTable = [[NSMutableDictionary alloc] initWithCapacity:3]; // 3 represent the supported base classes + } + + // We make sure that setImplementation is called once per class kind, UITableView or UICollectionView. + for (NSDictionary *info in [_impLookupTable allValues]) { + Class class = [info objectForKey:DZNSwizzleInfoOwnerKey]; + NSString *selectorName = [info objectForKey:DZNSwizzleInfoSelectorKey]; + + if ([selectorName isEqualToString:NSStringFromSelector(selector)]) { + if ([self isKindOfClass:class]) { + return; + } + } + } + + Class baseClass = dzn_baseClassToSwizzleForTarget(self); + NSString *key = dzn_implementationKey(baseClass, selector); + NSValue *impValue = [[_impLookupTable objectForKey:key] valueForKey:DZNSwizzleInfoPointerKey]; + + // If the implementation for this class already exist, skip!! + if (impValue || !key || !baseClass) { + return; + } + + // Swizzle by injecting additional implementation + Method method = class_getInstanceMethod(baseClass, selector); + IMP dzn_newImplementation = method_setImplementation(method, (IMP)dzn_original_implementation); + + // Store the new implementation in the lookup table + NSDictionary *swizzledInfo = @{DZNSwizzleInfoOwnerKey: baseClass, + DZNSwizzleInfoSelectorKey: NSStringFromSelector(selector), + DZNSwizzleInfoPointerKey: [NSValue valueWithPointer:dzn_newImplementation]}; + + [_impLookupTable setObject:swizzledInfo forKey:key]; +} + + +#pragma mark - UIGestureRecognizerDelegate Methods + +- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer +{ + if ([gestureRecognizer.view isEqual:self.emptyDataSetView]) { + return [self dzn_isTouchAllowed]; + } + + return [super gestureRecognizerShouldBegin:gestureRecognizer]; +} + +- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer +{ + UIGestureRecognizer *tapGesture = self.emptyDataSetView.tapGesture; + + if ([gestureRecognizer isEqual:tapGesture] || [otherGestureRecognizer isEqual:tapGesture]) { + return YES; + } + + // defer to emptyDataSetDelegate's implementation if available + if ( (self.emptyDataSetDelegate != (id)self) && [self.emptyDataSetDelegate respondsToSelector:@selector(gestureRecognizer:shouldRecognizeSimultaneouslyWithGestureRecognizer:)]) { + return [(id)self.emptyDataSetDelegate gestureRecognizer:gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:otherGestureRecognizer]; + } + + return NO; +} + +@end + + +#pragma mark - DZNEmptyDataSetView + +@interface DZNEmptyDataSetView () +@end + +@implementation DZNEmptyDataSetView +@synthesize contentView = _contentView; +@synthesize titleLabel = _titleLabel, detailLabel = _detailLabel, imageView = _imageView, button = _button; + +#pragma mark - Initialization Methods + +- (instancetype)init +{ + self = [super init]; + if (self) { + [self addSubview:self.contentView]; + } + return self; +} + +- (void)didMoveToSuperview +{ + self.frame = self.superview.bounds; + + void(^fadeInBlock)(void) = ^{_contentView.alpha = 1.0;}; + + if (self.fadeInOnDisplay) { + [UIView animateWithDuration:0.25 + animations:fadeInBlock + completion:NULL]; + } + else { + fadeInBlock(); + } +} + + +#pragma mark - Getters + +- (UIView *)contentView +{ + if (!_contentView) + { + _contentView = [UIView new]; + _contentView.translatesAutoresizingMaskIntoConstraints = NO; + _contentView.backgroundColor = [UIColor clearColor]; + _contentView.userInteractionEnabled = YES; + _contentView.alpha = 0; + } + return _contentView; +} + +- (UIImageView *)imageView +{ + if (!_imageView) + { + _imageView = [UIImageView new]; + _imageView.translatesAutoresizingMaskIntoConstraints = NO; + _imageView.backgroundColor = [UIColor clearColor]; + _imageView.contentMode = UIViewContentModeScaleAspectFit; + _imageView.userInteractionEnabled = NO; + _imageView.accessibilityIdentifier = @"empty set background image"; + + [_contentView addSubview:_imageView]; + } + return _imageView; +} + +- (UILabel *)titleLabel +{ + if (!_titleLabel) + { + _titleLabel = [UILabel new]; + _titleLabel.translatesAutoresizingMaskIntoConstraints = NO; + _titleLabel.backgroundColor = [UIColor clearColor]; + + _titleLabel.font = [UIFont systemFontOfSize:27.0]; + _titleLabel.textColor = [UIColor colorWithWhite:0.6 alpha:1.0]; + _titleLabel.textAlignment = NSTextAlignmentCenter; + _titleLabel.lineBreakMode = NSLineBreakByWordWrapping; + _titleLabel.numberOfLines = 0; + _titleLabel.accessibilityIdentifier = @"empty set title"; + + [_contentView addSubview:_titleLabel]; + } + return _titleLabel; +} + +- (UILabel *)detailLabel +{ + if (!_detailLabel) + { + _detailLabel = [UILabel new]; + _detailLabel.translatesAutoresizingMaskIntoConstraints = NO; + _detailLabel.backgroundColor = [UIColor clearColor]; + + _detailLabel.font = [UIFont systemFontOfSize:17.0]; + _detailLabel.textColor = [UIColor colorWithWhite:0.6 alpha:1.0]; + _detailLabel.textAlignment = NSTextAlignmentCenter; + _detailLabel.lineBreakMode = NSLineBreakByWordWrapping; + _detailLabel.numberOfLines = 0; + _detailLabel.accessibilityIdentifier = @"empty set detail label"; + + [_contentView addSubview:_detailLabel]; + } + return _detailLabel; +} + +- (UIButton *)button +{ + if (!_button) + { + _button = [UIButton buttonWithType:UIButtonTypeCustom]; + _button.translatesAutoresizingMaskIntoConstraints = NO; + _button.backgroundColor = [UIColor clearColor]; + _button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter; + _button.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter; + _button.accessibilityIdentifier = @"empty set button"; + + [_button addTarget:self action:@selector(didTapButton:) forControlEvents:UIControlEventTouchUpInside]; + + [_contentView addSubview:_button]; + } + return _button; +} + +- (BOOL)canShowImage +{ + return (_imageView.image && _imageView.superview); +} + +- (BOOL)canShowTitle +{ + return (_titleLabel.attributedText.string.length > 0 && _titleLabel.superview); +} + +- (BOOL)canShowDetail +{ + return (_detailLabel.attributedText.string.length > 0 && _detailLabel.superview); +} + +- (BOOL)canShowButton +{ + if ([_button attributedTitleForState:UIControlStateNormal].string.length > 0 || [_button imageForState:UIControlStateNormal]) { + return (_button.superview != nil); + } + return NO; +} + + +#pragma mark - Setters + +- (void)setCustomView:(UIView *)view +{ + if (!view) { + return; + } + + if (_customView) { + [_customView removeFromSuperview]; + _customView = nil; + } + + _customView = view; + _customView.translatesAutoresizingMaskIntoConstraints = NO; + [self.contentView addSubview:_customView]; +} + + +#pragma mark - Action Methods + +- (void)didTapButton:(id)sender +{ + SEL selector = NSSelectorFromString(@"dzn_didTapDataButton:"); + + if ([self.superview respondsToSelector:selector]) { + [self.superview performSelector:selector withObject:sender afterDelay:0.0f]; + } +} + +- (void)removeAllConstraints +{ + [self removeConstraints:self.constraints]; + [_contentView removeConstraints:_contentView.constraints]; +} + +- (void)prepareForReuse +{ + [self.contentView.subviews makeObjectsPerformSelector:@selector(removeFromSuperview)]; + + _titleLabel = nil; + _detailLabel = nil; + _imageView = nil; + _button = nil; + _customView = nil; + + [self removeAllConstraints]; +} + + +#pragma mark - Auto-Layout Configuration + +- (void)setupConstraints +{ + // First, configure the content view constaints + // The content view must alway be centered to its superview + NSLayoutConstraint *centerXConstraint = [self equallyRelatedConstraintWithView:self.contentView attribute:NSLayoutAttributeCenterX]; + NSLayoutConstraint *centerYConstraint = [self equallyRelatedConstraintWithView:self.contentView attribute:NSLayoutAttributeCenterY]; + + [self addConstraint:centerXConstraint]; + [self addConstraint:centerYConstraint]; + [self addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[contentView]|" options:0 metrics:nil views:@{@"contentView": self.contentView}]]; + + // When a custom offset is available, we adjust the vertical constraints' constants + if (self.verticalOffset != 0 && self.constraints.count > 0) { + centerYConstraint.constant = self.verticalOffset; + } + + // If applicable, set the custom view's constraints + if (_customView) { + [self.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|[customView]|" options:0 metrics:nil views:@{@"customView":_customView}]]; + [self.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"V:|[customView]|" options:0 metrics:nil views:@{@"customView":_customView}]]; + } + else { + CGFloat width = CGRectGetWidth(self.frame) ? : CGRectGetWidth([UIScreen mainScreen].bounds); + CGFloat padding = roundf(width/16.0); + CGFloat verticalSpace = self.verticalSpace ? : 11.0; // Default is 11 pts + + NSMutableArray *subviewStrings = [NSMutableArray array]; + NSMutableDictionary *views = [NSMutableDictionary dictionary]; + NSDictionary *metrics = @{@"padding": @(padding)}; + + // Assign the image view's horizontal constraints + if (_imageView.superview) { + + [subviewStrings addObject:@"imageView"]; + views[[subviewStrings lastObject]] = _imageView; + + [self.contentView addConstraint:[self.contentView equallyRelatedConstraintWithView:_imageView attribute:NSLayoutAttributeCenterX]]; + } + + // Assign the title label's horizontal constraints + if ([self canShowTitle]) { + + [subviewStrings addObject:@"titleLabel"]; + views[[subviewStrings lastObject]] = _titleLabel; + + [self.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-(padding@750)-[titleLabel(>=0)]-(padding@750)-|" + options:0 metrics:metrics views:views]]; + } + // or removes from its superview + else { + [_titleLabel removeFromSuperview]; + _titleLabel = nil; + } + + // Assign the detail label's horizontal constraints + if ([self canShowDetail]) { + + [subviewStrings addObject:@"detailLabel"]; + views[[subviewStrings lastObject]] = _detailLabel; + + [self.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-(padding@750)-[detailLabel(>=0)]-(padding@750)-|" + options:0 metrics:metrics views:views]]; + } + // or removes from its superview + else { + [_detailLabel removeFromSuperview]; + _detailLabel = nil; + } + + // Assign the button's horizontal constraints + if ([self canShowButton]) { + + [subviewStrings addObject:@"button"]; + views[[subviewStrings lastObject]] = _button; + + [self.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:|-(padding@750)-[button(>=0)]-(padding@750)-|" + options:0 metrics:metrics views:views]]; + } + // or removes from its superview + else { + [_button removeFromSuperview]; + _button = nil; + } + + + NSMutableString *verticalFormat = [NSMutableString new]; + + // Build a dynamic string format for the vertical constraints, adding a margin between each element. Default is 11 pts. + for (int i = 0; i < subviewStrings.count; i++) { + + NSString *string = subviewStrings[i]; + [verticalFormat appendFormat:@"[%@]", string]; + + if (i < subviewStrings.count-1) { + [verticalFormat appendFormat:@"-(%.f@750)-", verticalSpace]; + } + } + + // Assign the vertical constraints to the content view + if (verticalFormat.length > 0) { + [self.contentView addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:[NSString stringWithFormat:@"V:|%@|", verticalFormat] + options:0 metrics:metrics views:views]]; + } + } +} + +- (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event +{ + UIView *hitView = [super hitTest:point withEvent:event]; + + // Return any UIControl instance such as buttons, segmented controls, switches, etc. + if ([hitView isKindOfClass:[UIControl class]]) { + return hitView; + } + + // Return either the contentView or customView + if ([hitView isEqual:_contentView] || [hitView isEqual:_customView]) { + return hitView; + } + + return nil; +} + +@end + + +#pragma mark - UIView+DZNConstraintBasedLayoutExtensions + +@implementation UIView (DZNConstraintBasedLayoutExtensions) + +- (NSLayoutConstraint *)equallyRelatedConstraintWithView:(UIView *)view attribute:(NSLayoutAttribute)attribute +{ + return [NSLayoutConstraint constraintWithItem:view + attribute:attribute + relatedBy:NSLayoutRelationEqual + toItem:self + attribute:attribute + multiplier:1.0 + constant:0.0]; +} + +@end + +#pragma mark - DZNWeakObjectContainer + +@implementation DZNWeakObjectContainer + +- (instancetype)initWithWeakObject:(id)object +{ + self = [super init]; + if (self) { + _weakObject = object; + } + return self; +} + +@end diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index 56f27f0..b534555 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -15,6 +15,7 @@ PODS: - AFNetworking/UIKit (4.0.1): - AFNetworking/NSURLSession - Bugly (2.6.1) + - DZNEmptyDataSet (1.8.1) - LookinServer (1.2.8): - LookinServer/Core (= 1.2.8) - LookinServer/Core (1.2.8) @@ -29,6 +30,7 @@ PODS: DEPENDENCIES: - AFNetworking (= 4.0.1) - Bugly (= 2.6.1) + - DZNEmptyDataSet (= 1.8.1) - LookinServer - Masonry (= 1.1.0) - MBProgressHUD (= 1.2.0) @@ -40,6 +42,7 @@ SPEC REPOS: https://github.com/CocoaPods/Specs.git: - AFNetworking - Bugly + - DZNEmptyDataSet - LookinServer - Masonry - MBProgressHUD @@ -50,6 +53,7 @@ SPEC REPOS: SPEC CHECKSUMS: AFNetworking: 3bd23d814e976cd148d7d44c3ab78017b744cd58 Bugly: 217ac2ce5f0f2626d43dbaa4f70764c953a26a31 + DZNEmptyDataSet: 9525833b9e68ac21c30253e1d3d7076cc828eaa7 LookinServer: 1b2b61c6402ae29fa22182d48f5cd067b4e99e80 Masonry: 678fab65091a9290e40e2832a55e7ab731aad201 MBProgressHUD: 3ee5efcc380f6a79a7cc9b363dd669c5e1ae7406 @@ -57,6 +61,6 @@ SPEC CHECKSUMS: MJRefresh: ff9e531227924c84ce459338414550a05d2aea78 SDWebImage: f29024626962457f3470184232766516dee8dfea -PODFILE CHECKSUM: c61e30c30e1b3bee64d09e23c2f83fc77e0f8ff5 +PODFILE CHECKSUM: 3619f65be1b908e009b5ab96b3d06d846883eac0 COCOAPODS: 1.16.2 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index b9819ec..96f8de9 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -19,1080 +19,1110 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 00DAE48C9A4FBCD1FCAA922CA57B45F9 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 5BBFBF8D6A03A53F430C80D3F81065AB /* SDWebImageDownloaderRequestModifier.m */; }; - 021ACCD4343D154E4782A5ECE222A8DF /* LookinIvarTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 333ABAF85F95BC941804A6F683E53BBE /* LookinIvarTrace.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 042D40751BD2F51FBE9FECD4707CBBE9 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C8B5618982E2E6168138CE3FFF075755 /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 0453019EC6578A67B82CF569EC765546 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 73686ECF343E491D810253E33779376F /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 05E2B7C1DB7528A0BBEA1521BE0DBAF1 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C4C1F05883DF3D04F61132B4F36E8DC /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 06C4E233E7977DB81A24482E69B2D7D7 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = A23A3033A431C14F5AD66E9741FB3A58 /* UIImage+Transform.m */; }; - 0845A6CB7AE77A99CC475BD14101FE87 /* LookinAttrType.h in Headers */ = {isa = PBXBuildFile; fileRef = CBD3AE73EB188B66AA675A72083BBE9B /* LookinAttrType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 08719ABCE689ED74FE7486B1E49DAA6C /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = BE17739673354E3051FF9B2B5648AE3D /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 089F3C4BAA46A37EC5763DD312771021 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ABF17E26D71FF7DF0ACDF8B97EA1635 /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 08D50C5AC969A3701B6F9137CF3A10F1 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 23A54C1843E43882816ACA6AB8E7A6FC /* UIImage+ForceDecode.m */; }; - 09A2ACBC8CE1761652EAA20886AEFE10 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 94E5C41EB7247DD6A572963BAEFD320B /* SDImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0B0E6CECDF516BC83756C1D5515A725B /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 0026144A7C9427BCB0EBD09F94066337 /* SDAsyncBlockOperation.m */; }; - 0B449236AF25C6C11B0DE3D6D0E4A19B /* LookinEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D00B3D5C37D2FF57ECB26E0EDE63289A /* LookinEventHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 0BE3B8DB6034364E7CF3AE9D01C7C0B4 /* CALayer+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 27BDAC0DA386BE97284D684C8E350F09 /* CALayer+Lookin.m */; }; - 0C79142D1349DD9A969F47A0A8AAA0CB /* Lookin_PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = F35FA64D7BA93E67E700BB9CFECA2FE6 /* Lookin_PTProtocol.m */; }; - 0EF10747EF2A02413E84BD5EF7C87A4B /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D20C8C99B2B5B0F72BBB978DF79F7238 /* MJRefreshNormalHeader.m */; }; - 0F1D0F5DCC8C94A4C684DF846D14F436 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 4991209596786BDA2DC8D5FD065F088F /* SDWebImagePrefetcher.m */; }; - 0FF9F459ED16719292443A4C99B52B20 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 6950AEBC05A59EB2DABC29EE342A50A4 /* SDImageCache.m */; }; - 10017B43AC38C3A89D7AC1376C6E7066 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BF31B7CF51BCA3D85DCE8EED8BAC1F7 /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 104D9196010D2A8C52C0C19E9C9D52E8 /* MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = C50DECAF244FB1921DE30DDDE816977E /* MBProgressHUD-dummy.m */; }; - 117F4B6F653A8DA2637C5C93B4993884 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FDF7ECF8C6D8AA904A22072806CE983 /* Peertalk.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 11AFFEE8BDE375C27BCB46DA5984AE73 /* Pods-keyBoard-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A2D8E1EB42D41EA6B94901E5B68C9011 /* Pods-keyBoard-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 11C929E6BFB46F981685446F26DCE605 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C7CFF612DDC54A09FE6D13A592AF845D /* MJRefreshAutoFooter.m */; }; - 11D4DC1FCE5647EEA8484AA4A880AF8F /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 0125C3DEE2098883DF42D35D1A66AFA2 /* MBProgressHUD.m */; }; - 126496714AD564062A8C10787CC01B8B /* MJFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = FF31450F87E6146991BF9BBEAEEE285A /* MJFoundation.m */; }; - 14943D0EE97A4966510A86F5C3FC66A5 /* MJExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A9823CD9135BF2978F9FFBCEDF1A0D1 /* MJExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 14CA284AC4FF1EED75E785641EE98034 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 62A83195A830F9F701797F5F472A25CB /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 150116E888969E8304BA3E2BB6529461 /* LookinHierarchyFile.h in Headers */ = {isa = PBXBuildFile; fileRef = CE25ED6CF9670E7896E51158F52BA589 /* LookinHierarchyFile.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 165F1C9CBD621828C788A3018D0426C5 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = EF160706DC6937D3D67236093EED5E10 /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 00DAE48C9A4FBCD1FCAA922CA57B45F9 /* SDWebImageDownloaderRequestModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E032DF8C0EDECB1E6B5FC978329BCCB /* SDWebImageDownloaderRequestModifier.m */; }; + 021ACCD4343D154E4782A5ECE222A8DF /* LookinIvarTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = BC7945E933EE63600C092AB79AA72C2F /* LookinIvarTrace.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 03D2575E57C7D125A088A595AC648A01 /* Pods-keyBoard-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = A2D8E1EB42D41EA6B94901E5B68C9011 /* Pods-keyBoard-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 042D40751BD2F51FBE9FECD4707CBBE9 /* SDDeviceHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 04B0F3874F09EBE80699B6F6190618CF /* SDDeviceHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 0453019EC6578A67B82CF569EC765546 /* SDFileAttributeHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = B9B834072B4E8991D6DF85D46E52487D /* SDFileAttributeHelper.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 05E2B7C1DB7528A0BBEA1521BE0DBAF1 /* MASViewAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = FD619A8C6AE1530EBE78720CF5B6E070 /* MASViewAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 06C4E233E7977DB81A24482E69B2D7D7 /* UIImage+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BA08173DE18AE8A2B6EA7B2AEE2CFE6 /* UIImage+Transform.m */; }; + 0845A6CB7AE77A99CC475BD14101FE87 /* LookinAttrType.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C04E01C3DF3AE62C5CFD110E6B877F8 /* LookinAttrType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 08719ABCE689ED74FE7486B1E49DAA6C /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F9BBEB1EC2D93C4F1310CC77156259A6 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 089F3C4BAA46A37EC5763DD312771021 /* SDImageIOAnimatedCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F77AA7D657B21209BD6971573D0F5CBE /* SDImageIOAnimatedCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 08D50C5AC969A3701B6F9137CF3A10F1 /* UIImage+ForceDecode.m in Sources */ = {isa = PBXBuildFile; fileRef = 1137C7CB8F80567B0D1E813334A9CE20 /* UIImage+ForceDecode.m */; }; + 09A2ACBC8CE1761652EAA20886AEFE10 /* SDImageCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F2228171E0DFE963C630494854128C45 /* SDImageCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0B0E6CECDF516BC83756C1D5515A725B /* SDAsyncBlockOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4D2E1BF70B6EB2A16C43E552F29FE560 /* SDAsyncBlockOperation.m */; }; + 0B449236AF25C6C11B0DE3D6D0E4A19B /* LookinEventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 005531FD65A2DC8E04EE9C5595573265 /* LookinEventHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 0BE3B8DB6034364E7CF3AE9D01C7C0B4 /* CALayer+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 127D81646E9B973EF484FF2443AFF5F6 /* CALayer+Lookin.m */; }; + 0C79142D1349DD9A969F47A0A8AAA0CB /* Lookin_PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 529CE6F2D4062A8679207A37C0D33C11 /* Lookin_PTProtocol.m */; }; + 0EF10747EF2A02413E84BD5EF7C87A4B /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 84D806687455E05BEF29EB85BB74E03F /* MJRefreshNormalHeader.m */; }; + 0F1D0F5DCC8C94A4C684DF846D14F436 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = A20F44CA8CE968BE4F558B3535572E6E /* SDWebImagePrefetcher.m */; }; + 0FF9F459ED16719292443A4C99B52B20 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B9DE99C87B3A8BB38D98079456DFE44 /* SDImageCache.m */; }; + 10017B43AC38C3A89D7AC1376C6E7066 /* SDImageLoadersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 36313F10E4B270659EA103F91F90011E /* SDImageLoadersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 104D9196010D2A8C52C0C19E9C9D52E8 /* MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B1C5464F49ED58861A679B29B833103 /* MBProgressHUD-dummy.m */; }; + 111F1837D2B8716CC02E36A8114826AC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; + 117F4B6F653A8DA2637C5C93B4993884 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 70DCC77621C4107A20AF6B4737F85A9A /* Peertalk.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 11C929E6BFB46F981685446F26DCE605 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C9A66D2468FEF35002A499092816E25 /* MJRefreshAutoFooter.m */; }; + 11D4DC1FCE5647EEA8484AA4A880AF8F /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD9A42D3BF590774696502C0055F7A4 /* MBProgressHUD.m */; }; + 126496714AD564062A8C10787CC01B8B /* MJFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = B043C26FD7838BC3DBF026752B5B7EC2 /* MJFoundation.m */; }; + 14943D0EE97A4966510A86F5C3FC66A5 /* MJExtension-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 684C7619F40452AE337105C72D36F7BC /* MJExtension-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 14CA284AC4FF1EED75E785641EE98034 /* SDImageCacheConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 48AB75E0A07ACD038FD4DEE1CA9062A9 /* SDImageCacheConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 150116E888969E8304BA3E2BB6529461 /* LookinHierarchyFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DBDE11C24E2752A8FAC2F762D4136D4 /* LookinHierarchyFile.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 15B27182B591769C57B55544260DC886 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; + 165F1C9CBD621828C788A3018D0426C5 /* SDImageAPNGCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CC1C56C3527898F484B32A302420EAA /* SDImageAPNGCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; 16D7DCB7CC985C33EEC41B371C029C84 /* SDWebImage-SDWebImage in Resources */ = {isa = PBXBuildFile; fileRef = CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */; }; - 1708C1D28B421C4AD310426D1695CE77 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 68DB8636DC57D1EA269FFF0F85A7CDB9 /* SDAnimatedImage.m */; }; - 1754DD5511A7BF462B116F70B0D4006A /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = E6056659A998527E6442283401F73F8C /* SDWebImageOperation.m */; }; - 1830558A4D2D63C8E76BC3136D8213F9 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = 287837E4829C3C9325D7CA4AE61A932B /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 18660FA595DBE133BB784E813A7122A8 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD3BF85130EDA6091AA65991889DE58 /* SDImageHEICCoder.m */; }; - 186B573F1BEB8A23419A02814A7741DB /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 663D9E300DA4F769A31AAAABA67EBBA6 /* MJRefreshFooter.m */; }; - 18AD90784D549657DF51BC8377DA3085 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CADC2A13C9EE60949F900D6769C01BD /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1B52E938D7999FC0CDA2AA22674948EB /* LookinAttributesGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = D81389FD4C9A4DEF5A2060CF2B2A688E /* LookinAttributesGroup.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1B6CE67196EE181E6B56788EFC7E00D3 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 638C03AF9AB2713DC73B30A646C0DC90 /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1BC44E2FDD197D5210A23C9CCF1A906B /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = DB661D651B8F71A7983DAE8D69D98538 /* SDWebImageCompat.m */; }; - 1C5CCB87E5B9C500F07A8244D7906295 /* LookinAppInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DBF92CBCD504B7655E136ED3F7D4692 /* LookinAppInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1C8B70C74291A3076746C3B18781568E /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 244C9CEE32E6C06BAA36978339784F3B /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 1CA85ECC202E5CF62530BAD7C0DCDAF2 /* LookinHierarchyInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 19292A12696E9A832B1F849C625A4DDB /* LookinHierarchyInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1D18A1A5D485D57192B021A8765C0AF5 /* LookinTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = D97CF6DE5D7C5DF629751E70D281C245 /* LookinTuple.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1EA011B45EC780B434507AFB3D9647ED /* NSObject+MJCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 38A4C3A9E16163D57E55A8FB9D95F4BB /* NSObject+MJCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1EC3AEA15AE416A53357261B37C622BD /* LKS_TraceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C0F07273ADA871BC090DF5208E1A0A56 /* LKS_TraceManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1ECC5F320AEFB120081358B4FFB7442F /* NSString+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = F792F5861B1266F441753C363FFF2235 /* NSString+MJExtension.m */; }; - 1EDC6F899051F0E858270F7556AF2F12 /* UIVisualEffectView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = A8895D2D2C4915F7E01602C14C9790D6 /* UIVisualEffectView+LookinServer.m */; }; - 1EDF5F5B68D4A76CE59D5B6CC7B6C469 /* LookinAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 12D98E55A185D3ED0A0ED35568176EF0 /* LookinAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1FD36A180D43C773D95D8E5BF719494C /* LookinDisplayItemDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F3EE4F79EB9430C5D53E0A47FA9BC09F /* LookinDisplayItemDetail.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 1FDEA3FFA45F29C1331723E9579D66A5 /* LookinAutoLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = F672E8709EE8033AF31A696FDFBDC7AA /* LookinAutoLayoutConstraint.m */; }; - 2055774CD703B52DABFB1CC588394A94 /* MJExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61F45ECF668F559F21F38225F3EB83F4 /* MJExtension-dummy.m */; }; - 20D618EF3EA5E3BE96DA24D36E3CA9EF /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CC8332A2663A93250DBF257AFC80616 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 20E738E52B4712385489A62374C74C7F /* Lookin_PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = E607C82BF99994CACC0E78311762BD7B /* Lookin_PTUSBHub.m */; }; - 22516EA77E7120000632C30BD9A03927 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = B04FF993968810D24E3CB19E5048C2E8 /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 231A40F14D020AE2F61AA5C3289E6CF9 /* UITextView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = EDFDA31DC51830774328969AB1B612D1 /* UITextView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2460C08042AF8B7D0492A062F755986E /* NSString+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A3B32E224CFE4ADC45DABBF86A9DA3 /* NSString+Lookin.m */; }; - 24E8E4ED0B5D988E3346E6638619F4E4 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = C610AA6DA97A6D2E48F1FD51BCBCE402 /* SDImageFrame.m */; }; - 24E963C1D6245F98BAC8A0ACCB7DE987 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 83749586E57DDEB645F97D1F5F81297A /* NSBundle+MJRefresh.m */; }; + 1708C1D28B421C4AD310426D1695CE77 /* SDAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = C65FA825F301900A712EE6A07A0AB5B1 /* SDAnimatedImage.m */; }; + 1754DD5511A7BF462B116F70B0D4006A /* SDWebImageOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AA2F2ED2EA023000B96610016FEAA39 /* SDWebImageOperation.m */; }; + 1830558A4D2D63C8E76BC3136D8213F9 /* UIImage+ExtendedCacheData.h in Headers */ = {isa = PBXBuildFile; fileRef = F03B20F6D37CC749251AB5CCC78D72C1 /* UIImage+ExtendedCacheData.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 18660FA595DBE133BB784E813A7122A8 /* SDImageHEICCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B5FB13EC3013463693C1FE028FCC5765 /* SDImageHEICCoder.m */; }; + 186B573F1BEB8A23419A02814A7741DB /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 090F520F3754358826862D9DF4C2CAF5 /* MJRefreshFooter.m */; }; + 18AD90784D549657DF51BC8377DA3085 /* SDWebImageDownloaderResponseModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = BA6DA15455885EB86F27D5BA1D768667 /* SDWebImageDownloaderResponseModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1B52E938D7999FC0CDA2AA22674948EB /* LookinAttributesGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = 356511999B4B35573B2770506E59776D /* LookinAttributesGroup.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1B6CE67196EE181E6B56788EFC7E00D3 /* SDImageGIFCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = D5958FC9FA930E12B105C99F1D5195EC /* SDImageGIFCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1BC44E2FDD197D5210A23C9CCF1A906B /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = BE5FCC9A2FCD1DFC712F74F0116FDFC1 /* SDWebImageCompat.m */; }; + 1C5CCB87E5B9C500F07A8244D7906295 /* LookinAppInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A1F611427BBE81A4BBB7FDFA2FC4101 /* LookinAppInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1C8B70C74291A3076746C3B18781568E /* SDImageCachesManagerOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 880A805BA0B5B68686832A5A2B467CB3 /* SDImageCachesManagerOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 1CA85ECC202E5CF62530BAD7C0DCDAF2 /* LookinHierarchyInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D40CC721080669F5E946CDA95D45E6AA /* LookinHierarchyInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1D18A1A5D485D57192B021A8765C0AF5 /* LookinTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = AD3DB31E06571161436EBC1E35701B6C /* LookinTuple.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1EA011B45EC780B434507AFB3D9647ED /* NSObject+MJCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = A8E31D04B3BEDEC2470A24EC3B3C30AF /* NSObject+MJCoding.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1EC3AEA15AE416A53357261B37C622BD /* LKS_TraceManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 56427D5143AF4020D59AE1CB2C056990 /* LKS_TraceManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1ECC5F320AEFB120081358B4FFB7442F /* NSString+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = CDBDFF0EFD2E6EA22CB715FFCB21045F /* NSString+MJExtension.m */; }; + 1EDC6F899051F0E858270F7556AF2F12 /* UIVisualEffectView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = B125695DDC9E0DF8EFE153F258E5D694 /* UIVisualEffectView+LookinServer.m */; }; + 1EDF5F5B68D4A76CE59D5B6CC7B6C469 /* LookinAttribute.h in Headers */ = {isa = PBXBuildFile; fileRef = 27A2E52335BCCF9445465B9262488865 /* LookinAttribute.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1FD36A180D43C773D95D8E5BF719494C /* LookinDisplayItemDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 62A09C0A31058D2493F1981FBD38A2B6 /* LookinDisplayItemDetail.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 1FDEA3FFA45F29C1331723E9579D66A5 /* LookinAutoLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 74FE12FD21655EC9E53B3DD7175CB067 /* LookinAutoLayoutConstraint.m */; }; + 2055774CD703B52DABFB1CC588394A94 /* MJExtension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CB0BCE5C8D38E253E5BE05D5A06E6057 /* MJExtension-dummy.m */; }; + 20D618EF3EA5E3BE96DA24D36E3CA9EF /* SDAsyncBlockOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = AA49D75377E989DF22819667A0B19590 /* SDAsyncBlockOperation.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 20E738E52B4712385489A62374C74C7F /* Lookin_PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = C9C3D294F4C1669BA23B7FE3B453C896 /* Lookin_PTUSBHub.m */; }; + 22516EA77E7120000632C30BD9A03927 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = B5DA2CA36DA7D968C2C56E6344B95BF2 /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 231A40F14D020AE2F61AA5C3289E6CF9 /* UITextView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = ACF26C9A806C3B87ACEEEF1A4043ED5F /* UITextView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2460C08042AF8B7D0492A062F755986E /* NSString+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C9DB0032AB47075179DDD0C47C7DA50 /* NSString+Lookin.m */; }; + 24E8E4ED0B5D988E3346E6638619F4E4 /* SDImageFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 91747F4F3719A8A372677DDE1E40733B /* SDImageFrame.m */; }; + 24E963C1D6245F98BAC8A0ACCB7DE987 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = E078A35C8C5C67200A5D1AABCD488AB4 /* NSBundle+MJRefresh.m */; }; 2567FE276DB76481DEFC7DDFE7D775CC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; - 261C31F4038EC00D5961218C97905E21 /* LookinConnectionResponseAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E4AA34B2481B6792A3DC3B4629887E1 /* LookinConnectionResponseAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 27212D06F5EDE3BB10264D93075B2275 /* LookinDashboardBlueprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 54E567750B745108F1ADE112FADC3683 /* LookinDashboardBlueprint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2759D8D4FCE58812ADECB348E369C6F0 /* LKS_MultiplatformAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 23587035AC48CAFC10C042B9A21DE1CF /* LKS_MultiplatformAdapter.m */; }; - 27CC45A4ABE5B40723D35310D05CD146 /* LKS_EventHandlerMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C3EE97397E9A1DB2BB13788B53925A4 /* LKS_EventHandlerMaker.m */; }; - 288CD3416B265CAC1300D7938167AE66 /* MJPropertyKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 7953E4E7E2CD405F691F041B6B22DE19 /* MJPropertyKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 288D796F3F7B9F42690E24A3B1018B2C /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AEB2333F1EB13C03FB8CEED793E1015 /* SDImageIOAnimatedCoder.m */; }; - 28BA9702905AA2B4C1E9E4878032D4E4 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = C1BB2EFDABE054828FBB855E8739D9CC /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 29F7F0E98FD26A96364DBACD7D5F237A /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 2184AC68682FC6323EA668E0176C0918 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2A24F241D7D74FF6DEA953F9DD49391C /* LKS_EventHandlerMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 326F74FD6BD5B13C7566D9B8E54A947D /* LKS_EventHandlerMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2CDC7B9EAD356E35FEAF526EEA6A8E91 /* LookinWeakContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8285CAC84344E7CF3B9E5DCB68540DB5 /* LookinWeakContainer.m */; }; - 2DC44A09A6C9D6DC7D1BDA2DFCF99EE3 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 023087E0F75EB8EF2B7A38CD893A6BA8 /* MJRefreshConfig.m */; }; - 2DDA5F044BC698BC5D48A7CFDDBF71E3 /* LookinAttributeModification.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C421B7C412665959652CDB2E4A9353D /* LookinAttributeModification.m */; }; - 2DDD48230ED9E8068C7E439D79B99A8E /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C04C1BA525AC602FB2900B0D54AA5E17 /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 2E86A7C77E43AEA4697979F1F848E68D /* LKS_RequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 6204C6C6CB4D8A46E3F99F003B5B6600 /* LKS_RequestHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 2F6D9BEA582A2DBB70A6C3B2FC2DB91E /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 406EAF44DFFFBD779120260FF6139F1A /* SDWebImageDownloaderResponseModifier.m */; }; - 3187FF0C251D1B78BE87F64F6F6E944A /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 0ED01BEB5ED329F0E0E5D68A89BE0948 /* SDWebImageTransition.m */; }; - 31DC2EC78AD1F8241AE6051EF9E73B0A /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BB51939C292589929B87528EE42E89D /* SDWebImageDefine.m */; }; - 320DE42AF3CFE11FF785FEB1A7E6547B /* SDImageFramePool.m in Sources */ = {isa = PBXBuildFile; fileRef = D0304D1DA2F09D8CF73F53F3CC671F5D /* SDImageFramePool.m */; }; - 321F87DA34863DC5C977323BAEDB2B55 /* NSObject+MJCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = E5ED257CB265A92F530622C382919194 /* NSObject+MJCoding.m */; }; - 325CA20B9271F3E008234E1518B79061 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A4E96A2BBFE25E97A8B39DDA0DEFDE /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 261C31F4038EC00D5961218C97905E21 /* LookinConnectionResponseAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 80BEE3AD7A73C30ED1CBF7BAD5DA4722 /* LookinConnectionResponseAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 27212D06F5EDE3BB10264D93075B2275 /* LookinDashboardBlueprint.h in Headers */ = {isa = PBXBuildFile; fileRef = EBE15864632F44FC081BE4046348388E /* LookinDashboardBlueprint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2759D8D4FCE58812ADECB348E369C6F0 /* LKS_MultiplatformAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = DEE996B16E66B7AD8A0773D32F2F31BA /* LKS_MultiplatformAdapter.m */; }; + 27CC45A4ABE5B40723D35310D05CD146 /* LKS_EventHandlerMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = A2A220EC633F027E7B045854D845D02D /* LKS_EventHandlerMaker.m */; }; + 288CD3416B265CAC1300D7938167AE66 /* MJPropertyKey.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BA282361175441D998D08E9DF25D997 /* MJPropertyKey.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 288D796F3F7B9F42690E24A3B1018B2C /* SDImageIOAnimatedCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C4D4BDA60F8EAD19D0AB0DE4918123FD /* SDImageIOAnimatedCoder.m */; }; + 28BA9702905AA2B4C1E9E4878032D4E4 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C47759650058497567E40148EBF9AE5 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 29F7F0E98FD26A96364DBACD7D5F237A /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D6FB9D0F805C75A358F271B1C91A91 /* SDWebImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2A24F241D7D74FF6DEA953F9DD49391C /* LKS_EventHandlerMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AA476BA9ED5F6342684BACF66E137FB /* LKS_EventHandlerMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2CDC7B9EAD356E35FEAF526EEA6A8E91 /* LookinWeakContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0751712F4FC9A1B51B8443A19239A65F /* LookinWeakContainer.m */; }; + 2DC44A09A6C9D6DC7D1BDA2DFCF99EE3 /* MJRefreshConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 1417C63FC1179F58403EBD903D5154FF /* MJRefreshConfig.m */; }; + 2DDA5F044BC698BC5D48A7CFDDBF71E3 /* LookinAttributeModification.m in Sources */ = {isa = PBXBuildFile; fileRef = 1139A331649C3BC55007521B6E9D086C /* LookinAttributeModification.m */; }; + 2DDD48230ED9E8068C7E439D79B99A8E /* SDInternalMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B3DAB35FB55076EFC78AFFD26C28F8F /* SDInternalMacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 2E86A7C77E43AEA4697979F1F848E68D /* LKS_RequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F82B479082399992AB5F11FE1883FC /* LKS_RequestHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2EFF1EFA2FF0D2F1AE44A9DDBB932425 /* UIScrollView+EmptyDataSet.h in Headers */ = {isa = PBXBuildFile; fileRef = C581D8467C52B560DDC86FF5686243FE /* UIScrollView+EmptyDataSet.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 2F6D9BEA582A2DBB70A6C3B2FC2DB91E /* SDWebImageDownloaderResponseModifier.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FDDA927E142D99A4FD998D04D009AC5 /* SDWebImageDownloaderResponseModifier.m */; }; + 2FEE980BEE23B8E0C7EBB70445EC8C9A /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = C9C23FA770CA0E788C0254420531BFF5 /* PrivacyInfo.xcprivacy */; }; + 3187FF0C251D1B78BE87F64F6F6E944A /* SDWebImageTransition.m in Sources */ = {isa = PBXBuildFile; fileRef = 81AB179A6655F29D1864A1679AF918E8 /* SDWebImageTransition.m */; }; + 31DC2EC78AD1F8241AE6051EF9E73B0A /* SDWebImageDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = DF220AEF1D1A112AD307949F3E50EC2F /* SDWebImageDefine.m */; }; + 320DE42AF3CFE11FF785FEB1A7E6547B /* SDImageFramePool.m in Sources */ = {isa = PBXBuildFile; fileRef = A8C28CA27774F4C0902C9442DBF86B71 /* SDImageFramePool.m */; }; + 321F87DA34863DC5C977323BAEDB2B55 /* NSObject+MJCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E8675CEE6F196019C2179297EB96DA0 /* NSObject+MJCoding.m */; }; + 325CA20B9271F3E008234E1518B79061 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D6377C1BB4346DD791C7EEA53C7AD860 /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; 327BA3DDA513422E632D3DA4A8FC60EC /* MJRefresh-MJRefresh.Privacy in Resources */ = {isa = PBXBuildFile; fileRef = 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */; }; - 32ACEDCEBE0507A82D6323114A1C74F1 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EBA2C9811634670ABA72654E24EA30F /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 32F2B91621A2F8F9AD7C8E2B224D73F6 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 208D276AD67B36842977F8CA2F4DF301 /* SDWebImageDownloaderDecryptor.m */; }; - 32FF240AE9443A1D2CFE27F50B55F591 /* LKS_MultiplatformAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 17822CAF41F95D135852C3301C62A86A /* LKS_MultiplatformAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 332F2099D726E75CEFAF1F734104A066 /* LookinWeakContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 888CEDA5544B37CB5E23B893BD6DCD04 /* LookinWeakContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3331A013D48A5063B483A51B7E9068ED /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 02EC81829B186FB821463CE438E1ED19 /* AFURLSessionManager.m */; }; - 33D3587AF629B2FA21554DA002D6ACB8 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AB6DF8B142DDA0EA0C528DAA9A74D246 /* SDImageCachesManager.m */; }; - 34B28D4F0168194B6EFAC0520EB7A7F4 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 95FADFC756FD830D966DE01DA2A6F117 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 35D42759A562C482EA5DF574F75CF3B8 /* NSArray+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = FE02A0D85853FC5650E64297AAD9AC2D /* NSArray+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 36F4B09E7C71DCC5CEC6057814033C37 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 128F826C85582AACFFD552E11D4D2830 /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 32ACEDCEBE0507A82D6323114A1C74F1 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = AB594CFD902A51491F4811092176CCD7 /* UIImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 32F2B91621A2F8F9AD7C8E2B224D73F6 /* SDWebImageDownloaderDecryptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B599194043295A99545C402364D6C53 /* SDWebImageDownloaderDecryptor.m */; }; + 32FF240AE9443A1D2CFE27F50B55F591 /* LKS_MultiplatformAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BFF0BBC754FDFFAF6499B4D39357EDB /* LKS_MultiplatformAdapter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 332F2099D726E75CEFAF1F734104A066 /* LookinWeakContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = 51242479BEA395B29090E74758B74057 /* LookinWeakContainer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3331A013D48A5063B483A51B7E9068ED /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 95F45E1557907D629EAA4C321913606F /* AFURLSessionManager.m */; }; + 33D3587AF629B2FA21554DA002D6ACB8 /* SDImageCachesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ABA47701B5EF9AE3C616C2F11A5D703B /* SDImageCachesManager.m */; }; + 34B28D4F0168194B6EFAC0520EB7A7F4 /* NSImage+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = B21761496F33518D23B97656291A6607 /* NSImage+Compatibility.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 35D42759A562C482EA5DF574F75CF3B8 /* NSArray+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 40D0819C1354481F79848CD2AB460CDC /* NSArray+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 36F4B09E7C71DCC5CEC6057814033C37 /* UIView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A59DDE6C3A3DF455E4923DE9E24D2B /* UIView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; 3777CD89D444CBBB48AE323B303F3FC7 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CFBDDF0554D720E199E1094AAEC3D171 /* ImageIO.framework */; }; - 37B890ABDC7DD441E6AA662325D412E6 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ADFC8A9479ECC34CFA858E840DAEC66 /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3800EA1B83FDE869FB2E4B049F519962 /* UIViewController+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EB02200319F068BAA801EE10D3180E2 /* UIViewController+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 381B47B124BDE7D69DEB0FBA0ADF176D /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0152992BB7943DB61CE5E5A787E14B1F /* PrivacyInfo.xcprivacy */; }; - 38938E604A7D708E6378A44063EF3512 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D0604B822D259AC63DA0DC89535FBEAA /* UIImageView+WebCache.m */; }; - 392F62298E0D8C669229E132D791BBF5 /* UIImageView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = ED01F14532B4FDCE539BE00A8D3C2638 /* UIImageView+LookinServer.m */; }; - 3A1AD84C0DC3C256418CC46739024E96 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 1982360AE67874E8C561F430E4C814EF /* SDmetamacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 3A2FCB914F6EADED828FF05F7E9132AE /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 23CCD7977B21534E95E32A5E68C9D4BB /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3B1C72DC480AB19BD55B6275750D62FE /* NSSet+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = DF49970205D35F073CC42822E0CA7373 /* NSSet+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3B8EDFF69A68ABD3735E0C6931CA5C95 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 835CBC4C9CDA7D225001E274730BE17D /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3BB69CB142D744367868F834912993CB /* UITextField+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 04CD167E9039DB1882385C2FB0755028 /* UITextField+LookinServer.m */; }; - 3C7815EEC599DD7D42FDEF19B2FF1563 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 16441887F0FDE33C63A476FD3099D167 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3C7EAECB8C573E714C818BA04EB33773 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = E38E6DC0F4056572F28EA74749D1B5CA /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3C8F2F868D0C361CAF43E53CDB8EB631 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 72F87E260CFDB0280F5FB56A5C465226 /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 3D0BBFEC1921CE71BC240DC18D8BE540 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AE2E7C5A0A292BFF014DD00F925C407 /* SDImageTransformer.m */; }; - 3E3D09700A62280A9EB8D65B97335ED8 /* LKS_CustomDisplayItemsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DED3EBF67B7C663A66132C35837AD91 /* LKS_CustomDisplayItemsMaker.m */; }; - 3FF7252DD60182221BB1E5A167C41A07 /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A8A0580900F5771E4F0A4B83B33A7D8 /* UIProgressView+AFNetworking.m */; }; - 401AF42385BFB1C6439E4FFD239BC976 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 478ABEABB381B93BC60608D71F71150A /* PrivacyInfo.xcprivacy */; }; - 40AD5D0AB3ABF7F3A5A4A98BC5B84419 /* LookinAttributesSection.h in Headers */ = {isa = PBXBuildFile; fileRef = D125CF8A12AEB902BF171C7549055308 /* LookinAttributesSection.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 40D19B11020CDE75AD4E16F5BE658A76 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; - 416DA8B2997381F954DBA6E6A53DA4A2 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 945CA7177BB3031B95B3DAB1FFD5A192 /* NSData+ImageContentType.m */; }; - 41A4AAE7E6024E7AAB83DD22FB42D34D /* UIColor+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = B89EEDFCB034E3A1C6593AF9E1DFE193 /* UIColor+LookinServer.m */; }; - 425C9EA28FBEB7F7FC09A3F4A88C5955 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = D97B9D67F2DDCD1F09147AB8F5C4758C /* SDWebImageError.m */; }; - 442F468E261A1106C291BF52BDBF9DB7 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 225890C637C86A2A473503F94CA23C3E /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 447BBB1BCA8E0F2D23634888BED6DA81 /* LookinDashboardBlueprint.m in Sources */ = {isa = PBXBuildFile; fileRef = 972C9EBD40CB1A4E78F42C6A8B746C6C /* LookinDashboardBlueprint.m */; }; - 44CD842019B1CEA681F820F37A30B7C4 /* SDImageFramePool.h in Headers */ = {isa = PBXBuildFile; fileRef = D945D7910827E844164E6FC054D435C1 /* SDImageFramePool.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 452C940762F65B125C216F73B369F583 /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = EF67AC364BC14CA9F81DB3F6A009E9A5 /* MJRefreshStateTrailer.m */; }; + 37B890ABDC7DD441E6AA662325D412E6 /* MASConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 347FED4AA48E5E29E91B5C3ECD629C7C /* MASConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3800EA1B83FDE869FB2E4B049F519962 /* UIViewController+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = E21D12C0A6AD0F454CAACC57B408FA61 /* UIViewController+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 38938E604A7D708E6378A44063EF3512 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C520414155B00A7A86D45345840BC9E2 /* UIImageView+WebCache.m */; }; + 392F62298E0D8C669229E132D791BBF5 /* UIImageView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 2EADD27E422FFACED3103DDAE818B18C /* UIImageView+LookinServer.m */; }; + 3A1AD84C0DC3C256418CC46739024E96 /* SDmetamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = B2C87A078A4644772F44DBC7B62345EC /* SDmetamacros.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 3A2FCB914F6EADED828FF05F7E9132AE /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D723AAB4B0B0B095DD348DECC4A67B8 /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B1C72DC480AB19BD55B6275750D62FE /* NSSet+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 22BA65BA9931F718987381F55B9FBE47 /* NSSet+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3B8EDFF69A68ABD3735E0C6931CA5C95 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D6FB630B23620961A3E2286292891545 /* AFURLSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3BB69CB142D744367868F834912993CB /* UITextField+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F2ADFE29A92167B3C4FD8A49559C346 /* UITextField+LookinServer.m */; }; + 3C7815EEC599DD7D42FDEF19B2FF1563 /* SDWebImageOptionsProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = C3B203F771AA87178F1C9A34BB480552 /* SDWebImageOptionsProcessor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3C7EAECB8C573E714C818BA04EB33773 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = FA24E3EA4DBC7810C1D0683160F1E19E /* UIImage+MultiFormat.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3C8F2F868D0C361CAF43E53CDB8EB631 /* SDWebImageCacheSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DCE8121399017996B8FC63728C01C6F /* SDWebImageCacheSerializer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 3D0BBFEC1921CE71BC240DC18D8BE540 /* SDImageTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AB3D61AB0186E2435E2CDD2BF2567ED /* SDImageTransformer.m */; }; + 3E3D09700A62280A9EB8D65B97335ED8 /* LKS_CustomDisplayItemsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = C522E5668D772C9DC22DA4CAA24CE6F2 /* LKS_CustomDisplayItemsMaker.m */; }; + 3FF7252DD60182221BB1E5A167C41A07 /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = A15D2806D2FB9337E30A3103199E9DCB /* UIProgressView+AFNetworking.m */; }; + 40AD5D0AB3ABF7F3A5A4A98BC5B84419 /* LookinAttributesSection.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B97DA512208D26D2EA27D401075552 /* LookinAttributesSection.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 416DA8B2997381F954DBA6E6A53DA4A2 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = D5BF98B0F3C396A5AAE36EAAEF620AA2 /* NSData+ImageContentType.m */; }; + 41A4AAE7E6024E7AAB83DD22FB42D34D /* UIColor+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7438D6BCCC37A3DDDE821453D6D936BD /* UIColor+LookinServer.m */; }; + 425C9EA28FBEB7F7FC09A3F4A88C5955 /* SDWebImageError.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3682BD39C4C57FE318C9B03A51E681 /* SDWebImageError.m */; }; + 442F468E261A1106C291BF52BDBF9DB7 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = DD9DB7D1CE1349CBA5372D8013111FF6 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 447BBB1BCA8E0F2D23634888BED6DA81 /* LookinDashboardBlueprint.m in Sources */ = {isa = PBXBuildFile; fileRef = 7636A8638A254AA9F4489052690CFAFF /* LookinDashboardBlueprint.m */; }; + 44CD842019B1CEA681F820F37A30B7C4 /* SDImageFramePool.h in Headers */ = {isa = PBXBuildFile; fileRef = 32CA49D06775D7347788B6F0CC10B808 /* SDImageFramePool.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 452C940762F65B125C216F73B369F583 /* MJRefreshStateTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F4A320280409530EA9C86CF7ABBEB67 /* MJRefreshStateTrailer.m */; }; 4571A0EA37DC84F39E3830D38A1531AB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E1DF8BF780A4AD9606856AB857CA1D86 /* UIKit.framework */; }; - 45E1583D7EF53489B82C4CA2AD1AD0CF /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CD38CFD933CE53069EE7B243A59D126 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 464A0100327C8531D86BDC31737CCF75 /* LookinAppInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = C424A765318BDFE6E50286A28719DBEB /* LookinAppInfo.m */; }; - 4688743B7B845309486559EB7BD5D147 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = D2CCA2001B6A3A7B486AAE84DF128CD8 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 475B4F3E71C293065AAFDB1888696CF6 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FF6CBA74F79B343F78AB1FC73566B81 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 48916DE9521F627589300512ECC2D4A5 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FD68736B08D95BFEE9922A0FC83D5F5 /* NSButton+WebCache.m */; }; - 4A15ABB502D625EBE3E63100664AB822 /* LookinCodingValueType.h in Headers */ = {isa = PBXBuildFile; fileRef = 163EB06BB1AA320702D0A1A4FA1A9992 /* LookinCodingValueType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 45E1583D7EF53489B82C4CA2AD1AD0CF /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 86C56519021ABDEF1D6B4197F9979FFA /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 464A0100327C8531D86BDC31737CCF75 /* LookinAppInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 28146C6CEAB5150B6285BE6E1879E9BC /* LookinAppInfo.m */; }; + 4688743B7B845309486559EB7BD5D147 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF182241E8B4A47F383BD4694F6B842 /* SDWebImageCompat.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 475B4F3E71C293065AAFDB1888696CF6 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AEA2337C94A8C598BB24FEE58D8A1BC /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 48916DE9521F627589300512ECC2D4A5 /* NSButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F40730F0691EC5555DD04079075E018 /* NSButton+WebCache.m */; }; + 4A15ABB502D625EBE3E63100664AB822 /* LookinCodingValueType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AD58A8355780A66CD54397A8741020A /* LookinCodingValueType.h */; settings = {ATTRIBUTES = (Public, ); }; }; 4A2D7878579537881DD3859B3359F702 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 86A260983254EF2D214865E91D3787B2 /* CoreGraphics.framework */; }; - 4B2C2AE16AE3DDA7417AFCF7952588F1 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 645D159800FF6C0D6AA4195700142C1D /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 4D2C79AB2D24CFEC864F08D913CE7692 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F63BFF477F03229703E85F15BB2CF25 /* SDImageCodersManager.m */; }; - 4DA2C6099343CD55160ECB3EBDDFE1DF /* NSObject+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 46E25997E19857A9DC2B1641E9E6DBF9 /* NSObject+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4DCA75BFE1558CE59DFC56607E49B3D2 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 489C01D23D1D67A51D3DA138652D2261 /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4E964FFE29CFF8613C0029C913F39A05 /* LKS_InbuiltAttrModificationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E217A87E8CD14395B6915FEAEEDD5664 /* LKS_InbuiltAttrModificationHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4EC8DBADA7BB954276351A639EB4398D /* UIBlurEffect+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 43092D80CCA4D4FF3807F7E6F2C75D3A /* UIBlurEffect+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 4ED05DB3E43FF6AE1FA22130B2B50F05 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = CDF5A49B2F9F5D09CEE400AE059E91A3 /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 50096BAC0F3270FB111E76D32714E579 /* Image+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E7450686216DDFC68F7AC94B8952B7A /* Image+Lookin.m */; }; - 506FC58999564A737C745F2590E9B4D5 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 70300CBC7FA31FE9EB7D12A715829E8B /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5111A0A0934551CD2B9DDB1A1CA79FA7 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 572AF713352151524DA6B05D4263649C /* SDAnimatedImageRep.m */; }; - 512B9661FC34235E0EEB3A6D3E319B88 /* MJPropertyType.m in Sources */ = {isa = PBXBuildFile; fileRef = CFDA4C2B71620DFED1CDBD7CED538841 /* MJPropertyType.m */; }; - 5163FC6D715F6881B1FA1AB13DCEF870 /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 32E35E0CCCDF9BF02E1EAE8FF77857AD /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5174DD2019966DFDC21B8864453ED3DE /* NSObject+MJClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 062B3F801E733F99200DA9042C2B0966 /* NSObject+MJClass.m */; }; - 523235228A1C021C67F2E3776A922DC5 /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 276733CEE5ABDD78BFE5CB995A43C67C /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 526485EF6D2B62B24DB59122FB94BD42 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 84DF2122A52829CDBB8BB5A70349A035 /* SDDeviceHelper.m */; }; - 5308E660E723C11E7691D311FD59C459 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = B8089B3F5031231D66F1DA4588E3421A /* SDDisplayLink.m */; }; - 53433003112C4FE271EC985803862B61 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B1F13EE03D24E12673B137A9CF5D83 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 53C1722650FCAB2637867D0DC31FC3CB /* Lookin_PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D89BDDD3D7C7F280DD391FD57277525 /* Lookin_PTUSBHub.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5490C03887ACF6C4EAC25ADFBB509CE5 /* NSSet+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = A6CD1F804C7653F562D79E1BCDBE2CE6 /* NSSet+Lookin.m */; }; - 54E268C32915CF908E7AA776909B45EB /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 02CD6A22910CB8DFD1FAFFE081E089A7 /* MJRefreshConst.m */; }; - 55F7C7F055A18044497F8C88CAE34118 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 177936A16BDD3BEFF1F1116F078C34F5 /* SDImageCachesManagerOperation.m */; }; - 561420A20DC0A84258A902E9EB69A15A /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = C374DDB72EF0FA5F39669EAF0A38783D /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 564714D075CF51356D3D8437846AA6EB /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 20A026BCE094F29EF174D58596EDEC05 /* AFURLRequestSerialization.m */; }; - 56D8A7EAE4D72FF6C23421CAB6F21504 /* MJPropertyType.h in Headers */ = {isa = PBXBuildFile; fileRef = 33790326F4E5BD6AB4799CB1F644BAA0 /* MJPropertyType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 56E800EB3B2BE8AE0BA45A30974D7920 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 290F691EA01B201797DC4126CF4FEB05 /* Masonry-dummy.m */; }; - 56F1B543BC54204336CB5E50B60F719F /* Color+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A1809C53F7A88540458376FBAF507C4 /* Color+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5735091665AC18FAD028EB68786A85AE /* LKS_CustomAttrGroupsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = AB23AA27F975874EE1A3E1EA08DA741E /* LKS_CustomAttrGroupsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 58F7CE37BB4CB3BE806B68A502E6E1A7 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FBC9F2ACA54B722C75B9CEAC5A6BCBE /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 596180E0EC9F46D12BA840DC4AA62659 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = 85DB6DCE5C9B3EA2CCD2525F1FABA86F /* UIImage+MemoryCacheCost.m */; }; - 597E390C0BBB75B8045B651C487C2034 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D6C016886A6736D8F32E4AC8B32441D /* SDImageAWebPCoder.m */; }; - 5A6D3BE92C77ED70C397567996DFAEB9 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 421D28ADBF55E55C5123515F5E0E319E /* AFHTTPSessionManager.m */; }; - 5A8BC91257FF6B36237BF09A7A6EADF6 /* LookinObject.m in Sources */ = {isa = PBXBuildFile; fileRef = CFDC6BCD4BA0D5546AAA2BDF7F85FD90 /* LookinObject.m */; }; - 5AF22814CD055B553AD9D78BE54B94E1 /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 9412CB09E0E9D26DFCE87A94BE2C0799 /* UIProgressView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5B08596E856E4CC2F34A8A2372F9F764 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = FFD18411CB9BDDA27CCEFF66CCE60510 /* NSArray+MASAdditions.m */; }; - 5BB6B99986FD7111B3AEBE931C7F507B /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = AFFF3A20A03991DE8FA9843935913BB1 /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5BD5D9B8F61C124A62C75D9AC36A07BD /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 0F65A8008A00E77CC6CEB3EA03A2995F /* MJRefreshTrailer.m */; }; - 5C8279C226EB028B044C5A0F4AC5A91A /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = F1928DBA0FA8888380187043654350EC /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 5D0DEC179A7B4143769C663082E2662A /* LKS_ExportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F648120AC9E33EAE58AA5B953C9CDB2C /* LKS_ExportManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5DCBA14510E091D6A1CE499B08B794B5 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A27148D4048B706E12C8297CFE61677 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5DFCBADAC7D0FAC82C84A6C8E7BF1DA6 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC2763C6CEDD665D5F37D09FCA38DB4 /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5E10328A83E05D0015D7459FAAEF121D /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B8CD2105996DB89F57CE499469BD0B /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5F45735DF355530CC955066D3C007E19 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = AC27A4FE1B5F99C387A542FCAA1AAE76 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 5FDC4239F7B651092BF582D0F460BAD4 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 339BD5A7FDFB96FF9867355742A8D0E6 /* UIView+MJExtension.m */; }; - 6002CB94684D7C786700D2A294146AEC /* Color+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = D31863C315A1E1CCB62476A749205848 /* Color+Lookin.m */; }; - 61461B0D9D7B81C3F8D24066D9A19DCE /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E0870B9961AA96F3BECE37A98101C7A /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61507E402F1F7C58BF119995A0479A22 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E478749AD5CB3263249FAC4E3C660C25 /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 616A8338C42FB01748DF1BDDA944858D /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 2807555CD094E0AD4E105AE6054D768A /* UIView+WebCache.m */; }; - 61857C821395B868C65A8FFE4DA1B4E3 /* MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C95CB4A01746A9AE18561AF61B9C56 /* MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 61EAFBCDC83B2C603918B3C9D9A73A18 /* LookinConnectionAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB1AFAA2BDF542C6EB87C7190254DC0 /* LookinConnectionAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 62FE895DF9D65A2955A275D909ECBE18 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B9DE402CC26138FF7264A97E65D6176 /* SDAnimatedImageView.m */; }; - 6525ECE1CAFC1259F9E6E5FDDE6CF218 /* UIVisualEffectView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 38C02636331C10A7BA9A1348C25A1094 /* UIVisualEffectView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 67178A8153B1A2F1D0D544B8093E23C5 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C7AB4A8B7215D7A581244E9E1D5AC691 /* SDAnimatedImageView+WebCache.m */; }; - 676775CB29378BB6CA3CA5992E9C6A99 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 80DFC2DC4F2DDB0E78A336D975C7B17F /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 67FCC0F9B42B1C20A66E99A3D56BED18 /* LookinStaticAsyncUpdateTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 188F3CEB67BA2F2F98DF7779282D17C6 /* LookinStaticAsyncUpdateTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 683D708C157C95ADB467BDD2230BD4E3 /* UITextField+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = C2CA9F3DD9E40BF1773B91B7D4717148 /* UITextField+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 68C3E98F8B9D6035962F29AE025DA891 /* UIImage+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = B5690E885F6A6638CC16D1B0DC1210D8 /* UIImage+LookinServer.m */; }; - 69345CBCB31076EBF8A2C5885AF973AB /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D713A9212D2A554CD1918EB2E27B683 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 694B8697854A776E32032999B2EF1FEA /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = DF1BC24E0079201F335D0A854F1B6FE4 /* UIImage+Metadata.m */; }; - 6960FF2C4D61A09722930B33B1C7135D /* LKS_ObjectRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = DB5341B66CDDCE442407CD108DB097D2 /* LKS_ObjectRegistry.m */; }; - 69A06A02F52EB26259FAD1DF6B121BE1 /* SDCallbackQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 9319E9876FB247FF2E05742896D5DB29 /* SDCallbackQueue.m */; }; - 69AB6A513D5F36D7360FEF4FDA1D60D0 /* UIView+WebCacheState.h in Headers */ = {isa = PBXBuildFile; fileRef = 065C7DD137D50B90DCD09EC4867870DD /* UIView+WebCacheState.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 69E353C99C6EEA3C93CCF2E526460B9D /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 80C8588C27905BA6272F78D68E4A7D11 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 69F6E66A089C40FB1063DE15499BCFDE /* LKS_Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = 3647261DA2FC95D0CA4E87D424C12196 /* LKS_Helper.m */; }; - 6A19379E3B0370EDA447743C9B1A1379 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = FDAE70C6181A394F04CAA424A58045CA /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6B0978C9398336656EE309E62060AEAB /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A20DFE314258D8BF8834CBF4844EA182 /* SDImageAssetManager.m */; }; - 6B5C3592B5E911E833D067D0BC785B1A /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A585899AAD155043A8A9AEE95D2E130 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6BC2A615678C8BAE9F34ABA68BFDEF78 /* LKS_AttrModificationPatchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 464CCF2096DF907F8A1777249A52131D /* LKS_AttrModificationPatchHandler.m */; }; - 6C57809DCEA4B6C0CA79918A69FD75DE /* LKS_ConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3828108B263E66B9F32591A4322BEBA3 /* LKS_ConnectionManager.m */; }; - 6C85CA8D99E50C137D056B6057DAC58A /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BB581AA2004F2F998A9BCB4487DFD1D /* UIRefreshControl+AFNetworking.m */; }; - 6CA0B4A9E7B2957063163BC673F355CD /* AFAutoPurgingImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CE79DA3780BB0C29F2510145FF92018E /* AFAutoPurgingImageCache.m */; }; - 6CE8701D161A4BC0860FAF3951762A34 /* LookinHierarchyFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 252C61161911BA9535859808F4C2A8EB /* LookinHierarchyFile.m */; }; - 6DE6C7F0FA965828E4FCE687BF75FBBE /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A52CFE44B64DF4387F236C2E7F30BF0 /* MJRefreshAutoNormalFooter.m */; }; - 6E66305665DBCFBCF5B2480BF705D500 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = A808479C458FB22956C481AD3662118B /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6EFC0630CB2761A2B1FC47176CCD62D1 /* LookinCustomDisplayItemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = D5E19924A2406858AAD1FC46C71332DF /* LookinCustomDisplayItemInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 6EFEEE3AE22E97DCEC4F5A3B88F56FC7 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = D7E3C97F6197503336E0C97BCB81F513 /* SDImageLoader.m */; }; - 6F3637EE643EABB1DE9212EA68649A64 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = DA1090554ED26050AE6EE7323ED5D003 /* UIColor+SDHexString.m */; }; - 7074EA7FCC90B4967A437F5C43496828 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DD3DA3153B979F42E9CB8B3C038E490 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 711D32EF4A9901567A488291603BF906 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D18A8212C10F1A7B2F2D49D19849371 /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 71538A1D21015F459964BA625D5EE90A /* NSObject+MJClass.h in Headers */ = {isa = PBXBuildFile; fileRef = 531C91CA6418B49AE153A51D79C3E6EB /* NSObject+MJClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 717F76926C7BCB5B10C3037AD9239084 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B7C3681B606BB3EA4AC1943865B2A002 /* SDImageIOCoder.m */; }; - 71BEB1D9532900291A5A24B1C038516F /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 0432ECCC6672456D4AFC3E4D36460C5D /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 71F2B8CBB99087F348C472230200586F /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = F023B284B56FE09E86CC5E2AB85F76DC /* SDGraphicsImageRenderer.m */; }; + 4B2C2AE16AE3DDA7417AFCF7952588F1 /* SDImageAssetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 16960CB7D813532A9BA4D86A1BB2CED8 /* SDImageAssetManager.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 4D2C79AB2D24CFEC864F08D913CE7692 /* SDImageCodersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 54F6D7D59C67E3F699ECC0BC17F64C63 /* SDImageCodersManager.m */; }; + 4DA2C6099343CD55160ECB3EBDDFE1DF /* NSObject+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ADCBAAD37F392A44D285E8DB8DB3596 /* NSObject+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4DCA75BFE1558CE59DFC56607E49B3D2 /* MJRefreshConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C3C32C438415F99D09E04FB1FB4C8B /* MJRefreshConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4E964FFE29CFF8613C0029C913F39A05 /* LKS_InbuiltAttrModificationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F4BDFF05D6007AE01569C5F666CDD78A /* LKS_InbuiltAttrModificationHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4EC8DBADA7BB954276351A639EB4398D /* UIBlurEffect+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EC7D805B3669842D8D00AC25DD350F3 /* UIBlurEffect+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 4ED05DB3E43FF6AE1FA22130B2B50F05 /* UIImage+MemoryCacheCost.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D33CD5A23C022887101A35836C53F5E /* UIImage+MemoryCacheCost.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 50096BAC0F3270FB111E76D32714E579 /* Image+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = C65F428EF2EB399205D56B2678DEB70B /* Image+Lookin.m */; }; + 506FC58999564A737C745F2590E9B4D5 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C84A5312A8825A5EDA96EC527A7E4D7A /* AFHTTPSessionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5111A0A0934551CD2B9DDB1A1CA79FA7 /* SDAnimatedImageRep.m in Sources */ = {isa = PBXBuildFile; fileRef = 40C5224C21C52359D2D822D5661369DC /* SDAnimatedImageRep.m */; }; + 512B9661FC34235E0EEB3A6D3E319B88 /* MJPropertyType.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C4A8B2E9EA22C1202805209C797B0E9 /* MJPropertyType.m */; }; + 5163FC6D715F6881B1FA1AB13DCEF870 /* UICollectionViewLayout+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F34D1A27418A709F7C65E3DB1D77A02 /* UICollectionViewLayout+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5174DD2019966DFDC21B8864453ED3DE /* NSObject+MJClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D438C373C98EC1CB7A0D0E0FFBEF4E4 /* NSObject+MJClass.m */; }; + 523235228A1C021C67F2E3776A922DC5 /* MJRefreshTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE9536FB9FE3772BAD71E0462342B2E /* MJRefreshTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 526485EF6D2B62B24DB59122FB94BD42 /* SDDeviceHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 00C068BCEBF995CB7C8EEC8A50DFCEF2 /* SDDeviceHelper.m */; }; + 5308E660E723C11E7691D311FD59C459 /* SDDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 41CA732E6A1AC243AABB66A5E5075CFA /* SDDisplayLink.m */; }; + 53433003112C4FE271EC985803862B61 /* SDWebImageCacheKeyFilter.h in Headers */ = {isa = PBXBuildFile; fileRef = 767A32EFFEACBCB8FE5E18A0DC735AE1 /* SDWebImageCacheKeyFilter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 53C1722650FCAB2637867D0DC31FC3CB /* Lookin_PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 7A00FC0F567DB778E6383FF7BA31B2DA /* Lookin_PTUSBHub.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5490C03887ACF6C4EAC25ADFBB509CE5 /* NSSet+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FD376966048F00BB938741554A2F379 /* NSSet+Lookin.m */; }; + 54E268C32915CF908E7AA776909B45EB /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = E61DDA9F23188515F3DA0789831A6C8D /* MJRefreshConst.m */; }; + 55F7C7F055A18044497F8C88CAE34118 /* SDImageCachesManagerOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DCA3038D28CC7DA19E70D6E1C915CA2 /* SDImageCachesManagerOperation.m */; }; + 561420A20DC0A84258A902E9EB69A15A /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 563BAF3B8E8BF2625BE8EABD7C2F3059 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 564714D075CF51356D3D8437846AA6EB /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = C7F930C89751DC04A3487A6BD11481AF /* AFURLRequestSerialization.m */; }; + 56D8A7EAE4D72FF6C23421CAB6F21504 /* MJPropertyType.h in Headers */ = {isa = PBXBuildFile; fileRef = D7563FAD3C56142ED9787F2622AD43A6 /* MJPropertyType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 56E800EB3B2BE8AE0BA45A30974D7920 /* Masonry-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DDC34B8EC4E6ADC2CC996545B2BFF331 /* Masonry-dummy.m */; }; + 56F1B543BC54204336CB5E50B60F719F /* Color+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ABF83FA3614A8415336F983AEB644A5 /* Color+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5735091665AC18FAD028EB68786A85AE /* LKS_CustomAttrGroupsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 30A3DB802987D4AAF504715CCE53E22B /* LKS_CustomAttrGroupsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 58F7CE37BB4CB3BE806B68A502E6E1A7 /* SDWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 398209F80EA0E5CF6D320D26B3A19034 /* SDWeakProxy.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 596180E0EC9F46D12BA840DC4AA62659 /* UIImage+MemoryCacheCost.m in Sources */ = {isa = PBXBuildFile; fileRef = DA52C7A4F18F8506C0F1D691E9E01A30 /* UIImage+MemoryCacheCost.m */; }; + 597E390C0BBB75B8045B651C487C2034 /* SDImageAWebPCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 777EE64E29767A3A8BEEED1361D63FF7 /* SDImageAWebPCoder.m */; }; + 5A6D3BE92C77ED70C397567996DFAEB9 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A0FCD6D064868A4FCFD48B58D437459 /* AFHTTPSessionManager.m */; }; + 5A8BC91257FF6B36237BF09A7A6EADF6 /* LookinObject.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E7E8CFAA197C7C0BF2C42C37130BCB /* LookinObject.m */; }; + 5AF22814CD055B553AD9D78BE54B94E1 /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADEB33CB07F958A39FFF41A08D676F6 /* UIProgressView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5B08596E856E4CC2F34A8A2372F9F764 /* NSArray+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E698A617BF04E3C18EC0826D774FBF19 /* NSArray+MASAdditions.m */; }; + 5BB6B99986FD7111B3AEBE931C7F507B /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = A26F76509B9F66D0C2928529CEB7E16A /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5BD5D9B8F61C124A62C75D9AC36A07BD /* MJRefreshTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 19B2B97351832A4A6CE655C311162FB1 /* MJRefreshTrailer.m */; }; + 5C8279C226EB028B044C5A0F4AC5A91A /* SDAssociatedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 65775B370DA0EF569421A8B889F95674 /* SDAssociatedObject.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 5D0DEC179A7B4143769C663082E2662A /* LKS_ExportManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BD649299FB30FE26060B97E8DF9816C /* LKS_ExportManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5DCBA14510E091D6A1CE499B08B794B5 /* UIImage+Metadata.h in Headers */ = {isa = PBXBuildFile; fileRef = EBF242B27782A449435704666A43D511 /* UIImage+Metadata.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5DFCBADAC7D0FAC82C84A6C8E7BF1DA6 /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 60365D1D06C44FD4A5F3D2AA2FD20CEA /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5E10328A83E05D0015D7459FAAEF121D /* SDGraphicsImageRenderer.h in Headers */ = {isa = PBXBuildFile; fileRef = FE248F84E44C5B5F706999B2B26E5DDD /* SDGraphicsImageRenderer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F45735DF355530CC955066D3C007E19 /* MASViewConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A59E796E71BB3C86ABBEF16B2E64E7 /* MASViewConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 5F5426608460A8B17C1AE5C2351BAA19 /* UIScrollView+EmptyDataSet.m in Sources */ = {isa = PBXBuildFile; fileRef = 83AB35F7CE9224956EA55E0F032CD708 /* UIScrollView+EmptyDataSet.m */; }; + 5FDC4239F7B651092BF582D0F460BAD4 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = D823F8C60A9B1B611CA262E283132F8C /* UIView+MJExtension.m */; }; + 6002CB94684D7C786700D2A294146AEC /* Color+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 38BFA523126349CF747593045236049E /* Color+Lookin.m */; }; + 61461B0D9D7B81C3F8D24066D9A19DCE /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C777B2DED63E0525E423D02BB586C65 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61507E402F1F7C58BF119995A0479A22 /* NSArray+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = C844C45B584819E36A3D764C2F521E40 /* NSArray+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 616A8338C42FB01748DF1BDDA944858D /* UIView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = BAD33734FD4C0B734EF00D7400AE8272 /* UIView+WebCache.m */; }; + 61857C821395B868C65A8FFE4DA1B4E3 /* MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E7B70FE43DB96F119CF5308A2D3556C /* MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 61EAFBCDC83B2C603918B3C9D9A73A18 /* LookinConnectionAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 439F16A17FD6B513A48ED7EC3F1E5108 /* LookinConnectionAttachment.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 62FE895DF9D65A2955A275D909ECBE18 /* SDAnimatedImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FEE3F7994C7F337D4377254543F8763 /* SDAnimatedImageView.m */; }; + 6525ECE1CAFC1259F9E6E5FDDE6CF218 /* UIVisualEffectView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 95820E95891E3F96B30D5901A0D3907D /* UIVisualEffectView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 659D38386A3E09422812283BF27D71D1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; + 67178A8153B1A2F1D0D544B8093E23C5 /* SDAnimatedImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = CA4C646F4B9828AEC54F0BAF1F42E31C /* SDAnimatedImageView+WebCache.m */; }; + 676775CB29378BB6CA3CA5992E9C6A99 /* SDImageIOAnimatedCoderInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 347A63FF6005370892F70C963DA0819D /* SDImageIOAnimatedCoderInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 67FCC0F9B42B1C20A66E99A3D56BED18 /* LookinStaticAsyncUpdateTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EB45C7A834D78718652CD6DC1BFE263 /* LookinStaticAsyncUpdateTask.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 683D708C157C95ADB467BDD2230BD4E3 /* UITextField+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = C274CB4B91DDEA7F11C22815CBFF0ABF /* UITextField+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 68C3E98F8B9D6035962F29AE025DA891 /* UIImage+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = A997A30994E24FE91A96F7E9623CE4EC /* UIImage+LookinServer.m */; }; + 69345CBCB31076EBF8A2C5885AF973AB /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 38B32D61B90137CC13104A1BA1DDE1CF /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 694B8697854A776E32032999B2EF1FEA /* UIImage+Metadata.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B16B55D82BA04C566A0E14C3B7C565A /* UIImage+Metadata.m */; }; + 6960FF2C4D61A09722930B33B1C7135D /* LKS_ObjectRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A8106626B5380E2AEEC5625B534D4237 /* LKS_ObjectRegistry.m */; }; + 69A06A02F52EB26259FAD1DF6B121BE1 /* SDCallbackQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DF80870C306B19EAA56A3F21670DD7B /* SDCallbackQueue.m */; }; + 69AB6A513D5F36D7360FEF4FDA1D60D0 /* UIView+WebCacheState.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D9BD3652C8EDC1D4A7E44DC245F45FD /* UIView+WebCacheState.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 69E353C99C6EEA3C93CCF2E526460B9D /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 95211F71D6ADE9601965FDFEE1E997D1 /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 69F6E66A089C40FB1063DE15499BCFDE /* LKS_Helper.m in Sources */ = {isa = PBXBuildFile; fileRef = A2B9993D23A52E3D36AF3E2814064006 /* LKS_Helper.m */; }; + 6A19379E3B0370EDA447743C9B1A1379 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 897DE7B8BFE04684270698FF1640A517 /* UIImageView+HighlightedWebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6B0978C9398336656EE309E62060AEAB /* SDImageAssetManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 211DC994D6F14C6094673AA62F5F4204 /* SDImageAssetManager.m */; }; + 6B5C3592B5E911E833D067D0BC785B1A /* SDImageFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = E577238B855764201EED8E4C35720A32 /* SDImageFrame.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6BC2A615678C8BAE9F34ABA68BFDEF78 /* LKS_AttrModificationPatchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E8041A2BC68C7B4F2A59709C17BFF313 /* LKS_AttrModificationPatchHandler.m */; }; + 6C57809DCEA4B6C0CA79918A69FD75DE /* LKS_ConnectionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 305FC7B048B8871DE3376193B606286C /* LKS_ConnectionManager.m */; }; + 6C85CA8D99E50C137D056B6057DAC58A /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 88C5A11A011853337516FE336041BAE6 /* UIRefreshControl+AFNetworking.m */; }; + 6CA0B4A9E7B2957063163BC673F355CD /* AFAutoPurgingImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F00E6E13FB910ADD714E5C17A5F927DE /* AFAutoPurgingImageCache.m */; }; + 6CE8701D161A4BC0860FAF3951762A34 /* LookinHierarchyFile.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BEA2C723E51712851DAF177993AF2DE /* LookinHierarchyFile.m */; }; + 6DE6C7F0FA965828E4FCE687BF75FBBE /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = E0F6E7A35B68518F11C7EE5462DC536B /* MJRefreshAutoNormalFooter.m */; }; + 6E66305665DBCFBCF5B2480BF705D500 /* SDWebImageTransition.h in Headers */ = {isa = PBXBuildFile; fileRef = 2987AEB70F86EE902B3B8F5EFB3C3B96 /* SDWebImageTransition.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6EFC0630CB2761A2B1FC47176CCD62D1 /* LookinCustomDisplayItemInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F9BBC9A6E2890E280DC92D31D5925F9 /* LookinCustomDisplayItemInfo.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 6EFEEE3AE22E97DCEC4F5A3B88F56FC7 /* SDImageLoader.m in Sources */ = {isa = PBXBuildFile; fileRef = 76FE6090F39F423688B2085B527C4D12 /* SDImageLoader.m */; }; + 6F3637EE643EABB1DE9212EA68649A64 /* UIColor+SDHexString.m in Sources */ = {isa = PBXBuildFile; fileRef = D05E4DF70402D17DD9ADCB116F461970 /* UIColor+SDHexString.m */; }; + 7074EA7FCC90B4967A437F5C43496828 /* SDDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 686B0CDADA2537527E29D19893FFD939 /* SDDisplayLink.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 711D32EF4A9901567A488291603BF906 /* SDWebImage.h in Headers */ = {isa = PBXBuildFile; fileRef = DC220029E7EA58B85077D4BC7D315684 /* SDWebImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 71538A1D21015F459964BA625D5EE90A /* NSObject+MJClass.h in Headers */ = {isa = PBXBuildFile; fileRef = CB8089BF92E6AFD435A791B463E0BF0B /* NSObject+MJClass.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 717F76926C7BCB5B10C3037AD9239084 /* SDImageIOCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 12BF6AC75DC7C5FCAF6720FDAEA00A28 /* SDImageIOCoder.m */; }; + 71BEB1D9532900291A5A24B1C038516F /* UIColor+SDHexString.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F082CD62E0C970F3E5784F534C2966A /* UIColor+SDHexString.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 71F2B8CBB99087F348C472230200586F /* SDGraphicsImageRenderer.m in Sources */ = {isa = PBXBuildFile; fileRef = BEDE4F5BCE15B6716233B116E1EA5B53 /* SDGraphicsImageRenderer.m */; }; 723D1925C39764631641D0DBFDF6833B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; - 724991CA89C46BAFBC08264D94D86484 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C486A79E0D0DD2702EF7B8CAF517764 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 74ABF19BACB99F862DB62AA14508AFA0 /* LookinAttributesGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = A245A87BA546D569D81C4C62E6917396 /* LookinAttributesGroup.m */; }; - 74C474676C69A80BEC29B0F55FDF4D19 /* UIView+WebCacheState.m in Sources */ = {isa = PBXBuildFile; fileRef = B98325935BCCAB0088E7C38BEEB0AC9B /* UIView+WebCacheState.m */; }; - 74E069F8C9E22C0E37F261A5AB03A613 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = D646BA8F519D540CC327EB5212DF98FE /* SDWebImageDownloaderConfig.m */; }; - 752822FE3F5092322D18FEC4533B79A9 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 2BCD71D98846176BC892845088F27C3C /* SDWebImageDownloader.m */; }; - 75771A97B77FA30A0175A81B480F80EF /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = 16AF74159530C7ABABC4CD6BE65EE86C /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 772CF8E9CD02ECA4275B6173E2110E80 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D5C22EE1AD5BE0F23DC1DA79A9E790 /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 724991CA89C46BAFBC08264D94D86484 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = B28696504959A346484C443F7CF0DF36 /* AFURLRequestSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 74ABF19BACB99F862DB62AA14508AFA0 /* LookinAttributesGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 578B95230AE545201B64A7880F20CE7A /* LookinAttributesGroup.m */; }; + 74C474676C69A80BEC29B0F55FDF4D19 /* UIView+WebCacheState.m in Sources */ = {isa = PBXBuildFile; fileRef = FF52F5016FBF42C07160178A3CBEDC23 /* UIView+WebCacheState.m */; }; + 74E069F8C9E22C0E37F261A5AB03A613 /* SDWebImageDownloaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 964BD2E59FEFC946EF5CA5443A4B8B3F /* SDWebImageDownloaderConfig.m */; }; + 752822FE3F5092322D18FEC4533B79A9 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = A0F43F0BA711E6ACD54A62FF1CD2DDDF /* SDWebImageDownloader.m */; }; + 75771A97B77FA30A0175A81B480F80EF /* UIImage+ForceDecode.h in Headers */ = {isa = PBXBuildFile; fileRef = C4EC5042E6E856B691A7D1939E4C0753 /* UIImage+ForceDecode.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 772CF8E9CD02ECA4275B6173E2110E80 /* View+MASShorthandAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 430466B5BE179DB19438855ADE959F3C /* View+MASShorthandAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; 7873F2F89CD0A435FAB776BC27BFB56A /* MJExtension-MJExtension in Resources */ = {isa = PBXBuildFile; fileRef = 43EAAD2AB7E6B407E80E95F643F93D22 /* MJExtension-MJExtension */; }; - 78A3C3994AFFC6A2D4970AEB6D797CE5 /* LKS_HierarchyDetailsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0321AE443BC53885AC283309062AC0C3 /* LKS_HierarchyDetailsHandler.m */; }; - 7902D28FC9EF5AFEB452F508C7F266B1 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = B704CBA37ABFB9811890FFDFDB2DCCFD /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7989A6E79BFA78440C39F568D972305C /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 831263077417DAA4D4D6E8B634304AB7 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7A4EB9ED5D4E03170FFE61FCB299687B /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = 155AA2BD6DA9E0C46A54746FABD3CD0E /* SDAnimatedImagePlayer.m */; }; - 7C45DBA62EE045C4922404182F6393B8 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E1F282017956A789A6F1005875439FC /* SDWebImageError.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C53FB6BBB0CBAA879F1603B0FEDB80B /* LookinAttributesSection.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A48957DF117CD5E47CC7837EB3B0C20 /* LookinAttributesSection.m */; }; - 7C5505A2D3F2A697A5F324787061F4B7 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 7699478B8B650E1EAD23CFF5B07A347B /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7C8782A3078662BC2EF639A9608A2C82 /* LKS_InbuiltAttrModificationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = DFB61356879F3B6C9F0885ADF0835717 /* LKS_InbuiltAttrModificationHandler.m */; }; - 7D736CE5AD0A987D2A7D2FD72E31BF41 /* CALayer+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = D62DC2DA817A3EDDAAA844C01472ED21 /* CALayer+LookinServer.m */; }; - 7E4F0978B25350B2B28678A0BE7B3785 /* LKS_HierarchyDisplayItemsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 6146D488C951FCE2AFAD197A22FAC52C /* LKS_HierarchyDisplayItemsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7E8A564A958AF81E5F63F34B8E550E58 /* LookinAttributeModification.h in Headers */ = {isa = PBXBuildFile; fileRef = 5109FB802ECA3A58140B2EA99237F019 /* LookinAttributeModification.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7F10C0D094C74F2FA4CD38C7FD77B0A8 /* WKWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E52D433702688AC431FFC4C34CDF78B /* WKWebView+AFNetworking.m */; }; - 7F886FC2763F0BF1625A24EE4F94C04D /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9CF5385FC6C9B5A48829C80AC7B312 /* UIRefreshControl+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 7FA8C78DB021A7731D30D80C102DE042 /* NSObject+MJKeyValue.m in Sources */ = {isa = PBXBuildFile; fileRef = A381186EF257980C40F18C6823B93140 /* NSObject+MJKeyValue.m */; }; - 7FF8A56511E71D6FEC966BF9FEE135B5 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 008261B9563A97C2729613551099EA82 /* AFNetworkActivityIndicatorManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 810C8D7902163BBA0185A4A112B2DFD6 /* LKS_TraceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 429B18C6844509307D144B3D82531314 /* LKS_TraceManager.m */; }; - 813BE4C96A6D39C13EC50C6CD164F0AF /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = CBD909DEA48A3B96235A539DACD1CBCF /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 81A5635CEA2AD9623E30CAE9AFC3BF65 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 1038CDECC4C68B88DE38006854639F5E /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 821FF6B43F7ADAB6B60459D2966B33CB /* CALayer+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5A7EFB9ABF468D7305DA246936B892 /* CALayer+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 83530BF68848CD2C4A79A1FD69B304A5 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 38695581293B42C0F3123AA0BB83E733 /* SDImageGIFCoder.m */; }; + 78A3C3994AFFC6A2D4970AEB6D797CE5 /* LKS_HierarchyDetailsHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 02E251D5F94D43ECAF215AE69EBADD35 /* LKS_HierarchyDetailsHandler.m */; }; + 7902D28FC9EF5AFEB452F508C7F266B1 /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E69F54FC92DD084F23D6B24E981DE30 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7989A6E79BFA78440C39F568D972305C /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 68F1F3FEB751E1F6CA19EAA4106A4DAE /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7A4EB9ED5D4E03170FFE61FCB299687B /* SDAnimatedImagePlayer.m in Sources */ = {isa = PBXBuildFile; fileRef = CA68BDE3BA6D63E08981C6B1D30D6285 /* SDAnimatedImagePlayer.m */; }; + 7C45DBA62EE045C4922404182F6393B8 /* SDWebImageError.h in Headers */ = {isa = PBXBuildFile; fileRef = 1150733A8647FD2B2018C7BF904065DF /* SDWebImageError.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C53FB6BBB0CBAA879F1603B0FEDB80B /* LookinAttributesSection.m in Sources */ = {isa = PBXBuildFile; fileRef = B6C3ACC95CD8C2F4D6BF4166F31DCA37 /* LookinAttributesSection.m */; }; + 7C5505A2D3F2A697A5F324787061F4B7 /* MASConstraint+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 83AB9EBBB91A99CC0152DC02DD93CBD2 /* MASConstraint+Private.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7C8782A3078662BC2EF639A9608A2C82 /* LKS_InbuiltAttrModificationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 65B1B4D00C645096B73E54FF2DA45C1E /* LKS_InbuiltAttrModificationHandler.m */; }; + 7D736CE5AD0A987D2A7D2FD72E31BF41 /* CALayer+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = E6E2B65A09B0300AD2B9BFCB786F9858 /* CALayer+LookinServer.m */; }; + 7E4F0978B25350B2B28678A0BE7B3785 /* LKS_HierarchyDisplayItemsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 92C914CEAD4453388BDD547DF47A2B09 /* LKS_HierarchyDisplayItemsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7E8A564A958AF81E5F63F34B8E550E58 /* LookinAttributeModification.h in Headers */ = {isa = PBXBuildFile; fileRef = 4838EF2B08AEB6CAC4CFEB6DB3B5F66B /* LookinAttributeModification.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7F10C0D094C74F2FA4CD38C7FD77B0A8 /* WKWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 28D018C6173D2EDF06A47B3F72528135 /* WKWebView+AFNetworking.m */; }; + 7F886FC2763F0BF1625A24EE4F94C04D /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = A375C1D697A112C4F27D2594B1A90187 /* UIRefreshControl+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 7FA8C78DB021A7731D30D80C102DE042 /* NSObject+MJKeyValue.m in Sources */ = {isa = PBXBuildFile; fileRef = FEFC28F9A0574086775CB86715006A47 /* NSObject+MJKeyValue.m */; }; + 7FF8A56511E71D6FEC966BF9FEE135B5 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AA6FFDE3D12EFD1B71F685F39294D26 /* AFNetworkActivityIndicatorManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 810C8D7902163BBA0185A4A112B2DFD6 /* LKS_TraceManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F35B70F96A661BCF6259326D0EBC020 /* LKS_TraceManager.m */; }; + 813BE4C96A6D39C13EC50C6CD164F0AF /* MASConstraintMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DFE39E4DB7E47FF7ABF20ECDA02C502 /* MASConstraintMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 81A5635CEA2AD9623E30CAE9AFC3BF65 /* NSBundle+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D92FC30B6DB6A03B90E4ACF6B3F5349 /* NSBundle+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 821FF6B43F7ADAB6B60459D2966B33CB /* CALayer+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D3766A431B7A0BC76917558618EF0C1 /* CALayer+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 83530BF68848CD2C4A79A1FD69B304A5 /* SDImageGIFCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 07EFBD7E00525D268A1FB491591F9B0F /* SDImageGIFCoder.m */; }; 83A4F2816C1B3F072E1A26A34C3BC4AC /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; 8414CFEEB64ACA817EB88D2FEADDA3B3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; - 854807558DCB972EDDFC1D00032BA6E4 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = D28AA8EC2452B881DA6683AA639F5EEC /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 85AB23275E9D19394969235E5DC2300E /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = E3E02CEAD88FD72568C167BA8624966F /* MJRefreshHeader.m */; }; - 85BB8B4B5C29C5EEC52282F33A4CAF23 /* LookinCustomAttrModification.m in Sources */ = {isa = PBXBuildFile; fileRef = 62D6930B7711EEC4F37BEF97746AA2C2 /* LookinCustomAttrModification.m */; }; - 85C0B4EE334B9972299E62DE61A4BB56 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B75FDD7C617DB19F933212AFF221042 /* SDImageLoadersManager.m */; }; - 860CB3A5D2E13B946CD2EFB7F749C4CF /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 887BDFD52A061A00791DC627E1D6A3AE /* UIActivityIndicatorView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 864972FB0DF4B464B1B505AA5F788E91 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = 650163ADD37FEB8E42F2D54910D9E730 /* SDInternalMacros.m */; }; - 88473AE7C22F952DACB39FA0758D1624 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 97C6CD442B2A0C50D32BC3862DF59981 /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8872BEB0954C0254A792469F4DBC9891 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = F0B56433CB2985F7A9FBA1AECC88A15F /* MJRefreshAutoStateFooter.m */; }; - 88A23DF6F5638AC66C28C4102824E8B5 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 14EC6D7F2EC41EF8578655554F8A5D31 /* NSImage+Compatibility.m */; }; - 89B88FAD396608AAA9F935E471BB3CB9 /* LKS_HierarchyDetailsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8ACF5FED576BE1C7180C71DAEC03A946 /* LKS_HierarchyDetailsHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 89EAB8D0452D0E2114ED971B10D98CC3 /* LKS_HierarchyDisplayItemsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = C0567853C23ACC665751D3D0565F56E9 /* LKS_HierarchyDisplayItemsMaker.m */; }; - 8A256CA266FB314BBD4DB2287DAEF247 /* LookinAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 0B074E84A256BBE4C5D6915483D33E99 /* LookinAttribute.m */; }; - 8AF38EDB1E9BF0D334AEB23C488870B8 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C41A09FD257C804D6C5A03BAFB8EBF5 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8C6C7E25C5A24C936F81823978190E96 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = B247DEA97C1612D30C990B6DAD73CC4A /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8D8AD606ECD8E1F247965CD43956D412 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBC44725D7256BCC081E7D8B054C3BE /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 8FF7B6477BFA6E6ABA168E1417291D5F /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = CBBC71D8C791CE3C3C1A8F23DAC6AFE9 /* MASCompositeConstraint.m */; }; - 906DCE66CD5BD236081D468616199BB7 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = EF6AC4469928F723BD5B06DB64B9961F /* SDWebImageOptionsProcessor.m */; }; - 91AAF555B286FBF53E4F98D092B406BD /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2FF06236E502AA89230AF8C19975BD81 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 91B00FC894C93986F10BD14DCD0DD6BF /* Pods-CustomKeyboard-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CB13D51E717D347023EEB57263E3072 /* Pods-CustomKeyboard-dummy.m */; }; - 91E8B94F8E02ABF5197DF5AE7D0B3934 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 57AA8DF80B9A065EB5B7DB8BDDCA493A /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 928371B066E1211CE87089668D5BCB4C /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D281342153AB8C983B263A38760879 /* SDDiskCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 928A1ED0692DF0229F66A87135F93F2A /* LKS_CustomAttrModificationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F69F081E6D6A2642737315D3ADA1CC3 /* LKS_CustomAttrModificationHandler.m */; }; - 9345137ED10358B60E37D05FB6165759 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = BC11A65E54D99B9B24243ADDDF521A45 /* SDFileAttributeHelper.m */; }; - 9358FC6C6DA728AEE250D8E7DD236946 /* MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = BCA9B216AF795768B316B3A738BA5B82 /* MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 93E8C78EAE0B7613201813966B8E04E2 /* Image+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = CC9B571A19A9F5D7225598AC30AF7E0D /* Image+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 955B87902E039163281C4F47C95DB851 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = E489FC1095A0FA5D667A84B7D29E8B25 /* MJRefreshBackNormalFooter.m */; }; - 96E97174F4614FFA0649085022CB4AFE /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B385EE89FE65CFE426A67B99327A04AE /* SDWebImage-dummy.m */; }; - 97235408E59E16C18B6BDA1D29E1CB26 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7F08A828C0693F3B42589C54C848C4AA /* SDWebImageManager.m */; }; - 97385A64CA020489951EF769392C6DCF /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = A2BA9CFAA095243614EE8971D643600A /* UIView+WebCacheOperation.m */; }; - 9887678D7D6BC165694560D92AF2C31A /* LookinConnectionResponseAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = B41FEDC10A936AE8E0F53E5FBFF1665C /* LookinConnectionResponseAttachment.m */; }; + 854807558DCB972EDDFC1D00032BA6E4 /* SDWebImageDownloaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D6A1D4A62AEAFEB00E39A0BAB4D100 /* SDWebImageDownloaderConfig.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 85AB23275E9D19394969235E5DC2300E /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D63CA21D42B13F82104E7452719B6B10 /* MJRefreshHeader.m */; }; + 85BB8B4B5C29C5EEC52282F33A4CAF23 /* LookinCustomAttrModification.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E1F681FE04A1A936DAAA127C5F4AF4B /* LookinCustomAttrModification.m */; }; + 85C0B4EE334B9972299E62DE61A4BB56 /* SDImageLoadersManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AA742416BCB939B1D39297670E762EBB /* SDImageLoadersManager.m */; }; + 860CB3A5D2E13B946CD2EFB7F749C4CF /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E52CB395AB5C0A69F5694C7CC12B88EB /* UIActivityIndicatorView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 864972FB0DF4B464B1B505AA5F788E91 /* SDInternalMacros.m in Sources */ = {isa = PBXBuildFile; fileRef = DDA65AB52698FA7F4D725EFD40DF70AD /* SDInternalMacros.m */; }; + 88473AE7C22F952DACB39FA0758D1624 /* SDMemoryCache.h in Headers */ = {isa = PBXBuildFile; fileRef = BC6ED468239C99385B53135629A117EE /* SDMemoryCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8872BEB0954C0254A792469F4DBC9891 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FC6CED4D6A9C0B15D86460654E10E9B /* MJRefreshAutoStateFooter.m */; }; + 88A23DF6F5638AC66C28C4102824E8B5 /* NSImage+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 64C48FA63DD7DADA05BE572E8F9298BE /* NSImage+Compatibility.m */; }; + 89B88FAD396608AAA9F935E471BB3CB9 /* LKS_HierarchyDetailsHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 73C61559A1B0E35919ED6A55F60D8881 /* LKS_HierarchyDetailsHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 89EAB8D0452D0E2114ED971B10D98CC3 /* LKS_HierarchyDisplayItemsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 3D37F2B9A92E991C28286D5146AE4897 /* LKS_HierarchyDisplayItemsMaker.m */; }; + 8A256CA266FB314BBD4DB2287DAEF247 /* LookinAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 67DEF1B5920E9373D6A997322910CBB0 /* LookinAttribute.m */; }; + 8AF38EDB1E9BF0D334AEB23C488870B8 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = BD70E1598C80ECB7F3F7138210C8D582 /* NSData+ImageContentType.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8C6C7E25C5A24C936F81823978190E96 /* ViewController+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DFB55B62B7110A8A5C0B7C24C0A106D /* ViewController+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8D8AD606ECD8E1F247965CD43956D412 /* UIImage+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6E2527E302487CA8D99CA6519CF408 /* UIImage+Transform.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 8F30C8026F48C60D5B2CAE9CFC166004 /* Pods-CustomKeyboard-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CB13D51E717D347023EEB57263E3072 /* Pods-CustomKeyboard-dummy.m */; }; + 8FF7B6477BFA6E6ABA168E1417291D5F /* MASCompositeConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 12810823ADAFE3101B05E3EC0341E431 /* MASCompositeConstraint.m */; }; + 906DCE66CD5BD236081D468616199BB7 /* SDWebImageOptionsProcessor.m in Sources */ = {isa = PBXBuildFile; fileRef = A8BCB04CE81BF9A50A8C34DE7580CDBC /* SDWebImageOptionsProcessor.m */; }; + 91AAF555B286FBF53E4F98D092B406BD /* SDWebImageTransitionInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 69531482F2B768A657877C539981C6C0 /* SDWebImageTransitionInternal.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 91E8B94F8E02ABF5197DF5AE7D0B3934 /* SDWebImageDownloaderDecryptor.h in Headers */ = {isa = PBXBuildFile; fileRef = FCA48C312CFE8C30E149C43CE18A7434 /* SDWebImageDownloaderDecryptor.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 928371B066E1211CE87089668D5BCB4C /* SDDiskCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 203C3C8EC433732010B706084E2FEAAE /* SDDiskCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 928A1ED0692DF0229F66A87135F93F2A /* LKS_CustomAttrModificationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = FF2AB48D9E764BD132973F1C10BEAA95 /* LKS_CustomAttrModificationHandler.m */; }; + 9345137ED10358B60E37D05FB6165759 /* SDFileAttributeHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 982BDF7741EA7DD8C4EC946C022A2CE4 /* SDFileAttributeHelper.m */; }; + 9358FC6C6DA728AEE250D8E7DD236946 /* MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 88B14BF9D8A154C06BB8ACB4597DB243 /* MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 93E8C78EAE0B7613201813966B8E04E2 /* Image+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F62FC6D05660CB1BB52709692D6BE5A /* Image+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 955B87902E039163281C4F47C95DB851 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 90E76432085AB53FA0BD24255F01A5E7 /* MJRefreshBackNormalFooter.m */; }; + 96E97174F4614FFA0649085022CB4AFE /* SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13B467DAFDB1C2E628A824EA7828200B /* SDWebImage-dummy.m */; }; + 97235408E59E16C18B6BDA1D29E1CB26 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D1B6B65526E540D10FB05592FF61055B /* SDWebImageManager.m */; }; + 97385A64CA020489951EF769392C6DCF /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BDF28BF4E97F78036B3357A2C74EC85 /* UIView+WebCacheOperation.m */; }; + 9887678D7D6BC165694560D92AF2C31A /* LookinConnectionResponseAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B1DD789D49022BC2ACF8335057F7CC /* LookinConnectionResponseAttachment.m */; }; 98AB6B8EB7FF096BCE87488C5AB3DF1C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; - 9A7FB1E975A5955C896E6B195C521804 /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9925853CD65033AE45CAE54E062A6427 /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9A89C16038149623A1DF06D47E7F953A /* LookinStaticAsyncUpdateTask.m in Sources */ = {isa = PBXBuildFile; fileRef = E27A57D106BA1F686D1F1EF61BCCECCA /* LookinStaticAsyncUpdateTask.m */; }; - 9B06400877E40C173F5A1C9761F288CB /* UITextView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 69F167782D6A44DCECF096095F95176D /* UITextView+LookinServer.m */; }; - 9B1EF09A8A473D92C1258B00791BF5F0 /* UIView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = C7503F25F63DE06145BA76F86802DC2A /* UIView+LookinServer.m */; }; - 9B3420DEB8A0CCB9E1241A669AEFCA8E /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 02395FDE41254ED8ECBFDDDBFF64594B /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9B9343E8599EE5196BA75E842DCB48B7 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 832387A43D4F18E7585E3A63B082600E /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Private, ); }; }; - 9CE425B89294BE2C13E70A86E75B15CF /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BB2BB05116C08E45DC29A9B3A181F8F /* SDDiskCache.m */; }; - 9D422527A25BAE6A207DEFE11958ABBC /* AFCompatibilityMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = C16CD4771AC1AE19C30DA0554197E098 /* AFCompatibilityMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9DDDCFC08B54A61C519DA78F94464E6B /* LookinHierarchyInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A189F398BE510E7B319CC3300FD8F9B /* LookinHierarchyInfo.m */; }; - 9DF446F8CA5BC4D4098766EC9063012C /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = C91A63C5E15A4287E5CB7661D503D5FD /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9DFFD4780CA32B8E53D9F4FBC8B3F5AC /* LookinAttrIdentifiers.h in Headers */ = {isa = PBXBuildFile; fileRef = 970E9876B233086A3D751ACA4D70F9C6 /* LookinAttrIdentifiers.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9E3C5CB1C97B2ED16218956999BFF7AC /* LookinTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = B3BD9FCA60B56210574573E7AA04F78E /* LookinTuple.m */; }; - 9E6B00AF2ECE462D4D3C42AFC02F2AD7 /* LookinEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D69B1BF45C02818E7FC7225E601EA13 /* LookinEventHandler.m */; }; - 9EBA682DA814406E9E5EF300587AF341 /* LookinAutoLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = A2D67C47E521ED4D7C34D7EC8D0351F6 /* LookinAutoLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9F89DCAA4092F3897E43E89842069A26 /* LKS_AttrModificationPatchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC149DD04B38B6352EC2E66AD38711D /* LKS_AttrModificationPatchHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - 9FB234EB4D8B5BCC699DB491E204594F /* LKS_GestureTargetActionsSearcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 3B1DF84CE8E8F02BCA15D175A41595D0 /* LKS_GestureTargetActionsSearcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A078A275FFFA48D620074790DA3CA6CE /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = E0E3D3DA571434BBC5A9F09E51EDECAA /* MJRefreshStateHeader.m */; }; - A0E0DC76F51300E7EB1EBA5492DE854D /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 1344E055DAEFCD6CAEEC876F478E0AC0 /* UIImageView+AFNetworking.m */; }; - A1560247914C760D9EE5F7A2392CC06C /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 7716AB4C65CD7C7249AEAA3B083AF83B /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9A7FB1E975A5955C896E6B195C521804 /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 60E339E151900BF9DDBFEDE00A37182D /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9A89C16038149623A1DF06D47E7F953A /* LookinStaticAsyncUpdateTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 651BCEE02EE09944661239397E6D5544 /* LookinStaticAsyncUpdateTask.m */; }; + 9B06400877E40C173F5A1C9761F288CB /* UITextView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A76C3033DDC15001490F7CE805EDD4C /* UITextView+LookinServer.m */; }; + 9B1EF09A8A473D92C1258B00791BF5F0 /* UIView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 07CF87D2A78D582102BB7F2CC1E06D69 /* UIView+LookinServer.m */; }; + 9B3420DEB8A0CCB9E1241A669AEFCA8E /* SDAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D82E930D0F2B33B118DA02E794AEA23 /* SDAnimatedImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9B9343E8599EE5196BA75E842DCB48B7 /* NSBezierPath+SDRoundedCorners.h in Headers */ = {isa = PBXBuildFile; fileRef = 229EC86F5CF3C97B108E9AB47A0D2ABA /* NSBezierPath+SDRoundedCorners.h */; settings = {ATTRIBUTES = (Private, ); }; }; + 9CE425B89294BE2C13E70A86E75B15CF /* SDDiskCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 633F2EE743398967F9651A634CA3ED71 /* SDDiskCache.m */; }; + 9D422527A25BAE6A207DEFE11958ABBC /* AFCompatibilityMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 39ABA9C0906D9CC9F2AFD815FDC30696 /* AFCompatibilityMacros.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9DDDCFC08B54A61C519DA78F94464E6B /* LookinHierarchyInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 70C2384D14B3691CB3C5B98DCA0B35BD /* LookinHierarchyInfo.m */; }; + 9DF446F8CA5BC4D4098766EC9063012C /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA44A6ECAB7BAF550494938C65074DF /* SDWebImageOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9DFFD4780CA32B8E53D9F4FBC8B3F5AC /* LookinAttrIdentifiers.h in Headers */ = {isa = PBXBuildFile; fileRef = C4EA0EBE2010F2B34CCB87C3B956CA5B /* LookinAttrIdentifiers.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9E3C5CB1C97B2ED16218956999BFF7AC /* LookinTuple.m in Sources */ = {isa = PBXBuildFile; fileRef = BAF9D7C94DBF5CE39657FF3E402B3CA6 /* LookinTuple.m */; }; + 9E6B00AF2ECE462D4D3C42AFC02F2AD7 /* LookinEventHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 612064766B38AA6EDF74D011716F8B07 /* LookinEventHandler.m */; }; + 9EBA682DA814406E9E5EF300587AF341 /* LookinAutoLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 394E26511F1B972C1F62DB92576F3246 /* LookinAutoLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9F89DCAA4092F3897E43E89842069A26 /* LKS_AttrModificationPatchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = DF83BC41ED5AC7E86AD951D501C02E07 /* LKS_AttrModificationPatchHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + 9FB234EB4D8B5BCC699DB491E204594F /* LKS_GestureTargetActionsSearcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C013B9E150C3534656435CE6E24CDC /* LKS_GestureTargetActionsSearcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A078A275FFFA48D620074790DA3CA6CE /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 04F71A248E6F3B33E512BA4547060EFB /* MJRefreshStateHeader.m */; }; + A0E0DC76F51300E7EB1EBA5492DE854D /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F1D52AC31D1CC317C4D273E89DB2576A /* UIImageView+AFNetworking.m */; }; + A1560247914C760D9EE5F7A2392CC06C /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 84D5E3254AD61B1D6892C52893B11492 /* UIImage+GIF.h */; settings = {ATTRIBUTES = (Public, ); }; }; A1A1266FD70CEB545FD7602CC33F2F7B /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D673941813D9CA4EFFC6C32109054DC5 /* QuartzCore.framework */; }; - A1ACD509069144C27542774A41FE0243 /* UITableView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5870C84B96B7FC2BF3E1B4EF89B7EABB /* UITableView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A1DC9EFDF50DF0EAF24D9D7C219AD2C1 /* NSObject+MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F254BA2A55B028FDD6A7C52AB7B3229 /* NSObject+MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A1E44277704AD68E867FD7C955A6632D /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C9CBA9F980F6337553B07CF7C9A082E /* MJRefreshBackGifFooter.m */; }; - A324722BA42F21E98F158EA6C133D715 /* LookinServerDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 41DDF9F8A6577A94317508E854DB067A /* LookinServerDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A3EA39A13714B3103B82F4066A642F53 /* MJExtensionConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A138DDBE01653689513DEA2E2290D19 /* MJExtensionConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A6728DA26A7C457B78A7A3CCFA9D9A10 /* UILabel+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF7539516B56EB3E414596115FA4C28 /* UILabel+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A6B2B022993BBC55550CFBB0A0C78209 /* LookinConnectionAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 74B7B393190F8ED4CF8F70CFED858B48 /* LookinConnectionAttachment.m */; }; - A839428F403C52D8AA3466B65E20C27A /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B036D97AF3C36613B6F91C8800239E05 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A86CC1AFDFDD692DC4EE66F57C0F39E6 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = F226B2CC207D85EB9F275E3909ECFE28 /* UIScrollView+MJRefresh.m */; }; - A8AD2AE9695630E93DE504211EBAFBF1 /* LKS_CustomDisplayItemsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = CF54D2B19B7B898F8749626736C6A367 /* LKS_CustomDisplayItemsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A92AB5E65CA85947368E46E6627F1BFB /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 17FD4A3105C0D577397492893A95BAF8 /* UIButton+WebCache.m */; }; - A93BA1C5A4FFEF3ACF371690485A2703 /* NSObject+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = D611D48BCE9E640C43663E2F13F9745C /* NSObject+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A9609EEBDD5FD40292925E80ED84D5DF /* LookinServer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D21D3AFADB4E7E959AAAB06694A674E /* LookinServer-dummy.m */; }; - A9A49E4A3BE8882F60DF32BAF39DE191 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C964990B4A1F0976B9050A880326A124 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - A9BEDE2ADF9D1E0D0D1A241806A1A486 /* LKSConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = DED53EADD673E8344ADE4F29E65B05EA /* LKSConfigManager.m */; }; - AA1EA8F0F0470F1596B1FFA58ABF3375 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B2CEB63BF676CEE8E36C9825FBC2D9FF /* SDWebImageDownloaderOperation.m */; }; - ABCB80C4813C849FC93D57676820C907 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = A1FAF256EF0306662FC45B68A0E96EDB /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC14E56ECA7A4980A8E1CA68E800B12C /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 92D95C5758825D92D4ABC96CD6511473 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AC710813CB6A1DAEEE45914402F864D2 /* MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 74E4055647D4226A87EF134A0A482E51 /* MJProperty.m */; }; - AE69A3B75BEEB9E2C54168BF0C502BC6 /* LKS_RequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = A4A2B6CD9939B7F97AA34443525A657F /* LKS_RequestHandler.m */; }; - AE7B02645B8F769CA5F215EE8F7CC5B0 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B7DAD642D3DC69175A08133BBA52F3A /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AF185CDCA462AD6450543676951C82F9 /* LKS_ObjectRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = DB8380AC1457059FF2EFCA669AF450E6 /* LKS_ObjectRegistry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - AFDC0B8255B2F3CED8E609F8A3BD1CDB /* LKS_AttrGroupsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 1DC887BCA33298C24FE30940EE87D81E /* LKS_AttrGroupsMaker.m */; }; - B030B558BE97E0225652EFB8C8FA431F /* AFAutoPurgingImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 01967DD4C5A85509805CBCD8FF8067EA /* AFAutoPurgingImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B09F08548ACA8379445F6525011EE219 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A21579F9E54E8D15CE50809C18E9383 /* MJRefreshBackStateFooter.m */; }; - B2704AFFC5CC053154839DB44924D255 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = AA126E980A8C9FE2B501C70B08282019 /* SDImageCoderHelper.m */; }; - B2B5444DFE63D2835A7561C1D64C9344 /* LKS_CustomAttrModificationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 72B915563644A1FC0237C7B216F51887 /* LKS_CustomAttrModificationHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B2BC43DEC8DE2B9234693FE3782AB76C /* LKSConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5806CB3C712CE08D8ABAEFC71AE912DF /* LKSConfigManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B331CE2D3DEB461E738B886086A365F9 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = B1D7A18C6F68303CF83BFCF21D2952B6 /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B48A975992E58328254C494F133DE467 /* NSObject+MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 0527D2696C86C0F4BD662C1F0239F077 /* NSObject+MJProperty.m */; }; - B4F231C5CBAB3D4A184699D0066E0E83 /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5077384A4E39CE59F6A200B5D75878E0 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B565C08CE947CF591B1D3582272D5E1D /* LKS_CustomAttrSetterManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 61181E369DFBFA5F80FBC45E82473070 /* LKS_CustomAttrSetterManager.m */; }; - B59E60FBC9665FC1061B88B8E6FD9FAF /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8495772F8550107728BB239DE5C6229E /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B5AF87C11A465F666473F6191D173905 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 876AE024D71B4EF1E561674AFE730133 /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B5C521FFB8E09DFE348238E21556842F /* UILabel+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E373F587419E70BA0E69E2506B48FF0 /* UILabel+LookinServer.m */; }; - B66356D4E7E43B3D15324569AA7EBB05 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B8F54FDAA598ECBB2D1EF7BCCA9BCE /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B680C2604BD8BC9644AE7C67BC46B9BB /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = DB800C9C7BAA818B8D589D490CA92A2C /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B741DBE2A466E6211F879EF997D9322D /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 471A82A49DEE185FC6E3F063F4845141 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - B79864F972C51037B350802D8CD48024 /* LKS_GestureTargetActionsSearcher.m in Sources */ = {isa = PBXBuildFile; fileRef = BD5D9ACE60BD3F7C5357293FE159E089 /* LKS_GestureTargetActionsSearcher.m */; }; - B81566F19789EBD9BE2714E2A6059D36 /* LookinDisplayItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C7C30C3A82271A0F12CE2EEF18DE7D0 /* LookinDisplayItem.m */; }; - B95C63A039D9D08896421291DEBD3AEB /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = 024FCA5915EF94C429ADBEF0C289FDB7 /* SDWebImageCacheKeyFilter.m */; }; - BA904ABA8ED36CC4E5EB2B2004CA1F18 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = ACAD387DAF06171B0CCCA098A7844B8F /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BACAA91A92F35CD7E7795232A83F21D1 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C9506AC016900FA4BD34901C6E6B085F /* AFNetworkActivityIndicatorManager.m */; }; - BADA31750A2136D073EDA4461DBE1EEA /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 254C72B378FB8F599D2A2EFDC33A7489 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BBA61EF31BFDFA6FCA34DC4EBE6E1D9A /* NSString+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 35D9676AD5F2D16383074D7616524F2F /* NSString+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BBF5FDA7D647517E2F904FE8E5596D96 /* LKS_AttrGroupsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FFA0EDEB465D63DE04725E94D60FA0B /* LKS_AttrGroupsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC2F9B1D6986FEB23B4FB1288B512538 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E458A7FEE9ED5F20EF848A6C6544D53 /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC5458210A973BC7A29D1F45D458A14B /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = EFA437ED007B641FA2C2EB6A9D241B8F /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BC7A1933CCF40C3C5E2E4A70AD2D0657 /* LookinDisplayItemDetail.m in Sources */ = {isa = PBXBuildFile; fileRef = 72B184F2B801EED2FCD9843F638CBE4E /* LookinDisplayItemDetail.m */; }; - BCBAF1B66C66E987E2DC281C865CD703 /* Pods-keyBoard-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 969A9A842778EFB5D62826500DFF4E11 /* Pods-keyBoard-dummy.m */; }; - BCDC1E1D46DD124B5726A064D2EE66A3 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 106F7E7EDB4970617E93A975091A13D2 /* UIImage+MultiFormat.m */; }; - BCEFDE57BB0E0B36731C8D39FFA1BE2C /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 33BC65FB1012369C1CBD9668499D4BAA /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BD30193C1E3D7B1F17B1B1F3F08BE655 /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 200A45539F32562571F351DB64891F37 /* UICollectionViewLayout+MJRefresh.m */; }; - BDBE494BAC544843982C3CA96A6C41DD /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = AC94C322E266D6376E6DE6CAE85D7E8A /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BF0C3D2782FE1425C2F1F8827132A94B /* MJFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 64F51AABAF636DCECF141CB54F075D6F /* MJFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BF22D137EF6324675FA50080C5D93C00 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A6A89615BCCC57230EB9C77EAD10932 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - BFAC671767912906E90060B0F4BED5FB /* LookinCustomAttrModification.h in Headers */ = {isa = PBXBuildFile; fileRef = 622F6ED0A6BF382A4C8A4CEB78F2DEDF /* LookinCustomAttrModification.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C0D7926E41A294ACA98D7B033B283919 /* WKWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 8331404CF71463593B63634AFF0D7DA1 /* WKWebView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C1D9802BE2A6410FFDFB1650FB9BA317 /* LookinDisplayItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 654B7441631139FA93DE9402C0691827 /* LookinDisplayItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C1DD8C6A64F948E4C53560C76B995DA4 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 58E98AFB46C417CF6290EB04E8F2D36B /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C2033A68F13923BF9B3EE19F39FC1411 /* UIColor+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE0BC2C14C847A19C15872D3BD03614 /* UIColor+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C2068AEACC2D9C7F1FFE41AA25B12A68 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = D08D41D93653505FF8DE6D29F4CCCD4D /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C2840BF1950FF7EE2DCD6D55F768A49C /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 023ED970984BA7A7B038E49A75B861CA /* UIImage+GIF.m */; }; - C2FE60A10C792613E45031AE6E851ECB /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 16EE2B7F17D48DF298FBC60518EBF6F4 /* MASViewConstraint.m */; }; - C4CC01ED368863C6E3220988FBC6CEFB /* LKS_CustomAttrSetterManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 37F59E3D43780FECC0B07C3EEA62B646 /* LKS_CustomAttrSetterManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C60DB44F719853DE3B7157960DAF9270 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 391F3C106276CBA54B8BC74E2AD17998 /* MJRefreshComponent.m */; }; - C6A100159974349FEAAC99B82BE0F872 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = D744A5DC01907A26FA69952B99FEB476 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C6FEC1088121FEA7DDC3384B7ECF3B44 /* LKS_Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = DA7D29143B5222573E44C89FC5281E16 /* LKS_Helper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1ACD509069144C27542774A41FE0243 /* UITableView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = D017EA62245DB2555D0FAD9673A02E81 /* UITableView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1DC9EFDF50DF0EAF24D9D7C219AD2C1 /* NSObject+MJProperty.h in Headers */ = {isa = PBXBuildFile; fileRef = F81EADB3DC16D96C6357C26DAF50097C /* NSObject+MJProperty.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A1E44277704AD68E867FD7C955A6632D /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 575CFD08C73D335D9EB940A62E08CA51 /* MJRefreshBackGifFooter.m */; }; + A324722BA42F21E98F158EA6C133D715 /* LookinServerDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = B83B6D7BEE9D6ED7612ED74D0D652266 /* LookinServerDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A3EA39A13714B3103B82F4066A642F53 /* MJExtensionConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD9554CCF9297CBC4A216FA40E938ED /* MJExtensionConst.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6728DA26A7C457B78A7A3CCFA9D9A10 /* UILabel+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AFFE416819878D07A65ADA6E82C295F /* UILabel+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A6B2B022993BBC55550CFBB0A0C78209 /* LookinConnectionAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EB3E0F6EA2AEF722802AF2258844A99 /* LookinConnectionAttachment.m */; }; + A6FCF74348D1907891FBDE3F2E331136 /* DZNEmptyDataSet-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DCC668449367056FAD99194229148C2 /* DZNEmptyDataSet-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A839428F403C52D8AA3466B65E20C27A /* NSButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 73A72966F3C762FBB3F334E82CB69634 /* NSButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A86CC1AFDFDD692DC4EE66F57C0F39E6 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 39655DCF43C0D84A0701B98D87E70577 /* UIScrollView+MJRefresh.m */; }; + A8AD2AE9695630E93DE504211EBAFBF1 /* LKS_CustomDisplayItemsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BF35F15520F59A5E4A5CE1FA75927EE /* LKS_CustomDisplayItemsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A92AB5E65CA85947368E46E6627F1BFB /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 314E3FC91EB8B408236ED4C78B885D16 /* UIButton+WebCache.m */; }; + A93BA1C5A4FFEF3ACF371690485A2703 /* NSObject+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B562191F3678A7965507AF8B0D8BE7 /* NSObject+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A9609EEBDD5FD40292925E80ED84D5DF /* LookinServer-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B8EBE510DE0EABD7D6FE8B5C1BECDA69 /* LookinServer-dummy.m */; }; + A9A49E4A3BE8882F60DF32BAF39DE191 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C5351B227792D11EE48FFB201DCB8F62 /* SDWebImageManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + A9BEDE2ADF9D1E0D0D1A241806A1A486 /* LKSConfigManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 325405580D0271A2C4EBDB695A5AB536 /* LKSConfigManager.m */; }; + AA1EA8F0F0470F1596B1FFA58ABF3375 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FDC0E36FCDC540AE65CF49D2F26B8BE /* SDWebImageDownloaderOperation.m */; }; + ABCB80C4813C849FC93D57676820C907 /* SDImageCacheDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = B83807191AF81B917219AC57AD7C4DA6 /* SDImageCacheDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC14E56ECA7A4980A8E1CA68E800B12C /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = B594CE211EC2EBBB46AE9061BA79FFE6 /* SDWebImagePrefetcher.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AC710813CB6A1DAEEE45914402F864D2 /* MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = D51AEB47029A4618D53132FE177582F7 /* MJProperty.m */; }; + AE69A3B75BEEB9E2C54168BF0C502BC6 /* LKS_RequestHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3358B071D3DBACDD7C38DD4D38159CA6 /* LKS_RequestHandler.m */; }; + AE7B02645B8F769CA5F215EE8F7CC5B0 /* View+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 678A796D8A78AFF578F121454B12F8CD /* View+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AF185CDCA462AD6450543676951C82F9 /* LKS_ObjectRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 111ABB06FDFF559552C85BCF30F5D2F4 /* LKS_ObjectRegistry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + AFD1D411A9387DCEC6F0034653E23787 /* DZNEmptyDataSet-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8A56DD9A3C882C9F1DF2B0003043CA42 /* DZNEmptyDataSet-dummy.m */; }; + AFDC0B8255B2F3CED8E609F8A3BD1CDB /* LKS_AttrGroupsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 586E80B855BDB3E4E90B9FB145E2EB0D /* LKS_AttrGroupsMaker.m */; }; + B030B558BE97E0225652EFB8C8FA431F /* AFAutoPurgingImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A8033C5E72AC6B644BBFEA8D63B7DD4E /* AFAutoPurgingImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B09F08548ACA8379445F6525011EE219 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = A617C7FB0EDD8D5BBB4FE494072EAEA7 /* MJRefreshBackStateFooter.m */; }; + B2704AFFC5CC053154839DB44924D255 /* SDImageCoderHelper.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E6423772635F4C3102289DE850F792D /* SDImageCoderHelper.m */; }; + B2B5444DFE63D2835A7561C1D64C9344 /* LKS_CustomAttrModificationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFC8A85C8C4A8EB482780063B96293A /* LKS_CustomAttrModificationHandler.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B2BC43DEC8DE2B9234693FE3782AB76C /* LKSConfigManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9974E2D70C76DAB234FAC98761556137 /* LKSConfigManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B331CE2D3DEB461E738B886086A365F9 /* SDImageGraphics.h in Headers */ = {isa = PBXBuildFile; fileRef = CC6FBFE5D869224A6CF779369F55BF2E /* SDImageGraphics.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B48A975992E58328254C494F133DE467 /* NSObject+MJProperty.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DA4571CF6333890957ED92A8FA2AF37 /* NSObject+MJProperty.m */; }; + B4F231C5CBAB3D4A184699D0066E0E83 /* SDImageAWebPCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 57339782C3AB75D710506F6FB663C517 /* SDImageAWebPCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B565C08CE947CF591B1D3582272D5E1D /* LKS_CustomAttrSetterManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E73B5A048EDD0FDD4241A1F25B8855 /* LKS_CustomAttrSetterManager.m */; }; + B59E60FBC9665FC1061B88B8E6FD9FAF /* Masonry-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = DA0A5CEDC9D5D0BEF1AC9E46BAE3F913 /* Masonry-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B5AF87C11A465F666473F6191D173905 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 98843A0DA0B32A2AD534FD0DEDFF22AB /* UIView+WebCacheOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B5C521FFB8E09DFE348238E21556842F /* UILabel+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 954E7A3ED44A655F09F9D9660EACDDFC /* UILabel+LookinServer.m */; }; + B66356D4E7E43B3D15324569AA7EBB05 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2111C167031C627E8A809F5D155D6B9D /* SDWebImageDownloaderOperation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B680C2604BD8BC9644AE7C67BC46B9BB /* MASLayoutConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = 7279EAB65BFFE7CFBBE326A2535AC656 /* MASLayoutConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B741DBE2A466E6211F879EF997D9322D /* SDImageCodersManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 85FE48FEA957DB5936ECEE4F0A71B009 /* SDImageCodersManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + B79864F972C51037B350802D8CD48024 /* LKS_GestureTargetActionsSearcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DC4FD783789DDB9ED9EA77F73A62868 /* LKS_GestureTargetActionsSearcher.m */; }; + B81566F19789EBD9BE2714E2A6059D36 /* LookinDisplayItem.m in Sources */ = {isa = PBXBuildFile; fileRef = 57F9DD94DC7C2B755239E5925595D7C8 /* LookinDisplayItem.m */; }; + B95C63A039D9D08896421291DEBD3AEB /* SDWebImageCacheKeyFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = E2D0D25D26815B60A5D95E65A0F65076 /* SDWebImageCacheKeyFilter.m */; }; + BA904ABA8ED36CC4E5EB2B2004CA1F18 /* MASCompositeConstraint.h in Headers */ = {isa = PBXBuildFile; fileRef = C48E3A880F57BDDE05010EB0D4A8AC98 /* MASCompositeConstraint.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BACAA91A92F35CD7E7795232A83F21D1 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 00B18774CC6391C1FB41979BD95FA8C3 /* AFNetworkActivityIndicatorManager.m */; }; + BADA31750A2136D073EDA4461DBE1EEA /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 70FD8AAA2CE8990A75B251A7DB733A44 /* UIButton+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BBA61EF31BFDFA6FCA34DC4EBE6E1D9A /* NSString+Lookin.h in Headers */ = {isa = PBXBuildFile; fileRef = 51D2A173EC30AAA0DFA941E4D92C0D53 /* NSString+Lookin.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BBD85F9E0E25710317253841091C391F /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 37AD260673E5D427A6C4167BC0357FF3 /* PrivacyInfo.xcprivacy */; }; + BBF5FDA7D647517E2F904FE8E5596D96 /* LKS_AttrGroupsMaker.h in Headers */ = {isa = PBXBuildFile; fileRef = DB5651527386CD1B3A287B9A086C09DB /* LKS_AttrGroupsMaker.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC2F9B1D6986FEB23B4FB1288B512538 /* MJRefreshNormalTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = E68C14C984EA28456AD25B437BFFD513 /* MJRefreshNormalTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC5458210A973BC7A29D1F45D458A14B /* AFNetworking-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = FB570173299BA0981C64C4954AE0BF7D /* AFNetworking-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BC7A1933CCF40C3C5E2E4A70AD2D0657 /* LookinDisplayItemDetail.m in Sources */ = {isa = PBXBuildFile; fileRef = EE7D8454125C1BA42337678F1EE28A18 /* LookinDisplayItemDetail.m */; }; + BCDC1E1D46DD124B5726A064D2EE66A3 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 3152142650040373F6DF17DC7EDCE186 /* UIImage+MultiFormat.m */; }; + BCEFDE57BB0E0B36731C8D39FFA1BE2C /* SDWebImageDownloaderRequestModifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 479AFECCA68AEF5BAF3AFF0B4DC369DA /* SDWebImageDownloaderRequestModifier.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BD30193C1E3D7B1F17B1B1F3F08BE655 /* UICollectionViewLayout+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 69AFDB50C9D979273008F144EF898FCB /* UICollectionViewLayout+MJRefresh.m */; }; + BDBE494BAC544843982C3CA96A6C41DD /* SDAnimatedImagePlayer.h in Headers */ = {isa = PBXBuildFile; fileRef = AA1A283CCC7407D1F72A54536D3D1F70 /* SDAnimatedImagePlayer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BF0C3D2782FE1425C2F1F8827132A94B /* MJFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1173BDB5AA57CA5E444B378D705BBE3F /* MJFoundation.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BF22D137EF6324675FA50080C5D93C00 /* NSArray+MASAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F652D71E3E50AF10964AD227D56F36 /* NSArray+MASAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + BFAC671767912906E90060B0F4BED5FB /* LookinCustomAttrModification.h in Headers */ = {isa = PBXBuildFile; fileRef = 173AF5E6D712D1DF733701331162155B /* LookinCustomAttrModification.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C0D7926E41A294ACA98D7B033B283919 /* WKWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF063706C65042A3322B65B0F2DFC5A /* WKWebView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C1D9802BE2A6410FFDFB1650FB9BA317 /* LookinDisplayItem.h in Headers */ = {isa = PBXBuildFile; fileRef = 75427AB3CFEFC15FE3E5B3DB1482A9DD /* LookinDisplayItem.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C1DD8C6A64F948E4C53560C76B995DA4 /* SDAnimatedImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20B9BFD85A3CCB89F02C2B24D803DCE2 /* SDAnimatedImageView.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2033A68F13923BF9B3EE19F39FC1411 /* UIColor+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 15F7E1A00ABF255AFEE889117BA05211 /* UIColor+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2068AEACC2D9C7F1FFE41AA25B12A68 /* MASUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = A36B56F43675EB04F1CC908C739FD537 /* MASUtilities.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2840BF1950FF7EE2DCD6D55F768A49C /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A5059C63ABDC7A8C19A82F58D03347E /* UIImage+GIF.m */; }; + C2F8C43CFD4C890405F217DA7E00C839 /* Pods-CustomKeyboard-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DDD0462C32F55EF5E9CB1056459809F /* Pods-CustomKeyboard-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C2FE60A10C792613E45031AE6E851ECB /* MASViewConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 439A955032A803528601A53D13E98732 /* MASViewConstraint.m */; }; + C4CC01ED368863C6E3220988FBC6CEFB /* LKS_CustomAttrSetterManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6923DD235A7C9D06781B67EB685D62 /* LKS_CustomAttrSetterManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C60DB44F719853DE3B7157960DAF9270 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C48A4D6BE2CBCB1CF05CB08A805079E /* MJRefreshComponent.m */; }; + C6A100159974349FEAAC99B82BE0F872 /* SDImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E0DDB0E6F887AAC6BF976DF87B60E090 /* SDImageLoader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C6FEC1088121FEA7DDC3384B7ECF3B44 /* LKS_Helper.h in Headers */ = {isa = PBXBuildFile; fileRef = 077DBD741909C88698D1CCE9FCF28728 /* LKS_Helper.h */; settings = {ATTRIBUTES = (Public, ); }; }; C71935C30C1AEDF32B96670BD8FA64CE /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E1DF8BF780A4AD9606856AB857CA1D86 /* UIKit.framework */; }; - C857B8D2D0BAA5A8A764F9E1C4B85807 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 17A5496F72B08AB0D8322BF299C98176 /* ViewController+MASAdditions.m */; }; - C8771885BEA9EA0BD2E2C474587325E2 /* LKS_ExportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = FAAA120B05EADE7C41D993D48251FF01 /* LKS_ExportManager.m */; }; - C8EC35DFB0945DBE2F2FF9ECFE6D9711 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = A8FE04060A3E22A889B5222EB4FA28D9 /* NSLayoutConstraint+MASDebugAdditions.m */; }; - C8F4758D203D5D42CBEE70E2F01D37C1 /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 33DAAFE9575412CFC852D64A5D2B8E84 /* PrivacyInfo.xcprivacy */; }; - C93E972E75F84674690300123984EC43 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = 04829971197FA4C00B42EFEDE2C5C947 /* SDAssociatedObject.m */; }; - C992A335399F942237E754EE65C40CA5 /* LookinObject.h in Headers */ = {isa = PBXBuildFile; fileRef = BB2F587AA84A31548781D4331CE6A663 /* LookinObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C993A4D0CFA51E567F458CA65C1298AA /* MBProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CBF782E18392DC4731A18BF30BEF739 /* MBProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C9B63C6ED2ED691EA83D3EE65939444B /* Lookin_PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = A13ECC896BF84437C0ED7BCBBF1E575A /* Lookin_PTProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; - C9E19D164C26414115CC969ED9A303C1 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C608E002A5A566E75CAEA3CE2636BEC /* MASLayoutConstraint.m */; }; - C9E8C9372C2DA29D302B058BE3AE9877 /* CALayer+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = E919EBA36C3E6D227E73B54E38BF26ED /* CALayer+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CA1E0DCDF679EA2DE2ED0915426E1D04 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3118B9573F7B3C28EA6123AE2CAE6B25 /* SDWeakProxy.m */; }; - CA56274BE7CBB3E759E0364785DF9799 /* Lookin_PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = BC10A4F27CB28FEFAFAAC64FBB83CCFF /* Lookin_PTChannel.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CD418A72805490A697B6172BEDA624D4 /* Pods-CustomKeyboard-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DDD0462C32F55EF5E9CB1056459809F /* Pods-CustomKeyboard-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CE86196C00DC1D658B6CB7D47A0233AA /* LKS_ConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D674CE0C910213F79BE96B2A0392AD0 /* LKS_ConnectionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - CFF8D1A5E4C2097EF05E1021FE112886 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 12A83FDFA77E9B4C72711E4B96D6CD23 /* SDWebImageIndicator.m */; }; - D06BB547D59D183FD1DDD84DEBAC9EE8 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D02D38AAAAA529B8ECD4D448FBD3E8D /* SDWebImageCacheSerializer.m */; }; - D091F05269EE0566B665B00C7D912F8E /* Lookin_PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = F613D680436DA336652ED3BAEB369437 /* Lookin_PTChannel.m */; }; - D1230E19DD1507E6370B80DF6653AC2A /* NSArray+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = DB452AE8652F8980BE53E3B9CBC53C91 /* NSArray+Lookin.m */; }; - D2AF9A7FD73B95960FDA4FD06C4BED08 /* NSObject+MJKeyValue.h in Headers */ = {isa = PBXBuildFile; fileRef = A09CC2027F235BDFDC50BF600A9639D6 /* NSObject+MJKeyValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D2CD8848F856EC9942A76610AAE66F0A /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 17817FCBF8471C21BDA14D3091C3589E /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D4010DA3F272FB62BE724A54BEA43027 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; - D559CC4D0695CEE05F3B4C1C06475044 /* UIImageView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 45090ED336D16C5189EDAC8ED9B67A35 /* UIImageView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D5C046C46961BE465293625D6B870620 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 61FEC94A1F66D9DBD17D3B3A8B67B021 /* AFNetworking-dummy.m */; }; - D62A672EEB252581BD972DDA862BE1DD /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = BEF325B26EF1879E855022CAD391AB9E /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D662C83ECE8BEDA5FFB52F3575CA3E1A /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 40FC5885FF4C6338AD85780D12CAAE8B /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C857B8D2D0BAA5A8A764F9E1C4B85807 /* ViewController+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 5313BF3FFF47D27555E3AD6186F4951A /* ViewController+MASAdditions.m */; }; + C8771885BEA9EA0BD2E2C474587325E2 /* LKS_ExportManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CF0A730CF94F9E641A4ED1FE09F2569 /* LKS_ExportManager.m */; }; + C8EC35DFB0945DBE2F2FF9ECFE6D9711 /* NSLayoutConstraint+MASDebugAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 41A05832F4F15AABB53220573DD1AD99 /* NSLayoutConstraint+MASDebugAdditions.m */; }; + C93E972E75F84674690300123984EC43 /* SDAssociatedObject.m in Sources */ = {isa = PBXBuildFile; fileRef = D8B602E532921F3CEC80251B9195BC68 /* SDAssociatedObject.m */; }; + C992A335399F942237E754EE65C40CA5 /* LookinObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 24F8FA1D260910F600A2FECEB1D74988 /* LookinObject.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C993A4D0CFA51E567F458CA65C1298AA /* MBProgressHUD-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE4B14D8CFD815111A796D5B4933E7DF /* MBProgressHUD-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C9B63C6ED2ED691EA83D3EE65939444B /* Lookin_PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 575BBC04164F81FC37914FA7A54E3240 /* Lookin_PTProtocol.h */; settings = {ATTRIBUTES = (Public, ); }; }; + C9E19D164C26414115CC969ED9A303C1 /* MASLayoutConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = CD1A784F64F6D1175B41B1E14733EAB8 /* MASLayoutConstraint.m */; }; + C9E8C9372C2DA29D302B058BE3AE9877 /* CALayer+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 20D7A9117FD1CBF865700C7C5569512C /* CALayer+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CA1E0DCDF679EA2DE2ED0915426E1D04 /* SDWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E6A75A6734AF3A235BA22A135DAFCC9 /* SDWeakProxy.m */; }; + CA56274BE7CBB3E759E0364785DF9799 /* Lookin_PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 961DF772C77317164F224836C8C58C0C /* Lookin_PTChannel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CE86196C00DC1D658B6CB7D47A0233AA /* LKS_ConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E37FF5DA81F2ACDA55A6A061BBD6A251 /* LKS_ConnectionManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + CFF8D1A5E4C2097EF05E1021FE112886 /* SDWebImageIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = A7BD403F1F413528C53B3EFDF1387BC4 /* SDWebImageIndicator.m */; }; + D06BB547D59D183FD1DDD84DEBAC9EE8 /* SDWebImageCacheSerializer.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D440755A089B2475FF76C4132626F26 /* SDWebImageCacheSerializer.m */; }; + D091F05269EE0566B665B00C7D912F8E /* Lookin_PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 4719BD42C96EBDC858610D75E5F1479C /* Lookin_PTChannel.m */; }; + D1230E19DD1507E6370B80DF6653AC2A /* NSArray+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 20651414D2027C8A7686D018492D8DFD /* NSArray+Lookin.m */; }; + D2AF9A7FD73B95960FDA4FD06C4BED08 /* NSObject+MJKeyValue.h in Headers */ = {isa = PBXBuildFile; fileRef = CAC9B29760199C16C058439C456A1C20 /* NSObject+MJKeyValue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D2CD8848F856EC9942A76610AAE66F0A /* SDImageIOCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 24FAC359D5942B824AB3D1011560DCF5 /* SDImageIOCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D559CC4D0695CEE05F3B4C1C06475044 /* UIImageView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = B992A3B139CAB05FADF1BC0D5F741D58 /* UIImageView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D5C046C46961BE465293625D6B870620 /* AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 20F843696759BAF00119DB1CDA7EEE79 /* AFNetworking-dummy.m */; }; + D62A672EEB252581BD972DDA862BE1DD /* SDWebImage-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 21289499078E8DC3A04904CA8F2BEA84 /* SDWebImage-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D662C83ECE8BEDA5FFB52F3575CA3E1A /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E06AD632286B35CFD22D01BA0C8B9754 /* SDImageCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; D663837F4347AF58660EE6F7FD426ECE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; - D788BA4B9E8186271BA75CA52B30502C /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 177314E9657E363C61DAD19D6D75BDBD /* View+MASAdditions.m */; }; - D7B3E8948DB04BD8FB6748419DA03EA9 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = A085D62853E322C3E916CA25247D52ED /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D89C7D5455E3E8E2D7EC6B880253BD9B /* LookinIvarTrace.m in Sources */ = {isa = PBXBuildFile; fileRef = 3129E754B4B0C1CD6B4C146E5AE2360D /* LookinIvarTrace.m */; }; - D90607B4E56247B19B14462E487BA86E /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 51B1E69E3B2A5357A1527558CB6E0465 /* MJRefreshNormalTrailer.m */; }; - D90DED0F5638B1C44F4B6C62D600D240 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = DAA5B7440495141EE8D88A1104CEFA15 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - D90DF1376DF5E2EA644313BCD2E03058 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CCB18519B12BDA459AD1CE0FE55C5930 /* MJRefresh.bundle */; }; - DBA9500CBBA5FF6FCBBA115AE4D12152 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 689BDC5CBB44C0B90A7A06AD2C74AF7C /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DBD9152526A180771BF7D7CD209B957E /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 734F03C8AE34E4BF5AA95F0C22C9132E /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DD7F63D4E4640C7386877BB787740272 /* LookinServer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C02B52C33D31D1DFF6A2805A51EC769 /* LookinServer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DDA16FB9C21AD941442357DAE6939530 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = AE221E5BEDD4CD19DE4D904CF3DD21E1 /* UIKit+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DE5A78F116018E2AC54714238276574D /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 5380C308A106E3B3377D32066D5C3A0F /* UIActivityIndicatorView+AFNetworking.m */; }; - DE98ECCCA7106A4EA575EF34830D41FF /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 46C38C97C8397AA3A88D774783FE2EEF /* MJRefresh-dummy.m */; }; - DEA09692CF813A23899CD4949A9B6801 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = E72595738B0C7B9E4F6E5B90FFBAE3CB /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Public, ); }; }; - DED9ADFC8CC65243FC54E008A853742C /* MJPropertyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F2CA2F1F503FF6B4C93B235750D7337 /* MJPropertyKey.m */; }; - DF2B15402CE105F5A8CE48BBDCFFD5DD /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C25C598923F7C90D0B2A60AD70B6EB5 /* MASConstraint.m */; }; - DF525E5405FAD3B98B0C2D966EB2DD95 /* UIViewController+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = E40CD592C9415041502E624ED9EE559B /* UIViewController+LookinServer.m */; }; - E0B48B9D5D45AF3500FC718459D66E6C /* LookinDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = 7247EC33F8A78F5C637623C4DE5F4CE3 /* LookinDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E0BCF21E9FA59F638C13ECCECC4D9690 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = ED818AE88698B4DC24D187EB6F01F30E /* SDMemoryCache.m */; }; - E1BF615DD0422B06C97542F03C879D41 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 43B97213F58B7FBE16DE3BAB832D9F3E /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E1DE69F6BB6235A6EDB6C99A184BEDB4 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 778511050A09589C0F2419C65DD684FC /* UIScrollView+MJExtension.m */; }; - E3FC6BEE41652C0500F57E0CB83B347F /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E626FE204DCA11B59E8032F2BE72D1E /* UIButton+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E4F1B478580D6D7328BC29607BDE46F6 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = A4EB383CBD6229B38BC7F0518892956E /* UIImage+ExtendedCacheData.m */; }; - E50613C67DD02AF6EA825DA0B31EFFAD /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 57EA3263D4FB80CF7D624F5F6D030E39 /* SDImageGraphics.m */; }; - E55B3151D86660E28CEABC3CDE6B1508 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 23436A1A92BC2ECA48AE48E4F534A1C8 /* UIButton+AFNetworking.m */; }; - E5B057BC87284367918B2DB9CA084B4E /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 90DBFE3FBA88E6E0D4A601266E1F8C41 /* MJRefreshAutoGifFooter.m */; }; - E76969F9B01139118427505B18F9CD21 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FC366209BE4A85A302A409FA2080672 /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E7FEAB9F421F7EBAF021F792D8E9C4D6 /* LookinCustomDisplayItemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 85BF9DF79D629AED4E7665E99B9A9A59 /* LookinCustomDisplayItemInfo.m */; }; - E82964ED7092CDCDAD08BC596A57B43A /* UIImage+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F24D6A0AC44ADDE1723705C5AC64EF8 /* UIImage+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - E8AB529B9E0B4C23921344F6C4ABFEA4 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 113489F1D1C9AF69F93BE35BD4EB07C1 /* SDImageCoder.m */; }; - E930A5612DC6D120BE040AD17C6D1BCD /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B1E68E8F031A3FAEA16F2C5DC3BD882 /* MASViewAttribute.m */; }; - EA82B6D97C9C5D0558047AF552D63203 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = F5541E7500F1219F86E653EDC63EB34B /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D788BA4B9E8186271BA75CA52B30502C /* View+MASAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 1ECAF84BD3D3BFFD155656F0A8A4203A /* View+MASAdditions.m */; }; + D7B3E8948DB04BD8FB6748419DA03EA9 /* SDAnimatedImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = CD15C7D53A74E1885D0FAA59DF7E5B67 /* SDAnimatedImageView+WebCache.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D89C7D5455E3E8E2D7EC6B880253BD9B /* LookinIvarTrace.m in Sources */ = {isa = PBXBuildFile; fileRef = 60C9E782AAB85053FEFB0B6F0A6F9DE9 /* LookinIvarTrace.m */; }; + D90607B4E56247B19B14462E487BA86E /* MJRefreshNormalTrailer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1CA2424DCD0F1025FF88B2377C3149E9 /* MJRefreshNormalTrailer.m */; }; + D90DED0F5638B1C44F4B6C62D600D240 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = F75110BA005FF2D9FD13D42316A9EB38 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + D90DF1376DF5E2EA644313BCD2E03058 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 8DAEFFBFC2A8B5DDA66F37DA02A0D1EC /* MJRefresh.bundle */; }; + D92485584591A2A2D4B8A8D50B9E20C7 /* Pods-keyBoard-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 969A9A842778EFB5D62826500DFF4E11 /* Pods-keyBoard-dummy.m */; }; + D968461E31E8FF3FF6BA1DC621B0433B /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E1DF8BF780A4AD9606856AB857CA1D86 /* UIKit.framework */; }; + DBA9500CBBA5FF6FCBBA115AE4D12152 /* NSLayoutConstraint+MASDebugAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = C9ADB03572CC33002F4B5FFF7D234C78 /* NSLayoutConstraint+MASDebugAdditions.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DBD9152526A180771BF7D7CD209B957E /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F15BF5283CAD8E6C1BEEA5CB94BAC93 /* AFSecurityPolicy.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DD7F63D4E4640C7386877BB787740272 /* LookinServer-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CA68BAB63D0C7D565B1D15F975CD31B /* LookinServer-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DDA16FB9C21AD941442357DAE6939530 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE8F1D877871920052FF127A90036D4 /* UIKit+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DE5A78F116018E2AC54714238276574D /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 481BDE66966A42A2CDB09683B19807F1 /* UIActivityIndicatorView+AFNetworking.m */; }; + DE98ECCCA7106A4EA575EF34830D41FF /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D50FFCA396DF743CCFFE0B005196054 /* MJRefresh-dummy.m */; }; + DEA09692CF813A23899CD4949A9B6801 /* SDAnimatedImageRep.h in Headers */ = {isa = PBXBuildFile; fileRef = A34E97F0E0E9127BD6C840664D4D396E /* SDAnimatedImageRep.h */; settings = {ATTRIBUTES = (Public, ); }; }; + DED9ADFC8CC65243FC54E008A853742C /* MJPropertyKey.m in Sources */ = {isa = PBXBuildFile; fileRef = 9531B77BDB95A2B2375AAFCB5A73D5A7 /* MJPropertyKey.m */; }; + DF2B15402CE105F5A8CE48BBDCFFD5DD /* MASConstraint.m in Sources */ = {isa = PBXBuildFile; fileRef = 997B915D679C92DAC1CA5BC9AB14532D /* MASConstraint.m */; }; + DF525E5405FAD3B98B0C2D966EB2DD95 /* UIViewController+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 182E270DEDC87BA7D2F105E0FC09FF28 /* UIViewController+LookinServer.m */; }; + E0B48B9D5D45AF3500FC718459D66E6C /* LookinDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = E48F6B958C7773FD74BEC8EDFAADCF29 /* LookinDefines.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E0BCF21E9FA59F638C13ECCECC4D9690 /* SDMemoryCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CE3B983336EF08E3720087F0A5CA6A5 /* SDMemoryCache.m */; }; + E1BF615DD0422B06C97542F03C879D41 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = FEE54F6A77D059F4D9256A8E7808AB52 /* AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E1DE69F6BB6235A6EDB6C99A184BEDB4 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E2A6E397F8C2CBCFA92800373424406 /* UIScrollView+MJExtension.m */; }; + E3FC6BEE41652C0500F57E0CB83B347F /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 899DB60C8AE35AAEE60EE79A959585AF /* UIButton+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E4F1B478580D6D7328BC29607BDE46F6 /* UIImage+ExtendedCacheData.m in Sources */ = {isa = PBXBuildFile; fileRef = E2740E6113B346B5F92C5A0C756FECD7 /* UIImage+ExtendedCacheData.m */; }; + E50613C67DD02AF6EA825DA0B31EFFAD /* SDImageGraphics.m in Sources */ = {isa = PBXBuildFile; fileRef = 800E42EEAEDD32C6050A85CB9E42FCF2 /* SDImageGraphics.m */; }; + E55B3151D86660E28CEABC3CDE6B1508 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 635415748BE6CDDD59DB97E93DED7A43 /* UIButton+AFNetworking.m */; }; + E5B057BC87284367918B2DB9CA084B4E /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A8E62DB89DBDAD71FE2A3DC199D5391 /* MJRefreshAutoGifFooter.m */; }; + E76969F9B01139118427505B18F9CD21 /* SDImageHEICCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = FF3B3BE9F3C8478F745F8BBD3F205E3E /* SDImageHEICCoder.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E7FEAB9F421F7EBAF021F792D8E9C4D6 /* LookinCustomDisplayItemInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 725FCDB992DC8BA14911A10FB5F39FBE /* LookinCustomDisplayItemInfo.m */; }; + E82964ED7092CDCDAD08BC596A57B43A /* UIImage+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 77CAAF43AF1455EED7ADA84E53D6CC10 /* UIImage+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E8AB529B9E0B4C23921344F6C4ABFEA4 /* SDImageCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = AED6C5FEA44896CCE29E8D3DC681BE8A /* SDImageCoder.m */; }; + E930A5612DC6D120BE040AD17C6D1BCD /* MASViewAttribute.m in Sources */ = {isa = PBXBuildFile; fileRef = CF77C33FF507E05A69D4D97B14A9B16A /* MASViewAttribute.m */; }; + EA82B6D97C9C5D0558047AF552D63203 /* SDWebImageDefine.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C633FED1E6E51B0DA7EB78DE8B4A12C /* SDWebImageDefine.h */; settings = {ATTRIBUTES = (Public, ); }; }; EABCB60A26B06BF576E50BBD2F89A385 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */; }; - EB3DF628891F7D6AB114718AF760CB2A /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = C23A462C9913623F9C8FDF5460E9339B /* UIImageView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EB646114ABEA7A4D6C2A724404778670 /* LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 852A25842A8D8665E6923F3AE496EF4A /* LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EC8E84A8FFADDCA562A8608D141D9027 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 6115270DC722A6D257587BEC55E88D1C /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EC9B34262AED632D7EFB49804337648E /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D7D95AB1031F290C3C6817EA5F01941 /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; }; - ECE64B732F9FA7C402DDEEC58DCB9D98 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FAEB398159754D70CABE3317776EE95 /* SDImageAPNGCoder.m */; }; - ED8991A8AE7C04362C2BED3875DC1656 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = DB83547F40F4A323DF570BC21ACE6B77 /* AFURLResponseSerialization.m */; }; - ED8F64FF98CFAE0B12CF60A1B0E6BAF8 /* SDCallbackQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 62AA2800B9EED6DEDB0EA803F85B170D /* SDCallbackQueue.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EE6E8FE636D2C02E3D2FC1E8555B4612 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = A7281DF29098EA4B5EC135123990373A /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EED016DE8173CD38CC01D88CD2628984 /* NSString+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = C114A030757EE97557D452200311EF89 /* NSString+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; - EF6A6C725598F572A70C5FCEE328C184 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = F73AA51EEC37F9E05CE430B26CA12F28 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F1D845E22D5B8FC6AFC3C2E41DA1B6DF /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB03621F51ED0C5372FA186A7FF27E4 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F2AD91050B1FE3C8BC78567F1FDE3ED5 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = BC829FAAC6A3875A1067798DB4A26E50 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F2C9F9038FBEFD951516694AE873A2B9 /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 80ECD59B95128414F3E8AA8A95C99447 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F3263D294D688533EB974E37C61F1E24 /* MJExtensionConst.m in Sources */ = {isa = PBXBuildFile; fileRef = E35D44D16336D423E16E7BE4C321AF84 /* MJExtensionConst.m */; }; - F3AECEF6D3BB919B3E7392942E1BC58B /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 43C4E2CF2FBA7A21E072A97A01D5CB5D /* MJRefreshBackFooter.m */; }; - F3F4A6309BD95DFAA4DCC60A4E07C515 /* UITableView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = AA05D249F6490500E244A09C161B30D4 /* UITableView+LookinServer.m */; }; - F49CB22863CCFEC7817D259F27F91C57 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E614A5D6C7CB7F55D8BAAD4937FCAB /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F53BE4449AE5896F76325E4DCB6D0B13 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B89DC13493075D3D97B8C48A41AF2CC0 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F60F90EAF35CFF40DF1C33557965787D /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C63E238417B947AE193705B19A6FF3 /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F62B0711DA506CCB3DF79F65134566C7 /* Lookin_PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 783FB276937B3622B36CCC53DD11E38E /* Lookin_PTPrivate.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F68889CD481716EE5D6B75EBD8FD53A6 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D7E2A6D4D6278883FFE5F4E1E5776C /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6A0D6EA1B5DC3FE04DC4A1B0A914121 /* UIView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C21DCF8696E4CBF4739CFC20EE9B73C /* UIView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; - F6A2DEEA8E8B92D365AFDDBD5E8C1218 /* NSObject+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = 90444EF3531CB7C1020F6FD7290BDFC9 /* NSObject+Lookin.m */; }; - F6D1C960368EB1E067ABD0BFF707FC56 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 697DC475F2B03BC0752E69057A7CA83B /* MASConstraintMaker.m */; }; - F7623E7C314AA5010D8D0BD6ED4AAAD4 /* AFImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 4686DD03E5F2112159A4AF256D4ECDB0 /* AFImageDownloader.m */; }; - F8616FAFEE1124368CB96473CE20CDB4 /* LookinAttrIdentifiers.m in Sources */ = {isa = PBXBuildFile; fileRef = 3449DFFF2286997534C04DABECAC16C9 /* LookinAttrIdentifiers.m */; }; - F8F1B1196CAA5114BA9A95AA7E6D6AEB /* UIBlurEffect+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D5EA1884E0F9F70D07487B825626804 /* UIBlurEffect+LookinServer.m */; }; - F9789D86D3279D71B398B550F27C3EFF /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 08EF9795944F1F76142394C0D120CD4D /* AFSecurityPolicy.m */; }; - FA3021DED76B9B182CC9195A60EB1209 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 94C8D4650CE58C8BF079BB5F8200F71A /* NSBezierPath+SDRoundedCorners.m */; }; - FA6DA93357E2E9E9AADDFB3E39DEB6C2 /* NSObject+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 77AB8F2CB63DFC25D6209FEF0598B84D /* NSObject+LookinServer.m */; }; - FCDEC6A53CF5517E1AF5B331FD65F6D9 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 457F5A150D925E56EB5E3003716A505C /* SDImageCacheConfig.m */; }; - FCEE5BD645E95FF55468C4AB6D17CFDA /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = D43725BD43363788D28DDA9B1C38B57C /* UIImageView+HighlightedWebCache.m */; }; - FDACBA49610EA6F39CABB7FE44B137D1 /* AFImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = C5A0079AD1384A00B3C24449EBDF5C38 /* AFImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FE07C069C2E3543002CEB5D751ABA9AC /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = AF66C3B81539E211933AE9075A3955E4 /* AFNetworkReachabilityManager.m */; }; - FEA8BA4F82CCBD1D28DCC7EF39FB4096 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 2A71DACCDF69AAC79D62E15FCDF12729 /* SDImageCacheDefine.m */; }; - FEE883575278D5BE8F185437AB5DB3BB /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 0E3E150DD8AD62EEFACFAABE9513F941 /* MJRefreshGifHeader.m */; }; - FFC6D50089FA32FD7AAF25747E56EA60 /* LKS_CustomAttrGroupsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = AB33DDD90875C4148623FEEC4874293B /* LKS_CustomAttrGroupsMaker.m */; }; + EB3DF628891F7D6AB114718AF760CB2A /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E11DACE38891E0B635F5298726C94072 /* UIImageView+AFNetworking.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EB646114ABEA7A4D6C2A724404778670 /* LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = CA68C45DD07F0A027BE9C64B74B3A796 /* LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EBC9AA5D4A55F79BB5CBF6CC92719FAF /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 088A3DB9640B9B86DCECA54E13715C0F /* PrivacyInfo.xcprivacy */; }; + EC8E84A8FFADDCA562A8608D141D9027 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB5B4D6046E5DD51BE708F47881FF07 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EC9B34262AED632D7EFB49804337648E /* Masonry.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BBEEA2B34D86929E70349BB590B1E1E /* Masonry.h */; settings = {ATTRIBUTES = (Public, ); }; }; + ECE64B732F9FA7C402DDEEC58DCB9D98 /* SDImageAPNGCoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 18EDCD5BD530B7F11E9EF343D6A4BD95 /* SDImageAPNGCoder.m */; }; + ED8991A8AE7C04362C2BED3875DC1656 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 74CC4B9CFC981830544FF916E5A83CC7 /* AFURLResponseSerialization.m */; }; + ED8F64FF98CFAE0B12CF60A1B0E6BAF8 /* SDCallbackQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DC93497016CB5E97D1FDA43EA20AF77 /* SDCallbackQueue.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EE6E8FE636D2C02E3D2FC1E8555B4612 /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = DBE7D39357854460EB99868FD5AAC9EF /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EED016DE8173CD38CC01D88CD2628984 /* NSString+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 0342DB4B433F13EDE490230923030955 /* NSString+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; }; + EF6A6C725598F572A70C5FCEE328C184 /* SDImageTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 08135235A8EBF91FEF514636F22989D4 /* SDImageTransformer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F1D845E22D5B8FC6AFC3C2E41DA1B6DF /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B739A52251D68282C5B0263B144232C8 /* AFNetworkReachabilityManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F2AD91050B1FE3C8BC78567F1FDE3ED5 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D404496E0E7117743D4AEBE7AE24618 /* AFURLResponseSerialization.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F2C9F9038FBEFD951516694AE873A2B9 /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 274701B9FD567BF7C90D7937AA1BD9E7 /* MBProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F3263D294D688533EB974E37C61F1E24 /* MJExtensionConst.m in Sources */ = {isa = PBXBuildFile; fileRef = D6A6E0BE0C1C49324E5F6C97552C0AD0 /* MJExtensionConst.m */; }; + F3AECEF6D3BB919B3E7392942E1BC58B /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6CD66DE7B14AC980E0C9BF0F45F4336D /* MJRefreshBackFooter.m */; }; + F3F4A6309BD95DFAA4DCC60A4E07C515 /* UITableView+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = F5DA56584ECBB23502B1EA4E691C1F3B /* UITableView+LookinServer.m */; }; + F49CB22863CCFEC7817D259F27F91C57 /* SDWebImageIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E973A1FDB3F94754DCDB1264EDDDF41 /* SDWebImageIndicator.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F53BE4449AE5896F76325E4DCB6D0B13 /* SDImageCachesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 75DCD6903959A20B53948E18417106B8 /* SDImageCachesManager.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F60F90EAF35CFF40DF1C33557965787D /* MJRefreshStateTrailer.h in Headers */ = {isa = PBXBuildFile; fileRef = 17916ED6162E441B99E3FE5494C0751F /* MJRefreshStateTrailer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F62B0711DA506CCB3DF79F65134566C7 /* Lookin_PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = C789EE7A2AE246689BE0868C0239B180 /* Lookin_PTPrivate.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F68889CD481716EE5D6B75EBD8FD53A6 /* SDImageCoderHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = B182B3E60EEE24101ACBF7E65C720188 /* SDImageCoderHelper.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6A0D6EA1B5DC3FE04DC4A1B0A914121 /* UIView+LookinServer.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC51409E4245F194CB1F20A817E7A98 /* UIView+LookinServer.h */; settings = {ATTRIBUTES = (Public, ); }; }; + F6A2DEEA8E8B92D365AFDDBD5E8C1218 /* NSObject+Lookin.m in Sources */ = {isa = PBXBuildFile; fileRef = CA5F508E08543C1BBB3B6324A70972FE /* NSObject+Lookin.m */; }; + F6D1C960368EB1E067ABD0BFF707FC56 /* MASConstraintMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = E945EE8B2F5AA809194A0E7B50374ACD /* MASConstraintMaker.m */; }; + F7623E7C314AA5010D8D0BD6ED4AAAD4 /* AFImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 407EB5244BB1A9AAE0D09FFE20726A9D /* AFImageDownloader.m */; }; + F8616FAFEE1124368CB96473CE20CDB4 /* LookinAttrIdentifiers.m in Sources */ = {isa = PBXBuildFile; fileRef = AE67898E71446EC88FC385C9A033EB73 /* LookinAttrIdentifiers.m */; }; + F8F1B1196CAA5114BA9A95AA7E6D6AEB /* UIBlurEffect+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = FC9B7374A387D325D02D3DD73E0D91C3 /* UIBlurEffect+LookinServer.m */; }; + F9789D86D3279D71B398B550F27C3EFF /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 173115427F2F01D51E077F3DD1E38B3F /* AFSecurityPolicy.m */; }; + FA3021DED76B9B182CC9195A60EB1209 /* NSBezierPath+SDRoundedCorners.m in Sources */ = {isa = PBXBuildFile; fileRef = 66FD4250A6E1464C3E2D40E01FB359A5 /* NSBezierPath+SDRoundedCorners.m */; }; + FA6DA93357E2E9E9AADDFB3E39DEB6C2 /* NSObject+LookinServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 56AE76BCBC0A2628D411734B376EBDB3 /* NSObject+LookinServer.m */; }; + FCDEC6A53CF5517E1AF5B331FD65F6D9 /* SDImageCacheConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 747AB3476737E22DC26E85147BDB80FB /* SDImageCacheConfig.m */; }; + FCEE5BD645E95FF55468C4AB6D17CFDA /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 86DB200E6E0B43E2BEA84EA1C5043A04 /* UIImageView+HighlightedWebCache.m */; }; + FDACBA49610EA6F39CABB7FE44B137D1 /* AFImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = EF402EFC14985321E0CDC165246B34CF /* AFImageDownloader.h */; settings = {ATTRIBUTES = (Public, ); }; }; + FE07C069C2E3543002CEB5D751ABA9AC /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C12CBD1B642F949D5B66893FC8011182 /* AFNetworkReachabilityManager.m */; }; + FEA8BA4F82CCBD1D28DCC7EF39FB4096 /* SDImageCacheDefine.m in Sources */ = {isa = PBXBuildFile; fileRef = 35E81EDDBC17FE280E59EB2A50D2032F /* SDImageCacheDefine.m */; }; + FEE883575278D5BE8F185437AB5DB3BB /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 143BAB1167B7977725031FECFF8DB44B /* MJRefreshGifHeader.m */; }; + FFC6D50089FA32FD7AAF25747E56EA60 /* LKS_CustomAttrGroupsMaker.m in Sources */ = {isa = PBXBuildFile; fileRef = 17D6BCEF878B1E94F7ECA5FDE9140F80 /* LKS_CustomAttrGroupsMaker.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 1344F17C0E52E09D8895AE02B0FFD8C7 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B26054DF1DEA11585A231AF6D1D80D5E; - remoteInfo = "MJRefresh-MJRefresh.Privacy"; - }; - 2A53F2CECA80E5BE66ADBC419D374E71 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4A68CFD979D413A619DF631BB121D98F; - remoteInfo = Bugly; - }; - 3484662819145A72AD2928C53A3BD825 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 82B0A41D3031FF27D78E17B0A9A46FB0; - remoteInfo = MBProgressHUD; - }; - 3EE130CEE22F9D3195F5D2A16158FD19 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; - remoteInfo = MJRefresh; - }; - 558963FAD37397D5CF3C86EDB00CE376 /* PBXContainerItemProxy */ = { + 029F18B20C43B6D8025DD8764F3FDB94 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; remoteInfo = MJExtension; }; - 5D06FBB9B5D193B42D54D92C2D88AF0D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; - remoteInfo = Masonry; - }; - 61888C2BE329A27EA7B77952C3DAE6BD /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B32AF3F43989CBA171BB1FB3957A4509; - remoteInfo = "MJExtension-MJExtension"; - }; - 7A2AC1F0B7BDFB22BB4CBD3405C32B8E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; - remoteInfo = MJExtension; - }; - 804902AF2E2B5EE752D5BEA3737FC84E /* PBXContainerItemProxy */ = { + 20B15F7B3132DA38204DF9083459230C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 3847153A6E5EEFB86565BA840768F429; remoteInfo = SDWebImage; }; - A99071FC68BAEFC0CB6D83A54A354D61 /* PBXContainerItemProxy */ = { + 280718826D768D0A8BFF3767300EFA78 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; - remoteInfo = AFNetworking; + remoteGlobalIDString = 6868056D761E163D10FDAF8CF1C4D9B8; + remoteInfo = MJRefresh; }; - B56D817905F1BFDF163D1FB48FE1CEF0 /* PBXContainerItemProxy */ = { + 2891577E16AC583D92EE1592A0BA0B53 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1BCD9702276377FB5B3BDB6EAF709D7; + remoteInfo = DZNEmptyDataSet; + }; + 551922F754B651AFCAAB56605458A1A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; remoteInfo = Masonry; }; - B77CF8BB37C01531BA0A32EFEA0754E7 /* PBXContainerItemProxy */ = { + 603D56D0A56251DBC2A0FBED798844FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; - remoteInfo = AFNetworking; + remoteGlobalIDString = 55AF53E6C77A10ED4985E04D74A8878E; + remoteInfo = Masonry; }; - D0029D13D3AD5BABF848EA55FA77142F /* PBXContainerItemProxy */ = { + 61BD90FED6D756E5F56F7E887A0FFD9A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 638FEAAFC575BB76BC6AC055CDDA3506; remoteInfo = LookinServer; }; - E4018E8FC1684D625B692CD852C6FC7E /* PBXContainerItemProxy */ = { + 6E0EFBF66C9F8375FB0420650F7CFE4D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; + remoteInfo = AFNetworking; + }; + 7DD0632E09B67610660F1C8BA201AFAA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4A68CFD979D413A619DF631BB121D98F; + remoteInfo = Bugly; + }; + 8C2E663FC9840B2B7BABEF079AD58862 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 94CFBA7D633ECA58DF85C327B035E6A3; remoteInfo = "SDWebImage-SDWebImage"; }; - E542FBB4315739909213310A6FE7BFE1 /* PBXContainerItemProxy */ = { + A311284721E0C3165FAA791C3EE6961E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 82B0A41D3031FF27D78E17B0A9A46FB0; remoteInfo = MBProgressHUD; }; + AD74DB90134D3DB33FAC2C873C0764E9 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 4D3BA58D0583DF37575CACAB3DDADC85; + remoteInfo = MJExtension; + }; + B0F47C29852712CF2F2C1E658ECD1809 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = F1BCD9702276377FB5B3BDB6EAF709D7; + remoteInfo = DZNEmptyDataSet; + }; + BBBA8C59A31486B3AE2F16C6A4AAAB66 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B26054DF1DEA11585A231AF6D1D80D5E; + remoteInfo = "MJRefresh-MJRefresh.Privacy"; + }; + E7A356850FBB22708CAF2F346B5868B3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 82B0A41D3031FF27D78E17B0A9A46FB0; + remoteInfo = MBProgressHUD; + }; + F34B1D580EA71604D4CC7C4C5807E366 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 0130B3724283586C0E9D2A112D4F2AA1; + remoteInfo = AFNetworking; + }; + F4000FEC7CADA56B75E5CC31E64EC891 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B32AF3F43989CBA171BB1FB3957A4509; + remoteInfo = "MJExtension-MJExtension"; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 0026144A7C9427BCB0EBD09F94066337 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; - 008261B9563A97C2729613551099EA82 /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; - 00CC52AADF63C52B673099DEC68DAD92 /* MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-prefix.pch"; sourceTree = ""; }; - 0125C3DEE2098883DF42D35D1A66AFA2 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = ""; }; - 0152992BB7943DB61CE5E5A787E14B1F /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = WebImage/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 01967DD4C5A85509805CBCD8FF8067EA /* AFAutoPurgingImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFAutoPurgingImageCache.h; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.h"; sourceTree = ""; }; - 023087E0F75EB8EF2B7A38CD893A6BA8 /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; - 02395FDE41254ED8ECBFDDDBFF64594B /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; - 023ED970984BA7A7B038E49A75B861CA /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; - 024FCA5915EF94C429ADBEF0C289FDB7 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; - 02CD6A22910CB8DFD1FAFFE081E089A7 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; - 02EC81829B186FB821463CE438E1ED19 /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; - 0321AE443BC53885AC283309062AC0C3 /* LKS_HierarchyDetailsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_HierarchyDetailsHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_HierarchyDetailsHandler.m; sourceTree = ""; }; - 0432ECCC6672456D4AFC3E4D36460C5D /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; - 04829971197FA4C00B42EFEDE2C5C947 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; - 04CD167E9039DB1882385C2FB0755028 /* UITextField+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+LookinServer.m"; path = "Src/Main/Server/Category/UITextField+LookinServer.m"; sourceTree = ""; }; - 0527D2696C86C0F4BD662C1F0239F077 /* NSObject+MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJProperty.m"; path = "MJExtension/NSObject+MJProperty.m"; sourceTree = ""; }; - 062B3F801E733F99200DA9042C2B0966 /* NSObject+MJClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJClass.m"; path = "MJExtension/NSObject+MJClass.m"; sourceTree = ""; }; - 064A3D5E665E2EF0AA3CCB079884AB76 /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = ""; }; - 065C7DD137D50B90DCD09EC4867870DD /* UIView+WebCacheState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheState.h"; path = "SDWebImage/Core/UIView+WebCacheState.h"; sourceTree = ""; }; - 06D281342153AB8C983B263A38760879 /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; - 08EF9795944F1F76142394C0D120CD4D /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; - 09AF8CA8D37D28C4450911083D29A37F /* MBProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.release.xcconfig; sourceTree = ""; }; - 09E614A5D6C7CB7F55D8BAAD4937FCAB /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; - 0A9CF5385FC6C9B5A48829C80AC7B312 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; - 0B074E84A256BBE4C5D6915483D33E99 /* LookinAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttribute.m; path = Src/Main/Shared/LookinAttribute.m; sourceTree = ""; }; + 005531FD65A2DC8E04EE9C5595573265 /* LookinEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinEventHandler.h; path = Src/Main/Shared/LookinEventHandler.h; sourceTree = ""; }; + 00B18774CC6391C1FB41979BD95FA8C3 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; + 00C068BCEBF995CB7C8EEC8A50DFCEF2 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; + 01A59DDE6C3A3DF455E4923DE9E24D2B /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; + 02417CA1F44FCE40C23674265029DA2D /* MJExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-prefix.pch"; sourceTree = ""; }; + 02E251D5F94D43ECAF215AE69EBADD35 /* LKS_HierarchyDetailsHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_HierarchyDetailsHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_HierarchyDetailsHandler.m; sourceTree = ""; }; + 0342DB4B433F13EDE490230923030955 /* NSString+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+MJExtension.h"; path = "MJExtension/NSString+MJExtension.h"; sourceTree = ""; }; + 04B0F3874F09EBE80699B6F6190618CF /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; + 04F71A248E6F3B33E512BA4547060EFB /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; + 0751712F4FC9A1B51B8443A19239A65F /* LookinWeakContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinWeakContainer.m; path = Src/Main/Shared/LookinWeakContainer.m; sourceTree = ""; }; + 077DBD741909C88698D1CCE9FCF28728 /* LKS_Helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_Helper.h; path = Src/Main/Server/Others/LKS_Helper.h; sourceTree = ""; }; + 07CF87D2A78D582102BB7F2CC1E06D69 /* UIView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+LookinServer.m"; path = "Src/Main/Server/Category/UIView+LookinServer.m"; sourceTree = ""; }; + 07EFBD7E00525D268A1FB491591F9B0F /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; + 08135235A8EBF91FEF514636F22989D4 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; + 088A3DB9640B9B86DCECA54E13715C0F /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = WebImage/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 090F520F3754358826862D9DF4C2CAF5 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; + 0A1F611427BBE81A4BBB7FDFA2FC4101 /* LookinAppInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAppInfo.h; path = Src/Main/Shared/LookinAppInfo.h; sourceTree = ""; }; + 0AB208379F84564033BF50F592B48B44 /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; + 0AFFE416819878D07A65ADA6E82C295F /* UILabel+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+LookinServer.h"; path = "Src/Main/Server/Category/UILabel+LookinServer.h"; sourceTree = ""; }; + 0B0141F455F11E7BFC47DD29FA6F898E /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; + 0B3DAB35FB55076EFC78AFFD26C28F8F /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; 0B4AAC15A428CDC2A62AF9CC27BEA609 /* Pods-CustomKeyboard */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-CustomKeyboard"; path = Pods_CustomKeyboard.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 0BFF0BBC754FDFFAF6499B4D39357EDB /* LKS_MultiplatformAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_MultiplatformAdapter.h; path = Src/Main/Server/Others/LKS_MultiplatformAdapter.h; sourceTree = ""; }; + 0C47759650058497567E40148EBF9AE5 /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; 0C4AE62ED97252893F28F670D61AFB24 /* Pods-keyBoard-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-keyBoard-Info.plist"; sourceTree = ""; }; - 0C4C1F05883DF3D04F61132B4F36E8DC /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = ""; }; + 0C9A66D2468FEF35002A499092816E25 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; + 0C9DB0032AB47075179DDD0C47C7DA50 /* NSString+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+Lookin.m"; path = "Src/Main/Shared/Category/NSString+Lookin.m"; sourceTree = ""; }; + 0CF0A730CF94F9E641A4ED1FE09F2569 /* LKS_ExportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ExportManager.m; path = Src/Main/Server/Others/LKS_ExportManager.m; sourceTree = ""; }; 0D6215D1BCCE125B8DF73E38013CBBDC /* Pods-CustomKeyboard.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CustomKeyboard.debug.xcconfig"; sourceTree = ""; }; - 0D713A9212D2A554CD1918EB2E27B683 /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; - 0D89BDDD3D7C7F280DD391FD57277525 /* Lookin_PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTUSBHub.h; path = Src/Main/Shared/Peertalk/Lookin_PTUSBHub.h; sourceTree = ""; }; - 0E3E150DD8AD62EEFACFAABE9513F941 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; - 0E458A7FEE9ED5F20EF848A6C6544D53 /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; - 0E4AA34B2481B6792A3DC3B4629887E1 /* LookinConnectionResponseAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinConnectionResponseAttachment.h; path = Src/Main/Shared/LookinConnectionResponseAttachment.h; sourceTree = ""; }; - 0E52D433702688AC431FFC4C34CDF78B /* WKWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "WKWebView+AFNetworking.m"; path = "UIKit+AFNetworking/WKWebView+AFNetworking.m"; sourceTree = ""; }; + 0DF80870C306B19EAA56A3F21670DD7B /* SDCallbackQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDCallbackQueue.m; path = SDWebImage/Core/SDCallbackQueue.m; sourceTree = ""; }; + 0E69F54FC92DD084F23D6B24E981DE30 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; 0E732C0D026ACBC7DBD039DC3BDC2BCE /* Pods-keyBoard.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-keyBoard.modulemap"; sourceTree = ""; }; - 0EB02200319F068BAA801EE10D3180E2 /* UIViewController+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+LookinServer.h"; path = "Src/Main/Server/Category/UIViewController+LookinServer.h"; sourceTree = ""; }; - 0ED01BEB5ED329F0E0E5D68A89BE0948 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; - 0F65A8008A00E77CC6CEB3EA03A2995F /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; - 1007CCC0BA9608DA7713FDC27B9A82FD /* LookinServer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LookinServer-prefix.pch"; sourceTree = ""; }; - 1038CDECC4C68B88DE38006854639F5E /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; - 106F7E7EDB4970617E93A975091A13D2 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; - 113489F1D1C9AF69F93BE35BD4EB07C1 /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; - 128F826C85582AACFFD552E11D4D2830 /* UIView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCache.h"; path = "SDWebImage/Core/UIView+WebCache.h"; sourceTree = ""; }; - 12A83FDFA77E9B4C72711E4B96D6CD23 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; - 12D98E55A185D3ED0A0ED35568176EF0 /* LookinAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttribute.h; path = Src/Main/Shared/LookinAttribute.h; sourceTree = ""; }; - 1344E055DAEFCD6CAEEC876F478E0AC0 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; - 14EC6D7F2EC41EF8578655554F8A5D31 /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; - 155AA2BD6DA9E0C46A54746FABD3CD0E /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; - 15B8F54FDAA598ECBB2D1EF7BCCA9BCE /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 163EB06BB1AA320702D0A1A4FA1A9992 /* LookinCodingValueType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCodingValueType.h; path = Src/Main/Shared/LookinCodingValueType.h; sourceTree = ""; }; - 16441887F0FDE33C63A476FD3099D167 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; - 16AF74159530C7ABABC4CD6BE65EE86C /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; - 16EE2B7F17D48DF298FBC60518EBF6F4 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = ""; }; - 177314E9657E363C61DAD19D6D75BDBD /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = ""; }; - 177936A16BDD3BEFF1F1116F078C34F5 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; - 17817FCBF8471C21BDA14D3091C3589E /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; - 17822CAF41F95D135852C3301C62A86A /* LKS_MultiplatformAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_MultiplatformAdapter.h; path = Src/Main/Server/Others/LKS_MultiplatformAdapter.h; sourceTree = ""; }; - 17A5496F72B08AB0D8322BF299C98176 /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = ""; }; - 17FD4A3105C0D577397492893A95BAF8 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; - 188F3CEB67BA2F2F98DF7779282D17C6 /* LookinStaticAsyncUpdateTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinStaticAsyncUpdateTask.h; path = Src/Main/Shared/LookinStaticAsyncUpdateTask.h; sourceTree = ""; }; - 19292A12696E9A832B1F849C625A4DDB /* LookinHierarchyInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinHierarchyInfo.h; path = Src/Main/Shared/LookinHierarchyInfo.h; sourceTree = ""; }; - 1982360AE67874E8C561F430E4C814EF /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; - 1AB03621F51ED0C5372FA186A7FF27E4 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; - 1B1E68E8F031A3FAEA16F2C5DC3BD882 /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = ""; }; - 1B75FDD7C617DB19F933212AFF221042 /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; - 1C02B52C33D31D1DFF6A2805A51EC769 /* LookinServer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LookinServer-umbrella.h"; sourceTree = ""; }; - 1D674CE0C910213F79BE96B2A0392AD0 /* LKS_ConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ConnectionManager.h; path = Src/Main/Server/Connection/LKS_ConnectionManager.h; sourceTree = ""; }; - 1D6C016886A6736D8F32E4AC8B32441D /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; + 0FC6CED4D6A9C0B15D86460654E10E9B /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; + 0FDDA927E142D99A4FD998D04D009AC5 /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; + 111ABB06FDFF559552C85BCF30F5D2F4 /* LKS_ObjectRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ObjectRegistry.h; path = Src/Main/Server/Others/LKS_ObjectRegistry.h; sourceTree = ""; }; + 1137C7CB8F80567B0D1E813334A9CE20 /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; + 1139A331649C3BC55007521B6E9D086C /* LookinAttributeModification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributeModification.m; path = Src/Main/Shared/LookinAttributeModification.m; sourceTree = ""; }; + 1150733A8647FD2B2018C7BF904065DF /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; + 1173BDB5AA57CA5E444B378D705BBE3F /* MJFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJFoundation.h; path = MJExtension/MJFoundation.h; sourceTree = ""; }; + 127D81646E9B973EF484FF2443AFF5F6 /* CALayer+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+Lookin.m"; path = "Src/Main/Shared/Category/CALayer+Lookin.m"; sourceTree = ""; }; + 12810823ADAFE3101B05E3EC0341E431 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = ""; }; + 12BF6AC75DC7C5FCAF6720FDAEA00A28 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; + 13B467DAFDB1C2E628A824EA7828200B /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; + 1417C63FC1179F58403EBD903D5154FF /* MJRefreshConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConfig.m; path = MJRefresh/MJRefreshConfig.m; sourceTree = ""; }; + 143BAB1167B7977725031FECFF8DB44B /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = ""; }; + 15F7E1A00ABF255AFEE889117BA05211 /* UIColor+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+LookinServer.h"; path = "Src/Main/Server/Category/UIColor+LookinServer.h"; sourceTree = ""; }; + 16960CB7D813532A9BA4D86A1BB2CED8 /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; + 173115427F2F01D51E077F3DD1E38B3F /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; + 173AF5E6D712D1DF733701331162155B /* LookinCustomAttrModification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCustomAttrModification.h; path = Src/Main/Shared/LookinCustomAttrModification.h; sourceTree = ""; }; + 17916ED6162E441B99E3FE5494C0751F /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; + 17A59E796E71BB3C86ABBEF16B2E64E7 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = ""; }; + 17D6BCEF878B1E94F7ECA5FDE9140F80 /* LKS_CustomAttrGroupsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrGroupsMaker.m; path = Src/Main/Server/Others/LKS_CustomAttrGroupsMaker.m; sourceTree = ""; }; + 18112954BB8B471D09E086E934FF6A1A /* LookinServer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LookinServer.modulemap; sourceTree = ""; }; + 182E270DEDC87BA7D2F105E0FC09FF28 /* UIViewController+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+LookinServer.m"; path = "Src/Main/Server/Category/UIViewController+LookinServer.m"; sourceTree = ""; }; + 18EDCD5BD530B7F11E9EF343D6A4BD95 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + 19B2B97351832A4A6CE655C311162FB1 /* MJRefreshTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshTrailer.m; path = MJRefresh/Base/MJRefreshTrailer.m; sourceTree = ""; }; + 1B599194043295A99545C402364D6C53 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; + 1BF35F15520F59A5E4A5CE1FA75927EE /* LKS_CustomDisplayItemsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomDisplayItemsMaker.h; path = Src/Main/Server/Others/LKS_CustomDisplayItemsMaker.h; sourceTree = ""; }; + 1C70BFFD58ECD12B7C4E3413EB9ED0F6 /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AFNetworking.modulemap; sourceTree = ""; }; + 1CA2424DCD0F1025FF88B2377C3149E9 /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; + 1D438C373C98EC1CB7A0D0E0FFBEF4E4 /* NSObject+MJClass.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJClass.m"; path = "MJExtension/NSObject+MJClass.m"; sourceTree = ""; }; + 1D50FFCA396DF743CCFFE0B005196054 /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; 1D774D8146EBC82B4A77204A273761B8 /* Pods-CustomKeyboard.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-CustomKeyboard.release.xcconfig"; sourceTree = ""; }; - 1DBF92CBCD504B7655E136ED3F7D4692 /* LookinAppInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAppInfo.h; path = Src/Main/Shared/LookinAppInfo.h; sourceTree = ""; }; - 1DC887BCA33298C24FE30940EE87D81E /* LKS_AttrGroupsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_AttrGroupsMaker.m; path = Src/Main/Server/Others/LKS_AttrGroupsMaker.m; sourceTree = ""; }; - 1F57F082A2A89412ADE347EFD7338C94 /* MBProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MBProgressHUD.modulemap; sourceTree = ""; }; - 1FAEB398159754D70CABE3317776EE95 /* SDImageAPNGCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAPNGCoder.m; path = SDWebImage/Core/SDImageAPNGCoder.m; sourceTree = ""; }; + 1E6A75A6734AF3A235BA22A135DAFCC9 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; + 1EB45C7A834D78718652CD6DC1BFE263 /* LookinStaticAsyncUpdateTask.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinStaticAsyncUpdateTask.h; path = Src/Main/Shared/LookinStaticAsyncUpdateTask.h; sourceTree = ""; }; + 1ECAF84BD3D3BFFD155656F0A8A4203A /* View+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "View+MASAdditions.m"; path = "Masonry/View+MASAdditions.m"; sourceTree = ""; }; + 1F082CD62E0C970F3E5784F534C2966A /* UIColor+SDHexString.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+SDHexString.h"; path = "SDWebImage/Private/UIColor+SDHexString.h"; sourceTree = ""; }; + 1F15BF5283CAD8E6C1BEEA5CB94BAC93 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; + 1FD376966048F00BB938741554A2F379 /* NSSet+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSSet+Lookin.m"; path = "Src/Main/Shared/Category/NSSet+Lookin.m"; sourceTree = ""; }; + 1FEE3F7994C7F337D4377254543F8763 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; 1FFED36A657123030ABB700256D73F15 /* Masonry */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = Masonry; path = Masonry.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 200A45539F32562571F351DB64891F37 /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; - 208D276AD67B36842977F8CA2F4DF301 /* SDWebImageDownloaderDecryptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderDecryptor.m; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.m; sourceTree = ""; }; - 20A026BCE094F29EF174D58596EDEC05 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; - 2184AC68682FC6323EA668E0176C0918 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; - 225890C637C86A2A473503F94CA23C3E /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; - 23436A1A92BC2ECA48AE48E4F534A1C8 /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; - 23587035AC48CAFC10C042B9A21DE1CF /* LKS_MultiplatformAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_MultiplatformAdapter.m; path = Src/Main/Server/Others/LKS_MultiplatformAdapter.m; sourceTree = ""; }; - 23A54C1843E43882816ACA6AB8E7A6FC /* UIImage+ForceDecode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ForceDecode.m"; path = "SDWebImage/Core/UIImage+ForceDecode.m"; sourceTree = ""; }; - 23CCD7977B21534E95E32A5E68C9D4BB /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; - 244C9CEE32E6C06BAA36978339784F3B /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; - 252C61161911BA9535859808F4C2A8EB /* LookinHierarchyFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinHierarchyFile.m; path = Src/Main/Shared/LookinHierarchyFile.m; sourceTree = ""; }; - 254C72B378FB8F599D2A2EFDC33A7489 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; + 203C3C8EC433732010B706084E2FEAAE /* SDDiskCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDiskCache.h; path = SDWebImage/Core/SDDiskCache.h; sourceTree = ""; }; + 20651414D2027C8A7686D018492D8DFD /* NSArray+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+Lookin.m"; path = "Src/Main/Shared/Category/NSArray+Lookin.m"; sourceTree = ""; }; + 20B9BFD85A3CCB89F02C2B24D803DCE2 /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; + 20D7A9117FD1CBF865700C7C5569512C /* CALayer+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+LookinServer.h"; path = "Src/Main/Server/Category/CALayer+LookinServer.h"; sourceTree = ""; }; + 20F843696759BAF00119DB1CDA7EEE79 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; + 2111C167031C627E8A809F5D155D6B9D /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/Core/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + 211DC994D6F14C6094673AA62F5F4204 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; + 21289499078E8DC3A04904CA8F2BEA84 /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = ""; }; + 223438EC2ED96F2A99B18DE49CC2337E /* AFNetworking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.release.xcconfig; sourceTree = ""; }; + 229EC86F5CF3C97B108E9AB47A0D2ABA /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; + 22BA65BA9931F718987381F55B9FBE47 /* NSSet+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSSet+Lookin.h"; path = "Src/Main/Shared/Category/NSSet+Lookin.h"; sourceTree = ""; }; + 24770AED90379569196B4F6E60D3E494 /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = ""; }; + 24F8FA1D260910F600A2FECEB1D74988 /* LookinObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinObject.h; path = Src/Main/Shared/LookinObject.h; sourceTree = ""; }; + 24FAC359D5942B824AB3D1011560DCF5 /* SDImageIOCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOCoder.h; path = SDWebImage/Core/SDImageIOCoder.h; sourceTree = ""; }; 25664483ABF4DC8EC03E7472AA04333B /* LookinServer */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = LookinServer; path = LookinServer.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 276733CEE5ABDD78BFE5CB995A43C67C /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; - 27BDAC0DA386BE97284D684C8E350F09 /* CALayer+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+Lookin.m"; path = "Src/Main/Shared/Category/CALayer+Lookin.m"; sourceTree = ""; }; - 2807555CD094E0AD4E105AE6054D768A /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + 274701B9FD567BF7C90D7937AA1BD9E7 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = ""; }; + 27A2E52335BCCF9445465B9262488865 /* LookinAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttribute.h; path = Src/Main/Shared/LookinAttribute.h; sourceTree = ""; }; + 28146C6CEAB5150B6285BE6E1879E9BC /* LookinAppInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAppInfo.m; path = Src/Main/Shared/LookinAppInfo.m; sourceTree = ""; }; 281686F4C9CC2C718B45E1DEB7E63948 /* Pods-CustomKeyboard-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-CustomKeyboard-acknowledgements.markdown"; sourceTree = ""; }; - 287837E4829C3C9325D7CA4AE61A932B /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; - 290F691EA01B201797DC4126CF4FEB05 /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = ""; }; - 2A138DDBE01653689513DEA2E2290D19 /* MJExtensionConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtensionConst.h; path = MJExtension/MJExtensionConst.h; sourceTree = ""; }; - 2A21579F9E54E8D15CE50809C18E9383 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; - 2A71DACCDF69AAC79D62E15FCDF12729 /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; + 28D018C6173D2EDF06A47B3F72528135 /* WKWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "WKWebView+AFNetworking.m"; path = "UIKit+AFNetworking/WKWebView+AFNetworking.m"; sourceTree = ""; }; + 2987AEB70F86EE902B3B8F5EFB3C3B96 /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; + 2AA6FFDE3D12EFD1B71F685F39294D26 /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; + 2ABF83FA3614A8415336F983AEB644A5 /* Color+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Color+Lookin.h"; path = "Src/Main/Shared/Category/Color+Lookin.h"; sourceTree = ""; }; + 2AD58A8355780A66CD54397A8741020A /* LookinCodingValueType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCodingValueType.h; path = Src/Main/Shared/LookinCodingValueType.h; sourceTree = ""; }; + 2B16B55D82BA04C566A0E14C3B7C565A /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; 2B276B0A79173A1D6E83C9B4FB9A4A57 /* MJExtension */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJExtension; path = MJExtension.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 2B9DE402CC26138FF7264A97E65D6176 /* SDAnimatedImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageView.m; path = SDWebImage/Core/SDAnimatedImageView.m; sourceTree = ""; }; - 2BC114A89754B92BAEEE6D803447723E /* MBProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.debug.xcconfig; sourceTree = ""; }; - 2BCD71D98846176BC892845088F27C3C /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; - 2C21DCF8696E4CBF4739CFC20EE9B73C /* UIView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+LookinServer.h"; path = "Src/Main/Server/Category/UIView+LookinServer.h"; sourceTree = ""; }; - 2C25C598923F7C90D0B2A60AD70B6EB5 /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = ""; }; - 2C33948F352E2619B0F6DBE9677B83A7 /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJRefresh-Info.plist"; sourceTree = ""; }; - 2C3EE97397E9A1DB2BB13788B53925A4 /* LKS_EventHandlerMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_EventHandlerMaker.m; path = Src/Main/Server/Others/LKS_EventHandlerMaker.m; sourceTree = ""; }; - 2C4E1C33C8A637CB449DDD1C91F8F017 /* MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJExtension-Info.plist"; sourceTree = ""; }; - 2C608E002A5A566E75CAEA3CE2636BEC /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = ""; }; - 2D21D3AFADB4E7E959AAAB06694A674E /* LookinServer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LookinServer-dummy.m"; sourceTree = ""; }; - 2FF06236E502AA89230AF8C19975BD81 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; - 3118B9573F7B3C28EA6123AE2CAE6B25 /* SDWeakProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWeakProxy.m; path = SDWebImage/Private/SDWeakProxy.m; sourceTree = ""; }; - 3129E754B4B0C1CD6B4C146E5AE2360D /* LookinIvarTrace.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinIvarTrace.m; path = Src/Base/LookinIvarTrace.m; sourceTree = ""; }; - 326F74FD6BD5B13C7566D9B8E54A947D /* LKS_EventHandlerMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_EventHandlerMaker.h; path = Src/Main/Server/Others/LKS_EventHandlerMaker.h; sourceTree = ""; }; - 32E35E0CCCDF9BF02E1EAE8FF77857AD /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; - 333ABAF85F95BC941804A6F683E53BBE /* LookinIvarTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinIvarTrace.h; path = Src/Base/LookinIvarTrace.h; sourceTree = ""; }; - 33790326F4E5BD6AB4799CB1F644BAA0 /* MJPropertyType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyType.h; path = MJExtension/MJPropertyType.h; sourceTree = ""; }; - 339BD5A7FDFB96FF9867355742A8D0E6 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; - 33BC65FB1012369C1CBD9668499D4BAA /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; - 33DAAFE9575412CFC852D64A5D2B8E84 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJRefresh/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 341E0598C048E82B1711A62AC27A8A01 /* Bugly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.debug.xcconfig; sourceTree = ""; }; - 3449DFFF2286997534C04DABECAC16C9 /* LookinAttrIdentifiers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttrIdentifiers.m; path = Src/Main/Shared/LookinAttrIdentifiers.m; sourceTree = ""; }; + 2B3682BD39C4C57FE318C9B03A51E681 /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; + 2BD649299FB30FE26060B97E8DF9816C /* LKS_ExportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ExportManager.h; path = Src/Main/Server/Others/LKS_ExportManager.h; sourceTree = ""; }; + 2D3766A431B7A0BC76917558618EF0C1 /* CALayer+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+Lookin.h"; path = "Src/Main/Shared/Category/CALayer+Lookin.h"; sourceTree = ""; }; + 2E973A1FDB3F94754DCDB1264EDDDF41 /* SDWebImageIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageIndicator.h; path = SDWebImage/Core/SDWebImageIndicator.h; sourceTree = ""; }; + 2EADD27E422FFACED3103DDAE818B18C /* UIImageView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+LookinServer.m"; path = "Src/Main/Server/Category/UIImageView+LookinServer.m"; sourceTree = ""; }; + 305FC7B048B8871DE3376193B606286C /* LKS_ConnectionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ConnectionManager.m; path = Src/Main/Server/Connection/LKS_ConnectionManager.m; sourceTree = ""; }; + 30A3DB802987D4AAF504715CCE53E22B /* LKS_CustomAttrGroupsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrGroupsMaker.h; path = Src/Main/Server/Others/LKS_CustomAttrGroupsMaker.h; sourceTree = ""; }; + 314E3FC91EB8B408236ED4C78B885D16 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/Core/UIButton+WebCache.m"; sourceTree = ""; }; + 3152142650040373F6DF17DC7EDCE186 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/Core/UIImage+MultiFormat.m"; sourceTree = ""; }; + 325405580D0271A2C4EBDB695A5AB536 /* LKSConfigManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKSConfigManager.m; path = Src/Main/Server/Others/LKSConfigManager.m; sourceTree = ""; }; + 32CA49D06775D7347788B6F0CC10B808 /* SDImageFramePool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFramePool.h; path = SDWebImage/Private/SDImageFramePool.h; sourceTree = ""; }; + 3358B071D3DBACDD7C38DD4D38159CA6 /* LKS_RequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_RequestHandler.m; path = Src/Main/Server/Connection/LKS_RequestHandler.m; sourceTree = ""; }; + 345E8071594452D5EC1963065298F2C2 /* LookinServer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LookinServer.release.xcconfig; sourceTree = ""; }; + 347A63FF6005370892F70C963DA0819D /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; + 347FED4AA48E5E29E91B5C3ECD629C7C /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = ""; }; + 356511999B4B35573B2770506E59776D /* LookinAttributesGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributesGroup.h; path = Src/Main/Shared/LookinAttributesGroup.h; sourceTree = ""; }; 35BFA337F4E1FDE67C773A82CCDFD6DA /* Pods-keyBoard.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-keyBoard.debug.xcconfig"; sourceTree = ""; }; - 35D9676AD5F2D16383074D7616524F2F /* NSString+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+Lookin.h"; path = "Src/Main/Shared/Category/NSString+Lookin.h"; sourceTree = ""; }; - 3647261DA2FC95D0CA4E87D424C12196 /* LKS_Helper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_Helper.m; path = Src/Main/Server/Others/LKS_Helper.m; sourceTree = ""; }; - 374953DEFC8C8F3795932989F4487C49 /* Bugly.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bugly.framework; sourceTree = ""; }; - 37B1E665CD1759D3ECAEAB44FE9F2663 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; - 37F59E3D43780FECC0B07C3EEA62B646 /* LKS_CustomAttrSetterManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrSetterManager.h; path = Src/Main/Server/Others/LKS_CustomAttrSetterManager.h; sourceTree = ""; }; - 3828108B263E66B9F32591A4322BEBA3 /* LKS_ConnectionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ConnectionManager.m; path = Src/Main/Server/Connection/LKS_ConnectionManager.m; sourceTree = ""; }; - 38695581293B42C0F3123AA0BB83E733 /* SDImageGIFCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGIFCoder.m; path = SDWebImage/Core/SDImageGIFCoder.m; sourceTree = ""; }; - 38A4C3A9E16163D57E55A8FB9D95F4BB /* NSObject+MJCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJCoding.h"; path = "MJExtension/NSObject+MJCoding.h"; sourceTree = ""; }; - 38C02636331C10A7BA9A1348C25A1094 /* UIVisualEffectView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIVisualEffectView+LookinServer.h"; path = "Src/Main/Server/Category/UIVisualEffectView+LookinServer.h"; sourceTree = ""; }; - 391F3C106276CBA54B8BC74E2AD17998 /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; + 35E81EDDBC17FE280E59EB2A50D2032F /* SDImageCacheDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheDefine.m; path = SDWebImage/Core/SDImageCacheDefine.m; sourceTree = ""; }; + 36313F10E4B270659EA103F91F90011E /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; + 37AD260673E5D427A6C4167BC0357FF3 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJRefresh/PrivacyInfo.xcprivacy; sourceTree = ""; }; + 38B32D61B90137CC13104A1BA1DDE1CF /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = ""; }; + 38BFA523126349CF747593045236049E /* Color+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Color+Lookin.m"; path = "Src/Main/Shared/Category/Color+Lookin.m"; sourceTree = ""; }; + 394E26511F1B972C1F62DB92576F3246 /* LookinAutoLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAutoLayoutConstraint.h; path = Src/Main/Shared/LookinAutoLayoutConstraint.h; sourceTree = ""; }; 3964617E5C241BE3E12D8F1D88607841 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - 3B1DF84CE8E8F02BCA15D175A41595D0 /* LKS_GestureTargetActionsSearcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_GestureTargetActionsSearcher.h; path = Src/Main/Server/Others/LKS_GestureTargetActionsSearcher.h; sourceTree = ""; }; - 3BB2BB05116C08E45DC29A9B3A181F8F /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; - 3BB581AA2004F2F998A9BCB4487DFD1D /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; - 3C41A09FD257C804D6C5A03BAFB8EBF5 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; - 3C486A79E0D0DD2702EF7B8CAF517764 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; + 39655DCF43C0D84A0701B98D87E70577 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; + 398209F80EA0E5CF6D320D26B3A19034 /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; + 39ABA9C0906D9CC9F2AFD815FDC30696 /* AFCompatibilityMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFCompatibilityMacros.h; path = AFNetworking/AFCompatibilityMacros.h; sourceTree = ""; }; + 3BD9554CCF9297CBC4A216FA40E938ED /* MJExtensionConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtensionConst.h; path = MJExtension/MJExtensionConst.h; sourceTree = ""; }; + 3C4A8B2E9EA22C1202805209C797B0E9 /* MJPropertyType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyType.m; path = MJExtension/MJPropertyType.m; sourceTree = ""; }; + 3C777B2DED63E0525E423D02BB586C65 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; 3CB13D51E717D347023EEB57263E3072 /* Pods-CustomKeyboard-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-CustomKeyboard-dummy.m"; sourceTree = ""; }; - 3CD38CFD933CE53069EE7B243A59D126 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; - 3D18A8212C10F1A7B2F2D49D19849371 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; - 3EBA2C9811634670ABA72654E24EA30F /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; - 406EAF44DFFFBD779120260FF6139F1A /* SDWebImageDownloaderResponseModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderResponseModifier.m; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.m; sourceTree = ""; }; - 40FC5885FF4C6338AD85780D12CAAE8B /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; - 41DDF9F8A6577A94317508E854DB067A /* LookinServerDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinServerDefines.h; path = Src/Main/Server/Others/LookinServerDefines.h; sourceTree = ""; }; - 421D28ADBF55E55C5123515F5E0E319E /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; - 429B18C6844509307D144B3D82531314 /* LKS_TraceManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_TraceManager.m; path = Src/Main/Server/Others/LKS_TraceManager.m; sourceTree = ""; }; - 43092D80CCA4D4FF3807F7E6F2C75D3A /* UIBlurEffect+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBlurEffect+LookinServer.h"; path = "Src/Main/Server/Category/UIBlurEffect+LookinServer.h"; sourceTree = ""; }; - 43B97213F58B7FBE16DE3BAB832D9F3E /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; - 43C4E2CF2FBA7A21E072A97A01D5CB5D /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; + 3D37F2B9A92E991C28286D5146AE4897 /* LKS_HierarchyDisplayItemsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_HierarchyDisplayItemsMaker.m; path = Src/Main/Server/Others/LKS_HierarchyDisplayItemsMaker.m; sourceTree = ""; }; + 3D404496E0E7117743D4AEBE7AE24618 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; + 3D82E930D0F2B33B118DA02E794AEA23 /* SDAnimatedImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImage.h; path = SDWebImage/Core/SDAnimatedImage.h; sourceTree = ""; }; + 3F4A320280409530EA9C86CF7ABBEB67 /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; + 407EB5244BB1A9AAE0D09FFE20726A9D /* AFImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFImageDownloader.m; path = "UIKit+AFNetworking/AFImageDownloader.m"; sourceTree = ""; }; + 40C013B9E150C3534656435CE6E24CDC /* LKS_GestureTargetActionsSearcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_GestureTargetActionsSearcher.h; path = Src/Main/Server/Others/LKS_GestureTargetActionsSearcher.h; sourceTree = ""; }; + 40C5224C21C52359D2D822D5661369DC /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; + 40D0819C1354481F79848CD2AB460CDC /* NSArray+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+Lookin.h"; path = "Src/Main/Shared/Category/NSArray+Lookin.h"; sourceTree = ""; }; + 41A05832F4F15AABB53220573DD1AD99 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = ""; }; + 41CA732E6A1AC243AABB66A5E5075CFA /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; + 430466B5BE179DB19438855ADE959F3C /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = ""; }; + 439A955032A803528601A53D13E98732 /* MASViewConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewConstraint.m; path = Masonry/MASViewConstraint.m; sourceTree = ""; }; + 439F16A17FD6B513A48ED7EC3F1E5108 /* LookinConnectionAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinConnectionAttachment.h; path = Src/Main/Shared/LookinConnectionAttachment.h; sourceTree = ""; }; 43EAAD2AB7E6B407E80E95F643F93D22 /* MJExtension-MJExtension */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MJExtension-MJExtension"; path = MJExtension.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 45090ED336D16C5189EDAC8ED9B67A35 /* UIImageView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+LookinServer.h"; path = "Src/Main/Server/Category/UIImageView+LookinServer.h"; sourceTree = ""; }; - 457F5A150D925E56EB5E3003716A505C /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; - 464CCF2096DF907F8A1777249A52131D /* LKS_AttrModificationPatchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_AttrModificationPatchHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_AttrModificationPatchHandler.m; sourceTree = ""; }; - 4686DD03E5F2112159A4AF256D4ECDB0 /* AFImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFImageDownloader.m; path = "UIKit+AFNetworking/AFImageDownloader.m"; sourceTree = ""; }; - 46C38C97C8397AA3A88D774783FE2EEF /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = ""; }; - 46E25997E19857A9DC2B1641E9E6DBF9 /* NSObject+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+Lookin.h"; path = "Src/Main/Shared/Category/NSObject+Lookin.h"; sourceTree = ""; }; - 471A82A49DEE185FC6E3F063F4845141 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; - 478ABEABB381B93BC60608D71F71150A /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJExtension/PrivacyInfo.xcprivacy; sourceTree = ""; }; - 489C01D23D1D67A51D3DA138652D2261 /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; - 48C63E238417B947AE193705B19A6FF3 /* MJRefreshStateTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.h; sourceTree = ""; }; - 4991209596786BDA2DC8D5FD065F088F /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; - 4A48957DF117CD5E47CC7837EB3B0C20 /* LookinAttributesSection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributesSection.m; path = Src/Main/Shared/LookinAttributesSection.m; sourceTree = ""; }; - 4CC8332A2663A93250DBF257AFC80616 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; - 4DA388EA2C00B86043D7ECB9FD29B004 /* MJExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.debug.xcconfig; sourceTree = ""; }; - 4E0870B9961AA96F3BECE37A98101C7A /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = ""; }; - 4EDAC27E448929847F369451786C431A /* Masonry.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = Masonry.modulemap; sourceTree = ""; }; - 4F254BA2A55B028FDD6A7C52AB7B3229 /* NSObject+MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJProperty.h"; path = "MJExtension/NSObject+MJProperty.h"; sourceTree = ""; }; - 4FDF7ECF8C6D8AA904A22072806CE983 /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = Src/Main/Shared/Peertalk/Peertalk.h; sourceTree = ""; }; - 4FF6CBA74F79B343F78AB1FC73566B81 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; - 5077384A4E39CE59F6A200B5D75878E0 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; - 5109FB802ECA3A58140B2EA99237F019 /* LookinAttributeModification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributeModification.h; path = Src/Main/Shared/LookinAttributeModification.h; sourceTree = ""; }; - 51B1E69E3B2A5357A1527558CB6E0465 /* MJRefreshNormalTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.m; sourceTree = ""; }; - 531C91CA6418B49AE153A51D79C3E6EB /* NSObject+MJClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJClass.h"; path = "MJExtension/NSObject+MJClass.h"; sourceTree = ""; }; + 4719BD42C96EBDC858610D75E5F1479C /* Lookin_PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTChannel.m; path = Src/Main/Shared/Peertalk/Lookin_PTChannel.m; sourceTree = ""; }; + 479AFECCA68AEF5BAF3AFF0B4DC369DA /* SDWebImageDownloaderRequestModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderRequestModifier.h; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.h; sourceTree = ""; }; + 481BDE66966A42A2CDB09683B19807F1 /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; + 4838EF2B08AEB6CAC4CFEB6DB3B5F66B /* LookinAttributeModification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributeModification.h; path = Src/Main/Shared/LookinAttributeModification.h; sourceTree = ""; }; + 48AB75E0A07ACD038FD4DEE1CA9062A9 /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; + 4A0FCD6D064868A4FCFD48B58D437459 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; + 4A5059C63ABDC7A8C19A82F58D03347E /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/Core/UIImage+GIF.m"; sourceTree = ""; }; + 4ADCBAAD37F392A44D285E8DB8DB3596 /* NSObject+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+Lookin.h"; path = "Src/Main/Shared/Category/NSObject+Lookin.h"; sourceTree = ""; }; + 4BD9A42D3BF590774696502C0055F7A4 /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = ""; }; + 4BDF28BF4E97F78036B3357A2C74EC85 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; + 4BEA2C723E51712851DAF177993AF2DE /* LookinHierarchyFile.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinHierarchyFile.m; path = Src/Main/Shared/LookinHierarchyFile.m; sourceTree = ""; }; + 4C633FED1E6E51B0DA7EB78DE8B4A12C /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; + 4D2E1BF70B6EB2A16C43E552F29FE560 /* SDAsyncBlockOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAsyncBlockOperation.m; path = SDWebImage/Private/SDAsyncBlockOperation.m; sourceTree = ""; }; + 4D3442E450D824019C5AA7A73F82DA7D /* LookinServer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LookinServer.debug.xcconfig; sourceTree = ""; }; + 4F12D11DD87CFAE95ED3A04E72E5B07A /* AFNetworking-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AFNetworking-Info.plist"; sourceTree = ""; }; + 51242479BEA395B29090E74758B74057 /* LookinWeakContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinWeakContainer.h; path = Src/Main/Shared/LookinWeakContainer.h; sourceTree = ""; }; + 51D2A173EC30AAA0DFA941E4D92C0D53 /* NSString+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+Lookin.h"; path = "Src/Main/Shared/Category/NSString+Lookin.h"; sourceTree = ""; }; + 529CE6F2D4062A8679207A37C0D33C11 /* Lookin_PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTProtocol.m; path = Src/Main/Shared/Peertalk/Lookin_PTProtocol.m; sourceTree = ""; }; + 5313BF3FFF47D27555E3AD6186F4951A /* ViewController+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "ViewController+MASAdditions.m"; path = "Masonry/ViewController+MASAdditions.m"; sourceTree = ""; }; 5327DD01C6533D102D66E1636B3827F3 /* Pods-keyBoard-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-keyBoard-acknowledgements.plist"; sourceTree = ""; }; - 5380C308A106E3B3377D32066D5C3A0F /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; - 5467BF12652CA00AFF8AF65AE418E809 /* Bugly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.release.xcconfig; sourceTree = ""; }; - 54E567750B745108F1ADE112FADC3683 /* LookinDashboardBlueprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDashboardBlueprint.h; path = Src/Main/Shared/LookinDashboardBlueprint.h; sourceTree = ""; }; - 5678C59B322E8B98A4933409BA26AC8F /* MBProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MBProgressHUD-Info.plist"; sourceTree = ""; }; - 572AF713352151524DA6B05D4263649C /* SDAnimatedImageRep.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImageRep.m; path = SDWebImage/Core/SDAnimatedImageRep.m; sourceTree = ""; }; - 57AA8DF80B9A065EB5B7DB8BDDCA493A /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; - 57EA3263D4FB80CF7D624F5F6D030E39 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; - 5806CB3C712CE08D8ABAEFC71AE912DF /* LKSConfigManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKSConfigManager.h; path = Src/Main/Server/Others/LKSConfigManager.h; sourceTree = ""; }; - 5870C84B96B7FC2BF3E1B4EF89B7EABB /* UITableView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+LookinServer.h"; path = "Src/Main/Server/Category/UITableView+LookinServer.h"; sourceTree = ""; }; - 58E98AFB46C417CF6290EB04E8F2D36B /* SDAnimatedImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageView.h; path = SDWebImage/Core/SDAnimatedImageView.h; sourceTree = ""; }; - 5A189F398BE510E7B319CC3300FD8F9B /* LookinHierarchyInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinHierarchyInfo.m; path = Src/Main/Shared/LookinHierarchyInfo.m; sourceTree = ""; }; - 5A6A89615BCCC57230EB9C77EAD10932 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = ""; }; - 5A9823CD9135BF2978F9FFBCEDF1A0D1 /* MJExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-umbrella.h"; sourceTree = ""; }; - 5AE2E7C5A0A292BFF014DD00F925C407 /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; - 5AEB2333F1EB13C03FB8CEED793E1015 /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; - 5BBFBF8D6A03A53F430C80D3F81065AB /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; - 5CADC2A13C9EE60949F900D6769C01BD /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; - 5D02D38AAAAA529B8ECD4D448FBD3E8D /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; - 5E626FE204DCA11B59E8032F2BE72D1E /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; - 5F2CA2F1F503FF6B4C93B235750D7337 /* MJPropertyKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyKey.m; path = MJExtension/MJPropertyKey.m; sourceTree = ""; }; - 5FD3BF85130EDA6091AA65991889DE58 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; - 6115270DC722A6D257587BEC55E88D1C /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; - 61181E369DFBFA5F80FBC45E82473070 /* LKS_CustomAttrSetterManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrSetterManager.m; path = Src/Main/Server/Others/LKS_CustomAttrSetterManager.m; sourceTree = ""; }; - 6146D488C951FCE2AFAD197A22FAC52C /* LKS_HierarchyDisplayItemsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_HierarchyDisplayItemsMaker.h; path = Src/Main/Server/Others/LKS_HierarchyDisplayItemsMaker.h; sourceTree = ""; }; - 61F45ECF668F559F21F38225F3EB83F4 /* MJExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJExtension-dummy.m"; sourceTree = ""; }; - 61FEC94A1F66D9DBD17D3B3A8B67B021 /* AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AFNetworking-dummy.m"; sourceTree = ""; }; - 6204C6C6CB4D8A46E3F99F003B5B6600 /* LKS_RequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_RequestHandler.h; path = Src/Main/Server/Connection/LKS_RequestHandler.h; sourceTree = ""; }; - 622F6ED0A6BF382A4C8A4CEB78F2DEDF /* LookinCustomAttrModification.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCustomAttrModification.h; path = Src/Main/Shared/LookinCustomAttrModification.h; sourceTree = ""; }; - 62A83195A830F9F701797F5F472A25CB /* SDImageCacheConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheConfig.h; path = SDWebImage/Core/SDImageCacheConfig.h; sourceTree = ""; }; - 62AA2800B9EED6DEDB0EA803F85B170D /* SDCallbackQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDCallbackQueue.h; path = SDWebImage/Core/SDCallbackQueue.h; sourceTree = ""; }; - 62C3CA0C7B7D17D0C0EDC78CF7D2036E /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDWebImage.modulemap; sourceTree = ""; }; - 62D6930B7711EEC4F37BEF97746AA2C2 /* LookinCustomAttrModification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinCustomAttrModification.m; path = Src/Main/Shared/LookinCustomAttrModification.m; sourceTree = ""; }; - 638C03AF9AB2713DC73B30A646C0DC90 /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; + 54F6D7D59C67E3F699ECC0BC17F64C63 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; + 55D6A1D4A62AEAFEB00E39A0BAB4D100 /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; + 563BAF3B8E8BF2625BE8EABD7C2F3059 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; + 56427D5143AF4020D59AE1CB2C056990 /* LKS_TraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_TraceManager.h; path = Src/Main/Server/Others/LKS_TraceManager.h; sourceTree = ""; }; + 56AE76BCBC0A2628D411734B376EBDB3 /* NSObject+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+LookinServer.m"; path = "Src/Main/Server/Category/NSObject+LookinServer.m"; sourceTree = ""; }; + 57339782C3AB75D710506F6FB663C517 /* SDImageAWebPCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAWebPCoder.h; path = SDWebImage/Core/SDImageAWebPCoder.h; sourceTree = ""; }; + 575BBC04164F81FC37914FA7A54E3240 /* Lookin_PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTProtocol.h; path = Src/Main/Shared/Peertalk/Lookin_PTProtocol.h; sourceTree = ""; }; + 575CFD08C73D335D9EB940A62E08CA51 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; + 578B95230AE545201B64A7880F20CE7A /* LookinAttributesGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributesGroup.m; path = Src/Main/Shared/LookinAttributesGroup.m; sourceTree = ""; }; + 57F9DD94DC7C2B755239E5925595D7C8 /* LookinDisplayItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDisplayItem.m; path = Src/Main/Shared/LookinDisplayItem.m; sourceTree = ""; }; + 586E80B855BDB3E4E90B9FB145E2EB0D /* LKS_AttrGroupsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_AttrGroupsMaker.m; path = Src/Main/Server/Others/LKS_AttrGroupsMaker.m; sourceTree = ""; }; + 59B1DD789D49022BC2ACF8335057F7CC /* LookinConnectionResponseAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinConnectionResponseAttachment.m; path = Src/Main/Shared/LookinConnectionResponseAttachment.m; sourceTree = ""; }; + 5AA2F2ED2EA023000B96610016FEAA39 /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; + 5AB3D61AB0186E2435E2CDD2BF2567ED /* SDImageTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageTransformer.m; path = SDWebImage/Core/SDImageTransformer.m; sourceTree = ""; }; + 5B9DE99C87B3A8BB38D98079456DFE44 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; + 5BA282361175441D998D08E9DF25D997 /* MJPropertyKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyKey.h; path = MJExtension/MJPropertyKey.h; sourceTree = ""; }; + 5C48A4D6BE2CBCB1CF05CB08A805079E /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = ""; }; + 5CC1C56C3527898F484B32A302420EAA /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; + 5CE3B983336EF08E3720087F0A5CA6A5 /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; + 5D33CD5A23C022887101A35836C53F5E /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; + 5D440755A089B2475FF76C4132626F26 /* SDWebImageCacheSerializer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheSerializer.m; path = SDWebImage/Core/SDWebImageCacheSerializer.m; sourceTree = ""; }; + 5DA4577FE3BC4A03751108FFED07B385 /* DZNEmptyDataSet */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = DZNEmptyDataSet; path = DZNEmptyDataSet.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 5DBDE11C24E2752A8FAC2F762D4136D4 /* LookinHierarchyFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinHierarchyFile.h; path = Src/Main/Shared/LookinHierarchyFile.h; sourceTree = ""; }; + 5DCC668449367056FAD99194229148C2 /* DZNEmptyDataSet-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DZNEmptyDataSet-umbrella.h"; sourceTree = ""; }; + 5DFB55B62B7110A8A5C0B7C24C0A106D /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = ""; }; + 5DFE39E4DB7E47FF7ABF20ECDA02C502 /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = ""; }; + 5E6423772635F4C3102289DE850F792D /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; + 5F34D1A27418A709F7C65E3DB1D77A02 /* UICollectionViewLayout+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UICollectionViewLayout+MJRefresh.h"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.h"; sourceTree = ""; }; + 5F40730F0691EC5555DD04079075E018 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; + 5F62FC6D05660CB1BB52709692D6BE5A /* Image+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Image+Lookin.h"; path = "Src/Main/Shared/Category/Image+Lookin.h"; sourceTree = ""; }; + 60365D1D06C44FD4A5F3D2AA2FD20CEA /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; + 60C9E782AAB85053FEFB0B6F0A6F9DE9 /* LookinIvarTrace.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinIvarTrace.m; path = Src/Base/LookinIvarTrace.m; sourceTree = ""; }; + 60E339E151900BF9DDBFEDE00A37182D /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; + 612064766B38AA6EDF74D011716F8B07 /* LookinEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinEventHandler.m; path = Src/Main/Shared/LookinEventHandler.m; sourceTree = ""; }; + 6295DA33C02166E6F30B30876B63CCCC /* MJExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.release.xcconfig; sourceTree = ""; }; + 62A09C0A31058D2493F1981FBD38A2B6 /* LookinDisplayItemDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDisplayItemDetail.h; path = Src/Main/Shared/LookinDisplayItemDetail.h; sourceTree = ""; }; + 633F2EE743398967F9651A634CA3ED71 /* SDDiskCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDiskCache.m; path = SDWebImage/Core/SDDiskCache.m; sourceTree = ""; }; + 635415748BE6CDDD59DB97E93DED7A43 /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; 641251D3092FFCF2B6259BF8676A212E /* Pods-CustomKeyboard-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CustomKeyboard-Info.plist"; sourceTree = ""; }; - 645D159800FF6C0D6AA4195700142C1D /* SDImageAssetManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAssetManager.h; path = SDWebImage/Private/SDImageAssetManager.h; sourceTree = ""; }; - 64F51AABAF636DCECF141CB54F075D6F /* MJFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJFoundation.h; path = MJExtension/MJFoundation.h; sourceTree = ""; }; - 650163ADD37FEB8E42F2D54910D9E730 /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; - 6541C2A328C1AD7FFA7D2EC681F621D2 /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; - 654B7441631139FA93DE9402C0691827 /* LookinDisplayItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDisplayItem.h; path = Src/Main/Shared/LookinDisplayItem.h; sourceTree = ""; }; - 663D9E300DA4F769A31AAAABA67EBBA6 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = ""; }; - 689BDC5CBB44C0B90A7A06AD2C74AF7C /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = ""; }; - 68DB8636DC57D1EA269FFF0F85A7CDB9 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; - 6950AEBC05A59EB2DABC29EE342A50A4 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/Core/SDImageCache.m; sourceTree = ""; }; - 697DC475F2B03BC0752E69057A7CA83B /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = ""; }; - 69F167782D6A44DCECF096095F95176D /* UITextView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+LookinServer.m"; path = "Src/Main/Server/Category/UITextView+LookinServer.m"; sourceTree = ""; }; - 6A585899AAD155043A8A9AEE95D2E130 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; - 6A8A0580900F5771E4F0A4B83B33A7D8 /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; - 6ABF17E26D71FF7DF0ACDF8B97EA1635 /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; - 6ADFC8A9479ECC34CFA858E840DAEC66 /* MASConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraint.h; path = Masonry/MASConstraint.h; sourceTree = ""; }; - 6C7C30C3A82271A0F12CE2EEF18DE7D0 /* LookinDisplayItem.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDisplayItem.m; path = Src/Main/Shared/LookinDisplayItem.m; sourceTree = ""; }; - 6C8ECBCF7B77DBEB613E75B2C7F41870 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; sourceTree = ""; }; - 6C9CBA9F980F6337553B07CF7C9A082E /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = ""; }; - 6CBF782E18392DC4731A18BF30BEF739 /* MBProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-umbrella.h"; sourceTree = ""; }; - 6D69B1BF45C02818E7FC7225E601EA13 /* LookinEventHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinEventHandler.m; path = Src/Main/Shared/LookinEventHandler.m; sourceTree = ""; }; - 70300CBC7FA31FE9EB7D12A715829E8B /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; - 7247EC33F8A78F5C637623C4DE5F4CE3 /* LookinDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDefines.h; path = Src/Main/Shared/LookinDefines.h; sourceTree = ""; }; - 72B184F2B801EED2FCD9843F638CBE4E /* LookinDisplayItemDetail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDisplayItemDetail.m; path = Src/Main/Shared/LookinDisplayItemDetail.m; sourceTree = ""; }; - 72B915563644A1FC0237C7B216F51887 /* LKS_CustomAttrModificationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrModificationHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_CustomAttrModificationHandler.h; sourceTree = ""; }; - 72F87E260CFDB0280F5FB56A5C465226 /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; - 734F03C8AE34E4BF5AA95F0C22C9132E /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; - 73686ECF343E491D810253E33779376F /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; - 74B7B393190F8ED4CF8F70CFED858B48 /* LookinConnectionAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinConnectionAttachment.m; path = Src/Main/Shared/LookinConnectionAttachment.m; sourceTree = ""; }; - 74E4055647D4226A87EF134A0A482E51 /* MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJProperty.m; path = MJExtension/MJProperty.m; sourceTree = ""; }; - 7699478B8B650E1EAD23CFF5B07A347B /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = ""; }; - 7716AB4C65CD7C7249AEAA3B083AF83B /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; - 778511050A09589C0F2419C65DD684FC /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; - 77AB8F2CB63DFC25D6209FEF0598B84D /* NSObject+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+LookinServer.m"; path = "Src/Main/Server/Category/NSObject+LookinServer.m"; sourceTree = ""; }; - 783FB276937B3622B36CCC53DD11E38E /* Lookin_PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTPrivate.h; path = Src/Main/Shared/Peertalk/Lookin_PTPrivate.h; sourceTree = ""; }; - 7953E4E7E2CD405F691F041B6B22DE19 /* MJPropertyKey.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyKey.h; path = MJExtension/MJPropertyKey.h; sourceTree = ""; }; - 7A27148D4048B706E12C8297CFE61677 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; - 7CB1AFAA2BDF542C6EB87C7190254DC0 /* LookinConnectionAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinConnectionAttachment.h; path = Src/Main/Shared/LookinConnectionAttachment.h; sourceTree = ""; }; - 7D3CC4FF177FF84EC222FB0DDC2C4C04 /* LookinServer.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LookinServer.debug.xcconfig; sourceTree = ""; }; - 7D5EA1884E0F9F70D07487B825626804 /* UIBlurEffect+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBlurEffect+LookinServer.m"; path = "Src/Main/Server/Category/UIBlurEffect+LookinServer.m"; sourceTree = ""; }; - 7DD3DA3153B979F42E9CB8B3C038E490 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; + 6469C9876A56CC6A832C4CCABAC844C4 /* DZNEmptyDataSet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DZNEmptyDataSet.release.xcconfig; sourceTree = ""; }; + 64C48FA63DD7DADA05BE572E8F9298BE /* NSImage+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSImage+Compatibility.m"; path = "SDWebImage/Core/NSImage+Compatibility.m"; sourceTree = ""; }; + 651BCEE02EE09944661239397E6D5544 /* LookinStaticAsyncUpdateTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinStaticAsyncUpdateTask.m; path = Src/Main/Shared/LookinStaticAsyncUpdateTask.m; sourceTree = ""; }; + 65775B370DA0EF569421A8B889F95674 /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; + 65B1B4D00C645096B73E54FF2DA45C1E /* LKS_InbuiltAttrModificationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_InbuiltAttrModificationHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_InbuiltAttrModificationHandler.m; sourceTree = ""; }; + 65D253E70EDE671E88678CD312A23B28 /* Masonry-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Masonry-Info.plist"; sourceTree = ""; }; + 66FD4250A6E1464C3E2D40E01FB359A5 /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; + 678A796D8A78AFF578F121454B12F8CD /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = ""; }; + 67DEF1B5920E9373D6A997322910CBB0 /* LookinAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttribute.m; path = Src/Main/Shared/LookinAttribute.m; sourceTree = ""; }; + 684C7619F40452AE337105C72D36F7BC /* MJExtension-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-umbrella.h"; sourceTree = ""; }; + 686B0CDADA2537527E29D19893FFD939 /* SDDisplayLink.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDisplayLink.h; path = SDWebImage/Private/SDDisplayLink.h; sourceTree = ""; }; + 68F1F3FEB751E1F6CA19EAA4106A4DAE /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; + 69531482F2B768A657877C539981C6C0 /* SDWebImageTransitionInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransitionInternal.h; path = SDWebImage/Private/SDWebImageTransitionInternal.h; sourceTree = ""; }; + 697D3680A8B84D7C662F3FF110E56E91 /* DZNEmptyDataSet-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "DZNEmptyDataSet-Info.plist"; sourceTree = ""; }; + 69AFDB50C9D979273008F144EF898FCB /* UICollectionViewLayout+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UICollectionViewLayout+MJRefresh.m"; path = "MJRefresh/UICollectionViewLayout+MJRefresh.m"; sourceTree = ""; }; + 6AEA2337C94A8C598BB24FEE58D8A1BC /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = ""; }; + 6B1C5464F49ED58861A679B29B833103 /* MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD-dummy.m"; sourceTree = ""; }; + 6C13B2432B650F817A5A6018661A3002 /* MBProgressHUD-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MBProgressHUD-Info.plist"; sourceTree = ""; }; + 6CD66DE7B14AC980E0C9BF0F45F4336D /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = ""; }; + 6DC93497016CB5E97D1FDA43EA20AF77 /* SDCallbackQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDCallbackQueue.h; path = SDWebImage/Core/SDCallbackQueue.h; sourceTree = ""; }; + 6DCE8121399017996B8FC63728C01C6F /* SDWebImageCacheSerializer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheSerializer.h; path = SDWebImage/Core/SDWebImageCacheSerializer.h; sourceTree = ""; }; + 6E032DF8C0EDECB1E6B5FC978329BCCB /* SDWebImageDownloaderRequestModifier.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderRequestModifier.m; path = SDWebImage/Core/SDWebImageDownloaderRequestModifier.m; sourceTree = ""; }; + 6E1F681FE04A1A936DAAA127C5F4AF4B /* LookinCustomAttrModification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinCustomAttrModification.m; path = Src/Main/Shared/LookinCustomAttrModification.m; sourceTree = ""; }; + 6E8675CEE6F196019C2179297EB96DA0 /* NSObject+MJCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJCoding.m"; path = "MJExtension/NSObject+MJCoding.m"; sourceTree = ""; }; + 6EB3E0F6EA2AEF722802AF2258844A99 /* LookinConnectionAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinConnectionAttachment.m; path = Src/Main/Shared/LookinConnectionAttachment.m; sourceTree = ""; }; + 6EF063706C65042A3322B65B0F2DFC5A /* WKWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WKWebView+AFNetworking.h"; path = "UIKit+AFNetworking/WKWebView+AFNetworking.h"; sourceTree = ""; }; + 70C2384D14B3691CB3C5B98DCA0B35BD /* LookinHierarchyInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinHierarchyInfo.m; path = Src/Main/Shared/LookinHierarchyInfo.m; sourceTree = ""; }; + 70DCC77621C4107A20AF6B4737F85A9A /* Peertalk.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Peertalk.h; path = Src/Main/Shared/Peertalk/Peertalk.h; sourceTree = ""; }; + 70FD8AAA2CE8990A75B251A7DB733A44 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/Core/UIButton+WebCache.h"; sourceTree = ""; }; + 725FCDB992DC8BA14911A10FB5F39FBE /* LookinCustomDisplayItemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinCustomDisplayItemInfo.m; path = Src/Main/Shared/LookinCustomDisplayItemInfo.m; sourceTree = ""; }; + 7279EAB65BFFE7CFBBE326A2535AC656 /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = ""; }; + 73A72966F3C762FBB3F334E82CB69634 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; + 73C61559A1B0E35919ED6A55F60D8881 /* LKS_HierarchyDetailsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_HierarchyDetailsHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_HierarchyDetailsHandler.h; sourceTree = ""; }; + 7438D6BCCC37A3DDDE821453D6D936BD /* UIColor+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+LookinServer.m"; path = "Src/Main/Server/Category/UIColor+LookinServer.m"; sourceTree = ""; }; + 747AB3476737E22DC26E85147BDB80FB /* SDImageCacheConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCacheConfig.m; path = SDWebImage/Core/SDImageCacheConfig.m; sourceTree = ""; }; + 74CC4B9CFC981830544FF916E5A83CC7 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; + 74FE12FD21655EC9E53B3DD7175CB067 /* LookinAutoLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAutoLayoutConstraint.m; path = Src/Main/Shared/LookinAutoLayoutConstraint.m; sourceTree = ""; }; + 75427AB3CFEFC15FE3E5B3DB1482A9DD /* LookinDisplayItem.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDisplayItem.h; path = Src/Main/Shared/LookinDisplayItem.h; sourceTree = ""; }; + 755CCA36E00C95FE42AB4DED32C05D4E /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; + 75DCD6903959A20B53948E18417106B8 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; + 7636A8638A254AA9F4489052690CFAFF /* LookinDashboardBlueprint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDashboardBlueprint.m; path = Src/Main/Shared/LookinDashboardBlueprint.m; sourceTree = ""; }; + 767A32EFFEACBCB8FE5E18A0DC735AE1 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; + 76FE6090F39F423688B2085B527C4D12 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; + 777EE64E29767A3A8BEEED1361D63FF7 /* SDImageAWebPCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAWebPCoder.m; path = SDWebImage/Core/SDImageAWebPCoder.m; sourceTree = ""; }; + 77CAAF43AF1455EED7ADA84E53D6CC10 /* UIImage+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+LookinServer.h"; path = "Src/Main/Server/Category/UIImage+LookinServer.h"; sourceTree = ""; }; + 78D6FB9D0F805C75A358F271B1C91A91 /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/Core/SDWebImageDownloader.h; sourceTree = ""; }; + 78F82B479082399992AB5F11FE1883FC /* LKS_RequestHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_RequestHandler.h; path = Src/Main/Server/Connection/LKS_RequestHandler.h; sourceTree = ""; }; + 79BF9A9C8A01FA5788DABBD3AB93BCD0 /* MBProgressHUD.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.debug.xcconfig; sourceTree = ""; }; + 7A00FC0F567DB778E6383FF7BA31B2DA /* Lookin_PTUSBHub.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTUSBHub.h; path = Src/Main/Shared/Peertalk/Lookin_PTUSBHub.h; sourceTree = ""; }; + 7A8E62DB89DBDAD71FE2A3DC199D5391 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; + 7AA44A6ECAB7BAF550494938C65074DF /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; + 7BBEEA2B34D86929E70349BB590B1E1E /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = ""; }; + 7DA4571CF6333890957ED92A8FA2AF37 /* NSObject+MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJProperty.m"; path = "MJExtension/NSObject+MJProperty.m"; sourceTree = ""; }; + 7DC4FD783789DDB9ED9EA77F73A62868 /* LKS_GestureTargetActionsSearcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_GestureTargetActionsSearcher.m; path = Src/Main/Server/Others/LKS_GestureTargetActionsSearcher.m; sourceTree = ""; }; + 7E2A6E397F8C2CBCFA92800373424406 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "MJRefresh-MJRefresh.Privacy"; path = MJRefresh.Privacy.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - 7EC149DD04B38B6352EC2E66AD38711D /* LKS_AttrModificationPatchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_AttrModificationPatchHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_AttrModificationPatchHandler.h; sourceTree = ""; }; - 7F08A828C0693F3B42589C54C848C4AA /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; - 7F69F081E6D6A2642737315D3ADA1CC3 /* LKS_CustomAttrModificationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrModificationHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_CustomAttrModificationHandler.m; sourceTree = ""; }; - 7FFA0EDEB465D63DE04725E94D60FA0B /* LKS_AttrGroupsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_AttrGroupsMaker.h; path = Src/Main/Server/Others/LKS_AttrGroupsMaker.h; sourceTree = ""; }; - 80A3B32E224CFE4ADC45DABBF86A9DA3 /* NSString+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+Lookin.m"; path = "Src/Main/Shared/Category/NSString+Lookin.m"; sourceTree = ""; }; - 80C8588C27905BA6272F78D68E4A7D11 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; - 80DFC2DC4F2DDB0E78A336D975C7B17F /* SDImageIOAnimatedCoderInternal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoderInternal.h; path = SDWebImage/Private/SDImageIOAnimatedCoderInternal.h; sourceTree = ""; }; - 80ECD59B95128414F3E8AA8A95C99447 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = ""; }; - 8285CAC84344E7CF3B9E5DCB68540DB5 /* LookinWeakContainer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinWeakContainer.m; path = Src/Main/Shared/LookinWeakContainer.m; sourceTree = ""; }; - 831263077417DAA4D4D6E8B634304AB7 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = ""; }; - 832387A43D4F18E7585E3A63B082600E /* NSBezierPath+SDRoundedCorners.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBezierPath+SDRoundedCorners.h"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.h"; sourceTree = ""; }; - 8331404CF71463593B63634AFF0D7DA1 /* WKWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "WKWebView+AFNetworking.h"; path = "UIKit+AFNetworking/WKWebView+AFNetworking.h"; sourceTree = ""; }; - 835CBC4C9CDA7D225001E274730BE17D /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; - 83749586E57DDEB645F97D1F5F81297A /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; - 8495772F8550107728BB239DE5C6229E /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = ""; }; - 84DF2122A52829CDBB8BB5A70349A035 /* SDDeviceHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDeviceHelper.m; path = SDWebImage/Private/SDDeviceHelper.m; sourceTree = ""; }; - 852A25842A8D8665E6923F3AE496EF4A /* LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinServer.h; path = Src/Main/Server/LookinServer.h; sourceTree = ""; }; - 85714C86B625827EB6C21227A0E6D653 /* LookinServer.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = LookinServer.modulemap; sourceTree = ""; }; - 857B74289833FF796A57913896657913 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; - 85BF9DF79D629AED4E7665E99B9A9A59 /* LookinCustomDisplayItemInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinCustomDisplayItemInfo.m; path = Src/Main/Shared/LookinCustomDisplayItemInfo.m; sourceTree = ""; }; - 85DB6DCE5C9B3EA2CCD2525F1FABA86F /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + 7F9BBC9A6E2890E280DC92D31D5925F9 /* LookinCustomDisplayItemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCustomDisplayItemInfo.h; path = Src/Main/Shared/LookinCustomDisplayItemInfo.h; sourceTree = ""; }; + 7FB91552B12B89290051C618D5F0469B /* DZNEmptyDataSet-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "DZNEmptyDataSet-prefix.pch"; sourceTree = ""; }; + 7FDC0E36FCDC540AE65CF49D2F26B8BE /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 800E42EEAEDD32C6050A85CB9E42FCF2 /* SDImageGraphics.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageGraphics.m; path = SDWebImage/Core/SDImageGraphics.m; sourceTree = ""; }; + 80BEE3AD7A73C30ED1CBF7BAD5DA4722 /* LookinConnectionResponseAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinConnectionResponseAttachment.h; path = Src/Main/Shared/LookinConnectionResponseAttachment.h; sourceTree = ""; }; + 80F652D71E3E50AF10964AD227D56F36 /* NSArray+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASAdditions.h"; path = "Masonry/NSArray+MASAdditions.h"; sourceTree = ""; }; + 81AB179A6655F29D1864A1679AF918E8 /* SDWebImageTransition.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageTransition.m; path = SDWebImage/Core/SDWebImageTransition.m; sourceTree = ""; }; + 8283A8ADA0737B2A383BF3E8E613D220 /* SDWebImage.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = SDWebImage.modulemap; sourceTree = ""; }; + 83AB35F7CE9224956EA55E0F032CD708 /* UIScrollView+EmptyDataSet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+EmptyDataSet.m"; path = "Source/UIScrollView+EmptyDataSet.m"; sourceTree = ""; }; + 83AB9EBBB91A99CC0152DC02DD93CBD2 /* MASConstraint+Private.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MASConstraint+Private.h"; path = "Masonry/MASConstraint+Private.h"; sourceTree = ""; }; + 84D5E3254AD61B1D6892C52893B11492 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/Core/UIImage+GIF.h"; sourceTree = ""; }; + 84D806687455E05BEF29EB85BB74E03F /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; + 85FE48FEA957DB5936ECEE4F0A71B009 /* SDImageCodersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCodersManager.h; path = SDWebImage/Core/SDImageCodersManager.h; sourceTree = ""; }; 86A260983254EF2D214865E91D3787B2 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; - 876AE024D71B4EF1E561674AFE730133 /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; - 887BDFD52A061A00791DC627E1D6A3AE /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; - 888CEDA5544B37CB5E23B893BD6DCD04 /* LookinWeakContainer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinWeakContainer.h; path = Src/Main/Shared/LookinWeakContainer.h; sourceTree = ""; }; - 89B1F13EE03D24E12673B137A9CF5D83 /* SDWebImageCacheKeyFilter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCacheKeyFilter.h; path = SDWebImage/Core/SDWebImageCacheKeyFilter.h; sourceTree = ""; }; - 8A1809C53F7A88540458376FBAF507C4 /* Color+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Color+Lookin.h"; path = "Src/Main/Shared/Category/Color+Lookin.h"; sourceTree = ""; }; - 8ACF5FED576BE1C7180C71DAEC03A946 /* LKS_HierarchyDetailsHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_HierarchyDetailsHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_HierarchyDetailsHandler.h; sourceTree = ""; }; - 8B7DAD642D3DC69175A08133BBA52F3A /* View+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASAdditions.h"; path = "Masonry/View+MASAdditions.h"; sourceTree = ""; }; + 86C56519021ABDEF1D6B4197F9979FFA /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = ""; }; + 86DB200E6E0B43E2BEA84EA1C5043A04 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; + 880A805BA0B5B68686832A5A2B467CB3 /* SDImageCachesManagerOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManagerOperation.h; path = SDWebImage/Private/SDImageCachesManagerOperation.h; sourceTree = ""; }; + 883DCCD06A6D63DB9B2FD31A9A6E8DDE /* LookinServer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LookinServer-Info.plist"; sourceTree = ""; }; + 8883B17FC0C4FB5FBB47C773D132541D /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = ""; }; + 88B14BF9D8A154C06BB8ACB4597DB243 /* MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJProperty.h; path = MJExtension/MJProperty.h; sourceTree = ""; }; + 88C5A11A011853337516FE336041BAE6 /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; + 897DE7B8BFE04684270698FF1640A517 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + 899DB60C8AE35AAEE60EE79A959585AF /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; + 8A56DD9A3C882C9F1DF2B0003043CA42 /* DZNEmptyDataSet-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "DZNEmptyDataSet-dummy.m"; sourceTree = ""; }; 8B8FAB0D627B17EDE1366984278705D9 /* MBProgressHUD */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MBProgressHUD; path = MBProgressHUD.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 8BB51939C292589929B87528EE42E89D /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; - 8DED3EBF67B7C663A66132C35837AD91 /* LKS_CustomDisplayItemsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomDisplayItemsMaker.m; path = Src/Main/Server/Others/LKS_CustomDisplayItemsMaker.m; sourceTree = ""; }; - 8E1F282017956A789A6F1005875439FC /* SDWebImageError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageError.h; path = SDWebImage/Core/SDWebImageError.h; sourceTree = ""; }; - 8E373F587419E70BA0E69E2506B48FF0 /* UILabel+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+LookinServer.m"; path = "Src/Main/Server/Category/UILabel+LookinServer.m"; sourceTree = ""; }; - 8E7450686216DDFC68F7AC94B8952B7A /* Image+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Image+Lookin.m"; path = "Src/Main/Shared/Category/Image+Lookin.m"; sourceTree = ""; }; - 8F24D6A0AC44ADDE1723705C5AC64EF8 /* UIImage+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+LookinServer.h"; path = "Src/Main/Server/Category/UIImage+LookinServer.h"; sourceTree = ""; }; - 8F63BFF477F03229703E85F15BB2CF25 /* SDImageCodersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCodersManager.m; path = SDWebImage/Core/SDImageCodersManager.m; sourceTree = ""; }; - 8FBC9F2ACA54B722C75B9CEAC5A6BCBE /* SDWeakProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWeakProxy.h; path = SDWebImage/Private/SDWeakProxy.h; sourceTree = ""; }; - 8FC366209BE4A85A302A409FA2080672 /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; - 90444EF3531CB7C1020F6FD7290BDFC9 /* NSObject+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+Lookin.m"; path = "Src/Main/Shared/Category/NSObject+Lookin.m"; sourceTree = ""; }; - 90DBFE3FBA88E6E0D4A601266E1F8C41 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = ""; }; - 92B8CD2105996DB89F57CE499469BD0B /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; - 92D95C5758825D92D4ABC96CD6511473 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; - 92FA6AC0BAD76512878820820517E041 /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; - 9319E9876FB247FF2E05742896D5DB29 /* SDCallbackQueue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDCallbackQueue.m; path = SDWebImage/Core/SDCallbackQueue.m; sourceTree = ""; }; - 9412CB09E0E9D26DFCE87A94BE2C0799 /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; - 945CA7177BB3031B95B3DAB1FFD5A192 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; - 94C8D4650CE58C8BF079BB5F8200F71A /* NSBezierPath+SDRoundedCorners.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBezierPath+SDRoundedCorners.m"; path = "SDWebImage/Private/NSBezierPath+SDRoundedCorners.m"; sourceTree = ""; }; - 94E5C41EB7247DD6A572963BAEFD320B /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; - 95FADFC756FD830D966DE01DA2A6F117 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; + 8BA08173DE18AE8A2B6EA7B2AEE2CFE6 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; + 8CA68BAB63D0C7D565B1D15F975CD31B /* LookinServer-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LookinServer-umbrella.h"; sourceTree = ""; }; + 8CA693E8FA862AD78A30A19853C8A602 /* DZNEmptyDataSet.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = DZNEmptyDataSet.modulemap; sourceTree = ""; }; + 8D92FC30B6DB6A03B90E4ACF6B3F5349 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSBundle+MJRefresh.h"; path = "MJRefresh/NSBundle+MJRefresh.h"; sourceTree = ""; }; + 8D9BD3652C8EDC1D4A7E44DC245F45FD /* UIView+WebCacheState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheState.h"; path = "SDWebImage/Core/UIView+WebCacheState.h"; sourceTree = ""; }; + 8DAEFFBFC2A8B5DDA66F37DA02A0D1EC /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; + 8DCA3038D28CC7DA19E70D6E1C915CA2 /* SDImageCachesManagerOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManagerOperation.m; path = SDWebImage/Private/SDImageCachesManagerOperation.m; sourceTree = ""; }; + 8EC7D805B3669842D8D00AC25DD350F3 /* UIBlurEffect+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIBlurEffect+LookinServer.h"; path = "Src/Main/Server/Category/UIBlurEffect+LookinServer.h"; sourceTree = ""; }; + 8F2ADFE29A92167B3C4FD8A49559C346 /* UITextField+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextField+LookinServer.m"; path = "Src/Main/Server/Category/UITextField+LookinServer.m"; sourceTree = ""; }; + 8F35B70F96A661BCF6259326D0EBC020 /* LKS_TraceManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_TraceManager.m; path = Src/Main/Server/Others/LKS_TraceManager.m; sourceTree = ""; }; + 90E76432085AB53FA0BD24255F01A5E7 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; + 91747F4F3719A8A372677DDE1E40733B /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; + 92C914CEAD4453388BDD547DF47A2B09 /* LKS_HierarchyDisplayItemsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_HierarchyDisplayItemsMaker.h; path = Src/Main/Server/Others/LKS_HierarchyDisplayItemsMaker.h; sourceTree = ""; }; + 938496D2077B5D567BA32550A5EF8099 /* MBProgressHUD.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MBProgressHUD.release.xcconfig; sourceTree = ""; }; + 95211F71D6ADE9601965FDFEE1E997D1 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; + 9531B77BDB95A2B2375AAFCB5A73D5A7 /* MJPropertyKey.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyKey.m; path = MJExtension/MJPropertyKey.m; sourceTree = ""; }; + 954E7A3ED44A655F09F9D9660EACDDFC /* UILabel+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UILabel+LookinServer.m"; path = "Src/Main/Server/Category/UILabel+LookinServer.m"; sourceTree = ""; }; + 95820E95891E3F96B30D5901A0D3907D /* UIVisualEffectView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIVisualEffectView+LookinServer.h"; path = "Src/Main/Server/Category/UIVisualEffectView+LookinServer.h"; sourceTree = ""; }; + 95F45E1557907D629EAA4C321913606F /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; + 961DF772C77317164F224836C8C58C0C /* Lookin_PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTChannel.h; path = Src/Main/Shared/Peertalk/Lookin_PTChannel.h; sourceTree = ""; }; + 964BD2E59FEFC946EF5CA5443A4B8B3F /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; 969A9A842778EFB5D62826500DFF4E11 /* Pods-keyBoard-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-keyBoard-dummy.m"; sourceTree = ""; }; - 970E9876B233086A3D751ACA4D70F9C6 /* LookinAttrIdentifiers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttrIdentifiers.h; path = Src/Main/Shared/LookinAttrIdentifiers.h; sourceTree = ""; }; - 972C9EBD40CB1A4E78F42C6A8B746C6C /* LookinDashboardBlueprint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDashboardBlueprint.m; path = Src/Main/Shared/LookinDashboardBlueprint.m; sourceTree = ""; }; - 97C6CD442B2A0C50D32BC3862DF59981 /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; - 9925853CD65033AE45CAE54E062A6427 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = ""; }; - 9A52CFE44B64DF4387F236C2E7F30BF0 /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; - 9A5A7EFB9ABF468D7305DA246936B892 /* CALayer+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+Lookin.h"; path = "Src/Main/Shared/Category/CALayer+Lookin.h"; sourceTree = ""; }; - 9BF31B7CF51BCA3D85DCE8EED8BAC1F7 /* SDImageLoadersManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoadersManager.h; path = SDWebImage/Core/SDImageLoadersManager.h; sourceTree = ""; }; - 9C421B7C412665959652CDB2E4A9353D /* LookinAttributeModification.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributeModification.m; path = Src/Main/Shared/LookinAttributeModification.m; sourceTree = ""; }; - 9CC4D51ACB5F3D83C2D0EE062AB1C1A0 /* AFNetworking.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AFNetworking.modulemap; sourceTree = ""; }; - 9D7D95AB1031F290C3C6817EA5F01941 /* Masonry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Masonry.h; path = Masonry/Masonry.h; sourceTree = ""; }; + 982BDF7741EA7DD8C4EC946C022A2CE4 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; + 98416B88FBC70C47DFBB82E51CE2CAD5 /* MBProgressHUD.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MBProgressHUD.modulemap; sourceTree = ""; }; + 98843A0DA0B32A2AD534FD0DEDFF22AB /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/Core/UIView+WebCacheOperation.h"; sourceTree = ""; }; + 9974E2D70C76DAB234FAC98761556137 /* LKSConfigManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKSConfigManager.h; path = Src/Main/Server/Others/LKSConfigManager.h; sourceTree = ""; }; + 997B915D679C92DAC1CA5BC9AB14532D /* MASConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraint.m; path = Masonry/MASConstraint.m; sourceTree = ""; }; + 9A76C3033DDC15001490F7CE805EDD4C /* UITextView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITextView+LookinServer.m"; path = "Src/Main/Server/Category/UITextView+LookinServer.m"; sourceTree = ""; }; + 9AA476BA9ED5F6342684BACF66E137FB /* LKS_EventHandlerMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_EventHandlerMaker.h; path = Src/Main/Server/Others/LKS_EventHandlerMaker.h; sourceTree = ""; }; + 9ADEB33CB07F958A39FFF41A08D676F6 /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; + 9B45B2F972E0F43FB2D2755B8873D012 /* SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-prefix.pch"; sourceTree = ""; }; + 9C04E01C3DF3AE62C5CFD110E6B877F8 /* LookinAttrType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttrType.h; path = Src/Main/Shared/LookinAttrType.h; sourceTree = ""; }; + 9C2E5020AD9E07D6A69986510583A867 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = ""; }; + 9CB5B4D6046E5DD51BE708F47881FF07 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = ""; }; + 9D723AAB4B0B0B095DD348DECC4A67B8 /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9DDD0462C32F55EF5E9CB1056459809F /* Pods-CustomKeyboard-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-CustomKeyboard-umbrella.h"; sourceTree = ""; }; - 9EE0BC2C14C847A19C15872D3BD03614 /* UIColor+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIColor+LookinServer.h"; path = "Src/Main/Server/Category/UIColor+LookinServer.h"; sourceTree = ""; }; - 9FD68736B08D95BFEE9922A0FC83D5F5 /* NSButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSButton+WebCache.m"; path = "SDWebImage/Core/NSButton+WebCache.m"; sourceTree = ""; }; - A085D62853E322C3E916CA25247D52ED /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; - A09CC2027F235BDFDC50BF600A9639D6 /* NSObject+MJKeyValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJKeyValue.h"; path = "MJExtension/NSObject+MJKeyValue.h"; sourceTree = ""; }; - A13ECC896BF84437C0ED7BCBBF1E575A /* Lookin_PTProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTProtocol.h; path = Src/Main/Shared/Peertalk/Lookin_PTProtocol.h; sourceTree = ""; }; - A1FAF256EF0306662FC45B68A0E96EDB /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; - A20DFE314258D8BF8834CBF4844EA182 /* SDImageAssetManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageAssetManager.m; path = SDWebImage/Private/SDImageAssetManager.m; sourceTree = ""; }; - A23A3033A431C14F5AD66E9741FB3A58 /* UIImage+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Transform.m"; path = "SDWebImage/Core/UIImage+Transform.m"; sourceTree = ""; }; - A245A87BA546D569D81C4C62E6917396 /* LookinAttributesGroup.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributesGroup.m; path = Src/Main/Shared/LookinAttributesGroup.m; sourceTree = ""; }; - A2BA9CFAA095243614EE8971D643600A /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/Core/UIView+WebCacheOperation.m"; sourceTree = ""; }; - A2D67C47E521ED4D7C34D7EC8D0351F6 /* LookinAutoLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAutoLayoutConstraint.h; path = Src/Main/Shared/LookinAutoLayoutConstraint.h; sourceTree = ""; }; + 9E7B70FE43DB96F119CF5308A2D3556C /* MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtension.h; path = MJExtension/MJExtension.h; sourceTree = ""; }; + 9EE9536FB9FE3772BAD71E0462342B2E /* MJRefreshTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshTrailer.h; path = MJRefresh/Base/MJRefreshTrailer.h; sourceTree = ""; }; + A0F43F0BA711E6ACD54A62FF1CD2DDDF /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/Core/SDWebImageDownloader.m; sourceTree = ""; }; + A15D2806D2FB9337E30A3103199E9DCB /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; + A20F44CA8CE968BE4F558B3535572E6E /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/Core/SDWebImagePrefetcher.m; sourceTree = ""; }; + A26F76509B9F66D0C2928529CEB7E16A /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; + A2A220EC633F027E7B045854D845D02D /* LKS_EventHandlerMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_EventHandlerMaker.m; path = Src/Main/Server/Others/LKS_EventHandlerMaker.m; sourceTree = ""; }; + A2B9993D23A52E3D36AF3E2814064006 /* LKS_Helper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_Helper.m; path = Src/Main/Server/Others/LKS_Helper.m; sourceTree = ""; }; A2D8E1EB42D41EA6B94901E5B68C9011 /* Pods-keyBoard-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-keyBoard-umbrella.h"; sourceTree = ""; }; - A381186EF257980C40F18C6823B93140 /* NSObject+MJKeyValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJKeyValue.m"; path = "MJExtension/NSObject+MJKeyValue.m"; sourceTree = ""; }; - A4A2B6CD9939B7F97AA34443525A657F /* LKS_RequestHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_RequestHandler.m; path = Src/Main/Server/Connection/LKS_RequestHandler.m; sourceTree = ""; }; - A4AB45D03CDF4A6414C179861FA5DC70 /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; - A4EB383CBD6229B38BC7F0518892956E /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; + A34E97F0E0E9127BD6C840664D4D396E /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; + A36B56F43675EB04F1CC908C739FD537 /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = ""; }; + A375C1D697A112C4F27D2594B1A90187 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = AFNetworking; path = AFNetworking.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - A6CD1F804C7653F562D79E1BCDBE2CE6 /* NSSet+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSSet+Lookin.m"; path = "Src/Main/Shared/Category/NSSet+Lookin.m"; sourceTree = ""; }; + A5C6B57E2EF3B4DDAC9A360C48254F79 /* Bugly.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = Bugly.framework; sourceTree = ""; }; + A617C7FB0EDD8D5BBB4FE494072EAEA7 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = ""; }; + A6B562191F3678A7965507AF8B0D8BE7 /* NSObject+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+LookinServer.h"; path = "Src/Main/Server/Category/NSObject+LookinServer.h"; sourceTree = ""; }; + A6E3874D94D7084B2018828787E900CD /* Bugly.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.release.xcconfig; sourceTree = ""; }; A6E8FF241173D596A21D4D4B7D86A810 /* Pods-keyBoard.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-keyBoard.release.xcconfig"; sourceTree = ""; }; - A7281DF29098EA4B5EC135123990373A /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; - A808479C458FB22956C481AD3662118B /* SDWebImageTransition.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageTransition.h; path = SDWebImage/Core/SDWebImageTransition.h; sourceTree = ""; }; - A8895D2D2C4915F7E01602C14C9790D6 /* UIVisualEffectView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIVisualEffectView+LookinServer.m"; path = "Src/Main/Server/Category/UIVisualEffectView+LookinServer.m"; sourceTree = ""; }; - A8FE04060A3E22A889B5222EB4FA28D9 /* NSLayoutConstraint+MASDebugAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSLayoutConstraint+MASDebugAdditions.m"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.m"; sourceTree = ""; }; - AA05D249F6490500E244A09C161B30D4 /* UITableView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+LookinServer.m"; path = "Src/Main/Server/Category/UITableView+LookinServer.m"; sourceTree = ""; }; - AA126E980A8C9FE2B501C70B08282019 /* SDImageCoderHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoderHelper.m; path = SDWebImage/Core/SDImageCoderHelper.m; sourceTree = ""; }; - AB23AA27F975874EE1A3E1EA08DA741E /* LKS_CustomAttrGroupsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrGroupsMaker.h; path = Src/Main/Server/Others/LKS_CustomAttrGroupsMaker.h; sourceTree = ""; }; - AB33DDD90875C4148623FEEC4874293B /* LKS_CustomAttrGroupsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrGroupsMaker.m; path = Src/Main/Server/Others/LKS_CustomAttrGroupsMaker.m; sourceTree = ""; }; - AB6DF8B142DDA0EA0C528DAA9A74D246 /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; - AC27A4FE1B5F99C387A542FCAA1AAE76 /* MASViewConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewConstraint.h; path = Masonry/MASViewConstraint.h; sourceTree = ""; }; - AC94C322E266D6376E6DE6CAE85D7E8A /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; - ACAD387DAF06171B0CCCA098A7844B8F /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = ""; }; - AE221E5BEDD4CD19DE4D904CF3DD21E1 /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; - AEBC44725D7256BCC081E7D8B054C3BE /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; - AF66C3B81539E211933AE9075A3955E4 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; - AFFF3A20A03991DE8FA9843935913BB1 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = ""; }; - B036D97AF3C36613B6F91C8800239E05 /* NSButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSButton+WebCache.h"; path = "SDWebImage/Core/NSButton+WebCache.h"; sourceTree = ""; }; - B04FF993968810D24E3CB19E5048C2E8 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; + A7BD403F1F413528C53B3EFDF1387BC4 /* SDWebImageIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageIndicator.m; path = SDWebImage/Core/SDWebImageIndicator.m; sourceTree = ""; }; + A8033C5E72AC6B644BBFEA8D63B7DD4E /* AFAutoPurgingImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFAutoPurgingImageCache.h; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.h"; sourceTree = ""; }; + A8106626B5380E2AEEC5625B534D4237 /* LKS_ObjectRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ObjectRegistry.m; path = Src/Main/Server/Others/LKS_ObjectRegistry.m; sourceTree = ""; }; + A8BCB04CE81BF9A50A8C34DE7580CDBC /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; + A8C28CA27774F4C0902C9442DBF86B71 /* SDImageFramePool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFramePool.m; path = SDWebImage/Private/SDImageFramePool.m; sourceTree = ""; }; + A8E31D04B3BEDEC2470A24EC3B3C30AF /* NSObject+MJCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJCoding.h"; path = "MJExtension/NSObject+MJCoding.h"; sourceTree = ""; }; + A997A30994E24FE91A96F7E9623CE4EC /* UIImage+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+LookinServer.m"; path = "Src/Main/Server/Category/UIImage+LookinServer.m"; sourceTree = ""; }; + AA1A283CCC7407D1F72A54536D3D1F70 /* SDAnimatedImagePlayer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImagePlayer.h; path = SDWebImage/Core/SDAnimatedImagePlayer.h; sourceTree = ""; }; + AA49D75377E989DF22819667A0B19590 /* SDAsyncBlockOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAsyncBlockOperation.h; path = SDWebImage/Private/SDAsyncBlockOperation.h; sourceTree = ""; }; + AA742416BCB939B1D39297670E762EBB /* SDImageLoadersManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoadersManager.m; path = SDWebImage/Core/SDImageLoadersManager.m; sourceTree = ""; }; + AAF0EBD4D922EB27FBA2F8675E65E60C /* SDWebImage.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.debug.xcconfig; sourceTree = ""; }; + AB594CFD902A51491F4811092176CCD7 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/Core/UIImageView+WebCache.h"; sourceTree = ""; }; + ABA47701B5EF9AE3C616C2F11A5D703B /* SDImageCachesManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCachesManager.m; path = SDWebImage/Core/SDImageCachesManager.m; sourceTree = ""; }; + ACF26C9A806C3B87ACEEEF1A4043ED5F /* UITextView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+LookinServer.h"; path = "Src/Main/Server/Category/UITextView+LookinServer.h"; sourceTree = ""; }; + AD3DB31E06571161436EBC1E35701B6C /* LookinTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinTuple.h; path = Src/Main/Shared/LookinTuple.h; sourceTree = ""; }; + AE67898E71446EC88FC385C9A033EB73 /* LookinAttrIdentifiers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttrIdentifiers.m; path = Src/Main/Shared/LookinAttrIdentifiers.m; sourceTree = ""; }; + AED6C5FEA44896CCE29E8D3DC681BE8A /* SDImageCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCoder.m; path = SDWebImage/Core/SDImageCoder.m; sourceTree = ""; }; + AEE8F1D877871920052FF127A90036D4 /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; + AF6E2527E302487CA8D99CA6519CF408 /* UIImage+Transform.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Transform.h"; path = "SDWebImage/Core/UIImage+Transform.h"; sourceTree = ""; }; + B043C26FD7838BC3DBF026752B5B7EC2 /* MJFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJFoundation.m; path = MJExtension/MJFoundation.m; sourceTree = ""; }; B0B214D775196BA7CA8E17E53048A493 /* SDWebImage */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = SDWebImage; path = SDWebImage.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B0D7217C129ADC2B106BFB2CDBA1E07C /* MJExtension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.release.xcconfig; sourceTree = ""; }; - B1B7328566F2E3A7800F96D62AB528A4 /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = ""; }; - B1D5C22EE1AD5BE0F23DC1DA79A9E790 /* View+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "View+MASShorthandAdditions.h"; path = "Masonry/View+MASShorthandAdditions.h"; sourceTree = ""; }; - B1D7A18C6F68303CF83BFCF21D2952B6 /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; - B247DEA97C1612D30C990B6DAD73CC4A /* ViewController+MASAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "ViewController+MASAdditions.h"; path = "Masonry/ViewController+MASAdditions.h"; sourceTree = ""; }; - B2CEB63BF676CEE8E36C9825FBC2D9FF /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/Core/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - B385EE89FE65CFE426A67B99327A04AE /* SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "SDWebImage-dummy.m"; sourceTree = ""; }; - B3BD9FCA60B56210574573E7AA04F78E /* LookinTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinTuple.m; path = Src/Main/Shared/LookinTuple.m; sourceTree = ""; }; - B41FEDC10A936AE8E0F53E5FBFF1665C /* LookinConnectionResponseAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinConnectionResponseAttachment.m; path = Src/Main/Shared/LookinConnectionResponseAttachment.m; sourceTree = ""; }; - B453AD17732737A1146E48ABA80D5C3C /* AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-prefix.pch"; sourceTree = ""; }; - B4D7E2A6D4D6278883FFE5F4E1E5776C /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; - B5690E885F6A6638CC16D1B0DC1210D8 /* UIImage+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+LookinServer.m"; path = "Src/Main/Server/Category/UIImage+LookinServer.m"; sourceTree = ""; }; - B68123BC480EBE40D31AA867B2F0CF54 /* AFNetworking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.debug.xcconfig; sourceTree = ""; }; - B704CBA37ABFB9811890FFDFDB2DCCFD /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = ""; }; - B7C3681B606BB3EA4AC1943865B2A002 /* SDImageIOCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOCoder.m; path = SDWebImage/Core/SDImageIOCoder.m; sourceTree = ""; }; - B8089B3F5031231D66F1DA4588E3421A /* SDDisplayLink.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDDisplayLink.m; path = SDWebImage/Private/SDDisplayLink.m; sourceTree = ""; }; - B89DC13493075D3D97B8C48A41AF2CC0 /* SDImageCachesManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCachesManager.h; path = SDWebImage/Core/SDImageCachesManager.h; sourceTree = ""; }; - B89EEDFCB034E3A1C6593AF9E1DFE193 /* UIColor+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+LookinServer.m"; path = "Src/Main/Server/Category/UIColor+LookinServer.m"; sourceTree = ""; }; - B98325935BCCAB0088E7C38BEEB0AC9B /* UIView+WebCacheState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheState.m"; path = "SDWebImage/Core/UIView+WebCacheState.m"; sourceTree = ""; }; - BB2F587AA84A31548781D4331CE6A663 /* LookinObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinObject.h; path = Src/Main/Shared/LookinObject.h; sourceTree = ""; }; - BC10A4F27CB28FEFAFAAC64FBB83CCFF /* Lookin_PTChannel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTChannel.h; path = Src/Main/Shared/Peertalk/Lookin_PTChannel.h; sourceTree = ""; }; - BC11A65E54D99B9B24243ADDDF521A45 /* SDFileAttributeHelper.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDFileAttributeHelper.m; path = SDWebImage/Private/SDFileAttributeHelper.m; sourceTree = ""; }; - BC829FAAC6A3875A1067798DB4A26E50 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; - BCA9B216AF795768B316B3A738BA5B82 /* MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJProperty.h; path = MJExtension/MJProperty.h; sourceTree = ""; }; - BD5D9ACE60BD3F7C5357293FE159E089 /* LKS_GestureTargetActionsSearcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_GestureTargetActionsSearcher.m; path = Src/Main/Server/Others/LKS_GestureTargetActionsSearcher.m; sourceTree = ""; }; - BE17739673354E3051FF9B2B5648AE3D /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; - BEF325B26EF1879E855022CAD391AB9E /* SDWebImage-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "SDWebImage-umbrella.h"; sourceTree = ""; }; - C04C1BA525AC602FB2900B0D54AA5E17 /* SDInternalMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDInternalMacros.h; path = SDWebImage/Private/SDInternalMacros.h; sourceTree = ""; }; - C0567853C23ACC665751D3D0565F56E9 /* LKS_HierarchyDisplayItemsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_HierarchyDisplayItemsMaker.m; path = Src/Main/Server/Others/LKS_HierarchyDisplayItemsMaker.m; sourceTree = ""; }; - C0F07273ADA871BC090DF5208E1A0A56 /* LKS_TraceManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_TraceManager.h; path = Src/Main/Server/Others/LKS_TraceManager.h; sourceTree = ""; }; - C114A030757EE97557D452200311EF89 /* NSString+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+MJExtension.h"; path = "MJExtension/NSString+MJExtension.h"; sourceTree = ""; }; - C16CD4771AC1AE19C30DA0554197E098 /* AFCompatibilityMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFCompatibilityMacros.h; path = AFNetworking/AFCompatibilityMacros.h; sourceTree = ""; }; - C1BB2EFDABE054828FBB855E8739D9CC /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = ""; }; - C23A462C9913623F9C8FDF5460E9339B /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; - C2CA9F3DD9E40BF1773B91B7D4717148 /* UITextField+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+LookinServer.h"; path = "Src/Main/Server/Category/UITextField+LookinServer.h"; sourceTree = ""; }; - C35100C0E46C0C87F84142EC25DA42AE /* SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SDWebImage-Info.plist"; sourceTree = ""; }; - C374DDB72EF0FA5F39669EAF0A38783D /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = ""; }; - C424A765318BDFE6E50286A28719DBEB /* LookinAppInfo.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAppInfo.m; path = Src/Main/Shared/LookinAppInfo.m; sourceTree = ""; }; - C50DECAF244FB1921DE30DDDE816977E /* MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MBProgressHUD-dummy.m"; sourceTree = ""; }; - C5A0079AD1384A00B3C24449EBDF5C38 /* AFImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFImageDownloader.h; path = "UIKit+AFNetworking/AFImageDownloader.h"; sourceTree = ""; }; - C5A4E96A2BBFE25E97A8B39DDA0DEFDE /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; - C610AA6DA97A6D2E48F1FD51BCBCE402 /* SDImageFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFrame.m; path = SDWebImage/Core/SDImageFrame.m; sourceTree = ""; }; - C6C9DF18C184F28FB0938F14DCD812A8 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = ""; }; - C7503F25F63DE06145BA76F86802DC2A /* UIView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+LookinServer.m"; path = "Src/Main/Server/Category/UIView+LookinServer.m"; sourceTree = ""; }; - C7AB4A8B7215D7A581244E9E1D5AC691 /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; - C7CFF612DDC54A09FE6D13A592AF845D /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = ""; }; - C8B5618982E2E6168138CE3FFF075755 /* SDDeviceHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDDeviceHelper.h; path = SDWebImage/Private/SDDeviceHelper.h; sourceTree = ""; }; - C91A63C5E15A4287E5CB7661D503D5FD /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/Core/SDWebImageOperation.h; sourceTree = ""; }; - C9506AC016900FA4BD34901C6E6B085F /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; - C964990B4A1F0976B9050A880326A124 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + B125695DDC9E0DF8EFE153F258E5D694 /* UIVisualEffectView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIVisualEffectView+LookinServer.m"; path = "Src/Main/Server/Category/UIVisualEffectView+LookinServer.m"; sourceTree = ""; }; + B182B3E60EEE24101ACBF7E65C720188 /* SDImageCoderHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoderHelper.h; path = SDWebImage/Core/SDImageCoderHelper.h; sourceTree = ""; }; + B1E73B5A048EDD0FDD4241A1F25B8855 /* LKS_CustomAttrSetterManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrSetterManager.m; path = Src/Main/Server/Others/LKS_CustomAttrSetterManager.m; sourceTree = ""; }; + B1E7E8CFAA197C7C0BF2C42C37130BCB /* LookinObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinObject.m; path = Src/Main/Shared/LookinObject.m; sourceTree = ""; }; + B21761496F33518D23B97656291A6607 /* NSImage+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSImage+Compatibility.h"; path = "SDWebImage/Core/NSImage+Compatibility.h"; sourceTree = ""; }; + B28696504959A346484C443F7CF0DF36 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; + B2C87A078A4644772F44DBC7B62345EC /* SDmetamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDmetamacros.h; path = SDWebImage/Private/SDmetamacros.h; sourceTree = ""; }; + B594CE211EC2EBBB46AE9061BA79FFE6 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/Core/SDWebImagePrefetcher.h; sourceTree = ""; }; + B5DA2CA36DA7D968C2C56E6344B95BF2 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; + B5FB13EC3013463693C1FE028FCC5765 /* SDImageHEICCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageHEICCoder.m; path = SDWebImage/Core/SDImageHEICCoder.m; sourceTree = ""; }; + B61A26D0A3DC024CA47B55CE46FB709A /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; sourceTree = ""; }; + B6C3ACC95CD8C2F4D6BF4166F31DCA37 /* LookinAttributesSection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAttributesSection.m; path = Src/Main/Shared/LookinAttributesSection.m; sourceTree = ""; }; + B70BC0B4EF67B545E3F3CDF82AFA33A9 /* Masonry.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.release.xcconfig; sourceTree = ""; }; + B739A52251D68282C5B0263B144232C8 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; + B7EBC5B0B8BDA3D8746BA9B3E6E55DEA /* MJRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJRefresh-Info.plist"; sourceTree = ""; }; + B83807191AF81B917219AC57AD7C4DA6 /* SDImageCacheDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCacheDefine.h; path = SDWebImage/Core/SDImageCacheDefine.h; sourceTree = ""; }; + B83B6D7BEE9D6ED7612ED74D0D652266 /* LookinServerDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinServerDefines.h; path = Src/Main/Server/Others/LookinServerDefines.h; sourceTree = ""; }; + B8EBE510DE0EABD7D6FE8B5C1BECDA69 /* LookinServer-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "LookinServer-dummy.m"; sourceTree = ""; }; + B992A3B139CAB05FADF1BC0D5F741D58 /* UIImageView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+LookinServer.h"; path = "Src/Main/Server/Category/UIImageView+LookinServer.h"; sourceTree = ""; }; + B9B834072B4E8991D6DF85D46E52487D /* SDFileAttributeHelper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDFileAttributeHelper.h; path = SDWebImage/Private/SDFileAttributeHelper.h; sourceTree = ""; }; + B9CF85044BA30E5F6D12B9CFCDC520EF /* ResourceBundle-MJExtension-MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJExtension-MJExtension-Info.plist"; sourceTree = ""; }; + BA6DA15455885EB86F27D5BA1D768667 /* SDWebImageDownloaderResponseModifier.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderResponseModifier.h; path = SDWebImage/Core/SDWebImageDownloaderResponseModifier.h; sourceTree = ""; }; + BAD33734FD4C0B734EF00D7400AE8272 /* UIView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCache.m"; path = "SDWebImage/Core/UIView+WebCache.m"; sourceTree = ""; }; + BAF9D7C94DBF5CE39657FF3E402B3CA6 /* LookinTuple.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinTuple.m; path = Src/Main/Shared/LookinTuple.m; sourceTree = ""; }; + BC6ED468239C99385B53135629A117EE /* SDMemoryCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDMemoryCache.h; path = SDWebImage/Core/SDMemoryCache.h; sourceTree = ""; }; + BC7945E933EE63600C092AB79AA72C2F /* LookinIvarTrace.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinIvarTrace.h; path = Src/Base/LookinIvarTrace.h; sourceTree = ""; }; + BD70E1598C80ECB7F3F7138210C8D582 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/Core/NSData+ImageContentType.h"; sourceTree = ""; }; + BE5FCC9A2FCD1DFC712F74F0116FDFC1 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; + BEDE4F5BCE15B6716233B116E1EA5B53 /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; + BFC51409E4245F194CB1F20A817E7A98 /* UIView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+LookinServer.h"; path = "Src/Main/Server/Category/UIView+LookinServer.h"; sourceTree = ""; }; + C12CBD1B642F949D5B66893FC8011182 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; + C274CB4B91DDEA7F11C22815CBFF0ABF /* UITextField+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextField+LookinServer.h"; path = "Src/Main/Server/Category/UITextField+LookinServer.h"; sourceTree = ""; }; + C325955B3AFF388601028CCBA8FE7A81 /* Bugly.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Bugly.debug.xcconfig; sourceTree = ""; }; + C3B203F771AA87178F1C9A34BB480552 /* SDWebImageOptionsProcessor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOptionsProcessor.h; path = SDWebImage/Core/SDWebImageOptionsProcessor.h; sourceTree = ""; }; + C48E3A880F57BDDE05010EB0D4A8AC98 /* MASCompositeConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASCompositeConstraint.h; path = Masonry/MASCompositeConstraint.h; sourceTree = ""; }; + C4D4BDA60F8EAD19D0AB0DE4918123FD /* SDImageIOAnimatedCoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageIOAnimatedCoder.m; path = SDWebImage/Core/SDImageIOAnimatedCoder.m; sourceTree = ""; }; + C4EA0EBE2010F2B34CCB87C3B956CA5B /* LookinAttrIdentifiers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttrIdentifiers.h; path = Src/Main/Shared/LookinAttrIdentifiers.h; sourceTree = ""; }; + C4EC5042E6E856B691A7D1939E4C0753 /* UIImage+ForceDecode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ForceDecode.h"; path = "SDWebImage/Core/UIImage+ForceDecode.h"; sourceTree = ""; }; + C520414155B00A7A86D45345840BC9E2 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; + C522E5668D772C9DC22DA4CAA24CE6F2 /* LKS_CustomDisplayItemsMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomDisplayItemsMaker.m; path = Src/Main/Server/Others/LKS_CustomDisplayItemsMaker.m; sourceTree = ""; }; + C5351B227792D11EE48FFB201DCB8F62 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/Core/SDWebImageManager.h; sourceTree = ""; }; + C56C8AAE9E964BC086AC1E10B34FCA6B /* SDWebImage.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = SDWebImage.release.xcconfig; sourceTree = ""; }; + C581D8467C52B560DDC86FF5686243FE /* UIScrollView+EmptyDataSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+EmptyDataSet.h"; path = "Source/UIScrollView+EmptyDataSet.h"; sourceTree = ""; }; + C65F428EF2EB399205D56B2678DEB70B /* Image+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Image+Lookin.m"; path = "Src/Main/Shared/Category/Image+Lookin.m"; sourceTree = ""; }; + C65FA825F301900A712EE6A07A0AB5B1 /* SDAnimatedImage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImage.m; path = SDWebImage/Core/SDAnimatedImage.m; sourceTree = ""; }; + C6B97DA512208D26D2EA27D401075552 /* LookinAttributesSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributesSection.h; path = Src/Main/Shared/LookinAttributesSection.h; sourceTree = ""; }; + C789EE7A2AE246689BE0868C0239B180 /* Lookin_PTPrivate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Lookin_PTPrivate.h; path = Src/Main/Shared/Peertalk/Lookin_PTPrivate.h; sourceTree = ""; }; + C7C619E07B590F50371F76FB727BCBBF /* MJRefresh.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.release.xcconfig; sourceTree = ""; }; + C7C7F277C8370C6DFFE4A1307C33E71F /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SDWebImage-SDWebImage-Info.plist"; sourceTree = ""; }; + C7F930C89751DC04A3487A6BD11481AF /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; + C844C45B584819E36A3D764C2F521E40 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = ""; }; + C84A5312A8825A5EDA96EC527A7E4D7A /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; + C9ADB03572CC33002F4B5FFF7D234C78 /* NSLayoutConstraint+MASDebugAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSLayoutConstraint+MASDebugAdditions.h"; path = "Masonry/NSLayoutConstraint+MASDebugAdditions.h"; sourceTree = ""; }; + C9C23FA770CA0E788C0254420531BFF5 /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; includeInIndex = 1; name = PrivacyInfo.xcprivacy; path = MJExtension/PrivacyInfo.xcprivacy; sourceTree = ""; }; + C9C3D294F4C1669BA23B7FE3B453C896 /* Lookin_PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTUSBHub.m; path = Src/Main/Shared/Peertalk/Lookin_PTUSBHub.m; sourceTree = ""; }; + CA4C646F4B9828AEC54F0BAF1F42E31C /* SDAnimatedImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "SDAnimatedImageView+WebCache.m"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.m"; sourceTree = ""; }; + CA5F508E08543C1BBB3B6324A70972FE /* NSObject+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+Lookin.m"; path = "Src/Main/Shared/Category/NSObject+Lookin.m"; sourceTree = ""; }; + CA68BDE3BA6D63E08981C6B1D30D6285 /* SDAnimatedImagePlayer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAnimatedImagePlayer.m; path = SDWebImage/Core/SDAnimatedImagePlayer.m; sourceTree = ""; }; + CA68C45DD07F0A027BE9C64B74B3A796 /* LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinServer.h; path = Src/Main/Server/LookinServer.h; sourceTree = ""; }; + CABBE3AF9707023BE08354200794C5F5 /* DZNEmptyDataSet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = DZNEmptyDataSet.debug.xcconfig; sourceTree = ""; }; + CAC9B29760199C16C058439C456A1C20 /* NSObject+MJKeyValue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJKeyValue.h"; path = "MJExtension/NSObject+MJKeyValue.h"; sourceTree = ""; }; CAD1D653361EAFCC0E4FFD8252FC1E74 /* Pods-CustomKeyboard.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-CustomKeyboard.modulemap"; sourceTree = ""; }; - CAD9935E88574CA5324720A1449DA69B /* MJRefresh.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.debug.xcconfig; sourceTree = ""; }; - CB27BB6250699AEC351AC4AE7A9B8003 /* AFNetworking.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.release.xcconfig; sourceTree = ""; }; - CBBC71D8C791CE3C3C1A8F23DAC6AFE9 /* MASCompositeConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASCompositeConstraint.m; path = Masonry/MASCompositeConstraint.m; sourceTree = ""; }; - CBD3AE73EB188B66AA675A72083BBE9B /* LookinAttrType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttrType.h; path = Src/Main/Shared/LookinAttrType.h; sourceTree = ""; }; - CBD909DEA48A3B96235A539DACD1CBCF /* MASConstraintMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASConstraintMaker.h; path = Masonry/MASConstraintMaker.h; sourceTree = ""; }; - CC9B571A19A9F5D7225598AC30AF7E0D /* Image+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Image+Lookin.h"; path = "Src/Main/Shared/Category/Image+Lookin.h"; sourceTree = ""; }; - CCB18519B12BDA459AD1CE0FE55C5930 /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = ""; }; - CDF5A49B2F9F5D09CEE400AE059E91A3 /* UIImage+MemoryCacheCost.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MemoryCacheCost.h"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.h"; sourceTree = ""; }; - CE25ED6CF9670E7896E51158F52BA589 /* LookinHierarchyFile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinHierarchyFile.h; path = Src/Main/Shared/LookinHierarchyFile.h; sourceTree = ""; }; - CE79DA3780BB0C29F2510145FF92018E /* AFAutoPurgingImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFAutoPurgingImageCache.m; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.m"; sourceTree = ""; }; + CB0BCE5C8D38E253E5BE05D5A06E6057 /* MJExtension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJExtension-dummy.m"; sourceTree = ""; }; + CB8089BF92E6AFD435A791B463E0BF0B /* NSObject+MJClass.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJClass.h"; path = "MJExtension/NSObject+MJClass.h"; sourceTree = ""; }; + CC6FBFE5D869224A6CF779369F55BF2E /* SDImageGraphics.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGraphics.h; path = SDWebImage/Core/SDImageGraphics.h; sourceTree = ""; }; + CD15C7D53A74E1885D0FAA59DF7E5B67 /* SDAnimatedImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SDAnimatedImageView+WebCache.h"; path = "SDWebImage/Core/SDAnimatedImageView+WebCache.h"; sourceTree = ""; }; + CD1A784F64F6D1175B41B1E14733EAB8 /* MASLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASLayoutConstraint.m; path = Masonry/MASLayoutConstraint.m; sourceTree = ""; }; + CDBDFF0EFD2E6EA22CB715FFCB21045F /* NSString+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+MJExtension.m"; path = "MJExtension/NSString+MJExtension.m"; sourceTree = ""; }; + CE4B14D8CFD815111A796D5B4933E7DF /* MBProgressHUD-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-umbrella.h"; sourceTree = ""; }; CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "SDWebImage-SDWebImage"; path = SDWebImage.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; - CF54D2B19B7B898F8749626736C6A367 /* LKS_CustomDisplayItemsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomDisplayItemsMaker.h; path = Src/Main/Server/Others/LKS_CustomDisplayItemsMaker.h; sourceTree = ""; }; + CF77C33FF507E05A69D4D97B14A9B16A /* MASViewAttribute.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASViewAttribute.m; path = Masonry/MASViewAttribute.m; sourceTree = ""; }; CFBDDF0554D720E199E1094AAEC3D171 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; }; - CFDA4C2B71620DFED1CDBD7CED538841 /* MJPropertyType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJPropertyType.m; path = MJExtension/MJPropertyType.m; sourceTree = ""; }; - CFDC6BCD4BA0D5546AAA2BDF7F85FD90 /* LookinObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinObject.m; path = Src/Main/Shared/LookinObject.m; sourceTree = ""; }; - D00B3D5C37D2FF57ECB26E0EDE63289A /* LookinEventHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinEventHandler.h; path = Src/Main/Shared/LookinEventHandler.h; sourceTree = ""; }; - D0304D1DA2F09D8CF73F53F3CC671F5D /* SDImageFramePool.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageFramePool.m; path = SDWebImage/Private/SDImageFramePool.m; sourceTree = ""; }; - D0604B822D259AC63DA0DC89535FBEAA /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/Core/UIImageView+WebCache.m"; sourceTree = ""; }; - D08D41D93653505FF8DE6D29F4CCCD4D /* MASUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASUtilities.h; path = Masonry/MASUtilities.h; sourceTree = ""; }; - D125CF8A12AEB902BF171C7549055308 /* LookinAttributesSection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributesSection.h; path = Src/Main/Shared/LookinAttributesSection.h; sourceTree = ""; }; - D20C8C99B2B5B0F72BBB978DF79F7238 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = ""; }; - D2817441B07D3C220B27F50C24F6F974 /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-SDWebImage-SDWebImage-Info.plist"; sourceTree = ""; }; - D28AA8EC2452B881DA6683AA639F5EEC /* SDWebImageDownloaderConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderConfig.h; path = SDWebImage/Core/SDWebImageDownloaderConfig.h; sourceTree = ""; }; - D2CCA2001B6A3A7B486AAE84DF128CD8 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; - D31863C315A1E1CCB62476A749205848 /* Color+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "Color+Lookin.m"; path = "Src/Main/Shared/Category/Color+Lookin.m"; sourceTree = ""; }; - D43725BD43363788D28DDA9B1C38B57C /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - D5928043B7F64DD262C8EA8D39FC4225 /* LookinServer.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = LookinServer.release.xcconfig; sourceTree = ""; }; - D5E19924A2406858AAD1FC46C71332DF /* LookinCustomDisplayItemInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinCustomDisplayItemInfo.h; path = Src/Main/Shared/LookinCustomDisplayItemInfo.h; sourceTree = ""; }; - D611D48BCE9E640C43663E2F13F9745C /* NSObject+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+LookinServer.h"; path = "Src/Main/Server/Category/NSObject+LookinServer.h"; sourceTree = ""; }; - D62DC2DA817A3EDDAAA844C01472ED21 /* CALayer+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+LookinServer.m"; path = "Src/Main/Server/Category/CALayer+LookinServer.m"; sourceTree = ""; }; - D646BA8F519D540CC327EB5212DF98FE /* SDWebImageDownloaderConfig.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderConfig.m; path = SDWebImage/Core/SDWebImageDownloaderConfig.m; sourceTree = ""; }; + D017EA62245DB2555D0FAD9673A02E81 /* UITableView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITableView+LookinServer.h"; path = "Src/Main/Server/Category/UITableView+LookinServer.h"; sourceTree = ""; }; + D05E4DF70402D17DD9ADCB116F461970 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; + D1B6B65526E540D10FB05592FF61055B /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/Core/SDWebImageManager.m; sourceTree = ""; }; + D40CC721080669F5E946CDA95D45E6AA /* LookinHierarchyInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinHierarchyInfo.h; path = Src/Main/Shared/LookinHierarchyInfo.h; sourceTree = ""; }; + D51AEB47029A4618D53132FE177582F7 /* MJProperty.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJProperty.m; path = MJExtension/MJProperty.m; sourceTree = ""; }; + D5958FC9FA930E12B105C99F1D5195EC /* SDImageGIFCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageGIFCoder.h; path = SDWebImage/Core/SDImageGIFCoder.h; sourceTree = ""; }; + D5BF98B0F3C396A5AAE36EAAEF620AA2 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/Core/NSData+ImageContentType.m"; sourceTree = ""; }; + D6377C1BB4346DD791C7EEA53C7AD860 /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = ""; }; + D63CA21D42B13F82104E7452719B6B10 /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; D673941813D9CA4EFFC6C32109054DC5 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; - D6FA0688FC0C3F840F62D0DFCC7646DA /* MJExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJExtension.modulemap; sourceTree = ""; }; + D6A6E0BE0C1C49324E5F6C97552C0AD0 /* MJExtensionConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJExtensionConst.m; path = MJExtension/MJExtensionConst.m; sourceTree = ""; }; + D6FB630B23620961A3E2286292891545 /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; D742A7EF918BC67B0884AF366F7415FD /* Pods-CustomKeyboard-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-CustomKeyboard-acknowledgements.plist"; sourceTree = ""; }; - D744A5DC01907A26FA69952B99FEB476 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; - D7E3C97F6197503336E0C97BCB81F513 /* SDImageLoader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageLoader.m; path = SDWebImage/Core/SDImageLoader.m; sourceTree = ""; }; - D81389FD4C9A4DEF5A2060CF2B2A688E /* LookinAttributesGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinAttributesGroup.h; path = Src/Main/Shared/LookinAttributesGroup.h; sourceTree = ""; }; - D945D7910827E844164E6FC054D435C1 /* SDImageFramePool.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFramePool.h; path = SDWebImage/Private/SDImageFramePool.h; sourceTree = ""; }; - D97B9D67F2DDCD1F09147AB8F5C4758C /* SDWebImageError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageError.m; path = SDWebImage/Core/SDWebImageError.m; sourceTree = ""; }; - D97CF6DE5D7C5DF629751E70D281C245 /* LookinTuple.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinTuple.h; path = Src/Main/Shared/LookinTuple.h; sourceTree = ""; }; - DA1090554ED26050AE6EE7323ED5D003 /* UIColor+SDHexString.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIColor+SDHexString.m"; path = "SDWebImage/Private/UIColor+SDHexString.m"; sourceTree = ""; }; - DA7D29143B5222573E44C89FC5281E16 /* LKS_Helper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_Helper.h; path = Src/Main/Server/Others/LKS_Helper.h; sourceTree = ""; }; - DAA5B7440495141EE8D88A1104CEFA15 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; - DB452AE8652F8980BE53E3B9CBC53C91 /* NSArray+Lookin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+Lookin.m"; path = "Src/Main/Shared/Category/NSArray+Lookin.m"; sourceTree = ""; }; - DB5341B66CDDCE442407CD108DB097D2 /* LKS_ObjectRegistry.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ObjectRegistry.m; path = Src/Main/Server/Others/LKS_ObjectRegistry.m; sourceTree = ""; }; - DB661D651B8F71A7983DAE8D69D98538 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/Core/SDWebImageCompat.m; sourceTree = ""; }; - DB800C9C7BAA818B8D589D490CA92A2C /* MASLayoutConstraint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASLayoutConstraint.h; path = Masonry/MASLayoutConstraint.h; sourceTree = ""; }; - DB83547F40F4A323DF570BC21ACE6B77 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; - DB8380AC1457059FF2EFCA669AF450E6 /* LKS_ObjectRegistry.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ObjectRegistry.h; path = Src/Main/Server/Others/LKS_ObjectRegistry.h; sourceTree = ""; }; - DBBB6ECAAC917B783A2F4E267ED926C9 /* ResourceBundle-MJExtension-MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-MJExtension-MJExtension-Info.plist"; sourceTree = ""; }; + D7563FAD3C56142ED9787F2622AD43A6 /* MJPropertyType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJPropertyType.h; path = MJExtension/MJPropertyType.h; sourceTree = ""; }; + D823F8C60A9B1B611CA262E283132F8C /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; + D8B602E532921F3CEC80251B9195BC68 /* SDAssociatedObject.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDAssociatedObject.m; path = SDWebImage/Private/SDAssociatedObject.m; sourceTree = ""; }; + DA0A5CEDC9D5D0BEF1AC9E46BAE3F913 /* Masonry-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-umbrella.h"; sourceTree = ""; }; + DA52C7A4F18F8506C0F1D691E9E01A30 /* UIImage+MemoryCacheCost.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MemoryCacheCost.m"; path = "SDWebImage/Core/UIImage+MemoryCacheCost.m"; sourceTree = ""; }; + DB5651527386CD1B3A287B9A086C09DB /* LKS_AttrGroupsMaker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_AttrGroupsMaker.h; path = Src/Main/Server/Others/LKS_AttrGroupsMaker.h; sourceTree = ""; }; + DBE7D39357854460EB99868FD5AAC9EF /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = ""; }; + DC220029E7EA58B85077D4BC7D315684 /* SDWebImage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImage.h; path = WebImage/SDWebImage.h; sourceTree = ""; }; DCA062FD08AC9694D8D781B3492421C5 /* Pods-keyBoard */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = "Pods-keyBoard"; path = Pods_keyBoard.framework; sourceTree = BUILT_PRODUCTS_DIR; }; DCFE00F3CC8CED67258D7F7DD13F3156 /* Pods-keyBoard-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-keyBoard-frameworks.sh"; sourceTree = ""; }; - DDC2763C6CEDD665D5F37D09FCA38DB4 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = ""; }; - DED53EADD673E8344ADE4F29E65B05EA /* LKSConfigManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKSConfigManager.m; path = Src/Main/Server/Others/LKSConfigManager.m; sourceTree = ""; }; - DF1BC24E0079201F335D0A854F1B6FE4 /* UIImage+Metadata.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+Metadata.m"; path = "SDWebImage/Core/UIImage+Metadata.m"; sourceTree = ""; }; - DF49970205D35F073CC42822E0CA7373 /* NSSet+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSSet+Lookin.h"; path = "Src/Main/Shared/Category/NSSet+Lookin.h"; sourceTree = ""; }; - DFB61356879F3B6C9F0885ADF0835717 /* LKS_InbuiltAttrModificationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_InbuiltAttrModificationHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_InbuiltAttrModificationHandler.m; sourceTree = ""; }; - E0E3D3DA571434BBC5A9F09E51EDECAA /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = ""; }; + DD9DB7D1CE1349CBA5372D8013111FF6 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = ""; }; + DDA65AB52698FA7F4D725EFD40DF70AD /* SDInternalMacros.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDInternalMacros.m; path = SDWebImage/Private/SDInternalMacros.m; sourceTree = ""; }; + DDC34B8EC4E6ADC2CC996545B2BFF331 /* Masonry-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Masonry-dummy.m"; sourceTree = ""; }; + DEE996B16E66B7AD8A0773D32F2F31BA /* LKS_MultiplatformAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_MultiplatformAdapter.m; path = Src/Main/Server/Others/LKS_MultiplatformAdapter.m; sourceTree = ""; }; + DF220AEF1D1A112AD307949F3E50EC2F /* SDWebImageDefine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDefine.m; path = SDWebImage/Core/SDWebImageDefine.m; sourceTree = ""; }; + DF83BC41ED5AC7E86AD951D501C02E07 /* LKS_AttrModificationPatchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_AttrModificationPatchHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_AttrModificationPatchHandler.h; sourceTree = ""; }; + E06AD632286B35CFD22D01BA0C8B9754 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/Core/SDImageCache.h; sourceTree = ""; }; + E078A35C8C5C67200A5D1AABCD488AB4 /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSBundle+MJRefresh.m"; path = "MJRefresh/NSBundle+MJRefresh.m"; sourceTree = ""; }; + E0DDB0E6F887AAC6BF976DF87B60E090 /* SDImageLoader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageLoader.h; path = SDWebImage/Core/SDImageLoader.h; sourceTree = ""; }; + E0F6E7A35B68518F11C7EE5462DC536B /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = ""; }; + E11DACE38891E0B635F5298726C94072 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; E1DF8BF780A4AD9606856AB857CA1D86 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; }; E214C17CF404D45BDF92DD6C18D371FA /* Pods-keyBoard-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-keyBoard-acknowledgements.markdown"; sourceTree = ""; }; - E217A87E8CD14395B6915FEAEEDD5664 /* LKS_InbuiltAttrModificationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_InbuiltAttrModificationHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_InbuiltAttrModificationHandler.h; sourceTree = ""; }; - E27A57D106BA1F686D1F1EF61BCCECCA /* LookinStaticAsyncUpdateTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinStaticAsyncUpdateTask.m; path = Src/Main/Shared/LookinStaticAsyncUpdateTask.m; sourceTree = ""; }; - E35D44D16336D423E16E7BE4C321AF84 /* MJExtensionConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJExtensionConst.m; path = MJExtension/MJExtensionConst.m; sourceTree = ""; }; - E38E6DC0F4056572F28EA74749D1B5CA /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; - E3E02CEAD88FD72568C167BA8624966F /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = ""; }; - E40CD592C9415041502E624ED9EE559B /* UIViewController+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+LookinServer.m"; path = "Src/Main/Server/Category/UIViewController+LookinServer.m"; sourceTree = ""; }; - E478749AD5CB3263249FAC4E3C660C25 /* NSArray+MASShorthandAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MASShorthandAdditions.h"; path = "Masonry/NSArray+MASShorthandAdditions.h"; sourceTree = ""; }; - E489FC1095A0FA5D667A84B7D29E8B25 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = ""; }; + E21D12C0A6AD0F454CAACC57B408FA61 /* UIViewController+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIViewController+LookinServer.h"; path = "Src/Main/Server/Category/UIViewController+LookinServer.h"; sourceTree = ""; }; + E2740E6113B346B5F92C5A0C756FECD7 /* UIImage+ExtendedCacheData.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ExtendedCacheData.m"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.m"; sourceTree = ""; }; + E29E950866832E74B4884925ADAE92C0 /* LookinServer-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "LookinServer-prefix.pch"; sourceTree = ""; }; + E2D0D25D26815B60A5D95E65A0F65076 /* SDWebImageCacheKeyFilter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCacheKeyFilter.m; path = SDWebImage/Core/SDWebImageCacheKeyFilter.m; sourceTree = ""; }; + E37FF5DA81F2ACDA55A6A061BBD6A251 /* LKS_ConnectionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ConnectionManager.h; path = Src/Main/Server/Connection/LKS_ConnectionManager.h; sourceTree = ""; }; + E48F6B958C7773FD74BEC8EDFAADCF29 /* LookinDefines.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDefines.h; path = Src/Main/Shared/LookinDefines.h; sourceTree = ""; }; E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; name = MJRefresh; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - E5ED257CB265A92F530622C382919194 /* NSObject+MJCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJCoding.m"; path = "MJExtension/NSObject+MJCoding.m"; sourceTree = ""; }; - E6056659A998527E6442283401F73F8C /* SDWebImageOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOperation.m; path = SDWebImage/Core/SDWebImageOperation.m; sourceTree = ""; }; - E607C82BF99994CACC0E78311762BD7B /* Lookin_PTUSBHub.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTUSBHub.m; path = Src/Main/Shared/Peertalk/Lookin_PTUSBHub.m; sourceTree = ""; }; - E72595738B0C7B9E4F6E5B90FFBAE3CB /* SDAnimatedImageRep.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAnimatedImageRep.h; path = SDWebImage/Core/SDAnimatedImageRep.h; sourceTree = ""; }; - E79E77EA4ADCC4C4216A6BF6C02097D9 /* LookinServer-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "LookinServer-Info.plist"; sourceTree = ""; }; - E8A65712E6880670F20B30D103373842 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJRefresh.modulemap; sourceTree = ""; }; - E919EBA36C3E6D227E73B54E38BF26ED /* CALayer+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "CALayer+LookinServer.h"; path = "Src/Main/Server/Category/CALayer+LookinServer.h"; sourceTree = ""; }; - ECF7539516B56EB3E414596115FA4C28 /* UILabel+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UILabel+LookinServer.h"; path = "Src/Main/Server/Category/UILabel+LookinServer.h"; sourceTree = ""; }; - ED01F14532B4FDCE539BE00A8D3C2638 /* UIImageView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+LookinServer.m"; path = "Src/Main/Server/Category/UIImageView+LookinServer.m"; sourceTree = ""; }; - ED818AE88698B4DC24D187EB6F01F30E /* SDMemoryCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDMemoryCache.m; path = SDWebImage/Core/SDMemoryCache.m; sourceTree = ""; }; - EDFDA31DC51830774328969AB1B612D1 /* UITextView+LookinServer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UITextView+LookinServer.h"; path = "Src/Main/Server/Category/UITextView+LookinServer.h"; sourceTree = ""; }; - EF160706DC6937D3D67236093EED5E10 /* SDImageAPNGCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageAPNGCoder.h; path = SDWebImage/Core/SDImageAPNGCoder.h; sourceTree = ""; }; - EF575EE074BFD200BBAD5F505F912C89 /* AFNetworking-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AFNetworking-Info.plist"; sourceTree = ""; }; - EF67AC364BC14CA9F81DB3F6A009E9A5 /* MJRefreshStateTrailer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateTrailer.m; path = MJRefresh/Custom/Trailer/MJRefreshStateTrailer.m; sourceTree = ""; }; - EF6AC4469928F723BD5B06DB64B9961F /* SDWebImageOptionsProcessor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageOptionsProcessor.m; path = SDWebImage/Core/SDWebImageOptionsProcessor.m; sourceTree = ""; }; - EFA437ED007B641FA2C2EB6A9D241B8F /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; - F023B284B56FE09E86CC5E2AB85F76DC /* SDGraphicsImageRenderer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDGraphicsImageRenderer.m; path = SDWebImage/Core/SDGraphicsImageRenderer.m; sourceTree = ""; }; - F0B56433CB2985F7A9FBA1AECC88A15F /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = ""; }; - F1928DBA0FA8888380187043654350EC /* SDAssociatedObject.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDAssociatedObject.h; path = SDWebImage/Private/SDAssociatedObject.h; sourceTree = ""; }; - F226B2CC207D85EB9F275E3909ECFE28 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; - F2954D34317333F8ACD76FEBDA3875D6 /* MJExtension-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJExtension-prefix.pch"; sourceTree = ""; }; - F35FA64D7BA93E67E700BB9CFECA2FE6 /* Lookin_PTProtocol.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTProtocol.m; path = Src/Main/Shared/Peertalk/Lookin_PTProtocol.m; sourceTree = ""; }; - F3EE4F79EB9430C5D53E0A47FA9BC09F /* LookinDisplayItemDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDisplayItemDetail.h; path = Src/Main/Shared/LookinDisplayItemDetail.h; sourceTree = ""; }; - F4C95CB4A01746A9AE18561AF61B9C56 /* MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJExtension.h; path = MJExtension/MJExtension.h; sourceTree = ""; }; - F5541E7500F1219F86E653EDC63EB34B /* SDWebImageDefine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDefine.h; path = SDWebImage/Core/SDWebImageDefine.h; sourceTree = ""; }; - F613D680436DA336652ED3BAEB369437 /* Lookin_PTChannel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = Lookin_PTChannel.m; path = Src/Main/Shared/Peertalk/Lookin_PTChannel.m; sourceTree = ""; }; - F648120AC9E33EAE58AA5B953C9CDB2C /* LKS_ExportManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_ExportManager.h; path = Src/Main/Server/Others/LKS_ExportManager.h; sourceTree = ""; }; - F672E8709EE8033AF31A696FDFBDC7AA /* LookinAutoLayoutConstraint.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinAutoLayoutConstraint.m; path = Src/Main/Shared/LookinAutoLayoutConstraint.m; sourceTree = ""; }; - F73AA51EEC37F9E05CE430B26CA12F28 /* SDImageTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageTransformer.h; path = SDWebImage/Core/SDImageTransformer.h; sourceTree = ""; }; - F74831DF4A214A9B37FB53108A8F46D7 /* Masonry.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Masonry.debug.xcconfig; sourceTree = ""; }; - F792F5861B1266F441753C363FFF2235 /* NSString+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+MJExtension.m"; path = "MJExtension/NSString+MJExtension.m"; sourceTree = ""; }; - FAAA120B05EADE7C41D993D48251FF01 /* LKS_ExportManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_ExportManager.m; path = Src/Main/Server/Others/LKS_ExportManager.m; sourceTree = ""; }; - FDAE70C6181A394F04CAA424A58045CA /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/Core/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - FE02A0D85853FC5650E64297AAD9AC2D /* NSArray+Lookin.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+Lookin.h"; path = "Src/Main/Shared/Category/NSArray+Lookin.h"; sourceTree = ""; }; - FF31450F87E6146991BF9BBEAEEE285A /* MJFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJFoundation.m; path = MJExtension/MJFoundation.m; sourceTree = ""; }; - FFD18411CB9BDDA27CCEFF66CCE60510 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = ""; }; + E52CB395AB5C0A69F5694C7CC12B88EB /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; + E577238B855764201EED8E4C35720A32 /* SDImageFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageFrame.h; path = SDWebImage/Core/SDImageFrame.h; sourceTree = ""; }; + E61DDA9F23188515F3DA0789831A6C8D /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = ""; }; + E68C14C984EA28456AD25B437BFFD513 /* MJRefreshNormalTrailer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalTrailer.h; path = MJRefresh/Custom/Trailer/MJRefreshNormalTrailer.h; sourceTree = ""; }; + E698A617BF04E3C18EC0826D774FBF19 /* NSArray+MASAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MASAdditions.m"; path = "Masonry/NSArray+MASAdditions.m"; sourceTree = ""; }; + E6E2B65A09B0300AD2B9BFCB786F9858 /* CALayer+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "CALayer+LookinServer.m"; path = "Src/Main/Server/Category/CALayer+LookinServer.m"; sourceTree = ""; }; + E7E3E5022BAECE5B36C5DCA354B9F19A /* AFNetworking.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AFNetworking.debug.xcconfig; sourceTree = ""; }; + E8041A2BC68C7B4F2A59709C17BFF313 /* LKS_AttrModificationPatchHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_AttrModificationPatchHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_AttrModificationPatchHandler.m; sourceTree = ""; }; + E945EE8B2F5AA809194A0E7B50374ACD /* MASConstraintMaker.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MASConstraintMaker.m; path = Masonry/MASConstraintMaker.m; sourceTree = ""; }; + EBE15864632F44FC081BE4046348388E /* LookinDashboardBlueprint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LookinDashboardBlueprint.h; path = Src/Main/Shared/LookinDashboardBlueprint.h; sourceTree = ""; }; + EBF242B27782A449435704666A43D511 /* UIImage+Metadata.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+Metadata.h"; path = "SDWebImage/Core/UIImage+Metadata.h"; sourceTree = ""; }; + EC6923DD235A7C9D06781B67EB685D62 /* LKS_CustomAttrSetterManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrSetterManager.h; path = Src/Main/Server/Others/LKS_CustomAttrSetterManager.h; sourceTree = ""; }; + ECF182241E8B4A47F383BD4694F6B842 /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/Core/SDWebImageCompat.h; sourceTree = ""; }; + EE7D8454125C1BA42337678F1EE28A18 /* LookinDisplayItemDetail.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LookinDisplayItemDetail.m; path = Src/Main/Shared/LookinDisplayItemDetail.m; sourceTree = ""; }; + EF402EFC14985321E0CDC165246B34CF /* AFImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFImageDownloader.h; path = "UIKit+AFNetworking/AFImageDownloader.h"; sourceTree = ""; }; + EF893DE4CF2A94E640065B64F0E50BE3 /* SDWebImage-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "SDWebImage-Info.plist"; sourceTree = ""; }; + EFBF49E26074430C7AF89A5CF1BF57DA /* MJExtension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJExtension.debug.xcconfig; sourceTree = ""; }; + F00E6E13FB910ADD714E5C17A5F927DE /* AFAutoPurgingImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFAutoPurgingImageCache.m; path = "UIKit+AFNetworking/AFAutoPurgingImageCache.m"; sourceTree = ""; }; + F03B20F6D37CC749251AB5CCC78D72C1 /* UIImage+ExtendedCacheData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+ExtendedCacheData.h"; path = "SDWebImage/Core/UIImage+ExtendedCacheData.h"; sourceTree = ""; }; + F0F36190D25CB0748E22A3B4602A5A1A /* MJExtension.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = MJExtension.modulemap; sourceTree = ""; }; + F1D52AC31D1CC317C4D273E89DB2576A /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; + F2228171E0DFE963C630494854128C45 /* SDImageCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCoder.h; path = SDWebImage/Core/SDImageCoder.h; sourceTree = ""; }; + F4BDFF05D6007AE01569C5F666CDD78A /* LKS_InbuiltAttrModificationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_InbuiltAttrModificationHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_InbuiltAttrModificationHandler.h; sourceTree = ""; }; + F5DA56584ECBB23502B1EA4E691C1F3B /* UITableView+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UITableView+LookinServer.m"; path = "Src/Main/Server/Category/UITableView+LookinServer.m"; sourceTree = ""; }; + F75110BA005FF2D9FD13D42316A9EB38 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = ""; }; + F77AA7D657B21209BD6971573D0F5CBE /* SDImageIOAnimatedCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageIOAnimatedCoder.h; path = SDWebImage/Core/SDImageIOAnimatedCoder.h; sourceTree = ""; }; + F81EADB3DC16D96C6357C26DAF50097C /* NSObject+MJProperty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MJProperty.h"; path = "MJExtension/NSObject+MJProperty.h"; sourceTree = ""; }; + F9BBEB1EC2D93C4F1310CC77156259A6 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = ""; }; + F9C3C32C438415F99D09E04FB1FB4C8B /* MJRefreshConfig.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConfig.h; path = MJRefresh/MJRefreshConfig.h; sourceTree = ""; }; + F9CAF9E3448E2AFAF480F1123C383BFC /* MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MBProgressHUD-prefix.pch"; sourceTree = ""; }; + FA24E3EA4DBC7810C1D0683160F1E19E /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/Core/UIImage+MultiFormat.h"; sourceTree = ""; }; + FB570173299BA0981C64C4954AE0BF7D /* AFNetworking-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AFNetworking-umbrella.h"; sourceTree = ""; }; + FC9B7374A387D325D02D3DD73E0D91C3 /* UIBlurEffect+LookinServer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIBlurEffect+LookinServer.m"; path = "Src/Main/Server/Category/UIBlurEffect+LookinServer.m"; sourceTree = ""; }; + FCA48C312CFE8C30E149C43CE18A7434 /* SDWebImageDownloaderDecryptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderDecryptor.h; path = SDWebImage/Core/SDWebImageDownloaderDecryptor.h; sourceTree = ""; }; + FCFC8A85C8C4A8EB482780063B96293A /* LKS_CustomAttrModificationHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = LKS_CustomAttrModificationHandler.h; path = Src/Main/Server/Connection/RequestHandler/LKS_CustomAttrModificationHandler.h; sourceTree = ""; }; + FD619A8C6AE1530EBE78720CF5B6E070 /* MASViewAttribute.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MASViewAttribute.h; path = Masonry/MASViewAttribute.h; sourceTree = ""; }; + FE248F84E44C5B5F706999B2B26E5DDD /* SDGraphicsImageRenderer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDGraphicsImageRenderer.h; path = SDWebImage/Core/SDGraphicsImageRenderer.h; sourceTree = ""; }; + FE3C7C3690E919A8D633DF3D149E1843 /* MJExtension-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "MJExtension-Info.plist"; sourceTree = ""; }; + FED8482A1E664B93AE5F220A72D50768 /* Masonry-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Masonry-prefix.pch"; sourceTree = ""; }; + FEE54F6A77D059F4D9256A8E7808AB52 /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; + FEFC28F9A0574086775CB86715006A47 /* NSObject+MJKeyValue.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MJKeyValue.m"; path = "MJExtension/NSObject+MJKeyValue.m"; sourceTree = ""; }; + FF2AB48D9E764BD132973F1C10BEAA95 /* LKS_CustomAttrModificationHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = LKS_CustomAttrModificationHandler.m; path = Src/Main/Server/Connection/RequestHandler/LKS_CustomAttrModificationHandler.m; sourceTree = ""; }; + FF3B3BE9F3C8478F745F8BBD3F205E3E /* SDImageHEICCoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageHEICCoder.h; path = SDWebImage/Core/SDImageHEICCoder.h; sourceTree = ""; }; + FF52F5016FBF42C07160178A3CBEDC23 /* UIView+WebCacheState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheState.m"; path = "SDWebImage/Core/UIView+WebCacheState.m"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 0424E87A11A8E4EBD399FEA6A297197C /* Frameworks */ = { + 0DE7FCDD6C04EC4E1E9ECB00A0604FB7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1116,19 +1146,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 1F61AA45E7219C84C2853AF8F1AADBA8 /* Frameworks */ = { + 2AC4E7049CB0D7716240B64E67613023 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 40D19B11020CDE75AD4E16F5BE658A76 /* Foundation.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 23E3E837092AD90A0790587F089C0CF2 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - D4010DA3F272FB62BE724A54BEA43027 /* Foundation.framework in Frameworks */, + 111F1837D2B8716CC02E36A8114826AC /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -1149,14 +1171,7 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 478599896E5167F2379C5A953E54F9C7 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 66287E5BAADE17305495D05E0A0BE045 /* Frameworks */ = { + 68405B5F41E04D755317E63849131904 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -1180,6 +1195,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + A12778F5B92D79BB1CB466B6E7808C73 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; CA6527CF424B1AA12AF1D0BB36EBAF73 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -1190,141 +1212,341 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D04C3487CC66436E0AC1085019C1D36C /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 659D38386A3E09422812283BF27D71D1 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E672724427269716049B769344D7C3DC /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 15B27182B591769C57B55544260DC886 /* Foundation.framework in Frameworks */, + D968461E31E8FF3FF6BA1DC621B0433B /* UIKit.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 1765AD65DCCB3FBD87B53CAE260B6669 /* Support Files */ = { + 0C29DD2AAF850FFB4B287814D8FB4BF4 /* Support Files */ = { isa = PBXGroup; children = ( - 1F57F082A2A89412ADE347EFD7338C94 /* MBProgressHUD.modulemap */, - C50DECAF244FB1921DE30DDDE816977E /* MBProgressHUD-dummy.m */, - 5678C59B322E8B98A4933409BA26AC8F /* MBProgressHUD-Info.plist */, - 00CC52AADF63C52B673099DEC68DAD92 /* MBProgressHUD-prefix.pch */, - 6CBF782E18392DC4731A18BF30BEF739 /* MBProgressHUD-umbrella.h */, - 2BC114A89754B92BAEEE6D803447723E /* MBProgressHUD.debug.xcconfig */, - 09AF8CA8D37D28C4450911083D29A37F /* MBProgressHUD.release.xcconfig */, + F0F36190D25CB0748E22A3B4602A5A1A /* MJExtension.modulemap */, + CB0BCE5C8D38E253E5BE05D5A06E6057 /* MJExtension-dummy.m */, + FE3C7C3690E919A8D633DF3D149E1843 /* MJExtension-Info.plist */, + 02417CA1F44FCE40C23674265029DA2D /* MJExtension-prefix.pch */, + 684C7619F40452AE337105C72D36F7BC /* MJExtension-umbrella.h */, + EFBF49E26074430C7AF89A5CF1BF57DA /* MJExtension.debug.xcconfig */, + 6295DA33C02166E6F30B30876B63CCCC /* MJExtension.release.xcconfig */, + B9CF85044BA30E5F6D12B9CFCDC520EF /* ResourceBundle-MJExtension-MJExtension-Info.plist */, ); name = "Support Files"; - path = "../Target Support Files/MBProgressHUD"; + path = "../Target Support Files/MJExtension"; sourceTree = ""; }; - 1E92B4342C5EE2501834016640DB2FD8 /* Support Files */ = { + 1C8A19406FF58E9BA6BC427CA02E9857 /* Products */ = { isa = PBXGroup; children = ( - D2817441B07D3C220B27F50C24F6F974 /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */, - 62C3CA0C7B7D17D0C0EDC78CF7D2036E /* SDWebImage.modulemap */, - B385EE89FE65CFE426A67B99327A04AE /* SDWebImage-dummy.m */, - C35100C0E46C0C87F84142EC25DA42AE /* SDWebImage-Info.plist */, - 857B74289833FF796A57913896657913 /* SDWebImage-prefix.pch */, - BEF325B26EF1879E855022CAD391AB9E /* SDWebImage-umbrella.h */, - 6541C2A328C1AD7FFA7D2EC681F621D2 /* SDWebImage.debug.xcconfig */, - 92FA6AC0BAD76512878820820517E041 /* SDWebImage.release.xcconfig */, + A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */, + 5DA4577FE3BC4A03751108FFED07B385 /* DZNEmptyDataSet */, + 25664483ABF4DC8EC03E7472AA04333B /* LookinServer */, + 1FFED36A657123030ABB700256D73F15 /* Masonry */, + 8B8FAB0D627B17EDE1366984278705D9 /* MBProgressHUD */, + 2B276B0A79173A1D6E83C9B4FB9A4A57 /* MJExtension */, + 43EAAD2AB7E6B407E80E95F643F93D22 /* MJExtension-MJExtension */, + E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */, + 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */, + 0B4AAC15A428CDC2A62AF9CC27BEA609 /* Pods-CustomKeyboard */, + DCA062FD08AC9694D8D781B3492421C5 /* Pods-keyBoard */, + B0B214D775196BA7CA8E17E53048A493 /* SDWebImage */, + CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */, ); - name = "Support Files"; - path = "../Target Support Files/SDWebImage"; + name = Products; sourceTree = ""; }; - 2755D8392AFF32A00C6458D0127F943C /* MJRefresh */ = { + 210ED1DE58950F1B0648BCAA8D6B2B3A /* MJRefresh */ = { isa = PBXGroup; children = ( - 831263077417DAA4D4D6E8B634304AB7 /* MJRefresh.h */, - C374DDB72EF0FA5F39669EAF0A38783D /* MJRefreshAutoFooter.h */, - C7CFF612DDC54A09FE6D13A592AF845D /* MJRefreshAutoFooter.m */, - 6115270DC722A6D257587BEC55E88D1C /* MJRefreshAutoGifFooter.h */, - 90DBFE3FBA88E6E0D4A601266E1F8C41 /* MJRefreshAutoGifFooter.m */, - B704CBA37ABFB9811890FFDFDB2DCCFD /* MJRefreshAutoNormalFooter.h */, - 9A52CFE44B64DF4387F236C2E7F30BF0 /* MJRefreshAutoNormalFooter.m */, - AFFF3A20A03991DE8FA9843935913BB1 /* MJRefreshAutoStateFooter.h */, - F0B56433CB2985F7A9FBA1AECC88A15F /* MJRefreshAutoStateFooter.m */, - 3CD38CFD933CE53069EE7B243A59D126 /* MJRefreshBackFooter.h */, - 43C4E2CF2FBA7A21E072A97A01D5CB5D /* MJRefreshBackFooter.m */, - 4FF6CBA74F79B343F78AB1FC73566B81 /* MJRefreshBackGifFooter.h */, - 6C9CBA9F980F6337553B07CF7C9A082E /* MJRefreshBackGifFooter.m */, - 9925853CD65033AE45CAE54E062A6427 /* MJRefreshBackNormalFooter.h */, - E489FC1095A0FA5D667A84B7D29E8B25 /* MJRefreshBackNormalFooter.m */, - BE17739673354E3051FF9B2B5648AE3D /* MJRefreshBackStateFooter.h */, - 2A21579F9E54E8D15CE50809C18E9383 /* MJRefreshBackStateFooter.m */, - 0D713A9212D2A554CD1918EB2E27B683 /* MJRefreshComponent.h */, - 391F3C106276CBA54B8BC74E2AD17998 /* MJRefreshComponent.m */, - 489C01D23D1D67A51D3DA138652D2261 /* MJRefreshConfig.h */, - 023087E0F75EB8EF2B7A38CD893A6BA8 /* MJRefreshConfig.m */, - C1BB2EFDABE054828FBB855E8739D9CC /* MJRefreshConst.h */, - 02CD6A22910CB8DFD1FAFFE081E089A7 /* MJRefreshConst.m */, - DAA5B7440495141EE8D88A1104CEFA15 /* MJRefreshFooter.h */, - 663D9E300DA4F769A31AAAABA67EBBA6 /* MJRefreshFooter.m */, - 4E0870B9961AA96F3BECE37A98101C7A /* MJRefreshGifHeader.h */, - 0E3E150DD8AD62EEFACFAABE9513F941 /* MJRefreshGifHeader.m */, - 225890C637C86A2A473503F94CA23C3E /* MJRefreshHeader.h */, - E3E02CEAD88FD72568C167BA8624966F /* MJRefreshHeader.m */, - A7281DF29098EA4B5EC135123990373A /* MJRefreshNormalHeader.h */, - D20C8C99B2B5B0F72BBB978DF79F7238 /* MJRefreshNormalHeader.m */, - 0E458A7FEE9ED5F20EF848A6C6544D53 /* MJRefreshNormalTrailer.h */, - 51B1E69E3B2A5357A1527558CB6E0465 /* MJRefreshNormalTrailer.m */, - DDC2763C6CEDD665D5F37D09FCA38DB4 /* MJRefreshStateHeader.h */, - E0E3D3DA571434BBC5A9F09E51EDECAA /* MJRefreshStateHeader.m */, - 48C63E238417B947AE193705B19A6FF3 /* MJRefreshStateTrailer.h */, - EF67AC364BC14CA9F81DB3F6A009E9A5 /* MJRefreshStateTrailer.m */, - 276733CEE5ABDD78BFE5CB995A43C67C /* MJRefreshTrailer.h */, - 0F65A8008A00E77CC6CEB3EA03A2995F /* MJRefreshTrailer.m */, - 1038CDECC4C68B88DE38006854639F5E /* NSBundle+MJRefresh.h */, - 83749586E57DDEB645F97D1F5F81297A /* NSBundle+MJRefresh.m */, - 32E35E0CCCDF9BF02E1EAE8FF77857AD /* UICollectionViewLayout+MJRefresh.h */, - 200A45539F32562571F351DB64891F37 /* UICollectionViewLayout+MJRefresh.m */, - B04FF993968810D24E3CB19E5048C2E8 /* UIScrollView+MJExtension.h */, - 778511050A09589C0F2419C65DD684FC /* UIScrollView+MJExtension.m */, - 80C8588C27905BA6272F78D68E4A7D11 /* UIScrollView+MJRefresh.h */, - F226B2CC207D85EB9F275E3909ECFE28 /* UIScrollView+MJRefresh.m */, - 23CCD7977B21534E95E32A5E68C9D4BB /* UIView+MJExtension.h */, - 339BD5A7FDFB96FF9867355742A8D0E6 /* UIView+MJExtension.m */, - 63C06B5F8BBEAB277A50D452FB378CE9 /* Resources */, - CDC903C7E48F8E3128614971D7497F2D /* Support Files */, + 68F1F3FEB751E1F6CA19EAA4106A4DAE /* MJRefresh.h */, + 563BAF3B8E8BF2625BE8EABD7C2F3059 /* MJRefreshAutoFooter.h */, + 0C9A66D2468FEF35002A499092816E25 /* MJRefreshAutoFooter.m */, + 9CB5B4D6046E5DD51BE708F47881FF07 /* MJRefreshAutoGifFooter.h */, + 7A8E62DB89DBDAD71FE2A3DC199D5391 /* MJRefreshAutoGifFooter.m */, + 0E69F54FC92DD084F23D6B24E981DE30 /* MJRefreshAutoNormalFooter.h */, + E0F6E7A35B68518F11C7EE5462DC536B /* MJRefreshAutoNormalFooter.m */, + A26F76509B9F66D0C2928529CEB7E16A /* MJRefreshAutoStateFooter.h */, + 0FC6CED4D6A9C0B15D86460654E10E9B /* MJRefreshAutoStateFooter.m */, + 86C56519021ABDEF1D6B4197F9979FFA /* MJRefreshBackFooter.h */, + 6CD66DE7B14AC980E0C9BF0F45F4336D /* MJRefreshBackFooter.m */, + 6AEA2337C94A8C598BB24FEE58D8A1BC /* MJRefreshBackGifFooter.h */, + 575CFD08C73D335D9EB940A62E08CA51 /* MJRefreshBackGifFooter.m */, + 60E339E151900BF9DDBFEDE00A37182D /* MJRefreshBackNormalFooter.h */, + 90E76432085AB53FA0BD24255F01A5E7 /* MJRefreshBackNormalFooter.m */, + F9BBEB1EC2D93C4F1310CC77156259A6 /* MJRefreshBackStateFooter.h */, + A617C7FB0EDD8D5BBB4FE494072EAEA7 /* MJRefreshBackStateFooter.m */, + 38B32D61B90137CC13104A1BA1DDE1CF /* MJRefreshComponent.h */, + 5C48A4D6BE2CBCB1CF05CB08A805079E /* MJRefreshComponent.m */, + F9C3C32C438415F99D09E04FB1FB4C8B /* MJRefreshConfig.h */, + 1417C63FC1179F58403EBD903D5154FF /* MJRefreshConfig.m */, + 0C47759650058497567E40148EBF9AE5 /* MJRefreshConst.h */, + E61DDA9F23188515F3DA0789831A6C8D /* MJRefreshConst.m */, + F75110BA005FF2D9FD13D42316A9EB38 /* MJRefreshFooter.h */, + 090F520F3754358826862D9DF4C2CAF5 /* MJRefreshFooter.m */, + 3C777B2DED63E0525E423D02BB586C65 /* MJRefreshGifHeader.h */, + 143BAB1167B7977725031FECFF8DB44B /* MJRefreshGifHeader.m */, + DD9DB7D1CE1349CBA5372D8013111FF6 /* MJRefreshHeader.h */, + D63CA21D42B13F82104E7452719B6B10 /* MJRefreshHeader.m */, + DBE7D39357854460EB99868FD5AAC9EF /* MJRefreshNormalHeader.h */, + 84D806687455E05BEF29EB85BB74E03F /* MJRefreshNormalHeader.m */, + E68C14C984EA28456AD25B437BFFD513 /* MJRefreshNormalTrailer.h */, + 1CA2424DCD0F1025FF88B2377C3149E9 /* MJRefreshNormalTrailer.m */, + 60365D1D06C44FD4A5F3D2AA2FD20CEA /* MJRefreshStateHeader.h */, + 04F71A248E6F3B33E512BA4547060EFB /* MJRefreshStateHeader.m */, + 17916ED6162E441B99E3FE5494C0751F /* MJRefreshStateTrailer.h */, + 3F4A320280409530EA9C86CF7ABBEB67 /* MJRefreshStateTrailer.m */, + 9EE9536FB9FE3772BAD71E0462342B2E /* MJRefreshTrailer.h */, + 19B2B97351832A4A6CE655C311162FB1 /* MJRefreshTrailer.m */, + 8D92FC30B6DB6A03B90E4ACF6B3F5349 /* NSBundle+MJRefresh.h */, + E078A35C8C5C67200A5D1AABCD488AB4 /* NSBundle+MJRefresh.m */, + 5F34D1A27418A709F7C65E3DB1D77A02 /* UICollectionViewLayout+MJRefresh.h */, + 69AFDB50C9D979273008F144EF898FCB /* UICollectionViewLayout+MJRefresh.m */, + B5DA2CA36DA7D968C2C56E6344B95BF2 /* UIScrollView+MJExtension.h */, + 7E2A6E397F8C2CBCFA92800373424406 /* UIScrollView+MJExtension.m */, + 95211F71D6ADE9601965FDFEE1E997D1 /* UIScrollView+MJRefresh.h */, + 39655DCF43C0D84A0701B98D87E70577 /* UIScrollView+MJRefresh.m */, + 9D723AAB4B0B0B095DD348DECC4A67B8 /* UIView+MJExtension.h */, + D823F8C60A9B1B611CA262E283132F8C /* UIView+MJExtension.m */, + 578B2A5888D3737ECCA8E810406987F4 /* Resources */, + FC8A39BBFEDD2FF5C77C4A527F316FBA /* Support Files */, ); name = MJRefresh; path = MJRefresh; sourceTree = ""; }; - 27D672A1BE2D40BB8746BF9304DE6476 /* UIKit */ = { + 22639E9D63B6C87CC49D51F31C3315D6 /* Support Files */ = { isa = PBXGroup; children = ( - 01967DD4C5A85509805CBCD8FF8067EA /* AFAutoPurgingImageCache.h */, - CE79DA3780BB0C29F2510145FF92018E /* AFAutoPurgingImageCache.m */, - C5A0079AD1384A00B3C24449EBDF5C38 /* AFImageDownloader.h */, - 4686DD03E5F2112159A4AF256D4ECDB0 /* AFImageDownloader.m */, - 008261B9563A97C2729613551099EA82 /* AFNetworkActivityIndicatorManager.h */, - C9506AC016900FA4BD34901C6E6B085F /* AFNetworkActivityIndicatorManager.m */, - 887BDFD52A061A00791DC627E1D6A3AE /* UIActivityIndicatorView+AFNetworking.h */, - 5380C308A106E3B3377D32066D5C3A0F /* UIActivityIndicatorView+AFNetworking.m */, - 5E626FE204DCA11B59E8032F2BE72D1E /* UIButton+AFNetworking.h */, - 23436A1A92BC2ECA48AE48E4F534A1C8 /* UIButton+AFNetworking.m */, - C23A462C9913623F9C8FDF5460E9339B /* UIImageView+AFNetworking.h */, - 1344E055DAEFCD6CAEEC876F478E0AC0 /* UIImageView+AFNetworking.m */, - AE221E5BEDD4CD19DE4D904CF3DD21E1 /* UIKit+AFNetworking.h */, - 9412CB09E0E9D26DFCE87A94BE2C0799 /* UIProgressView+AFNetworking.h */, - 6A8A0580900F5771E4F0A4B83B33A7D8 /* UIProgressView+AFNetworking.m */, - 0A9CF5385FC6C9B5A48829C80AC7B312 /* UIRefreshControl+AFNetworking.h */, - 3BB581AA2004F2F998A9BCB4487DFD1D /* UIRefreshControl+AFNetworking.m */, - 8331404CF71463593B63634AFF0D7DA1 /* WKWebView+AFNetworking.h */, - 0E52D433702688AC431FFC4C34CDF78B /* WKWebView+AFNetworking.m */, - ); - name = UIKit; - sourceTree = ""; - }; - 28B2B9D0CD3CB713393E7EA4E837CCD1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 341E0598C048E82B1711A62AC27A8A01 /* Bugly.debug.xcconfig */, - 5467BF12652CA00AFF8AF65AE418E809 /* Bugly.release.xcconfig */, + 18112954BB8B471D09E086E934FF6A1A /* LookinServer.modulemap */, + B8EBE510DE0EABD7D6FE8B5C1BECDA69 /* LookinServer-dummy.m */, + 883DCCD06A6D63DB9B2FD31A9A6E8DDE /* LookinServer-Info.plist */, + E29E950866832E74B4884925ADAE92C0 /* LookinServer-prefix.pch */, + 8CA68BAB63D0C7D565B1D15F975CD31B /* LookinServer-umbrella.h */, + 4D3442E450D824019C5AA7A73F82DA7D /* LookinServer.debug.xcconfig */, + 345E8071594452D5EC1963065298F2C2 /* LookinServer.release.xcconfig */, ); name = "Support Files"; - path = "../Target Support Files/Bugly"; + path = "../Target Support Files/LookinServer"; sourceTree = ""; }; - 2F3668E0A0E33C34959C549C8E4189F0 /* Frameworks */ = { + 25A3F5BE939AB8DABC6F69FD69DF856D /* Support Files */ = { isa = PBXGroup; children = ( - 374953DEFC8C8F3795932989F4487C49 /* Bugly.framework */, + 1C70BFFD58ECD12B7C4E3413EB9ED0F6 /* AFNetworking.modulemap */, + 20F843696759BAF00119DB1CDA7EEE79 /* AFNetworking-dummy.m */, + 4F12D11DD87CFAE95ED3A04E72E5B07A /* AFNetworking-Info.plist */, + 0AB208379F84564033BF50F592B48B44 /* AFNetworking-prefix.pch */, + FB570173299BA0981C64C4954AE0BF7D /* AFNetworking-umbrella.h */, + E7E3E5022BAECE5B36C5DCA354B9F19A /* AFNetworking.debug.xcconfig */, + 223438EC2ED96F2A99B18DE49CC2337E /* AFNetworking.release.xcconfig */, ); - name = Frameworks; + name = "Support Files"; + path = "../Target Support Files/AFNetworking"; + sourceTree = ""; + }; + 2A0D37AC8CA1AE1CBE28A7137A9A8E96 /* Core */ = { + isa = PBXGroup; + children = ( + 2D3766A431B7A0BC76917558618EF0C1 /* CALayer+Lookin.h */, + 127D81646E9B973EF484FF2443AFF5F6 /* CALayer+Lookin.m */, + 20D7A9117FD1CBF865700C7C5569512C /* CALayer+LookinServer.h */, + E6E2B65A09B0300AD2B9BFCB786F9858 /* CALayer+LookinServer.m */, + 2ABF83FA3614A8415336F983AEB644A5 /* Color+Lookin.h */, + 38BFA523126349CF747593045236049E /* Color+Lookin.m */, + 5F62FC6D05660CB1BB52709692D6BE5A /* Image+Lookin.h */, + C65F428EF2EB399205D56B2678DEB70B /* Image+Lookin.m */, + DB5651527386CD1B3A287B9A086C09DB /* LKS_AttrGroupsMaker.h */, + 586E80B855BDB3E4E90B9FB145E2EB0D /* LKS_AttrGroupsMaker.m */, + DF83BC41ED5AC7E86AD951D501C02E07 /* LKS_AttrModificationPatchHandler.h */, + E8041A2BC68C7B4F2A59709C17BFF313 /* LKS_AttrModificationPatchHandler.m */, + E37FF5DA81F2ACDA55A6A061BBD6A251 /* LKS_ConnectionManager.h */, + 305FC7B048B8871DE3376193B606286C /* LKS_ConnectionManager.m */, + 30A3DB802987D4AAF504715CCE53E22B /* LKS_CustomAttrGroupsMaker.h */, + 17D6BCEF878B1E94F7ECA5FDE9140F80 /* LKS_CustomAttrGroupsMaker.m */, + FCFC8A85C8C4A8EB482780063B96293A /* LKS_CustomAttrModificationHandler.h */, + FF2AB48D9E764BD132973F1C10BEAA95 /* LKS_CustomAttrModificationHandler.m */, + EC6923DD235A7C9D06781B67EB685D62 /* LKS_CustomAttrSetterManager.h */, + B1E73B5A048EDD0FDD4241A1F25B8855 /* LKS_CustomAttrSetterManager.m */, + 1BF35F15520F59A5E4A5CE1FA75927EE /* LKS_CustomDisplayItemsMaker.h */, + C522E5668D772C9DC22DA4CAA24CE6F2 /* LKS_CustomDisplayItemsMaker.m */, + 9AA476BA9ED5F6342684BACF66E137FB /* LKS_EventHandlerMaker.h */, + A2A220EC633F027E7B045854D845D02D /* LKS_EventHandlerMaker.m */, + 2BD649299FB30FE26060B97E8DF9816C /* LKS_ExportManager.h */, + 0CF0A730CF94F9E641A4ED1FE09F2569 /* LKS_ExportManager.m */, + 40C013B9E150C3534656435CE6E24CDC /* LKS_GestureTargetActionsSearcher.h */, + 7DC4FD783789DDB9ED9EA77F73A62868 /* LKS_GestureTargetActionsSearcher.m */, + 077DBD741909C88698D1CCE9FCF28728 /* LKS_Helper.h */, + A2B9993D23A52E3D36AF3E2814064006 /* LKS_Helper.m */, + 73C61559A1B0E35919ED6A55F60D8881 /* LKS_HierarchyDetailsHandler.h */, + 02E251D5F94D43ECAF215AE69EBADD35 /* LKS_HierarchyDetailsHandler.m */, + 92C914CEAD4453388BDD547DF47A2B09 /* LKS_HierarchyDisplayItemsMaker.h */, + 3D37F2B9A92E991C28286D5146AE4897 /* LKS_HierarchyDisplayItemsMaker.m */, + F4BDFF05D6007AE01569C5F666CDD78A /* LKS_InbuiltAttrModificationHandler.h */, + 65B1B4D00C645096B73E54FF2DA45C1E /* LKS_InbuiltAttrModificationHandler.m */, + 0BFF0BBC754FDFFAF6499B4D39357EDB /* LKS_MultiplatformAdapter.h */, + DEE996B16E66B7AD8A0773D32F2F31BA /* LKS_MultiplatformAdapter.m */, + 111ABB06FDFF559552C85BCF30F5D2F4 /* LKS_ObjectRegistry.h */, + A8106626B5380E2AEEC5625B534D4237 /* LKS_ObjectRegistry.m */, + 78F82B479082399992AB5F11FE1883FC /* LKS_RequestHandler.h */, + 3358B071D3DBACDD7C38DD4D38159CA6 /* LKS_RequestHandler.m */, + 56427D5143AF4020D59AE1CB2C056990 /* LKS_TraceManager.h */, + 8F35B70F96A661BCF6259326D0EBC020 /* LKS_TraceManager.m */, + 9974E2D70C76DAB234FAC98761556137 /* LKSConfigManager.h */, + 325405580D0271A2C4EBDB695A5AB536 /* LKSConfigManager.m */, + 961DF772C77317164F224836C8C58C0C /* Lookin_PTChannel.h */, + 4719BD42C96EBDC858610D75E5F1479C /* Lookin_PTChannel.m */, + C789EE7A2AE246689BE0868C0239B180 /* Lookin_PTPrivate.h */, + 575BBC04164F81FC37914FA7A54E3240 /* Lookin_PTProtocol.h */, + 529CE6F2D4062A8679207A37C0D33C11 /* Lookin_PTProtocol.m */, + 7A00FC0F567DB778E6383FF7BA31B2DA /* Lookin_PTUSBHub.h */, + C9C3D294F4C1669BA23B7FE3B453C896 /* Lookin_PTUSBHub.m */, + 0A1F611427BBE81A4BBB7FDFA2FC4101 /* LookinAppInfo.h */, + 28146C6CEAB5150B6285BE6E1879E9BC /* LookinAppInfo.m */, + 27A2E52335BCCF9445465B9262488865 /* LookinAttribute.h */, + 67DEF1B5920E9373D6A997322910CBB0 /* LookinAttribute.m */, + 4838EF2B08AEB6CAC4CFEB6DB3B5F66B /* LookinAttributeModification.h */, + 1139A331649C3BC55007521B6E9D086C /* LookinAttributeModification.m */, + 356511999B4B35573B2770506E59776D /* LookinAttributesGroup.h */, + 578B95230AE545201B64A7880F20CE7A /* LookinAttributesGroup.m */, + C6B97DA512208D26D2EA27D401075552 /* LookinAttributesSection.h */, + B6C3ACC95CD8C2F4D6BF4166F31DCA37 /* LookinAttributesSection.m */, + C4EA0EBE2010F2B34CCB87C3B956CA5B /* LookinAttrIdentifiers.h */, + AE67898E71446EC88FC385C9A033EB73 /* LookinAttrIdentifiers.m */, + 9C04E01C3DF3AE62C5CFD110E6B877F8 /* LookinAttrType.h */, + 394E26511F1B972C1F62DB92576F3246 /* LookinAutoLayoutConstraint.h */, + 74FE12FD21655EC9E53B3DD7175CB067 /* LookinAutoLayoutConstraint.m */, + 2AD58A8355780A66CD54397A8741020A /* LookinCodingValueType.h */, + 439F16A17FD6B513A48ED7EC3F1E5108 /* LookinConnectionAttachment.h */, + 6EB3E0F6EA2AEF722802AF2258844A99 /* LookinConnectionAttachment.m */, + 80BEE3AD7A73C30ED1CBF7BAD5DA4722 /* LookinConnectionResponseAttachment.h */, + 59B1DD789D49022BC2ACF8335057F7CC /* LookinConnectionResponseAttachment.m */, + 173AF5E6D712D1DF733701331162155B /* LookinCustomAttrModification.h */, + 6E1F681FE04A1A936DAAA127C5F4AF4B /* LookinCustomAttrModification.m */, + 7F9BBC9A6E2890E280DC92D31D5925F9 /* LookinCustomDisplayItemInfo.h */, + 725FCDB992DC8BA14911A10FB5F39FBE /* LookinCustomDisplayItemInfo.m */, + EBE15864632F44FC081BE4046348388E /* LookinDashboardBlueprint.h */, + 7636A8638A254AA9F4489052690CFAFF /* LookinDashboardBlueprint.m */, + E48F6B958C7773FD74BEC8EDFAADCF29 /* LookinDefines.h */, + 75427AB3CFEFC15FE3E5B3DB1482A9DD /* LookinDisplayItem.h */, + 57F9DD94DC7C2B755239E5925595D7C8 /* LookinDisplayItem.m */, + 62A09C0A31058D2493F1981FBD38A2B6 /* LookinDisplayItemDetail.h */, + EE7D8454125C1BA42337678F1EE28A18 /* LookinDisplayItemDetail.m */, + 005531FD65A2DC8E04EE9C5595573265 /* LookinEventHandler.h */, + 612064766B38AA6EDF74D011716F8B07 /* LookinEventHandler.m */, + 5DBDE11C24E2752A8FAC2F762D4136D4 /* LookinHierarchyFile.h */, + 4BEA2C723E51712851DAF177993AF2DE /* LookinHierarchyFile.m */, + D40CC721080669F5E946CDA95D45E6AA /* LookinHierarchyInfo.h */, + 70C2384D14B3691CB3C5B98DCA0B35BD /* LookinHierarchyInfo.m */, + BC7945E933EE63600C092AB79AA72C2F /* LookinIvarTrace.h */, + 60C9E782AAB85053FEFB0B6F0A6F9DE9 /* LookinIvarTrace.m */, + 24F8FA1D260910F600A2FECEB1D74988 /* LookinObject.h */, + B1E7E8CFAA197C7C0BF2C42C37130BCB /* LookinObject.m */, + CA68C45DD07F0A027BE9C64B74B3A796 /* LookinServer.h */, + B83B6D7BEE9D6ED7612ED74D0D652266 /* LookinServerDefines.h */, + 1EB45C7A834D78718652CD6DC1BFE263 /* LookinStaticAsyncUpdateTask.h */, + 651BCEE02EE09944661239397E6D5544 /* LookinStaticAsyncUpdateTask.m */, + AD3DB31E06571161436EBC1E35701B6C /* LookinTuple.h */, + BAF9D7C94DBF5CE39657FF3E402B3CA6 /* LookinTuple.m */, + 51242479BEA395B29090E74758B74057 /* LookinWeakContainer.h */, + 0751712F4FC9A1B51B8443A19239A65F /* LookinWeakContainer.m */, + 40D0819C1354481F79848CD2AB460CDC /* NSArray+Lookin.h */, + 20651414D2027C8A7686D018492D8DFD /* NSArray+Lookin.m */, + 4ADCBAAD37F392A44D285E8DB8DB3596 /* NSObject+Lookin.h */, + CA5F508E08543C1BBB3B6324A70972FE /* NSObject+Lookin.m */, + A6B562191F3678A7965507AF8B0D8BE7 /* NSObject+LookinServer.h */, + 56AE76BCBC0A2628D411734B376EBDB3 /* NSObject+LookinServer.m */, + 22BA65BA9931F718987381F55B9FBE47 /* NSSet+Lookin.h */, + 1FD376966048F00BB938741554A2F379 /* NSSet+Lookin.m */, + 51D2A173EC30AAA0DFA941E4D92C0D53 /* NSString+Lookin.h */, + 0C9DB0032AB47075179DDD0C47C7DA50 /* NSString+Lookin.m */, + 70DCC77621C4107A20AF6B4737F85A9A /* Peertalk.h */, + 8EC7D805B3669842D8D00AC25DD350F3 /* UIBlurEffect+LookinServer.h */, + FC9B7374A387D325D02D3DD73E0D91C3 /* UIBlurEffect+LookinServer.m */, + 15F7E1A00ABF255AFEE889117BA05211 /* UIColor+LookinServer.h */, + 7438D6BCCC37A3DDDE821453D6D936BD /* UIColor+LookinServer.m */, + 77CAAF43AF1455EED7ADA84E53D6CC10 /* UIImage+LookinServer.h */, + A997A30994E24FE91A96F7E9623CE4EC /* UIImage+LookinServer.m */, + B992A3B139CAB05FADF1BC0D5F741D58 /* UIImageView+LookinServer.h */, + 2EADD27E422FFACED3103DDAE818B18C /* UIImageView+LookinServer.m */, + 0AFFE416819878D07A65ADA6E82C295F /* UILabel+LookinServer.h */, + 954E7A3ED44A655F09F9D9660EACDDFC /* UILabel+LookinServer.m */, + D017EA62245DB2555D0FAD9673A02E81 /* UITableView+LookinServer.h */, + F5DA56584ECBB23502B1EA4E691C1F3B /* UITableView+LookinServer.m */, + C274CB4B91DDEA7F11C22815CBFF0ABF /* UITextField+LookinServer.h */, + 8F2ADFE29A92167B3C4FD8A49559C346 /* UITextField+LookinServer.m */, + ACF26C9A806C3B87ACEEEF1A4043ED5F /* UITextView+LookinServer.h */, + 9A76C3033DDC15001490F7CE805EDD4C /* UITextView+LookinServer.m */, + BFC51409E4245F194CB1F20A817E7A98 /* UIView+LookinServer.h */, + 07CF87D2A78D582102BB7F2CC1E06D69 /* UIView+LookinServer.m */, + E21D12C0A6AD0F454CAACC57B408FA61 /* UIViewController+LookinServer.h */, + 182E270DEDC87BA7D2F105E0FC09FF28 /* UIViewController+LookinServer.m */, + 95820E95891E3F96B30D5901A0D3907D /* UIVisualEffectView+LookinServer.h */, + B125695DDC9E0DF8EFE153F258E5D694 /* UIVisualEffectView+LookinServer.m */, + ); + name = Core; + sourceTree = ""; + }; + 2B417C58CC17D44B1B862EF64FC57A69 /* DZNEmptyDataSet */ = { + isa = PBXGroup; + children = ( + C581D8467C52B560DDC86FF5686243FE /* UIScrollView+EmptyDataSet.h */, + 83AB35F7CE9224956EA55E0F032CD708 /* UIScrollView+EmptyDataSet.m */, + 33CD80BF2A6D25A04B316A82A60D9C13 /* Support Files */, + ); + name = DZNEmptyDataSet; + path = DZNEmptyDataSet; + sourceTree = ""; + }; + 33CD80BF2A6D25A04B316A82A60D9C13 /* Support Files */ = { + isa = PBXGroup; + children = ( + 8CA693E8FA862AD78A30A19853C8A602 /* DZNEmptyDataSet.modulemap */, + 8A56DD9A3C882C9F1DF2B0003043CA42 /* DZNEmptyDataSet-dummy.m */, + 697D3680A8B84D7C662F3FF110E56E91 /* DZNEmptyDataSet-Info.plist */, + 7FB91552B12B89290051C618D5F0469B /* DZNEmptyDataSet-prefix.pch */, + 5DCC668449367056FAD99194229148C2 /* DZNEmptyDataSet-umbrella.h */, + CABBE3AF9707023BE08354200794C5F5 /* DZNEmptyDataSet.debug.xcconfig */, + 6469C9876A56CC6A832C4CCABAC844C4 /* DZNEmptyDataSet.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/DZNEmptyDataSet"; + sourceTree = ""; + }; + 3671E8E87B05A9EEA2381DF1BDDFC43B /* Pods */ = { + isa = PBXGroup; + children = ( + A33C4C0852FD0C2C8945CEB281A85C6A /* AFNetworking */, + A581A1094C7738657DBED7A965498CC3 /* Bugly */, + 2B417C58CC17D44B1B862EF64FC57A69 /* DZNEmptyDataSet */, + EF9B35A118BCB941BCDF5AF6BEF10F48 /* LookinServer */, + CD2C29F8BB7C422E989E7520B8A8DBF8 /* Masonry */, + B0734A7E9B5E606D50EDD0DA2C896796 /* MBProgressHUD */, + 7E7B66D89C5238B8243B7CC5A6A7F709 /* MJExtension */, + 210ED1DE58950F1B0648BCAA8D6B2B3A /* MJRefresh */, + 5F1CCCEBEF1BE2EE0F978941527633BD /* SDWebImage */, + ); + name = Pods; + sourceTree = ""; + }; + 3E0823A55D137C1E7C9C930CE4E0CDDD /* Resources */ = { + isa = PBXGroup; + children = ( + 088A3DB9640B9B86DCECA54E13715C0F /* PrivacyInfo.xcprivacy */, + ); + name = Resources; sourceTree = ""; }; 4098ED899C8DF8E013F9F260ECFAA236 /* Pods-keyBoard */ = { @@ -1360,93 +1582,61 @@ path = "Target Support Files/Pods-CustomKeyboard"; sourceTree = ""; }; - 48AAC7851C89DEA9CED89B65119898A8 /* MJExtension */ = { + 578B2A5888D3737ECCA8E810406987F4 /* Resources */ = { isa = PBXGroup; children = ( - F4C95CB4A01746A9AE18561AF61B9C56 /* MJExtension.h */, - 2A138DDBE01653689513DEA2E2290D19 /* MJExtensionConst.h */, - E35D44D16336D423E16E7BE4C321AF84 /* MJExtensionConst.m */, - 64F51AABAF636DCECF141CB54F075D6F /* MJFoundation.h */, - FF31450F87E6146991BF9BBEAEEE285A /* MJFoundation.m */, - BCA9B216AF795768B316B3A738BA5B82 /* MJProperty.h */, - 74E4055647D4226A87EF134A0A482E51 /* MJProperty.m */, - 7953E4E7E2CD405F691F041B6B22DE19 /* MJPropertyKey.h */, - 5F2CA2F1F503FF6B4C93B235750D7337 /* MJPropertyKey.m */, - 33790326F4E5BD6AB4799CB1F644BAA0 /* MJPropertyType.h */, - CFDA4C2B71620DFED1CDBD7CED538841 /* MJPropertyType.m */, - 531C91CA6418B49AE153A51D79C3E6EB /* NSObject+MJClass.h */, - 062B3F801E733F99200DA9042C2B0966 /* NSObject+MJClass.m */, - 38A4C3A9E16163D57E55A8FB9D95F4BB /* NSObject+MJCoding.h */, - E5ED257CB265A92F530622C382919194 /* NSObject+MJCoding.m */, - A09CC2027F235BDFDC50BF600A9639D6 /* NSObject+MJKeyValue.h */, - A381186EF257980C40F18C6823B93140 /* NSObject+MJKeyValue.m */, - 4F254BA2A55B028FDD6A7C52AB7B3229 /* NSObject+MJProperty.h */, - 0527D2696C86C0F4BD662C1F0239F077 /* NSObject+MJProperty.m */, - C114A030757EE97557D452200311EF89 /* NSString+MJExtension.h */, - F792F5861B1266F441753C363FFF2235 /* NSString+MJExtension.m */, - 5BC098DCE9E6663D8DEAC07337BBE87F /* Resources */, - 90011C6D03931743029780F4216678BF /* Support Files */, - ); - name = MJExtension; - path = MJExtension; - sourceTree = ""; - }; - 490B2542F5D66A75889662EDC9E05EAE /* AFNetworking */ = { - isa = PBXGroup; - children = ( - 43B97213F58B7FBE16DE3BAB832D9F3E /* AFNetworking.h */, - E5B1F049215AC4C197B4D80A955F599B /* NSURLSession */, - BC2D353174A306AED85B1ED3F6D08BDD /* Reachability */, - 85B75F337454E19B6DB07D5BFED6910D /* Security */, - 8577FFFEE1104BF0929DD8EAAC148729 /* Serialization */, - 8C268B80E7A888D5142A1DBFD03D8C2B /* Support Files */, - 27D672A1BE2D40BB8746BF9304DE6476 /* UIKit */, - ); - name = AFNetworking; - path = AFNetworking; - sourceTree = ""; - }; - 58147962D9333A25D7D1E3982C097F1E /* MBProgressHUD */ = { - isa = PBXGroup; - children = ( - 80ECD59B95128414F3E8AA8A95C99447 /* MBProgressHUD.h */, - 0125C3DEE2098883DF42D35D1A66AFA2 /* MBProgressHUD.m */, - 1765AD65DCCB3FBD87B53CAE260B6669 /* Support Files */, - ); - name = MBProgressHUD; - path = MBProgressHUD; - sourceTree = ""; - }; - 5BC098DCE9E6663D8DEAC07337BBE87F /* Resources */ = { - isa = PBXGroup; - children = ( - 478ABEABB381B93BC60608D71F71150A /* PrivacyInfo.xcprivacy */, + 8DAEFFBFC2A8B5DDA66F37DA02A0D1EC /* MJRefresh.bundle */, + 37AD260673E5D427A6C4167BC0357FF3 /* PrivacyInfo.xcprivacy */, ); name = Resources; sourceTree = ""; }; - 63C06B5F8BBEAB277A50D452FB378CE9 /* Resources */ = { + 5D5D2F0276076763314E951480775C3C /* NSURLSession */ = { isa = PBXGroup; children = ( - CCB18519B12BDA459AD1CE0FE55C5930 /* MJRefresh.bundle */, - 33DAAFE9575412CFC852D64A5D2B8E84 /* PrivacyInfo.xcprivacy */, + 39ABA9C0906D9CC9F2AFD815FDC30696 /* AFCompatibilityMacros.h */, + C84A5312A8825A5EDA96EC527A7E4D7A /* AFHTTPSessionManager.h */, + 4A0FCD6D064868A4FCFD48B58D437459 /* AFHTTPSessionManager.m */, + D6FB630B23620961A3E2286292891545 /* AFURLSessionManager.h */, + 95F45E1557907D629EAA4C321913606F /* AFURLSessionManager.m */, ); - name = Resources; + name = NSURLSession; sourceTree = ""; }; - 696AB9A323C81DB54B5534F8523C43AE /* Support Files */ = { + 5F1CCCEBEF1BE2EE0F978941527633BD /* SDWebImage */ = { isa = PBXGroup; children = ( - 4EDAC27E448929847F369451786C431A /* Masonry.modulemap */, - 290F691EA01B201797DC4126CF4FEB05 /* Masonry-dummy.m */, - 064A3D5E665E2EF0AA3CCB079884AB76 /* Masonry-Info.plist */, - B1B7328566F2E3A7800F96D62AB528A4 /* Masonry-prefix.pch */, - 8495772F8550107728BB239DE5C6229E /* Masonry-umbrella.h */, - F74831DF4A214A9B37FB53108A8F46D7 /* Masonry.debug.xcconfig */, - C6C9DF18C184F28FB0938F14DCD812A8 /* Masonry.release.xcconfig */, + A5F7FF0CF920C4D582B9F501AF5E4D46 /* Core */, + 9372D18C153FFF015136D72A8730737F /* Support Files */, ); - name = "Support Files"; - path = "../Target Support Files/Masonry"; + name = SDWebImage; + path = SDWebImage; + sourceTree = ""; + }; + 70A199A6058EBF53B6DE7835561A4C27 /* UIKit */ = { + isa = PBXGroup; + children = ( + A8033C5E72AC6B644BBFEA8D63B7DD4E /* AFAutoPurgingImageCache.h */, + F00E6E13FB910ADD714E5C17A5F927DE /* AFAutoPurgingImageCache.m */, + EF402EFC14985321E0CDC165246B34CF /* AFImageDownloader.h */, + 407EB5244BB1A9AAE0D09FFE20726A9D /* AFImageDownloader.m */, + 2AA6FFDE3D12EFD1B71F685F39294D26 /* AFNetworkActivityIndicatorManager.h */, + 00B18774CC6391C1FB41979BD95FA8C3 /* AFNetworkActivityIndicatorManager.m */, + E52CB395AB5C0A69F5694C7CC12B88EB /* UIActivityIndicatorView+AFNetworking.h */, + 481BDE66966A42A2CDB09683B19807F1 /* UIActivityIndicatorView+AFNetworking.m */, + 899DB60C8AE35AAEE60EE79A959585AF /* UIButton+AFNetworking.h */, + 635415748BE6CDDD59DB97E93DED7A43 /* UIButton+AFNetworking.m */, + E11DACE38891E0B635F5298726C94072 /* UIImageView+AFNetworking.h */, + F1D52AC31D1CC317C4D273E89DB2576A /* UIImageView+AFNetworking.m */, + AEE8F1D877871920052FF127A90036D4 /* UIKit+AFNetworking.h */, + 9ADEB33CB07F958A39FFF41A08D676F6 /* UIProgressView+AFNetworking.h */, + A15D2806D2FB9337E30A3103199E9DCB /* UIProgressView+AFNetworking.m */, + A375C1D697A112C4F27D2594B1A90187 /* UIRefreshControl+AFNetworking.h */, + 88C5A11A011853337516FE336041BAE6 /* UIRefreshControl+AFNetworking.m */, + 6EF063706C65042A3322B65B0F2DFC5A /* WKWebView+AFNetworking.h */, + 28D018C6173D2EDF06A47B3F72528135 /* WKWebView+AFNetworking.m */, + ); + name = UIKit; sourceTree = ""; }; 717E6458BD53164643C1A5869C11B538 /* iOS */ = { @@ -1461,55 +1651,301 @@ name = iOS; sourceTree = ""; }; - 8577FFFEE1104BF0929DD8EAAC148729 /* Serialization */ = { + 7E7B66D89C5238B8243B7CC5A6A7F709 /* MJExtension */ = { isa = PBXGroup; children = ( - 3C486A79E0D0DD2702EF7B8CAF517764 /* AFURLRequestSerialization.h */, - 20A026BCE094F29EF174D58596EDEC05 /* AFURLRequestSerialization.m */, - BC829FAAC6A3875A1067798DB4A26E50 /* AFURLResponseSerialization.h */, - DB83547F40F4A323DF570BC21ACE6B77 /* AFURLResponseSerialization.m */, + 9E7B70FE43DB96F119CF5308A2D3556C /* MJExtension.h */, + 3BD9554CCF9297CBC4A216FA40E938ED /* MJExtensionConst.h */, + D6A6E0BE0C1C49324E5F6C97552C0AD0 /* MJExtensionConst.m */, + 1173BDB5AA57CA5E444B378D705BBE3F /* MJFoundation.h */, + B043C26FD7838BC3DBF026752B5B7EC2 /* MJFoundation.m */, + 88B14BF9D8A154C06BB8ACB4597DB243 /* MJProperty.h */, + D51AEB47029A4618D53132FE177582F7 /* MJProperty.m */, + 5BA282361175441D998D08E9DF25D997 /* MJPropertyKey.h */, + 9531B77BDB95A2B2375AAFCB5A73D5A7 /* MJPropertyKey.m */, + D7563FAD3C56142ED9787F2622AD43A6 /* MJPropertyType.h */, + 3C4A8B2E9EA22C1202805209C797B0E9 /* MJPropertyType.m */, + CB8089BF92E6AFD435A791B463E0BF0B /* NSObject+MJClass.h */, + 1D438C373C98EC1CB7A0D0E0FFBEF4E4 /* NSObject+MJClass.m */, + A8E31D04B3BEDEC2470A24EC3B3C30AF /* NSObject+MJCoding.h */, + 6E8675CEE6F196019C2179297EB96DA0 /* NSObject+MJCoding.m */, + CAC9B29760199C16C058439C456A1C20 /* NSObject+MJKeyValue.h */, + FEFC28F9A0574086775CB86715006A47 /* NSObject+MJKeyValue.m */, + F81EADB3DC16D96C6357C26DAF50097C /* NSObject+MJProperty.h */, + 7DA4571CF6333890957ED92A8FA2AF37 /* NSObject+MJProperty.m */, + 0342DB4B433F13EDE490230923030955 /* NSString+MJExtension.h */, + CDBDFF0EFD2E6EA22CB715FFCB21045F /* NSString+MJExtension.m */, + F165B770E7AAC2C777662C4123F8BEC0 /* Resources */, + 0C29DD2AAF850FFB4B287814D8FB4BF4 /* Support Files */, + ); + name = MJExtension; + path = MJExtension; + sourceTree = ""; + }; + 8523320BD97E94CA8C778EFF5D7BD4F7 /* Frameworks */ = { + isa = PBXGroup; + children = ( + A5C6B57E2EF3B4DDAC9A360C48254F79 /* Bugly.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + 88B5957DFA31D30CD741904CD4F457F9 /* Support Files */ = { + isa = PBXGroup; + children = ( + 98416B88FBC70C47DFBB82E51CE2CAD5 /* MBProgressHUD.modulemap */, + 6B1C5464F49ED58861A679B29B833103 /* MBProgressHUD-dummy.m */, + 6C13B2432B650F817A5A6018661A3002 /* MBProgressHUD-Info.plist */, + F9CAF9E3448E2AFAF480F1123C383BFC /* MBProgressHUD-prefix.pch */, + CE4B14D8CFD815111A796D5B4933E7DF /* MBProgressHUD-umbrella.h */, + 79BF9A9C8A01FA5788DABBD3AB93BCD0 /* MBProgressHUD.debug.xcconfig */, + 938496D2077B5D567BA32550A5EF8099 /* MBProgressHUD.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/MBProgressHUD"; + sourceTree = ""; + }; + 91C6F8C1BF53311C422FB69B867EB29E /* Support Files */ = { + isa = PBXGroup; + children = ( + 24770AED90379569196B4F6E60D3E494 /* Masonry.modulemap */, + DDC34B8EC4E6ADC2CC996545B2BFF331 /* Masonry-dummy.m */, + 65D253E70EDE671E88678CD312A23B28 /* Masonry-Info.plist */, + FED8482A1E664B93AE5F220A72D50768 /* Masonry-prefix.pch */, + DA0A5CEDC9D5D0BEF1AC9E46BAE3F913 /* Masonry-umbrella.h */, + 8883B17FC0C4FB5FBB47C773D132541D /* Masonry.debug.xcconfig */, + B70BC0B4EF67B545E3F3CDF82AFA33A9 /* Masonry.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/Masonry"; + sourceTree = ""; + }; + 9372D18C153FFF015136D72A8730737F /* Support Files */ = { + isa = PBXGroup; + children = ( + C7C7F277C8370C6DFFE4A1307C33E71F /* ResourceBundle-SDWebImage-SDWebImage-Info.plist */, + 8283A8ADA0737B2A383BF3E8E613D220 /* SDWebImage.modulemap */, + 13B467DAFDB1C2E628A824EA7828200B /* SDWebImage-dummy.m */, + EF893DE4CF2A94E640065B64F0E50BE3 /* SDWebImage-Info.plist */, + 9B45B2F972E0F43FB2D2755B8873D012 /* SDWebImage-prefix.pch */, + 21289499078E8DC3A04904CA8F2BEA84 /* SDWebImage-umbrella.h */, + AAF0EBD4D922EB27FBA2F8675E65E60C /* SDWebImage.debug.xcconfig */, + C56C8AAE9E964BC086AC1E10B34FCA6B /* SDWebImage.release.xcconfig */, + ); + name = "Support Files"; + path = "../Target Support Files/SDWebImage"; + sourceTree = ""; + }; + A33C4C0852FD0C2C8945CEB281A85C6A /* AFNetworking */ = { + isa = PBXGroup; + children = ( + FEE54F6A77D059F4D9256A8E7808AB52 /* AFNetworking.h */, + 5D5D2F0276076763314E951480775C3C /* NSURLSession */, + B1D1473068E770C594324FCED2046F85 /* Reachability */, + C84070347FBAC799B2E5330C7C5A1235 /* Security */, + AC5BF8F58ED8A625189E2CEF729A4257 /* Serialization */, + 25A3F5BE939AB8DABC6F69FD69DF856D /* Support Files */, + 70A199A6058EBF53B6DE7835561A4C27 /* UIKit */, + ); + name = AFNetworking; + path = AFNetworking; + sourceTree = ""; + }; + A581A1094C7738657DBED7A965498CC3 /* Bugly */ = { + isa = PBXGroup; + children = ( + 8523320BD97E94CA8C778EFF5D7BD4F7 /* Frameworks */, + DA4B75C5F151C7C51A2634486DB9A8E9 /* Support Files */, + ); + name = Bugly; + path = Bugly; + sourceTree = ""; + }; + A5F7FF0CF920C4D582B9F501AF5E4D46 /* Core */ = { + isa = PBXGroup; + children = ( + 229EC86F5CF3C97B108E9AB47A0D2ABA /* NSBezierPath+SDRoundedCorners.h */, + 66FD4250A6E1464C3E2D40E01FB359A5 /* NSBezierPath+SDRoundedCorners.m */, + 73A72966F3C762FBB3F334E82CB69634 /* NSButton+WebCache.h */, + 5F40730F0691EC5555DD04079075E018 /* NSButton+WebCache.m */, + BD70E1598C80ECB7F3F7138210C8D582 /* NSData+ImageContentType.h */, + D5BF98B0F3C396A5AAE36EAAEF620AA2 /* NSData+ImageContentType.m */, + B21761496F33518D23B97656291A6607 /* NSImage+Compatibility.h */, + 64C48FA63DD7DADA05BE572E8F9298BE /* NSImage+Compatibility.m */, + 3D82E930D0F2B33B118DA02E794AEA23 /* SDAnimatedImage.h */, + C65FA825F301900A712EE6A07A0AB5B1 /* SDAnimatedImage.m */, + AA1A283CCC7407D1F72A54536D3D1F70 /* SDAnimatedImagePlayer.h */, + CA68BDE3BA6D63E08981C6B1D30D6285 /* SDAnimatedImagePlayer.m */, + A34E97F0E0E9127BD6C840664D4D396E /* SDAnimatedImageRep.h */, + 40C5224C21C52359D2D822D5661369DC /* SDAnimatedImageRep.m */, + 20B9BFD85A3CCB89F02C2B24D803DCE2 /* SDAnimatedImageView.h */, + 1FEE3F7994C7F337D4377254543F8763 /* SDAnimatedImageView.m */, + CD15C7D53A74E1885D0FAA59DF7E5B67 /* SDAnimatedImageView+WebCache.h */, + CA4C646F4B9828AEC54F0BAF1F42E31C /* SDAnimatedImageView+WebCache.m */, + 65775B370DA0EF569421A8B889F95674 /* SDAssociatedObject.h */, + D8B602E532921F3CEC80251B9195BC68 /* SDAssociatedObject.m */, + AA49D75377E989DF22819667A0B19590 /* SDAsyncBlockOperation.h */, + 4D2E1BF70B6EB2A16C43E552F29FE560 /* SDAsyncBlockOperation.m */, + 6DC93497016CB5E97D1FDA43EA20AF77 /* SDCallbackQueue.h */, + 0DF80870C306B19EAA56A3F21670DD7B /* SDCallbackQueue.m */, + 04B0F3874F09EBE80699B6F6190618CF /* SDDeviceHelper.h */, + 00C068BCEBF995CB7C8EEC8A50DFCEF2 /* SDDeviceHelper.m */, + 203C3C8EC433732010B706084E2FEAAE /* SDDiskCache.h */, + 633F2EE743398967F9651A634CA3ED71 /* SDDiskCache.m */, + 686B0CDADA2537527E29D19893FFD939 /* SDDisplayLink.h */, + 41CA732E6A1AC243AABB66A5E5075CFA /* SDDisplayLink.m */, + B9B834072B4E8991D6DF85D46E52487D /* SDFileAttributeHelper.h */, + 982BDF7741EA7DD8C4EC946C022A2CE4 /* SDFileAttributeHelper.m */, + FE248F84E44C5B5F706999B2B26E5DDD /* SDGraphicsImageRenderer.h */, + BEDE4F5BCE15B6716233B116E1EA5B53 /* SDGraphicsImageRenderer.m */, + 5CC1C56C3527898F484B32A302420EAA /* SDImageAPNGCoder.h */, + 18EDCD5BD530B7F11E9EF343D6A4BD95 /* SDImageAPNGCoder.m */, + 16960CB7D813532A9BA4D86A1BB2CED8 /* SDImageAssetManager.h */, + 211DC994D6F14C6094673AA62F5F4204 /* SDImageAssetManager.m */, + 57339782C3AB75D710506F6FB663C517 /* SDImageAWebPCoder.h */, + 777EE64E29767A3A8BEEED1361D63FF7 /* SDImageAWebPCoder.m */, + E06AD632286B35CFD22D01BA0C8B9754 /* SDImageCache.h */, + 5B9DE99C87B3A8BB38D98079456DFE44 /* SDImageCache.m */, + 48AB75E0A07ACD038FD4DEE1CA9062A9 /* SDImageCacheConfig.h */, + 747AB3476737E22DC26E85147BDB80FB /* SDImageCacheConfig.m */, + B83807191AF81B917219AC57AD7C4DA6 /* SDImageCacheDefine.h */, + 35E81EDDBC17FE280E59EB2A50D2032F /* SDImageCacheDefine.m */, + 75DCD6903959A20B53948E18417106B8 /* SDImageCachesManager.h */, + ABA47701B5EF9AE3C616C2F11A5D703B /* SDImageCachesManager.m */, + 880A805BA0B5B68686832A5A2B467CB3 /* SDImageCachesManagerOperation.h */, + 8DCA3038D28CC7DA19E70D6E1C915CA2 /* SDImageCachesManagerOperation.m */, + F2228171E0DFE963C630494854128C45 /* SDImageCoder.h */, + AED6C5FEA44896CCE29E8D3DC681BE8A /* SDImageCoder.m */, + B182B3E60EEE24101ACBF7E65C720188 /* SDImageCoderHelper.h */, + 5E6423772635F4C3102289DE850F792D /* SDImageCoderHelper.m */, + 85FE48FEA957DB5936ECEE4F0A71B009 /* SDImageCodersManager.h */, + 54F6D7D59C67E3F699ECC0BC17F64C63 /* SDImageCodersManager.m */, + E577238B855764201EED8E4C35720A32 /* SDImageFrame.h */, + 91747F4F3719A8A372677DDE1E40733B /* SDImageFrame.m */, + 32CA49D06775D7347788B6F0CC10B808 /* SDImageFramePool.h */, + A8C28CA27774F4C0902C9442DBF86B71 /* SDImageFramePool.m */, + D5958FC9FA930E12B105C99F1D5195EC /* SDImageGIFCoder.h */, + 07EFBD7E00525D268A1FB491591F9B0F /* SDImageGIFCoder.m */, + CC6FBFE5D869224A6CF779369F55BF2E /* SDImageGraphics.h */, + 800E42EEAEDD32C6050A85CB9E42FCF2 /* SDImageGraphics.m */, + FF3B3BE9F3C8478F745F8BBD3F205E3E /* SDImageHEICCoder.h */, + B5FB13EC3013463693C1FE028FCC5765 /* SDImageHEICCoder.m */, + F77AA7D657B21209BD6971573D0F5CBE /* SDImageIOAnimatedCoder.h */, + C4D4BDA60F8EAD19D0AB0DE4918123FD /* SDImageIOAnimatedCoder.m */, + 347A63FF6005370892F70C963DA0819D /* SDImageIOAnimatedCoderInternal.h */, + 24FAC359D5942B824AB3D1011560DCF5 /* SDImageIOCoder.h */, + 12BF6AC75DC7C5FCAF6720FDAEA00A28 /* SDImageIOCoder.m */, + E0DDB0E6F887AAC6BF976DF87B60E090 /* SDImageLoader.h */, + 76FE6090F39F423688B2085B527C4D12 /* SDImageLoader.m */, + 36313F10E4B270659EA103F91F90011E /* SDImageLoadersManager.h */, + AA742416BCB939B1D39297670E762EBB /* SDImageLoadersManager.m */, + 08135235A8EBF91FEF514636F22989D4 /* SDImageTransformer.h */, + 5AB3D61AB0186E2435E2CDD2BF2567ED /* SDImageTransformer.m */, + 0B3DAB35FB55076EFC78AFFD26C28F8F /* SDInternalMacros.h */, + DDA65AB52698FA7F4D725EFD40DF70AD /* SDInternalMacros.m */, + BC6ED468239C99385B53135629A117EE /* SDMemoryCache.h */, + 5CE3B983336EF08E3720087F0A5CA6A5 /* SDMemoryCache.m */, + B2C87A078A4644772F44DBC7B62345EC /* SDmetamacros.h */, + 398209F80EA0E5CF6D320D26B3A19034 /* SDWeakProxy.h */, + 1E6A75A6734AF3A235BA22A135DAFCC9 /* SDWeakProxy.m */, + DC220029E7EA58B85077D4BC7D315684 /* SDWebImage.h */, + 767A32EFFEACBCB8FE5E18A0DC735AE1 /* SDWebImageCacheKeyFilter.h */, + E2D0D25D26815B60A5D95E65A0F65076 /* SDWebImageCacheKeyFilter.m */, + 6DCE8121399017996B8FC63728C01C6F /* SDWebImageCacheSerializer.h */, + 5D440755A089B2475FF76C4132626F26 /* SDWebImageCacheSerializer.m */, + ECF182241E8B4A47F383BD4694F6B842 /* SDWebImageCompat.h */, + BE5FCC9A2FCD1DFC712F74F0116FDFC1 /* SDWebImageCompat.m */, + 4C633FED1E6E51B0DA7EB78DE8B4A12C /* SDWebImageDefine.h */, + DF220AEF1D1A112AD307949F3E50EC2F /* SDWebImageDefine.m */, + 78D6FB9D0F805C75A358F271B1C91A91 /* SDWebImageDownloader.h */, + A0F43F0BA711E6ACD54A62FF1CD2DDDF /* SDWebImageDownloader.m */, + 55D6A1D4A62AEAFEB00E39A0BAB4D100 /* SDWebImageDownloaderConfig.h */, + 964BD2E59FEFC946EF5CA5443A4B8B3F /* SDWebImageDownloaderConfig.m */, + FCA48C312CFE8C30E149C43CE18A7434 /* SDWebImageDownloaderDecryptor.h */, + 1B599194043295A99545C402364D6C53 /* SDWebImageDownloaderDecryptor.m */, + 2111C167031C627E8A809F5D155D6B9D /* SDWebImageDownloaderOperation.h */, + 7FDC0E36FCDC540AE65CF49D2F26B8BE /* SDWebImageDownloaderOperation.m */, + 479AFECCA68AEF5BAF3AFF0B4DC369DA /* SDWebImageDownloaderRequestModifier.h */, + 6E032DF8C0EDECB1E6B5FC978329BCCB /* SDWebImageDownloaderRequestModifier.m */, + BA6DA15455885EB86F27D5BA1D768667 /* SDWebImageDownloaderResponseModifier.h */, + 0FDDA927E142D99A4FD998D04D009AC5 /* SDWebImageDownloaderResponseModifier.m */, + 1150733A8647FD2B2018C7BF904065DF /* SDWebImageError.h */, + 2B3682BD39C4C57FE318C9B03A51E681 /* SDWebImageError.m */, + 2E973A1FDB3F94754DCDB1264EDDDF41 /* SDWebImageIndicator.h */, + A7BD403F1F413528C53B3EFDF1387BC4 /* SDWebImageIndicator.m */, + C5351B227792D11EE48FFB201DCB8F62 /* SDWebImageManager.h */, + D1B6B65526E540D10FB05592FF61055B /* SDWebImageManager.m */, + 7AA44A6ECAB7BAF550494938C65074DF /* SDWebImageOperation.h */, + 5AA2F2ED2EA023000B96610016FEAA39 /* SDWebImageOperation.m */, + C3B203F771AA87178F1C9A34BB480552 /* SDWebImageOptionsProcessor.h */, + A8BCB04CE81BF9A50A8C34DE7580CDBC /* SDWebImageOptionsProcessor.m */, + B594CE211EC2EBBB46AE9061BA79FFE6 /* SDWebImagePrefetcher.h */, + A20F44CA8CE968BE4F558B3535572E6E /* SDWebImagePrefetcher.m */, + 2987AEB70F86EE902B3B8F5EFB3C3B96 /* SDWebImageTransition.h */, + 81AB179A6655F29D1864A1679AF918E8 /* SDWebImageTransition.m */, + 69531482F2B768A657877C539981C6C0 /* SDWebImageTransitionInternal.h */, + 70FD8AAA2CE8990A75B251A7DB733A44 /* UIButton+WebCache.h */, + 314E3FC91EB8B408236ED4C78B885D16 /* UIButton+WebCache.m */, + 1F082CD62E0C970F3E5784F534C2966A /* UIColor+SDHexString.h */, + D05E4DF70402D17DD9ADCB116F461970 /* UIColor+SDHexString.m */, + F03B20F6D37CC749251AB5CCC78D72C1 /* UIImage+ExtendedCacheData.h */, + E2740E6113B346B5F92C5A0C756FECD7 /* UIImage+ExtendedCacheData.m */, + C4EC5042E6E856B691A7D1939E4C0753 /* UIImage+ForceDecode.h */, + 1137C7CB8F80567B0D1E813334A9CE20 /* UIImage+ForceDecode.m */, + 84D5E3254AD61B1D6892C52893B11492 /* UIImage+GIF.h */, + 4A5059C63ABDC7A8C19A82F58D03347E /* UIImage+GIF.m */, + 5D33CD5A23C022887101A35836C53F5E /* UIImage+MemoryCacheCost.h */, + DA52C7A4F18F8506C0F1D691E9E01A30 /* UIImage+MemoryCacheCost.m */, + EBF242B27782A449435704666A43D511 /* UIImage+Metadata.h */, + 2B16B55D82BA04C566A0E14C3B7C565A /* UIImage+Metadata.m */, + FA24E3EA4DBC7810C1D0683160F1E19E /* UIImage+MultiFormat.h */, + 3152142650040373F6DF17DC7EDCE186 /* UIImage+MultiFormat.m */, + AF6E2527E302487CA8D99CA6519CF408 /* UIImage+Transform.h */, + 8BA08173DE18AE8A2B6EA7B2AEE2CFE6 /* UIImage+Transform.m */, + 897DE7B8BFE04684270698FF1640A517 /* UIImageView+HighlightedWebCache.h */, + 86DB200E6E0B43E2BEA84EA1C5043A04 /* UIImageView+HighlightedWebCache.m */, + AB594CFD902A51491F4811092176CCD7 /* UIImageView+WebCache.h */, + C520414155B00A7A86D45345840BC9E2 /* UIImageView+WebCache.m */, + 01A59DDE6C3A3DF455E4923DE9E24D2B /* UIView+WebCache.h */, + BAD33734FD4C0B734EF00D7400AE8272 /* UIView+WebCache.m */, + 98843A0DA0B32A2AD534FD0DEDFF22AB /* UIView+WebCacheOperation.h */, + 4BDF28BF4E97F78036B3357A2C74EC85 /* UIView+WebCacheOperation.m */, + 8D9BD3652C8EDC1D4A7E44DC245F45FD /* UIView+WebCacheState.h */, + FF52F5016FBF42C07160178A3CBEDC23 /* UIView+WebCacheState.m */, + 3E0823A55D137C1E7C9C930CE4E0CDDD /* Resources */, + ); + name = Core; + sourceTree = ""; + }; + AC5BF8F58ED8A625189E2CEF729A4257 /* Serialization */ = { + isa = PBXGroup; + children = ( + B28696504959A346484C443F7CF0DF36 /* AFURLRequestSerialization.h */, + C7F930C89751DC04A3487A6BD11481AF /* AFURLRequestSerialization.m */, + 3D404496E0E7117743D4AEBE7AE24618 /* AFURLResponseSerialization.h */, + 74CC4B9CFC981830544FF916E5A83CC7 /* AFURLResponseSerialization.m */, ); name = Serialization; sourceTree = ""; }; - 85B75F337454E19B6DB07D5BFED6910D /* Security */ = { + B0734A7E9B5E606D50EDD0DA2C896796 /* MBProgressHUD */ = { isa = PBXGroup; children = ( - 734F03C8AE34E4BF5AA95F0C22C9132E /* AFSecurityPolicy.h */, - 08EF9795944F1F76142394C0D120CD4D /* AFSecurityPolicy.m */, + 274701B9FD567BF7C90D7937AA1BD9E7 /* MBProgressHUD.h */, + 4BD9A42D3BF590774696502C0055F7A4 /* MBProgressHUD.m */, + 88B5957DFA31D30CD741904CD4F457F9 /* Support Files */, ); - name = Security; + name = MBProgressHUD; + path = MBProgressHUD; sourceTree = ""; }; - 8C268B80E7A888D5142A1DBFD03D8C2B /* Support Files */ = { + B1D1473068E770C594324FCED2046F85 /* Reachability */ = { isa = PBXGroup; children = ( - 9CC4D51ACB5F3D83C2D0EE062AB1C1A0 /* AFNetworking.modulemap */, - 61FEC94A1F66D9DBD17D3B3A8B67B021 /* AFNetworking-dummy.m */, - EF575EE074BFD200BBAD5F505F912C89 /* AFNetworking-Info.plist */, - B453AD17732737A1146E48ABA80D5C3C /* AFNetworking-prefix.pch */, - EFA437ED007B641FA2C2EB6A9D241B8F /* AFNetworking-umbrella.h */, - B68123BC480EBE40D31AA867B2F0CF54 /* AFNetworking.debug.xcconfig */, - CB27BB6250699AEC351AC4AE7A9B8003 /* AFNetworking.release.xcconfig */, + B739A52251D68282C5B0263B144232C8 /* AFNetworkReachabilityManager.h */, + C12CBD1B642F949D5B66893FC8011182 /* AFNetworkReachabilityManager.m */, ); - name = "Support Files"; - path = "../Target Support Files/AFNetworking"; - sourceTree = ""; - }; - 90011C6D03931743029780F4216678BF /* Support Files */ = { - isa = PBXGroup; - children = ( - D6FA0688FC0C3F840F62D0DFCC7646DA /* MJExtension.modulemap */, - 61F45ECF668F559F21F38225F3EB83F4 /* MJExtension-dummy.m */, - 2C4E1C33C8A637CB449DDD1C91F8F017 /* MJExtension-Info.plist */, - F2954D34317333F8ACD76FEBDA3875D6 /* MJExtension-prefix.pch */, - 5A9823CD9135BF2978F9FFBCEDF1A0D1 /* MJExtension-umbrella.h */, - 4DA388EA2C00B86043D7ECB9FD29B004 /* MJExtension.debug.xcconfig */, - B0D7217C129ADC2B106BFB2CDBA1E07C /* MJExtension.release.xcconfig */, - DBBB6ECAAC917B783A2F4E267ED926C9 /* ResourceBundle-MJExtension-MJExtension-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/MJExtension"; + name = Reachability; sourceTree = ""; }; B94D7768568A9992200DB461E8CF687F /* Frameworks */ = { @@ -1520,367 +1956,47 @@ name = Frameworks; sourceTree = ""; }; - BC2D353174A306AED85B1ED3F6D08BDD /* Reachability */ = { + C84070347FBAC799B2E5330C7C5A1235 /* Security */ = { isa = PBXGroup; children = ( - 1AB03621F51ED0C5372FA186A7FF27E4 /* AFNetworkReachabilityManager.h */, - AF66C3B81539E211933AE9075A3955E4 /* AFNetworkReachabilityManager.m */, + 1F15BF5283CAD8E6C1BEEA5CB94BAC93 /* AFSecurityPolicy.h */, + 173115427F2F01D51E077F3DD1E38B3F /* AFSecurityPolicy.m */, ); - name = Reachability; + name = Security; sourceTree = ""; }; - BC92629CEDE8FC0D38013FF5A64C3FC5 /* Core */ = { + CD2C29F8BB7C422E989E7520B8A8DBF8 /* Masonry */ = { isa = PBXGroup; children = ( - 832387A43D4F18E7585E3A63B082600E /* NSBezierPath+SDRoundedCorners.h */, - 94C8D4650CE58C8BF079BB5F8200F71A /* NSBezierPath+SDRoundedCorners.m */, - B036D97AF3C36613B6F91C8800239E05 /* NSButton+WebCache.h */, - 9FD68736B08D95BFEE9922A0FC83D5F5 /* NSButton+WebCache.m */, - 3C41A09FD257C804D6C5A03BAFB8EBF5 /* NSData+ImageContentType.h */, - 945CA7177BB3031B95B3DAB1FFD5A192 /* NSData+ImageContentType.m */, - 95FADFC756FD830D966DE01DA2A6F117 /* NSImage+Compatibility.h */, - 14EC6D7F2EC41EF8578655554F8A5D31 /* NSImage+Compatibility.m */, - 02395FDE41254ED8ECBFDDDBFF64594B /* SDAnimatedImage.h */, - 68DB8636DC57D1EA269FFF0F85A7CDB9 /* SDAnimatedImage.m */, - AC94C322E266D6376E6DE6CAE85D7E8A /* SDAnimatedImagePlayer.h */, - 155AA2BD6DA9E0C46A54746FABD3CD0E /* SDAnimatedImagePlayer.m */, - E72595738B0C7B9E4F6E5B90FFBAE3CB /* SDAnimatedImageRep.h */, - 572AF713352151524DA6B05D4263649C /* SDAnimatedImageRep.m */, - 58E98AFB46C417CF6290EB04E8F2D36B /* SDAnimatedImageView.h */, - 2B9DE402CC26138FF7264A97E65D6176 /* SDAnimatedImageView.m */, - A085D62853E322C3E916CA25247D52ED /* SDAnimatedImageView+WebCache.h */, - C7AB4A8B7215D7A581244E9E1D5AC691 /* SDAnimatedImageView+WebCache.m */, - F1928DBA0FA8888380187043654350EC /* SDAssociatedObject.h */, - 04829971197FA4C00B42EFEDE2C5C947 /* SDAssociatedObject.m */, - 4CC8332A2663A93250DBF257AFC80616 /* SDAsyncBlockOperation.h */, - 0026144A7C9427BCB0EBD09F94066337 /* SDAsyncBlockOperation.m */, - 62AA2800B9EED6DEDB0EA803F85B170D /* SDCallbackQueue.h */, - 9319E9876FB247FF2E05742896D5DB29 /* SDCallbackQueue.m */, - C8B5618982E2E6168138CE3FFF075755 /* SDDeviceHelper.h */, - 84DF2122A52829CDBB8BB5A70349A035 /* SDDeviceHelper.m */, - 06D281342153AB8C983B263A38760879 /* SDDiskCache.h */, - 3BB2BB05116C08E45DC29A9B3A181F8F /* SDDiskCache.m */, - 7DD3DA3153B979F42E9CB8B3C038E490 /* SDDisplayLink.h */, - B8089B3F5031231D66F1DA4588E3421A /* SDDisplayLink.m */, - 73686ECF343E491D810253E33779376F /* SDFileAttributeHelper.h */, - BC11A65E54D99B9B24243ADDDF521A45 /* SDFileAttributeHelper.m */, - 92B8CD2105996DB89F57CE499469BD0B /* SDGraphicsImageRenderer.h */, - F023B284B56FE09E86CC5E2AB85F76DC /* SDGraphicsImageRenderer.m */, - EF160706DC6937D3D67236093EED5E10 /* SDImageAPNGCoder.h */, - 1FAEB398159754D70CABE3317776EE95 /* SDImageAPNGCoder.m */, - 645D159800FF6C0D6AA4195700142C1D /* SDImageAssetManager.h */, - A20DFE314258D8BF8834CBF4844EA182 /* SDImageAssetManager.m */, - 5077384A4E39CE59F6A200B5D75878E0 /* SDImageAWebPCoder.h */, - 1D6C016886A6736D8F32E4AC8B32441D /* SDImageAWebPCoder.m */, - 40FC5885FF4C6338AD85780D12CAAE8B /* SDImageCache.h */, - 6950AEBC05A59EB2DABC29EE342A50A4 /* SDImageCache.m */, - 62A83195A830F9F701797F5F472A25CB /* SDImageCacheConfig.h */, - 457F5A150D925E56EB5E3003716A505C /* SDImageCacheConfig.m */, - A1FAF256EF0306662FC45B68A0E96EDB /* SDImageCacheDefine.h */, - 2A71DACCDF69AAC79D62E15FCDF12729 /* SDImageCacheDefine.m */, - B89DC13493075D3D97B8C48A41AF2CC0 /* SDImageCachesManager.h */, - AB6DF8B142DDA0EA0C528DAA9A74D246 /* SDImageCachesManager.m */, - 244C9CEE32E6C06BAA36978339784F3B /* SDImageCachesManagerOperation.h */, - 177936A16BDD3BEFF1F1116F078C34F5 /* SDImageCachesManagerOperation.m */, - 94E5C41EB7247DD6A572963BAEFD320B /* SDImageCoder.h */, - 113489F1D1C9AF69F93BE35BD4EB07C1 /* SDImageCoder.m */, - B4D7E2A6D4D6278883FFE5F4E1E5776C /* SDImageCoderHelper.h */, - AA126E980A8C9FE2B501C70B08282019 /* SDImageCoderHelper.m */, - 471A82A49DEE185FC6E3F063F4845141 /* SDImageCodersManager.h */, - 8F63BFF477F03229703E85F15BB2CF25 /* SDImageCodersManager.m */, - 6A585899AAD155043A8A9AEE95D2E130 /* SDImageFrame.h */, - C610AA6DA97A6D2E48F1FD51BCBCE402 /* SDImageFrame.m */, - D945D7910827E844164E6FC054D435C1 /* SDImageFramePool.h */, - D0304D1DA2F09D8CF73F53F3CC671F5D /* SDImageFramePool.m */, - 638C03AF9AB2713DC73B30A646C0DC90 /* SDImageGIFCoder.h */, - 38695581293B42C0F3123AA0BB83E733 /* SDImageGIFCoder.m */, - B1D7A18C6F68303CF83BFCF21D2952B6 /* SDImageGraphics.h */, - 57EA3263D4FB80CF7D624F5F6D030E39 /* SDImageGraphics.m */, - 8FC366209BE4A85A302A409FA2080672 /* SDImageHEICCoder.h */, - 5FD3BF85130EDA6091AA65991889DE58 /* SDImageHEICCoder.m */, - 6ABF17E26D71FF7DF0ACDF8B97EA1635 /* SDImageIOAnimatedCoder.h */, - 5AEB2333F1EB13C03FB8CEED793E1015 /* SDImageIOAnimatedCoder.m */, - 80DFC2DC4F2DDB0E78A336D975C7B17F /* SDImageIOAnimatedCoderInternal.h */, - 17817FCBF8471C21BDA14D3091C3589E /* SDImageIOCoder.h */, - B7C3681B606BB3EA4AC1943865B2A002 /* SDImageIOCoder.m */, - D744A5DC01907A26FA69952B99FEB476 /* SDImageLoader.h */, - D7E3C97F6197503336E0C97BCB81F513 /* SDImageLoader.m */, - 9BF31B7CF51BCA3D85DCE8EED8BAC1F7 /* SDImageLoadersManager.h */, - 1B75FDD7C617DB19F933212AFF221042 /* SDImageLoadersManager.m */, - F73AA51EEC37F9E05CE430B26CA12F28 /* SDImageTransformer.h */, - 5AE2E7C5A0A292BFF014DD00F925C407 /* SDImageTransformer.m */, - C04C1BA525AC602FB2900B0D54AA5E17 /* SDInternalMacros.h */, - 650163ADD37FEB8E42F2D54910D9E730 /* SDInternalMacros.m */, - 97C6CD442B2A0C50D32BC3862DF59981 /* SDMemoryCache.h */, - ED818AE88698B4DC24D187EB6F01F30E /* SDMemoryCache.m */, - 1982360AE67874E8C561F430E4C814EF /* SDmetamacros.h */, - 8FBC9F2ACA54B722C75B9CEAC5A6BCBE /* SDWeakProxy.h */, - 3118B9573F7B3C28EA6123AE2CAE6B25 /* SDWeakProxy.m */, - 3D18A8212C10F1A7B2F2D49D19849371 /* SDWebImage.h */, - 89B1F13EE03D24E12673B137A9CF5D83 /* SDWebImageCacheKeyFilter.h */, - 024FCA5915EF94C429ADBEF0C289FDB7 /* SDWebImageCacheKeyFilter.m */, - 72F87E260CFDB0280F5FB56A5C465226 /* SDWebImageCacheSerializer.h */, - 5D02D38AAAAA529B8ECD4D448FBD3E8D /* SDWebImageCacheSerializer.m */, - D2CCA2001B6A3A7B486AAE84DF128CD8 /* SDWebImageCompat.h */, - DB661D651B8F71A7983DAE8D69D98538 /* SDWebImageCompat.m */, - F5541E7500F1219F86E653EDC63EB34B /* SDWebImageDefine.h */, - 8BB51939C292589929B87528EE42E89D /* SDWebImageDefine.m */, - 2184AC68682FC6323EA668E0176C0918 /* SDWebImageDownloader.h */, - 2BCD71D98846176BC892845088F27C3C /* SDWebImageDownloader.m */, - D28AA8EC2452B881DA6683AA639F5EEC /* SDWebImageDownloaderConfig.h */, - D646BA8F519D540CC327EB5212DF98FE /* SDWebImageDownloaderConfig.m */, - 57AA8DF80B9A065EB5B7DB8BDDCA493A /* SDWebImageDownloaderDecryptor.h */, - 208D276AD67B36842977F8CA2F4DF301 /* SDWebImageDownloaderDecryptor.m */, - 15B8F54FDAA598ECBB2D1EF7BCCA9BCE /* SDWebImageDownloaderOperation.h */, - B2CEB63BF676CEE8E36C9825FBC2D9FF /* SDWebImageDownloaderOperation.m */, - 33BC65FB1012369C1CBD9668499D4BAA /* SDWebImageDownloaderRequestModifier.h */, - 5BBFBF8D6A03A53F430C80D3F81065AB /* SDWebImageDownloaderRequestModifier.m */, - 5CADC2A13C9EE60949F900D6769C01BD /* SDWebImageDownloaderResponseModifier.h */, - 406EAF44DFFFBD779120260FF6139F1A /* SDWebImageDownloaderResponseModifier.m */, - 8E1F282017956A789A6F1005875439FC /* SDWebImageError.h */, - D97B9D67F2DDCD1F09147AB8F5C4758C /* SDWebImageError.m */, - 09E614A5D6C7CB7F55D8BAAD4937FCAB /* SDWebImageIndicator.h */, - 12A83FDFA77E9B4C72711E4B96D6CD23 /* SDWebImageIndicator.m */, - C964990B4A1F0976B9050A880326A124 /* SDWebImageManager.h */, - 7F08A828C0693F3B42589C54C848C4AA /* SDWebImageManager.m */, - C91A63C5E15A4287E5CB7661D503D5FD /* SDWebImageOperation.h */, - E6056659A998527E6442283401F73F8C /* SDWebImageOperation.m */, - 16441887F0FDE33C63A476FD3099D167 /* SDWebImageOptionsProcessor.h */, - EF6AC4469928F723BD5B06DB64B9961F /* SDWebImageOptionsProcessor.m */, - 92D95C5758825D92D4ABC96CD6511473 /* SDWebImagePrefetcher.h */, - 4991209596786BDA2DC8D5FD065F088F /* SDWebImagePrefetcher.m */, - A808479C458FB22956C481AD3662118B /* SDWebImageTransition.h */, - 0ED01BEB5ED329F0E0E5D68A89BE0948 /* SDWebImageTransition.m */, - 2FF06236E502AA89230AF8C19975BD81 /* SDWebImageTransitionInternal.h */, - 254C72B378FB8F599D2A2EFDC33A7489 /* UIButton+WebCache.h */, - 17FD4A3105C0D577397492893A95BAF8 /* UIButton+WebCache.m */, - 0432ECCC6672456D4AFC3E4D36460C5D /* UIColor+SDHexString.h */, - DA1090554ED26050AE6EE7323ED5D003 /* UIColor+SDHexString.m */, - 287837E4829C3C9325D7CA4AE61A932B /* UIImage+ExtendedCacheData.h */, - A4EB383CBD6229B38BC7F0518892956E /* UIImage+ExtendedCacheData.m */, - 16AF74159530C7ABABC4CD6BE65EE86C /* UIImage+ForceDecode.h */, - 23A54C1843E43882816ACA6AB8E7A6FC /* UIImage+ForceDecode.m */, - 7716AB4C65CD7C7249AEAA3B083AF83B /* UIImage+GIF.h */, - 023ED970984BA7A7B038E49A75B861CA /* UIImage+GIF.m */, - CDF5A49B2F9F5D09CEE400AE059E91A3 /* UIImage+MemoryCacheCost.h */, - 85DB6DCE5C9B3EA2CCD2525F1FABA86F /* UIImage+MemoryCacheCost.m */, - 7A27148D4048B706E12C8297CFE61677 /* UIImage+Metadata.h */, - DF1BC24E0079201F335D0A854F1B6FE4 /* UIImage+Metadata.m */, - E38E6DC0F4056572F28EA74749D1B5CA /* UIImage+MultiFormat.h */, - 106F7E7EDB4970617E93A975091A13D2 /* UIImage+MultiFormat.m */, - AEBC44725D7256BCC081E7D8B054C3BE /* UIImage+Transform.h */, - A23A3033A431C14F5AD66E9741FB3A58 /* UIImage+Transform.m */, - FDAE70C6181A394F04CAA424A58045CA /* UIImageView+HighlightedWebCache.h */, - D43725BD43363788D28DDA9B1C38B57C /* UIImageView+HighlightedWebCache.m */, - 3EBA2C9811634670ABA72654E24EA30F /* UIImageView+WebCache.h */, - D0604B822D259AC63DA0DC89535FBEAA /* UIImageView+WebCache.m */, - 128F826C85582AACFFD552E11D4D2830 /* UIView+WebCache.h */, - 2807555CD094E0AD4E105AE6054D768A /* UIView+WebCache.m */, - 876AE024D71B4EF1E561674AFE730133 /* UIView+WebCacheOperation.h */, - A2BA9CFAA095243614EE8971D643600A /* UIView+WebCacheOperation.m */, - 065C7DD137D50B90DCD09EC4867870DD /* UIView+WebCacheState.h */, - B98325935BCCAB0088E7C38BEEB0AC9B /* UIView+WebCacheState.m */, - DEF8909F394AA47B86D8F6A8320A0AE3 /* Resources */, + C48E3A880F57BDDE05010EB0D4A8AC98 /* MASCompositeConstraint.h */, + 12810823ADAFE3101B05E3EC0341E431 /* MASCompositeConstraint.m */, + 347FED4AA48E5E29E91B5C3ECD629C7C /* MASConstraint.h */, + 997B915D679C92DAC1CA5BC9AB14532D /* MASConstraint.m */, + 83AB9EBBB91A99CC0152DC02DD93CBD2 /* MASConstraint+Private.h */, + 5DFE39E4DB7E47FF7ABF20ECDA02C502 /* MASConstraintMaker.h */, + E945EE8B2F5AA809194A0E7B50374ACD /* MASConstraintMaker.m */, + 7279EAB65BFFE7CFBBE326A2535AC656 /* MASLayoutConstraint.h */, + CD1A784F64F6D1175B41B1E14733EAB8 /* MASLayoutConstraint.m */, + 7BBEEA2B34D86929E70349BB590B1E1E /* Masonry.h */, + A36B56F43675EB04F1CC908C739FD537 /* MASUtilities.h */, + FD619A8C6AE1530EBE78720CF5B6E070 /* MASViewAttribute.h */, + CF77C33FF507E05A69D4D97B14A9B16A /* MASViewAttribute.m */, + 17A59E796E71BB3C86ABBEF16B2E64E7 /* MASViewConstraint.h */, + 439A955032A803528601A53D13E98732 /* MASViewConstraint.m */, + 80F652D71E3E50AF10964AD227D56F36 /* NSArray+MASAdditions.h */, + E698A617BF04E3C18EC0826D774FBF19 /* NSArray+MASAdditions.m */, + C844C45B584819E36A3D764C2F521E40 /* NSArray+MASShorthandAdditions.h */, + C9ADB03572CC33002F4B5FFF7D234C78 /* NSLayoutConstraint+MASDebugAdditions.h */, + 41A05832F4F15AABB53220573DD1AD99 /* NSLayoutConstraint+MASDebugAdditions.m */, + 678A796D8A78AFF578F121454B12F8CD /* View+MASAdditions.h */, + 1ECAF84BD3D3BFFD155656F0A8A4203A /* View+MASAdditions.m */, + 430466B5BE179DB19438855ADE959F3C /* View+MASShorthandAdditions.h */, + 5DFB55B62B7110A8A5C0B7C24C0A106D /* ViewController+MASAdditions.h */, + 5313BF3FFF47D27555E3AD6186F4951A /* ViewController+MASAdditions.m */, + 91C6F8C1BF53311C422FB69B867EB29E /* Support Files */, ); - name = Core; - sourceTree = ""; - }; - C237AE40BBC285C251C19197470498EB /* Core */ = { - isa = PBXGroup; - children = ( - 9A5A7EFB9ABF468D7305DA246936B892 /* CALayer+Lookin.h */, - 27BDAC0DA386BE97284D684C8E350F09 /* CALayer+Lookin.m */, - E919EBA36C3E6D227E73B54E38BF26ED /* CALayer+LookinServer.h */, - D62DC2DA817A3EDDAAA844C01472ED21 /* CALayer+LookinServer.m */, - 8A1809C53F7A88540458376FBAF507C4 /* Color+Lookin.h */, - D31863C315A1E1CCB62476A749205848 /* Color+Lookin.m */, - CC9B571A19A9F5D7225598AC30AF7E0D /* Image+Lookin.h */, - 8E7450686216DDFC68F7AC94B8952B7A /* Image+Lookin.m */, - 7FFA0EDEB465D63DE04725E94D60FA0B /* LKS_AttrGroupsMaker.h */, - 1DC887BCA33298C24FE30940EE87D81E /* LKS_AttrGroupsMaker.m */, - 7EC149DD04B38B6352EC2E66AD38711D /* LKS_AttrModificationPatchHandler.h */, - 464CCF2096DF907F8A1777249A52131D /* LKS_AttrModificationPatchHandler.m */, - 1D674CE0C910213F79BE96B2A0392AD0 /* LKS_ConnectionManager.h */, - 3828108B263E66B9F32591A4322BEBA3 /* LKS_ConnectionManager.m */, - AB23AA27F975874EE1A3E1EA08DA741E /* LKS_CustomAttrGroupsMaker.h */, - AB33DDD90875C4148623FEEC4874293B /* LKS_CustomAttrGroupsMaker.m */, - 72B915563644A1FC0237C7B216F51887 /* LKS_CustomAttrModificationHandler.h */, - 7F69F081E6D6A2642737315D3ADA1CC3 /* LKS_CustomAttrModificationHandler.m */, - 37F59E3D43780FECC0B07C3EEA62B646 /* LKS_CustomAttrSetterManager.h */, - 61181E369DFBFA5F80FBC45E82473070 /* LKS_CustomAttrSetterManager.m */, - CF54D2B19B7B898F8749626736C6A367 /* LKS_CustomDisplayItemsMaker.h */, - 8DED3EBF67B7C663A66132C35837AD91 /* LKS_CustomDisplayItemsMaker.m */, - 326F74FD6BD5B13C7566D9B8E54A947D /* LKS_EventHandlerMaker.h */, - 2C3EE97397E9A1DB2BB13788B53925A4 /* LKS_EventHandlerMaker.m */, - F648120AC9E33EAE58AA5B953C9CDB2C /* LKS_ExportManager.h */, - FAAA120B05EADE7C41D993D48251FF01 /* LKS_ExportManager.m */, - 3B1DF84CE8E8F02BCA15D175A41595D0 /* LKS_GestureTargetActionsSearcher.h */, - BD5D9ACE60BD3F7C5357293FE159E089 /* LKS_GestureTargetActionsSearcher.m */, - DA7D29143B5222573E44C89FC5281E16 /* LKS_Helper.h */, - 3647261DA2FC95D0CA4E87D424C12196 /* LKS_Helper.m */, - 8ACF5FED576BE1C7180C71DAEC03A946 /* LKS_HierarchyDetailsHandler.h */, - 0321AE443BC53885AC283309062AC0C3 /* LKS_HierarchyDetailsHandler.m */, - 6146D488C951FCE2AFAD197A22FAC52C /* LKS_HierarchyDisplayItemsMaker.h */, - C0567853C23ACC665751D3D0565F56E9 /* LKS_HierarchyDisplayItemsMaker.m */, - E217A87E8CD14395B6915FEAEEDD5664 /* LKS_InbuiltAttrModificationHandler.h */, - DFB61356879F3B6C9F0885ADF0835717 /* LKS_InbuiltAttrModificationHandler.m */, - 17822CAF41F95D135852C3301C62A86A /* LKS_MultiplatformAdapter.h */, - 23587035AC48CAFC10C042B9A21DE1CF /* LKS_MultiplatformAdapter.m */, - DB8380AC1457059FF2EFCA669AF450E6 /* LKS_ObjectRegistry.h */, - DB5341B66CDDCE442407CD108DB097D2 /* LKS_ObjectRegistry.m */, - 6204C6C6CB4D8A46E3F99F003B5B6600 /* LKS_RequestHandler.h */, - A4A2B6CD9939B7F97AA34443525A657F /* LKS_RequestHandler.m */, - C0F07273ADA871BC090DF5208E1A0A56 /* LKS_TraceManager.h */, - 429B18C6844509307D144B3D82531314 /* LKS_TraceManager.m */, - 5806CB3C712CE08D8ABAEFC71AE912DF /* LKSConfigManager.h */, - DED53EADD673E8344ADE4F29E65B05EA /* LKSConfigManager.m */, - BC10A4F27CB28FEFAFAAC64FBB83CCFF /* Lookin_PTChannel.h */, - F613D680436DA336652ED3BAEB369437 /* Lookin_PTChannel.m */, - 783FB276937B3622B36CCC53DD11E38E /* Lookin_PTPrivate.h */, - A13ECC896BF84437C0ED7BCBBF1E575A /* Lookin_PTProtocol.h */, - F35FA64D7BA93E67E700BB9CFECA2FE6 /* Lookin_PTProtocol.m */, - 0D89BDDD3D7C7F280DD391FD57277525 /* Lookin_PTUSBHub.h */, - E607C82BF99994CACC0E78311762BD7B /* Lookin_PTUSBHub.m */, - 1DBF92CBCD504B7655E136ED3F7D4692 /* LookinAppInfo.h */, - C424A765318BDFE6E50286A28719DBEB /* LookinAppInfo.m */, - 12D98E55A185D3ED0A0ED35568176EF0 /* LookinAttribute.h */, - 0B074E84A256BBE4C5D6915483D33E99 /* LookinAttribute.m */, - 5109FB802ECA3A58140B2EA99237F019 /* LookinAttributeModification.h */, - 9C421B7C412665959652CDB2E4A9353D /* LookinAttributeModification.m */, - D81389FD4C9A4DEF5A2060CF2B2A688E /* LookinAttributesGroup.h */, - A245A87BA546D569D81C4C62E6917396 /* LookinAttributesGroup.m */, - D125CF8A12AEB902BF171C7549055308 /* LookinAttributesSection.h */, - 4A48957DF117CD5E47CC7837EB3B0C20 /* LookinAttributesSection.m */, - 970E9876B233086A3D751ACA4D70F9C6 /* LookinAttrIdentifiers.h */, - 3449DFFF2286997534C04DABECAC16C9 /* LookinAttrIdentifiers.m */, - CBD3AE73EB188B66AA675A72083BBE9B /* LookinAttrType.h */, - A2D67C47E521ED4D7C34D7EC8D0351F6 /* LookinAutoLayoutConstraint.h */, - F672E8709EE8033AF31A696FDFBDC7AA /* LookinAutoLayoutConstraint.m */, - 163EB06BB1AA320702D0A1A4FA1A9992 /* LookinCodingValueType.h */, - 7CB1AFAA2BDF542C6EB87C7190254DC0 /* LookinConnectionAttachment.h */, - 74B7B393190F8ED4CF8F70CFED858B48 /* LookinConnectionAttachment.m */, - 0E4AA34B2481B6792A3DC3B4629887E1 /* LookinConnectionResponseAttachment.h */, - B41FEDC10A936AE8E0F53E5FBFF1665C /* LookinConnectionResponseAttachment.m */, - 622F6ED0A6BF382A4C8A4CEB78F2DEDF /* LookinCustomAttrModification.h */, - 62D6930B7711EEC4F37BEF97746AA2C2 /* LookinCustomAttrModification.m */, - D5E19924A2406858AAD1FC46C71332DF /* LookinCustomDisplayItemInfo.h */, - 85BF9DF79D629AED4E7665E99B9A9A59 /* LookinCustomDisplayItemInfo.m */, - 54E567750B745108F1ADE112FADC3683 /* LookinDashboardBlueprint.h */, - 972C9EBD40CB1A4E78F42C6A8B746C6C /* LookinDashboardBlueprint.m */, - 7247EC33F8A78F5C637623C4DE5F4CE3 /* LookinDefines.h */, - 654B7441631139FA93DE9402C0691827 /* LookinDisplayItem.h */, - 6C7C30C3A82271A0F12CE2EEF18DE7D0 /* LookinDisplayItem.m */, - F3EE4F79EB9430C5D53E0A47FA9BC09F /* LookinDisplayItemDetail.h */, - 72B184F2B801EED2FCD9843F638CBE4E /* LookinDisplayItemDetail.m */, - D00B3D5C37D2FF57ECB26E0EDE63289A /* LookinEventHandler.h */, - 6D69B1BF45C02818E7FC7225E601EA13 /* LookinEventHandler.m */, - CE25ED6CF9670E7896E51158F52BA589 /* LookinHierarchyFile.h */, - 252C61161911BA9535859808F4C2A8EB /* LookinHierarchyFile.m */, - 19292A12696E9A832B1F849C625A4DDB /* LookinHierarchyInfo.h */, - 5A189F398BE510E7B319CC3300FD8F9B /* LookinHierarchyInfo.m */, - 333ABAF85F95BC941804A6F683E53BBE /* LookinIvarTrace.h */, - 3129E754B4B0C1CD6B4C146E5AE2360D /* LookinIvarTrace.m */, - BB2F587AA84A31548781D4331CE6A663 /* LookinObject.h */, - CFDC6BCD4BA0D5546AAA2BDF7F85FD90 /* LookinObject.m */, - 852A25842A8D8665E6923F3AE496EF4A /* LookinServer.h */, - 41DDF9F8A6577A94317508E854DB067A /* LookinServerDefines.h */, - 188F3CEB67BA2F2F98DF7779282D17C6 /* LookinStaticAsyncUpdateTask.h */, - E27A57D106BA1F686D1F1EF61BCCECCA /* LookinStaticAsyncUpdateTask.m */, - D97CF6DE5D7C5DF629751E70D281C245 /* LookinTuple.h */, - B3BD9FCA60B56210574573E7AA04F78E /* LookinTuple.m */, - 888CEDA5544B37CB5E23B893BD6DCD04 /* LookinWeakContainer.h */, - 8285CAC84344E7CF3B9E5DCB68540DB5 /* LookinWeakContainer.m */, - FE02A0D85853FC5650E64297AAD9AC2D /* NSArray+Lookin.h */, - DB452AE8652F8980BE53E3B9CBC53C91 /* NSArray+Lookin.m */, - 46E25997E19857A9DC2B1641E9E6DBF9 /* NSObject+Lookin.h */, - 90444EF3531CB7C1020F6FD7290BDFC9 /* NSObject+Lookin.m */, - D611D48BCE9E640C43663E2F13F9745C /* NSObject+LookinServer.h */, - 77AB8F2CB63DFC25D6209FEF0598B84D /* NSObject+LookinServer.m */, - DF49970205D35F073CC42822E0CA7373 /* NSSet+Lookin.h */, - A6CD1F804C7653F562D79E1BCDBE2CE6 /* NSSet+Lookin.m */, - 35D9676AD5F2D16383074D7616524F2F /* NSString+Lookin.h */, - 80A3B32E224CFE4ADC45DABBF86A9DA3 /* NSString+Lookin.m */, - 4FDF7ECF8C6D8AA904A22072806CE983 /* Peertalk.h */, - 43092D80CCA4D4FF3807F7E6F2C75D3A /* UIBlurEffect+LookinServer.h */, - 7D5EA1884E0F9F70D07487B825626804 /* UIBlurEffect+LookinServer.m */, - 9EE0BC2C14C847A19C15872D3BD03614 /* UIColor+LookinServer.h */, - B89EEDFCB034E3A1C6593AF9E1DFE193 /* UIColor+LookinServer.m */, - 8F24D6A0AC44ADDE1723705C5AC64EF8 /* UIImage+LookinServer.h */, - B5690E885F6A6638CC16D1B0DC1210D8 /* UIImage+LookinServer.m */, - 45090ED336D16C5189EDAC8ED9B67A35 /* UIImageView+LookinServer.h */, - ED01F14532B4FDCE539BE00A8D3C2638 /* UIImageView+LookinServer.m */, - ECF7539516B56EB3E414596115FA4C28 /* UILabel+LookinServer.h */, - 8E373F587419E70BA0E69E2506B48FF0 /* UILabel+LookinServer.m */, - 5870C84B96B7FC2BF3E1B4EF89B7EABB /* UITableView+LookinServer.h */, - AA05D249F6490500E244A09C161B30D4 /* UITableView+LookinServer.m */, - C2CA9F3DD9E40BF1773B91B7D4717148 /* UITextField+LookinServer.h */, - 04CD167E9039DB1882385C2FB0755028 /* UITextField+LookinServer.m */, - EDFDA31DC51830774328969AB1B612D1 /* UITextView+LookinServer.h */, - 69F167782D6A44DCECF096095F95176D /* UITextView+LookinServer.m */, - 2C21DCF8696E4CBF4739CFC20EE9B73C /* UIView+LookinServer.h */, - C7503F25F63DE06145BA76F86802DC2A /* UIView+LookinServer.m */, - 0EB02200319F068BAA801EE10D3180E2 /* UIViewController+LookinServer.h */, - E40CD592C9415041502E624ED9EE559B /* UIViewController+LookinServer.m */, - 38C02636331C10A7BA9A1348C25A1094 /* UIVisualEffectView+LookinServer.h */, - A8895D2D2C4915F7E01602C14C9790D6 /* UIVisualEffectView+LookinServer.m */, - ); - name = Core; - sourceTree = ""; - }; - C539B8A9508E6A4A85387C3F04621824 /* Support Files */ = { - isa = PBXGroup; - children = ( - 85714C86B625827EB6C21227A0E6D653 /* LookinServer.modulemap */, - 2D21D3AFADB4E7E959AAAB06694A674E /* LookinServer-dummy.m */, - E79E77EA4ADCC4C4216A6BF6C02097D9 /* LookinServer-Info.plist */, - 1007CCC0BA9608DA7713FDC27B9A82FD /* LookinServer-prefix.pch */, - 1C02B52C33D31D1DFF6A2805A51EC769 /* LookinServer-umbrella.h */, - 7D3CC4FF177FF84EC222FB0DDC2C4C04 /* LookinServer.debug.xcconfig */, - D5928043B7F64DD262C8EA8D39FC4225 /* LookinServer.release.xcconfig */, - ); - name = "Support Files"; - path = "../Target Support Files/LookinServer"; - sourceTree = ""; - }; - C60121B58EF5602E59CF1342A8D8E8D3 /* Pods */ = { - isa = PBXGroup; - children = ( - 490B2542F5D66A75889662EDC9E05EAE /* AFNetworking */, - CC47780061CECF7141903875A2110820 /* Bugly */, - E4A06DC4F4C7844CD6D7DF7C96865921 /* LookinServer */, - DD84FC21F1886DA29CC3466459C34868 /* Masonry */, - 58147962D9333A25D7D1E3982C097F1E /* MBProgressHUD */, - 48AAC7851C89DEA9CED89B65119898A8 /* MJExtension */, - 2755D8392AFF32A00C6458D0127F943C /* MJRefresh */, - F5BDB7B27BD2FEFF92874A9FFA6973D8 /* SDWebImage */, - ); - name = Pods; - sourceTree = ""; - }; - CC47780061CECF7141903875A2110820 /* Bugly */ = { - isa = PBXGroup; - children = ( - 2F3668E0A0E33C34959C549C8E4189F0 /* Frameworks */, - 28B2B9D0CD3CB713393E7EA4E837CCD1 /* Support Files */, - ); - name = Bugly; - path = Bugly; - sourceTree = ""; - }; - CDC903C7E48F8E3128614971D7497F2D /* Support Files */ = { - isa = PBXGroup; - children = ( - E8A65712E6880670F20B30D103373842 /* MJRefresh.modulemap */, - 46C38C97C8397AA3A88D774783FE2EEF /* MJRefresh-dummy.m */, - 2C33948F352E2619B0F6DBE9677B83A7 /* MJRefresh-Info.plist */, - 37B1E665CD1759D3ECAEAB44FE9F2663 /* MJRefresh-prefix.pch */, - C5A4E96A2BBFE25E97A8B39DDA0DEFDE /* MJRefresh-umbrella.h */, - CAD9935E88574CA5324720A1449DA69B /* MJRefresh.debug.xcconfig */, - A4AB45D03CDF4A6414C179861FA5DC70 /* MJRefresh.release.xcconfig */, - 6C8ECBCF7B77DBEB613E75B2C7F41870 /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */, - ); - name = "Support Files"; - path = "../Target Support Files/MJRefresh"; + name = Masonry; + path = Masonry; sourceTree = ""; }; CF1408CF629C7361332E53B88F7BD30C = { @@ -1888,103 +2004,38 @@ children = ( 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */, B94D7768568A9992200DB461E8CF687F /* Frameworks */, - C60121B58EF5602E59CF1342A8D8E8D3 /* Pods */, - D9B30AD65F3EE236DAC5C96B80F6C23C /* Products */, + 3671E8E87B05A9EEA2381DF1BDDFC43B /* Pods */, + 1C8A19406FF58E9BA6BC427CA02E9857 /* Products */, F7ED90CD818DD0484BF7DB0E1E3B9AB2 /* Targets Support Files */, ); sourceTree = ""; }; - D9B30AD65F3EE236DAC5C96B80F6C23C /* Products */ = { + DA4B75C5F151C7C51A2634486DB9A8E9 /* Support Files */ = { isa = PBXGroup; children = ( - A4FA15D44DF6BAC7550EDEED10862AA3 /* AFNetworking */, - 25664483ABF4DC8EC03E7472AA04333B /* LookinServer */, - 1FFED36A657123030ABB700256D73F15 /* Masonry */, - 8B8FAB0D627B17EDE1366984278705D9 /* MBProgressHUD */, - 2B276B0A79173A1D6E83C9B4FB9A4A57 /* MJExtension */, - 43EAAD2AB7E6B407E80E95F643F93D22 /* MJExtension-MJExtension */, - E49D6D248DD1CEE584E6776B9164A1B2 /* MJRefresh */, - 7E3097CFEFDA621E9FB0E62009FF87FC /* MJRefresh-MJRefresh.Privacy */, - 0B4AAC15A428CDC2A62AF9CC27BEA609 /* Pods-CustomKeyboard */, - DCA062FD08AC9694D8D781B3492421C5 /* Pods-keyBoard */, - B0B214D775196BA7CA8E17E53048A493 /* SDWebImage */, - CF1281E58AA1045D4B7F33FC56691C42 /* SDWebImage-SDWebImage */, + C325955B3AFF388601028CCBA8FE7A81 /* Bugly.debug.xcconfig */, + A6E3874D94D7084B2018828787E900CD /* Bugly.release.xcconfig */, ); - name = Products; + name = "Support Files"; + path = "../Target Support Files/Bugly"; sourceTree = ""; }; - DD84FC21F1886DA29CC3466459C34868 /* Masonry */ = { + EF9B35A118BCB941BCDF5AF6BEF10F48 /* LookinServer */ = { isa = PBXGroup; children = ( - ACAD387DAF06171B0CCCA098A7844B8F /* MASCompositeConstraint.h */, - CBBC71D8C791CE3C3C1A8F23DAC6AFE9 /* MASCompositeConstraint.m */, - 6ADFC8A9479ECC34CFA858E840DAEC66 /* MASConstraint.h */, - 2C25C598923F7C90D0B2A60AD70B6EB5 /* MASConstraint.m */, - 7699478B8B650E1EAD23CFF5B07A347B /* MASConstraint+Private.h */, - CBD909DEA48A3B96235A539DACD1CBCF /* MASConstraintMaker.h */, - 697DC475F2B03BC0752E69057A7CA83B /* MASConstraintMaker.m */, - DB800C9C7BAA818B8D589D490CA92A2C /* MASLayoutConstraint.h */, - 2C608E002A5A566E75CAEA3CE2636BEC /* MASLayoutConstraint.m */, - 9D7D95AB1031F290C3C6817EA5F01941 /* Masonry.h */, - D08D41D93653505FF8DE6D29F4CCCD4D /* MASUtilities.h */, - 0C4C1F05883DF3D04F61132B4F36E8DC /* MASViewAttribute.h */, - 1B1E68E8F031A3FAEA16F2C5DC3BD882 /* MASViewAttribute.m */, - AC27A4FE1B5F99C387A542FCAA1AAE76 /* MASViewConstraint.h */, - 16EE2B7F17D48DF298FBC60518EBF6F4 /* MASViewConstraint.m */, - 5A6A89615BCCC57230EB9C77EAD10932 /* NSArray+MASAdditions.h */, - FFD18411CB9BDDA27CCEFF66CCE60510 /* NSArray+MASAdditions.m */, - E478749AD5CB3263249FAC4E3C660C25 /* NSArray+MASShorthandAdditions.h */, - 689BDC5CBB44C0B90A7A06AD2C74AF7C /* NSLayoutConstraint+MASDebugAdditions.h */, - A8FE04060A3E22A889B5222EB4FA28D9 /* NSLayoutConstraint+MASDebugAdditions.m */, - 8B7DAD642D3DC69175A08133BBA52F3A /* View+MASAdditions.h */, - 177314E9657E363C61DAD19D6D75BDBD /* View+MASAdditions.m */, - B1D5C22EE1AD5BE0F23DC1DA79A9E790 /* View+MASShorthandAdditions.h */, - B247DEA97C1612D30C990B6DAD73CC4A /* ViewController+MASAdditions.h */, - 17A5496F72B08AB0D8322BF299C98176 /* ViewController+MASAdditions.m */, - 696AB9A323C81DB54B5534F8523C43AE /* Support Files */, - ); - name = Masonry; - path = Masonry; - sourceTree = ""; - }; - DEF8909F394AA47B86D8F6A8320A0AE3 /* Resources */ = { - isa = PBXGroup; - children = ( - 0152992BB7943DB61CE5E5A787E14B1F /* PrivacyInfo.xcprivacy */, - ); - name = Resources; - sourceTree = ""; - }; - E4A06DC4F4C7844CD6D7DF7C96865921 /* LookinServer */ = { - isa = PBXGroup; - children = ( - C237AE40BBC285C251C19197470498EB /* Core */, - C539B8A9508E6A4A85387C3F04621824 /* Support Files */, + 2A0D37AC8CA1AE1CBE28A7137A9A8E96 /* Core */, + 22639E9D63B6C87CC49D51F31C3315D6 /* Support Files */, ); name = LookinServer; path = LookinServer; sourceTree = ""; }; - E5B1F049215AC4C197B4D80A955F599B /* NSURLSession */ = { + F165B770E7AAC2C777662C4123F8BEC0 /* Resources */ = { isa = PBXGroup; children = ( - C16CD4771AC1AE19C30DA0554197E098 /* AFCompatibilityMacros.h */, - 70300CBC7FA31FE9EB7D12A715829E8B /* AFHTTPSessionManager.h */, - 421D28ADBF55E55C5123515F5E0E319E /* AFHTTPSessionManager.m */, - 835CBC4C9CDA7D225001E274730BE17D /* AFURLSessionManager.h */, - 02EC81829B186FB821463CE438E1ED19 /* AFURLSessionManager.m */, + C9C23FA770CA0E788C0254420531BFF5 /* PrivacyInfo.xcprivacy */, ); - name = NSURLSession; - sourceTree = ""; - }; - F5BDB7B27BD2FEFF92874A9FFA6973D8 /* SDWebImage */ = { - isa = PBXGroup; - children = ( - BC92629CEDE8FC0D38013FF5A64C3FC5 /* Core */, - 1E92B4342C5EE2501834016640DB2FD8 /* Support Files */, - ); - name = SDWebImage; - path = SDWebImage; + name = Resources; sourceTree = ""; }; F7ED90CD818DD0484BF7DB0E1E3B9AB2 /* Targets Support Files */ = { @@ -1996,9 +2047,34 @@ name = "Targets Support Files"; sourceTree = ""; }; + FC8A39BBFEDD2FF5C77C4A527F316FBA /* Support Files */ = { + isa = PBXGroup; + children = ( + 0B0141F455F11E7BFC47DD29FA6F898E /* MJRefresh.modulemap */, + 1D50FFCA396DF743CCFFE0B005196054 /* MJRefresh-dummy.m */, + B7EBC5B0B8BDA3D8746BA9B3E6E55DEA /* MJRefresh-Info.plist */, + 9C2E5020AD9E07D6A69986510583A867 /* MJRefresh-prefix.pch */, + D6377C1BB4346DD791C7EEA53C7AD860 /* MJRefresh-umbrella.h */, + 755CCA36E00C95FE42AB4DED32C05D4E /* MJRefresh.debug.xcconfig */, + C7C619E07B590F50371F76FB727BCBBF /* MJRefresh.release.xcconfig */, + B61A26D0A3DC024CA47B55CE46FB709A /* ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist */, + ); + name = "Support Files"; + path = "../Target Support Files/MJRefresh"; + sourceTree = ""; + }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ + 09EE4349480B078AFE00E65B49E502BF /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + A6FCF74348D1907891FBDE3F2E331136 /* DZNEmptyDataSet-umbrella.h in Headers */, + 2EFF1EFA2FF0D2F1AE44A9DDBB932425 /* UIScrollView+EmptyDataSet.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 0A3C36B0909C1076801B26E74787825A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -2237,19 +2313,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - AAF8FADA2EE4B95AC49E7B74976F0CE1 /* Headers */ = { + 5F83BB683AB24A3D1254696689952DDF /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 11AFFEE8BDE375C27BCB46DA5984AE73 /* Pods-keyBoard-umbrella.h in Headers */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - B3CDC74094391A729A84AEA80F432BD4 /* Headers */ = { - isa = PBXHeadersBuildPhase; - buildActionMask = 2147483647; - files = ( - CD418A72805490A697B6172BEDA624D4 /* Pods-CustomKeyboard-umbrella.h in Headers */, + C2F8C43CFD4C890405F217DA7E00C839 /* Pods-CustomKeyboard-umbrella.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2262,6 +2330,14 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + B6E355609B5178DB7F6ACDA2D18A84FD /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 03D2575E57C7D125A088A595AC648A01 /* Pods-keyBoard-umbrella.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; C6390AB04A018D57637AAB0718C31A83 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; @@ -2311,24 +2387,25 @@ }; 18BD026D2210082A239FC15D072FD5BF /* Pods-keyBoard */ = { isa = PBXNativeTarget; - buildConfigurationList = F05CE704EC605612AD8DB97F889D8472 /* Build configuration list for PBXNativeTarget "Pods-keyBoard" */; + buildConfigurationList = 0E74E3EFFDF91D0A8819AFC4A3E29C9E /* Build configuration list for PBXNativeTarget "Pods-keyBoard" */; buildPhases = ( - AAF8FADA2EE4B95AC49E7B74976F0CE1 /* Headers */, - 76A0E5907558D7DA0B5A05AAFEFC63FC /* Sources */, - 1F61AA45E7219C84C2853AF8F1AADBA8 /* Frameworks */, - EC2185D1A9783CFF211C9092A2B65068 /* Resources */, + B6E355609B5178DB7F6ACDA2D18A84FD /* Headers */, + 5BF0CBC23F92185130054E127F2FE38A /* Sources */, + 2AC4E7049CB0D7716240B64E67613023 /* Frameworks */, + 8FDE013B2D1E2CFE6377EEC8830F1C32 /* Resources */, ); buildRules = ( ); dependencies = ( - 3C2DEF42A714CE16034C850CE920A4DC /* PBXTargetDependency */, - 68B53347A121477C8E2293ADDD671EB3 /* PBXTargetDependency */, - 6040AC493D93AEBE3B34E334B530B06F /* PBXTargetDependency */, - 051AE85F172C7B5EC6BADCFB2A704817 /* PBXTargetDependency */, - 330CC662674366D6E06662F77058E293 /* PBXTargetDependency */, - 02689B587C65DFCF4C6B88479E15C2B2 /* PBXTargetDependency */, - 1D3F87CB889F40538C1FCC9948873CEE /* PBXTargetDependency */, - D9390692B5EB3B48421122A037064F46 /* PBXTargetDependency */, + 4790A6A838106058BAB3E54844AC9FC7 /* PBXTargetDependency */, + BEC14CB84982E788ECCCB3F00FFABFE9 /* PBXTargetDependency */, + 93A7451E74B8AAE28D5717FB7FB69A0F /* PBXTargetDependency */, + E5C22A88E2DA3270081038A99A0DD4F7 /* PBXTargetDependency */, + 6EB48E0EDC7F98679DB87BAD187B4129 /* PBXTargetDependency */, + 2F7D7207FE59190BCFF13EE2202C7C8D /* PBXTargetDependency */, + 657EF8A4C11A9C821EF91491F145BC9D /* PBXTargetDependency */, + F823B75796EF3E7D9AFC83949ABC9DE3 /* PBXTargetDependency */, + 455DD31127EB5D87CF7A14EC10B702B8 /* PBXTargetDependency */, ); name = "Pods-keyBoard"; productName = Pods_keyBoard; @@ -2347,7 +2424,7 @@ buildRules = ( ); dependencies = ( - 7CA06D6A98D6066269E72238BDE7C7F1 /* PBXTargetDependency */, + EE61A46DF554B3E5C29DB10DCBB3618A /* PBXTargetDependency */, ); name = SDWebImage; productName = SDWebImage; @@ -2366,7 +2443,7 @@ buildRules = ( ); dependencies = ( - 4E1D0463433136299E0E3377D83B941F /* PBXTargetDependency */, + 578B4FEE3B5BBEBE31FFA9C174A0B42C /* PBXTargetDependency */, ); name = MJExtension; productName = MJExtension; @@ -2421,7 +2498,7 @@ buildRules = ( ); dependencies = ( - 72F18FF2B41D68DCCFFAE99BA104F78A /* PBXTargetDependency */, + 5D247EA99693B7B23340BCC7FCB64DA1 /* PBXTargetDependency */, ); name = MJRefresh; productName = MJRefresh; @@ -2448,11 +2525,11 @@ }; 94CFBA7D633ECA58DF85C327B035E6A3 /* SDWebImage-SDWebImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 75FDB89B285CFA7EB9A1440F6712CECD /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */; + buildConfigurationList = E1B78FF12090122B97AE1A33AD172B8C /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */; buildPhases = ( - 5ED0A731E03B04E7F6A67A299B8E96C7 /* Sources */, - 0424E87A11A8E4EBD399FEA6A297197C /* Frameworks */, - D03ECEEC449D3900BAAA550940BD944E /* Resources */, + AD25BCFFC542199E6A56D85CF9FB3D3B /* Sources */, + 68405B5F41E04D755317E63849131904 /* Frameworks */, + E40003F128ACA565E0AF6D7254C64D86 /* Resources */, ); buildRules = ( ); @@ -2465,11 +2542,11 @@ }; B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */ = { isa = PBXNativeTarget; - buildConfigurationList = 3BAB55636BA8916C40FA84B77A6ED43F /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */; + buildConfigurationList = 0B91AB5AF396DEF5CC076D126E4738A7 /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */; buildPhases = ( - 14B566DE71EBA3E319BE7986E8009E87 /* Sources */, - 478599896E5167F2379C5A953E54F9C7 /* Frameworks */, - 15D9DE0AC91CF0713D976A50202D15C8 /* Resources */, + 8986B9155B9BA0DA7D02654B069F0887 /* Sources */, + 0DE7FCDD6C04EC4E1E9ECB00A0604FB7 /* Frameworks */, + 021D9F4B66A6BEEC09A45D59909CBDE6 /* Resources */, ); buildRules = ( ); @@ -2482,11 +2559,11 @@ }; B32AF3F43989CBA171BB1FB3957A4509 /* MJExtension-MJExtension */ = { isa = PBXNativeTarget; - buildConfigurationList = C310F90C936F80E1EA39B1C661E2C0CF /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */; + buildConfigurationList = 95B0FCBEC38B41A89EDFDA2284E4CF2F /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */; buildPhases = ( - 2F8712DABCD6D4BCEAED376214304E1B /* Sources */, - 66287E5BAADE17305495D05E0A0BE045 /* Frameworks */, - 7B6B737FA7382E8D09BA0E6F8A711CF8 /* Resources */, + D5A57C43D4D146DC812EB6C4160745DD /* Sources */, + A12778F5B92D79BB1CB466B6E7808C73 /* Frameworks */, + D4B34D2916BE13E436CD1FF18F0BC0CB /* Resources */, ); buildRules = ( ); @@ -2499,26 +2576,45 @@ }; D9B2DB11933DB55A80A118934E6680AB /* Pods-CustomKeyboard */ = { isa = PBXNativeTarget; - buildConfigurationList = DC3D0F42A55DA19482938BD3D122BBDD /* Build configuration list for PBXNativeTarget "Pods-CustomKeyboard" */; + buildConfigurationList = B1224CED7ED3E4B356E8F429D6C62F7E /* Build configuration list for PBXNativeTarget "Pods-CustomKeyboard" */; buildPhases = ( - B3CDC74094391A729A84AEA80F432BD4 /* Headers */, - 3B8096973B5A60E48EBA539A3A5F1335 /* Sources */, - 23E3E837092AD90A0790587F089C0CF2 /* Frameworks */, - 52D469CFA009952A96D99A1BB39A33F9 /* Resources */, + 5F83BB683AB24A3D1254696689952DDF /* Headers */, + E8CCE3C7763C30E81A067AE9AC1B8915 /* Sources */, + D04C3487CC66436E0AC1085019C1D36C /* Frameworks */, + 8DF763B35C7183D33FE173339E261549 /* Resources */, ); buildRules = ( ); dependencies = ( - D53C46CE35F01E6D471567FA69920E22 /* PBXTargetDependency */, - 56FDC6683BDF2C4C50BC30F18598E46A /* PBXTargetDependency */, - BB713498FDBB2C5747E4B2A218CE6394 /* PBXTargetDependency */, - 1947941E2896974031B1A5BAD89535FF /* PBXTargetDependency */, + 33AF3D0CC306E3DD56CCD4562DC58ABA /* PBXTargetDependency */, + 6D842140C98E51FF8C3EC4AC689EC108 /* PBXTargetDependency */, + AEC4F62BB393A387D98BB39E07E54A5E /* PBXTargetDependency */, + BD5EEFF9A8B5208454EE5C08E29DEC6F /* PBXTargetDependency */, + 32CDD4F647C6AFB9D8EF74E8A88163CD /* PBXTargetDependency */, ); name = "Pods-CustomKeyboard"; productName = Pods_CustomKeyboard; productReference = 0B4AAC15A428CDC2A62AF9CC27BEA609 /* Pods-CustomKeyboard */; productType = "com.apple.product-type.framework"; }; + F1BCD9702276377FB5B3BDB6EAF709D7 /* DZNEmptyDataSet */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1CF7CA11A791652D6975B2EDE2FC6719 /* Build configuration list for PBXNativeTarget "DZNEmptyDataSet" */; + buildPhases = ( + 09EE4349480B078AFE00E65B49E502BF /* Headers */, + 06020C44A2C925372A030239192BBF6C /* Sources */, + E672724427269716049B769344D7C3DC /* Frameworks */, + FD378D1F5CAFCC3C5D44074788563A1C /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = DZNEmptyDataSet; + productName = DZNEmptyDataSet; + productReference = 5DA4577FE3BC4A03751108FFED07B385 /* DZNEmptyDataSet */; + productType = "com.apple.product-type.framework"; + }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ @@ -2539,12 +2635,13 @@ mainGroup = CF1408CF629C7361332E53B88F7BD30C; minimizedProjectReferenceProxies = 0; preferredProjectObjectVersion = 77; - productRefGroup = D9B30AD65F3EE236DAC5C96B80F6C23C /* Products */; + productRefGroup = 1C8A19406FF58E9BA6BC427CA02E9857 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */, 4A68CFD979D413A619DF631BB121D98F /* Bugly */, + F1BCD9702276377FB5B3BDB6EAF709D7 /* DZNEmptyDataSet */, 638FEAAFC575BB76BC6AC055CDDA3506 /* LookinServer */, 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */, 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */, @@ -2561,11 +2658,11 @@ /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ - 15D9DE0AC91CF0713D976A50202D15C8 /* Resources */ = { + 021D9F4B66A6BEEC09A45D59909CBDE6 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - C8F4758D203D5D42CBEE70E2F01D37C1 /* PrivacyInfo.xcprivacy in Resources */, + BBD85F9E0E25710317253841091C391F /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2594,18 +2691,17 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 52D469CFA009952A96D99A1BB39A33F9 /* Resources */ = { + 8DF763B35C7183D33FE173339E261549 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7B6B737FA7382E8D09BA0E6F8A711CF8 /* Resources */ = { + 8FDE013B2D1E2CFE6377EEC8830F1C32 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 401AF42385BFB1C6439E4FFD239BC976 /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2616,11 +2712,11 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - D03ECEEC449D3900BAAA550940BD944E /* Resources */ = { + D4B34D2916BE13E436CD1FF18F0BC0CB /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( - 381B47B124BDE7D69DEB0FBA0ADF176D /* PrivacyInfo.xcprivacy in Resources */, + 2FEE980BEE23B8E0C7EBB70445EC8C9A /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -2631,14 +2727,15 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - E664BDFE0B44D742638A43686ACB3008 /* Resources */ = { + E40003F128ACA565E0AF6D7254C64D86 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( + EBC9AA5D4A55F79BB5CBF6CC92719FAF /* PrivacyInfo.xcprivacy in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; - EC2185D1A9783CFF211C9092A2B65068 /* Resources */ = { + E664BDFE0B44D742638A43686ACB3008 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; files = ( @@ -2652,9 +2749,25 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + FD378D1F5CAFCC3C5D44074788563A1C /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXResourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 06020C44A2C925372A030239192BBF6C /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + AFD1D411A9387DCEC6F0034653E23787 /* DZNEmptyDataSet-dummy.m in Sources */, + 5F5426608460A8B17C1AE5C2351BAA19 /* UIScrollView+EmptyDataSet.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; 090A96B9D443BC38DD5A251A9EE646AE /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -2753,43 +2866,21 @@ ); runOnlyForDeploymentPostprocessing = 0; }; - 14B566DE71EBA3E319BE7986E8009E87 /* Sources */ = { + 5BF0CBC23F92185130054E127F2FE38A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( + D92485584591A2A2D4B8A8D50B9E20C7 /* Pods-keyBoard-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2F8712DABCD6D4BCEAED376214304E1B /* Sources */ = { + 8986B9155B9BA0DA7D02654B069F0887 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3B8096973B5A60E48EBA539A3A5F1335 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 91B00FC894C93986F10BD14DCD0DD6BF /* Pods-CustomKeyboard-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 5ED0A731E03B04E7F6A67A299B8E96C7 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - runOnlyForDeploymentPostprocessing = 0; - }; - 76A0E5907558D7DA0B5A05AAFEFC63FC /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - BCBAF1B66C66E987E2DC281C865CD703 /* Pods-keyBoard-dummy.m in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; 8AF957863B2E92075C7B36542829939B /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -2871,6 +2962,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + AD25BCFFC542199E6A56D85CF9FB3D3B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; D08DDDF416AB9EEE26C8FFEE674F7A12 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -2894,6 +2992,13 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + D5A57C43D4D146DC812EB6C4160745DD /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; DA0B6A6F9B3EDF226BF081DAC7E777E7 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -2944,122 +3049,125 @@ ); runOnlyForDeploymentPostprocessing = 0; }; + E8CCE3C7763C30E81A067AE9AC1B8915 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 8F30C8026F48C60D5B2CAE9CFC166004 /* Pods-CustomKeyboard-dummy.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 02689B587C65DFCF4C6B88479E15C2B2 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJRefresh; - target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; - targetProxy = 3EE130CEE22F9D3195F5D2A16158FD19 /* PBXContainerItemProxy */; - }; - 051AE85F172C7B5EC6BADCFB2A704817 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MBProgressHUD; - target = 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */; - targetProxy = E542FBB4315739909213310A6FE7BFE1 /* PBXContainerItemProxy */; - }; - 1947941E2896974031B1A5BAD89535FF /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Masonry; - target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; - targetProxy = 5D06FBB9B5D193B42D54D92C2D88AF0D /* PBXContainerItemProxy */; - }; - 1D3F87CB889F40538C1FCC9948873CEE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Masonry; - target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; - targetProxy = B56D817905F1BFDF163D1FB48FE1CEF0 /* PBXContainerItemProxy */; - }; - 330CC662674366D6E06662F77058E293 /* PBXTargetDependency */ = { + 2F7D7207FE59190BCFF13EE2202C7C8D /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = MJExtension; target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; - targetProxy = 558963FAD37397D5CF3C86EDB00CE376 /* PBXContainerItemProxy */; + targetProxy = 029F18B20C43B6D8025DD8764F3FDB94 /* PBXContainerItemProxy */; }; - 3C2DEF42A714CE16034C850CE920A4DC /* PBXTargetDependency */ = { + 32CDD4F647C6AFB9D8EF74E8A88163CD /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Masonry; + target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; + targetProxy = 551922F754B651AFCAAB56605458A1A4 /* PBXContainerItemProxy */; + }; + 33AF3D0CC306E3DD56CCD4562DC58ABA /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = AFNetworking; target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */; - targetProxy = B77CF8BB37C01531BA0A32EFEA0754E7 /* PBXContainerItemProxy */; + targetProxy = F34B1D580EA71604D4CC7C4C5807E366 /* PBXContainerItemProxy */; }; - 4E1D0463433136299E0E3377D83B941F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "MJExtension-MJExtension"; - target = B32AF3F43989CBA171BB1FB3957A4509 /* MJExtension-MJExtension */; - targetProxy = 61888C2BE329A27EA7B77952C3DAE6BD /* PBXContainerItemProxy */; - }; - 56FDC6683BDF2C4C50BC30F18598E46A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MBProgressHUD; - target = 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */; - targetProxy = 3484662819145A72AD2928C53A3BD825 /* PBXContainerItemProxy */; - }; - 6040AC493D93AEBE3B34E334B530B06F /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = LookinServer; - target = 638FEAAFC575BB76BC6AC055CDDA3506 /* LookinServer */; - targetProxy = D0029D13D3AD5BABF848EA55FA77142F /* PBXContainerItemProxy */; - }; - 68B53347A121477C8E2293ADDD671EB3 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = Bugly; - target = 4A68CFD979D413A619DF631BB121D98F /* Bugly */; - targetProxy = 2A53F2CECA80E5BE66ADBC419D374E71 /* PBXContainerItemProxy */; - }; - 72F18FF2B41D68DCCFFAE99BA104F78A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "MJRefresh-MJRefresh.Privacy"; - target = B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */; - targetProxy = 1344F17C0E52E09D8895AE02B0FFD8C7 /* PBXContainerItemProxy */; - }; - 7CA06D6A98D6066269E72238BDE7C7F1 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "SDWebImage-SDWebImage"; - target = 94CFBA7D633ECA58DF85C327B035E6A3 /* SDWebImage-SDWebImage */; - targetProxy = E4018E8FC1684D625B692CD852C6FC7E /* PBXContainerItemProxy */; - }; - BB713498FDBB2C5747E4B2A218CE6394 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = MJExtension; - target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; - targetProxy = 7A2AC1F0B7BDFB22BB4CBD3405C32B8E /* PBXContainerItemProxy */; - }; - D53C46CE35F01E6D471567FA69920E22 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = AFNetworking; - target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */; - targetProxy = A99071FC68BAEFC0CB6D83A54A354D61 /* PBXContainerItemProxy */; - }; - D9390692B5EB3B48421122A037064F46 /* PBXTargetDependency */ = { + 455DD31127EB5D87CF7A14EC10B702B8 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = SDWebImage; target = 3847153A6E5EEFB86565BA840768F429 /* SDWebImage */; - targetProxy = 804902AF2E2B5EE752D5BEA3737FC84E /* PBXContainerItemProxy */; + targetProxy = 20B15F7B3132DA38204DF9083459230C /* PBXContainerItemProxy */; + }; + 4790A6A838106058BAB3E54844AC9FC7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = AFNetworking; + target = 0130B3724283586C0E9D2A112D4F2AA1 /* AFNetworking */; + targetProxy = 6E0EFBF66C9F8375FB0420650F7CFE4D /* PBXContainerItemProxy */; + }; + 578B4FEE3B5BBEBE31FFA9C174A0B42C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "MJExtension-MJExtension"; + target = B32AF3F43989CBA171BB1FB3957A4509 /* MJExtension-MJExtension */; + targetProxy = F4000FEC7CADA56B75E5CC31E64EC891 /* PBXContainerItemProxy */; + }; + 5D247EA99693B7B23340BCC7FCB64DA1 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "MJRefresh-MJRefresh.Privacy"; + target = B26054DF1DEA11585A231AF6D1D80D5E /* MJRefresh-MJRefresh.Privacy */; + targetProxy = BBBA8C59A31486B3AE2F16C6A4AAAB66 /* PBXContainerItemProxy */; + }; + 657EF8A4C11A9C821EF91491F145BC9D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJRefresh; + target = 6868056D761E163D10FDAF8CF1C4D9B8 /* MJRefresh */; + targetProxy = 280718826D768D0A8BFF3767300EFA78 /* PBXContainerItemProxy */; + }; + 6D842140C98E51FF8C3EC4AC689EC108 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DZNEmptyDataSet; + target = F1BCD9702276377FB5B3BDB6EAF709D7 /* DZNEmptyDataSet */; + targetProxy = B0F47C29852712CF2F2C1E658ECD1809 /* PBXContainerItemProxy */; + }; + 6EB48E0EDC7F98679DB87BAD187B4129 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MBProgressHUD; + target = 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */; + targetProxy = E7A356850FBB22708CAF2F346B5868B3 /* PBXContainerItemProxy */; + }; + 93A7451E74B8AAE28D5717FB7FB69A0F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = DZNEmptyDataSet; + target = F1BCD9702276377FB5B3BDB6EAF709D7 /* DZNEmptyDataSet */; + targetProxy = 2891577E16AC583D92EE1592A0BA0B53 /* PBXContainerItemProxy */; + }; + AEC4F62BB393A387D98BB39E07E54A5E /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MBProgressHUD; + target = 82B0A41D3031FF27D78E17B0A9A46FB0 /* MBProgressHUD */; + targetProxy = A311284721E0C3165FAA791C3EE6961E /* PBXContainerItemProxy */; + }; + BD5EEFF9A8B5208454EE5C08E29DEC6F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = MJExtension; + target = 4D3BA58D0583DF37575CACAB3DDADC85 /* MJExtension */; + targetProxy = AD74DB90134D3DB33FAC2C873C0764E9 /* PBXContainerItemProxy */; + }; + BEC14CB84982E788ECCCB3F00FFABFE9 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Bugly; + target = 4A68CFD979D413A619DF631BB121D98F /* Bugly */; + targetProxy = 7DD0632E09B67610660F1C8BA201AFAA /* PBXContainerItemProxy */; + }; + E5C22A88E2DA3270081038A99A0DD4F7 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = LookinServer; + target = 638FEAAFC575BB76BC6AC055CDDA3506 /* LookinServer */; + targetProxy = 61BD90FED6D756E5F56F7E887A0FFD9A /* PBXContainerItemProxy */; + }; + EE61A46DF554B3E5C29DB10DCBB3618A /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "SDWebImage-SDWebImage"; + target = 94CFBA7D633ECA58DF85C327B035E6A3 /* SDWebImage-SDWebImage */; + targetProxy = 8C2E663FC9840B2B7BABEF079AD58862 /* PBXContainerItemProxy */; + }; + F823B75796EF3E7D9AFC83949ABC9DE3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Masonry; + target = 55AF53E6C77A10ED4985E04D74A8878E /* Masonry */; + targetProxy = 603D56D0A56251DBC2A0FBED798844FB /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 14756571A92125BEA1F3597E47A2E3C9 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6541C2A328C1AD7FFA7D2EC681F621D2 /* SDWebImage.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; - IBSC_MODULE = SDWebImage; - INFOPLIST_FILE = "Target Support Files/SDWebImage/ResourceBundle-SDWebImage-SDWebImage-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = SDWebImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 1A69165A21A7A1CC42A38CF8ADE98215 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D5928043B7F64DD262C8EA8D39FC4225 /* LookinServer.release.xcconfig */; + baseConfigurationReference = 345E8071594452D5EC1963065298F2C2 /* LookinServer.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3094,7 +3202,249 @@ }; name = Release; }; - 2A4D409BC2C3B4014AD9BF72AFC3746E /* Release */ = { + 227E6E64001CE57ED070BAB9C31DCAEC /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 1D774D8146EBC82B4A77204A273761B8 /* Pods-CustomKeyboard.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; + CLANG_ENABLE_OBJC_WEAK = NO; + "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"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + INFOPLIST_FILE = "Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MACH_O_TYPE = staticlib; + MODULEMAP_FILE = "Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.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; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 2D1085CA7BD144CABF012FC10C6C9120 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 8883B17FC0C4FB5FBB47C773D132541D /* Masonry.debug.xcconfig */; + buildSettings = { + "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"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/Masonry/Masonry-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/Masonry/Masonry.modulemap"; + PRODUCT_MODULE_NAME = Masonry; + PRODUCT_NAME = Masonry; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 35044A57510DB3F4E442A9C16E980E4A /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CABBE3AF9707023BE08354200794C5F5 /* DZNEmptyDataSet.debug.xcconfig */; + buildSettings = { + "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"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-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/DZNEmptyDataSet/DZNEmptyDataSet.modulemap"; + PRODUCT_MODULE_NAME = DZNEmptyDataSet; + PRODUCT_NAME = DZNEmptyDataSet; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + 427CF48FABE82C6FC8208160FDF4A9CE /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = EFBF49E26074430C7AF89A5CF1BF57DA /* MJExtension.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; + IBSC_MODULE = MJExtension; + INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MJExtension; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 49CEA33268972C89BF290FCBF8F9DFC0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6469C9876A56CC6A832C4CCABAC844C4 /* DZNEmptyDataSet.release.xcconfig */; + buildSettings = { + "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"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-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/DZNEmptyDataSet/DZNEmptyDataSet.modulemap"; + PRODUCT_MODULE_NAME = DZNEmptyDataSet; + PRODUCT_NAME = DZNEmptyDataSet; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 50BA0438712A00B9F9ECCE17AD68D287 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AAF0EBD4D922EB27FBA2F8675E65E60C /* SDWebImage.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; + IBSC_MODULE = SDWebImage; + INFOPLIST_FILE = "Target Support Files/SDWebImage/ResourceBundle-SDWebImage-SDWebImage-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = SDWebImage; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + 51753BD6FE635BB9421BCA4C05F63C6A /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C7C619E07B590F50371F76FB727BCBBF /* MJRefresh.release.xcconfig */; + buildSettings = { + CLANG_ENABLE_OBJC_WEAK = NO; + "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"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/MJRefresh/MJRefresh-Info.plist"; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); + MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap"; + PRODUCT_MODULE_NAME = MJRefresh; + PRODUCT_NAME = MJRefresh; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + 532B03D3A70665C5D6CA2E785045C97B /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 6295DA33C02166E6F30B30876B63CCCC /* MJExtension.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; + IBSC_MODULE = MJExtension; + INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MJExtension; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; + 613A65C8F7793CDE167660CF7A419A34 /* Release */ = { isa = XCBuildConfiguration; baseConfigurationReference = A6E8FF241173D596A21D4D4B7D86A810 /* Pods-keyBoard.release.xcconfig */; buildSettings = { @@ -3134,102 +3484,9 @@ }; name = Release; }; - 2D1085CA7BD144CABF012FC10C6C9120 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F74831DF4A214A9B37FB53108A8F46D7 /* Masonry.debug.xcconfig */; - buildSettings = { - "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"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/Masonry/Masonry-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/Masonry/Masonry-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/Masonry/Masonry.modulemap"; - PRODUCT_MODULE_NAME = Masonry; - PRODUCT_NAME = Masonry; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - 51753BD6FE635BB9421BCA4C05F63C6A /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A4AB45D03CDF4A6414C179861FA5DC70 /* MJRefresh.release.xcconfig */; - buildSettings = { - CLANG_ENABLE_OBJC_WEAK = NO; - "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"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/MJRefresh/MJRefresh-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap"; - PRODUCT_MODULE_NAME = MJRefresh; - PRODUCT_NAME = MJRefresh; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 60E448719BCB8726A9C6B2BF63BBA59D /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = B0D7217C129ADC2B106BFB2CDBA1E07C /* MJExtension.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; - IBSC_MODULE = MJExtension; - INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MJExtension; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; 614F7847ADAD2F1EEC9E48FAEC955108 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CAD9935E88574CA5324720A1449DA69B /* MJRefresh.debug.xcconfig */; + baseConfigurationReference = 755CCA36E00C95FE42AB4DED32C05D4E /* MJRefresh.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3267,7 +3524,7 @@ }; 618AB008538F74AAF983C04297207BB6 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 7D3CC4FF177FF84EC222FB0DDC2C4C04 /* LookinServer.debug.xcconfig */; + baseConfigurationReference = 4D3442E450D824019C5AA7A73F82DA7D /* LookinServer.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3301,7 +3558,7 @@ }; name = Debug; }; - 661612137DEB243ABC1135E7E8B2F05C /* Debug */ = { + 7BB5AE2225500DE9658B6277FED45BCD /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 0D6215D1BCCE125B8DF73E38013CBBDC /* Pods-CustomKeyboard.debug.xcconfig */; buildSettings = { @@ -3340,23 +3597,6 @@ }; name = Debug; }; - 72C8064D4E8FC3253673EAAE65E90A92 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 4DA388EA2C00B86043D7ECB9FD29B004 /* MJExtension.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJExtension"; - IBSC_MODULE = MJExtension; - INFOPLIST_FILE = "Target Support Files/MJExtension/ResourceBundle-MJExtension-MJExtension-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MJExtension; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; 8DE5143C03248BB6CD542DE3963D6F3A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -3423,56 +3663,16 @@ }; name = Debug; }; - 901300E22BA49A642BAEB41583BCCAF2 /* Release */ = { + 9C1EE0C94CDE25779693BCA7261B5989 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1D774D8146EBC82B4A77204A273761B8 /* Pods-CustomKeyboard.release.xcconfig */; - buildSettings = { - ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; - CLANG_ENABLE_OBJC_WEAK = NO; - "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"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - INFOPLIST_FILE = "Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard-Info.plist"; - INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; - LD_RUNPATH_SEARCH_PATHS = ( - "$(inherited)", - "@executable_path/Frameworks", - "@loader_path/Frameworks", - ); - MACH_O_TYPE = staticlib; - MODULEMAP_FILE = "Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.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; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - 9756135EAF7FCFBC8FAD4D54C89B303E /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = A4AB45D03CDF4A6414C179861FA5DC70 /* MJRefresh.release.xcconfig */; + baseConfigurationReference = C56C8AAE9E964BC086AC1E10B34FCA6B /* SDWebImage.release.xcconfig */; buildSettings = { CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; - IBSC_MODULE = MJRefresh; - INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MJRefresh.Privacy; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; + IBSC_MODULE = SDWebImage; + INFOPLIST_FILE = "Target Support Files/SDWebImage/ResourceBundle-SDWebImage-SDWebImage-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + PRODUCT_NAME = SDWebImage; SDKROOT = iphoneos; SKIP_INSTALL = YES; TARGETED_DEVICE_FAMILY = "1,2"; @@ -3544,7 +3744,7 @@ }; 9E9FB1E032B56896F9380263D45A0F9A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B0D7217C129ADC2B106BFB2CDBA1E07C /* MJExtension.release.xcconfig */; + baseConfigurationReference = 6295DA33C02166E6F30B30876B63CCCC /* MJExtension.release.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3583,7 +3783,7 @@ }; 9F519E5162C0E51D10B7E999E2FD0125 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 92FA6AC0BAD76512878820820517E041 /* SDWebImage.release.xcconfig */; + baseConfigurationReference = C56C8AAE9E964BC086AC1E10B34FCA6B /* SDWebImage.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3621,7 +3821,7 @@ }; B04295D726C1883ADA40A304483D7E33 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6541C2A328C1AD7FFA7D2EC681F621D2 /* SDWebImage.debug.xcconfig */; + baseConfigurationReference = AAF0EBD4D922EB27FBA2F8675E65E60C /* SDWebImage.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3658,7 +3858,7 @@ }; B26FBB655ABB114E4C0D589843814D6C /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 5467BF12652CA00AFF8AF65AE418E809 /* Bugly.release.xcconfig */; + baseConfigurationReference = A6E3874D94D7084B2018828787E900CD /* Bugly.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -3674,99 +3874,7 @@ }; name = Release; }; - BCD70A0BB22D0C72BAF7207A7D4F44BD /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2BC114A89754B92BAEEE6D803447723E /* MBProgressHUD.debug.xcconfig */; - buildSettings = { - "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"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/MBProgressHUD/MBProgressHUD-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/MBProgressHUD/MBProgressHUD.modulemap"; - PRODUCT_MODULE_NAME = MBProgressHUD; - PRODUCT_NAME = MBProgressHUD; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Debug; - }; - BE0CDEB7BE0A402663AFCC2111742430 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 09AF8CA8D37D28C4450911083D29A37F /* MBProgressHUD.release.xcconfig */; - buildSettings = { - "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"; - ENABLE_MODULE_VERIFIER = NO; - ENABLE_USER_SCRIPT_SANDBOXING = NO; - GCC_PREFIX_HEADER = "Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch"; - GENERATE_INFOPLIST_FILE = NO; - INFOPLIST_FILE = "Target Support Files/MBProgressHUD/MBProgressHUD-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/MBProgressHUD/MBProgressHUD.modulemap"; - PRODUCT_MODULE_NAME = MBProgressHUD; - PRODUCT_NAME = MBProgressHUD; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; - SWIFT_INSTALL_OBJC_HEADER = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - VERSIONING_SYSTEM = "apple-generic"; - VERSION_INFO_PREFIX = ""; - }; - name = Release; - }; - BF6FFC4822A8BD7CF9F6E708B67EBF48 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CAD9935E88574CA5324720A1449DA69B /* MJRefresh.debug.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; - IBSC_MODULE = MJRefresh; - INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 12.0; - PRODUCT_NAME = MJRefresh.Privacy; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Debug; - }; - CB6F5D327C61C14D1BCD05CD30BEA441 /* Debug */ = { + B68F540BFF2B1B57CD80322AC1C90AFA /* Debug */ = { isa = XCBuildConfiguration; baseConfigurationReference = 35BFA337F4E1FDE67C773A82CCDFD6DA /* Pods-keyBoard.debug.xcconfig */; buildSettings = { @@ -3805,9 +3913,101 @@ }; name = Debug; }; + B83818605FEB0030D2B6D7FF64325A19 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 755CCA36E00C95FE42AB4DED32C05D4E /* MJRefresh.debug.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; + IBSC_MODULE = MJRefresh; + INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MJRefresh.Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Debug; + }; + BCD70A0BB22D0C72BAF7207A7D4F44BD /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 79BF9A9C8A01FA5788DABBD3AB93BCD0 /* MBProgressHUD.debug.xcconfig */; + buildSettings = { + "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"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/MBProgressHUD/MBProgressHUD-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/MBProgressHUD/MBProgressHUD.modulemap"; + PRODUCT_MODULE_NAME = MBProgressHUD; + PRODUCT_NAME = MBProgressHUD; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + BE0CDEB7BE0A402663AFCC2111742430 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 938496D2077B5D567BA32550A5EF8099 /* MBProgressHUD.release.xcconfig */; + buildSettings = { + "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"; + ENABLE_MODULE_VERIFIER = NO; + ENABLE_USER_SCRIPT_SANDBOXING = NO; + GCC_PREFIX_HEADER = "Target Support Files/MBProgressHUD/MBProgressHUD-prefix.pch"; + GENERATE_INFOPLIST_FILE = NO; + INFOPLIST_FILE = "Target Support Files/MBProgressHUD/MBProgressHUD-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/MBProgressHUD/MBProgressHUD.modulemap"; + PRODUCT_MODULE_NAME = MBProgressHUD; + PRODUCT_NAME = MBProgressHUD; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + SWIFT_ACTIVE_COMPILATION_CONDITIONS = "$(inherited) "; + SWIFT_INSTALL_OBJC_HEADER = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; CBAFED52B4B51F600FAF2141BA449F2E /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 341E0598C048E82B1711A62AC27A8A01 /* Bugly.debug.xcconfig */; + baseConfigurationReference = C325955B3AFF388601028CCBA8FE7A81 /* Bugly.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; @@ -3824,7 +4024,7 @@ }; CEE7FEC0A1B23DE7053203A448EEB294 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B68123BC480EBE40D31AA867B2F0CF54 /* AFNetworking.debug.xcconfig */; + baseConfigurationReference = E7E3E5022BAECE5B36C5DCA354B9F19A /* AFNetworking.debug.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3861,7 +4061,7 @@ }; D0AB0AEF4014B926FCD853D3AE0A370A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = C6C9DF18C184F28FB0938F14DCD812A8 /* Masonry.release.xcconfig */; + baseConfigurationReference = B70BC0B4EF67B545E3F3CDF82AFA33A9 /* Masonry.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3899,7 +4099,7 @@ }; DA533AA9B577872DAFB44EF2CF26C49A /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CB27BB6250699AEC351AC4AE7A9B8003 /* AFNetworking.release.xcconfig */; + baseConfigurationReference = 223438EC2ED96F2A99B18DE49CC2337E /* AFNetworking.release.xcconfig */; buildSettings = { "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; @@ -3935,26 +4135,9 @@ }; name = Release; }; - E0C2D2BBAFAB88F4F1758CA04CD99F75 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 92FA6AC0BAD76512878820820517E041 /* SDWebImage.release.xcconfig */; - buildSettings = { - CODE_SIGNING_ALLOWED = NO; - CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/SDWebImage"; - IBSC_MODULE = SDWebImage; - INFOPLIST_FILE = "Target Support Files/SDWebImage/ResourceBundle-SDWebImage-SDWebImage-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 9.0; - PRODUCT_NAME = SDWebImage; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = bundle; - }; - name = Release; - }; EC66105EE15F9DC9B6F20F58FB67957D /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 4DA388EA2C00B86043D7ECB9FD29B004 /* MJExtension.debug.xcconfig */; + baseConfigurationReference = EFBF49E26074430C7AF89A5CF1BF57DA /* MJExtension.debug.xcconfig */; buildSettings = { CLANG_ENABLE_OBJC_WEAK = NO; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; @@ -3990,9 +4173,53 @@ }; name = Debug; }; + FE5AD58E2A362D4BD062D63BEF049BC0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = C7C619E07B590F50371F76FB727BCBBF /* MJRefresh.release.xcconfig */; + buildSettings = { + CODE_SIGNING_ALLOWED = NO; + CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/MJRefresh"; + IBSC_MODULE = MJRefresh; + INFOPLIST_FILE = "Target Support Files/MJRefresh/ResourceBundle-MJRefresh.Privacy-MJRefresh-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 12.0; + PRODUCT_NAME = MJRefresh.Privacy; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + TARGETED_DEVICE_FAMILY = "1,2"; + WRAPPER_EXTENSION = bundle; + }; + name = Release; + }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ + 0B91AB5AF396DEF5CC076D126E4738A7 /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B83818605FEB0030D2B6D7FF64325A19 /* Debug */, + FE5AD58E2A362D4BD062D63BEF049BC0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 0E74E3EFFDF91D0A8819AFC4A3E29C9E /* Build configuration list for PBXNativeTarget "Pods-keyBoard" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + B68F540BFF2B1B57CD80322AC1C90AFA /* Debug */, + 613A65C8F7793CDE167660CF7A419A34 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 1CF7CA11A791652D6975B2EDE2FC6719 /* Build configuration list for PBXNativeTarget "DZNEmptyDataSet" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 35044A57510DB3F4E442A9C16E980E4A /* Debug */, + 49CEA33268972C89BF290FCBF8F9DFC0 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 29BB59B7B51BC6194771995E3356CF70 /* Build configuration list for PBXNativeTarget "MJRefresh" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4011,15 +4238,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 3BAB55636BA8916C40FA84B77A6ED43F /* Build configuration list for PBXNativeTarget "MJRefresh-MJRefresh.Privacy" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - BF6FFC4822A8BD7CF9F6E708B67EBF48 /* Debug */, - 9756135EAF7FCFBC8FAD4D54C89B303E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4038,15 +4256,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 75FDB89B285CFA7EB9A1440F6712CECD /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 14756571A92125BEA1F3597E47A2E3C9 /* Debug */, - E0C2D2BBAFAB88F4F1758CA04CD99F75 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; 7CEB2E47380AD51987AA02ECD4DFBCD9 /* Build configuration list for PBXNativeTarget "AFNetworking" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4065,6 +4274,15 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; + 95B0FCBEC38B41A89EDFDA2284E4CF2F /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 427CF48FABE82C6FC8208160FDF4A9CE /* Debug */, + 532B03D3A70665C5D6CA2E785045C97B /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; 9CC7AA793D9397C15E010F8242EE1046 /* Build configuration list for PBXAggregateTarget "Bugly" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -4083,20 +4301,20 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - C310F90C936F80E1EA39B1C661E2C0CF /* Build configuration list for PBXNativeTarget "MJExtension-MJExtension" */ = { + B1224CED7ED3E4B356E8F429D6C62F7E /* Build configuration list for PBXNativeTarget "Pods-CustomKeyboard" */ = { isa = XCConfigurationList; buildConfigurations = ( - 72C8064D4E8FC3253673EAAE65E90A92 /* Debug */, - 60E448719BCB8726A9C6B2BF63BBA59D /* Release */, + 7BB5AE2225500DE9658B6277FED45BCD /* Debug */, + 227E6E64001CE57ED070BAB9C31DCAEC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - DC3D0F42A55DA19482938BD3D122BBDD /* Build configuration list for PBXNativeTarget "Pods-CustomKeyboard" */ = { + E1B78FF12090122B97AE1A33AD172B8C /* Build configuration list for PBXNativeTarget "SDWebImage-SDWebImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - 661612137DEB243ABC1135E7E8B2F05C /* Debug */, - 901300E22BA49A642BAEB41583BCCAF2 /* Release */, + 50BA0438712A00B9F9ECCE17AD68D287 /* Debug */, + 9C1EE0C94CDE25779693BCA7261B5989 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; @@ -4110,15 +4328,6 @@ defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - F05CE704EC605612AD8DB97F889D8472 /* Build configuration list for PBXNativeTarget "Pods-keyBoard" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - CB6F5D327C61C14D1BCD05CD30BEA441 /* Debug */, - 2A4D409BC2C3B4014AD9BF72AFC3746E /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; /* End XCConfigurationList section */ }; rootObject = BFDFE7DC352907FC980B868725387E98 /* Project object */; diff --git a/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/DZNEmptyDataSet.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/DZNEmptyDataSet.xcscheme new file mode 100644 index 0000000..d7058cf --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/mac.xcuserdatad/xcschemes/DZNEmptyDataSet.xcscheme @@ -0,0 +1,58 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-Info.plist b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-Info.plist new file mode 100644 index 0000000..e446dd0 --- /dev/null +++ b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + ${PODS_DEVELOPMENT_LANGUAGE} + CFBundleExecutable + ${EXECUTABLE_NAME} + CFBundleIdentifier + ${PRODUCT_BUNDLE_IDENTIFIER} + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + ${PRODUCT_NAME} + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.8.1 + CFBundleSignature + ???? + CFBundleVersion + ${CURRENT_PROJECT_VERSION} + NSPrincipalClass + + + diff --git a/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-dummy.m b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-dummy.m new file mode 100644 index 0000000..9166203 --- /dev/null +++ b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_DZNEmptyDataSet : NSObject +@end +@implementation PodsDummy_DZNEmptyDataSet +@end diff --git a/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-prefix.pch b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-prefix.pch new file mode 100644 index 0000000..beb2a24 --- /dev/null +++ b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-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/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-umbrella.h b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-umbrella.h new file mode 100644 index 0000000..3015560 --- /dev/null +++ b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet-umbrella.h @@ -0,0 +1,17 @@ +#ifdef __OBJC__ +#import +#else +#ifndef FOUNDATION_EXPORT +#if defined(__cplusplus) +#define FOUNDATION_EXPORT extern "C" +#else +#define FOUNDATION_EXPORT extern +#endif +#endif +#endif + +#import "UIScrollView+EmptyDataSet.h" + +FOUNDATION_EXPORT double DZNEmptyDataSetVersionNumber; +FOUNDATION_EXPORT const unsigned char DZNEmptyDataSetVersionString[]; + diff --git a/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.debug.xcconfig b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.debug.xcconfig new file mode 100644 index 0000000..af03d2b --- /dev/null +++ b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.debug.xcconfig @@ -0,0 +1,14 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -framework "UIKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/DZNEmptyDataSet +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.modulemap b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.modulemap new file mode 100644 index 0000000..854066e --- /dev/null +++ b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.modulemap @@ -0,0 +1,6 @@ +framework module DZNEmptyDataSet { + umbrella header "DZNEmptyDataSet-umbrella.h" + + export * + module * { export * } +} diff --git a/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.release.xcconfig b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.release.xcconfig new file mode 100644 index 0000000..af03d2b --- /dev/null +++ b/Pods/Target Support Files/DZNEmptyDataSet/DZNEmptyDataSet.release.xcconfig @@ -0,0 +1,14 @@ +APPLICATION_EXTENSION_API_ONLY = YES +CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO +CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +OTHER_LDFLAGS = $(inherited) -framework "UIKit" +PODS_BUILD_DIR = ${BUILD_DIR} +PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) +PODS_DEVELOPMENT_LANGUAGE = ${DEVELOPMENT_LANGUAGE} +PODS_ROOT = ${SRCROOT} +PODS_TARGET_SRCROOT = ${PODS_ROOT}/DZNEmptyDataSet +PODS_XCFRAMEWORKS_BUILD_DIR = $(PODS_CONFIGURATION_BUILD_DIR)/XCFrameworkIntermediates +PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier} +SKIP_INSTALL = YES +USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES diff --git a/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard-acknowledgements.markdown b/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard-acknowledgements.markdown index a801d85..91a0011 100644 --- a/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard-acknowledgements.markdown @@ -24,6 +24,19 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +## DZNEmptyDataSet + +The MIT License (MIT) + +Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl + +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. + + ## MBProgressHUD Copyright © 2009-2020 Matej Bukovinski diff --git a/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard-acknowledgements.plist b/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard-acknowledgements.plist index ae548cf..d17d9dd 100644 --- a/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard-acknowledgements.plist @@ -41,6 +41,25 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + The MIT License (MIT) + +Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl + +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 + DZNEmptyDataSet + Type + PSGroupSpecifier + FooterText Copyright © 2009-2020 Matej Bukovinski diff --git a/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.debug.xcconfig b/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.debug.xcconfig index 2222cc4..ebe87d3 100644 --- a/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.debug.xcconfig +++ b/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.debug.xcconfig @@ -1,10 +1,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "CoreGraphics" -framework "Foundation" -framework "MBProgressHUD" -framework "MJExtension" -framework "Masonry" -framework "QuartzCore" -framework "UIKit" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" +OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "Foundation" -framework "MBProgressHUD" -framework "MJExtension" -framework "Masonry" -framework "QuartzCore" -framework "UIKit" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.release.xcconfig b/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.release.xcconfig index 2222cc4..ebe87d3 100644 --- a/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.release.xcconfig +++ b/Pods/Target Support Files/Pods-CustomKeyboard/Pods-CustomKeyboard.release.xcconfig @@ -1,10 +1,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/../../Frameworks' -OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "CoreGraphics" -framework "Foundation" -framework "MBProgressHUD" -framework "MJExtension" -framework "Masonry" -framework "QuartzCore" -framework "UIKit" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" +OTHER_LDFLAGS = $(inherited) -framework "AFNetworking" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "Foundation" -framework "MBProgressHUD" -framework "MJExtension" -framework "Masonry" -framework "QuartzCore" -framework "UIKit" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.markdown b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.markdown index b4f5fdc..6c42dc8 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.markdown @@ -166,4 +166,17 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +## DZNEmptyDataSet + +The MIT License (MIT) + +Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl + +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/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.plist b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.plist index ae814bf..fb3d606 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.plist +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-acknowledgements.plist @@ -226,6 +226,25 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + The MIT License (MIT) + +Copyright (c) 2016 Ignacio Romero Zurbuchen iromero@dzen.cl + +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 + DZNEmptyDataSet + Type + PSGroupSpecifier + FooterText Generated by CocoaPods - https://cocoapods.org diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-input-files.xcfilelist b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-input-files.xcfilelist index 621ebd8..2ed9ead 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-input-files.xcfilelist @@ -5,4 +5,5 @@ ${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework ${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework ${BUILT_PRODUCTS_DIR}/LookinServer/LookinServer.framework ${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework -${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework \ No newline at end of file +${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework +${BUILT_PRODUCTS_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-output-files.xcfilelist b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-output-files.xcfilelist index 0364f30..6419df8 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Debug-output-files.xcfilelist @@ -4,4 +4,5 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/LookinServer.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework \ No newline at end of file +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DZNEmptyDataSet.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-input-files.xcfilelist b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-input-files.xcfilelist index 111f6bb..59f474e 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-input-files.xcfilelist +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-input-files.xcfilelist @@ -4,4 +4,5 @@ ${BUILT_PRODUCTS_DIR}/MBProgressHUD/MBProgressHUD.framework ${BUILT_PRODUCTS_DIR}/MJExtension/MJExtension.framework ${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework ${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework -${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework \ No newline at end of file +${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework +${BUILT_PRODUCTS_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-output-files.xcfilelist b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-output-files.xcfilelist index dae56b3..8831567 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-output-files.xcfilelist +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-Release-output-files.xcfilelist @@ -3,4 +3,5 @@ ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MBProgressHUD.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJExtension.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/Masonry.framework ${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/MJRefresh.framework -${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework \ No newline at end of file +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/SDWebImage.framework +${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/DZNEmptyDataSet.framework \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh index b021ddd..0413de8 100755 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh @@ -183,6 +183,7 @@ if [[ "$CONFIGURATION" == "Debug" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/LookinServer/LookinServer.framework" install_framework "${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework" install_framework "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework" + install_framework "${BUILT_PRODUCTS_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework" fi if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/AFNetworking/AFNetworking.framework" @@ -191,6 +192,7 @@ if [[ "$CONFIGURATION" == "Release" ]]; then install_framework "${BUILT_PRODUCTS_DIR}/Masonry/Masonry.framework" install_framework "${BUILT_PRODUCTS_DIR}/MJRefresh/MJRefresh.framework" install_framework "${BUILT_PRODUCTS_DIR}/SDWebImage/SDWebImage.framework" + install_framework "${BUILT_PRODUCTS_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework" fi if [ "${COCOAPODS_PARALLEL_CODE_SIGN}" == "true" ]; then wait diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.debug.xcconfig b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.debug.xcconfig index 5c878eb..8f9a168 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.debug.xcconfig +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.debug.xcconfig @@ -1,10 +1,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_ROOT}/Bugly" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_ROOT}/Bugly" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer/LookinServer.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/LookinServer/LookinServer.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "AFNetworking" -framework "Bugly" -framework "CoreGraphics" -framework "Foundation" -framework "ImageIO" -framework "LookinServer" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Bugly" "-F${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "AFNetworking" -framework "Bugly" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "Foundation" -framework "ImageIO" -framework "LookinServer" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Bugly" "-F${PODS_CONFIGURATION_BUILD_DIR}/LookinServer" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.release.xcconfig b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.release.xcconfig index e201a6c..dfda5b8 100644 --- a/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.release.xcconfig +++ b/Pods/Target Support Files/Pods-keyBoard/Pods-keyBoard.release.xcconfig @@ -1,10 +1,10 @@ CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO -FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_ROOT}/Bugly" +FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "${PODS_ROOT}/Bugly" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking/AFNetworking.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet/DZNEmptyDataSet.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD/MBProgressHUD.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJExtension/MJExtension.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh/MJRefresh.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/Masonry/Masonry.framework/Headers" "${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage/SDWebImage.framework/Headers" LD_RUNPATH_SEARCH_PATHS = $(inherited) '@executable_path/Frameworks' '@loader_path/Frameworks' -OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "AFNetworking" -framework "Bugly" -framework "CoreGraphics" -framework "Foundation" -framework "ImageIO" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" -OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Bugly" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" +OTHER_LDFLAGS = $(inherited) -ObjC -l"c++" -l"z" -framework "AFNetworking" -framework "Bugly" -framework "CoreGraphics" -framework "DZNEmptyDataSet" -framework "Foundation" -framework "ImageIO" -framework "MBProgressHUD" -framework "MJExtension" -framework "MJRefresh" -framework "Masonry" -framework "QuartzCore" -framework "SDWebImage" -framework "Security" -framework "SystemConfiguration" -framework "UIKit" +OTHER_MODULE_VERIFIER_FLAGS = $(inherited) "-F${PODS_CONFIGURATION_BUILD_DIR}/AFNetworking" "-F${PODS_CONFIGURATION_BUILD_DIR}/MBProgressHUD" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJExtension" "-F${PODS_CONFIGURATION_BUILD_DIR}/Masonry" "-F${PODS_CONFIGURATION_BUILD_DIR}/Bugly" "-F${PODS_CONFIGURATION_BUILD_DIR}/MJRefresh" "-F${PODS_CONFIGURATION_BUILD_DIR}/SDWebImage" "-F${PODS_CONFIGURATION_BUILD_DIR}/DZNEmptyDataSet" PODS_BUILD_DIR = ${BUILD_DIR} PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME) PODS_PODFILE_DIR_PATH = ${SRCROOT}/. diff --git a/keyBoard.xcodeproj/project.pbxproj b/keyBoard.xcodeproj/project.pbxproj index 7faef9b..1c04d58 100644 --- a/keyBoard.xcodeproj/project.pbxproj +++ b/keyBoard.xcodeproj/project.pbxproj @@ -545,14 +545,10 @@ inputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-${CONFIGURATION}-input-files.xcfilelist", ); - inputPaths = ( - ); name = "[CP] Embed Pods Frameworks"; outputFileListPaths = ( "${PODS_ROOT}/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks-${CONFIGURATION}-output-files.xcfilelist", ); - outputPaths = ( - ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-keyBoard/Pods-keyBoard-frameworks.sh\"\n";