diff --git a/Podfile.lock b/Podfile.lock index 7e5833f..c4f2bc9 100644 --- a/Podfile.lock +++ b/Podfile.lock @@ -37,6 +37,7 @@ PODS: - Mantle/extobjc (= 1.5.4) - Mantle/extobjc (1.5.4) - MBProgressHUD (0.9.1) + - MJRefresh (1.4.1) - Reachability (3.2) - SBJson (4.0.1) - SDWebImage (3.7.2): @@ -52,6 +53,7 @@ DEPENDENCIES: - Godzippa - Mantle - MBProgressHUD + - MJRefresh - Reachability - SBJson - SDWebImage @@ -66,6 +68,7 @@ SPEC CHECKSUMS: Godzippa: 21621e8ddc2f1521db473a72b48148c3f0e79d76 Mantle: 60acd0cd363e27d945bda0a6b8e90577112d28f3 MBProgressHUD: c47f2c166c126cf2ce36498d80f33e754d4e93ad + MJRefresh: 6a0fd4c81a957803bd99bbbf55a956d1d6f41263 Reachability: 33e18b67625424e47b6cde6d202dce689ad7af96 SBJson: 68f16f446bd6047dc3dd1ec4919a468c2cd7fedd SDWebImage: 71b7cdc1d1721d6a82ed62889030225f2c249e29 diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.bundle/arrow@2x.png b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.bundle/arrow@2x.png new file mode 100755 index 0000000..a016473 Binary files /dev/null and b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.bundle/arrow@2x.png differ diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.h new file mode 100644 index 0000000..f3e97fd --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.h @@ -0,0 +1,9 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 + +#import "UIScrollView+MJRefresh.h" +#import "MJRefreshGifHeader.h" +#import "MJRefreshLegendHeader.h" +#import "MJRefreshGifFooter.h" +#import "MJRefreshLegendFooter.h" +#import "MJRefreshConst.h" \ No newline at end of file diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshComponent.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshComponent.h new file mode 100644 index 0000000..c559da3 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshComponent.h @@ -0,0 +1,37 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshComponent.h +// MJRefreshExample +// +// Created by MJ Lee on 15/3/4. +// Copyright (c) 2015年 itcast. All rights reserved. +// 刷新组件:基本的开始刷新和结束刷新行为 + +#import + +@interface MJRefreshComponent : UIView +{ + UIEdgeInsets _scrollViewOriginalInset; + __weak UIScrollView *_scrollView; +} + +#pragma mark - 文字处理 +/** 文字颜色 */ +@property (strong, nonatomic) UIColor *textColor; +/** 字体大小 */ +@property (strong, nonatomic) UIFont *font; + +#pragma mark - 刷新处理 +/** 正在刷新的回调 */ +@property (copy, nonatomic) void (^refreshingBlock)(); +/** 设置回调对象和回调方法 */ +- (void)setRefreshingTarget:(id)target refreshingAction:(SEL)action; +@property (weak, nonatomic) id refreshingTarget; +@property (assign, nonatomic) SEL refreshingAction; +/** 进入刷新状态 */ +- (void)beginRefreshing; +/** 结束刷新状态 */ +- (void)endRefreshing; +/** 是否正在刷新 */ +- (BOOL)isRefreshing; +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshComponent.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshComponent.m new file mode 100644 index 0000000..b336aa2 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshComponent.m @@ -0,0 +1,81 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshComponent.m +// MJRefreshExample +// +// Created by MJ Lee on 15/3/4. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "MJRefreshComponent.h" +#import "MJRefreshConst.h" +#import "UIView+MJExtension.h" + +@interface MJRefreshComponent() +/** 记录scrollView刚开始的inset */ +@property (assign, nonatomic) UIEdgeInsets scrollViewOriginalInset; +/** 父控件 */ +@property (weak, nonatomic) UIScrollView *scrollView; +@end + +@implementation MJRefreshComponent +#pragma mark - 初始化 +- (instancetype)initWithFrame:(CGRect)frame +{ + if (self = [super initWithFrame:frame]) { + // 基本属性 + self.autoresizingMask = UIViewAutoresizingFlexibleWidth; + self.backgroundColor = [UIColor clearColor]; + + // 默认文字颜色和字体大小 + self.textColor = MJRefreshLabelTextColor; + self.font = MJRefreshLabelFont; + } + return self; +} + +- (void)willMoveToSuperview:(UIView *)newSuperview +{ + [super willMoveToSuperview:newSuperview]; + + // 旧的父控件 + [self.superview removeObserver:self forKeyPath:MJRefreshContentOffset context:nil]; + + if (newSuperview) { // 新的父控件 + [newSuperview addObserver:self forKeyPath:MJRefreshContentOffset options:NSKeyValueObservingOptionNew context:nil]; + + // 设置宽度 + self.mj_w = newSuperview.mj_w; + // 设置位置 + self.mj_x = 0; + + // 记录UIScrollView + self.scrollView = (UIScrollView *)newSuperview; + // 设置永远支持垂直弹簧效果 + self.scrollView.alwaysBounceVertical = YES; + // 记录UIScrollView最开始的contentInset + self.scrollViewOriginalInset = self.scrollView.contentInset; + } +} + +#pragma mark - 公共方法 +- (void)setRefreshingTarget:(id)target refreshingAction:(SEL)action +{ + self.refreshingTarget = target; + self.refreshingAction = action; +} + +- (void)beginRefreshing +{ + +} + +- (void)endRefreshing +{ + +} + +- (BOOL)isRefreshing { + return NO; +} +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshConst.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshConst.h new file mode 100644 index 0000000..987ee39 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshConst.h @@ -0,0 +1,48 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +#import + +// 日志输出 +#ifdef DEBUG +#define MJLog(...) NSLog(__VA_ARGS__) +#else +#define MJLog(...) +#endif + +// 过期提醒 +#define MJDeprecated(instead) NS_DEPRECATED(2_0, 2_0, 2_0, 2_0, instead) + +// 运行时objc_msgSend +#define msgSend(...) ((void (*)(void *, SEL, UIView *))objc_msgSend)(__VA_ARGS__) +#define msgTarget(target) (__bridge void *)(target) + +// RGB颜色 +#define MJColor(r, g, b) [UIColor colorWithRed:(r)/255.0 green:(g)/255.0 blue:(b)/255.0 alpha:1.0] + +// 文字颜色 +#define MJRefreshLabelTextColor MJColor(100, 100, 100) + +// 字体大小 +#define MJRefreshLabelFont [UIFont boldSystemFontOfSize:13] + +// 图片路径 +#define MJRefreshSrcName(file) [@"MJRefresh.bundle" stringByAppendingPathComponent:file] + +// 常量 +UIKIT_EXTERN const CGFloat MJRefreshHeaderHeight; +UIKIT_EXTERN const CGFloat MJRefreshFooterHeight; +UIKIT_EXTERN const CGFloat MJRefreshFastAnimationDuration; +UIKIT_EXTERN const CGFloat MJRefreshSlowAnimationDuration; + +UIKIT_EXTERN NSString *const MJRefreshHeaderUpdatedTimeKey; +UIKIT_EXTERN NSString *const MJRefreshContentOffset; +UIKIT_EXTERN NSString *const MJRefreshContentSize; +UIKIT_EXTERN NSString *const MJRefreshPanState; + +UIKIT_EXTERN NSString *const MJRefreshHeaderStateIdleText; +UIKIT_EXTERN NSString *const MJRefreshHeaderStatePullingText; +UIKIT_EXTERN NSString *const MJRefreshHeaderStateRefreshingText; + +UIKIT_EXTERN NSString *const MJRefreshFooterStateIdleText; +UIKIT_EXTERN NSString *const MJRefreshFooterStateRefreshingText; +UIKIT_EXTERN NSString *const MJRefreshFooterStateNoMoreDataText; \ No newline at end of file diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshConst.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshConst.m new file mode 100644 index 0000000..4c5e684 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshConst.m @@ -0,0 +1,21 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +#import + +const CGFloat MJRefreshHeaderHeight = 64.0; +const CGFloat MJRefreshFooterHeight = 44.0; +const CGFloat MJRefreshFastAnimationDuration = 0.25; +const CGFloat MJRefreshSlowAnimationDuration = 0.4; + +NSString *const MJRefreshHeaderUpdatedTimeKey = @"MJRefreshHeaderUpdatedTimeKey"; +NSString *const MJRefreshContentOffset = @"contentOffset"; +NSString *const MJRefreshContentSize = @"contentSize"; +NSString *const MJRefreshPanState = @"pan.state"; + +NSString *const MJRefreshHeaderStateIdleText = @"下拉可以刷新"; +NSString *const MJRefreshHeaderStatePullingText = @"松开立即刷新"; +NSString *const MJRefreshHeaderStateRefreshingText = @"正在刷新数据中..."; + +NSString *const MJRefreshFooterStateIdleText = @"点击加载更多"; +NSString *const MJRefreshFooterStateRefreshingText = @"正在加载更多的数据..."; +NSString *const MJRefreshFooterStateNoMoreDataText = @"已经全部加载完毕"; \ No newline at end of file diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshFooter.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshFooter.h new file mode 100644 index 0000000..228a9eb --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshFooter.h @@ -0,0 +1,40 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshFooter.h +// MJRefreshExample +// +// Created by MJ Lee on 15/3/5. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "MJRefreshComponent.h" + +typedef enum { + MJRefreshFooterStateIdle = 1, // 普通闲置状态 + MJRefreshFooterStateRefreshing, // 正在刷新中的状态 + MJRefreshFooterStateNoMoreData // 所有数据加载完毕,没有更多的数据了 +} MJRefreshFooterState; + +@interface MJRefreshFooter : MJRefreshComponent +/** 提示没有更多的数据 */ +- (void)noticeNoMoreData; +/** 重置没有更多的数据(消除没有更多数据的状态) */ +- (void)resetNoMoreData; + +/** 刷新控件的状态(交给子类重写) */ +@property (assign, nonatomic) MJRefreshFooterState state; + +/** 是否隐藏状态标签 */ +@property (assign, nonatomic, getter=isStateHidden) BOOL stateHidden; + +/** + * 设置state状态下的状态文字内容title + */ +- (void)setTitle:(NSString *)title forState:(MJRefreshFooterState)state; + +/** 是否自动刷新(默认为YES) */ +@property (assign, nonatomic, getter=isAutomaticallyRefresh) BOOL automaticallyRefresh; + +/** 当底部控件出现多少时就自动刷新(默认为1.0,也就是底部控件完全出现时,才会自动刷新) */ +@property (assign, nonatomic) CGFloat appearencePercentTriggerAutoRefresh; +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshFooter.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshFooter.m new file mode 100644 index 0000000..16dde6d --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshFooter.m @@ -0,0 +1,319 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshFooter.m +// MJRefreshExample +// +// Created by MJ Lee on 15/3/5. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "MJRefreshFooter.h" +#import "MJRefreshConst.h" +#import "UIScrollView+MJExtension.h" +#import "MJRefreshHeader.h" +#import "UIView+MJExtension.h" +#import "UIScrollView+MJRefresh.h" +#import + +@interface MJRefreshFooter() +/** 显示状态文字的标签 */ +@property (weak, nonatomic) UILabel *stateLabel; +/** 点击可以加载更多 */ +@property (weak, nonatomic) UIButton *loadMoreButton; +/** 没有更多的数据 */ +@property (weak, nonatomic) UILabel *noMoreLabel; +/** 即将要执行的代码 */ +@property (strong, nonatomic) NSMutableArray *willExecuteBlocks; +@end + +@implementation MJRefreshFooter +#pragma mark - 懒加载 +- (NSMutableArray *)willExecuteBlocks +{ + if (!_willExecuteBlocks) { + self.willExecuteBlocks = [NSMutableArray array]; + } + return _willExecuteBlocks; +} + +- (UIButton *)loadMoreButton +{ + if (!_loadMoreButton) { + UIButton *loadMoreButton = [[UIButton alloc] init]; + loadMoreButton.backgroundColor = [UIColor clearColor]; + [loadMoreButton addTarget:self action:@selector(buttonClick) forControlEvents:UIControlEventTouchUpInside]; + [self addSubview:_loadMoreButton = loadMoreButton]; + } + return _loadMoreButton; +} + +- (UILabel *)noMoreLabel +{ + if (!_noMoreLabel) { + UILabel *noMoreLabel = [[UILabel alloc] init]; + noMoreLabel.backgroundColor = [UIColor clearColor]; + noMoreLabel.textAlignment = NSTextAlignmentCenter; + [self addSubview:_noMoreLabel = noMoreLabel]; + } + return _noMoreLabel; +} + +- (UILabel *)stateLabel +{ + if (!_stateLabel) { + UILabel *stateLabel = [[UILabel alloc] init]; + stateLabel.backgroundColor = [UIColor clearColor]; + stateLabel.textAlignment = NSTextAlignmentCenter; + [self addSubview:_stateLabel = stateLabel]; + } + return _stateLabel; +} + +#pragma mark - 初始化方法 +- (instancetype)initWithFrame:(CGRect)frame { + if (self = [super initWithFrame:frame]) { + // 默认底部控件100%出现时才会自动刷新 + self.appearencePercentTriggerAutoRefresh = 1.0; + + // 设置为默认状态 + self.automaticallyRefresh = YES; + self.state = MJRefreshFooterStateIdle; + + // 初始化文字 + [self setTitle:MJRefreshFooterStateIdleText forState:MJRefreshFooterStateIdle]; + [self setTitle:MJRefreshFooterStateRefreshingText forState:MJRefreshFooterStateRefreshing]; + [self setTitle:MJRefreshFooterStateNoMoreDataText forState:MJRefreshFooterStateNoMoreData]; + } + return self; +} + +- (void)willMoveToSuperview:(UIView *)newSuperview +{ + [super willMoveToSuperview:newSuperview]; + + // 旧的父控件 + [self.superview removeObserver:self forKeyPath:MJRefreshContentSize context:nil]; + [self.superview removeObserver:self forKeyPath:MJRefreshPanState context:nil]; + + if (newSuperview) { // 新的父控件 + // 监听 + [newSuperview addObserver:self forKeyPath:MJRefreshContentSize options:NSKeyValueObservingOptionNew context:nil]; + [newSuperview addObserver:self forKeyPath:MJRefreshPanState options:NSKeyValueObservingOptionNew context:nil]; + + self.mj_h = MJRefreshFooterHeight; + _scrollView.mj_insetB += self.mj_h; + + // 重新调整frame + [self adjustFrameWithContentSize]; + } +} + +- (void)layoutSubviews +{ + [super layoutSubviews]; + + self.loadMoreButton.frame = self.bounds; + self.stateLabel.frame = self.bounds; + self.noMoreLabel.frame = self.bounds; +} + +#pragma mark - 私有方法 +- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context +{ + // 遇到这些情况就直接返回 + if (!self.userInteractionEnabled || self.alpha <= 0.01 || self.hidden) return; + + if (self.state == MJRefreshFooterStateIdle) { + // 当是Idle状态时,才需要检测是否要进入刷新状态 + if ([keyPath isEqualToString:MJRefreshPanState]) { + if (_scrollView.panGestureRecognizer.state == UIGestureRecognizerStateEnded) {// 手松开 + if (_scrollView.mj_insetT + _scrollView.mj_contentSizeH <= _scrollView.mj_h) { // 不够一个屏幕 + if (_scrollView.mj_offsetY > - _scrollView.mj_insetT) { // 向上拽 + [self beginRefreshing]; + } + } else { // 超出一个屏幕 + if (_scrollView.mj_offsetY > _scrollView.mj_contentSizeH + _scrollView.mj_insetB - _scrollView.mj_h) { + [self beginRefreshing]; + } + } + } + } else if ([keyPath isEqualToString:MJRefreshContentOffset]) { + if (self.state != MJRefreshFooterStateRefreshing && self.automaticallyRefresh) { + // 根据contentOffset调整state + [self adjustStateWithContentOffset]; + } + } + } + + // 不管是什么状态,都要调整位置 + if ([keyPath isEqualToString:MJRefreshContentSize]) { + [self adjustFrameWithContentSize]; + } +} + +#pragma mark 根据contentOffset调整state +- (void)adjustStateWithContentOffset +{ + if (self.mj_y == 0) return; + + if (_scrollView.mj_insetT + _scrollView.mj_contentSizeH > _scrollView.mj_h) { // 内容超过一个屏幕 + // 这里的_scrollView.mj_contentSizeH替换掉self.mj_y更为合理 + if (_scrollView.mj_offsetY > _scrollView.mj_contentSizeH - _scrollView.mj_h + self.mj_h * self.appearencePercentTriggerAutoRefresh + _scrollView.mj_insetB - self.mj_h) { + // 当底部刷新控件完全出现时,才刷新 + [self beginRefreshing]; + } + } +} + +- (void)adjustFrameWithContentSize +{ + // 设置位置 + self.mj_y = _scrollView.mj_contentSizeH; +} + +- (void)buttonClick +{ + [self beginRefreshing]; +} + +#pragma mark - 公共方法 +- (void)setHidden:(BOOL)hidden +{ + __weak typeof(self) weakSelf = self; + BOOL lastHidden = weakSelf.isHidden; + CGFloat h = weakSelf.mj_h; + [weakSelf.willExecuteBlocks addObject:^{ + if (!lastHidden && hidden) { + weakSelf.state = MJRefreshFooterStateIdle; + _scrollView.mj_insetB -= h; + } else if (lastHidden && !hidden) { + _scrollView.mj_insetB += h; + + [weakSelf adjustFrameWithContentSize]; + } + }]; + [weakSelf setNeedsDisplay]; // 放到drawRect是为了延迟执行,防止因为修改了inset,导致循环调用数据源方法 + + [super setHidden:hidden]; +} + +- (void)drawRect:(CGRect)rect +{ + [super drawRect:rect]; + + for (void (^block)() in self.willExecuteBlocks) { + block(); + } + [self.willExecuteBlocks removeAllObjects]; +} + +- (void)beginRefreshing +{ + self.state = MJRefreshFooterStateRefreshing; +} + +- (void)endRefreshing +{ + self.state = MJRefreshFooterStateIdle; +} + +- (BOOL)isRefreshing +{ + return self.state == MJRefreshFooterStateRefreshing; +} + +- (void)noticeNoMoreData +{ + self.state = MJRefreshFooterStateNoMoreData; +} + +- (void)resetNoMoreData +{ + self.state = MJRefreshFooterStateIdle; +} + +- (void)setTitle:(NSString *)title forState:(MJRefreshFooterState)state +{ + if (title == nil) return; + + // 刷新当前状态的文字 + switch (state) { + case MJRefreshFooterStateIdle: + [self.loadMoreButton setTitle:title forState:UIControlStateNormal]; + break; + + case MJRefreshFooterStateRefreshing: + self.stateLabel.text = title; + break; + + case MJRefreshFooterStateNoMoreData: + self.noMoreLabel.text = title; + break; + + default: + break; + } +} + +- (void)setState:(MJRefreshFooterState)state +{ + if (_state == state) return; + + _state = state; + + switch (state) { + case MJRefreshFooterStateIdle: + self.noMoreLabel.hidden = YES; + self.stateLabel.hidden = YES; + self.loadMoreButton.hidden = NO; + break; + + case MJRefreshFooterStateRefreshing: + self.loadMoreButton.hidden = YES; + self.noMoreLabel.hidden = YES; + if (!self.stateHidden) self.stateLabel.hidden = NO; + if (self.refreshingBlock) { + self.refreshingBlock(); + } + if ([self.refreshingTarget respondsToSelector:self.refreshingAction]) { + msgSend(msgTarget(self.refreshingTarget), self.refreshingAction, self); + } + break; + + case MJRefreshFooterStateNoMoreData: + self.loadMoreButton.hidden = YES; + self.noMoreLabel.hidden = NO; + self.stateLabel.hidden = YES; + break; + + default: + break; + } +} + +- (void)setTextColor:(UIColor *)textColor +{ + [super setTextColor:textColor]; + + self.stateLabel.textColor = textColor; + [self.loadMoreButton setTitleColor:textColor forState:UIControlStateNormal]; + self.noMoreLabel.textColor = textColor; +} + +- (void)setFont:(UIFont *)font +{ + [super setFont:font]; + + self.loadMoreButton.titleLabel.font = font; + self.noMoreLabel.font = font; + self.stateLabel.font = font; +} + +- (void)setStateHidden:(BOOL)stateHidden +{ + _stateHidden = stateHidden; + + self.stateLabel.hidden = stateHidden; + [self setNeedsLayout]; +} +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifFooter.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifFooter.h new file mode 100644 index 0000000..56cdfce --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifFooter.h @@ -0,0 +1,15 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshGifFooter.h +// MJRefreshExample +// +// Created by MJ Lee on 15/3/5. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "MJRefreshFooter.h" + +@interface MJRefreshGifFooter : MJRefreshFooter +/** 正在刷新时的动画图片 */ +@property (strong, nonatomic) NSArray *refreshingImages; +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifFooter.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifFooter.m new file mode 100644 index 0000000..9176827 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifFooter.m @@ -0,0 +1,90 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshGifFooter.m +// MJRefreshExample +// +// Created by MJ Lee on 15/3/5. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "MJRefreshGifFooter.h" +#import "MJRefreshConst.h" +#import "UIView+MJExtension.h" +#import "UIScrollView+MJExtension.h" + +@interface MJRefreshGifFooter() +/** 播放动画图片的控件 */ +@property (weak, nonatomic) UIImageView *gifView; +@end + +@implementation MJRefreshGifFooter +#pragma mark - 懒加载 +- (UIImageView *)gifView +{ + if (!_gifView) { + UIImageView *gifView = [[UIImageView alloc] init]; + [self addSubview:_gifView = gifView]; + } + return _gifView; +} + +#pragma mark - 初始化方法 +- (void)layoutSubviews +{ + [super layoutSubviews]; + + // 指示器 + self.gifView.frame = self.bounds; + if (self.stateHidden) { + self.gifView.contentMode = UIViewContentModeCenter; + } else { + self.gifView.contentMode = UIViewContentModeRight; + self.gifView.mj_w = self.mj_w * 0.5 - 90; + } +} + +#pragma mark - 公共方法 +- (void)setState:(MJRefreshFooterState)state +{ + if (self.state == state) return; + + switch (state) { + case MJRefreshFooterStateIdle: + self.gifView.hidden = YES; + [self.gifView stopAnimating]; + break; + + case MJRefreshFooterStateRefreshing: + self.gifView.hidden = NO; + [self.gifView startAnimating]; + break; + + case MJRefreshFooterStateNoMoreData: + self.gifView.hidden = YES; + [self.gifView stopAnimating]; + break; + + default: + break; + } + + // super里面有回调,应该在最后面调用 + [super setState:state]; +} + +- (void)setRefreshingImages:(NSArray *)refreshingImages +{ + _refreshingImages = refreshingImages; + + self.gifView.animationImages = refreshingImages; + self.gifView.animationDuration = refreshingImages.count * 0.1; + + // 根据图片设置控件的高度 + UIImage *image = [refreshingImages firstObject]; + if (image.size.height > self.mj_h) { + _scrollView.mj_insetB -= self.mj_h; + self.mj_h = image.size.height; + _scrollView.mj_insetB += self.mj_h; + } +} +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifHeader.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifHeader.h new file mode 100644 index 0000000..8c1405b --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifHeader.h @@ -0,0 +1,15 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshGifHeader.h +// MJRefreshExample +// +// Created by MJ Lee on 15/3/4. +// Copyright (c) 2015年 itcast. All rights reserved. +// 带有gif图片功能的下拉刷新控件 + +#import "MJRefreshHeader.h" + +@interface MJRefreshGifHeader : MJRefreshHeader +/** 设置state状态下的动画图片images */ +- (void)setImages:(NSArray *)images forState:(MJRefreshHeaderState)state; +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifHeader.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifHeader.m new file mode 100644 index 0000000..ecdf5cc --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifHeader.m @@ -0,0 +1,130 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshGifHeader.m +// MJRefreshExample +// +// Created by MJ Lee on 15/3/4. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "MJRefreshGifHeader.h" +#import "MJRefreshConst.h" +#import "UIView+MJExtension.h" + +@interface MJRefreshGifHeader() +/** 所有状态对应的动画图片 */ +@property (strong, nonatomic) NSMutableDictionary *stateImages; + +/** 播放动画图片的控件 */ +@property (weak, nonatomic) UIImageView *gifView; +@end + +@implementation MJRefreshGifHeader +#pragma mark - 懒加载 +- (NSMutableDictionary *)stateImages +{ + if (!_stateImages) { + self.stateImages = [NSMutableDictionary dictionary]; + } + return _stateImages; +} + +- (UIImageView *)gifView +{ + if (!_gifView) { + UIImageView *gifView = [[UIImageView alloc] init]; + [self addSubview:_gifView = gifView]; + } + return _gifView; +} + +#pragma mark - 初始化 +- (void)layoutSubviews +{ + [super layoutSubviews]; + + self.gifView.frame = self.bounds; + if (self.stateHidden && self.updatedTimeHidden) { + self.gifView.contentMode = UIViewContentModeCenter; + } else { + self.gifView.contentMode = UIViewContentModeRight; + self.gifView.mj_w = self.mj_w * 0.5 - 90; + } +} + +#pragma mark - 公共方法 +#pragma mark 设置状态 +- (void)setState:(MJRefreshHeaderState)state +{ + if (self.state == state) return; + + // 旧状态 + MJRefreshHeaderState oldState = self.state; + + NSArray *images = self.stateImages[@(state)]; + if (images.count != 0) { + switch (state) { + case MJRefreshHeaderStateIdle: { + if (oldState == MJRefreshHeaderStateRefreshing) { + dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(MJRefreshSlowAnimationDuration * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ + self.pullingPercent = 0.0; + }); + } else { + self.pullingPercent = self.pullingPercent; + } + break; + } + + case MJRefreshHeaderStatePulling: + case MJRefreshHeaderStateRefreshing: { + [self.gifView stopAnimating]; + if (images.count == 1) { // 单张图片 + self.gifView.image = [images lastObject]; + } else { // 多张图片 + self.gifView.animationImages = images; + self.gifView.animationDuration = images.count * 0.1; + [self.gifView startAnimating]; + } + break; + } + + default: + break; + } + } + + // super里面有回调,应该在最后面调用 + [super setState:state]; +} + +- (void)setPullingPercent:(CGFloat)pullingPercent +{ + [super setPullingPercent:pullingPercent]; + + NSArray *images = self.stateImages[@(self.state)]; + switch (self.state) { + case MJRefreshHeaderStateIdle: { + [self.gifView stopAnimating]; + NSUInteger index = images.count * self.pullingPercent; + if (index >= images.count) index = images.count - 1; + self.gifView.image = images[index]; + break; + } + default: + break; + } +} + +- (void)setImages:(NSArray *)images forState:(MJRefreshHeaderState)state +{ + if (images == nil) return; + + self.stateImages[@(state)] = images; + + // 根据图片设置控件的高度 + UIImage *image = [images firstObject]; + if (image.size.height > self.mj_h) { + self.mj_h = image.size.height; + } +} +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshHeader.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshHeader.h new file mode 100644 index 0000000..9e83888 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshHeader.h @@ -0,0 +1,47 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshHeader.h +// MJRefreshExample +// +// Created by MJ Lee on 15/3/4. +// Copyright (c) 2015年 itcast. All rights reserved. +// 下拉刷新控件:负责监控用户下拉的状态 + +#import "MJRefreshComponent.h" + +// 下拉刷新控件的状态 +typedef enum { + /** 普通闲置状态 */ + MJRefreshHeaderStateIdle = 1, + /** 松开就可以进行刷新的状态 */ + MJRefreshHeaderStatePulling, + /** 正在刷新中的状态 */ + MJRefreshHeaderStateRefreshing, + /** 即将刷新的状态 */ + MJRefreshHeaderStateWillRefresh +} MJRefreshHeaderState; + +@interface MJRefreshHeader : MJRefreshComponent +/** 利用这个key来保存上次的刷新时间(不同界面的刷新控件应该用不同的dateKey,以区分不同界面的刷新时间) */ +@property (copy, nonatomic) NSString *dateKey; + +/** 利用这个block来决定显示的更新时间 */ +@property (copy, nonatomic) NSString *(^updatedTimeTitle)(NSDate *updatedTime); + +/** + * 设置state状态下的状态文字内容title(别直接拿stateLabel修改文字) + */ +- (void)setTitle:(NSString *)title forState:(MJRefreshHeaderState)state; +/** 刷新控件的状态 */ +@property (assign, nonatomic) MJRefreshHeaderState state; + +#pragma mark - 文字控件的可见性处理 +/** 是否隐藏状态标签 */ +@property (assign, nonatomic, getter=isStateHidden) BOOL stateHidden; +/** 是否隐藏刷新时间标签 */ +@property (assign, nonatomic, getter=isUpdatedTimeHidden) BOOL updatedTimeHidden; + +#pragma mark - 交给子类重写 +/** 下拉的百分比(交给子类重写) */ +@property (assign, nonatomic) CGFloat pullingPercent; +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshHeader.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshHeader.m new file mode 100644 index 0000000..369651b --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshHeader.m @@ -0,0 +1,332 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshHeader.m +// MJRefreshExample +// +// Created by MJ Lee on 15/3/4. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "MJRefreshHeader.h" +#import "MJRefreshConst.h" +#import "UIView+MJExtension.h" +#import +#import "UIScrollView+MJExtension.h" + +@interface MJRefreshHeader() +/** 显示上次刷新时间的标签 */ +@property (weak, nonatomic) UILabel *updatedTimeLabel; +/** 上次刷新时间 */ +@property (strong, nonatomic) NSDate *updatedTime; +/** 显示状态文字的标签 */ +@property (weak, nonatomic) UILabel *stateLabel; +/** 所有状态对应的文字 */ +@property (strong, nonatomic) NSMutableDictionary *stateTitles; +@end + +@implementation MJRefreshHeader +#pragma mark - 懒加载 +- (NSMutableDictionary *)stateTitles +{ + if (!_stateTitles) { + self.stateTitles = [NSMutableDictionary dictionary]; + } + return _stateTitles; +} + +- (UILabel *)stateLabel +{ + if (!_stateLabel) { + UILabel *stateLabel = [[UILabel alloc] init]; + stateLabel.backgroundColor = [UIColor clearColor]; + stateLabel.textAlignment = NSTextAlignmentCenter; + [self addSubview:_stateLabel = stateLabel]; + } + return _stateLabel; +} + +- (UILabel *)updatedTimeLabel +{ + if (!_updatedTimeLabel) { + UILabel *updatedTimeLabel = [[UILabel alloc] init]; + updatedTimeLabel.backgroundColor = [UIColor clearColor]; + updatedTimeLabel.textAlignment = NSTextAlignmentCenter; + [self addSubview:_updatedTimeLabel = updatedTimeLabel]; + } + return _updatedTimeLabel; +} + +#pragma mark - 初始化方法 +- (instancetype)initWithFrame:(CGRect)frame { + if (self = [super initWithFrame:frame]) { + // 设置默认的dateKey + self.dateKey = MJRefreshHeaderUpdatedTimeKey; + + // 设置为默认状态 + self.state = MJRefreshHeaderStateIdle; + + // 初始化文字 + [self setTitle:MJRefreshHeaderStateIdleText forState:MJRefreshHeaderStateIdle]; + [self setTitle:MJRefreshHeaderStatePullingText forState:MJRefreshHeaderStatePulling]; + [self setTitle:MJRefreshHeaderStateRefreshingText forState:MJRefreshHeaderStateRefreshing]; + } + return self; +} + +- (void)willMoveToSuperview:(UIView *)newSuperview +{ + [super willMoveToSuperview:newSuperview]; + + if (newSuperview) { + self.mj_h = MJRefreshHeaderHeight; + } +} + +- (void)drawRect:(CGRect)rect +{ + if (self.state == MJRefreshHeaderStateWillRefresh) { + self.state = MJRefreshHeaderStateRefreshing; + } +} + +- (void)layoutSubviews +{ + [super layoutSubviews]; + + // 设置自己的位置 + self.mj_y = - self.mj_h; + + // 2个标签都隐藏 + if (self.stateHidden && self.updatedTimeHidden) return; + + if (self.updatedTimeHidden) { // 显示状态 + _stateLabel.frame = self.bounds; + } else if (self.stateHidden) { // 显示时间 + self.updatedTimeLabel.frame = self.bounds; + } else { // 都显示 + CGFloat stateH = self.mj_h * 0.55; + CGFloat stateW = self.mj_w; + // 1.状态标签 + _stateLabel.frame = CGRectMake(0, 0, stateW, stateH); + + // 2.时间标签 + CGFloat updatedTimeY = stateH; + CGFloat updatedTimeH = self.mj_h - stateH; + CGFloat updatedTimeW = stateW; + self.updatedTimeLabel.frame = CGRectMake(0, updatedTimeY, updatedTimeW, updatedTimeH); + } +} + +#pragma mark - 私有方法 +- (void)setDateKey:(NSString *)dateKey +{ + _dateKey = dateKey ? dateKey : MJRefreshHeaderUpdatedTimeKey; + + self.updatedTime = [[NSUserDefaults standardUserDefaults] objectForKey:_dateKey]; +} + +#pragma mark 设置最后的更新时间 +- (void)setUpdatedTime:(NSDate *)updatedTime +{ + _updatedTime = updatedTime; + + if (updatedTime) { + [[NSUserDefaults standardUserDefaults] setObject:updatedTime forKey:self.dateKey]; + [[NSUserDefaults standardUserDefaults] synchronize]; + } + + if (self.updatedTimeTitle) { + self.updatedTimeLabel.text = self.updatedTimeTitle(updatedTime); + return; + } + + if (updatedTime) { + // 1.获得年月日 + NSCalendar *calendar = [NSCalendar currentCalendar]; + NSUInteger unitFlags = NSCalendarUnitYear| NSCalendarUnitMonth | NSCalendarUnitDay |NSCalendarUnitHour |NSCalendarUnitMinute; + NSDateComponents *cmp1 = [calendar components:unitFlags fromDate:updatedTime]; + NSDateComponents *cmp2 = [calendar components:unitFlags fromDate:[NSDate date]]; + + // 2.格式化日期 + NSDateFormatter *formatter = [[NSDateFormatter alloc] init]; + if ([cmp1 day] == [cmp2 day]) { // 今天 + formatter.dateFormat = @"今天 HH:mm"; + } else if ([cmp1 year] == [cmp2 year]) { // 今年 + formatter.dateFormat = @"MM-dd HH:mm"; + } else { + formatter.dateFormat = @"yyyy-MM-dd HH:mm"; + } + NSString *time = [formatter stringFromDate:updatedTime]; + + // 3.显示日期 + self.updatedTimeLabel.text = [NSString stringWithFormat:@"最后更新:%@", time]; + } else { + self.updatedTimeLabel.text = @"最后更新:无记录"; + } +} + +#pragma mark KVO属性监听 +- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context +{ + // 遇到这些情况就直接返回 + if (!self.userInteractionEnabled || self.alpha <= 0.01 || self.hidden || self.state == MJRefreshHeaderStateRefreshing) return; + + // 根据contentOffset调整state + if ([keyPath isEqualToString:MJRefreshContentOffset]) { + [self adjustStateWithContentOffset]; + } +} + +#pragma mark 根据contentOffset调整state +- (void)adjustStateWithContentOffset +{ + if (self.state != MJRefreshHeaderStateRefreshing) { + // 在刷新过程中,跳转到下一个控制器时,contentInset可能会变 + _scrollViewOriginalInset = _scrollView.contentInset; + } + + // 当前的contentOffset + CGFloat offsetY = _scrollView.mj_offsetY; + // 头部控件刚好出现的offsetY + CGFloat happenOffsetY = - _scrollViewOriginalInset.top; + + // 如果是向上滚动到看不见头部控件,直接返回 + if (offsetY >= happenOffsetY) return; + + // 普通 和 即将刷新 的临界点 + CGFloat normal2pullingOffsetY = happenOffsetY - self.mj_h; + if (_scrollView.isDragging) { + self.pullingPercent = (happenOffsetY - offsetY) / self.mj_h; + + if (self.state == MJRefreshHeaderStateIdle && offsetY < normal2pullingOffsetY) { + // 转为即将刷新状态 + self.state = MJRefreshHeaderStatePulling; + } else if (self.state == MJRefreshHeaderStatePulling && offsetY >= normal2pullingOffsetY) { + // 转为普通状态 + self.state = MJRefreshHeaderStateIdle; + } + } else if (self.state == MJRefreshHeaderStatePulling) {// 即将刷新 && 手松开 + self.pullingPercent = 1.0; + // 开始刷新 + self.state = MJRefreshHeaderStateRefreshing; + } else { + self.pullingPercent = (happenOffsetY - offsetY) / self.mj_h; + } +} + +#pragma mark - 公共方法 +- (void)setTitle:(NSString *)title forState:(MJRefreshHeaderState)state +{ + if (title == nil) return; + self.stateTitles[@(state)] = title; + + // 刷新当前状态的文字 + self.stateLabel.text = self.stateTitles[@(self.state)]; +} + +- (void)beginRefreshing +{ + if (self.window) { + self.state = MJRefreshHeaderStateRefreshing; + } else { + self.state = MJRefreshHeaderStateWillRefresh; + } +} + +- (void)endRefreshing +{ + dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.05 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{ + self.state = MJRefreshHeaderStateIdle; + }); +} + +- (BOOL)isRefreshing +{ + return self.state == MJRefreshHeaderStateRefreshing; +} + +- (void)setState:(MJRefreshHeaderState)state +{ + if (_state == state) return; + + // 旧状态 + MJRefreshHeaderState oldState = _state; + + // 赋值 + _state = state; + + // 设置状态文字 + _stateLabel.text = _stateTitles[@(state)]; + + switch (state) { + case MJRefreshHeaderStateIdle: { + if (oldState == MJRefreshHeaderStateRefreshing) { + // 保存刷新时间 + self.updatedTime = [NSDate date]; + + // 恢复inset和offset + [UIView animateWithDuration:MJRefreshSlowAnimationDuration delay:0.0 options:UIViewAnimationOptionAllowUserInteraction|UIViewAnimationOptionBeginFromCurrentState animations:^{ + _scrollView.mj_insetT -= self.mj_h; + } completion:nil]; + } + break; + } + + case MJRefreshHeaderStateRefreshing: { + [UIView animateWithDuration:MJRefreshFastAnimationDuration delay:0.0 options:UIViewAnimationOptionAllowUserInteraction|UIViewAnimationOptionBeginFromCurrentState animations:^{ + // 增加滚动区域 + CGFloat top = _scrollViewOriginalInset.top + self.mj_h; + _scrollView.mj_insetT = top; + + // 设置滚动位置 + _scrollView.mj_offsetY = - top; + } completion:^(BOOL finished) { + // 回调 + if (self.refreshingBlock) { + self.refreshingBlock(); + } + + if ([self.refreshingTarget respondsToSelector:self.refreshingAction]) { + msgSend(msgTarget(self.refreshingTarget), self.refreshingAction, self); + } + }]; + break; + } + + default: + break; + } +} + +- (void)setTextColor:(UIColor *)textColor +{ + [super setTextColor:textColor]; + + self.updatedTimeLabel.textColor = textColor; + self.stateLabel.textColor = textColor; +} + +- (void)setFont:(UIFont *)font +{ + [super setFont:font]; + + self.updatedTimeLabel.font = font; + self.stateLabel.font = font; +} + +- (void)setStateHidden:(BOOL)stateHidden +{ + _stateHidden = stateHidden; + + self.stateLabel.hidden = stateHidden; + [self setNeedsLayout]; +} + +- (void)setUpdatedTimeHidden:(BOOL)updatedTimeHidden +{ + _updatedTimeHidden = updatedTimeHidden; + + self.updatedTimeLabel.hidden = updatedTimeHidden; + [self setNeedsLayout]; +} +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendFooter.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendFooter.h new file mode 100644 index 0000000..b8d06f8 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendFooter.h @@ -0,0 +1,14 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshLegendFooter.h +// MJRefreshExample +// +// Created by MJ Lee on 15/3/5. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "MJRefreshFooter.h" + +@interface MJRefreshLegendFooter : MJRefreshFooter + +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendFooter.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendFooter.m new file mode 100644 index 0000000..6c70655 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendFooter.m @@ -0,0 +1,68 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshLegendFooter.m +// MJRefreshExample +// +// Created by MJ Lee on 15/3/5. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "MJRefreshLegendFooter.h" +#import "MJRefreshConst.h" +#import "UIView+MJExtension.h" +#import "UIScrollView+MJExtension.h" + +@interface MJRefreshLegendFooter() +@property (nonatomic, weak) UIActivityIndicatorView *activityView; +@end + +@implementation MJRefreshLegendFooter +#pragma mark - 懒加载 +- (UIActivityIndicatorView *)activityView +{ + if (!_activityView) { + UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray]; + [self addSubview:_activityView = activityView]; + } + return _activityView; +} + +#pragma mark - 初始化方法 +- (void)layoutSubviews +{ + [super layoutSubviews]; + + // 指示器 + if (self.stateHidden) { + self.activityView.center = CGPointMake(self.mj_w * 0.5, self.mj_h * 0.5); + } else { + self.activityView.center = CGPointMake(self.mj_w * 0.5 - 100, self.mj_h * 0.5); + } +} + +#pragma mark - 公共方法 +- (void)setState:(MJRefreshFooterState)state +{ + if (self.state == state) return; + + switch (state) { + case MJRefreshFooterStateIdle: + [self.activityView stopAnimating]; + break; + + case MJRefreshFooterStateRefreshing: + [self.activityView startAnimating]; + break; + + case MJRefreshFooterStateNoMoreData: + [self.activityView stopAnimating]; + break; + + default: + break; + } + + // super里面有回调,应该在最后面调用 + [super setState:state]; +} +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendHeader.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendHeader.h new file mode 100644 index 0000000..a2f1969 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendHeader.h @@ -0,0 +1,14 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshLegendHeader.h +// MJRefreshExample +// +// Created by MJ Lee on 15/3/4. +// Copyright (c) 2015年 itcast. All rights reserved. +// 传统的下拉刷新控件:箭头 + 圈圈 + +#import "MJRefreshHeader.h" + +@interface MJRefreshLegendHeader : MJRefreshHeader + +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendHeader.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendHeader.m new file mode 100644 index 0000000..3349b13 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendHeader.m @@ -0,0 +1,103 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// MJRefreshLegendHeader.m +// MJRefreshExample +// +// Created by MJ Lee on 15/3/4. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "MJRefreshLegendHeader.h" +#import "MJRefreshConst.h" +#import "UIView+MJExtension.h" + +@interface MJRefreshLegendHeader() +@property (nonatomic, weak) UIImageView *arrowImage; +@property (nonatomic, weak) UIActivityIndicatorView *activityView; +@end + +@implementation MJRefreshLegendHeader +#pragma mark - 懒加载 +- (UIImageView *)arrowImage +{ + if (!_arrowImage) { + UIImageView *arrowImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:MJRefreshSrcName(@"arrow.png")]]; + [self addSubview:_arrowImage = arrowImage]; + } + return _arrowImage; +} + +- (UIActivityIndicatorView *)activityView +{ + if (!_activityView) { + UIActivityIndicatorView *activityView = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray]; + activityView.bounds = self.arrowImage.bounds; + [self addSubview:_activityView = activityView]; + } + return _activityView; +} + +#pragma mark - 初始化 +- (void)layoutSubviews +{ + [super layoutSubviews]; + + // 箭头 + CGFloat arrowX = (self.stateHidden && self.updatedTimeHidden) ? self.mj_w * 0.5 : (self.mj_w * 0.5 - 100); + self.arrowImage.center = CGPointMake(arrowX, self.mj_h * 0.5); + + // 指示器 + self.activityView.center = self.arrowImage.center; +} + +#pragma mark - 公共方法 +#pragma mark 设置状态 +- (void)setState:(MJRefreshHeaderState)state +{ + if (self.state == state) return; + + // 旧状态 + MJRefreshHeaderState oldState = self.state; + + switch (state) { + case MJRefreshHeaderStateIdle: { + if (oldState == MJRefreshHeaderStateRefreshing) { + self.arrowImage.transform = CGAffineTransformIdentity; + + [UIView animateWithDuration:MJRefreshSlowAnimationDuration animations:^{ + self.activityView.alpha = 0.0; + } completion:^(BOOL finished) { + self.arrowImage.alpha = 1.0; + self.activityView.alpha = 1.0; + [self.activityView stopAnimating]; + }]; + } else { + [UIView animateWithDuration:MJRefreshFastAnimationDuration animations:^{ + self.arrowImage.transform = CGAffineTransformIdentity; + }]; + } + break; + } + + case MJRefreshHeaderStatePulling: { + [UIView animateWithDuration:MJRefreshFastAnimationDuration animations:^{ + self.arrowImage.transform = CGAffineTransformMakeRotation(0.000001 - M_PI); + }]; + break; + } + + case MJRefreshHeaderStateRefreshing: { + [self.activityView startAnimating]; + self.arrowImage.alpha = 0.0; + break; + } + + default: + break; + } + + // super里面有回调,应该在最后面调用 + [super setState:state]; +} + +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJExtension.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJExtension.h new file mode 100644 index 0000000..9735278 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJExtension.h @@ -0,0 +1,23 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// UIScrollView+Extension.h +// MJRefreshExample +// +// Created by MJ Lee on 14-5-28. +// Copyright (c) 2014年 itcast. All rights reserved. +// + +#import + +@interface UIScrollView (MJExtension) +@property (assign, nonatomic) CGFloat mj_insetT; +@property (assign, nonatomic) CGFloat mj_insetB; +@property (assign, nonatomic) CGFloat mj_insetL; +@property (assign, nonatomic) CGFloat mj_insetR; + +@property (assign, nonatomic) CGFloat mj_offsetX; +@property (assign, nonatomic) CGFloat mj_offsetY; + +@property (assign, nonatomic) CGFloat mj_contentSizeW; +@property (assign, nonatomic) CGFloat mj_contentSizeH; +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJExtension.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJExtension.m new file mode 100644 index 0000000..dace5a5 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJExtension.m @@ -0,0 +1,108 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// UIScrollView+Extension.m +// MJRefreshExample +// +// Created by MJ Lee on 14-5-28. +// Copyright (c) 2014年 itcast. All rights reserved. +// + +#import "UIScrollView+MJExtension.h" + +@implementation UIScrollView (MJExtension) +- (void)setMj_insetT:(CGFloat)mj_insetT +{ + UIEdgeInsets inset = self.contentInset; + inset.top = mj_insetT; + self.contentInset = inset; +} + +- (CGFloat)mj_insetT +{ + return self.contentInset.top; +} + +- (void)setMj_insetB:(CGFloat)mj_insetB +{ + UIEdgeInsets inset = self.contentInset; + inset.bottom = mj_insetB; + self.contentInset = inset; +} + +- (CGFloat)mj_insetB +{ + return self.contentInset.bottom; +} + +- (void)setMj_insetL:(CGFloat)mj_insetL +{ + UIEdgeInsets inset = self.contentInset; + inset.left = mj_insetL; + self.contentInset = inset; +} + +- (CGFloat)mj_insetL +{ + return self.contentInset.left; +} + +- (void)setMj_insetR:(CGFloat)mj_insetR +{ + UIEdgeInsets inset = self.contentInset; + inset.right = mj_insetR; + self.contentInset = inset; +} + +- (CGFloat)mj_insetR +{ + return self.contentInset.right; +} + +- (void)setMj_offsetX:(CGFloat)mj_offsetX +{ + CGPoint offset = self.contentOffset; + offset.x = mj_offsetX; + self.contentOffset = offset; +} + +- (CGFloat)mj_offsetX +{ + return self.contentOffset.x; +} + +- (void)setMj_offsetY:(CGFloat)mj_offsetY +{ + CGPoint offset = self.contentOffset; + offset.y = mj_offsetY; + self.contentOffset = offset; +} + +- (CGFloat)mj_offsetY +{ + return self.contentOffset.y; +} + +- (void)setMj_contentSizeW:(CGFloat)mj_contentSizeW +{ + CGSize size = self.contentSize; + size.width = mj_contentSizeW; + self.contentSize = size; +} + +- (CGFloat)mj_contentSizeW +{ + return self.contentSize.width; +} + +- (void)setMj_contentSizeH:(CGFloat)mj_contentSizeH +{ + CGSize size = self.contentSize; + size.height = mj_contentSizeH; + self.contentSize = size; +} + +- (CGFloat)mj_contentSizeH +{ + return self.contentSize.height; +} +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJRefresh.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJRefresh.h new file mode 100644 index 0000000..740e4d4 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJRefresh.h @@ -0,0 +1,222 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// UIScrollView+MJRefresh.h +// MJRefreshExample +// +// Created by MJ Lee on 15/3/4. +// Copyright (c) 2015年 itcast. All rights reserved. +// 给ScrollView增加下拉刷新、上拉刷新的功能 + +#import +#import "MJRefreshConst.h" + +@class MJRefreshGifHeader, MJRefreshLegendHeader, MJRefreshHeader; +@class MJRefreshGifFooter, MJRefreshLegendFooter, MJRefreshFooter; + +@interface UIScrollView (MJRefresh) +#pragma mark - 访问下拉刷新控件 +/** 下拉刷新控件 */ +@property (strong, nonatomic, readonly) MJRefreshHeader *header; +/** gif功能的下拉刷新控件 */ +@property (nonatomic, readonly) MJRefreshGifHeader *gifHeader; +/** 传统的下拉刷新控件 */ +@property (nonatomic, readonly) MJRefreshLegendHeader *legendHeader; + +#pragma mark - 添加下拉刷新控件 +/** + * 添加一个传统的下拉刷新控件 + * + * @param block 进入刷新状态就会自动调用这个block + */ +- (MJRefreshLegendHeader *)addLegendHeaderWithRefreshingBlock:(void (^)())block; +/** + * 添加一个传统的下拉刷新控件 + * + * @param block 进入刷新状态就会自动调用这个block + * @param dateKey 用来记录刷新时间的key + */ +- (MJRefreshLegendHeader *)addLegendHeaderWithRefreshingBlock:(void (^)())block dateKey:(NSString *)dateKey; +/** + * 添加一个传统的下拉刷新控件 + * + * @param target 进入刷新状态就会自动调用target对象的action方法 + * @param action 进入刷新状态就会自动调用target对象的action方法 + */ +- (MJRefreshLegendHeader *)addLegendHeaderWithRefreshingTarget:(id)target refreshingAction:(SEL)action; +/** + * 添加一个传统的下拉刷新控件 + * + * @param target 进入刷新状态就会自动调用target对象的action方法 + * @param action 进入刷新状态就会自动调用target对象的action方法 + * @param dateKey 用来记录刷新时间的key + */ +- (MJRefreshLegendHeader *)addLegendHeaderWithRefreshingTarget:(id)target refreshingAction:(SEL)action dateKey:(NSString *)dateKey; +/** + * 添加一个gif图片的下拉刷新控件 + * + * @param block 进入刷新状态就会自动调用这个block + */ +- (MJRefreshGifHeader *)addGifHeaderWithRefreshingBlock:(void (^)())block; +/** + * 添加一个gif图片的下拉刷新控件 + * + * @param block 进入刷新状态就会自动调用这个block + * @param dateKey 用来记录刷新时间的key + */ +- (MJRefreshGifHeader *)addGifHeaderWithRefreshingBlock:(void (^)())block dateKey:(NSString *)dateKey; +/** + * 添加一个gif图片的下拉刷新控件 + * + * @param target 进入刷新状态就会自动调用target对象的action方法 + * @param action 进入刷新状态就会自动调用target对象的action方法 + */ +- (MJRefreshGifHeader *)addGifHeaderWithRefreshingTarget:(id)target refreshingAction:(SEL)action; +/** + * 添加一个gif图片的下拉刷新控件 + * + * @param target 进入刷新状态就会自动调用target对象的action方法 + * @param action 进入刷新状态就会自动调用target对象的action方法 + * @param dateKey 用来记录刷新时间的key + */ +- (MJRefreshGifHeader *)addGifHeaderWithRefreshingTarget:(id)target refreshingAction:(SEL)action dateKey:(NSString *)dateKey; + +#pragma mark - 移除下拉刷新控件 +/** + * 移除下拉刷新控件 + */ +- (void)removeHeader; + +#pragma mark - 访问上拉刷新控件 +/** 上拉刷新控件 */ +@property (strong, nonatomic, readonly) MJRefreshFooter *footer; +/** gif功能的上拉刷新控件 */ +@property (nonatomic, readonly) MJRefreshGifFooter *gifFooter; +/** 传统的上拉刷新控件 */ +@property (nonatomic, readonly) MJRefreshLegendFooter *legendFooter; + +#pragma mark - 添加上拉刷新控件 +/** + * 添加一个传统的上拉刷新控件 + * + * @param block 进入刷新状态就会自动调用这个block + */ +- (MJRefreshLegendFooter *)addLegendFooterWithRefreshingBlock:(void (^)())block; +/** + * 添加一个传统的上拉刷新控件 + * + * @param target 进入刷新状态就会自动调用target对象的action方法 + * @param action 进入刷新状态就会自动调用target对象的action方法 + */ +- (MJRefreshLegendFooter *)addLegendFooterWithRefreshingTarget:(id)target refreshingAction:(SEL)action; +/** + * 添加一个gif图片的上拉刷新控件 + * + * @param block 进入刷新状态就会自动调用这个block + */ +- (MJRefreshGifFooter *)addGifFooterWithRefreshingBlock:(void (^)())block; +/** + * 添加一个gif图片的上拉刷新控件 + * + * @param target 进入刷新状态就会自动调用target对象的action方法 + * @param action 进入刷新状态就会自动调用target对象的action方法 + */ +- (MJRefreshGifFooter *)addGifFooterWithRefreshingTarget:(id)target refreshingAction:(SEL)action; + +#pragma mark - 移除上拉刷新控件 +/** + * 移除上拉刷新控件 + */ +- (void)removeFooter; +@end + +#pragma mark - 1.0.0版本以前的接口 +@interface UIScrollView(MJRefreshDeprecated) +#pragma mark - 下拉刷新 +/** + * 添加一个下拉刷新头部控件 + * + * @param callback 回调 + */ +- (void)addHeaderWithCallback:(void (^)())callback MJDeprecated("建议使用addLegendHeaderWithRefreshingBlock:"); + +/** + * 添加一个下拉刷新头部控件 + * + * @param callback 回调 + * @param dateKey 刷新时间保存的key值 + */ +- (void)addHeaderWithCallback:(void (^)())callback dateKey:(NSString*)dateKey MJDeprecated("建议使用addLegendHeaderWithRefreshingBlock:dateKey:"); + +/** + * 添加一个下拉刷新头部控件 + * + * @param target 目标 + * @param action 回调方法 + */ +- (void)addHeaderWithTarget:(id)target action:(SEL)action MJDeprecated("建议使用addLegendHeaderWithRefreshingTarget:refreshingAction:"); + +/** + * 添加一个下拉刷新头部控件 + * + * @param target 目标 + * @param action 回调方法 + * @param dateKey 刷新时间保存的key值 + */ +- (void)addHeaderWithTarget:(id)target action:(SEL)action dateKey:(NSString*)dateKey MJDeprecated("建议使用addLegendHeaderWithRefreshingTarget:refreshingAction:dateKey:"); + +/** + * 主动让下拉刷新头部控件进入刷新状态 + */ +- (void)headerBeginRefreshing MJDeprecated("建议使用[self.tableView.header beginRefreshing]"); + +/** + * 让下拉刷新头部控件停止刷新状态 + */ +- (void)headerEndRefreshing MJDeprecated("建议使用[self.tableView.header endRefreshing]"); + +/** + * 下拉刷新头部控件的可见性 + */ +@property (nonatomic, assign, getter = isHeaderHidden) BOOL headerHidden MJDeprecated("建议使用self.tableView.header.hidden"); + +/** + * 是否正在下拉刷新 + */ +@property (nonatomic, assign, readonly, getter = isHeaderRefreshing) BOOL headerRefreshing MJDeprecated("建议使用self.tableView.header.isRefreshing"); + +#pragma mark - 上拉刷新 +/** + * 添加一个上拉刷新尾部控件 + * + * @param callback 回调 + */ +- (void)addFooterWithCallback:(void (^)())callback MJDeprecated("建议使用addLegendFooterWithRefreshingBlock:"); + +/** + * 添加一个上拉刷新尾部控件 + * + * @param target 目标 + * @param action 回调方法 + */ +- (void)addFooterWithTarget:(id)target action:(SEL)action MJDeprecated("建议使用addLegendFooterWithRefreshingTarget:refreshingAction:"); + +/** + * 主动让上拉刷新尾部控件进入刷新状态 + */ +- (void)footerBeginRefreshing MJDeprecated("建议使用[self.tableView.footer beginRefreshing]"); + +/** + * 让上拉刷新尾部控件停止刷新状态 + */ +- (void)footerEndRefreshing MJDeprecated("建议使用[self.tableView.footer endRefreshing]"); + +/** + * 上拉刷新头部控件的可见性 + */ +@property (nonatomic, assign, getter = isFooterHidden) BOOL footerHidden MJDeprecated("建议使用self.tableView.footer.hidden"); + +/** + * 是否正在上拉刷新 + */ +@property (nonatomic, assign, readonly, getter = isFooterRefreshing) BOOL footerRefreshing MJDeprecated("建议使用self.tableView.footer.isRefreshing"); +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJRefresh.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJRefresh.m new file mode 100644 index 0000000..2b00a89 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJRefresh.m @@ -0,0 +1,394 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// UIScrollView+MJRefresh.m +// MJRefreshExample +// +// Created by MJ Lee on 15/3/4. +// Copyright (c) 2015年 itcast. All rights reserved. +// + +#import "UIScrollView+MJRefresh.h" +#import "MJRefreshGifHeader.h" +#import "MJRefreshLegendHeader.h" +#import "MJRefreshGifFooter.h" +#import "MJRefreshLegendFooter.h" +#import + +@implementation UIScrollView (MJRefresh) +#pragma mark - 下拉刷新 +- (MJRefreshLegendHeader *)addLegendHeaderWithRefreshingBlock:(void (^)())block dateKey:(NSString *)dateKey +{ + MJRefreshLegendHeader *header = [self addLegendHeader]; + header.refreshingBlock = block; + header.dateKey = dateKey; + return header; +} + +- (MJRefreshLegendHeader *)addLegendHeaderWithRefreshingTarget:(id)target refreshingAction:(SEL)action dateKey:(NSString *)dateKey +{ + MJRefreshLegendHeader *header = [self addLegendHeader]; + header.refreshingTarget = target; + header.refreshingAction = action; + header.dateKey = dateKey; + return header; +} + +- (MJRefreshLegendHeader *)addLegendHeaderWithRefreshingTarget:(id)target refreshingAction:(SEL)action +{ + return [self addLegendHeaderWithRefreshingTarget:target refreshingAction:action dateKey:nil]; +} + +- (MJRefreshLegendHeader *)addLegendHeaderWithRefreshingBlock:(void (^)())block +{ + return [self addLegendHeaderWithRefreshingBlock:block dateKey:nil]; +} + +- (MJRefreshLegendHeader *)addLegendHeader +{ + MJRefreshLegendHeader *header = [[MJRefreshLegendHeader alloc] init]; + self.header = header; + + return header; +} + +- (MJRefreshGifHeader *)addGifHeaderWithRefreshingBlock:(void (^)())block dateKey:(NSString *)dateKey +{ + MJRefreshGifHeader *header = [self addGifHeader]; + header.refreshingBlock = block; + header.dateKey = dateKey; + return header; +} + +- (MJRefreshGifHeader *)addGifHeaderWithRefreshingTarget:(id)target refreshingAction:(SEL)action dateKey:(NSString *)dateKey +{ + MJRefreshGifHeader *header = [self addGifHeader]; + header.refreshingTarget = target; + header.refreshingAction = action; + header.dateKey = dateKey; + return header; +} + +- (MJRefreshGifHeader *)addGifHeaderWithRefreshingBlock:(void (^)())block +{ + return [self addGifHeaderWithRefreshingBlock:block dateKey:nil]; +} + +- (MJRefreshGifHeader *)addGifHeaderWithRefreshingTarget:(id)target refreshingAction:(SEL)action +{ + return [self addGifHeaderWithRefreshingTarget:target refreshingAction:action dateKey:nil]; +} + +- (MJRefreshGifHeader *)addGifHeader +{ + MJRefreshGifHeader *header = [[MJRefreshGifHeader alloc] init]; + self.header = header; + + return header; +} + +- (void)removeHeader +{ + self.header = nil; +} + +#pragma mark - Property Methods +#pragma mark gifHeader +- (MJRefreshGifHeader *)gifHeader +{ + if ([self.header isKindOfClass:[MJRefreshGifHeader class]]) { + return (MJRefreshGifHeader *)self.header; + } + + return nil; +} + +#pragma mark legendHeader +- (MJRefreshLegendHeader *)legendHeader +{ + if ([self.header isKindOfClass:[MJRefreshLegendHeader class]]) { + return (MJRefreshLegendHeader *)self.header; + } + + return nil; +} + +#pragma mark header +static char MJRefreshHeaderKey; +- (void)setHeader:(MJRefreshHeader *)header +{ + if (header != self.header) { + [self.header removeFromSuperview]; + + [self willChangeValueForKey:@"header"]; + objc_setAssociatedObject(self, &MJRefreshHeaderKey, + header, + OBJC_ASSOCIATION_ASSIGN); + [self didChangeValueForKey:@"header"]; + + [self addSubview:header]; + } +} + +- (MJRefreshHeader *)header +{ + return objc_getAssociatedObject(self, &MJRefreshHeaderKey); +} + +#pragma mark - 上拉刷新 +- (MJRefreshLegendFooter *)addLegendFooterWithRefreshingBlock:(void (^)())block +{ + MJRefreshLegendFooter *footer = [self addLegendFooter]; + footer.refreshingBlock = block; + return footer; +} + +- (MJRefreshLegendFooter *)addLegendFooterWithRefreshingTarget:(id)target refreshingAction:(SEL)action +{ + MJRefreshLegendFooter *footer = [self addLegendFooter]; + footer.refreshingTarget = target; + footer.refreshingAction = action; + return footer; +} + +- (MJRefreshLegendFooter *)addLegendFooter +{ + MJRefreshLegendFooter *footer = [[MJRefreshLegendFooter alloc] init]; + self.footer = footer; + + return footer; +} + +- (MJRefreshGifFooter *)addGifFooterWithRefreshingBlock:(void (^)())block +{ + MJRefreshGifFooter *footer = [self addGifFooter]; + footer.refreshingBlock = block; + return footer; +} + +- (MJRefreshGifFooter *)addGifFooterWithRefreshingTarget:(id)target refreshingAction:(SEL)action +{ + MJRefreshGifFooter *footer = [self addGifFooter]; + footer.refreshingTarget = target; + footer.refreshingAction = action; + return footer; +} + +- (MJRefreshGifFooter *)addGifFooter +{ + MJRefreshGifFooter *footer = [[MJRefreshGifFooter alloc] init]; + self.footer = footer; + + return footer; +} + +- (void)removeFooter +{ + self.footer = nil; +} + +static char MJRefreshFooterKey; +- (void)setFooter:(MJRefreshFooter *)footer +{ + if (footer != self.footer) { + [self.footer removeFromSuperview]; + + [self willChangeValueForKey:@"footer"]; + objc_setAssociatedObject(self, &MJRefreshFooterKey, + footer, + OBJC_ASSOCIATION_ASSIGN); + [self didChangeValueForKey:@"footer"]; + + [self addSubview:footer]; + } +} + +- (MJRefreshGifFooter *)gifFooter +{ + if ([self.footer isKindOfClass:[MJRefreshGifFooter class]]) { + return (MJRefreshGifFooter *)self.footer; + } + return nil; +} + +- (MJRefreshLegendFooter *)legendFooter +{ + if ([self.footer isKindOfClass:[MJRefreshLegendFooter class]]) { + return (MJRefreshLegendFooter *)self.footer; + } + return nil; +} + + +- (MJRefreshFooter *)footer +{ + return objc_getAssociatedObject(self, &MJRefreshFooterKey); +} + +#pragma mark - swizzle ++ (void)load +{ + Method method1 = class_getInstanceMethod([self class], NSSelectorFromString(@"dealloc")); + Method method2 = class_getInstanceMethod([self class], @selector(deallocSwizzle)); + method_exchangeImplementations(method1, method2); +} + +- (void)deallocSwizzle +{ + [self removeFooter]; + [self removeHeader]; + + [self deallocSwizzle]; +} + +@end + + +#pragma mark - 1.0.0版本以前的接口 +@implementation UIScrollView(MJRefreshDeprecated) +#pragma mark - 下拉刷新 +/** + * 添加一个下拉刷新头部控件 + * + * @param callback 回调 + */ +- (void)addHeaderWithCallback:(void (^)())callback +{ + [self addHeaderWithCallback:callback dateKey:nil]; +} + +/** + * 添加一个下拉刷新头部控件 + * + * @param callback 回调 + * @param dateKey 刷新时间保存的key值 + */ +- (void)addHeaderWithCallback:(void (^)())callback dateKey:(NSString*)dateKey +{ + [self addLegendHeader]; + self.header.dateKey = dateKey; + self.header.refreshingBlock = callback; +} + +/** + * 添加一个下拉刷新头部控件 + * + * @param target 目标 + * @param action 回调方法 + */ +- (void)addHeaderWithTarget:(id)target action:(SEL)action +{ + [self addHeaderWithTarget:target action:action dateKey:nil]; +} + +/** + * 添加一个下拉刷新头部控件 + * + * @param target 目标 + * @param action 回调方法 + * @param dateKey 刷新时间保存的key值 + */ +- (void)addHeaderWithTarget:(id)target action:(SEL)action dateKey:(NSString*)dateKey +{ + [self addLegendHeader]; + self.header.dateKey = dateKey; + [self.header setRefreshingTarget:target refreshingAction:action]; +} + +/** + * 主动让下拉刷新头部控件进入刷新状态 + */ +- (void)headerBeginRefreshing +{ + [self.header beginRefreshing]; +} + +/** + * 让下拉刷新头部控件停止刷新状态 + */ +- (void)headerEndRefreshing +{ + [self.header endRefreshing]; +} + +/** + * 下拉刷新头部控件的可见性 + */ +- (void)setHeaderHidden:(BOOL)headerHidden +{ + self.header.hidden = headerHidden; +} + +- (BOOL)isHeaderHidden +{ + return self.header.isHidden; +} + +/** + * 是否正在下拉刷新 + */ +- (BOOL)isHeaderRefreshing +{ + return self.header.isRefreshing; +} + +#pragma mark - 上拉刷新 +/** + * 添加一个上拉刷新尾部控件 + * + * @param callback 回调 + */ +- (void)addFooterWithCallback:(void (^)())callback +{ + [self addLegendFooter]; + self.footer.refreshingBlock = callback; +} + +/** + * 添加一个上拉刷新尾部控件 + * + * @param target 目标 + * @param action 回调方法 + */ +- (void)addFooterWithTarget:(id)target action:(SEL)action +{ + [self addLegendFooter]; + [self.footer setRefreshingTarget:target refreshingAction:action]; +} + +/** + * 主动让上拉刷新尾部控件进入刷新状态 + */ +- (void)footerBeginRefreshing +{ + [self.footer beginRefreshing]; +} + +/** + * 让上拉刷新尾部控件停止刷新状态 + */ +- (void)footerEndRefreshing +{ + [self.footer endRefreshing]; +} + +/** + * 上拉刷新头部控件的可见性 + */ +- (void)setFooterHidden:(BOOL)footerHidden +{ + self.footer.hidden = footerHidden; +} + +- (BOOL)isFooterHidden +{ + return self.footer.isHidden; +} + +/** + * 是否正在上拉刷新 + */ +- (BOOL)isFooterRefreshing +{ + return self.footer.isRefreshing; +} +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIView+MJExtension.h b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIView+MJExtension.h new file mode 100644 index 0000000..b4b1346 --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIView+MJExtension.h @@ -0,0 +1,19 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// UIView+Extension.h +// MJRefreshExample +// +// Created by MJ Lee on 14-5-28. +// Copyright (c) 2014年 itcast. All rights reserved. +// + +#import + +@interface UIView (MJExtension) +@property (assign, nonatomic) CGFloat mj_x; +@property (assign, nonatomic) CGFloat mj_y; +@property (assign, nonatomic) CGFloat mj_w; +@property (assign, nonatomic) CGFloat mj_h; +@property (assign, nonatomic) CGSize mj_size; +@property (assign, nonatomic) CGPoint mj_origin; +@end diff --git a/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIView+MJExtension.m b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIView+MJExtension.m new file mode 100644 index 0000000..1e3efed --- /dev/null +++ b/Pods/MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/UIView+MJExtension.m @@ -0,0 +1,84 @@ +// 代码地址: https://github.com/CoderMJLee/MJRefresh +// 代码地址: http://code4app.com/ios/%E5%BF%AB%E9%80%9F%E9%9B%86%E6%88%90%E4%B8%8B%E6%8B%89%E4%B8%8A%E6%8B%89%E5%88%B7%E6%96%B0/52326ce26803fabc46000000 +// UIView+Extension.m +// MJRefreshExample +// +// Created by MJ Lee on 14-5-28. +// Copyright (c) 2014年 itcast. All rights reserved. +// + +#import "UIView+MJExtension.h" + +@implementation UIView (MJExtension) +- (void)setMj_x:(CGFloat)mj_x +{ + CGRect frame = self.frame; + frame.origin.x = mj_x; + self.frame = frame; +} + +- (CGFloat)mj_x +{ + return self.frame.origin.x; +} + +- (void)setMj_y:(CGFloat)mj_y +{ + CGRect frame = self.frame; + frame.origin.y = mj_y; + self.frame = frame; +} + +- (CGFloat)mj_y +{ + return self.frame.origin.y; +} + +- (void)setMj_w:(CGFloat)mj_w +{ + CGRect frame = self.frame; + frame.size.width = mj_w; + self.frame = frame; +} + +- (CGFloat)mj_w +{ + return self.frame.size.width; +} + +- (void)setMj_h:(CGFloat)mj_h +{ + CGRect frame = self.frame; + frame.size.height = mj_h; + self.frame = frame; +} + +- (CGFloat)mj_h +{ + return self.frame.size.height; +} + +- (void)setMj_size:(CGSize)mj_size +{ + CGRect frame = self.frame; + frame.size = mj_size; + self.frame = frame; +} + +- (CGSize)mj_size +{ + return self.frame.size; +} + +- (void)setMj_origin:(CGPoint)mj_origin +{ + CGRect frame = self.frame; + frame.origin = mj_origin; + self.frame = frame; +} + +- (CGPoint)mj_origin +{ + return self.frame.origin; +} +@end diff --git a/Pods/Manifest.lock b/Pods/Manifest.lock index 7e5833f..c4f2bc9 100644 --- a/Pods/Manifest.lock +++ b/Pods/Manifest.lock @@ -37,6 +37,7 @@ PODS: - Mantle/extobjc (= 1.5.4) - Mantle/extobjc (1.5.4) - MBProgressHUD (0.9.1) + - MJRefresh (1.4.1) - Reachability (3.2) - SBJson (4.0.1) - SDWebImage (3.7.2): @@ -52,6 +53,7 @@ DEPENDENCIES: - Godzippa - Mantle - MBProgressHUD + - MJRefresh - Reachability - SBJson - SDWebImage @@ -66,6 +68,7 @@ SPEC CHECKSUMS: Godzippa: 21621e8ddc2f1521db473a72b48148c3f0e79d76 Mantle: 60acd0cd363e27d945bda0a6b8e90577112d28f3 MBProgressHUD: c47f2c166c126cf2ce36498d80f33e754d4e93ad + MJRefresh: 6a0fd4c81a957803bd99bbbf55a956d1d6f41263 Reachability: 33e18b67625424e47b6cde6d202dce689ad7af96 SBJson: 68f16f446bd6047dc3dd1ec4919a468c2cd7fedd SDWebImage: 71b7cdc1d1721d6a82ed62889030225f2c249e29 diff --git a/Pods/Pods.xcodeproj/project.pbxproj b/Pods/Pods.xcodeproj/project.pbxproj index 0eecd9d..ea9273b 100644 --- a/Pods/Pods.xcodeproj/project.pbxproj +++ b/Pods/Pods.xcodeproj/project.pbxproj @@ -7,2130 +7,2154 @@ objects = { /* Begin PBXBuildFile section */ - 00DC058CF583F54EA24BB30C /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C11CD05B0831E358589D74EE /* SDImageCache.h */; }; - 01AC0A0E127A0445D4CA9B14 /* DTHTMLWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = F82201EEEA8068C6B34C7253 /* DTHTMLWriter.h */; }; - 02AC154ABE8EB00D494B1D92 /* MTLModel+NSCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 69AB0E927D34C81AA14AB3D7 /* MTLModel+NSCoding.h */; }; - 02B7E5C2D587B2DAD58266F5 /* NSAttributedString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 919485309D7F9E704DA3E9D0 /* NSAttributedString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 031B715BE95AAB83EF3FE41C /* EXTScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 675CFD70906846DC5A49D5EC /* EXTScope.h */; }; - 0365BAD3CBBEE8E22D46F4BA /* SDWebImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 89024B0DB7003A0824189113 /* SDWebImageDecoder.h */; }; - 042FC8C71A71F23C7E8B38DB /* DTAttributedLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F8C1006846FFB9885019458 /* DTAttributedLabel.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 04CEADCF6201AA3B4437D910 /* DTColorFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 50CF6C85A9936F7B0CE4584E /* DTColorFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 060EAF2AA5CC33C820635B68 /* NSString+DTURLEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = 649CCA7B271777F59E67FC2E /* NSString+DTURLEncoding.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 097325EC67B9025FD956AE36 /* SecureUDID.h in Headers */ = {isa = PBXBuildFile; fileRef = 58E5DBC8B9818697255B4008 /* SecureUDID.h */; }; - 0A7968C683B1EE9EB3A02339 /* NSURL+DTComparing.m in Sources */ = {isa = PBXBuildFile; fileRef = DB1B04C922A0CA51D8BB03F0 /* NSURL+DTComparing.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 0B24824B3847E2FFA506EDA9 /* DTImage+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = CA0B9BE163B0DD38B5562943 /* DTImage+HTML.h */; }; - 0BBFAAD643D2E5792453BAC7 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DA8C488C28260E7A1F3D1D1 /* UIKit+AFNetworking.h */; }; - 0C78E5F1A4668C8979060505 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 02A0577B565A1BDA867DFA0B /* AFURLResponseSerialization.m */; }; - 0D40543485C33160DEABEC2C /* DTTextAttachmentHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FF2ACABF2CA27BF6ABAF85 /* DTTextAttachmentHTMLElement.h */; }; - 0E248C9F793D091C3953F3AB /* EXTScope.m in Sources */ = {isa = PBXBuildFile; fileRef = 7CCAF6AE5C23F6D9915DA610 /* EXTScope.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 0E3E85F43503C414377EC0E5 /* DTObjectTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = B9B4ED813F9D586A98029B78 /* DTObjectTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 0EEF3459E4A629D1910BD341 /* DTAttributedTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 447C69AE2DB50032DA69DB8B /* DTAttributedTextCell.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 0F334E560FF8DE63ADDDEAE5 /* UIApplication+DTNetworkActivity.h in Headers */ = {isa = PBXBuildFile; fileRef = 4295F3EC67170421A98183DD /* UIApplication+DTNetworkActivity.h */; }; - 0F834B27CF98DE89E35CD99F /* STableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E1D94DFB649CEDB295722CE3 /* STableViewController.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 10F4940B5FE5952DB1C18560 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = D2B1A156DE6B17F6990F581F /* SDWebImageDownloader.h */; }; - 11EDC8EA01E1CD00EEE2745D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - 126A0B4FCB32967627E059C3 /* MTLModel+NSCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = BDE51FCB690314D17EDD61E1 /* MTLModel+NSCoding.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 12B03F1C7B242066A336F5A5 /* DTImage+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 76B29DB969C6C0A537A7E3FF /* DTImage+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 15299A9B321B81109C33DDAE /* DTWebVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C3782946107D22DDEAF59D /* DTWebVideoView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 15D859F9ECE186D3CFE51FE8 /* DTAnimatedGIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 015536558FDF35FA84CDD5E0 /* DTAnimatedGIF.h */; }; - 1762F9D2E1F9F71E604D6BC9 /* DTHTMLParserNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3142E3DCD198FB065F097F2B /* DTHTMLParserNode.h */; }; - 18A1A39B19C1534F71373520 /* DTCoreTextGlyphRun.h in Headers */ = {isa = PBXBuildFile; fileRef = 70AAEE38922C0864796C3663 /* DTCoreTextGlyphRun.h */; }; - 18FF6A36320C2C2FB28A1DFC /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 92A11FD3460B5667CE950BA2 /* Security.framework */; }; - 19A6F62CC7C9973F06A81961 /* DTHorizontalRuleHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 55D783A030AFE19969828736 /* DTHorizontalRuleHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 19E8D3C03F3A817518861D2A /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 300A2479E90F1DD2B1144966 /* SDWebImageDownloaderOperation.h */; }; - 1B5E0C8F877982527C093CD4 /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = ABF1AF1AA665594D6AB2AB41 /* UIImageView+AFNetworking.m */; }; - 1BC1EECD982CE07DA3848806 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 928903BF260AA1A2B0B05299 /* SDWebImageCompat.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 1CD3AF7113FF9399D22F1C54 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B6F15A6D1DD9CE0E2656C9F /* CoreGraphics.framework */; }; - 1D3029A518228E7435D68323 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = A20238144AF5030F4899E448 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 1DBCEDD6CFCC3ABC6307F6B9 /* MTLReflection.m in Sources */ = {isa = PBXBuildFile; fileRef = A0431E2006710FCEC62858D4 /* MTLReflection.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 1E6EE6AD347DA9EB75A0FEA9 /* EXTRuntimeExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 62ED7C040522BF04C2B390D1 /* EXTRuntimeExtensions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 2026F57EF8678B4BB65DD8E4 /* DTAccessibilityElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 0320712F0F4CDA7D7098351F /* DTAccessibilityElement.h */; }; - 20CA5760D166EC4CD5D90A1B /* UIAlertView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 176186BB28B17B45EBCD420E /* UIAlertView+AFNetworking.m */; }; - 22D479268DC8096CE9A0E27A /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FB69A9CC09DBFD8E512EA12 /* SystemConfiguration.framework */; }; - 2315EABB41B4E33BFF0B6F80 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 44686F701B4CAC8A22C54366 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */; }; - 23F8EDA39E64534CA151E079 /* DTExtendedFileAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 241F7CF8C579B43DCA7B8799 /* DTExtendedFileAttributes.h */; }; - 248131D80A518E57BCECFAAD /* NSMutableArray+DTMoving.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E509C66681EEBD1C3466D0F /* NSMutableArray+DTMoving.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 2540FE3BC5BAED88E7DBE37A /* SBJson4StreamTokeniser.h in Headers */ = {isa = PBXBuildFile; fileRef = 990B190FC63A5B7CD1F8B556 /* SBJson4StreamTokeniser.h */; }; - 263D9B3BC42E568419790D66 /* AFURLConnectionOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E95B94916BE169060085560 /* AFURLConnectionOperation.h */; }; - 284F10E0D0D65DF783CC81AA /* NSString+DTPaths.h in Headers */ = {isa = PBXBuildFile; fileRef = 0170E263EEA87FC1A556A6AB /* NSString+DTPaths.h */; }; - 29C90492180057BA77B4892D /* Pods-Reachability-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6986933DD584C538002EBDE4 /* Pods-Reachability-dummy.m */; }; - 2A64088F7B30AB8D66D31FCA /* DTTiledLayerWithoutFade.m in Sources */ = {isa = PBXBuildFile; fileRef = 5426F101E987C706690A126B /* DTTiledLayerWithoutFade.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 2B8C990235D7AFF3100C4374 /* UIApplication+DTNetworkActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = 0621301F98A3CAAC9F12D049 /* UIApplication+DTNetworkActivity.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 2BD4E30D5648A3824220CF31 /* SBJson4StreamWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 5697436FD0CDA9F0DB73D21F /* SBJson4StreamWriter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 2D5DBD678B3FBD9F68E110E4 /* DTColorFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = C0B6FBCAF783DCAE22AE62FF /* DTColorFunctions.h */; }; - 2DBB43914703B0329ACAD721 /* NSAttributedString+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 7506622A70441410839FAD45 /* NSAttributedString+DTCoreText.h */; }; - 2E4498511BCE27614E0B5BBB /* NSObject+MTLComparisonAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = BCFDB273CD2AEF782D1DE189 /* NSObject+MTLComparisonAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 2FDEDE44605410224E1BB1EA /* AFHTTPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CDA688EA6A2B63B62AD58AE /* AFHTTPRequestOperation.h */; }; - 3128A40A97CF35CEC5D2F1FF /* DTWebVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 24F0989963D2EB6401D28C66 /* DTWebVideoView.h */; }; - 3140B49E82F401B1B9DC3854 /* SecureUDID.m in Sources */ = {isa = PBXBuildFile; fileRef = 320BA35F75F32BB154425564 /* SecureUDID.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; - 31C77980771C4CD82E86AC4B /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AC250D0369E9C16012A77E58 /* AFURLSessionManager.h */; }; - 321A2D27C40B534692DBD598 /* DTAccessibilityViewProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F06CEE2B9ECA4F48697194 /* DTAccessibilityViewProxy.h */; }; - 3239FBDA096E9F0F64456C2D /* DTAnimatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 57C02398985BECE8ECA8A872 /* DTAnimatedGIF.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 329A5481709B77ED12FF0C13 /* DTHTMLParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AA8A5B332A17FCFBFE39DC1 /* DTHTMLParser.h */; }; - 34212660D805D104820A8E47 /* DTImageTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 99E38BEE217EECD8FE04EBA9 /* DTImageTextAttachment.h */; }; - 359304B802FCD9894E1C3439 /* NSURL+DTUnshorten.h in Headers */ = {isa = PBXBuildFile; fileRef = D8613BDFE36745543E38EB25 /* NSURL+DTUnshorten.h */; }; - 35A354524C5503BC3547D592 /* NSAttributedString+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = 16492B8D5B7687C9AD07499C /* NSAttributedString+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 363A6CCD8B1FB86FE4FC02B0 /* DTDictationPlaceholderView.m in Sources */ = {isa = PBXBuildFile; fileRef = CF93413A0C6ADA4A69B0D9FD /* DTDictationPlaceholderView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 369642CEC6469B98EEC6FE74 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2881C43808AAE7488912B9A9 /* AFSecurityPolicy.m */; }; - 376B34136D172D834EA964F4 /* DTCoreTextFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 425FCD32EA3A382DBE0A237B /* DTCoreTextFunctions.h */; }; - 38C134451FB1F109E54481A4 /* NSData+DTCrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = 128D136FE07EB11F95B8CC51 /* NSData+DTCrypto.h */; }; - 3A745D4510A4B6004E5BA780 /* DTFolderMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 54F69CDEE37B4673319D8CE4 /* DTFolderMonitor.h */; }; - 3BBFC4275CAE4A689B7C0851 /* DTAsyncFileDeleter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FA247B15C8627BDE1FCAAF3 /* DTAsyncFileDeleter.h */; }; - 3C070DF0BB5D2F31B3CB98FE /* NSError+MTLModelException.m in Sources */ = {isa = PBXBuildFile; fileRef = FB5CD85FF048CAE38B9B839E /* NSError+MTLModelException.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 3CAF8F9E93597F161B387D8D /* DTAttributedTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CEA1D6A1444C4CDE57AD32F /* DTAttributedTextView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 3D0E7D3F519BA5F9E017A7CB /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = FCE65F29B4E1D26F9C281A97 /* UIProgressView+AFNetworking.h */; }; - 3E4C6F9FAB20AB4A6DD3E169 /* NSData+Godzippa.m in Sources */ = {isa = PBXBuildFile; fileRef = 513154F6A79243EA1B6F566A /* NSData+Godzippa.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 3E76C9D70B95A90F009F8336 /* DTCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 44E4F3AAE1C171E7A4031501 /* DTCompatibility.h */; }; - 405877848584FCDC36AF4FA9 /* SBJson4StreamTokeniser.m in Sources */ = {isa = PBXBuildFile; fileRef = E52B0D5E4A916FFDCDE359B7 /* SBJson4StreamTokeniser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 40E94982E8C6910077F4AB95 /* DTHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 7DD579988D28CEBBD0A61020 /* DTHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 41E2C2E0D1EF0B0E3B2F01F9 /* EGOCache.m in Sources */ = {isa = PBXBuildFile; fileRef = C86ED4DF721FBAD75848E084 /* EGOCache.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 422E1A8D923A9D5D32FC2E7B /* NSAttributedString+DTDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 25441B0A2A133C0EB48B257B /* NSAttributedString+DTDebug.h */; }; - 43CE2D7DDE8F482A2AC38887 /* Mantle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7801E32CA32B7207F2DD07 /* Mantle.h */; }; - 4400407D1F85C54B160EAA64 /* UIWebView+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = E4AF31FDAA6C98777F9E86D5 /* UIWebView+DTFoundation.h */; }; - 4498B94EF84178CA563DC32B /* NSURL+DTComparing.h in Headers */ = {isa = PBXBuildFile; fileRef = B6CC01899F1AFCC17E18AE72 /* NSURL+DTComparing.h */; }; - 44F49891A63453A9E3834B8E /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = D02D4EA2FF3CEFC879098F92 /* UIRefreshControl+AFNetworking.h */; }; - 468E6E6C88B97F74C5CAA1D3 /* UIImage+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B6DDBCAC733394FF051FE8A /* UIImage+DTFoundation.h */; }; - 476E67C53CED3FF322A64BE7 /* NSString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A746EFCC6E837213E79E458 /* NSString+HTML.h */; }; - 489CF5D5E1E4BC18488BEE07 /* SBJson4Writer.m in Sources */ = {isa = PBXBuildFile; fileRef = 380BEE354AB84E8D4795B5C4 /* SBJson4Writer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 48B7AC61837F9FF64522F2FA /* EXTRuntimeExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = E14D41414B94B8F4989048E8 /* EXTRuntimeExtensions.h */; }; - 48F03C3AFF3FCA5E36977EB1 /* DTAccessibilityElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 85903A9CE88F53C982C6F9D7 /* DTAccessibilityElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 4A5BDDDCCBA3F4C1D56F2BE8 /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 64898BA52DC103C58AFFACDF /* UIImageView+HighlightedWebCache.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 4AAFCD21B1C65ADD30782F7D /* MTLReflection.h in Headers */ = {isa = PBXBuildFile; fileRef = 33F0365D231376ECD0C32F92 /* MTLReflection.h */; }; - 4B27B5E91B9281BFF198638C /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CABDEE4AA200D95A5738FE0 /* AFHTTPSessionManager.h */; }; - 5057D5810369410BA0BE2CEA /* SBJson4StreamParser.m in Sources */ = {isa = PBXBuildFile; fileRef = E871873953C5494CDDE8BA86 /* SBJson4StreamParser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 50BB311D3E57911BEC876158 /* DTHorizontalRuleHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 691B3BE5EBDE90AEA617D150 /* DTHorizontalRuleHTMLElement.h */; }; - 50F5D9653F4061ABA3154C96 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = F311C60317391EA8382FA941 /* UIButton+WebCache.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 519F7AA43E907E3B627EEE62 /* DTBreakHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 668C174C9A564ECD8DA27812 /* DTBreakHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 51C8FEFB5B3DC0384E30B2E2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - 51D1554D615B2DB4418238FB /* DTCoreTextParagraphStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B25075098DCB6B2D9612299 /* DTCoreTextParagraphStyle.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 53DE649D16E818599816995F /* DTDictationPlaceholderTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E9F835357A14FF2B1C80A9C /* DTDictationPlaceholderTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 5751EF3CA77D01A7314EAD51 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89A76E13D53BB2BE40A49C56 /* AFNetworkActivityIndicatorManager.h */; }; - 57C5DDBF159443966B766389 /* DTCoreTextFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = EF36058EE813794558E29841 /* DTCoreTextFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 5A12D2E53A605B2D32E2973A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - 5AC072D88A5C2FA98B280966 /* NSFileWrapper+DTCopying.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B740C69E7D4962CD28B5BC7 /* NSFileWrapper+DTCopying.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 5BB8315218D85AB2F77C8183 /* MTLModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 7563ECB3221F82B0107B2934 /* MTLModel.h */; }; - 5C19A0DCBD9AB53B16D8D824 /* DTCoreTextLayoutFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = F6BA5BF6B3FAD36E8400B33E /* DTCoreTextLayoutFrame.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 5D57B6F2158CB1588D3FA733 /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 8495BAF833A7C37A511CC33A /* UIImageView+WebCache.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 5D89B9246FD876A616A72322 /* UIAlertView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FBFC4DA4E913780086FAD69 /* UIAlertView+AFNetworking.h */; }; - 601063BB19D922916C792729 /* DTBase64Coding.h in Headers */ = {isa = PBXBuildFile; fileRef = DE52400D79B96D2E135A261F /* DTBase64Coding.h */; }; - 603BBDDA7184DF82E5BE26EF /* DTCSSStylesheet.h in Headers */ = {isa = PBXBuildFile; fileRef = 578BD36F73D093BC8645E484 /* DTCSSStylesheet.h */; }; - 60E3B4E1EFE4FCC156854E39 /* DTTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 782EE1F836220422D6EC79F3 /* DTTextAttachment.h */; }; - 60EC7107783259310D129791 /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 8041A49A3E1DB57FCF3A1E3E /* UIActivityIndicatorView+AFNetworking.h */; }; - 61307D83DE3790D10E3898C2 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = 211C837307329644DDB6CC11 /* UIImage+MultiFormat.h */; }; - 61EB5CF92D71E8E939212894 /* NSMutableString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = FFEB0A84E6675AEBE0CFE484 /* NSMutableString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 63CC252A525ADFACFF4FC6F0 /* NSString+DTUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = BA16CAEF21533DDF3C2B7290 /* NSString+DTUtilities.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 64ADCCBEB4F5C8EDF9C412C1 /* DTLazyImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 14706916BDF049126B204977 /* DTLazyImageView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 65AC95168E99245BFCB93EE9 /* NSDictionary+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 35BD8EDE5554915364A56608 /* NSDictionary+DTCoreText.h */; }; - 663CAA2B445B604D27F58867 /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = B3C78E01D06BD6F6914FAF7C /* SDWebImageDownloader.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 66F9B21B5BEE4FEFDD0BCEEB /* UIImage+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = A8D7E8CD890D9B675C0DE37E /* UIImage+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 69F982719DE671E10C672F1C /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = AFB5F1D95E28D8BF4771CCF5 /* UIButton+AFNetworking.m */; }; - 6AA708662B636F869E1282C8 /* NSDictionary+MTLManipulationAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 43CAA42B614FFB1BB3B7BDD8 /* NSDictionary+MTLManipulationAdditions.h */; }; - 6AE22235BD7FBC288DF9BBA9 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 71E65BFF7B983D95A410F7CD /* AFURLRequestSerialization.h */; }; - 6C42070C62BF92F0A805FDB3 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E0ED4C54909C3754C32F9F7 /* SDWebImagePrefetcher.h */; }; - 6C4BCB0C4365A243DBB8E87B /* DTListItemHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = D46418981F56A6D2D0388744 /* DTListItemHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 6D4E647A5127207521CE0A16 /* DTCoreTextLayoutFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E5B1551BBB442D36A5CEF82 /* DTCoreTextLayoutFrame.h */; }; - 6DA58B4206B1E439CA7F4870 /* DTCoreTextFontCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 40E0444C0FDFD0F02412C625 /* DTCoreTextFontCollection.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 6EE2D1BA764383CF7898D16D /* Reachability.h in Headers */ = {isa = PBXBuildFile; fileRef = 12E31B9207F2E25ED497CB9B /* Reachability.h */; }; - 6FD288CF6B3EC0844950C4C5 /* NSError+MTLModelException.h in Headers */ = {isa = PBXBuildFile; fileRef = E7789FE773E9C27341E7FB51 /* NSError+MTLModelException.h */; }; - 6FDE8E93FEE8AA171A02014E /* UIWebView+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3BF6408A0A8D8169773FACB1 /* UIWebView+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 6FFE6BAE7F9F5A93038FED18 /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 25C866B117E59B1332598BB9 /* UIImageView+HighlightedWebCache.h */; }; - 703026E26F25120B4FD93543 /* NSCoder+DTCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 596BA774AC77D3C5F33C1898 /* NSCoder+DTCompatibility.h */; }; - 706707338BA50B957680D54C /* NSAttributedString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 4024AAA0AD3BD40AF2F734AD /* NSAttributedString+HTML.h */; }; - 70B52F0D064EE8F5D546165D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - 70F519C504F106F1503D1BF0 /* DTFolderMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 9FA43D71769A4303D9490097 /* DTFolderMonitor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 70FF956904F8FEDFA9ED61B4 /* Pods-STableViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 67A4E6C9EE66030D38345C96 /* Pods-STableViewController-dummy.m */; }; - 7104773CB91A5E4C9BC5095F /* Pods-Godzippa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A742DEB0FD9BD6014CE7E0A9 /* Pods-Godzippa-dummy.m */; }; - 716670E0FAE817B0A28D168C /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 7390F1C5749025C6C345D1E7 /* UIRefreshControl+AFNetworking.m */; }; - 717949A16163AA0AA1149187 /* DTHTMLParserNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A1964D061908079EBF220739 /* DTHTMLParserNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 727B0E2BA0BDEE329B338C01 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - 72AC1AABA06EC68CFF0214A3 /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 15612070F182774F9D2CDF0E /* UIActivityIndicatorView+AFNetworking.m */; }; - 7503D0C98C9A32426A6240C8 /* SBJson4StreamParserState.h in Headers */ = {isa = PBXBuildFile; fileRef = F4C8CB4FA43CFF8177440E32 /* SBJson4StreamParserState.h */; }; - 7691CF6BFCCCE31636E79EF6 /* DTCoreTextLayoutFrame+Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 17DDE6D2255B4DB4A87B8366 /* DTCoreTextLayoutFrame+Cursor.h */; }; - 7693C75B26B5B3233466FEAD /* AFHTTPRequestOperationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7C51125AE40C5278A311CCCB /* AFHTTPRequestOperationManager.m */; }; - 77F71E4E2C1D80F1928194BE /* NSArray+MTLManipulationAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EE0142D56D941DA31DDE2C0 /* NSArray+MTLManipulationAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 787870442B3323CC17D78EC1 /* NSObject+MTLComparisonAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E2EDC1133539DACE3B7803D2 /* NSObject+MTLComparisonAdditions.h */; }; - 7894EF68261BDF2BE236ECEB /* DTStylesheetHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 08E474FD595CE24032B3197B /* DTStylesheetHTMLElement.h */; }; - 78C71C17E88B5EE5318824F0 /* DTColor+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = BFC11B9CE25E1851B3DC13E5 /* DTColor+Compatibility.h */; }; - 78D0858E3CA385F512C47301 /* DTCoreTextFontDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = ED32489A39CA56F82A8B58D6 /* DTCoreTextFontDescriptor.h */; }; - 79B7D14878C0B5F7CD2DE401 /* NSMutableString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 810A23CACBC834CFB7FE0B59 /* NSMutableString+HTML.h */; }; - 7A897CA3D3262E0C05A6699A /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 11B0370520C30390636399CF /* UIButton+WebCache.h */; }; - 7B0B0BF59FBD874077D2EB65 /* DTHTMLWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 81BA6B8EB8CC08960A063EE0 /* DTHTMLWriter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 7B37D849EA7675D510AA59DE /* NSMutableAttributedString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 2781170ACEC84912C5741685 /* NSMutableAttributedString+HTML.h */; }; - 7D238BAC25BCB10BF3AE2962 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - 7DC82175409C28241005626F /* NSString+DTFormatNumbers.m in Sources */ = {isa = PBXBuildFile; fileRef = BD767EB3A2FD0B7E73572E95 /* NSString+DTFormatNumbers.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 7E4D83EE04A12DA6CEB71C9A /* DTTextAttachmentHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = A2FEED2109EB7168AD4BDF3D /* DTTextAttachmentHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 7F0C564E32D4702413538D76 /* Pods-AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1BF72998B2A17068028BA308 /* Pods-AFNetworking-dummy.m */; }; - 7FF24A81ED643A038CB41A74 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FEE193EEE84F1FA030D5ABB0 /* ImageIO.framework */; }; - 806446BD12DDAC760CBAE3CC /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FB69A9CC09DBFD8E512EA12 /* SystemConfiguration.framework */; }; - 84B58FAADA445504A19A62B6 /* DTCoreTextConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 869484474F565EA93AF7561A /* DTCoreTextConstants.h */; }; - 859CDB38D58D736E562AA0F5 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FEE193EEE84F1FA030D5ABB0 /* ImageIO.framework */; }; - 85F1033E2C57C3B8F9572E6F /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EA35A5E9CD0A1C5A15D39088 /* CoreText.framework */; }; - 888C9B0A4E2C6940403E6A62 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FEE193EEE84F1FA030D5ABB0 /* ImageIO.framework */; }; - 88AD50A678C5105EBEEAD7D6 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E4E68CBBF46EE5DD482F2C04 /* MediaPlayer.framework */; }; - 88C689EE4869BE7B3F1A7EF4 /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = D5FA03A60C1A71082EFBAF32 /* UIButton+AFNetworking.h */; }; - 89A4612C7BD27030A887DAA7 /* Pods-EGOCache-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 05750AC4ADB266FCDE69E91C /* Pods-EGOCache-dummy.m */; }; - 8A616702A130CA9D64BF44F1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - 8CBBA0C3DFDF34175052881E /* DTPieProgressIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 08FD2171E8CD24A8A0DBD606 /* DTPieProgressIndicator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 8E367E643CC5B90F2EB07250 /* NSFileWrapper+DTCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = 5973967E662A7994F1653102 /* NSFileWrapper+DTCopying.h */; }; - 8F1DF6BCDB3CEBE73C1E8A0B /* DTVideoTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 81F4C822F02222D71A727283 /* DTVideoTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 8F9E52CBD66F281407605693 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EAA671DBCED9E85006EB5DE /* UIView+WebCacheOperation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 8FA4B95A09B2A4D131CB93CC /* NSValueTransformer+MTLPredefinedTransformerAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 88B4201C4778092A276DCFFE /* NSValueTransformer+MTLPredefinedTransformerAdditions.h */; }; - 900E11B9D721A82FC235DF01 /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 365B7D3D24F9EFF9FD3F8AD0 /* UIImageView+AFNetworking.h */; }; - 90EA45AE10D4E3D1D65C63DA /* NSFileManager+Godzippa.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C228B56F7C84D191A3FD702 /* NSFileManager+Godzippa.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 9145F29AEAAAA84E5C2277AC /* MTLValueTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 16FDFBAA23D35A18396CB583 /* MTLValueTransformer.h */; }; - 91B1A2ED6FD884AB018C226D /* NSDictionary+MTLManipulationAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED6B6394A312F0CA650760D /* NSDictionary+MTLManipulationAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 93644245B214E76FD17395EC /* DTCoreTextLayouter.h in Headers */ = {isa = PBXBuildFile; fileRef = 951FD23A4DEBF2BDED20BFAE /* DTCoreTextLayouter.h */; }; - 9383DB35FF1EDF548A83AAC2 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9CEBB7B860CB3B5F8640CE /* AFNetworking.h */; }; - 93D561DC5C6CE1F9D3D71292 /* DTCoreTextLayouter.m in Sources */ = {isa = PBXBuildFile; fileRef = 71AAFDB5996AAEC577483D9A /* DTCoreTextLayouter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 93F3AC6A3A54584CB5CC4789 /* DTCoreTextConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 91ABEFD71C8DC74363B9C5E3 /* DTCoreTextConstants.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 93FFA53DAE38E698A6BA616B /* MTLManagedObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CAEFFBE51335980B889D2B1 /* MTLManagedObjectAdapter.h */; }; - 94E30D220DEDCDF8C658A2BC /* Godzippa.h in Headers */ = {isa = PBXBuildFile; fileRef = 32EAED9B52457C4645FFAFF2 /* Godzippa.h */; }; - 95907139FB907B518BB798D0 /* NSData+DTCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = A8ED301F3656553A753F946D /* NSData+DTCrypto.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 95EA54130CD2C07190076794 /* AFHTTPRequestOperationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DBECAF7E1FE73E71A82AA4E7 /* AFHTTPRequestOperationManager.h */; }; - 972829A00BE71D4EFAAB7E8F /* SBJson4.h in Headers */ = {isa = PBXBuildFile; fileRef = 420CB36ED79B124B94556C62 /* SBJson4.h */; }; - 97F544FAA0654586A24D8CC5 /* UIWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 392FA2882314E9EE1F9FB21B /* UIWebView+AFNetworking.h */; }; - 98C916D6A1F3B146EBA710DD /* DTAttributedTextContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 69A6343C2F18C658F7DD348A /* DTAttributedTextContentView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 9945F3B4839DF392A66021F7 /* MTLJSONAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = CFB46630F82D91A70BEFE778 /* MTLJSONAdapter.h */; }; - 9B76CC06FE28F98C0A0E4E83 /* DTCoreGraphicsUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = B364AC7790E4C914B376B78E /* DTCoreGraphicsUtils.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 9B7F8AE9011C4B2284C6B0AF /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C93CDBD644823C4EF1935E68 /* UIImageView+WebCache.h */; }; - 9CA220CFC57514849CBC2777 /* NSAttributedStringRunDelegates.h in Headers */ = {isa = PBXBuildFile; fileRef = C792084077E1D79D2046C05C /* NSAttributedStringRunDelegates.h */; }; - 9CC1A02E4A5A316AF94E899A /* SBJson4StreamWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E4FE3B96956F9BAD0581CD /* SBJson4StreamWriter.h */; }; - 9EBF43F96C286D1243D595F1 /* metamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0210892821128789322E792B /* metamacros.h */; }; - 9F6CC06088448EFD7C5CF9CD /* NSAttributedString+SmallCaps.m in Sources */ = {isa = PBXBuildFile; fileRef = 14A727E0E5397AFD2403431C /* NSAttributedString+SmallCaps.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - 9FCA87F58AF5AA0707D5C126 /* NSString+DTUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C3FB43C025EF8A6DD5E9C36 /* NSString+DTUtilities.h */; }; - A070A576B2B07FE720796407 /* DTCSSListStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 09F407F343D0087C42F08031 /* DTCSSListStyle.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - A10C21F4B949D4F2A2ACEE7C /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = DD47B0AED35B1278A00B09EB /* UIView+WebCacheOperation.h */; }; - A134A6EEC76931C31798C633 /* DTObjectTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E37B0929B1EE2BBA7F0BE5C /* DTObjectTextAttachment.h */; }; - A1BA373EA15B9F8528020909 /* DTTiledLayerWithoutFade.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F980946DEC33178A5A08C53 /* DTTiledLayerWithoutFade.h */; }; - A1C64413FB78831F7EA4E9AE /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = BCD46BF98238C92C93DACB8B /* Reachability.m */; }; - A1EE40AF0F6734F2372BC986 /* DTTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 2E2FD2F9C9CD6399D0BA90F0 /* DTTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - A2EE8CFA67D7C5AE859C851F /* NSString+CSS.h in Headers */ = {isa = PBXBuildFile; fileRef = 47D3C22AE0C8AB6543BDC349 /* NSString+CSS.h */; }; - A308C9D7A6A343B0E70788CC /* DTAccessibilityViewProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = D7D014F7A128D766754B5F7F /* DTAccessibilityViewProxy.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - A335A6C32A3B5F89A55F28AD /* NSURL+DTAppLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = E0F68C07F0EC17F0FCAB39C6 /* NSURL+DTAppLinks.h */; }; - A3FD11303CD97924CA10FC47 /* DTCSSListStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 2884F9F57D9ECEE3DD58DD1A /* DTCSSListStyle.h */; }; - A460ECB8888836C5F13B8855 /* EXTKeyPathCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D66854E0766D3E0BE5A805B /* EXTKeyPathCoding.h */; }; - A49D4BC268C3DA03481045C3 /* DTLinkButton.h in Headers */ = {isa = PBXBuildFile; fileRef = B90CC6020ED076B105C73921 /* DTLinkButton.h */; }; - A615CFF7314B485DD95F39C2 /* NSURL+DTAppLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = 785F0A5933408660B50739A5 /* NSURL+DTAppLinks.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - A7553D40948A1F2F6385B4E3 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - A7B10E62CC11942B23323F9F /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = C0359E5CB618AD16D6953ED5 /* AFURLResponseSerialization.h */; }; - A7DF30027AC34B70C32909A3 /* NSURL+DTUnshorten.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A349FFF5A28BBF0B9F4DB1E /* NSURL+DTUnshorten.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - A7ECCB6E85654C205A53FC58 /* STableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2071988D63E920ED00D53F81 /* STableViewController.h */; }; - A838DCED6E6A262F679B230C /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = E840D4D791D3065724828542 /* MBProgressHUD.h */; }; - A84242AFF8B8AFC23407FD58 /* default.css.c in Sources */ = {isa = PBXBuildFile; fileRef = 102A91707C3814BAE0EB62CA /* default.css.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - AA00E4D4700C512E30F86085 /* NSArray+DTError.m in Sources */ = {isa = PBXBuildFile; fileRef = B11DEBB55CF64C761DCF7AD9 /* NSArray+DTError.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - AA400FB3DB48AF375988C91D /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F46337FDAB531983759921C /* AFHTTPSessionManager.m */; }; - ABE9A0ECEB2125B4D430C7A9 /* NSValueTransformer+MTLInversionAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 856DCACD63B323B4914B893B /* NSValueTransformer+MTLInversionAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - AEFC2E2AA95DC887E8EC8865 /* MTLValueTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 88511088BC394F052D0E07D1 /* MTLValueTransformer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - AFBE2B2BECDAE83FBE9A7F91 /* DTDictationPlaceholderView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A98DC14C37B5AE16E678A78 /* DTDictationPlaceholderView.h */; }; - B0695112894595099123BC8F /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DC929F360D11D6A9AF4D5A5 /* NSData+ImageContentType.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - B072F4965DCCB24ED66B14D9 /* DTCoreTextLayoutLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED4274B1019AF1CB40F157A /* DTCoreTextLayoutLine.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - B1D1C43ACC6AD0CC51DD7C57 /* DTAttributedTextContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F6CE03C1BE5EE9482750BBD /* DTAttributedTextContentView.h */; }; - B1F65C99DD9FFC4AEBE11943 /* NSString+Paragraphs.m in Sources */ = {isa = PBXBuildFile; fileRef = 1E5010AFA39031FAE5069966 /* NSString+Paragraphs.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - B21D564BC65D759C011917DC /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 35A3D3BA1E7D74A25FBB2E18 /* UIWebView+AFNetworking.m */; }; - B2766E3775EB4D3D57AABB65 /* Pods-DTCoreText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 92C0CBA93013A95E242AAEB6 /* Pods-DTCoreText-dummy.m */; }; - B3B0FDC96B39C48AD88862C0 /* DTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 6869CC0726278E3A9703581B /* DTLog.h */; }; - B40B5EE8BCB21BB386C6E705 /* DTHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 367D248A9F931602CDF863C0 /* DTHTMLElement.h */; }; - B473C6F012FCF579DEF841AC /* DTAttributedLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = AA70EEAAB48CF3DCB2A5FBEA /* DTAttributedLabel.h */; }; - B4D5D7E21CEE946713BBF814 /* DTHTMLAttributedStringBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 367683D4BA48112D10FC451B /* DTHTMLAttributedStringBuilder.h */; }; - B5257ACB5025D4CA0A41D656 /* DTAttributedTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = D7676B7849F90ADD8C2A6104 /* DTAttributedTextView.h */; }; - B5BE7F0DBB9CE79D831A76FC /* DTSmartPagingScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1317063F912B339440797EBD /* DTSmartPagingScrollView.h */; }; - B5E8DE5EA8009389FAA9FFF7 /* DTImageTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 30F6B331E5B9C868CFD6C2B6 /* DTImageTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - B63C2FC63A71A102ACA3B4DC /* NSArray+MTLManipulationAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = AC23DB16D2C82F90A3A505E7 /* NSArray+MTLManipulationAdditions.h */; }; - B73F06AF3A42C8099CCBCB82 /* NSCharacterSet+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = BC2F3066E4568C5EE01A4522 /* NSCharacterSet+HTML.h */; }; - B825C1F97D8EA5A3F66F8562 /* NSValueTransformer+MTLInversionAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B7A6CF958439422E464C75C /* NSValueTransformer+MTLInversionAdditions.h */; }; - B8429AEE5E3661D05500AE7F /* Pods-SBJson-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9264206C6738E273C5655F1C /* Pods-SBJson-dummy.m */; }; - B8BF1A36FA5D3E538EC2DF52 /* DTFoundationConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 11FBBF6C5F20C6501912875E /* DTFoundationConstants.h */; }; - B905B9ED288ABCD765B1952D /* NSString+DTURLEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 4639A91682C983BA77196B83 /* NSString+DTURLEncoding.h */; }; - B927088F2E65746D82CC2B32 /* Pods-SecureUDID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 264C12C1EB557815566DA774 /* Pods-SecureUDID-dummy.m */; }; - B932407E23FF7E6B2137AB4F /* NSDictionary+DTError.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C6876031C50434AF3213AF8 /* NSDictionary+DTError.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - B9E0B7B69ED077E6DB9D24F5 /* DTCoreTextParagraphStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 1842F4D296B06A7D984A0DB9 /* DTCoreTextParagraphStyle.h */; }; - BA3305959EE53AF8A3AB5572 /* DTBlockFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E6D5B50E644E5F4D6F85508 /* DTBlockFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - BABE1440BD36E0B6121C37E7 /* DTSmartPagingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = 465331F158130126CBA562F4 /* DTSmartPagingScrollView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - BB4E62DEF19ACBAEA72DA5CE /* SBJson4StreamParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 047BC0888E4D50C8B8700A6C /* SBJson4StreamParser.h */; }; - BC310B2832CFCDF319451021 /* DTVideoTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = E94E485A430F7111CBB19E6C /* DTVideoTextAttachment.h */; }; - BCA7B4E72387B5A000BB6116 /* Pods-MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 896D610411EB647BFA5B8890 /* Pods-MBProgressHUD-dummy.m */; }; - BD3EC5560E56E491C10F019F /* NSMutableArray+DTMoving.h in Headers */ = {isa = PBXBuildFile; fileRef = BFCB508AD9823A7983E5D74A /* NSMutableArray+DTMoving.h */; }; - BE257A2317B003E968B73819 /* SBJson4StreamWriterState.h in Headers */ = {isa = PBXBuildFile; fileRef = C3C1130B8D9D1B235A06F7E7 /* SBJson4StreamWriterState.h */; }; - BED3DD952FFCF3BCA75E1B53 /* NSDictionary+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = F224B535A700999FE12BAFE9 /* NSDictionary+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - BF3C792CAF0E4533AFBEA646 /* DTTextHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 730A7D38F6FFDF0FE46892F6 /* DTTextHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - BF40A6D268C06A0727D2705C /* DTDictationPlaceholderTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = AA3B09A0EC579933C2353DD7 /* DTDictationPlaceholderTextAttachment.h */; }; - C054DD615619A47878D9477F /* DTFoundationConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 73CBB4F984043238B005F4F6 /* DTFoundationConstants.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - C0B45FB51B6CF99ECED25F52 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - C0D7AE7406C6A9FC0BA50178 /* DTStylesheetHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EB94C86CF85EBA81690153B /* DTStylesheetHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - C0EC98E5ED6F65A64D15275E /* SBJson4StreamWriterState.m in Sources */ = {isa = PBXBuildFile; fileRef = 625425467266D97BFACC32C2 /* SBJson4StreamWriterState.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - C2A8BA5DF5EEA6721602586A /* AFURLConnectionOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = D50CAD7D886127B4FCC9651B /* AFURLConnectionOperation.m */; }; - C336D1E8B3A77E2544BC0A82 /* DTLazyImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = D3A601900EB45032F31DC99D /* DTLazyImageView.h */; }; - C36F68BCCFBF68ACF6DC5497 /* MTLModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 2DB04192C82F65E1052B241D /* MTLModel.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - C3ECDCF7C1C21639EE6479DA /* NSScanner+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FE9E4CECFDA7FAA64A49FAE /* NSScanner+HTML.h */; }; - C41CBAE06455664E0C384F6C /* DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 1258305292DF8E3E5E5F4539 /* DTCoreText.h */; }; - C463CE6C190E2EB4FC56FA40 /* DTColor+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 8CD8F8A3D741599FFD818A67 /* DTColor+Compatibility.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - C5532F2750F9223902545F0F /* DTIframeTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA805FFFDCC2F3DAAD620F4 /* DTIframeTextAttachment.h */; }; - C59DEBA0D6AAFC562940592C /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12267743C03057BDFD011A3D /* MobileCoreServices.framework */; }; - C69E67EB4F031F43BBF83856 /* DTExtendedFileAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 630BD53F48E6A1081E0981FC /* DTExtendedFileAttributes.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - C6F4F9B53A3C2E706CF9EA2E /* SBJson4Parser.m in Sources */ = {isa = PBXBuildFile; fileRef = 890BE7875A7E3998D71EECD4 /* SBJson4Parser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - C7376FD48641126E2618D5BC /* UIFont+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = FDEB6D07D34B0BAE39B2E5B8 /* UIFont+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - C8FFE812C5F450379BFB8087 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 19454852EB647E3F82CC59FE /* AFNetworkActivityIndicatorManager.m */; }; - C909D0A3845F6FD073BE61A3 /* NSString+DTFormatNumbers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D2D809FEB987395EFAD2412 /* NSString+DTFormatNumbers.h */; }; - C921F207713C1401E8610DAA /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = F54AA8AD4C41F9F64CB3CB49 /* UIProgressView+AFNetworking.m */; }; - C993E1482D0BC628286E3E66 /* EGOCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E393A9434AC2E5B0578EE04 /* EGOCache.h */; }; - CAD40842F80E5CADC9B014C0 /* DTTextBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = A3F4DDCE219F614C07910085 /* DTTextBlock.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - CB0ADAED7BD7C6ACA9F9A08B /* DTCoreTextGlyphRun.m in Sources */ = {isa = PBXBuildFile; fileRef = 294FFA5E957524F2BD16D37F /* DTCoreTextGlyphRun.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - CC5703EFE48A316342FB4786 /* NSMutableAttributedString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 2756DF9C91A022A1E05A42B8 /* NSMutableAttributedString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - CC7CC573352644B5567E3E8D /* DTListItemHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FDFCE1EC5AF47663E5533F7 /* DTListItemHTMLElement.h */; }; - CC822B3EA52CB14214C90F42 /* NSString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 878709F0A0EA26F7CA14C962 /* NSString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - CCAF15E7E6C4788FC309C31E /* UIView+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D5C1A7AAF534DEEC4199715 /* UIView+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - CCBD7AEDBF92C5F3BE3FD568 /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = DF071B9931D904BEED3CD3DD /* SDWebImageDownloaderOperation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - CCE91C49322B5F7248140992 /* NSScanner+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = B5C57EFC89F1A8F197D6BB9F /* NSScanner+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - CD3E5E94F4AC2DD8EE7AE61F /* DTBase64Coding.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D6B7239BFC55E389163C9ED /* DTBase64Coding.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - CDD3098F16EF9FDF73F15C0A /* UIView+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A917C215351608764A9240E /* UIView+DTFoundation.h */; }; - CE07C44BF654A17BAA6B9DC0 /* NSData+Godzippa.h in Headers */ = {isa = PBXBuildFile; fileRef = 2564BD064A8DF54367722ED0 /* NSData+Godzippa.h */; }; - CFF30F21E6408AA62ACEB8C5 /* DTHTMLParserTextNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 66D6BAE209CBAF4097E6F0D8 /* DTHTMLParserTextNode.h */; }; - D0E3DBC1F2919FCC3708D4B6 /* DTCoreTextFontCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = D74D946F2FB9D80EC21079B7 /* DTCoreTextFontCollection.h */; }; - D10A471C561B555BAF10C253 /* MTLJSONAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C830DC9FA8CE138CE899437 /* MTLJSONAdapter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - D2D36773C72F95526D88D540 /* DTTextBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BA176D215A12300DA2BC3DC /* DTTextBlock.h */; }; - D2F12B4B20F3F1D40FDAB503 /* DTTextHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = B4266A437FC0E61DE5F1D5B8 /* DTTextHTMLElement.h */; }; - D32E2A056FA6758BE033BF00 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - D33EC5EE51E048580DFB2844 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - D5D2C67E74273A13CDC409A6 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2412896BDB200297D51739E /* SDWebImageManager.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - D61772959A9EDD731616ACE0 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E1D11C0E845EFBAE5687F71 /* AFURLSessionManager.m */; }; - D63B59B6E711215FBFCE3853 /* AFHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 71D4BB6FC3BB93CE78F20303 /* AFHTTPRequestOperation.m */; }; - D6DC4A97233BBD19A4C7E4A0 /* DTCoreTextFontDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 92ABF115E586E14B05BB47D2 /* DTCoreTextFontDescriptor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - D6ED89509EC4B42C49D6FD78 /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 5317D4EC799B8DB732BB0B71 /* UIImage+GIF.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - D6F01A0402238926CCE12935 /* DTActivityTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E8CA8078E20A60DBC1AF6AA /* DTActivityTitleView.h */; }; - D73F0E0B7336E83EC31D1DFC /* DTCoreGraphicsUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 96824B14B6DBDCF4D1EBF710 /* DTCoreGraphicsUtils.h */; }; - D7867D502940B0E070C59731 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A56A6FA2555D2660EAEC2FF2 /* AFNetworkReachabilityManager.m */; }; - D8608E1A9FE81416230F23BF /* NSString+Paragraphs.h in Headers */ = {isa = PBXBuildFile; fileRef = 30DD1909FF84B561B5097267 /* NSString+Paragraphs.h */; }; - D8F84477D56B138C15D7F6F2 /* DTHTMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F655701E7EDC90F5F2D6B40C /* DTHTMLParser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - D90CAF4908EAE5FA1339AB10 /* SBJson4Writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 59C3DC8990354986300B1021 /* SBJson4Writer.h */; }; - DA14D4DA2EF4E1A83EA035A5 /* DTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = C6A3C5E6701A78D0157E3C33 /* DTVersion.h */; }; - DB3EA62F219C86E9D6C0794F /* DTAsyncFileDeleter.m in Sources */ = {isa = PBXBuildFile; fileRef = F20A15D4F163AA0D25A3B9B5 /* DTAsyncFileDeleter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - DB72401F95DF610C25F013F1 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = AC491F4239C710AF434E79A2 /* AFSecurityPolicy.h */; }; - DC0E3F81D77DE8B7A39613E1 /* NSAttributedStringRunDelegates.m in Sources */ = {isa = PBXBuildFile; fileRef = A09E4E3D058A22374FA3E52A /* NSAttributedStringRunDelegates.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - DC36D9814E7A721A86AF6A02 /* Pods-DTFoundation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 162E2E22107D20F2693387CF /* Pods-DTFoundation-dummy.m */; }; - DCC8CB7E2E70E3BDD62AD6F2 /* SBJson4Parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C44D170034AED69BF745FDC /* SBJson4Parser.h */; }; - DD2A9E40DE0C9ADE47406FB7 /* DTIframeTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 4489190037A7638D8CC8533B /* DTIframeTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - DD3466A8C888BBD69731EDDB /* NSAttributedString+DTDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = 1262F885EB2D8C42E0D251E8 /* NSAttributedString+DTDebug.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - E062CEAD6F3F87291B37AB99 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FEFF6F630CED819928ED732 /* SDWebImagePrefetcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - E07A42F90C05F5337633D3E9 /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 590F8D2F9C16A87EBFEDAA48 /* SDWebImageDecoder.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - E2574AF7D46DDBC29DA77F61 /* NSDictionary+DTError.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AEFB7A0C243F4C9C4DC7750 /* NSDictionary+DTError.h */; }; - E2D5E14857F4F8D0EF850E5F /* DTLinkButton.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FB146217237D87D2A9D47E2 /* DTLinkButton.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - E678665236DD2338C2BDEBE9 /* DTLog.m in Sources */ = {isa = PBXBuildFile; fileRef = DCE55304C9E3886863A46B6A /* DTLog.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - E6816C4A6C8A2C51EC93D58A /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DE9E2502F28A70DB59A99D6 /* QuartzCore.framework */; }; - E7ED3FDE074A2B73C50B8B3C /* NSValueTransformer+MTLPredefinedTransformerAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E4CBCF215675EB712A79F00 /* NSValueTransformer+MTLPredefinedTransformerAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - E84F59A35F122F1FF30363AC /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B6F15A6D1DD9CE0E2656C9F /* CoreGraphics.framework */; }; - E85F70199309EDDA8E08EE97 /* DTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = AE67E38C44414521A4F59135 /* DTVersion.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - E8E1167D17480850EA452646 /* DTBreakHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB0D7FEBDAEE8A3A88CE324 /* DTBreakHTMLElement.h */; }; - EA54F3387BA69C3F6AD7E27D /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DE9E2502F28A70DB59A99D6 /* QuartzCore.framework */; }; - EA68BA6921377F72C094098B /* NSFileManager+Godzippa.h in Headers */ = {isa = PBXBuildFile; fileRef = FF814FE7ED9C6040D466ABCF /* NSFileManager+Godzippa.h */; }; - EB8F1B0DA229F57C2574DA5E /* DTAnchorHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F1AB28EB778D9E2B929EDAC /* DTAnchorHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - EBFB2772ADA8F6243E8F05A8 /* DTHTMLAttributedStringBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 5484AF5E8CE0D3C01D661913 /* DTHTMLAttributedStringBuilder.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - EC08C1AAF70C76944B58CB13 /* DTCustomColoredAccessory.m in Sources */ = {isa = PBXBuildFile; fileRef = 310301EC7307552E99263FAC /* DTCustomColoredAccessory.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - EC0E9BEB0A58C368058AF84F /* DTCoreTextLayoutLine.h in Headers */ = {isa = PBXBuildFile; fileRef = EFCD1E4528F0F4B030F80E0E /* DTCoreTextLayoutLine.h */; }; - EC6031108F3C8D8954518E33 /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1D4B67B8ECBDF01CCA2B5D /* SDWebImageOperation.h */; }; - EC796905CFA49F59D6BEB76E /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DBCB70ADAF750B243D34F29 /* UIImage+GIF.h */; }; - ECC3654109CE43F952347D06 /* NSString+DTPaths.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C65FB39B32FD3702DD36096 /* NSString+DTPaths.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - ED96F3371CA09CFB370DC539 /* NSString+CSS.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F754E08EA6C27E65CE75BF0 /* NSString+CSS.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - EE5B776B5B5D218A40637952 /* DTActivityTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 7A67916EB92B6B880C683460 /* DTActivityTitleView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - EE5BE1B3E14C712AD023F8A3 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = F9E95148985AF2075E1448A9 /* UIImage+MultiFormat.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - EE84CBE8407BF806C7E2A40A /* SBJson4StreamParserState.m in Sources */ = {isa = PBXBuildFile; fileRef = 97D9281D8657C98DAF2F1DD0 /* SBJson4StreamParserState.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - EEBBF9412DB941DA983CF3A3 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B6F15A6D1DD9CE0E2656C9F /* CoreGraphics.framework */; }; - EF3493AA0D81B440E60E6B37 /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 77F5CE3216641AC3148A077E /* MBProgressHUD.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - EF8D3D99178DD99A50B5607F /* NSCoder+DTCompatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = 610DE255531BF6EEB5991477 /* NSCoder+DTCompatibility.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - F141914AF0C651D00149913E /* DTWeakSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = FE35E19F4EA7C40A33AF8E0D /* DTWeakSupport.h */; }; - F1A3091A9DCDB70CADB909B9 /* DTHTMLParserTextNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9C89330B1170394C848D9635 /* DTHTMLParserTextNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - F2431F4E5E9C87441203BDA9 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E431F1BD21F4E5EA33AEA3E8 /* SDImageCache.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - F2E786CE7E8636D757D3BF6C /* Pods-SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 40F3271E4997585A6FB0773A /* Pods-SDWebImage-dummy.m */; }; - F332182BA4AE992C3F413D87 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - F3340FCE178705CB20643CDE /* DTCSSStylesheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BD89C3F03ABA3F9FC00C227 /* DTCSSStylesheet.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - F397EDF9769BAC066D257AEA /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = DE97551E5565C457C3E6A477 /* AFURLRequestSerialization.m */; }; - F516341DDAA7CE2024F55E0A /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F55EFAA16869F0908B637564 /* Foundation.framework */; }; - F51E92D68A984894019D14DC /* DTPieProgressIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = A99C7CEFD9A42E5F3A51688D /* DTPieProgressIndicator.h */; }; - F612406A3AB45CDBCDE68CA5 /* DTAttributedTextCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 50979E45EB072018E763F1F8 /* DTAttributedTextCell.h */; }; - F663D86E70844B8710BDBE81 /* MTLManagedObjectAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 7E23C63EE2780C6B036A5FF4 /* MTLManagedObjectAdapter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - F6E75DFF2331894F245AAA9A /* DTCoreTextMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = AE310881700502634449D6C4 /* DTCoreTextMacros.h */; }; - F88DBF8474D135B0C33E1F30 /* DTBlockFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = F9D384C3C514918ED5E79089 /* DTBlockFunctions.h */; }; - F92EB8CB0B478ABFFA04DDDC /* DTAnchorHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 0849E2AF5C936DCEB63EB2F6 /* DTAnchorHTMLElement.h */; }; - F9DBF32C2B8F5278EB1409AD /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = D7FCE77D05351D39FA2768CA /* SDWebImageCompat.h */; }; - FA9F9CE9AEEF9A446E1DF840 /* Pods-Mantle-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A8249FC80A664103BBB1DE8F /* Pods-Mantle-dummy.m */; }; - FAF3585E0612946D1FB60B55 /* DTCoreTextLayoutFrame+Cursor.m in Sources */ = {isa = PBXBuildFile; fileRef = A45287DD5CC03DA55BB4E16B /* DTCoreTextLayoutFrame+Cursor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - FB90F7CC5E2C4F2E0DCA9B13 /* NSArray+DTError.h in Headers */ = {isa = PBXBuildFile; fileRef = 57868989FCC8CE96EDB53AA9 /* NSArray+DTError.h */; }; - FC4C0E9B6509D66A22BA96CC /* UIFont+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = FDC4F3449CACD9982B406C79 /* UIFont+DTCoreText.h */; }; - FC55CD8E5FC3934C11BDA08F /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BB6BE3E53C4D6F40B4C2533D /* SDWebImageManager.h */; }; - FD2C2ACD0F7ED96358DF738F /* NSCharacterSet+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = DB21BF9329289D1E434B74DD /* NSCharacterSet+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; - FD639000489071DC6322FEE1 /* Pods-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BD616071F804F598E9B5A2F6 /* Pods-dummy.m */; }; - FE29EB5A90EC7ABCE7A36DFC /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 182C1BADEC87E296B6514FE2 /* NSData+ImageContentType.h */; }; - FE3A7439F5493343758EC737 /* NSAttributedString+SmallCaps.h in Headers */ = {isa = PBXBuildFile; fileRef = 04ED898C2ECD35BF231AF596 /* NSAttributedString+SmallCaps.h */; }; - FEE05EE46C0B4A2723A0E884 /* DTCustomColoredAccessory.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E82B7E38AD25F8AB4D93CB7 /* DTCustomColoredAccessory.h */; }; - FEEF934A17B9681D46F978B5 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F1385437FA74A2B33B7D6C /* AFNetworkReachabilityManager.h */; }; + 013467F6755569661F39AF4B /* DTObjectTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 3670C7769C590549B0C44E1D /* DTObjectTextAttachment.h */; }; + 02FDDB835C27EF636DAB16C8 /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = 4207141FCF781427DE11D23B /* NSData+ImageContentType.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 03602DA16768AA2E4F44EF9F /* NSURL+DTUnshorten.m in Sources */ = {isa = PBXBuildFile; fileRef = DF93B9175E450858873DDAA6 /* NSURL+DTUnshorten.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 07DC747AB89E367CCFD890C2 /* DTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = 5B6AF433338EC4AC033A9181 /* DTVersion.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 07E1C1882ADC1CE2FA6B0F55 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = 88996DCFB9C20647C811521A /* MJRefreshConst.m */; }; + 08B673B94982357C5B554C17 /* Pods-AFNetworking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0F24BC2B49183DD4CDCD44 /* Pods-AFNetworking-dummy.m */; }; + 09D5C7B9E5669FC9852799A0 /* NSAttributedString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = FEC31545FD989A646944ADE6 /* NSAttributedString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 09F24AED39819E1AABBE030D /* DTCSSStylesheet.h in Headers */ = {isa = PBXBuildFile; fileRef = 3696ED74324B48504AA37EDC /* DTCSSStylesheet.h */; }; + 0A67893342424A28B89B671F /* SBJson4StreamWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDC97D0468852D958D8D8E8 /* SBJson4StreamWriter.h */; }; + 0AC8372303BEDD826B295C92 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 773442E765A1C63F2FE4C7A7 /* CoreGraphics.framework */; }; + 0D2FE5AF1FEFA62248A77602 /* MJRefreshLegendFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = EB1FFA98D7F41E49D4A1FC80 /* MJRefreshLegendFooter.m */; }; + 0D7CE15921BEF9485FFB70EC /* DTWeakSupport.h in Headers */ = {isa = PBXBuildFile; fileRef = D086CB92C6BD593F773E96CE /* DTWeakSupport.h */; }; + 0EED913B03DF39227F72F553 /* NSDictionary+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = DB9901403DB337D702874EE5 /* NSDictionary+DTCoreText.h */; }; + 0F853548CDF9FB2256F7E61D /* DTCoreTextLayoutFrame+Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 836D171FF07483A75E6861A1 /* DTCoreTextLayoutFrame+Cursor.h */; }; + 10013362018CA4989D580A81 /* DTAnimatedGIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 756716097FFEF7DF57ABDADA /* DTAnimatedGIF.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 1081B1832D78FB4CF7BF72F6 /* DTExtendedFileAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = DBBDECA0E031AACA6A6FD77E /* DTExtendedFileAttributes.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 10C70F53FD8C8952216F80BC /* NSData+Godzippa.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2E4AF02D89954634EFF8C5 /* NSData+Godzippa.h */; }; + 11AC09BAEB0E1B2D525AA41C /* DTTextBlock.h in Headers */ = {isa = PBXBuildFile; fileRef = 09E5FA8F17EC2E65ADAAADCF /* DTTextBlock.h */; }; + 11D7AE61ACE8E5EF584A2334 /* UIView+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B66DC6C098625298FDCAD16 /* UIView+DTFoundation.h */; }; + 129137FB275A32B0ADC82CE2 /* UIFont+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 39A1C34F923602E69F92BFDE /* UIFont+DTCoreText.h */; }; + 12F17919DA35204E9E8190E2 /* NSString+DTUtilities.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D7624987F033F98039FBAA9 /* NSString+DTUtilities.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 1498E1CE4D319EC01BFFAB10 /* NSValueTransformer+MTLPredefinedTransformerAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 78733D989F9F73E37027C410 /* NSValueTransformer+MTLPredefinedTransformerAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 150FF6D4FE69C5430F4A310B /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D08CD6B532365139DA1407 /* MJRefreshFooter.m */; }; + 1557DF7243D3BE8FF57762F9 /* NSString+Paragraphs.m in Sources */ = {isa = PBXBuildFile; fileRef = E9073FA1B8DD32D6490E136E /* NSString+Paragraphs.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 157F0C0C9BE20C20E2FDB47D /* DTIframeTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 59658FE86151B90EC9F3BE27 /* DTIframeTextAttachment.h */; }; + 17C8DB4DB8A058C8E99C7756 /* NSValueTransformer+MTLInversionAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 10E66F61731BC4E063DE4062 /* NSValueTransformer+MTLInversionAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 1927D218D867C80904A9D718 /* Pods-Godzippa-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 503A291995410E5B5A763B2D /* Pods-Godzippa-dummy.m */; }; + 193E008C51214B282BB15DB0 /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A9EFA1E9B05357190D9172E /* UIWebView+AFNetworking.m */; }; + 1A81AFCE6AD8D0FD89CC236C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + 1A8BC21DA14BFA5949E50016 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 773442E765A1C63F2FE4C7A7 /* CoreGraphics.framework */; }; + 1C071DB1CEBE4A97470A88CB /* UIAlertView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 930A0AB4C8E7F92D743F8FB7 /* UIAlertView+AFNetworking.h */; }; + 1FD9A8ED7D34AF7E58005295 /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 0C1064303DF3B737DA725814 /* UIButton+WebCache.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 1FF57ED960C0D6CC6FEEE7B1 /* DTCoreTextLayoutLine.h in Headers */ = {isa = PBXBuildFile; fileRef = ACDAAD9655E2C1AC4DAA7447 /* DTCoreTextLayoutLine.h */; }; + 207323BBA418E47FB0C5570A /* EGOCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E30D75C853F99F1A5BB9BD3B /* EGOCache.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 22C576C9448921EFF3D709CA /* DTCoreTextLayouter.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CB88CB32F99B23A91737376 /* DTCoreTextLayouter.h */; }; + 22DC6D081D812BDC590D1790 /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 20D928D2843510C0E5CBFF97 /* UIActivityIndicatorView+AFNetworking.m */; }; + 23572C332549731F35868C27 /* DTHorizontalRuleHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B2778A2CBCC22A5EBAD6A04 /* DTHorizontalRuleHTMLElement.h */; }; + 2414AE68EE3B87A413FAF4A6 /* NSFileManager+Godzippa.m in Sources */ = {isa = PBXBuildFile; fileRef = 755D62429655E5D59DD7F71D /* NSFileManager+Godzippa.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 24D229DD078766D957CCF1BD /* MTLReflection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC113614F7136493658DF3D /* MTLReflection.h */; }; + 2557188806A5F77BE086DA35 /* STableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C65AC3C56199B42EA9136A83 /* STableViewController.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + 2599716241029048D12453BB /* NSCoder+DTCompatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = E76ADADDF8D8EED738777D61 /* NSCoder+DTCompatibility.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 26AC6C444F6FAE0FAA2E760C /* NSData+DTCrypto.m in Sources */ = {isa = PBXBuildFile; fileRef = D5EA61467C60003133DD0D39 /* NSData+DTCrypto.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 28B28847D5910CBE3459691C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + 28C947BC1C877387DA779D3E /* MTLReflection.m in Sources */ = {isa = PBXBuildFile; fileRef = D905170C724FC07A087DA177 /* MTLReflection.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 290912F2E086545784B86935 /* DTTextHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = D9832217CABFF0E976E49A8F /* DTTextHTMLElement.h */; }; + 2957FD54466B570824668768 /* DTHTMLParserNode.m in Sources */ = {isa = PBXBuildFile; fileRef = E90048AC25846309934924ED /* DTHTMLParserNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 29DE3615E251CDE95E6E5BFC /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 773442E765A1C63F2FE4C7A7 /* CoreGraphics.framework */; }; + 2A1611C1112D3B4127B318A0 /* DTColorFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE030D85B22A8F05A718A4C /* DTColorFunctions.h */; }; + 2A29E5880992E50A2340F226 /* DTCoreTextLayoutFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BB919BCAFB78FEB1758A4DC /* DTCoreTextLayoutFrame.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 2AA1FE64199A6BD55C88E843 /* UIView+WebCacheOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 12CAC97CA7D7C1588D4A140F /* UIView+WebCacheOperation.h */; }; + 2B3CEB8B932D6275D22E365C /* SBJson4StreamParser.m in Sources */ = {isa = PBXBuildFile; fileRef = F27265DD7AC462708EDB1231 /* SBJson4StreamParser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 2BA7FBFBD062CEDAD4E5DC98 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 9447CAF1045E27BEEDA3F476 /* UIScrollView+MJExtension.m */; }; + 2BFC12E3A6466342025550CC /* MJRefreshLegendHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 69A1F0BE372389DA46197303 /* MJRefreshLegendHeader.m */; }; + 2C8EC9E0E48E4E51F2E26FBD /* NSFileWrapper+DTCopying.h in Headers */ = {isa = PBXBuildFile; fileRef = 2ADF5358C353032A4C980480 /* NSFileWrapper+DTCopying.h */; }; + 2CA32DA7E65DF80E7C750048 /* NSAttributedString+DTDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = 3CB8ABE55CC35E6B1DD6EB1B /* NSAttributedString+DTDebug.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 2CDE09CE2BD3FCE505BC0E48 /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 70BE3A9C24806ADF38059D79 /* SDWebImageManager.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 2E0A61731F92585F5F6409A1 /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = BD4CC0F4A206E3387EB23FC7 /* UIRefreshControl+AFNetworking.h */; }; + 2E2A225E09AA1776237DA0A3 /* EGOCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AF4EEBE22CA0773738FC4D0 /* EGOCache.h */; }; + 30AAEE8481CF871BBD3F3632 /* MTLValueTransformer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DBFAFDF68A673A50270352B /* MTLValueTransformer.h */; }; + 31071C73FFA23AD720191706 /* UIImage+GIF.h in Headers */ = {isa = PBXBuildFile; fileRef = 000C7C8E20F34124E0809DB3 /* UIImage+GIF.h */; }; + 33130592D42A6A1ECAD801F3 /* DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = 425566B984B0A4BCA253D006 /* DTCoreText.h */; }; + 35CAD4E7E13BD530B42C2A88 /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = AFFE47C69E2CCB6543DD7528 /* UIView+WebCacheOperation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 3632E9ABE4CBE8994EF0AFB2 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 75148258B54D8B8313FE17F3 /* AFHTTPSessionManager.m */; }; + 365D687F479329B69DC21B1F /* DTExtendedFileAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA0FD965C5FBB1287C48E48 /* DTExtendedFileAttributes.h */; }; + 36E06283E2A8B178FCEA10F8 /* DTHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = F168A911AA440D4C151F9C1D /* DTHTMLElement.h */; }; + 36E611C63BFDA916CBCD6895 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = 30F3F9E01B43C34729A44800 /* AFSecurityPolicy.h */; }; + 387F89C6691C6631954FAE74 /* DTVideoTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = AF028E837C5BC33FDC893180 /* DTVideoTextAttachment.h */; }; + 38D554163E106E1C88D223F8 /* NSDictionary+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = 51EC2D065396A6C2D8A571D6 /* NSDictionary+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 3A199E6E897D83B2FE5E0BC5 /* SBJson4Writer.m in Sources */ = {isa = PBXBuildFile; fileRef = F3AFBC2A7345283D309D433A /* SBJson4Writer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 3BB69F101FB7962D1F60644E /* DTPieProgressIndicator.m in Sources */ = {isa = PBXBuildFile; fileRef = 73327572566D7640FD245B2A /* DTPieProgressIndicator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 3CAC6C9048BD575906F46945 /* AFURLConnectionOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = BB7CD6D48CF336B4A54D21F1 /* AFURLConnectionOperation.m */; }; + 3D9DE2FAF1FDDF8C25A57A35 /* DTCSSListStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = A0F6431993B81C62063DA281 /* DTCSSListStyle.h */; }; + 3ED3617D49C9292442C8C8EB /* SDImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = C69239397978F1E0635D29A1 /* SDImageCache.h */; }; + 3F2F8A5FD546EFB18686E1D1 /* DTColorFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = D2E92F7A6612F4A24E6F20D7 /* DTColorFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 3F5AF18A621A4141626E0CD5 /* NSAttributedString+DTDebug.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FA4F56DE2750802DDF3E7D /* NSAttributedString+DTDebug.h */; }; + 408435DD7CF9179692B3B6AD /* NSScanner+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 044DC8C7F9205B47C61B7091 /* NSScanner+HTML.h */; }; + 4092F1978DB4496E053C37AB /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E70B4D3E26344AF290F4C98E /* AFURLSessionManager.m */; }; + 4190B3AE187ED49E37EA4E3B /* DTCoreTextConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = CD3E2723A996F6F8BF044B77 /* DTCoreTextConstants.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 41B3C717DCE4AA5E4D1BE745 /* SBJson4StreamTokeniser.m in Sources */ = {isa = PBXBuildFile; fileRef = 320C4B3C2C920938601B4305 /* SBJson4StreamTokeniser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 41D4ACE03A4D78DD7594743C /* NSError+MTLModelException.h in Headers */ = {isa = PBXBuildFile; fileRef = D938F08000DB650B2F491850 /* NSError+MTLModelException.h */; }; + 426686586767BC3E0A121DD8 /* DTTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = 539798AD51FB8DC0BD6B0E2A /* DTTextAttachment.h */; }; + 42A53897D5B4C170C8BA5A2D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + 4311CCE77CCC6D844976EAFA /* NSData+DTCrypto.h in Headers */ = {isa = PBXBuildFile; fileRef = E423E5459EDC690BEBD6A3A4 /* NSData+DTCrypto.h */; }; + 457F86F0E38CA9DCD7CE1695 /* DTWebVideoView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA2010E282D8967EE2214B2 /* DTWebVideoView.h */; }; + 468589F666ABDDD9A6FA07F4 /* DTAccessibilityViewProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F4E8F22347EFC734538CC8B /* DTAccessibilityViewProxy.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 48E611DCB028272820C85F25 /* EXTScope.m in Sources */ = {isa = PBXBuildFile; fileRef = 2FBF0F645D702F931F268E9E /* EXTScope.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 49287364D76BF68CD71F0059 /* NSValueTransformer+MTLInversionAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E185C3A63D33EA5B221AC913 /* NSValueTransformer+MTLInversionAdditions.h */; }; + 4A53FD937B8D71DC6EEFA258 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = C0130EFECC56B2652B94F81E /* AFNetworking.h */; }; + 4A84D4DF3953FEE67A8BDAC4 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9CDF2BBFC944D7EC9ED7E876 /* SystemConfiguration.framework */; }; + 4ACCE6B6945543B1B0C7E3D8 /* DTCoreGraphicsUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 57E5F26122F2FB06F884C15A /* DTCoreGraphicsUtils.h */; }; + 4AE39F5A27F3C1A67BC1F10C /* default.css.c in Sources */ = {isa = PBXBuildFile; fileRef = 1B659E68785F55141EB11EE7 /* default.css.c */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 4B58DE5823C889AA7BCE5AF8 /* SDWebImageManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C4236B98DE95D458253A2E28 /* SDWebImageManager.h */; }; + 4C63FDE40B392A78CAE77305 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = AE4D8F0FE101726A21C7916D /* UIScrollView+MJExtension.h */; }; + 4CC40D4013DBF1B0E277E3AF /* MBProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B4E1FCB0CDB86A8C3132D2B /* MBProgressHUD.h */; }; + 4D0482135D8BD6F38AC8E82F /* NSString+DTUtilities.h in Headers */ = {isa = PBXBuildFile; fileRef = 4847BB93AAE212547B53AC4C /* NSString+DTUtilities.h */; }; + 4D178EA509151771F9471851 /* Pods-SDWebImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F2E55C6466ED5FD349BC1A9 /* Pods-SDWebImage-dummy.m */; }; + 4E19B321140DF0FFCAD39931 /* AFHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 8548215E6816926EBD286077 /* AFHTTPRequestOperation.m */; }; + 4E882AE138DA4FB231C758E1 /* NSURL+DTUnshorten.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BBF2A6202CA507D30D3476A /* NSURL+DTUnshorten.h */; }; + 4EA70A8BB0A35B6C33B7C140 /* SDWebImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = F6A6D3AA20DAA77868C1D091 /* SDWebImageDecoder.h */; }; + 4EF33D5049AFA1509CF73779 /* DTTextBlock.m in Sources */ = {isa = PBXBuildFile; fileRef = AC5D6F872F7F6A7FEBA2E5A2 /* DTTextBlock.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 4F10F0A70F10D1D2BAF784C5 /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = FC33FC69327B72065A6A6850 /* SDImageCache.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 50977A6FB806F7290536C123 /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = 34D8B3FF86517D1908DF722D /* UIImage+MultiFormat.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 511BAA36D0762088F7DDD7B9 /* DTDictationPlaceholderView.m in Sources */ = {isa = PBXBuildFile; fileRef = 42A2C07608DCFE0ADD03E8BD /* DTDictationPlaceholderView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 522B27D45468F4BB65EAFAA3 /* UIButton+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 02567E2AFA2ABD2F2C933C40 /* UIButton+WebCache.h */; }; + 5281FE4438B836460AAF08AA /* DTCustomColoredAccessory.h in Headers */ = {isa = PBXBuildFile; fileRef = C3CACD01ECAC658FCCD298EC /* DTCustomColoredAccessory.h */; }; + 52CAE06DBD6FA7F2C2B4B95B /* Pods-DTFoundation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = CD2AE4C4FECECC3D80428448 /* Pods-DTFoundation-dummy.m */; }; + 56325DA5C191FA7D75ADCC94 /* NSDictionary+MTLManipulationAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A64DFA72DEB806D609C599D /* NSDictionary+MTLManipulationAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 56537D1008A6086C62D57D36 /* DTTextHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = EDF8FB7A99E6A32E06931FC8 /* DTTextHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 56702CE0370CD7591056FE21 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 73CEA0FB979ED40EC2A6B6BC /* MJRefreshComponent.h */; }; + 57EEF7C5E70A9BB7C4B0FADB /* DTAccessibilityElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 148DEBCC24AB506B6C316DCD /* DTAccessibilityElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 5867806F774A920DE6FBBA4F /* NSCharacterSet+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = E2047543F1590232A94322E0 /* NSCharacterSet+HTML.h */; }; + 586BFFC03A65CB210F74D722 /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = F64AF8C879E7300CB2CB9C16 /* UIScrollView+MJRefresh.h */; }; + 58BC9D84FAD6E995FA149EF2 /* NSString+CSS.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CCC7AC0562537FEB44115A4 /* NSString+CSS.h */; }; + 58C065258DA29A4B7228293B /* DTCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E596786EA619668160B3663 /* DTCompatibility.h */; }; + 5921EB579F7FAEF03FF8B6F5 /* DTCustomColoredAccessory.m in Sources */ = {isa = PBXBuildFile; fileRef = 8603AA1F5FB93FC0461DE390 /* DTCustomColoredAccessory.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 5941F1A283E283FA9A7ACC8A /* DTBase64Coding.m in Sources */ = {isa = PBXBuildFile; fileRef = B500ECF7DB98EE0B317600B7 /* DTBase64Coding.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 5BE033B73E0CC0E509D10181 /* NSAttributedString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 6242A9BEC50022E7229F5D08 /* NSAttributedString+HTML.h */; }; + 5C5BFC53F089F1892CE28BCE /* DTAccessibilityViewProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 80F2C8CC2597851350219120 /* DTAccessibilityViewProxy.h */; }; + 5C675D64694AF44C794E298D /* DTAccessibilityElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 4EB3E403669E23800E28A5B7 /* DTAccessibilityElement.h */; }; + 6022AE41B46C9B7FDE781425 /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = E318B19F03E9DE62C674966F /* MJRefreshConst.h */; }; + 611A97144BA4643E8F4C1C23 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 499918F35DCBA4F2298533F3 /* AFURLResponseSerialization.h */; }; + 61674A1F9BD420367B6C7A57 /* DTFolderMonitor.m in Sources */ = {isa = PBXBuildFile; fileRef = 74AC06D02C0D9C5BA41A0675 /* DTFolderMonitor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 6230463E54645081E39A2E9C /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 46FB8C8725057434D48E2858 /* AFNetworkReachabilityManager.m */; }; + 62C7A6CCED2206B30F54EE83 /* MTLModel+NSCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = AE53AD511CE0BA44B4752FEA /* MTLModel+NSCoding.h */; }; + 62E2DD56976312E5C92C1895 /* AFURLConnectionOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 74503AAA593FD430ACC0474E /* AFURLConnectionOperation.h */; }; + 63152F7711EC5D68D37865E6 /* MobileCoreServices.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 82CC48C7AD519486AEE6522C /* MobileCoreServices.framework */; }; + 6352551E83620AA320F9BEAD /* DTAsyncFileDeleter.m in Sources */ = {isa = PBXBuildFile; fileRef = 49AB829E61E71E2B8119ABA5 /* DTAsyncFileDeleter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 635F190AD6CEECBB54365F03 /* DTBlockFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = 663130FDE5B7DD0A2641EB9D /* DTBlockFunctions.h */; }; + 645A5C37747872C68DE2F8B2 /* NSAttributedStringRunDelegates.m in Sources */ = {isa = PBXBuildFile; fileRef = E03546E55068EB6FC56539AA /* NSAttributedStringRunDelegates.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 648AB936C6937FF4E02FA4BB /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 51DA841889AC7CDBDC4EEC6E /* UIScrollView+MJRefresh.m */; }; + 65C3DC46F7BF23D8216E7D73 /* DTAnimatedGIF.h in Headers */ = {isa = PBXBuildFile; fileRef = E285C11FC8A0EDC3C050F5BA /* DTAnimatedGIF.h */; }; + 66831CEE444CB67898D15B84 /* MTLManagedObjectAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = CE8D89294248FA6062C49829 /* MTLManagedObjectAdapter.h */; }; + 66BF2FC248E1EF98DC3FE975 /* DTAttributedLabel.h in Headers */ = {isa = PBXBuildFile; fileRef = B9DF7E684875D2D0F3F9E90E /* DTAttributedLabel.h */; }; + 67A2862A89CFDBF643CE13AE /* NSAttributedString+SmallCaps.h in Headers */ = {isa = PBXBuildFile; fileRef = 85EDAE7F553BE9B9025A5BBE /* NSAttributedString+SmallCaps.h */; }; + 67F735E54B44DB40A8261D3B /* Godzippa.h in Headers */ = {isa = PBXBuildFile; fileRef = E2E58C3EBFFE680BA8B27886 /* Godzippa.h */; }; + 6823457F8E43FB5C9C7554F8 /* DTAnchorHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = BDBB5D463CB84DB5FCE7F69C /* DTAnchorHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 682FDEED1A6A7C8243E4AF37 /* Pods-STableViewController-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E7C41887C23810EB51DD0A0 /* Pods-STableViewController-dummy.m */; }; + 6A07B0C1D9C7D99852513FE8 /* NSString+DTURLEncoding.m in Sources */ = {isa = PBXBuildFile; fileRef = A5DC4DE3B2C1EA11EA2068EE /* NSString+DTURLEncoding.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 6A21E94A5341699D26C493FB /* DTActivityTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 02297CC15BF3E306414B69BD /* DTActivityTitleView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 6B9E38201BDE3E9D77525C4E /* NSString+Paragraphs.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E350355D4CDA7345039AA1 /* NSString+Paragraphs.h */; }; + 6C5C29A4193C3E3380BDA42F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + 6D12B076ADD9EF9B2105D6D6 /* DTLinkButton.m in Sources */ = {isa = PBXBuildFile; fileRef = E9ACB5A0A0AB3C727CEFEE7D /* DTLinkButton.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 6D1BA9DEA803AD732BC520C1 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = C81BB5A80B9CDD86C332157A /* UIButton+AFNetworking.m */; }; + 6D3C077CE557A5159838A720 /* SDWebImageCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = 2931671231F2BF356C7EAEAC /* SDWebImageCompat.h */; }; + 6E1B015496786B6F6BECD649 /* SBJson4StreamWriterState.m in Sources */ = {isa = PBXBuildFile; fileRef = 09EAFDAD063EDC00096089DB /* SBJson4StreamWriterState.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 6E8CB74C97B4358B4A14FA53 /* NSString+DTFormatNumbers.m in Sources */ = {isa = PBXBuildFile; fileRef = E3CA9A0D1022C0680DD14622 /* NSString+DTFormatNumbers.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 6EDBF0DABB6635A9974D4707 /* DTCSSStylesheet.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A2144565633C90B3C594FED /* DTCSSStylesheet.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 6F0101FEEAF8EEAFA8AAA3DD /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AC757925F47F6FF993302F2 /* UIImageView+HighlightedWebCache.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 6F14BCD3CD08AA94874A79D5 /* NSValueTransformer+MTLPredefinedTransformerAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = F582FC8D28A00099572FBB6E /* NSValueTransformer+MTLPredefinedTransformerAdditions.h */; }; + 6F8C0549CE0E74983DEB2525 /* DTLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A1335E83B09E0425099AB9E /* DTLog.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 6FB17487DBD6EBEC72C5147B /* SBJson4StreamParserState.h in Headers */ = {isa = PBXBuildFile; fileRef = C1A3480ED022780B4482E351 /* SBJson4StreamParserState.h */; }; + 71264C5CD1A8852E56E3F88F /* DTImageTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 4ED3BBB64F7701D817161278 /* DTImageTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 713D0BE35B2F72D703DB903A /* NSArray+DTError.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F42516FEA63D4DC3288C7DE /* NSArray+DTError.h */; }; + 74A6D03D803FA63BDC52419B /* DTImageTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = CFFCBAA6E08FE2EC737991CC /* DTImageTextAttachment.h */; }; + 74ACEBE8FC6D5F215150EAEB /* MTLJSONAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0DBF7BFED66DEA608EE98F79 /* MTLJSONAdapter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 759B24C40B042D2318608AC4 /* SBJson4Parser.h in Headers */ = {isa = PBXBuildFile; fileRef = 4750630460C4BF10955C50F5 /* SBJson4Parser.h */; }; + 76A8AF44494649F2C9921273 /* DTHTMLParserTextNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 05ED87CBC8DC6A907A84AD2A /* DTHTMLParserTextNode.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 781C990028B2EBDF93F75AD7 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DEB70690586C98E99677DF6 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */; }; + 7A439BD4DA6EFE2F4F61EB63 /* NSAttributedString+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = 533693CAE3A5D5A92C7CA2B7 /* NSAttributedString+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 7B076D2975F1D808E454CF8E /* UIView+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = 36F28FF07FEBCD953A6BF6AF /* UIView+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 7B712A885E3AC50A4797B179 /* NSURL+DTAppLinks.m in Sources */ = {isa = PBXBuildFile; fileRef = AEE0406A9A825584A0F6B860 /* NSURL+DTAppLinks.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 7C3CB77A3ECF1A4BC6059E79 /* EXTScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 7769048F02C4CA9F2EDF56FB /* EXTScope.h */; }; + 7CA5F3C41A1F4A4AD8BC1FBC /* DTAttributedTextCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 6EE3DD7AA93E5C3165EADD31 /* DTAttributedTextCell.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 7D64ADF8423BB40EF10D4ADF /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 30EF123E79EC9F1A86F2FB80 /* MJRefreshGifHeader.m */; }; + 7E2B06EBB71E73F76B965207 /* DTCoreTextParagraphStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BDFB7E4C0AAC71A08B0A6CC /* DTCoreTextParagraphStyle.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 7E61F86C0DF0B103B9EDFABF /* DTHTMLAttributedStringBuilder.h in Headers */ = {isa = PBXBuildFile; fileRef = 02284A8207F847282436F7AD /* DTHTMLAttributedStringBuilder.h */; }; + 7E63FB57AFE221521DBC1166 /* UIImage+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = C55CF69840949A3B9DB21983 /* UIImage+DTFoundation.h */; }; + 7FD058B6B5B638759C5FE085 /* UIImageView+WebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = B26EF2E1F5791671372428C1 /* UIImageView+WebCache.h */; }; + 80B421C7C030F68C530E30CB /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = BC02B7E0A617A2C3EE555756 /* MJRefreshFooter.h */; }; + 8181C1F6C24D1FCF7528E66B /* DTFolderMonitor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CD381B22C0C351795FA961B /* DTFolderMonitor.h */; }; + 8189EAE9B094C139F07B5E31 /* DTAttributedTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F0CC372E47C461FBE2EB7486 /* DTAttributedTextView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 848E6515BC358ABCB0B89350 /* NSMutableAttributedString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = 9930956F5D90FA1EBCBB3A48 /* NSMutableAttributedString+HTML.h */; }; + 86AF24B70739E2E410382A24 /* DTAttributedTextContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 58AB7EDBD11A4580DE48181E /* DTAttributedTextContentView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 86EE283DDB3EF027EBBEF98D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + 8737D39FC757F48505E97ADC /* DTColor+Compatibility.m in Sources */ = {isa = PBXBuildFile; fileRef = BB4F7C51E8746A317D228300 /* DTColor+Compatibility.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 874457D74458E84DA62E07FD /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = B2BE44C2BD5CFBD496BADAF2 /* UIImageView+AFNetworking.h */; }; + 87693E4DDCFD61DC4FE03752 /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 1FAA7411D6D971B73B99F6D3 /* UIProgressView+AFNetworking.m */; }; + 889D550F5F71A9830B7E8390 /* MJRefreshLegendHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = EB72821D64E431973F02A38F /* MJRefreshLegendHeader.h */; }; + 8916EC3A47FE50159DAC7D6E /* DTCoreTextConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = CD097ED93E1C276A7FA9430E /* DTCoreTextConstants.h */; }; + 8A44333E6C1AD1939F353AFF /* AFHTTPRequestOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = ACBD88BFCFCB486595242A16 /* AFHTTPRequestOperation.h */; }; + 8A5510C98A8314548E449EA7 /* NSDictionary+MTLManipulationAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 272D39690151F2016FF485C2 /* NSDictionary+MTLManipulationAdditions.h */; }; + 8AD1D251EA2B8F7410EEBB3F /* DTSmartPagingScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = D7D7A0CB50404353CCE42F15 /* DTSmartPagingScrollView.h */; }; + 8AFFF954971550F4B9A3C48E /* MTLValueTransformer.m in Sources */ = {isa = PBXBuildFile; fileRef = 1198240109E0FF9B776C4A37 /* MTLValueTransformer.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 8C51B09BD3256961EF3080D9 /* NSString+DTPaths.m in Sources */ = {isa = PBXBuildFile; fileRef = 0546F3C3A3284709F421382A /* NSString+DTPaths.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 8D3424918AC53F8CB0290DC1 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = F2551C1ACF348C6C30F3CD19 /* MJRefresh.h */; }; + 8DC366B059E33BABA6099AE2 /* DTImage+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = B4E0100EC49E294FB3E6DD7A /* DTImage+HTML.h */; }; + 8DFDD3ECF2CC01CC5BDCEE9D /* DTCoreTextFontDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = BBAB2C0DE7B01A6D434F48BD /* DTCoreTextFontDescriptor.h */; }; + 8F575E11771A529DCF0FE05D /* MJRefreshGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 87F422B2E0D48E37DAC11B50 /* MJRefreshGifFooter.m */; }; + 8F75C6859C046A3212ED3F4D /* DTDictationPlaceholderTextAttachment.h in Headers */ = {isa = PBXBuildFile; fileRef = AF34AB79D5153D4F27D6D084 /* DTDictationPlaceholderTextAttachment.h */; }; + 90039C5C2F0C0A40DD688913 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = EE8565A6AA74E73D16AA06A7 /* AFURLResponseSerialization.m */; }; + 9022D1E464FFC78664C3FDA0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + 9174116757AEC26D0E6CF78C /* DTHTMLWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = F0D499BD4214ECB217034F23 /* DTHTMLWriter.h */; }; + 91DA1F9D2E84A4178269769D /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 7EF4F9B8E1DE4E5EC5ADEADA /* UIImageView+AFNetworking.m */; }; + 93784C2C01C15630CFC61D83 /* DTAttributedLabel.m in Sources */ = {isa = PBXBuildFile; fileRef = 622F4B3E7D7A4AECD2871F39 /* DTAttributedLabel.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 93CF95030A57C4D95B906FD8 /* DTPieProgressIndicator.h in Headers */ = {isa = PBXBuildFile; fileRef = C988330BF193EC2D1790D01E /* DTPieProgressIndicator.h */; }; + 94053C0235D66070913E143E /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = 97B8EB9DDB15EC1FE96AD6FC /* SDWebImageDownloader.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 94B3F003C98A7E89F27C14BF /* DTAttributedTextContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 24549194CFAFFDC9DDED662B /* DTAttributedTextContentView.h */; }; + 95E1EDEF69C715F30E73EEC8 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + 960DC808B718C5A17E234BDD /* Pods-MBProgressHUD-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 51F816C7B2A3D31378A7677E /* Pods-MBProgressHUD-dummy.m */; }; + 96E08C7FF522874F7BC99D16 /* NSFileManager+Godzippa.h in Headers */ = {isa = PBXBuildFile; fileRef = CD5024FC7D47DD48B5ED9D8D /* NSFileManager+Godzippa.h */; }; + 96F2B34DECCF317CDCD62D0F /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = F48BD34D52AB4DDAFF22F360 /* MJRefreshHeader.h */; }; + 9788817922F0E81CA3356114 /* NSMutableAttributedString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 735C2D06848839B5B1750A09 /* NSMutableAttributedString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 982F61ACA8240D98559EF20C /* MTLModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C9D338DCF7BBE8E416037CF6 /* MTLModel.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 99392309B94CE18346DA0EA8 /* NSArray+DTError.m in Sources */ = {isa = PBXBuildFile; fileRef = FBF4D2435D4D21F020CB5127 /* NSArray+DTError.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 995D2ACC6676C7A21A9785A1 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + 99EC58284F82D2E9157DABD2 /* SDWebImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = A4297449CDDF54794845DE0B /* SDWebImageDownloader.h */; }; + 9A9D9A340943B30B067EE1B0 /* DTDictationPlaceholderTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = AF6FAB1F9B36456C522A1AE0 /* DTDictationPlaceholderTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 9AEAEC552D6893233463DFD1 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BA13D397123DD418D9A5557 /* AFSecurityPolicy.m */; }; + 9B47C7363665EC5AB1EBCF13 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = F3298950D38367B5B0B857B9 /* UIView+MJExtension.m */; }; + 9C0D830AA8DCB895AFEDD1C6 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D0113E9980E365E7C47DF37E /* CoreText.framework */; }; + 9C17C9964E4DC070FD248AB2 /* NSString+DTURLEncoding.h in Headers */ = {isa = PBXBuildFile; fileRef = E12A9F77537BE752605BE4FB /* NSString+DTURLEncoding.h */; }; + 9C6D4BFC5E92F7CEFD61F772 /* NSObject+MTLComparisonAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = CAB0A45839DC7DB4DE3ED48D /* NSObject+MTLComparisonAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 9C8515C72E37C7405E0E9028 /* NSAttributedString+DTCoreText.h in Headers */ = {isa = PBXBuildFile; fileRef = EC01E94AC6E9783C2C51CA03 /* NSAttributedString+DTCoreText.h */; }; + 9D2BAA3444ECCF844DCC2D0E /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B84601644BABDDB5EF4E1742 /* UIImageView+WebCache.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 9D98773DFC27852056B73E3A /* SecureUDID.h in Headers */ = {isa = PBXBuildFile; fileRef = C072F31E804C6721B44E54F2 /* SecureUDID.h */; }; + 9DDF74DB7D7E5E8EF07BA04F /* DTImage+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = EEBAAD0C74D269B0751069C8 /* DTImage+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + 9EA6F696EA65ED8F56DFF108 /* UIAlertView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 9EAF55F3F29A2DC5F6D0D400 /* UIAlertView+AFNetworking.m */; }; + 9F3924124111D61A4BA8685C /* Pods-EGOCache-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 10AD45869DE0C509621F9E38 /* Pods-EGOCache-dummy.m */; }; + 9FDAFAA00821E2363F415822 /* DTTextAttachmentHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F12284C6293A7179D9BBF6A /* DTTextAttachmentHTMLElement.h */; }; + A0B8C20FD2206CA9A59B5010 /* DTAttributedTextCell.h in Headers */ = {isa = PBXBuildFile; fileRef = B93673E4E9B9583E3B0A0B12 /* DTAttributedTextCell.h */; }; + A0C69FEB13FEBF23970F0426 /* DTDictationPlaceholderView.h in Headers */ = {isa = PBXBuildFile; fileRef = E985496411C338BFFF72DC59 /* DTDictationPlaceholderView.h */; }; + A0CB67B24A241A2D279DDF5C /* Mantle.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CB61A9012F7783015E18B7B /* Mantle.h */; }; + A21C6B68A0B246CA9CC03108 /* Pods-SecureUDID-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57CBAECC87D95F8EDCB43392 /* Pods-SecureUDID-dummy.m */; }; + A2676B4ABFF77B64F6E91ED0 /* Pods-MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4E0118791F34CD014CF9579 /* Pods-MJRefresh-dummy.m */; }; + A3CA2D7609359CBBD2DE525F /* DTHTMLParserNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A1934AD2A92C4DDA7871D006 /* DTHTMLParserNode.h */; }; + A4A0304CC5B6B2198E42C817 /* MJRefreshGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 905830A7C598494CA2F91F4C /* MJRefreshGifFooter.h */; }; + A4FCDA6E8A73132DE1697C8C /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9CDF2BBFC944D7EC9ED7E876 /* SystemConfiguration.framework */; }; + A561A3BE1A8675BF0FFF7668 /* Pods-Mantle-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 976E8ED367ED5D8851AFBD7F /* Pods-Mantle-dummy.m */; }; + A56BFA99D1F1F6A6AC80DBC3 /* SBJson4StreamParserState.m in Sources */ = {isa = PBXBuildFile; fileRef = D9A3FE59729AC5FB74AF9D67 /* SBJson4StreamParserState.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + A77FFAB16B99174E3A942137 /* Reachability.h in Headers */ = {isa = PBXBuildFile; fileRef = C99E56F7134A39AC6037E2E3 /* Reachability.h */; }; + A813C4B472CD834C8826EC9D /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75CADB59E864B3C4B66EE1C2 /* ImageIO.framework */; }; + A833C2A3D7B70FB37A4E46DC /* DTVideoTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = CB44F38D8EB7A12F257CF13C /* DTVideoTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + A878E4C6E4373E80F5D13660 /* MediaPlayer.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = B4DD78557F2221312508EA29 /* MediaPlayer.framework */; }; + A88E1FB837D2987A7D105B1A /* DTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = 155778E11B2A513DDDAEF986 /* DTLog.h */; }; + A8A8688A740DB6DA56EF6DB5 /* NSData+Godzippa.m in Sources */ = {isa = PBXBuildFile; fileRef = 14E0B24681D42846B0CD9A3B /* NSData+Godzippa.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + A92C33E5C970F02348C70FDA /* SBJson4.h in Headers */ = {isa = PBXBuildFile; fileRef = F2A3D38884C41197378682EC /* SBJson4.h */; }; + A9AA44A38FC6A113DBFC01C7 /* NSDictionary+DTError.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F6688E0FD46351AE98ED8E7 /* NSDictionary+DTError.h */; }; + A9D7A4E61D9132A38B88240A /* SBJson4StreamParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 09B84FF607C97FBFEA9CEE6F /* SBJson4StreamParser.h */; }; + AA776D7C0C90F33CD7D327E3 /* NSDictionary+DTError.m in Sources */ = {isa = PBXBuildFile; fileRef = 7177B72C59C85460D5052B06 /* NSDictionary+DTError.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + AAD748AA4CF2E3319D3D082D /* NSURL+DTAppLinks.h in Headers */ = {isa = PBXBuildFile; fileRef = 49732D6B3FAC6FA975BA8B57 /* NSURL+DTAppLinks.h */; }; + AC27ED2936703D4B82F70D64 /* SBJson4StreamWriterState.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BD0FA1310754768903BD03 /* SBJson4StreamWriterState.h */; }; + AD390BCEA9D792C3957FFAF8 /* NSMutableString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 23308DE32C980BD290D12A4B /* NSMutableString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + ADD401B6FB058141AA765121 /* DTHTMLParser.h in Headers */ = {isa = PBXBuildFile; fileRef = E06A0E4811BBE705C4CCACAB /* DTHTMLParser.h */; }; + ADED2C0F4CC498E8BAFDF335 /* DTCoreTextFontCollection.m in Sources */ = {isa = PBXBuildFile; fileRef = 96B8523A07E3B9C83A16BC62 /* DTCoreTextFontCollection.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + AF4C931E95064EFE6898E4B2 /* NSURL+DTComparing.m in Sources */ = {isa = PBXBuildFile; fileRef = 9363BC239F7CCC502F0109FD /* NSURL+DTComparing.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + AF803D64E061565CAF4E16A1 /* MTLModel.h in Headers */ = {isa = PBXBuildFile; fileRef = 8831276CD46A5B60D74C2BAC /* MTLModel.h */; }; + B09E10479A8A43F7EE0CF8FF /* DTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9520C2A2987FE0DFD1CC4197 /* DTVersion.h */; }; + B19980DFE118C678022EE1B4 /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 1803F7DA4A6EF54918CD8DAB /* UIView+MJExtension.h */; }; + B242B3A45F719245D03D7C39 /* DTCoreTextParagraphStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = F657B550373040E1E6477D64 /* DTCoreTextParagraphStyle.h */; }; + B299EE3F4930338CF702A3A1 /* DTObjectTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = E8A843E0157B0F0CB285E87E /* DTObjectTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + B2A8559D66257E3A2975F635 /* DTCoreTextGlyphRun.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADDF9071F468C9B000996C8 /* DTCoreTextGlyphRun.h */; }; + B2BA58000A6B0F2FB85768F4 /* DTSmartPagingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = C9CEC52E2C906AE8F6B24AF0 /* DTSmartPagingScrollView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + B370B3BE0B0230D96361A967 /* DTCoreTextMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = ACA554A92D0F17480F387916 /* DTCoreTextMacros.h */; }; + B415B86319633DFAB02E2298 /* STableViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C66CCE611914E181AD7F1F5 /* STableViewController.h */; }; + B4490C1535367E6529BCA8E0 /* UIWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 43E49596A789FBF422F82CB3 /* UIWebView+AFNetworking.h */; }; + B4FB5B03E656C8109381638D /* DTLazyImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = F69B519C120CB30E30FF66B2 /* DTLazyImageView.h */; }; + B5AB8DB17846A2138A288704 /* DTCoreTextLayoutFrame+Cursor.m in Sources */ = {isa = PBXBuildFile; fileRef = 1569D676E63A0FD1BC54FB04 /* DTCoreTextLayoutFrame+Cursor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + B5CF28826926F9B920F476D2 /* DTHorizontalRuleHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 9268DFFDA72C1B913AEBDAC9 /* DTHorizontalRuleHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + B5E86D0F95798788DC35F949 /* NSString+DTPaths.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F72F40D140F09B394AAEE86 /* NSString+DTPaths.h */; }; + B63584FC9C032F8408AE5C78 /* DTTiledLayerWithoutFade.h in Headers */ = {isa = PBXBuildFile; fileRef = 596D48C47A75A30F8F476EF7 /* DTTiledLayerWithoutFade.h */; }; + B8CABA753182C060BFA2183F /* NSString+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 5E2A76CCC4F20D18844F698C /* NSString+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + B9AFBA8CD2AB1E9C44D38193 /* DTBreakHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 306DD73F546D8F8A8EABA570 /* DTBreakHTMLElement.h */; }; + BA5A2568F1D20CD7514550A7 /* DTStylesheetHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = AD7C7DDA0AE1AFD4F00970DA /* DTStylesheetHTMLElement.h */; }; + BBC629713AEAD9C359329092 /* DTBase64Coding.h in Headers */ = {isa = PBXBuildFile; fileRef = 34E2230D1DF25D9C76EEE3BA /* DTBase64Coding.h */; }; + BD4EEE83BE46779F584C7CC7 /* NSFileWrapper+DTCopying.m in Sources */ = {isa = PBXBuildFile; fileRef = 5AC655EBA4D1C6760F814C3F /* NSFileWrapper+DTCopying.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + BDDB77AF9A58D1B79014004D /* DTTextAttachmentHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = F50BE35C5313CE948435A1BE /* DTTextAttachmentHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + BDF2155F432F8BD9411CD9F8 /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C9CE7FF98D4D9258B432D6A /* SDWebImagePrefetcher.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + BDF22929F9D18A2FCC0E80A0 /* NSAttributedStringRunDelegates.h in Headers */ = {isa = PBXBuildFile; fileRef = AB2F60F681150993334D0AF7 /* NSAttributedStringRunDelegates.h */; }; + BE0CBC7BE3C7FE02DE8C3DC7 /* DTAsyncFileDeleter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC05C5B2AC470186E038E3F /* DTAsyncFileDeleter.h */; }; + BE11DC3A17A6DFC45300239C /* DTAttributedTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 0111CBCAA13EC54A465F0746 /* DTAttributedTextView.h */; }; + BE38EC0AE62924DD67E9FE1C /* DTTiledLayerWithoutFade.m in Sources */ = {isa = PBXBuildFile; fileRef = 99BB5CAD5850C8794A82F246 /* DTTiledLayerWithoutFade.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + C0596E0610B32053A42E3BCD /* DTAnchorHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = AB0C595492DC29BD26231AFF /* DTAnchorHTMLElement.h */; }; + C091864FBB955E27F86D3F85 /* DTHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 37533697C6A34D1B83B33C24 /* DTHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + C0C1AEC45B65D87312750F35 /* UIWebView+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = B0A3460A7A2FDD3392A03A11 /* UIWebView+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + C1C69BE3D60B1A2AE6C5718C /* DTFoundationConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = DD6A78B0D9A58DFC5680AEF5 /* DTFoundationConstants.h */; }; + C235636402245C5EE9811447 /* DTCoreTextLayouter.m in Sources */ = {isa = PBXBuildFile; fileRef = 4675B125EF5ADBB90CEA3374 /* DTCoreTextLayouter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + C2CC62434A97B8C789A52755 /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = D5C54EE1B30EC338D3303861 /* UIActivityIndicatorView+AFNetworking.h */; }; + C2D87BDA5A4BE1128FED5388 /* UIImage+MultiFormat.h in Headers */ = {isa = PBXBuildFile; fileRef = DF3A183ACE7AA9CF9B0D51C3 /* UIImage+MultiFormat.h */; }; + C33777998D03C1943CA5729F /* Pods-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 070F3F5B859156F2E1935C36 /* Pods-dummy.m */; }; + C3666EC3988C0685E339F926 /* DTCoreTextFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 4AC683F0D93BD0059752887D /* DTCoreTextFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + C3880D9F121CBB124377A26C /* MTLJSONAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 02267995D166E83411B7FA6E /* MTLJSONAdapter.h */; }; + C3F00385920B4655024620E7 /* DTIframeTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = 42F04B328F71757BD504E292 /* DTIframeTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + C49951E6B3BEE0D50DE44200 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A1B9DA4F4DB2E5878765292A /* AFNetworkActivityIndicatorManager.h */; }; + C6223C9399648AFB82BE760E /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20C1566CF6ACC33C01D5FD71 /* QuartzCore.framework */; }; + C628730FA336FA7325BB0E9C /* DTCoreTextGlyphRun.m in Sources */ = {isa = PBXBuildFile; fileRef = F090452F16DD6E56998D85F1 /* DTCoreTextGlyphRun.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + C6D22327B28AB9680C0F9DE3 /* DTTextAttachment.m in Sources */ = {isa = PBXBuildFile; fileRef = EBC22545F6D32A951618D5CE /* DTTextAttachment.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + C6E8E09246A2749A956187B4 /* DTCoreGraphicsUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = ECBCCCD797D5A2DC1FEF0C9E /* DTCoreGraphicsUtils.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + C7012A0C970F247FA61DAB11 /* SDWebImagePrefetcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FE4C73D317A76FA9C7AE4B2 /* SDWebImagePrefetcher.h */; }; + C8101DF5EB0D1F6C7CB8E527 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F7C8832258AE8D64AD6EB22 /* AFHTTPSessionManager.h */; }; + C85DA5C7C81D45D0D891C657 /* NSCoder+DTCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = D78D447FDC3C650ACDBF8768 /* NSCoder+DTCompatibility.h */; }; + C8AD6D29FA096FD12F747DDC /* NSAttributedString+SmallCaps.m in Sources */ = {isa = PBXBuildFile; fileRef = D982A5993F423F2602770DD7 /* NSAttributedString+SmallCaps.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + C8EC2777DAF6CBD59342E191 /* NSURL+DTComparing.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CF9B41C27A9903229B4D678 /* NSURL+DTComparing.h */; }; + CAF5189BCDA0A6BBE9B232F4 /* Pods-SBJson-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8DB836771DC16F4553F6187C /* Pods-SBJson-dummy.m */; }; + CB679A67581D7F5E8E844983 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20C1566CF6ACC33C01D5FD71 /* QuartzCore.framework */; }; + CBBBBF0C2A6E70025BEC8C04 /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 799A3F011EE9572BE76485F5 /* UIButton+AFNetworking.h */; }; + CBD0AA6E6D10C4235B9AE15C /* NSMutableString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = A7DD0CD7ACA9C39AC1571612 /* NSMutableString+HTML.h */; }; + CC05D3F5473B93B70829B099 /* NSScanner+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EDF560E4F5DC163CFD3BCD3 /* NSScanner+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + CD9837AE41A628CDF013036D /* SDWebImageOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 64BD8CA15822F6A5D7114EE5 /* SDWebImageOperation.h */; }; + CFDEA7BADEE329C1A1A1EBB0 /* NSCharacterSet+HTML.m in Sources */ = {isa = PBXBuildFile; fileRef = CA3FD3F948E17C33EBE4FEEA /* NSCharacterSet+HTML.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + D03BF1D90B0CF2294761BE2E /* UIImageView+HighlightedWebCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 26C9F48A9F0BC01C9500E750 /* UIImageView+HighlightedWebCache.h */; }; + D0C42B5BF5A6FA191E4C5E9A /* DTCoreTextFontCollection.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A482D8F45EBE17D716551A2 /* DTCoreTextFontCollection.h */; }; + D0E72496EE93035611EE166A /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75CADB59E864B3C4B66EE1C2 /* ImageIO.framework */; }; + D1513F5C50DC7A175A2469CE /* NSString+HTML.h in Headers */ = {isa = PBXBuildFile; fileRef = CC9008DF746F6AE684082BCB /* NSString+HTML.h */; }; + D1B7A9D9D013845DDDE157AF /* NSError+MTLModelException.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E9CAEF7849C7310918D8E32 /* NSError+MTLModelException.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + D1F439C75EC1CFFF9A2DD88D /* DTListItemHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 0414DCA4C8A0D9FEFA8D0CB2 /* DTListItemHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + D2ED567FF654C0C51AF05599 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C0CF15C9EC35C2E7049DE73 /* AFURLSessionManager.h */; }; + D38EB84DF2438FE89F1DDE05 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + D3A3C2E147CEEFBB7FEB74EF /* DTHTMLParser.m in Sources */ = {isa = PBXBuildFile; fileRef = 54154F8BD9FC16F347D72760 /* DTHTMLParser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + D4A103D081F2189CBCC9AA77 /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 11123DE0038FC1BD0EB81C7B /* UIProgressView+AFNetworking.h */; }; + D536F373B3F30C87AEFC268D /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = 53816A84E2AE1459E9514BC5 /* UIImage+GIF.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + D5F1C7ECCF73943D6CA58CD6 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 365283556A4FFE038B8368A7 /* UIKit+AFNetworking.h */; }; + D67BEA5E08AF4AD5987737D4 /* NSMutableArray+DTMoving.h in Headers */ = {isa = PBXBuildFile; fileRef = 38824C80AA03F622FF5609CD /* NSMutableArray+DTMoving.h */; }; + D80BE4E29F69553549A0713E /* Pods-DTCoreText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F114083C13D15B1EB627A350 /* Pods-DTCoreText-dummy.m */; }; + D860516C72317BD81E11CEB5 /* DTBlockFunctions.m in Sources */ = {isa = PBXBuildFile; fileRef = 811C72238540E10D821E509F /* DTBlockFunctions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + D8BF1DF7C130E466A3D81125 /* DTCoreTextLayoutFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 787874207266EB6FAABD051A /* DTCoreTextLayoutFrame.h */; }; + D9A42AA8AC78B29F5909F2EF /* AFHTTPRequestOperationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A049A3C50CE466C4E012A2E /* AFHTTPRequestOperationManager.m */; }; + D9AA4784C032E0D998543045 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + D9B241CC9D4C1902E629A74C /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 55E04A8B77AF2CE09FB706A1 /* Security.framework */; }; + DAB2571C793D060D2245BA6D /* DTListItemHTMLElement.h in Headers */ = {isa = PBXBuildFile; fileRef = 7759495D676C2716B5C752A2 /* DTListItemHTMLElement.h */; }; + DC4D77D8D89DD39056EDF450 /* EXTRuntimeExtensions.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AEE9E5C80C90AF637A41B1D /* EXTRuntimeExtensions.h */; }; + DC639029D855700349F85E09 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = 337FFFD4E19E5FEE3B22903C /* AFURLRequestSerialization.m */; }; + DE032459E92803F21DAF6177 /* DTHTMLWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = 824F3205D3AFC48DF86294BD /* DTHTMLWriter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + DE1BFFAE508A2E2B26A7BE09 /* DTCoreTextFontDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 09E8DECB7BF75BA0244B2071 /* DTCoreTextFontDescriptor.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + DE6D56467B4F6118F21DCBB7 /* DTStylesheetHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = 3E978A5700527A930D7D1B6C /* DTStylesheetHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + DECFDFCCAC554EAE56A2A9C2 /* UIApplication+DTNetworkActivity.m in Sources */ = {isa = PBXBuildFile; fileRef = AE00973AB256DF3A0D0BA60F /* UIApplication+DTNetworkActivity.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + DEFBA23CF6F4EF128E90E531 /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 2089825488BA852B53109B98 /* SDWebImageCompat.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + E074600F4370E1104CD8D06F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + E118C1A6B57D45A3566D2579 /* NSObject+MTLComparisonAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = 8312AECB034C2BC0914BFAAF /* NSObject+MTLComparisonAdditions.h */; }; + E169462BDEA825EC2FFA2818 /* DTFoundationConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B6C1077FF5B5CE830E38ED8 /* DTFoundationConstants.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + E1EF224D6F3F7C9ECD7A0354 /* SBJson4StreamTokeniser.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F6BBE8AF6052FBE8F7598DD /* SBJson4StreamTokeniser.h */; }; + E22A0D18EFBF2CF39F5B261F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + E41FB029EF2930643C3DD2F5 /* DTColor+Compatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0F5FB33E256EFCE938303C /* DTColor+Compatibility.h */; }; + E4A708ED5E6882982158D569 /* SecureUDID.m in Sources */ = {isa = PBXBuildFile; fileRef = 61383BAC381EA9F53764205F /* SecureUDID.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; }; + E67300C88742A4B681315996 /* ImageIO.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75CADB59E864B3C4B66EE1C2 /* ImageIO.framework */; }; + E708A811779C19D6AAA55A8E /* NSString+DTFormatNumbers.h in Headers */ = {isa = PBXBuildFile; fileRef = F9F7F21660EEA731250022FB /* NSString+DTFormatNumbers.h */; }; + E7291F024C531A2A9C013429 /* DTLazyImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = 37CAD4D7A0AEA3B3C94B73BE /* DTLazyImageView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + E731054ECE70017FBA55AA43 /* UIApplication+DTNetworkActivity.h in Headers */ = {isa = PBXBuildFile; fileRef = A4476FAA3F466E24375C066C /* UIApplication+DTNetworkActivity.h */; }; + E732DB06754EA53254B94735 /* DTHTMLAttributedStringBuilder.m in Sources */ = {isa = PBXBuildFile; fileRef = 319687905BA188E79179D100 /* DTHTMLAttributedStringBuilder.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + E82B8C9DE1D60F403B63D8FE /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = 28542C81679EC1F5BE13B85D /* MBProgressHUD.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + E8A28A4DFDA1422FD74336B6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + E980727C56C02EF4FD745263 /* DTWebVideoView.m in Sources */ = {isa = PBXBuildFile; fileRef = AF72C372F5483D431A4FF1A7 /* DTWebVideoView.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + EA09C1BD4F83E0CFE02B214C /* DTActivityTitleView.h in Headers */ = {isa = PBXBuildFile; fileRef = 98A1A4FA156A15C63ED19D69 /* DTActivityTitleView.h */; }; + ED1F77755C992D872C44378A /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFD752A2ADB6A2F75E062F9 /* AFNetworkReachabilityManager.h */; }; + ED603858C05FB7A9F4C8A998 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = BAD193C4FADB5899C6C15C32 /* AFNetworkActivityIndicatorManager.m */; }; + EDB4EAEA8C8CA7582BE6524F /* DTCoreTextLayoutLine.m in Sources */ = {isa = PBXBuildFile; fileRef = 6FCD29A7ED59ACB691B908DD /* DTCoreTextLayoutLine.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + EDCDAD0297C93F420DB0A137 /* SBJson4StreamWriter.m in Sources */ = {isa = PBXBuildFile; fileRef = A652D0BB9B4989A790D1C56C /* SBJson4StreamWriter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + EE3D8069B5FFFB74BDBDE5A6 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = A5204F4E2CF3C362FF72EF76 /* Reachability.m */; }; + EF0B1DCEC8F2C6569C9E2793 /* DTCSSListStyle.m in Sources */ = {isa = PBXBuildFile; fileRef = 910112F4F3EB875F4AA0D908 /* DTCSSListStyle.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + EF51ED77B13ABAA7CB745CFA /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = A3A3790BFF503435831271AC /* MJRefreshComponent.m */; }; + EF56D323C7DE78EA9D735BE2 /* NSString+CSS.m in Sources */ = {isa = PBXBuildFile; fileRef = 234F1B433F201823EDFA1E6E /* NSString+CSS.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + EF6A510848C75360AF7E2C2E /* EXTKeyPathCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = E682227BB5148A457619A3B8 /* EXTKeyPathCoding.h */; }; + F0CA0C18E7FB5C661C72F124 /* metamacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 286208A4C4A2A5532D103394 /* metamacros.h */; }; + F24C8AF54568D6BEDD06A674 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D67FE333691046E4CB8302C /* MJRefreshHeader.m */; }; + F2A0662D1C975B86473CABD8 /* MJRefreshLegendFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F785BCBA9B7F64378E76278 /* MJRefreshLegendFooter.h */; }; + F2A40A1202DB1216C90862A4 /* UIImage+DTFoundation.m in Sources */ = {isa = PBXBuildFile; fileRef = 016554F1D5DBD110C0A9FAF8 /* UIImage+DTFoundation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + F3E77CD28645D885900F45DC /* NSMutableArray+DTMoving.m in Sources */ = {isa = PBXBuildFile; fileRef = 0FFDB42E147E3F4AC3BD515A /* NSMutableArray+DTMoving.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + F434831BC75495A6AFF126D7 /* DTHTMLParserTextNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D200097579CFD9EDF1B9A1B3 /* DTHTMLParserTextNode.h */; }; + F48F5AC8407EDE9DDB80D39D /* DTCoreTextFunctions.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB5573320075200698C87D5 /* DTCoreTextFunctions.h */; }; + F541704588D0C5A8F61476F5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 9DD9C5A817433D789365FBBE /* Foundation.framework */; }; + F56A55B38E7F033348C55957 /* SDWebImageDownloaderOperation.h in Headers */ = {isa = PBXBuildFile; fileRef = 39293F16EE02408BB628602B /* SDWebImageDownloaderOperation.h */; }; + F5C8F6274B4C9131CFAA827F /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = 92DD137860918A2914D09FBE /* SDWebImageDownloaderOperation.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + F6060AD3D3D289C8F5E2E1E1 /* MTLModel+NSCoding.m in Sources */ = {isa = PBXBuildFile; fileRef = FD5081DE159AF8A6D580542B /* MTLModel+NSCoding.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + F6E1E04DED7418AC39859D77 /* DTLinkButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 843417D7C9BE78F634ED964E /* DTLinkButton.h */; }; + F7A4BFA846605A22CB40F48A /* EXTRuntimeExtensions.m in Sources */ = {isa = PBXBuildFile; fileRef = 0338FF159AEAE4FBAB5EA8DE /* EXTRuntimeExtensions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + F85CE8E45976C128A2058567 /* AFHTTPRequestOperationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BBD8CD798A9C6A959B2F9C /* AFHTTPRequestOperationManager.h */; }; + F8931DEA95BB8BC72F432430 /* DTBreakHTMLElement.m in Sources */ = {isa = PBXBuildFile; fileRef = A97975ECB669CF8B1BD1619F /* DTBreakHTMLElement.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + F91E1D6B1784B35C920BAD67 /* UIFont+DTCoreText.m in Sources */ = {isa = PBXBuildFile; fileRef = E5A4E4DF071DF4FCF2C16428 /* UIFont+DTCoreText.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + F9D9AFBB20E3D04BA9F40590 /* MTLManagedObjectAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = 19360A8F7BDBEE56A4499368 /* MTLManagedObjectAdapter.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + FA3D4208009A96348BA934ED /* SBJson4Parser.m in Sources */ = {isa = PBXBuildFile; fileRef = 10FEB6C385D0B97A813899C3 /* SBJson4Parser.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + FA624995017C8D9B99980ECD /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A0DCAD1855DE063C4F9EC83 /* UIRefreshControl+AFNetworking.m */; }; + FAEF7FA14CA99039F2C19349 /* NSArray+MTLManipulationAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = D82372A59C0AC80663B90CED /* NSArray+MTLManipulationAdditions.h */; }; + FB0C39EACA7A7231B83897E1 /* UIWebView+DTFoundation.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F710767E010692A479E81A8 /* UIWebView+DTFoundation.h */; }; + FB997B55BB092421A61123C2 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m in Sources */ = {isa = PBXBuildFile; fileRef = BFADDF1EED8DBE2B4E2421F9 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + FC0C6AA4307A7E5DB2E0E360 /* Pods-Reachability-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2CFB20E08EB3F41ABA5F07D0 /* Pods-Reachability-dummy.m */; }; + FC3A73111B3A0E2F3FD1DEB7 /* NSData+ImageContentType.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFCE43BFE1BE917E23BA9CE /* NSData+ImageContentType.h */; }; + FC7E0A71D43D6741387A9C00 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = FA171C7D85D5C1A68B9F4FF4 /* MJRefreshGifHeader.h */; }; + FCC315EC9B022BB58231B39D /* NSArray+MTLManipulationAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = AC65D72031F0470A4D32818C /* NSArray+MTLManipulationAdditions.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + FD8F1DFEE9A6D874F7BA6AB6 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = A8F04169908591C458261427 /* AFURLRequestSerialization.h */; }; + FF8CB0ABA29672C1B2634C2F /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = 4970587FBCB99927707153C7 /* SDWebImageDecoder.m */; settings = {COMPILER_FLAGS = "-DOS_OBJECT_USE_OBJC=0"; }; }; + FFB6EEBAEACCD9DC9896A0DC /* SBJson4Writer.h in Headers */ = {isa = PBXBuildFile; fileRef = 10E13906FA92C4B9CF1CEA8B /* SBJson4Writer.h */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 0EC09724DB940575706D2E79 /* PBXContainerItemProxy */ = { + 02AD8F81C589D205D29DB38C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; proxyType = 1; - remoteGlobalIDString = BAD0B2191D1913493C9537E6; - remoteInfo = "Pods-SecureUDID"; - }; - 32C045B7658EE42955421F2B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; - proxyType = 1; - remoteGlobalIDString = C28E1D77C35A229E98AC7E98; - remoteInfo = "Pods-DTCoreText"; - }; - 3724B37017AC35CA3D25E6AB /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 712FB3430DDB22E3783751FE; - remoteInfo = "Pods-Godzippa"; - }; - 3CCEC660E8E9CAEAB524B267 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; - proxyType = 1; - remoteGlobalIDString = AD146F7AD0657054CC81D382; - remoteInfo = "Pods-MBProgressHUD"; - }; - 54CCF98BEF5ED6513B5B4393 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 2AA81FBE6282912F6E7F14F3; - remoteInfo = "Pods-Reachability"; - }; - 623AD2572FDACFA294D7D027 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 547318FF46D8305D2B020EC1; - remoteInfo = "Pods-Mantle"; - }; - 65883AAA83F18D799A29B139 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 4EE670259BB59F0E2363AE87; + remoteGlobalIDString = 5516FCAE39C9ADCE88363669; remoteInfo = "Pods-EGOCache"; }; - 712487C8F70EF62492C34C61 /* PBXContainerItemProxy */ = { + 1739FF7FE3B342BF01E503F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; proxyType = 1; - remoteGlobalIDString = F99C14BA01B05EDB6951DD66; + remoteGlobalIDString = 7AAD259F4548BFB4D392BCE8; + remoteInfo = "Pods-DTFoundation"; + }; + 21120104EC635683D0B4D139 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; + proxyType = 1; + remoteGlobalIDString = 7AAD259F4548BFB4D392BCE8; + remoteInfo = "Pods-DTFoundation"; + }; + 38C945F1F6F6BC52E4CE665E /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; + proxyType = 1; + remoteGlobalIDString = 246007DB8F862E25EDD87EC3; remoteInfo = "Pods-SDWebImage"; }; - A5347C6388300C18253BB2CF /* PBXContainerItemProxy */ = { + 42261464B06A0BFF5FA815D5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; proxyType = 1; - remoteGlobalIDString = 2598E678E6856E0B69C04891; - remoteInfo = "Pods-DTFoundation"; + remoteGlobalIDString = F923B086C24D15CF9BD1F307; + remoteInfo = "Pods-DTCoreText"; }; - AFC0AD7DCA72425DB031E7CA /* PBXContainerItemProxy */ = { + 4B2A182BEEF28A31FB75187D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; proxyType = 1; - remoteGlobalIDString = 2598E678E6856E0B69C04891; - remoteInfo = "Pods-DTFoundation"; + remoteGlobalIDString = E4CE1DC0A990D7D49C2F3706; + remoteInfo = "Pods-MBProgressHUD"; }; - C5BC56DDF687C6869B31438F /* PBXContainerItemProxy */ = { + 4D573A2942931FFD1FAA6C61 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; proxyType = 1; - remoteGlobalIDString = 8F2162B4D278000EA5C539EC; - remoteInfo = "Pods-STableViewController"; + remoteGlobalIDString = 1C099AB0A914FF873E22025E; + remoteInfo = "Pods-SecureUDID"; }; - E155F501B2D12D978946DE26 /* PBXContainerItemProxy */ = { + 7EB8709494DC6FB10B44B3BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; proxyType = 1; - remoteGlobalIDString = F696F07F8E87A3481C192E0B; + remoteGlobalIDString = 5CE1CEB18F375654764E6BEE; + remoteInfo = "Pods-Mantle"; + }; + 8E25F8235F2571BBC5DA927B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; + proxyType = 1; + remoteGlobalIDString = 3407AC2ADE0234D6024C3225; + remoteInfo = "Pods-MJRefresh"; + }; + 9F99C0C33B43C989580614FC /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; + proxyType = 1; + remoteGlobalIDString = F564FE7FF3C0FFC99E487782; + remoteInfo = "Pods-Godzippa"; + }; + AB93C3A70AFE14B9D5948982 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; + proxyType = 1; + remoteGlobalIDString = EDBB7D54D3DBA6D222E66ACC; remoteInfo = "Pods-AFNetworking"; }; - F23DB52770F242E8D982B774 /* PBXContainerItemProxy */ = { + B2F393B569A411420FA898BE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 7DD05114B399CF5F8BBA9391 /* Project object */; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; proxyType = 1; - remoteGlobalIDString = C99BA687A28ABFF62F6E3F0D; + remoteGlobalIDString = F71420DF9662B503D8ACFF36; + remoteInfo = "Pods-Reachability"; + }; + B71AED8C508841B62163A219 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; + proxyType = 1; + remoteGlobalIDString = 71A4FA4DD2C39B010FEF1F64; + remoteInfo = "Pods-STableViewController"; + }; + FE0CECC3D1513298672661F4 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = 90BC916F6B727ED9575295CB /* Project object */; + proxyType = 1; + remoteGlobalIDString = D4CB5066DD4B9FA1102C148C; remoteInfo = "Pods-SBJson"; }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 015536558FDF35FA84CDD5E0 /* DTAnimatedGIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAnimatedGIF.h; path = Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.h; sourceTree = ""; }; - 0170E263EEA87FC1A556A6AB /* NSString+DTPaths.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTPaths.h"; path = "Core/Source/NSString+DTPaths.h"; sourceTree = ""; }; - 01FE47E9B3A87B8D20E25ECE /* libPods-Mantle.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Mantle.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 0210892821128789322E792B /* metamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metamacros.h; path = Mantle/extobjc/metamacros.h; sourceTree = ""; }; - 02A0577B565A1BDA867DFA0B /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; - 0320712F0F4CDA7D7098351F /* DTAccessibilityElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAccessibilityElement.h; path = Core/Source/DTAccessibilityElement.h; sourceTree = ""; }; - 0417D34EA6D3F42B78A3D595 /* Pods-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-acknowledgements.plist"; sourceTree = ""; }; - 047BC0888E4D50C8B8700A6C /* SBJson4StreamParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamParser.h; path = src/main/objc/SBJson4StreamParser.h; sourceTree = ""; }; - 04ED898C2ECD35BF231AF596 /* NSAttributedString+SmallCaps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+SmallCaps.h"; path = "Core/Source/NSAttributedString+SmallCaps.h"; sourceTree = ""; }; - 05750AC4ADB266FCDE69E91C /* Pods-EGOCache-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-EGOCache-dummy.m"; sourceTree = ""; }; - 0621301F98A3CAAC9F12D049 /* UIApplication+DTNetworkActivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+DTNetworkActivity.m"; path = "Core/Source/iOS/UIApplication+DTNetworkActivity.m"; sourceTree = ""; }; - 0849E2AF5C936DCEB63EB2F6 /* DTAnchorHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAnchorHTMLElement.h; path = Core/Source/DTAnchorHTMLElement.h; sourceTree = ""; }; - 08E474FD595CE24032B3197B /* DTStylesheetHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTStylesheetHTMLElement.h; path = Core/Source/DTStylesheetHTMLElement.h; sourceTree = ""; }; - 08FD2171E8CD24A8A0DBD606 /* DTPieProgressIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTPieProgressIndicator.m; path = Core/Source/iOS/DTPieProgressIndicator.m; sourceTree = ""; }; - 09A8724B696B9CB66533D097 /* libPods-EGOCache.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-EGOCache.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 09F407F343D0087C42F08031 /* DTCSSListStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCSSListStyle.m; path = Core/Source/DTCSSListStyle.m; sourceTree = ""; }; - 0D7801E32CA32B7207F2DD07 /* Mantle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Mantle.h; path = Mantle/Mantle.h; sourceTree = ""; }; - 102A91707C3814BAE0EB62CA /* default.css.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = default.css.c; path = Core/Source/default.css.c; sourceTree = ""; }; - 11B0370520C30390636399CF /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/UIButton+WebCache.h"; sourceTree = ""; }; - 11FBBF6C5F20C6501912875E /* DTFoundationConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTFoundationConstants.h; path = Core/Source/DTFoundationConstants.h; sourceTree = ""; }; - 12267743C03057BDFD011A3D /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; }; - 1258305292DF8E3E5E5F4539 /* DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreText.h; path = Core/Source/DTCoreText.h; sourceTree = ""; }; - 1262F885EB2D8C42E0D251E8 /* NSAttributedString+DTDebug.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DTDebug.m"; path = "Core/Source/NSAttributedString+DTDebug.m"; sourceTree = ""; }; - 128D136FE07EB11F95B8CC51 /* NSData+DTCrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+DTCrypto.h"; path = "Core/Source/NSData+DTCrypto.h"; sourceTree = ""; }; - 12E31B9207F2E25ED497CB9B /* Reachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = ""; }; - 1317063F912B339440797EBD /* DTSmartPagingScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTSmartPagingScrollView.h; path = Core/Source/iOS/DTSmartPagingScrollView.h; sourceTree = ""; }; - 14706916BDF049126B204977 /* DTLazyImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLazyImageView.m; path = Core/Source/DTLazyImageView.m; sourceTree = ""; }; - 14A727E0E5397AFD2403431C /* NSAttributedString+SmallCaps.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+SmallCaps.m"; path = "Core/Source/NSAttributedString+SmallCaps.m"; sourceTree = ""; }; - 15612070F182774F9D2CDF0E /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; - 162E2E22107D20F2693387CF /* Pods-DTFoundation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DTFoundation-dummy.m"; sourceTree = ""; }; - 16492B8D5B7687C9AD07499C /* NSAttributedString+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DTCoreText.m"; path = "Core/Source/NSAttributedString+DTCoreText.m"; sourceTree = ""; }; - 16FDFBAA23D35A18396CB583 /* MTLValueTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MTLValueTransformer.h; path = Mantle/MTLValueTransformer.h; sourceTree = ""; }; - 16FF2ACABF2CA27BF6ABAF85 /* DTTextAttachmentHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextAttachmentHTMLElement.h; path = Core/Source/DTTextAttachmentHTMLElement.h; sourceTree = ""; }; - 176186BB28B17B45EBCD420E /* UIAlertView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIAlertView+AFNetworking.m"; path = "UIKit+AFNetworking/UIAlertView+AFNetworking.m"; sourceTree = ""; }; - 17DDE6D2255B4DB4A87B8366 /* DTCoreTextLayoutFrame+Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTCoreTextLayoutFrame+Cursor.h"; path = "Core/Source/DTCoreTextLayoutFrame+Cursor.h"; sourceTree = ""; }; - 182C1BADEC87E296B6514FE2 /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/NSData+ImageContentType.h"; sourceTree = ""; }; - 1842F4D296B06A7D984A0DB9 /* DTCoreTextParagraphStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextParagraphStyle.h; path = Core/Source/DTCoreTextParagraphStyle.h; sourceTree = ""; }; - 19454852EB647E3F82CC59FE /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; - 1A917C215351608764A9240E /* UIView+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+DTFoundation.h"; path = "Core/Source/iOS/UIView+DTFoundation.h"; sourceTree = ""; }; - 1AD4BD331A2EB531713AA757 /* Pods-DTCoreText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DTCoreText-prefix.pch"; sourceTree = ""; }; - 1B6F15A6D1DD9CE0E2656C9F /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; - 1BF72998B2A17068028BA308 /* Pods-AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AFNetworking-dummy.m"; sourceTree = ""; }; - 1D5C1A7AAF534DEEC4199715 /* UIView+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+DTFoundation.m"; path = "Core/Source/iOS/UIView+DTFoundation.m"; sourceTree = ""; }; - 1DA5A00C3F1BF7F502BC8E0D /* Pods-DTFoundation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DTFoundation-prefix.pch"; sourceTree = ""; }; - 1E5010AFA39031FAE5069966 /* NSString+Paragraphs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+Paragraphs.m"; path = "Core/Source/NSString+Paragraphs.m"; sourceTree = ""; }; - 1E5B1551BBB442D36A5CEF82 /* DTCoreTextLayoutFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutFrame.h; path = Core/Source/DTCoreTextLayoutFrame.h; sourceTree = ""; }; - 1EAA671DBCED9E85006EB5DE /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/UIView+WebCacheOperation.m"; sourceTree = ""; }; - 1F46337FDAB531983759921C /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; - 1FBFC4DA4E913780086FAD69 /* UIAlertView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIAlertView+AFNetworking.h"; path = "UIKit+AFNetworking/UIAlertView+AFNetworking.h"; sourceTree = ""; }; - 2071988D63E920ED00D53F81 /* STableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STableViewController.h; path = STableViewController/STableViewController.h; sourceTree = ""; }; - 211C837307329644DDB6CC11 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/UIImage+MultiFormat.h"; sourceTree = ""; }; - 22525BE057443EBC90B0ED51 /* Pods-SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SDWebImage.xcconfig"; sourceTree = ""; }; - 2388D2D4188855470D4BF95C /* Pods-Reachability.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Reachability.xcconfig"; sourceTree = ""; }; - 23FEB17B1B2482F9459FD6D4 /* Pods-DTCoreText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DTCoreText.xcconfig"; sourceTree = ""; }; - 241F7CF8C579B43DCA7B8799 /* DTExtendedFileAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTExtendedFileAttributes.h; path = Core/Source/DTExtendedFileAttributes.h; sourceTree = ""; }; - 24F0989963D2EB6401D28C66 /* DTWebVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTWebVideoView.h; path = Core/Source/DTWebVideoView.h; sourceTree = ""; }; - 25441B0A2A133C0EB48B257B /* NSAttributedString+DTDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DTDebug.h"; path = "Core/Source/NSAttributedString+DTDebug.h"; sourceTree = ""; }; - 2564BD064A8DF54367722ED0 /* NSData+Godzippa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+Godzippa.h"; path = "Godzippa/NSData+Godzippa.h"; sourceTree = ""; }; - 25C866B117E59B1332598BB9 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; - 25E4FE3B96956F9BAD0581CD /* SBJson4StreamWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamWriter.h; path = src/main/objc/SBJson4StreamWriter.h; sourceTree = ""; }; - 2604C3A2F683FC155CDA42C8 /* Pods-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-acknowledgements.markdown"; sourceTree = ""; }; - 264C12C1EB557815566DA774 /* Pods-SecureUDID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SecureUDID-dummy.m"; sourceTree = ""; }; - 2756DF9C91A022A1E05A42B8 /* NSMutableAttributedString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableAttributedString+HTML.m"; path = "Core/Source/NSMutableAttributedString+HTML.m"; sourceTree = ""; }; - 2781170ACEC84912C5741685 /* NSMutableAttributedString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableAttributedString+HTML.h"; path = "Core/Source/NSMutableAttributedString+HTML.h"; sourceTree = ""; }; - 2881C43808AAE7488912B9A9 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; - 2884F9F57D9ECEE3DD58DD1A /* DTCSSListStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCSSListStyle.h; path = Core/Source/DTCSSListStyle.h; sourceTree = ""; }; - 294FFA5E957524F2BD16D37F /* DTCoreTextGlyphRun.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextGlyphRun.m; path = Core/Source/DTCoreTextGlyphRun.m; sourceTree = ""; }; - 2A746EFCC6E837213E79E458 /* NSString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+HTML.h"; path = "Core/Source/NSString+HTML.h"; sourceTree = ""; }; - 2C228B56F7C84D191A3FD702 /* NSFileManager+Godzippa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSFileManager+Godzippa.m"; path = "Godzippa/NSFileManager+Godzippa.m"; sourceTree = ""; }; - 2D2D809FEB987395EFAD2412 /* NSString+DTFormatNumbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTFormatNumbers.h"; path = "Core/Source/NSString+DTFormatNumbers.h"; sourceTree = ""; }; - 2D4D3A8DD7BF721C32F55FC3 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; }; - 2DB04192C82F65E1052B241D /* MTLModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MTLModel.m; path = Mantle/MTLModel.m; sourceTree = ""; }; - 2E19EE9166A177F5698F8157 /* Pods-Godzippa-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Godzippa-Private.xcconfig"; sourceTree = ""; }; - 2E2FD2F9C9CD6399D0BA90F0 /* DTTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextAttachment.m; path = Core/Source/DTTextAttachment.m; sourceTree = ""; }; - 2F980946DEC33178A5A08C53 /* DTTiledLayerWithoutFade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTiledLayerWithoutFade.h; path = Core/Source/iOS/DTTiledLayerWithoutFade.h; sourceTree = ""; }; - 300A2479E90F1DD2B1144966 /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/SDWebImageDownloaderOperation.h; sourceTree = ""; }; - 30DD1909FF84B561B5097267 /* NSString+Paragraphs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+Paragraphs.h"; path = "Core/Source/NSString+Paragraphs.h"; sourceTree = ""; }; - 30F6B331E5B9C868CFD6C2B6 /* DTImageTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTImageTextAttachment.m; path = Core/Source/DTImageTextAttachment.m; sourceTree = ""; }; - 310301EC7307552E99263FAC /* DTCustomColoredAccessory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCustomColoredAccessory.m; path = Core/Source/iOS/DTCustomColoredAccessory.m; sourceTree = ""; }; - 3142E3DCD198FB065F097F2B /* DTHTMLParserNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParserNode.h; path = Core/Source/DTHTMLParserNode.h; sourceTree = ""; }; - 320BA35F75F32BB154425564 /* SecureUDID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SecureUDID.m; sourceTree = ""; }; - 32EAED9B52457C4645FFAFF2 /* Godzippa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Godzippa.h; path = Godzippa/Godzippa.h; sourceTree = ""; }; - 33F0365D231376ECD0C32F92 /* MTLReflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MTLReflection.h; path = Mantle/MTLReflection.h; sourceTree = ""; }; - 35A3D3BA1E7D74A25FBB2E18 /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+AFNetworking.m"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.m"; sourceTree = ""; }; - 35BD8EDE5554915364A56608 /* NSDictionary+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+DTCoreText.h"; path = "Core/Source/NSDictionary+DTCoreText.h"; sourceTree = ""; }; - 365B7D3D24F9EFF9FD3F8AD0 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; - 367683D4BA48112D10FC451B /* DTHTMLAttributedStringBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLAttributedStringBuilder.h; path = Core/Source/DTHTMLAttributedStringBuilder.h; sourceTree = ""; }; - 367D248A9F931602CDF863C0 /* DTHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLElement.h; path = Core/Source/DTHTMLElement.h; sourceTree = ""; }; - 380BEE354AB84E8D4795B5C4 /* SBJson4Writer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4Writer.m; path = src/main/objc/SBJson4Writer.m; sourceTree = ""; }; - 392FA2882314E9EE1F9FB21B /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+AFNetworking.h"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.h"; sourceTree = ""; }; - 3A98DC14C37B5AE16E678A78 /* DTDictationPlaceholderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTDictationPlaceholderView.h; path = Core/Source/DTDictationPlaceholderView.h; sourceTree = ""; }; - 3AA8A5B332A17FCFBFE39DC1 /* DTHTMLParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParser.h; path = Core/Source/DTHTMLParser/DTHTMLParser.h; sourceTree = ""; }; - 3AC39EA9C989418A578C8345 /* Pods-EGOCache.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EGOCache.xcconfig"; sourceTree = ""; }; - 3AEFB7A0C243F4C9C4DC7750 /* NSDictionary+DTError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+DTError.h"; path = "Core/Source/NSDictionary+DTError.h"; sourceTree = ""; }; - 3B25075098DCB6B2D9612299 /* DTCoreTextParagraphStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextParagraphStyle.m; path = Core/Source/DTCoreTextParagraphStyle.m; sourceTree = ""; }; - 3B740C69E7D4962CD28B5BC7 /* NSFileWrapper+DTCopying.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSFileWrapper+DTCopying.m"; path = "Core/Source/NSFileWrapper+DTCopying.m"; sourceTree = ""; }; - 3BF6408A0A8D8169773FACB1 /* UIWebView+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+DTFoundation.m"; path = "Core/Source/iOS/UIWebView+DTFoundation.m"; sourceTree = ""; }; - 3C44D170034AED69BF745FDC /* SBJson4Parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4Parser.h; path = src/main/objc/SBJson4Parser.h; sourceTree = ""; }; - 3E1D11C0E845EFBAE5687F71 /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; - 3E393A9434AC2E5B0578EE04 /* EGOCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EGOCache.h; sourceTree = ""; }; - 3E6D5B50E644E5F4D6F85508 /* DTBlockFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBlockFunctions.m; path = Core/Source/DTBlockFunctions.m; sourceTree = ""; }; - 3EB0D7FEBDAEE8A3A88CE324 /* DTBreakHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBreakHTMLElement.h; path = Core/Source/DTBreakHTMLElement.h; sourceTree = ""; }; - 3EB94C86CF85EBA81690153B /* DTStylesheetHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTStylesheetHTMLElement.m; path = Core/Source/DTStylesheetHTMLElement.m; sourceTree = ""; }; - 3FA247B15C8627BDE1FCAAF3 /* DTAsyncFileDeleter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAsyncFileDeleter.h; path = Core/Source/DTAsyncFileDeleter.h; sourceTree = ""; }; - 4024AAA0AD3BD40AF2F734AD /* NSAttributedString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+HTML.h"; path = "Core/Source/NSAttributedString+HTML.h"; sourceTree = ""; }; - 40E0444C0FDFD0F02412C625 /* DTCoreTextFontCollection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFontCollection.m; path = Core/Source/DTCoreTextFontCollection.m; sourceTree = ""; }; - 40F3271E4997585A6FB0773A /* Pods-SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SDWebImage-dummy.m"; sourceTree = ""; }; - 420CB36ED79B124B94556C62 /* SBJson4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4.h; path = src/main/objc/SBJson4.h; sourceTree = ""; }; - 425FCD32EA3A382DBE0A237B /* DTCoreTextFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFunctions.h; path = Core/Source/DTCoreTextFunctions.h; sourceTree = ""; }; - 4295F3EC67170421A98183DD /* UIApplication+DTNetworkActivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+DTNetworkActivity.h"; path = "Core/Source/iOS/UIApplication+DTNetworkActivity.h"; sourceTree = ""; }; - 43CAA42B614FFB1BB3B7BDD8 /* NSDictionary+MTLManipulationAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+MTLManipulationAdditions.h"; path = "Mantle/NSDictionary+MTLManipulationAdditions.h"; sourceTree = ""; }; - 44686F701B4CAC8A22C54366 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutFrameAccessibilityElementGenerator.h; path = Core/Source/DTCoreTextLayoutFrameAccessibilityElementGenerator.h; sourceTree = ""; }; - 447C69AE2DB50032DA69DB8B /* DTAttributedTextCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextCell.m; path = Core/Source/DTAttributedTextCell.m; sourceTree = ""; }; - 4489190037A7638D8CC8533B /* DTIframeTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTIframeTextAttachment.m; path = Core/Source/DTIframeTextAttachment.m; sourceTree = ""; }; - 44E4F3AAE1C171E7A4031501 /* DTCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCompatibility.h; path = Core/Source/DTCompatibility.h; sourceTree = ""; }; - 4639A91682C983BA77196B83 /* NSString+DTURLEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTURLEncoding.h"; path = "Core/Source/NSString+DTURLEncoding.h"; sourceTree = ""; }; - 465331F158130126CBA562F4 /* DTSmartPagingScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTSmartPagingScrollView.m; path = Core/Source/iOS/DTSmartPagingScrollView.m; sourceTree = ""; }; - 46BF64EBBCB8E5A1BE2C6F2F /* Pods-AFNetworking-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AFNetworking-Private.xcconfig"; sourceTree = ""; }; - 47D3C22AE0C8AB6543BDC349 /* NSString+CSS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+CSS.h"; path = "Core/Source/NSString+CSS.h"; sourceTree = ""; }; - 4B1D4B67B8ECBDF01CCA2B5D /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/SDWebImageOperation.h; sourceTree = ""; }; - 4EAFF0BD3B364D0A56D53E50 /* Pods-Godzippa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Godzippa-prefix.pch"; sourceTree = ""; }; - 4ED4274B1019AF1CB40F157A /* DTCoreTextLayoutLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutLine.m; path = Core/Source/DTCoreTextLayoutLine.m; sourceTree = ""; }; - 4ED6B6394A312F0CA650760D /* NSDictionary+MTLManipulationAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+MTLManipulationAdditions.m"; path = "Mantle/NSDictionary+MTLManipulationAdditions.m"; sourceTree = ""; }; - 4FDFCE1EC5AF47663E5533F7 /* DTListItemHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTListItemHTMLElement.h; path = Core/Source/DTListItemHTMLElement.h; sourceTree = ""; }; - 5086956498119AF55DB0D751 /* Pods-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-environment.h"; sourceTree = ""; }; - 50979E45EB072018E763F1F8 /* DTAttributedTextCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextCell.h; path = Core/Source/DTAttributedTextCell.h; sourceTree = ""; }; - 50CF6C85A9936F7B0CE4584E /* DTColorFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTColorFunctions.m; path = Core/Source/DTColorFunctions.m; sourceTree = ""; }; - 513154F6A79243EA1B6F566A /* NSData+Godzippa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+Godzippa.m"; path = "Godzippa/NSData+Godzippa.m"; sourceTree = ""; }; - 5317D4EC799B8DB732BB0B71 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/UIImage+GIF.m"; sourceTree = ""; }; - 5426F101E987C706690A126B /* DTTiledLayerWithoutFade.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTiledLayerWithoutFade.m; path = Core/Source/iOS/DTTiledLayerWithoutFade.m; sourceTree = ""; }; - 5484AF5E8CE0D3C01D661913 /* DTHTMLAttributedStringBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLAttributedStringBuilder.m; path = Core/Source/DTHTMLAttributedStringBuilder.m; sourceTree = ""; }; - 54E5A78377BD592A76A105F7 /* Pods-DTCoreText-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DTCoreText-Private.xcconfig"; sourceTree = ""; }; - 54F06CEE2B9ECA4F48697194 /* DTAccessibilityViewProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAccessibilityViewProxy.h; path = Core/Source/DTAccessibilityViewProxy.h; sourceTree = ""; }; - 54F69CDEE37B4673319D8CE4 /* DTFolderMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTFolderMonitor.h; path = Core/Source/DTFolderMonitor.h; sourceTree = ""; }; - 55D783A030AFE19969828736 /* DTHorizontalRuleHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHorizontalRuleHTMLElement.m; path = Core/Source/DTHorizontalRuleHTMLElement.m; sourceTree = ""; }; - 5697436FD0CDA9F0DB73D21F /* SBJson4StreamWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamWriter.m; path = src/main/objc/SBJson4StreamWriter.m; sourceTree = ""; }; - 57868989FCC8CE96EDB53AA9 /* NSArray+DTError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+DTError.h"; path = "Core/Source/NSArray+DTError.h"; sourceTree = ""; }; - 578BD36F73D093BC8645E484 /* DTCSSStylesheet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCSSStylesheet.h; path = Core/Source/DTCSSStylesheet.h; sourceTree = ""; }; - 57B209A108DA1DEBCA1C7664 /* Pods-EGOCache-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EGOCache-Private.xcconfig"; sourceTree = ""; }; - 57C02398985BECE8ECA8A872 /* DTAnimatedGIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAnimatedGIF.m; path = Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.m; sourceTree = ""; }; - 58E5DBC8B9818697255B4008 /* SecureUDID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SecureUDID.h; sourceTree = ""; }; - 590F8D2F9C16A87EBFEDAA48 /* SDWebImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDecoder.m; path = SDWebImage/SDWebImageDecoder.m; sourceTree = ""; }; - 596BA774AC77D3C5F33C1898 /* NSCoder+DTCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSCoder+DTCompatibility.h"; path = "Core/Source/NSCoder+DTCompatibility.h"; sourceTree = ""; }; - 5973967E662A7994F1653102 /* NSFileWrapper+DTCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSFileWrapper+DTCopying.h"; path = "Core/Source/NSFileWrapper+DTCopying.h"; sourceTree = ""; }; - 59C3DC8990354986300B1021 /* SBJson4Writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4Writer.h; path = src/main/objc/SBJson4Writer.h; sourceTree = ""; }; - 5B7A6CF958439422E464C75C /* NSValueTransformer+MTLInversionAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSValueTransformer+MTLInversionAdditions.h"; path = "Mantle/NSValueTransformer+MTLInversionAdditions.h"; sourceTree = ""; }; - 5C3FB43C025EF8A6DD5E9C36 /* NSString+DTUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTUtilities.h"; path = "Core/Source/NSString+DTUtilities.h"; sourceTree = ""; }; - 5C65FB39B32FD3702DD36096 /* NSString+DTPaths.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTPaths.m"; path = "Core/Source/NSString+DTPaths.m"; sourceTree = ""; }; - 5CEA1D6A1444C4CDE57AD32F /* DTAttributedTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextView.m; path = Core/Source/DTAttributedTextView.m; sourceTree = ""; }; - 5DE9E2502F28A70DB59A99D6 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; - 5E0ED4C54909C3754C32F9F7 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/SDWebImagePrefetcher.h; sourceTree = ""; }; - 5E9CEBB7B860CB3B5F8640CE /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; - 5F6CE03C1BE5EE9482750BBD /* DTAttributedTextContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextContentView.h; path = Core/Source/DTAttributedTextContentView.h; sourceTree = ""; }; - 5FB146217237D87D2A9D47E2 /* DTLinkButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLinkButton.m; path = Core/Source/DTLinkButton.m; sourceTree = ""; }; - 5FB3240C6586FC260EA9EAF1 /* Pods-SecureUDID-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SecureUDID-Private.xcconfig"; sourceTree = ""; }; - 5FB69A9CC09DBFD8E512EA12 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; }; - 610DE255531BF6EEB5991477 /* NSCoder+DTCompatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSCoder+DTCompatibility.m"; path = "Core/Source/NSCoder+DTCompatibility.m"; sourceTree = ""; }; - 625425467266D97BFACC32C2 /* SBJson4StreamWriterState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamWriterState.m; path = src/main/objc/SBJson4StreamWriterState.m; sourceTree = ""; }; - 62918573B06CC38D5898215F /* libPods-MBProgressHUD.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MBProgressHUD.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 62ED7C040522BF04C2B390D1 /* EXTRuntimeExtensions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXTRuntimeExtensions.m; path = Mantle/extobjc/EXTRuntimeExtensions.m; sourceTree = ""; }; - 62F4C3239D4D3F015DD71C53 /* Pods-Mantle-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Mantle-prefix.pch"; sourceTree = ""; }; - 630BD53F48E6A1081E0981FC /* DTExtendedFileAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTExtendedFileAttributes.m; path = Core/Source/DTExtendedFileAttributes.m; sourceTree = ""; }; - 64898BA52DC103C58AFFACDF /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; - 649CCA7B271777F59E67FC2E /* NSString+DTURLEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTURLEncoding.m"; path = "Core/Source/NSString+DTURLEncoding.m"; sourceTree = ""; }; - 668C174C9A564ECD8DA27812 /* DTBreakHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBreakHTMLElement.m; path = Core/Source/DTBreakHTMLElement.m; sourceTree = ""; }; - 66D6BAE209CBAF4097E6F0D8 /* DTHTMLParserTextNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParserTextNode.h; path = Core/Source/DTHTMLParserTextNode.h; sourceTree = ""; }; - 675CFD70906846DC5A49D5EC /* EXTScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXTScope.h; path = Mantle/extobjc/EXTScope.h; sourceTree = ""; }; - 67A4E6C9EE66030D38345C96 /* Pods-STableViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-STableViewController-dummy.m"; sourceTree = ""; }; - 6869CC0726278E3A9703581B /* DTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLog.h; path = Core/Source/DTLog.h; sourceTree = ""; }; - 691B3BE5EBDE90AEA617D150 /* DTHorizontalRuleHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHorizontalRuleHTMLElement.h; path = Core/Source/DTHorizontalRuleHTMLElement.h; sourceTree = ""; }; - 6986933DD584C538002EBDE4 /* Pods-Reachability-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Reachability-dummy.m"; sourceTree = ""; }; - 69A6343C2F18C658F7DD348A /* DTAttributedTextContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextContentView.m; path = Core/Source/DTAttributedTextContentView.m; sourceTree = ""; }; - 69AB0E927D34C81AA14AB3D7 /* MTLModel+NSCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MTLModel+NSCoding.h"; path = "Mantle/MTLModel+NSCoding.h"; sourceTree = ""; }; - 6D6B7239BFC55E389163C9ED /* DTBase64Coding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBase64Coding.m; path = Core/Source/DTBase64Coding.m; sourceTree = ""; }; - 6E4CBCF215675EB712A79F00 /* NSValueTransformer+MTLPredefinedTransformerAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSValueTransformer+MTLPredefinedTransformerAdditions.m"; path = "Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.m"; sourceTree = ""; }; - 6E82B7E38AD25F8AB4D93CB7 /* DTCustomColoredAccessory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCustomColoredAccessory.h; path = Core/Source/iOS/DTCustomColoredAccessory.h; sourceTree = ""; }; - 6E9F835357A14FF2B1C80A9C /* DTDictationPlaceholderTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTDictationPlaceholderTextAttachment.m; path = Core/Source/DTDictationPlaceholderTextAttachment.m; sourceTree = ""; }; - 6F1AB28EB778D9E2B929EDAC /* DTAnchorHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAnchorHTMLElement.m; path = Core/Source/DTAnchorHTMLElement.m; sourceTree = ""; }; - 6F8C4D5398BE62C6328C2625 /* Pods-Reachability-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Reachability-Private.xcconfig"; sourceTree = ""; }; - 6FEFF6F630CED819928ED732 /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/SDWebImagePrefetcher.m; sourceTree = ""; }; - 70AAEE38922C0864796C3663 /* DTCoreTextGlyphRun.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextGlyphRun.h; path = Core/Source/DTCoreTextGlyphRun.h; sourceTree = ""; }; - 71AAFDB5996AAEC577483D9A /* DTCoreTextLayouter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayouter.m; path = Core/Source/DTCoreTextLayouter.m; sourceTree = ""; }; - 71D4BB6FC3BB93CE78F20303 /* AFHTTPRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperation.m; path = AFNetworking/AFHTTPRequestOperation.m; sourceTree = ""; }; - 71E65BFF7B983D95A410F7CD /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; - 72E6C6A8EFE741EF53CDEC7B /* Pods-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-resources.sh"; sourceTree = ""; }; - 730A7D38F6FFDF0FE46892F6 /* DTTextHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextHTMLElement.m; path = Core/Source/DTTextHTMLElement.m; sourceTree = ""; }; - 7390F1C5749025C6C345D1E7 /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; - 73CBB4F984043238B005F4F6 /* DTFoundationConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTFoundationConstants.m; path = Core/Source/DTFoundationConstants.m; sourceTree = ""; }; - 7506622A70441410839FAD45 /* NSAttributedString+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DTCoreText.h"; path = "Core/Source/NSAttributedString+DTCoreText.h"; sourceTree = ""; }; - 7563ECB3221F82B0107B2934 /* MTLModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MTLModel.h; path = Mantle/MTLModel.h; sourceTree = ""; }; - 76B29DB969C6C0A537A7E3FF /* DTImage+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTImage+HTML.m"; path = "Core/Source/DTImage+HTML.m"; sourceTree = ""; }; - 77F5CE3216641AC3148A077E /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = ""; }; - 782EE1F836220422D6EC79F3 /* DTTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextAttachment.h; path = Core/Source/DTTextAttachment.h; sourceTree = ""; }; - 785F0A5933408660B50739A5 /* NSURL+DTAppLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTAppLinks.m"; path = "Core/Source/iOS/NSURL+DTAppLinks.m"; sourceTree = ""; }; - 78F1385437FA74A2B33B7D6C /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; - 7A67916EB92B6B880C683460 /* DTActivityTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTActivityTitleView.m; path = Core/Source/iOS/DTActivityTitleView.m; sourceTree = ""; }; - 7BA176D215A12300DA2BC3DC /* DTTextBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextBlock.h; path = Core/Source/DTTextBlock.h; sourceTree = ""; }; - 7C51125AE40C5278A311CCCB /* AFHTTPRequestOperationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperationManager.m; path = AFNetworking/AFHTTPRequestOperationManager.m; sourceTree = ""; }; - 7CABDEE4AA200D95A5738FE0 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; - 7CAEFFBE51335980B889D2B1 /* MTLManagedObjectAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MTLManagedObjectAdapter.h; path = Mantle/MTLManagedObjectAdapter.h; sourceTree = ""; }; - 7CCAF6AE5C23F6D9915DA610 /* EXTScope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXTScope.m; path = Mantle/extobjc/EXTScope.m; sourceTree = ""; }; - 7DD579988D28CEBBD0A61020 /* DTHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLElement.m; path = Core/Source/DTHTMLElement.m; sourceTree = ""; }; - 7E23C63EE2780C6B036A5FF4 /* MTLManagedObjectAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MTLManagedObjectAdapter.m; path = Mantle/MTLManagedObjectAdapter.m; sourceTree = ""; }; - 7E95B94916BE169060085560 /* AFURLConnectionOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLConnectionOperation.h; path = AFNetworking/AFURLConnectionOperation.h; sourceTree = ""; }; - 7EE0142D56D941DA31DDE2C0 /* NSArray+MTLManipulationAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MTLManipulationAdditions.m"; path = "Mantle/NSArray+MTLManipulationAdditions.m"; sourceTree = ""; }; - 7FAA90F35D4297F1CA83AD84 /* Pods-SBJson.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SBJson.xcconfig"; sourceTree = ""; }; - 7FAB33FA4E8EE63F4C74AF90 /* Pods-AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AFNetworking-prefix.pch"; sourceTree = ""; }; - 7FE9E4CECFDA7FAA64A49FAE /* NSScanner+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSScanner+HTML.h"; path = "Core/Source/NSScanner+HTML.h"; sourceTree = ""; }; - 8041A49A3E1DB57FCF3A1E3E /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; - 80B119C9747B41B487526D88 /* Pods-Godzippa.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Godzippa.xcconfig"; sourceTree = ""; }; - 810A23CACBC834CFB7FE0B59 /* NSMutableString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableString+HTML.h"; path = "Core/Source/NSMutableString+HTML.h"; sourceTree = ""; }; - 81BA6B8EB8CC08960A063EE0 /* DTHTMLWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLWriter.m; path = Core/Source/DTHTMLWriter.m; sourceTree = ""; }; - 81F4C822F02222D71A727283 /* DTVideoTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTVideoTextAttachment.m; path = Core/Source/DTVideoTextAttachment.m; sourceTree = ""; }; - 81FF1040F2B07AAF62BD5424 /* libPods-Godzippa.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Godzippa.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8495BAF833A7C37A511CC33A /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/UIImageView+WebCache.m"; sourceTree = ""; }; - 856DCACD63B323B4914B893B /* NSValueTransformer+MTLInversionAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSValueTransformer+MTLInversionAdditions.m"; path = "Mantle/NSValueTransformer+MTLInversionAdditions.m"; sourceTree = ""; }; - 85903A9CE88F53C982C6F9D7 /* DTAccessibilityElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAccessibilityElement.m; path = Core/Source/DTAccessibilityElement.m; sourceTree = ""; }; - 86077D8B6C20D046B0B4BDB7 /* Pods-SecureUDID-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SecureUDID-prefix.pch"; sourceTree = ""; }; - 869484474F565EA93AF7561A /* DTCoreTextConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextConstants.h; path = Core/Source/DTCoreTextConstants.h; sourceTree = ""; }; - 878709F0A0EA26F7CA14C962 /* NSString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+HTML.m"; path = "Core/Source/NSString+HTML.m"; sourceTree = ""; }; - 87B8EAD712E629A5126EFF6A /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; - 87C74BEC4F61FAA3CDAF0D49 /* Pods-STableViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-STableViewController.xcconfig"; sourceTree = ""; }; - 88511088BC394F052D0E07D1 /* MTLValueTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MTLValueTransformer.m; path = Mantle/MTLValueTransformer.m; sourceTree = ""; }; - 88B4201C4778092A276DCFFE /* NSValueTransformer+MTLPredefinedTransformerAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSValueTransformer+MTLPredefinedTransformerAdditions.h"; path = "Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h"; sourceTree = ""; }; - 89024B0DB7003A0824189113 /* SDWebImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDecoder.h; path = SDWebImage/SDWebImageDecoder.h; sourceTree = ""; }; - 890BE7875A7E3998D71EECD4 /* SBJson4Parser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4Parser.m; path = src/main/objc/SBJson4Parser.m; sourceTree = ""; }; - 896D610411EB647BFA5B8890 /* Pods-MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-MBProgressHUD-dummy.m"; sourceTree = ""; }; - 89A76E13D53BB2BE40A49C56 /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; - 8A7DC1DCF923EC380E831541 /* libPods-SecureUDID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SecureUDID.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8A7F55E4967C67D363E9B3E2 /* libPods-Reachability.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Reachability.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8ACFA92908F13EB46473AC72 /* libPods-DTCoreText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DTCoreText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - 8C6876031C50434AF3213AF8 /* NSDictionary+DTError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+DTError.m"; path = "Core/Source/NSDictionary+DTError.m"; sourceTree = ""; }; - 8C830DC9FA8CE138CE899437 /* MTLJSONAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MTLJSONAdapter.m; path = Mantle/MTLJSONAdapter.m; sourceTree = ""; }; - 8CD8F8A3D741599FFD818A67 /* DTColor+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTColor+Compatibility.m"; path = "Core/Source/DTColor+Compatibility.m"; sourceTree = ""; }; - 8DA8C488C28260E7A1F3D1D1 /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; - 8DBCB70ADAF750B243D34F29 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/UIImage+GIF.h"; sourceTree = ""; }; - 8DC929F360D11D6A9AF4D5A5 /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/NSData+ImageContentType.m"; sourceTree = ""; }; - 8E509C66681EEBD1C3466D0F /* NSMutableArray+DTMoving.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableArray+DTMoving.m"; path = "Core/Source/NSMutableArray+DTMoving.m"; sourceTree = ""; }; - 8F754E08EA6C27E65CE75BF0 /* NSString+CSS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+CSS.m"; path = "Core/Source/NSString+CSS.m"; sourceTree = ""; }; - 8F8C1006846FFB9885019458 /* DTAttributedLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedLabel.m; path = Core/Source/DTAttributedLabel.m; sourceTree = ""; }; - 919485309D7F9E704DA3E9D0 /* NSAttributedString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+HTML.m"; path = "Core/Source/NSAttributedString+HTML.m"; sourceTree = ""; }; - 91ABEFD71C8DC74363B9C5E3 /* DTCoreTextConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextConstants.m; path = Core/Source/DTCoreTextConstants.m; sourceTree = ""; }; - 9264206C6738E273C5655F1C /* Pods-SBJson-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SBJson-dummy.m"; sourceTree = ""; }; - 928903BF260AA1A2B0B05299 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/SDWebImageCompat.m; sourceTree = ""; }; - 92A11FD3460B5667CE950BA2 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; - 92ABF115E586E14B05BB47D2 /* DTCoreTextFontDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFontDescriptor.m; path = Core/Source/DTCoreTextFontDescriptor.m; sourceTree = ""; }; - 92C0CBA93013A95E242AAEB6 /* Pods-DTCoreText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DTCoreText-dummy.m"; sourceTree = ""; }; - 951FD23A4DEBF2BDED20BFAE /* DTCoreTextLayouter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayouter.h; path = Core/Source/DTCoreTextLayouter.h; sourceTree = ""; }; - 96824B14B6DBDCF4D1EBF710 /* DTCoreGraphicsUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreGraphicsUtils.h; path = Core/Source/DTCoreGraphicsUtils.h; sourceTree = ""; }; - 97D9281D8657C98DAF2F1DD0 /* SBJson4StreamParserState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamParserState.m; path = src/main/objc/SBJson4StreamParserState.m; sourceTree = ""; }; - 990B190FC63A5B7CD1F8B556 /* SBJson4StreamTokeniser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamTokeniser.h; path = src/main/objc/SBJson4StreamTokeniser.h; sourceTree = ""; }; - 99E38BEE217EECD8FE04EBA9 /* DTImageTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTImageTextAttachment.h; path = Core/Source/DTImageTextAttachment.h; sourceTree = ""; }; - 9A349FFF5A28BBF0B9F4DB1E /* NSURL+DTUnshorten.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTUnshorten.m"; path = "Core/Source/NSURL+DTUnshorten.m"; sourceTree = ""; }; - 9B6DDBCAC733394FF051FE8A /* UIImage+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+DTFoundation.h"; path = "Core/Source/iOS/UIImage+DTFoundation.h"; sourceTree = ""; }; - 9B8FBE2E7A9F342C961ABB4C /* Pods-DTFoundation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DTFoundation.xcconfig"; sourceTree = ""; }; - 9BD89C3F03ABA3F9FC00C227 /* DTCSSStylesheet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCSSStylesheet.m; path = Core/Source/DTCSSStylesheet.m; sourceTree = ""; }; - 9C89330B1170394C848D9635 /* DTHTMLParserTextNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParserTextNode.m; path = Core/Source/DTHTMLParserTextNode.m; sourceTree = ""; }; - 9CDA688EA6A2B63B62AD58AE /* AFHTTPRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperation.h; path = AFNetworking/AFHTTPRequestOperation.h; sourceTree = ""; }; - 9D66854E0766D3E0BE5A805B /* EXTKeyPathCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXTKeyPathCoding.h; path = Mantle/extobjc/EXTKeyPathCoding.h; sourceTree = ""; }; - 9DDCD77C38434B85E8A207DC /* Pods-SBJson-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SBJson-Private.xcconfig"; sourceTree = ""; }; - 9E37B0929B1EE2BBA7F0BE5C /* DTObjectTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTObjectTextAttachment.h; path = Core/Source/DTObjectTextAttachment.h; sourceTree = ""; }; - 9E8CA8078E20A60DBC1AF6AA /* DTActivityTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTActivityTitleView.h; path = Core/Source/iOS/DTActivityTitleView.h; sourceTree = ""; }; - 9EB8D530AEC201D861CD005D /* Pods-MBProgressHUD-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MBProgressHUD-Private.xcconfig"; sourceTree = ""; }; - 9FA43D71769A4303D9490097 /* DTFolderMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTFolderMonitor.m; path = Core/Source/DTFolderMonitor.m; sourceTree = ""; }; - A0431E2006710FCEC62858D4 /* MTLReflection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MTLReflection.m; path = Mantle/MTLReflection.m; sourceTree = ""; }; - A079D2B660119076AFF95F22 /* Pods-MBProgressHUD.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MBProgressHUD.xcconfig"; sourceTree = ""; }; - A09E4E3D058A22374FA3E52A /* NSAttributedStringRunDelegates.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NSAttributedStringRunDelegates.m; path = Core/Source/NSAttributedStringRunDelegates.m; sourceTree = ""; }; - A1964D061908079EBF220739 /* DTHTMLParserNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParserNode.m; path = Core/Source/DTHTMLParserNode.m; sourceTree = ""; }; - A20238144AF5030F4899E448 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutFrameAccessibilityElementGenerator.m; path = Core/Source/DTCoreTextLayoutFrameAccessibilityElementGenerator.m; sourceTree = ""; }; - A2FEED2109EB7168AD4BDF3D /* DTTextAttachmentHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextAttachmentHTMLElement.m; path = Core/Source/DTTextAttachmentHTMLElement.m; sourceTree = ""; }; - A3F4DDCE219F614C07910085 /* DTTextBlock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextBlock.m; path = Core/Source/DTTextBlock.m; sourceTree = ""; }; - A45287DD5CC03DA55BB4E16B /* DTCoreTextLayoutFrame+Cursor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTCoreTextLayoutFrame+Cursor.m"; path = "Core/Source/DTCoreTextLayoutFrame+Cursor.m"; sourceTree = ""; }; - A56A6FA2555D2660EAEC2FF2 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; - A742DEB0FD9BD6014CE7E0A9 /* Pods-Godzippa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Godzippa-dummy.m"; sourceTree = ""; }; - A7C651B7A7788E52E2126329 /* Pods-SecureUDID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SecureUDID.xcconfig"; sourceTree = ""; }; - A8249FC80A664103BBB1DE8F /* Pods-Mantle-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Mantle-dummy.m"; sourceTree = ""; }; - A851FB0BDD88D5525FBD1670 /* Pods-SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SDWebImage-prefix.pch"; sourceTree = ""; }; - A8D7E8CD890D9B675C0DE37E /* UIImage+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+DTFoundation.m"; path = "Core/Source/iOS/UIImage+DTFoundation.m"; sourceTree = ""; }; - A8ED301F3656553A753F946D /* NSData+DTCrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+DTCrypto.m"; path = "Core/Source/NSData+DTCrypto.m"; sourceTree = ""; }; - A99C7CEFD9A42E5F3A51688D /* DTPieProgressIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTPieProgressIndicator.h; path = Core/Source/iOS/DTPieProgressIndicator.h; sourceTree = ""; }; - AA3B09A0EC579933C2353DD7 /* DTDictationPlaceholderTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTDictationPlaceholderTextAttachment.h; path = Core/Source/DTDictationPlaceholderTextAttachment.h; sourceTree = ""; }; - AA70EEAAB48CF3DCB2A5FBEA /* DTAttributedLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedLabel.h; path = Core/Source/DTAttributedLabel.h; sourceTree = ""; }; - ABF1AF1AA665594D6AB2AB41 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; - AC23DB16D2C82F90A3A505E7 /* NSArray+MTLManipulationAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MTLManipulationAdditions.h"; path = "Mantle/NSArray+MTLManipulationAdditions.h"; sourceTree = ""; }; - AC250D0369E9C16012A77E58 /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; - AC491F4239C710AF434E79A2 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; - AE310881700502634449D6C4 /* DTCoreTextMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextMacros.h; path = Core/Source/DTCoreTextMacros.h; sourceTree = ""; }; - AE67E38C44414521A4F59135 /* DTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTVersion.m; path = Core/Source/DTVersion.m; sourceTree = ""; }; - AFB5F1D95E28D8BF4771CCF5 /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; - B11DEBB55CF64C761DCF7AD9 /* NSArray+DTError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+DTError.m"; path = "Core/Source/NSArray+DTError.m"; sourceTree = ""; }; - B364AC7790E4C914B376B78E /* DTCoreGraphicsUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreGraphicsUtils.m; path = Core/Source/DTCoreGraphicsUtils.m; sourceTree = ""; }; - B3C78E01D06BD6F6914FAF7C /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/SDWebImageDownloader.m; sourceTree = ""; }; - B4266A437FC0E61DE5F1D5B8 /* DTTextHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextHTMLElement.h; path = Core/Source/DTTextHTMLElement.h; sourceTree = ""; }; - B4558E19FB00C4D59FCABA2E /* Pods-SDWebImage-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SDWebImage-Private.xcconfig"; sourceTree = ""; }; - B5C3782946107D22DDEAF59D /* DTWebVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTWebVideoView.m; path = Core/Source/DTWebVideoView.m; sourceTree = ""; }; - B5C57EFC89F1A8F197D6BB9F /* NSScanner+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSScanner+HTML.m"; path = "Core/Source/NSScanner+HTML.m"; sourceTree = ""; }; - B693E70A818C5726F268DB02 /* Pods-EGOCache-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-EGOCache-prefix.pch"; sourceTree = ""; }; - B6CC01899F1AFCC17E18AE72 /* NSURL+DTComparing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTComparing.h"; path = "Core/Source/NSURL+DTComparing.h"; sourceTree = ""; }; - B90CC6020ED076B105C73921 /* DTLinkButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLinkButton.h; path = Core/Source/DTLinkButton.h; sourceTree = ""; }; - B9B4ED813F9D586A98029B78 /* DTObjectTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTObjectTextAttachment.m; path = Core/Source/DTObjectTextAttachment.m; sourceTree = ""; }; - BA16CAEF21533DDF3C2B7290 /* NSString+DTUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTUtilities.m"; path = "Core/Source/NSString+DTUtilities.m"; sourceTree = ""; }; - BB5105D1D07D5FAB04556D53 /* libPods-SBJson.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SBJson.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - BB6BE3E53C4D6F40B4C2533D /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/SDWebImageManager.h; sourceTree = ""; }; - BB7B84049551A243E8592AC1 /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Pods.release.xcconfig; sourceTree = ""; }; - BC2F3066E4568C5EE01A4522 /* NSCharacterSet+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSCharacterSet+HTML.h"; path = "Core/Source/NSCharacterSet+HTML.h"; sourceTree = ""; }; - BCD46BF98238C92C93DACB8B /* Reachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = ""; }; - BCFDB273CD2AEF782D1DE189 /* NSObject+MTLComparisonAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MTLComparisonAdditions.m"; path = "Mantle/NSObject+MTLComparisonAdditions.m"; sourceTree = ""; }; - BD616071F804F598E9B5A2F6 /* Pods-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-dummy.m"; sourceTree = ""; }; - BD767EB3A2FD0B7E73572E95 /* NSString+DTFormatNumbers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTFormatNumbers.m"; path = "Core/Source/NSString+DTFormatNumbers.m"; sourceTree = ""; }; - BDE51FCB690314D17EDD61E1 /* MTLModel+NSCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MTLModel+NSCoding.m"; path = "Mantle/MTLModel+NSCoding.m"; sourceTree = ""; }; - BFC11B9CE25E1851B3DC13E5 /* DTColor+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTColor+Compatibility.h"; path = "Core/Source/DTColor+Compatibility.h"; sourceTree = ""; }; - BFCB508AD9823A7983E5D74A /* NSMutableArray+DTMoving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableArray+DTMoving.h"; path = "Core/Source/NSMutableArray+DTMoving.h"; sourceTree = ""; }; - C02BA88DCE88155CB334FC60 /* Pods-Mantle.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Mantle.xcconfig"; sourceTree = ""; }; - C0359E5CB618AD16D6953ED5 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; - C0B6FBCAF783DCAE22AE62FF /* DTColorFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTColorFunctions.h; path = Core/Source/DTColorFunctions.h; sourceTree = ""; }; - C11CD05B0831E358589D74EE /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/SDImageCache.h; sourceTree = ""; }; - C3C1130B8D9D1B235A06F7E7 /* SBJson4StreamWriterState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamWriterState.h; path = src/main/objc/SBJson4StreamWriterState.h; sourceTree = ""; }; - C60E9150D707BF5135311866 /* Pods-MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-MBProgressHUD-prefix.pch"; sourceTree = ""; }; - C6A3C5E6701A78D0157E3C33 /* DTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTVersion.h; path = Core/Source/DTVersion.h; sourceTree = ""; }; - C792084077E1D79D2046C05C /* NSAttributedStringRunDelegates.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NSAttributedStringRunDelegates.h; path = Core/Source/NSAttributedStringRunDelegates.h; sourceTree = ""; }; - C86ED4DF721FBAD75848E084 /* EGOCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EGOCache.m; sourceTree = ""; }; - C93CDBD644823C4EF1935E68 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/UIImageView+WebCache.h"; sourceTree = ""; }; - CA0B9BE163B0DD38B5562943 /* DTImage+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTImage+HTML.h"; path = "Core/Source/DTImage+HTML.h"; sourceTree = ""; }; - CAED700541E2AB58B1FD0793 /* libPods-DTFoundation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DTFoundation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - CE1973ECA90263EF05256EF0 /* Pods-DTFoundation-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DTFoundation-Private.xcconfig"; sourceTree = ""; }; - CF93413A0C6ADA4A69B0D9FD /* DTDictationPlaceholderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTDictationPlaceholderView.m; path = Core/Source/DTDictationPlaceholderView.m; sourceTree = ""; }; - CFB46630F82D91A70BEFE778 /* MTLJSONAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MTLJSONAdapter.h; path = Mantle/MTLJSONAdapter.h; sourceTree = ""; }; - D02D4EA2FF3CEFC879098F92 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; - D2412896BDB200297D51739E /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/SDWebImageManager.m; sourceTree = ""; }; - D2B1A156DE6B17F6990F581F /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/SDWebImageDownloader.h; sourceTree = ""; }; - D3A601900EB45032F31DC99D /* DTLazyImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLazyImageView.h; path = Core/Source/DTLazyImageView.h; sourceTree = ""; }; - D3CA2F1DF0DDCBF42AF3B13D /* libPods-SDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SDWebImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - D46418981F56A6D2D0388744 /* DTListItemHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTListItemHTMLElement.m; path = Core/Source/DTListItemHTMLElement.m; sourceTree = ""; }; - D50CAD7D886127B4FCC9651B /* AFURLConnectionOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLConnectionOperation.m; path = AFNetworking/AFURLConnectionOperation.m; sourceTree = ""; }; - D5FA03A60C1A71082EFBAF32 /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; - D63F4A713487B21B5ADF502D /* Pods-STableViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-STableViewController-prefix.pch"; sourceTree = ""; }; - D74D946F2FB9D80EC21079B7 /* DTCoreTextFontCollection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFontCollection.h; path = Core/Source/DTCoreTextFontCollection.h; sourceTree = ""; }; - D7676B7849F90ADD8C2A6104 /* DTAttributedTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextView.h; path = Core/Source/DTAttributedTextView.h; sourceTree = ""; }; - D7D014F7A128D766754B5F7F /* DTAccessibilityViewProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAccessibilityViewProxy.m; path = Core/Source/DTAccessibilityViewProxy.m; sourceTree = ""; }; - D7FCE77D05351D39FA2768CA /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/SDWebImageCompat.h; sourceTree = ""; }; - D816D04D8676D443F2953CE2 /* Pods-STableViewController-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-STableViewController-Private.xcconfig"; sourceTree = ""; }; - D8613BDFE36745543E38EB25 /* NSURL+DTUnshorten.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTUnshorten.h"; path = "Core/Source/NSURL+DTUnshorten.h"; sourceTree = ""; }; - DB1B04C922A0CA51D8BB03F0 /* NSURL+DTComparing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTComparing.m"; path = "Core/Source/NSURL+DTComparing.m"; sourceTree = ""; }; - DB21BF9329289D1E434B74DD /* NSCharacterSet+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSCharacterSet+HTML.m"; path = "Core/Source/NSCharacterSet+HTML.m"; sourceTree = ""; }; - DBECAF7E1FE73E71A82AA4E7 /* AFHTTPRequestOperationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperationManager.h; path = AFNetworking/AFHTTPRequestOperationManager.h; sourceTree = ""; }; - DCE55304C9E3886863A46B6A /* DTLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLog.m; path = Core/Source/DTLog.m; sourceTree = ""; }; - DD47B0AED35B1278A00B09EB /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/UIView+WebCacheOperation.h"; sourceTree = ""; }; - DE52400D79B96D2E135A261F /* DTBase64Coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBase64Coding.h; path = Core/Source/DTBase64Coding.h; sourceTree = ""; }; - DE97551E5565C457C3E6A477 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; - DF071B9931D904BEED3CD3DD /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/SDWebImageDownloaderOperation.m; sourceTree = ""; }; - E01E154AA85044DF660072E7 /* Pods-AFNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AFNetworking.xcconfig"; sourceTree = ""; }; - E0F68C07F0EC17F0FCAB39C6 /* NSURL+DTAppLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTAppLinks.h"; path = "Core/Source/iOS/NSURL+DTAppLinks.h"; sourceTree = ""; }; - E14D41414B94B8F4989048E8 /* EXTRuntimeExtensions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXTRuntimeExtensions.h; path = Mantle/extobjc/EXTRuntimeExtensions.h; sourceTree = ""; }; - E1D94DFB649CEDB295722CE3 /* STableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = STableViewController.m; path = STableViewController/STableViewController.m; sourceTree = ""; }; - E2EDC1133539DACE3B7803D2 /* NSObject+MTLComparisonAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MTLComparisonAdditions.h"; path = "Mantle/NSObject+MTLComparisonAdditions.h"; sourceTree = ""; }; - E431F1BD21F4E5EA33AEA3E8 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/SDImageCache.m; sourceTree = ""; }; - E4AF31FDAA6C98777F9E86D5 /* UIWebView+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+DTFoundation.h"; path = "Core/Source/iOS/UIWebView+DTFoundation.h"; sourceTree = ""; }; - E4E68CBBF46EE5DD482F2C04 /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/MediaPlayer.framework; sourceTree = DEVELOPER_DIR; }; - E52B0D5E4A916FFDCDE359B7 /* SBJson4StreamTokeniser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamTokeniser.m; path = src/main/objc/SBJson4StreamTokeniser.m; sourceTree = ""; }; - E7789FE773E9C27341E7FB51 /* NSError+MTLModelException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+MTLModelException.h"; path = "Mantle/NSError+MTLModelException.h"; sourceTree = ""; }; - E840D4D791D3065724828542 /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = ""; }; - E871873953C5494CDDE8BA86 /* SBJson4StreamParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamParser.m; path = src/main/objc/SBJson4StreamParser.m; sourceTree = ""; }; - E94E485A430F7111CBB19E6C /* DTVideoTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTVideoTextAttachment.h; path = Core/Source/DTVideoTextAttachment.h; sourceTree = ""; }; - EA35A5E9CD0A1C5A15D39088 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/CoreText.framework; sourceTree = DEVELOPER_DIR; }; - EAA805FFFDCC2F3DAAD620F4 /* DTIframeTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTIframeTextAttachment.h; path = Core/Source/DTIframeTextAttachment.h; sourceTree = ""; }; - EB19ACC604D00C92DC9913F2 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Pods.debug.xcconfig; sourceTree = ""; }; - ED32489A39CA56F82A8B58D6 /* DTCoreTextFontDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFontDescriptor.h; path = Core/Source/DTCoreTextFontDescriptor.h; sourceTree = ""; }; - EF36058EE813794558E29841 /* DTCoreTextFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFunctions.m; path = Core/Source/DTCoreTextFunctions.m; sourceTree = ""; }; - EFCD1E4528F0F4B030F80E0E /* DTCoreTextLayoutLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutLine.h; path = Core/Source/DTCoreTextLayoutLine.h; sourceTree = ""; }; - F20A15D4F163AA0D25A3B9B5 /* DTAsyncFileDeleter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAsyncFileDeleter.m; path = Core/Source/DTAsyncFileDeleter.m; sourceTree = ""; }; - F224B535A700999FE12BAFE9 /* NSDictionary+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+DTCoreText.m"; path = "Core/Source/NSDictionary+DTCoreText.m"; sourceTree = ""; }; - F311C60317391EA8382FA941 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/UIButton+WebCache.m"; sourceTree = ""; }; - F3FDE928EB700929106ACC31 /* libPods-STableViewController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-STableViewController.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - F4C8CB4FA43CFF8177440E32 /* SBJson4StreamParserState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamParserState.h; path = src/main/objc/SBJson4StreamParserState.h; sourceTree = ""; }; - F52DE06DB5EB4EC57FE16E34 /* Pods-Mantle-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Mantle-Private.xcconfig"; sourceTree = ""; }; - F54AA8AD4C41F9F64CB3CB49 /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; - F55EFAA16869F0908B637564 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; - F655701E7EDC90F5F2D6B40C /* DTHTMLParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParser.m; path = Core/Source/DTHTMLParser/DTHTMLParser.m; sourceTree = ""; }; - F6BA5BF6B3FAD36E8400B33E /* DTCoreTextLayoutFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutFrame.m; path = Core/Source/DTCoreTextLayoutFrame.m; sourceTree = ""; }; - F82201EEEA8068C6B34C7253 /* DTHTMLWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLWriter.h; path = Core/Source/DTHTMLWriter.h; sourceTree = ""; }; - F9D384C3C514918ED5E79089 /* DTBlockFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBlockFunctions.h; path = Core/Source/DTBlockFunctions.h; sourceTree = ""; }; - F9E95148985AF2075E1448A9 /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/UIImage+MultiFormat.m"; sourceTree = ""; }; - FA59845C476487AD0A36BC6B /* Pods-Reachability-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Reachability-prefix.pch"; sourceTree = ""; }; - FB5CD85FF048CAE38B9B839E /* NSError+MTLModelException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+MTLModelException.m"; path = "Mantle/NSError+MTLModelException.m"; sourceTree = ""; }; - FB9B4890E359DB398B1E48B0 /* libPods-AFNetworking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-AFNetworking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; - FCE65F29B4E1D26F9C281A97 /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; - FDC4F3449CACD9982B406C79 /* UIFont+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIFont+DTCoreText.h"; path = "Core/Source/UIFont+DTCoreText.h"; sourceTree = ""; }; - FDEB6D07D34B0BAE39B2E5B8 /* UIFont+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIFont+DTCoreText.m"; path = "Core/Source/UIFont+DTCoreText.m"; sourceTree = ""; }; - FE35E19F4EA7C40A33AF8E0D /* DTWeakSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTWeakSupport.h; path = Core/Source/DTWeakSupport.h; sourceTree = ""; }; - FED9DD0820FEDDE583B415F8 /* Pods-SBJson-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SBJson-prefix.pch"; sourceTree = ""; }; - FEE193EEE84F1FA030D5ABB0 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; }; - FF814FE7ED9C6040D466ABCF /* NSFileManager+Godzippa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSFileManager+Godzippa.h"; path = "Godzippa/NSFileManager+Godzippa.h"; sourceTree = ""; }; - FFEB0A84E6675AEBE0CFE484 /* NSMutableString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableString+HTML.m"; path = "Core/Source/NSMutableString+HTML.m"; sourceTree = ""; }; + 000C7C8E20F34124E0809DB3 /* UIImage+GIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+GIF.h"; path = "SDWebImage/UIImage+GIF.h"; sourceTree = ""; }; + 0111CBCAA13EC54A465F0746 /* DTAttributedTextView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextView.h; path = Core/Source/DTAttributedTextView.h; sourceTree = ""; }; + 016554F1D5DBD110C0A9FAF8 /* UIImage+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+DTFoundation.m"; path = "Core/Source/iOS/UIImage+DTFoundation.m"; sourceTree = ""; }; + 02267995D166E83411B7FA6E /* MTLJSONAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MTLJSONAdapter.h; path = Mantle/MTLJSONAdapter.h; sourceTree = ""; }; + 02284A8207F847282436F7AD /* DTHTMLAttributedStringBuilder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLAttributedStringBuilder.h; path = Core/Source/DTHTMLAttributedStringBuilder.h; sourceTree = ""; }; + 02297CC15BF3E306414B69BD /* DTActivityTitleView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTActivityTitleView.m; path = Core/Source/iOS/DTActivityTitleView.m; sourceTree = ""; }; + 02567E2AFA2ABD2F2C933C40 /* UIButton+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+WebCache.h"; path = "SDWebImage/UIButton+WebCache.h"; sourceTree = ""; }; + 0338FF159AEAE4FBAB5EA8DE /* EXTRuntimeExtensions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXTRuntimeExtensions.m; path = Mantle/extobjc/EXTRuntimeExtensions.m; sourceTree = ""; }; + 0414DCA4C8A0D9FEFA8D0CB2 /* DTListItemHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTListItemHTMLElement.m; path = Core/Source/DTListItemHTMLElement.m; sourceTree = ""; }; + 043D98647761B600A32F118F /* Pods-Godzippa-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Godzippa-Private.xcconfig"; sourceTree = ""; }; + 044DC8C7F9205B47C61B7091 /* NSScanner+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSScanner+HTML.h"; path = "Core/Source/NSScanner+HTML.h"; sourceTree = ""; }; + 053E650D0FAE12D024D858D0 /* libPods-MJRefresh.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MJRefresh.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 0546F3C3A3284709F421382A /* NSString+DTPaths.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTPaths.m"; path = "Core/Source/NSString+DTPaths.m"; sourceTree = ""; }; + 05BD0FA1310754768903BD03 /* SBJson4StreamWriterState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamWriterState.h; path = src/main/objc/SBJson4StreamWriterState.h; sourceTree = ""; }; + 05ED87CBC8DC6A907A84AD2A /* DTHTMLParserTextNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParserTextNode.m; path = Core/Source/DTHTMLParserTextNode.m; sourceTree = ""; }; + 070F3F5B859156F2E1935C36 /* Pods-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-dummy.m"; sourceTree = ""; }; + 09B84FF607C97FBFEA9CEE6F /* SBJson4StreamParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamParser.h; path = src/main/objc/SBJson4StreamParser.h; sourceTree = ""; }; + 09E5FA8F17EC2E65ADAAADCF /* DTTextBlock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextBlock.h; path = Core/Source/DTTextBlock.h; sourceTree = ""; }; + 09E8DECB7BF75BA0244B2071 /* DTCoreTextFontDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFontDescriptor.m; path = Core/Source/DTCoreTextFontDescriptor.m; sourceTree = ""; }; + 09EAFDAD063EDC00096089DB /* SBJson4StreamWriterState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamWriterState.m; path = src/main/objc/SBJson4StreamWriterState.m; sourceTree = ""; }; + 0A482D8F45EBE17D716551A2 /* DTCoreTextFontCollection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFontCollection.h; path = Core/Source/DTCoreTextFontCollection.h; sourceTree = ""; }; + 0ADDF9071F468C9B000996C8 /* DTCoreTextGlyphRun.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextGlyphRun.h; path = Core/Source/DTCoreTextGlyphRun.h; sourceTree = ""; }; + 0C1064303DF3B737DA725814 /* UIButton+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+WebCache.m"; path = "SDWebImage/UIButton+WebCache.m"; sourceTree = ""; }; + 0CB61A9012F7783015E18B7B /* Mantle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Mantle.h; path = Mantle/Mantle.h; sourceTree = ""; }; + 0CD381B22C0C351795FA961B /* DTFolderMonitor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTFolderMonitor.h; path = Core/Source/DTFolderMonitor.h; sourceTree = ""; }; + 0DBF7BFED66DEA608EE98F79 /* MTLJSONAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MTLJSONAdapter.m; path = Mantle/MTLJSONAdapter.m; sourceTree = ""; }; + 0DEB70690586C98E99677DF6 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutFrameAccessibilityElementGenerator.h; path = Core/Source/DTCoreTextLayoutFrameAccessibilityElementGenerator.h; sourceTree = ""; }; + 0DFC802C0A6071810B82B253 /* libPods.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libPods.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 0EE45DCFC5E46ECBA0783341 /* Pods-DTFoundation-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DTFoundation-prefix.pch"; sourceTree = ""; }; + 0F3FAAAEBB793D8BD8F6B7AB /* Pods-EGOCache-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-EGOCache-prefix.pch"; sourceTree = ""; }; + 0FE4C73D317A76FA9C7AE4B2 /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImagePrefetcher.h; path = SDWebImage/SDWebImagePrefetcher.h; sourceTree = ""; }; + 0FFDB42E147E3F4AC3BD515A /* NSMutableArray+DTMoving.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableArray+DTMoving.m"; path = "Core/Source/NSMutableArray+DTMoving.m"; sourceTree = ""; }; + 10AD45869DE0C509621F9E38 /* Pods-EGOCache-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-EGOCache-dummy.m"; sourceTree = ""; }; + 10E13906FA92C4B9CF1CEA8B /* SBJson4Writer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4Writer.h; path = src/main/objc/SBJson4Writer.h; sourceTree = ""; }; + 10E66F61731BC4E063DE4062 /* NSValueTransformer+MTLInversionAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSValueTransformer+MTLInversionAdditions.m"; path = "Mantle/NSValueTransformer+MTLInversionAdditions.m"; sourceTree = ""; }; + 10FEB6C385D0B97A813899C3 /* SBJson4Parser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4Parser.m; path = src/main/objc/SBJson4Parser.m; sourceTree = ""; }; + 11123DE0038FC1BD0EB81C7B /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIProgressView+AFNetworking.h"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.h"; sourceTree = ""; }; + 1198240109E0FF9B776C4A37 /* MTLValueTransformer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MTLValueTransformer.m; path = Mantle/MTLValueTransformer.m; sourceTree = ""; }; + 12CAC97CA7D7C1588D4A140F /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+WebCacheOperation.h"; path = "SDWebImage/UIView+WebCacheOperation.h"; sourceTree = ""; }; + 148DEBCC24AB506B6C316DCD /* DTAccessibilityElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAccessibilityElement.m; path = Core/Source/DTAccessibilityElement.m; sourceTree = ""; }; + 14B01793281B15823DA8AB70 /* Pods-STableViewController-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-STableViewController-prefix.pch"; sourceTree = ""; }; + 14E0B24681D42846B0CD9A3B /* NSData+Godzippa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+Godzippa.m"; path = "Godzippa/NSData+Godzippa.m"; sourceTree = ""; }; + 155778E11B2A513DDDAEF986 /* DTLog.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLog.h; path = Core/Source/DTLog.h; sourceTree = ""; }; + 1569D676E63A0FD1BC54FB04 /* DTCoreTextLayoutFrame+Cursor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTCoreTextLayoutFrame+Cursor.m"; path = "Core/Source/DTCoreTextLayoutFrame+Cursor.m"; sourceTree = ""; }; + 1803F7DA4A6EF54918CD8DAB /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefreshExample/MJRefreshExample/MJRefresh/UIView+MJExtension.h"; sourceTree = ""; }; + 19360A8F7BDBEE56A4499368 /* MTLManagedObjectAdapter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MTLManagedObjectAdapter.m; path = Mantle/MTLManagedObjectAdapter.m; sourceTree = ""; }; + 1B659E68785F55141EB11EE7 /* default.css.c */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.c; name = default.css.c; path = Core/Source/default.css.c; sourceTree = ""; }; + 1B6C1077FF5B5CE830E38ED8 /* DTFoundationConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTFoundationConstants.m; path = Core/Source/DTFoundationConstants.m; sourceTree = ""; }; + 1C4485F4C42846C2279D9B3C /* libPods-SDWebImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SDWebImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1D67FE333691046E4CB8302C /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshHeader.m; sourceTree = ""; }; + 1E596786EA619668160B3663 /* DTCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCompatibility.h; path = Core/Source/DTCompatibility.h; sourceTree = ""; }; + 1FAA7411D6D971B73B99F6D3 /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIProgressView+AFNetworking.m"; path = "UIKit+AFNetworking/UIProgressView+AFNetworking.m"; sourceTree = ""; }; + 2089825488BA852B53109B98 /* SDWebImageCompat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageCompat.m; path = SDWebImage/SDWebImageCompat.m; sourceTree = ""; }; + 20C1566CF6ACC33C01D5FD71 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; }; + 20D928D2843510C0E5CBFF97 /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIActivityIndicatorView+AFNetworking.m"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.m"; sourceTree = ""; }; + 218C23F30E34325AF887D15E /* Pods-DTFoundation.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DTFoundation.xcconfig"; sourceTree = ""; }; + 22AC81C0620BA21E6E75DE8B /* Pods-MBProgressHUD-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-MBProgressHUD-prefix.pch"; sourceTree = ""; }; + 22DC7F7C26F943CC883DABEC /* Pods-SDWebImage-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SDWebImage-Private.xcconfig"; sourceTree = ""; }; + 23308DE32C980BD290D12A4B /* NSMutableString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableString+HTML.m"; path = "Core/Source/NSMutableString+HTML.m"; sourceTree = ""; }; + 234F1B433F201823EDFA1E6E /* NSString+CSS.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+CSS.m"; path = "Core/Source/NSString+CSS.m"; sourceTree = ""; }; + 243AFC2DD859405081EB0853 /* Pods-SBJson-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SBJson-prefix.pch"; sourceTree = ""; }; + 24549194CFAFFDC9DDED662B /* DTAttributedTextContentView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextContentView.h; path = Core/Source/DTAttributedTextContentView.h; sourceTree = ""; }; + 26C9F48A9F0BC01C9500E750 /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+HighlightedWebCache.h"; path = "SDWebImage/UIImageView+HighlightedWebCache.h"; sourceTree = ""; }; + 272D39690151F2016FF485C2 /* NSDictionary+MTLManipulationAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+MTLManipulationAdditions.h"; path = "Mantle/NSDictionary+MTLManipulationAdditions.h"; sourceTree = ""; }; + 27C0477001CA531D8F675E00 /* Pods-Mantle-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Mantle-prefix.pch"; sourceTree = ""; }; + 27C436A1B9330F8576D3D27E /* libPods-Godzippa.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Godzippa.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 28542C81679EC1F5BE13B85D /* MBProgressHUD.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = ""; }; + 286208A4C4A2A5532D103394 /* metamacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = metamacros.h; path = Mantle/extobjc/metamacros.h; sourceTree = ""; }; + 2931671231F2BF356C7EAEAC /* SDWebImageCompat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageCompat.h; path = SDWebImage/SDWebImageCompat.h; sourceTree = ""; }; + 2ADF5358C353032A4C980480 /* NSFileWrapper+DTCopying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSFileWrapper+DTCopying.h"; path = "Core/Source/NSFileWrapper+DTCopying.h"; sourceTree = ""; }; + 2AEE9E5C80C90AF637A41B1D /* EXTRuntimeExtensions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXTRuntimeExtensions.h; path = Mantle/extobjc/EXTRuntimeExtensions.h; sourceTree = ""; }; + 2B66DC6C098625298FDCAD16 /* UIView+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+DTFoundation.h"; path = "Core/Source/iOS/UIView+DTFoundation.h"; sourceTree = ""; }; + 2C66CCE611914E181AD7F1F5 /* STableViewController.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = STableViewController.h; path = STableViewController/STableViewController.h; sourceTree = ""; }; + 2CF9B41C27A9903229B4D678 /* NSURL+DTComparing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTComparing.h"; path = "Core/Source/NSURL+DTComparing.h"; sourceTree = ""; }; + 2CFB20E08EB3F41ABA5F07D0 /* Pods-Reachability-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Reachability-dummy.m"; sourceTree = ""; }; + 2E48888E05ABEED31745F4E6 /* libPods-EGOCache.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-EGOCache.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2EC05C5B2AC470186E038E3F /* DTAsyncFileDeleter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAsyncFileDeleter.h; path = Core/Source/DTAsyncFileDeleter.h; sourceTree = ""; }; + 2F6688E0FD46351AE98ED8E7 /* NSDictionary+DTError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+DTError.h"; path = "Core/Source/NSDictionary+DTError.h"; sourceTree = ""; }; + 2FBF0F645D702F931F268E9E /* EXTScope.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = EXTScope.m; path = Mantle/extobjc/EXTScope.m; sourceTree = ""; }; + 306DD73F546D8F8A8EABA570 /* DTBreakHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBreakHTMLElement.h; path = Core/Source/DTBreakHTMLElement.h; sourceTree = ""; }; + 30EF123E79EC9F1A86F2FB80 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifHeader.m; sourceTree = ""; }; + 30F3F9E01B43C34729A44800 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFSecurityPolicy.h; path = AFNetworking/AFSecurityPolicy.h; sourceTree = ""; }; + 319687905BA188E79179D100 /* DTHTMLAttributedStringBuilder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLAttributedStringBuilder.m; path = Core/Source/DTHTMLAttributedStringBuilder.m; sourceTree = ""; }; + 320C4B3C2C920938601B4305 /* SBJson4StreamTokeniser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamTokeniser.m; path = src/main/objc/SBJson4StreamTokeniser.m; sourceTree = ""; }; + 337FFFD4E19E5FEE3B22903C /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLRequestSerialization.m; path = AFNetworking/AFURLRequestSerialization.m; sourceTree = ""; }; + 34D8B3FF86517D1908DF722D /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+MultiFormat.m"; path = "SDWebImage/UIImage+MultiFormat.m"; sourceTree = ""; }; + 34E2230D1DF25D9C76EEE3BA /* DTBase64Coding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBase64Coding.h; path = Core/Source/DTBase64Coding.h; sourceTree = ""; }; + 365283556A4FFE038B8368A7 /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIKit+AFNetworking.h"; path = "UIKit+AFNetworking/UIKit+AFNetworking.h"; sourceTree = ""; }; + 3670C7769C590549B0C44E1D /* DTObjectTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTObjectTextAttachment.h; path = Core/Source/DTObjectTextAttachment.h; sourceTree = ""; }; + 3696ED74324B48504AA37EDC /* DTCSSStylesheet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCSSStylesheet.h; path = Core/Source/DTCSSStylesheet.h; sourceTree = ""; }; + 36F28FF07FEBCD953A6BF6AF /* UIView+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+DTFoundation.m"; path = "Core/Source/iOS/UIView+DTFoundation.m"; sourceTree = ""; }; + 37533697C6A34D1B83B33C24 /* DTHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLElement.m; path = Core/Source/DTHTMLElement.m; sourceTree = ""; }; + 37CAD4D7A0AEA3B3C94B73BE /* DTLazyImageView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLazyImageView.m; path = Core/Source/DTLazyImageView.m; sourceTree = ""; }; + 38824C80AA03F622FF5609CD /* NSMutableArray+DTMoving.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableArray+DTMoving.h"; path = "Core/Source/NSMutableArray+DTMoving.h"; sourceTree = ""; }; + 39293F16EE02408BB628602B /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloaderOperation.h; path = SDWebImage/SDWebImageDownloaderOperation.h; sourceTree = ""; }; + 39A1C34F923602E69F92BFDE /* UIFont+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIFont+DTCoreText.h"; path = "Core/Source/UIFont+DTCoreText.h"; sourceTree = ""; }; + 39E350355D4CDA7345039AA1 /* NSString+Paragraphs.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+Paragraphs.h"; path = "Core/Source/NSString+Paragraphs.h"; sourceTree = ""; }; + 3CB8ABE55CC35E6B1DD6EB1B /* NSAttributedString+DTDebug.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DTDebug.m"; path = "Core/Source/NSAttributedString+DTDebug.m"; sourceTree = ""; }; + 3D8E2AA6030AF427437E83FD /* Pods-Reachability-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Reachability-prefix.pch"; sourceTree = ""; }; + 3E978A5700527A930D7D1B6C /* DTStylesheetHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTStylesheetHTMLElement.m; path = Core/Source/DTStylesheetHTMLElement.m; sourceTree = ""; }; + 3E9CAEF7849C7310918D8E32 /* NSError+MTLModelException.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSError+MTLModelException.m"; path = "Mantle/NSError+MTLModelException.m"; sourceTree = ""; }; + 3EDF560E4F5DC163CFD3BCD3 /* NSScanner+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSScanner+HTML.m"; path = "Core/Source/NSScanner+HTML.m"; sourceTree = ""; }; + 3F710767E010692A479E81A8 /* UIWebView+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+DTFoundation.h"; path = "Core/Source/iOS/UIWebView+DTFoundation.h"; sourceTree = ""; }; + 3F785BCBA9B7F64378E76278 /* MJRefreshLegendFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshLegendFooter.h; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendFooter.h; sourceTree = ""; }; + 4207141FCF781427DE11D23B /* NSData+ImageContentType.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+ImageContentType.m"; path = "SDWebImage/NSData+ImageContentType.m"; sourceTree = ""; }; + 425566B984B0A4BCA253D006 /* DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreText.h; path = Core/Source/DTCoreText.h; sourceTree = ""; }; + 42A2C07608DCFE0ADD03E8BD /* DTDictationPlaceholderView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTDictationPlaceholderView.m; path = Core/Source/DTDictationPlaceholderView.m; sourceTree = ""; }; + 42F04B328F71757BD504E292 /* DTIframeTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTIframeTextAttachment.m; path = Core/Source/DTIframeTextAttachment.m; sourceTree = ""; }; + 43E49596A789FBF422F82CB3 /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIWebView+AFNetworking.h"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.h"; sourceTree = ""; }; + 44FA4F56DE2750802DDF3E7D /* NSAttributedString+DTDebug.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DTDebug.h"; path = "Core/Source/NSAttributedString+DTDebug.h"; sourceTree = ""; }; + 4675B125EF5ADBB90CEA3374 /* DTCoreTextLayouter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayouter.m; path = Core/Source/DTCoreTextLayouter.m; sourceTree = ""; }; + 4675BAADC653074EB3762AB3 /* libPods-SBJson.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SBJson.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 46BBD8CD798A9C6A959B2F9C /* AFHTTPRequestOperationManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperationManager.h; path = AFNetworking/AFHTTPRequestOperationManager.h; sourceTree = ""; }; + 46FB8C8725057434D48E2858 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkReachabilityManager.m; path = AFNetworking/AFNetworkReachabilityManager.m; sourceTree = ""; }; + 4750630460C4BF10955C50F5 /* SBJson4Parser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4Parser.h; path = src/main/objc/SBJson4Parser.h; sourceTree = ""; }; + 4800D6896DDF29D0676A963A /* libPods-Reachability.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Reachability.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 4847BB93AAE212547B53AC4C /* NSString+DTUtilities.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTUtilities.h"; path = "Core/Source/NSString+DTUtilities.h"; sourceTree = ""; }; + 4970587FBCB99927707153C7 /* SDWebImageDecoder.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDecoder.m; path = SDWebImage/SDWebImageDecoder.m; sourceTree = ""; }; + 49732D6B3FAC6FA975BA8B57 /* NSURL+DTAppLinks.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTAppLinks.h"; path = "Core/Source/iOS/NSURL+DTAppLinks.h"; sourceTree = ""; }; + 499918F35DCBA4F2298533F3 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLResponseSerialization.h; path = AFNetworking/AFURLResponseSerialization.h; sourceTree = ""; }; + 49AB829E61E71E2B8119ABA5 /* DTAsyncFileDeleter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAsyncFileDeleter.m; path = Core/Source/DTAsyncFileDeleter.m; sourceTree = ""; }; + 4A2144565633C90B3C594FED /* DTCSSStylesheet.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCSSStylesheet.m; path = Core/Source/DTCSSStylesheet.m; sourceTree = ""; }; + 4AC683F0D93BD0059752887D /* DTCoreTextFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFunctions.m; path = Core/Source/DTCoreTextFunctions.m; sourceTree = ""; }; + 4B1D5C4891F77D6629DCD612 /* Pods-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-acknowledgements.plist"; sourceTree = ""; }; + 4DBFAFDF68A673A50270352B /* MTLValueTransformer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MTLValueTransformer.h; path = Mantle/MTLValueTransformer.h; sourceTree = ""; }; + 4EB3E403669E23800E28A5B7 /* DTAccessibilityElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAccessibilityElement.h; path = Core/Source/DTAccessibilityElement.h; sourceTree = ""; }; + 4ED3BBB64F7701D817161278 /* DTImageTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTImageTextAttachment.m; path = Core/Source/DTImageTextAttachment.m; sourceTree = ""; }; + 4F2DF4152986932E452C878E /* Pods-AFNetworking-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AFNetworking-prefix.pch"; sourceTree = ""; }; + 4F2E55C6466ED5FD349BC1A9 /* Pods-SDWebImage-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SDWebImage-dummy.m"; sourceTree = ""; }; + 4F71A29574E0B380FE804D63 /* Pods-SecureUDID-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SecureUDID-Private.xcconfig"; sourceTree = ""; }; + 4F72F40D140F09B394AAEE86 /* NSString+DTPaths.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTPaths.h"; path = "Core/Source/NSString+DTPaths.h"; sourceTree = ""; }; + 4F7C8832258AE8D64AD6EB22 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPSessionManager.h; path = AFNetworking/AFHTTPSessionManager.h; sourceTree = ""; }; + 503A291995410E5B5A763B2D /* Pods-Godzippa-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Godzippa-dummy.m"; sourceTree = ""; }; + 51DA841889AC7CDBDC4EEC6E /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = ""; }; + 51EC2D065396A6C2D8A571D6 /* NSDictionary+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+DTCoreText.m"; path = "Core/Source/NSDictionary+DTCoreText.m"; sourceTree = ""; }; + 51F816C7B2A3D31378A7677E /* Pods-MBProgressHUD-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-MBProgressHUD-dummy.m"; sourceTree = ""; }; + 52247F1042D0F039DD844309 /* Pods-DTFoundation-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DTFoundation-Private.xcconfig"; sourceTree = ""; }; + 533693CAE3A5D5A92C7CA2B7 /* NSAttributedString+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+DTCoreText.m"; path = "Core/Source/NSAttributedString+DTCoreText.m"; sourceTree = ""; }; + 53816A84E2AE1459E9514BC5 /* UIImage+GIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImage+GIF.m"; path = "SDWebImage/UIImage+GIF.m"; sourceTree = ""; }; + 539798AD51FB8DC0BD6B0E2A /* DTTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextAttachment.h; path = Core/Source/DTTextAttachment.h; sourceTree = ""; }; + 540C1ACAE6662D1616D6CC6D /* Pods-MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-MJRefresh-prefix.pch"; sourceTree = ""; }; + 54154F8BD9FC16F347D72760 /* DTHTMLParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParser.m; path = Core/Source/DTHTMLParser/DTHTMLParser.m; sourceTree = ""; }; + 55E04A8B77AF2CE09FB706A1 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Security.framework; sourceTree = DEVELOPER_DIR; }; + 56D14654DC8077D93D2A1E02 /* Pods-SecureUDID.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SecureUDID.xcconfig"; sourceTree = ""; }; + 576D95F49662885C9F88275D /* Pods-EGOCache-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EGOCache-Private.xcconfig"; sourceTree = ""; }; + 577229D8F9639E6E12F3384D /* Pods-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-acknowledgements.markdown"; sourceTree = ""; }; + 57CBAECC87D95F8EDCB43392 /* Pods-SecureUDID-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SecureUDID-dummy.m"; sourceTree = ""; }; + 57E5F26122F2FB06F884C15A /* DTCoreGraphicsUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreGraphicsUtils.h; path = Core/Source/DTCoreGraphicsUtils.h; sourceTree = ""; }; + 58AB7EDBD11A4580DE48181E /* DTAttributedTextContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextContentView.m; path = Core/Source/DTAttributedTextContentView.m; sourceTree = ""; }; + 59658FE86151B90EC9F3BE27 /* DTIframeTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTIframeTextAttachment.h; path = Core/Source/DTIframeTextAttachment.h; sourceTree = ""; }; + 596D48C47A75A30F8F476EF7 /* DTTiledLayerWithoutFade.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTiledLayerWithoutFade.h; path = Core/Source/iOS/DTTiledLayerWithoutFade.h; sourceTree = ""; }; + 5A049A3C50CE466C4E012A2E /* AFHTTPRequestOperationManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperationManager.m; path = AFNetworking/AFHTTPRequestOperationManager.m; sourceTree = ""; }; + 5A0F5FB33E256EFCE938303C /* DTColor+Compatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTColor+Compatibility.h"; path = "Core/Source/DTColor+Compatibility.h"; sourceTree = ""; }; + 5A1335E83B09E0425099AB9E /* DTLog.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLog.m; path = Core/Source/DTLog.m; sourceTree = ""; }; + 5A9EFA1E9B05357190D9172E /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+AFNetworking.m"; path = "UIKit+AFNetworking/UIWebView+AFNetworking.m"; sourceTree = ""; }; + 5AC655EBA4D1C6760F814C3F /* NSFileWrapper+DTCopying.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSFileWrapper+DTCopying.m"; path = "Core/Source/NSFileWrapper+DTCopying.m"; sourceTree = ""; }; + 5B6AF433338EC4AC033A9181 /* DTVersion.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTVersion.m; path = Core/Source/DTVersion.m; sourceTree = ""; }; + 5BFCE43BFE1BE917E23BA9CE /* NSData+ImageContentType.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+ImageContentType.h"; path = "SDWebImage/NSData+ImageContentType.h"; sourceTree = ""; }; + 5C9CE7FF98D4D9258B432D6A /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImagePrefetcher.m; path = SDWebImage/SDWebImagePrefetcher.m; sourceTree = ""; }; + 5CCC7AC0562537FEB44115A4 /* NSString+CSS.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+CSS.h"; path = "Core/Source/NSString+CSS.h"; sourceTree = ""; }; + 5E2A76CCC4F20D18844F698C /* NSString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+HTML.m"; path = "Core/Source/NSString+HTML.m"; sourceTree = ""; }; + 5EA4D2B9D7DADFFFFBB8C962 /* Pods-SecureUDID-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SecureUDID-prefix.pch"; sourceTree = ""; }; + 61383BAC381EA9F53764205F /* SecureUDID.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = SecureUDID.m; sourceTree = ""; }; + 622F4B3E7D7A4AECD2871F39 /* DTAttributedLabel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedLabel.m; path = Core/Source/DTAttributedLabel.m; sourceTree = ""; }; + 6242A9BEC50022E7229F5D08 /* NSAttributedString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+HTML.h"; path = "Core/Source/NSAttributedString+HTML.h"; sourceTree = ""; }; + 62C8D3C5B2D9903F6B8D9DD2 /* Pods-Godzippa-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-Godzippa-prefix.pch"; sourceTree = ""; }; + 638F50533EF02B8CDCA92EDC /* Pods-EGOCache.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-EGOCache.xcconfig"; sourceTree = ""; }; + 64BD8CA15822F6A5D7114EE5 /* SDWebImageOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageOperation.h; path = SDWebImage/SDWebImageOperation.h; sourceTree = ""; }; + 663130FDE5B7DD0A2641EB9D /* DTBlockFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTBlockFunctions.h; path = Core/Source/DTBlockFunctions.h; sourceTree = ""; }; + 69A1F0BE372389DA46197303 /* MJRefreshLegendHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshLegendHeader.m; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendHeader.m; sourceTree = ""; }; + 6C0F24BC2B49183DD4CDCD44 /* Pods-AFNetworking-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AFNetworking-dummy.m"; sourceTree = ""; }; + 6DED580510E29228D84B181C /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Pods.debug.xcconfig; sourceTree = ""; }; + 6EE3DD7AA93E5C3165EADD31 /* DTAttributedTextCell.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextCell.m; path = Core/Source/DTAttributedTextCell.m; sourceTree = ""; }; + 6F4E8F22347EFC734538CC8B /* DTAccessibilityViewProxy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAccessibilityViewProxy.m; path = Core/Source/DTAccessibilityViewProxy.m; sourceTree = ""; }; + 6F6BBE8AF6052FBE8F7598DD /* SBJson4StreamTokeniser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamTokeniser.h; path = src/main/objc/SBJson4StreamTokeniser.h; sourceTree = ""; }; + 6FCD29A7ED59ACB691B908DD /* DTCoreTextLayoutLine.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutLine.m; path = Core/Source/DTCoreTextLayoutLine.m; sourceTree = ""; }; + 70BE3A9C24806ADF38059D79 /* SDWebImageManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageManager.m; path = SDWebImage/SDWebImageManager.m; sourceTree = ""; }; + 7177B72C59C85460D5052B06 /* NSDictionary+DTError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+DTError.m"; path = "Core/Source/NSDictionary+DTError.m"; sourceTree = ""; }; + 73327572566D7640FD245B2A /* DTPieProgressIndicator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTPieProgressIndicator.m; path = Core/Source/iOS/DTPieProgressIndicator.m; sourceTree = ""; }; + 735C2D06848839B5B1750A09 /* NSMutableAttributedString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSMutableAttributedString+HTML.m"; path = "Core/Source/NSMutableAttributedString+HTML.m"; sourceTree = ""; }; + 73CEA0FB979ED40EC2A6B6BC /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshComponent.h; sourceTree = ""; }; + 74503AAA593FD430ACC0474E /* AFURLConnectionOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLConnectionOperation.h; path = AFNetworking/AFURLConnectionOperation.h; sourceTree = ""; }; + 74AC06D02C0D9C5BA41A0675 /* DTFolderMonitor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTFolderMonitor.m; path = Core/Source/DTFolderMonitor.m; sourceTree = ""; }; + 75148258B54D8B8313FE17F3 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPSessionManager.m; path = AFNetworking/AFHTTPSessionManager.m; sourceTree = ""; }; + 755D62429655E5D59DD7F71D /* NSFileManager+Godzippa.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSFileManager+Godzippa.m"; path = "Godzippa/NSFileManager+Godzippa.m"; sourceTree = ""; }; + 756716097FFEF7DF57ABDADA /* DTAnimatedGIF.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAnimatedGIF.m; path = Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.m; sourceTree = ""; }; + 75CADB59E864B3C4B66EE1C2 /* ImageIO.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ImageIO.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/ImageIO.framework; sourceTree = DEVELOPER_DIR; }; + 773442E765A1C63F2FE4C7A7 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; }; + 7759495D676C2716B5C752A2 /* DTListItemHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTListItemHTMLElement.h; path = Core/Source/DTListItemHTMLElement.h; sourceTree = ""; }; + 7769048F02C4CA9F2EDF56FB /* EXTScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXTScope.h; path = Mantle/extobjc/EXTScope.h; sourceTree = ""; }; + 78733D989F9F73E37027C410 /* NSValueTransformer+MTLPredefinedTransformerAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSValueTransformer+MTLPredefinedTransformerAdditions.m"; path = "Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.m"; sourceTree = ""; }; + 787874207266EB6FAABD051A /* DTCoreTextLayoutFrame.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutFrame.h; path = Core/Source/DTCoreTextLayoutFrame.h; sourceTree = ""; }; + 799A3F011EE9572BE76485F5 /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIButton+AFNetworking.h"; path = "UIKit+AFNetworking/UIButton+AFNetworking.h"; sourceTree = ""; }; + 7AA0FD965C5FBB1287C48E48 /* DTExtendedFileAttributes.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTExtendedFileAttributes.h; path = Core/Source/DTExtendedFileAttributes.h; sourceTree = ""; }; + 7B4E1FCB0CDB86A8C3132D2B /* MBProgressHUD.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = ""; }; + 7BBF2A6202CA507D30D3476A /* NSURL+DTUnshorten.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSURL+DTUnshorten.h"; path = "Core/Source/NSURL+DTUnshorten.h"; sourceTree = ""; }; + 7BC113614F7136493658DF3D /* MTLReflection.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MTLReflection.h; path = Mantle/MTLReflection.h; sourceTree = ""; }; + 7C0CF15C9EC35C2E7049DE73 /* AFURLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLSessionManager.h; path = AFNetworking/AFURLSessionManager.h; sourceTree = ""; }; + 7CB88CB32F99B23A91737376 /* DTCoreTextLayouter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayouter.h; path = Core/Source/DTCoreTextLayouter.h; sourceTree = ""; }; + 7EF4F9B8E1DE4E5EC5ADEADA /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+AFNetworking.m"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.m"; sourceTree = ""; }; + 7FA2010E282D8967EE2214B2 /* DTWebVideoView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTWebVideoView.h; path = Core/Source/DTWebVideoView.h; sourceTree = ""; }; + 80F2C8CC2597851350219120 /* DTAccessibilityViewProxy.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAccessibilityViewProxy.h; path = Core/Source/DTAccessibilityViewProxy.h; sourceTree = ""; }; + 811C72238540E10D821E509F /* DTBlockFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBlockFunctions.m; path = Core/Source/DTBlockFunctions.m; sourceTree = ""; }; + 824F3205D3AFC48DF86294BD /* DTHTMLWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLWriter.m; path = Core/Source/DTHTMLWriter.m; sourceTree = ""; }; + 82CC48C7AD519486AEE6522C /* MobileCoreServices.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MobileCoreServices.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/MobileCoreServices.framework; sourceTree = DEVELOPER_DIR; }; + 8312AECB034C2BC0914BFAAF /* NSObject+MTLComparisonAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSObject+MTLComparisonAdditions.h"; path = "Mantle/NSObject+MTLComparisonAdditions.h"; sourceTree = ""; }; + 836D171FF07483A75E6861A1 /* DTCoreTextLayoutFrame+Cursor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTCoreTextLayoutFrame+Cursor.h"; path = "Core/Source/DTCoreTextLayoutFrame+Cursor.h"; sourceTree = ""; }; + 843417D7C9BE78F634ED964E /* DTLinkButton.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLinkButton.h; path = Core/Source/DTLinkButton.h; sourceTree = ""; }; + 853BA32A4A24F1EE925CEB3E /* Pods-SDWebImage-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-SDWebImage-prefix.pch"; sourceTree = ""; }; + 8548215E6816926EBD286077 /* AFHTTPRequestOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFHTTPRequestOperation.m; path = AFNetworking/AFHTTPRequestOperation.m; sourceTree = ""; }; + 85EDAE7F553BE9B9025A5BBE /* NSAttributedString+SmallCaps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+SmallCaps.h"; path = "Core/Source/NSAttributedString+SmallCaps.h"; sourceTree = ""; }; + 8603AA1F5FB93FC0461DE390 /* DTCustomColoredAccessory.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCustomColoredAccessory.m; path = Core/Source/iOS/DTCustomColoredAccessory.m; sourceTree = ""; }; + 862B69EC37D1700792222296 /* Pods-Reachability-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Reachability-Private.xcconfig"; sourceTree = ""; }; + 87F422B2E0D48E37DAC11B50 /* MJRefreshGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifFooter.m; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifFooter.m; sourceTree = ""; }; + 8831276CD46A5B60D74C2BAC /* MTLModel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MTLModel.h; path = Mantle/MTLModel.h; sourceTree = ""; }; + 88996DCFB9C20647C811521A /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshConst.m; sourceTree = ""; }; + 88E74D6057B5692DADC10F93 /* Pods-SBJson-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SBJson-Private.xcconfig"; sourceTree = ""; }; + 8B2778A2CBCC22A5EBAD6A04 /* DTHorizontalRuleHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHorizontalRuleHTMLElement.h; path = Core/Source/DTHorizontalRuleHTMLElement.h; sourceTree = ""; }; + 8B7C124E5CCC2A6FF542A2DD /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; + 8BA13D397123DD418D9A5557 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFSecurityPolicy.m; path = AFNetworking/AFSecurityPolicy.m; sourceTree = ""; }; + 8BB919BCAFB78FEB1758A4DC /* DTCoreTextLayoutFrame.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutFrame.m; path = Core/Source/DTCoreTextLayoutFrame.m; sourceTree = ""; }; + 8BDFB7E4C0AAC71A08B0A6CC /* DTCoreTextParagraphStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextParagraphStyle.m; path = Core/Source/DTCoreTextParagraphStyle.m; sourceTree = ""; }; + 8D7624987F033F98039FBAA9 /* NSString+DTUtilities.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTUtilities.m"; path = "Core/Source/NSString+DTUtilities.m"; sourceTree = ""; }; + 8DB836771DC16F4553F6187C /* Pods-SBJson-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-SBJson-dummy.m"; sourceTree = ""; }; + 8E7C41887C23810EB51DD0A0 /* Pods-STableViewController-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-STableViewController-dummy.m"; sourceTree = ""; }; + 90370D6EA53E520AF4DD96ED /* Pods-MJRefresh-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MJRefresh-Private.xcconfig"; sourceTree = ""; }; + 905830A7C598494CA2F91F4C /* MJRefreshGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifFooter.h; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifFooter.h; sourceTree = ""; }; + 910112F4F3EB875F4AA0D908 /* DTCSSListStyle.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCSSListStyle.m; path = Core/Source/DTCSSListStyle.m; sourceTree = ""; }; + 9268DFFDA72C1B913AEBDAC9 /* DTHorizontalRuleHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHorizontalRuleHTMLElement.m; path = Core/Source/DTHorizontalRuleHTMLElement.m; sourceTree = ""; }; + 92DD137860918A2914D09FBE /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloaderOperation.m; path = SDWebImage/SDWebImageDownloaderOperation.m; sourceTree = ""; }; + 930A0AB4C8E7F92D743F8FB7 /* UIAlertView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIAlertView+AFNetworking.h"; path = "UIKit+AFNetworking/UIAlertView+AFNetworking.h"; sourceTree = ""; }; + 9363BC239F7CCC502F0109FD /* NSURL+DTComparing.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTComparing.m"; path = "Core/Source/NSURL+DTComparing.m"; sourceTree = ""; }; + 9447CAF1045E27BEEDA3F476 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJExtension.m"; sourceTree = ""; }; + 9520C2A2987FE0DFD1CC4197 /* DTVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTVersion.h; path = Core/Source/DTVersion.h; sourceTree = ""; }; + 96B8523A07E3B9C83A16BC62 /* DTCoreTextFontCollection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextFontCollection.m; path = Core/Source/DTCoreTextFontCollection.m; sourceTree = ""; }; + 976E8ED367ED5D8851AFBD7F /* Pods-Mantle-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-Mantle-dummy.m"; sourceTree = ""; }; + 97B8EB9DDB15EC1FE96AD6FC /* SDWebImageDownloader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDWebImageDownloader.m; path = SDWebImage/SDWebImageDownloader.m; sourceTree = ""; }; + 98A1A4FA156A15C63ED19D69 /* DTActivityTitleView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTActivityTitleView.h; path = Core/Source/iOS/DTActivityTitleView.h; sourceTree = ""; }; + 9930956F5D90FA1EBCBB3A48 /* NSMutableAttributedString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableAttributedString+HTML.h"; path = "Core/Source/NSMutableAttributedString+HTML.h"; sourceTree = ""; }; + 99BB5CAD5850C8794A82F246 /* DTTiledLayerWithoutFade.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTiledLayerWithoutFade.m; path = Core/Source/iOS/DTTiledLayerWithoutFade.m; sourceTree = ""; }; + 9A0DCAD1855DE063C4F9EC83 /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIRefreshControl+AFNetworking.m"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.m"; sourceTree = ""; }; + 9A64DFA72DEB806D609C599D /* NSDictionary+MTLManipulationAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSDictionary+MTLManipulationAdditions.m"; path = "Mantle/NSDictionary+MTLManipulationAdditions.m"; sourceTree = ""; }; + 9AB972B15EDB9900880A5BD4 /* Pods-Mantle.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Mantle.xcconfig"; sourceTree = ""; }; + 9AC757925F47F6FF993302F2 /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+HighlightedWebCache.m"; path = "SDWebImage/UIImageView+HighlightedWebCache.m"; sourceTree = ""; }; + 9AF4EEBE22CA0773738FC4D0 /* EGOCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = EGOCache.h; sourceTree = ""; }; + 9CDF2BBFC944D7EC9ED7E876 /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/SystemConfiguration.framework; sourceTree = DEVELOPER_DIR; }; + 9DD9C5A817433D789365FBBE /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; }; + 9EAF55F3F29A2DC5F6D0D400 /* UIAlertView+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIAlertView+AFNetworking.m"; path = "UIKit+AFNetworking/UIAlertView+AFNetworking.m"; sourceTree = ""; }; + 9F12284C6293A7179D9BBF6A /* DTTextAttachmentHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextAttachmentHTMLElement.h; path = Core/Source/DTTextAttachmentHTMLElement.h; sourceTree = ""; }; + 9F42516FEA63D4DC3288C7DE /* NSArray+DTError.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+DTError.h"; path = "Core/Source/NSArray+DTError.h"; sourceTree = ""; }; + 9F5D12453238D4D645F3419B /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Pods.release.xcconfig; sourceTree = ""; }; + A0F6431993B81C62063DA281 /* DTCSSListStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCSSListStyle.h; path = Core/Source/DTCSSListStyle.h; sourceTree = ""; }; + A1934AD2A92C4DDA7871D006 /* DTHTMLParserNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParserNode.h; path = Core/Source/DTHTMLParserNode.h; sourceTree = ""; }; + A1B9DA4F4DB2E5878765292A /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkActivityIndicatorManager.h; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.h"; sourceTree = ""; }; + A2B2B182EBB052C8D1A75726 /* libPods-Mantle.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-Mantle.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + A3A3790BFF503435831271AC /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshComponent.m; sourceTree = ""; }; + A3D50189B84CAFA22502AA88 /* libPods-AFNetworking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-AFNetworking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + A4297449CDDF54794845DE0B /* SDWebImageDownloader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDownloader.h; path = SDWebImage/SDWebImageDownloader.h; sourceTree = ""; }; + A4476FAA3F466E24375C066C /* UIApplication+DTNetworkActivity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIApplication+DTNetworkActivity.h"; path = "Core/Source/iOS/UIApplication+DTNetworkActivity.h"; sourceTree = ""; }; + A4E0118791F34CD014CF9579 /* Pods-MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-MJRefresh-dummy.m"; sourceTree = ""; }; + A5204F4E2CF3C362FF72EF76 /* Reachability.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = Reachability.m; sourceTree = ""; }; + A5DC4DE3B2C1EA11EA2068EE /* NSString+DTURLEncoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTURLEncoding.m"; path = "Core/Source/NSString+DTURLEncoding.m"; sourceTree = ""; }; + A652D0BB9B4989A790D1C56C /* SBJson4StreamWriter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamWriter.m; path = src/main/objc/SBJson4StreamWriter.m; sourceTree = ""; }; + A7DD0CD7ACA9C39AC1571612 /* NSMutableString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSMutableString+HTML.h"; path = "Core/Source/NSMutableString+HTML.h"; sourceTree = ""; }; + A8F04169908591C458261427 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFURLRequestSerialization.h; path = AFNetworking/AFURLRequestSerialization.h; sourceTree = ""; }; + A97975ECB669CF8B1BD1619F /* DTBreakHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBreakHTMLElement.m; path = Core/Source/DTBreakHTMLElement.m; sourceTree = ""; }; + AB0C595492DC29BD26231AFF /* DTAnchorHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAnchorHTMLElement.h; path = Core/Source/DTAnchorHTMLElement.h; sourceTree = ""; }; + AB2F60F681150993334D0AF7 /* NSAttributedStringRunDelegates.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NSAttributedStringRunDelegates.h; path = Core/Source/NSAttributedStringRunDelegates.h; sourceTree = ""; }; + AC5D6F872F7F6A7FEBA2E5A2 /* DTTextBlock.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextBlock.m; path = Core/Source/DTTextBlock.m; sourceTree = ""; }; + AC65D72031F0470A4D32818C /* NSArray+MTLManipulationAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+MTLManipulationAdditions.m"; path = "Mantle/NSArray+MTLManipulationAdditions.m"; sourceTree = ""; }; + ACA554A92D0F17480F387916 /* DTCoreTextMacros.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextMacros.h; path = Core/Source/DTCoreTextMacros.h; sourceTree = ""; }; + ACBD88BFCFCB486595242A16 /* AFHTTPRequestOperation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFHTTPRequestOperation.h; path = AFNetworking/AFHTTPRequestOperation.h; sourceTree = ""; }; + ACDAAD9655E2C1AC4DAA7447 /* DTCoreTextLayoutLine.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextLayoutLine.h; path = Core/Source/DTCoreTextLayoutLine.h; sourceTree = ""; }; + ACDC97D0468852D958D8D8E8 /* SBJson4StreamWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamWriter.h; path = src/main/objc/SBJson4StreamWriter.h; sourceTree = ""; }; + AD7C7DDA0AE1AFD4F00970DA /* DTStylesheetHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTStylesheetHTMLElement.h; path = Core/Source/DTStylesheetHTMLElement.h; sourceTree = ""; }; + AE00973AB256DF3A0D0BA60F /* UIApplication+DTNetworkActivity.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+DTNetworkActivity.m"; path = "Core/Source/iOS/UIApplication+DTNetworkActivity.m"; sourceTree = ""; }; + AE4D8F0FE101726A21C7916D /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJExtension.h"; sourceTree = ""; }; + AE53AD511CE0BA44B4752FEA /* MTLModel+NSCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "MTLModel+NSCoding.h"; path = "Mantle/MTLModel+NSCoding.h"; sourceTree = ""; }; + AEDF710B3D9BBB4B3530BDB4 /* Pods-STableViewController-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-STableViewController-Private.xcconfig"; sourceTree = ""; }; + AEE0406A9A825584A0F6B860 /* NSURL+DTAppLinks.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTAppLinks.m"; path = "Core/Source/iOS/NSURL+DTAppLinks.m"; sourceTree = ""; }; + AF028E837C5BC33FDC893180 /* DTVideoTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTVideoTextAttachment.h; path = Core/Source/DTVideoTextAttachment.h; sourceTree = ""; }; + AF34AB79D5153D4F27D6D084 /* DTDictationPlaceholderTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTDictationPlaceholderTextAttachment.h; path = Core/Source/DTDictationPlaceholderTextAttachment.h; sourceTree = ""; }; + AF6FAB1F9B36456C522A1AE0 /* DTDictationPlaceholderTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTDictationPlaceholderTextAttachment.m; path = Core/Source/DTDictationPlaceholderTextAttachment.m; sourceTree = ""; }; + AF72C372F5483D431A4FF1A7 /* DTWebVideoView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTWebVideoView.m; path = Core/Source/DTWebVideoView.m; sourceTree = ""; }; + AFFE47C69E2CCB6543DD7528 /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+WebCacheOperation.m"; path = "SDWebImage/UIView+WebCacheOperation.m"; sourceTree = ""; }; + B001B4A5AB7E920F7C68C0BF /* libPods-SecureUDID.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-SecureUDID.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + B0A3460A7A2FDD3392A03A11 /* UIWebView+DTFoundation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIWebView+DTFoundation.m"; path = "Core/Source/iOS/UIWebView+DTFoundation.m"; sourceTree = ""; }; + B26EF2E1F5791671372428C1 /* UIImageView+WebCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+WebCache.h"; path = "SDWebImage/UIImageView+WebCache.h"; sourceTree = ""; }; + B2BE44C2BD5CFBD496BADAF2 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImageView+AFNetworking.h"; path = "UIKit+AFNetworking/UIImageView+AFNetworking.h"; sourceTree = ""; }; + B30451B8E4FDB09C257558C5 /* libPods-STableViewController.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-STableViewController.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + B4DD78557F2221312508EA29 /* MediaPlayer.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MediaPlayer.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/MediaPlayer.framework; sourceTree = DEVELOPER_DIR; }; + B4E0100EC49E294FB3E6DD7A /* DTImage+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "DTImage+HTML.h"; path = "Core/Source/DTImage+HTML.h"; sourceTree = ""; }; + B500ECF7DB98EE0B317600B7 /* DTBase64Coding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTBase64Coding.m; path = Core/Source/DTBase64Coding.m; sourceTree = ""; }; + B62216477414878B1B856598 /* libPods-DTFoundation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DTFoundation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + B75F71FC4D5A158E5CBAAE4A /* Pods-Mantle-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Mantle-Private.xcconfig"; sourceTree = ""; }; + B7C1F9E6ED53CEE2B5E2C968 /* Pods-SDWebImage.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SDWebImage.xcconfig"; sourceTree = ""; }; + B84601644BABDDB5EF4E1742 /* UIImageView+WebCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIImageView+WebCache.m"; path = "SDWebImage/UIImageView+WebCache.m"; sourceTree = ""; }; + B93673E4E9B9583E3B0A0B12 /* DTAttributedTextCell.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedTextCell.h; path = Core/Source/DTAttributedTextCell.h; sourceTree = ""; }; + B9DF7E684875D2D0F3F9E90E /* DTAttributedLabel.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAttributedLabel.h; path = Core/Source/DTAttributedLabel.h; sourceTree = ""; }; + BAD193C4FADB5899C6C15C32 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFNetworkActivityIndicatorManager.m; path = "UIKit+AFNetworking/AFNetworkActivityIndicatorManager.m"; sourceTree = ""; }; + BB4F7C51E8746A317D228300 /* DTColor+Compatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTColor+Compatibility.m"; path = "Core/Source/DTColor+Compatibility.m"; sourceTree = ""; }; + BB7CD6D48CF336B4A54D21F1 /* AFURLConnectionOperation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLConnectionOperation.m; path = AFNetworking/AFURLConnectionOperation.m; sourceTree = ""; }; + BBAB2C0DE7B01A6D434F48BD /* DTCoreTextFontDescriptor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFontDescriptor.h; path = Core/Source/DTCoreTextFontDescriptor.h; sourceTree = ""; }; + BC02B7E0A617A2C3EE555756 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshFooter.h; sourceTree = ""; }; + BD4CC0F4A206E3387EB23FC7 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIRefreshControl+AFNetworking.h"; path = "UIKit+AFNetworking/UIRefreshControl+AFNetworking.h"; sourceTree = ""; }; + BDBB5D463CB84DB5FCE7F69C /* DTAnchorHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAnchorHTMLElement.m; path = Core/Source/DTAnchorHTMLElement.m; sourceTree = ""; }; + BFADDF1EED8DBE2B4E2421F9 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextLayoutFrameAccessibilityElementGenerator.m; path = Core/Source/DTCoreTextLayoutFrameAccessibilityElementGenerator.m; sourceTree = ""; }; + C0130EFECC56B2652B94F81E /* AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworking.h; path = AFNetworking/AFNetworking.h; sourceTree = ""; }; + C072F31E804C6721B44E54F2 /* SecureUDID.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SecureUDID.h; sourceTree = ""; }; + C09B4C9B31BECE0AAEBA4764 /* Pods-DTCoreText-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DTCoreText-Private.xcconfig"; sourceTree = ""; }; + C1A3480ED022780B4482E351 /* SBJson4StreamParserState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4StreamParserState.h; path = src/main/objc/SBJson4StreamParserState.h; sourceTree = ""; }; + C3CACD01ECAC658FCCD298EC /* DTCustomColoredAccessory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCustomColoredAccessory.h; path = Core/Source/iOS/DTCustomColoredAccessory.h; sourceTree = ""; }; + C4236B98DE95D458253A2E28 /* SDWebImageManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageManager.h; path = SDWebImage/SDWebImageManager.h; sourceTree = ""; }; + C55CF69840949A3B9DB21983 /* UIImage+DTFoundation.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+DTFoundation.h"; path = "Core/Source/iOS/UIImage+DTFoundation.h"; sourceTree = ""; }; + C62B8A8A0CCDC8D045217737 /* Pods-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-resources.sh"; sourceTree = ""; }; + C65AC3C56199B42EA9136A83 /* STableViewController.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = STableViewController.m; path = STableViewController/STableViewController.m; sourceTree = ""; }; + C69239397978F1E0635D29A1 /* SDImageCache.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDImageCache.h; path = SDWebImage/SDImageCache.h; sourceTree = ""; }; + C7F5D47434A5342B76894D9E /* Pods-MBProgressHUD.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MBProgressHUD.xcconfig"; sourceTree = ""; }; + C81BB5A80B9CDD86C332157A /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIButton+AFNetworking.m"; path = "UIKit+AFNetworking/UIButton+AFNetworking.m"; sourceTree = ""; }; + C988330BF193EC2D1790D01E /* DTPieProgressIndicator.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTPieProgressIndicator.h; path = Core/Source/iOS/DTPieProgressIndicator.h; sourceTree = ""; }; + C99E56F7134A39AC6037E2E3 /* Reachability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = ""; }; + C9CEC52E2C906AE8F6B24AF0 /* DTSmartPagingScrollView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTSmartPagingScrollView.m; path = Core/Source/iOS/DTSmartPagingScrollView.m; sourceTree = ""; }; + C9D08CD6B532365139DA1407 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshFooter.m; sourceTree = ""; }; + C9D338DCF7BBE8E416037CF6 /* MTLModel.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MTLModel.m; path = Mantle/MTLModel.m; sourceTree = ""; }; + CA3FD3F948E17C33EBE4FEEA /* NSCharacterSet+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSCharacterSet+HTML.m"; path = "Core/Source/NSCharacterSet+HTML.m"; sourceTree = ""; }; + CAB0A45839DC7DB4DE3ED48D /* NSObject+MTLComparisonAdditions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSObject+MTLComparisonAdditions.m"; path = "Mantle/NSObject+MTLComparisonAdditions.m"; sourceTree = ""; }; + CB44F38D8EB7A12F257CF13C /* DTVideoTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTVideoTextAttachment.m; path = Core/Source/DTVideoTextAttachment.m; sourceTree = ""; }; + CB8B44F2AD738EA16716C5FE /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.bundle; sourceTree = ""; }; + CBC0B7619CE8715C3E8F9F05 /* Pods-AFNetworking-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AFNetworking-Private.xcconfig"; sourceTree = ""; }; + CBE26A822B9113D7AEE87DA3 /* libPods-DTCoreText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DTCoreText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + CC9008DF746F6AE684082BCB /* NSString+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+HTML.h"; path = "Core/Source/NSString+HTML.h"; sourceTree = ""; }; + CD097ED93E1C276A7FA9430E /* DTCoreTextConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextConstants.h; path = Core/Source/DTCoreTextConstants.h; sourceTree = ""; }; + CD2AE4C4FECECC3D80428448 /* Pods-DTFoundation-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DTFoundation-dummy.m"; sourceTree = ""; }; + CD3E2723A996F6F8BF044B77 /* DTCoreTextConstants.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextConstants.m; path = Core/Source/DTCoreTextConstants.m; sourceTree = ""; }; + CD5024FC7D47DD48B5ED9D8D /* NSFileManager+Godzippa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSFileManager+Godzippa.h"; path = "Godzippa/NSFileManager+Godzippa.h"; sourceTree = ""; }; + CE8D89294248FA6062C49829 /* MTLManagedObjectAdapter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MTLManagedObjectAdapter.h; path = Mantle/MTLManagedObjectAdapter.h; sourceTree = ""; }; + CFFCBAA6E08FE2EC737991CC /* DTImageTextAttachment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTImageTextAttachment.h; path = Core/Source/DTImageTextAttachment.h; sourceTree = ""; }; + D0113E9980E365E7C47DF37E /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS7.1.sdk/System/Library/Frameworks/CoreText.framework; sourceTree = DEVELOPER_DIR; }; + D086CB92C6BD593F773E96CE /* DTWeakSupport.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTWeakSupport.h; path = Core/Source/DTWeakSupport.h; sourceTree = ""; }; + D200097579CFD9EDF1B9A1B3 /* DTHTMLParserTextNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParserTextNode.h; path = Core/Source/DTHTMLParserTextNode.h; sourceTree = ""; }; + D204A5D144A99453E91B207B /* Pods-DTCoreText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-DTCoreText-prefix.pch"; sourceTree = ""; }; + D2E92F7A6612F4A24E6F20D7 /* DTColorFunctions.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTColorFunctions.m; path = Core/Source/DTColorFunctions.m; sourceTree = ""; }; + D3C8C061C4FFE31551220FA8 /* Pods-MJRefresh.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MJRefresh.xcconfig"; sourceTree = ""; }; + D5C54EE1B30EC338D3303861 /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIActivityIndicatorView+AFNetworking.h"; path = "UIKit+AFNetworking/UIActivityIndicatorView+AFNetworking.h"; sourceTree = ""; }; + D5EA61467C60003133DD0D39 /* NSData+DTCrypto.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSData+DTCrypto.m"; path = "Core/Source/NSData+DTCrypto.m"; sourceTree = ""; }; + D78D447FDC3C650ACDBF8768 /* NSCoder+DTCompatibility.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSCoder+DTCompatibility.h"; path = "Core/Source/NSCoder+DTCompatibility.h"; sourceTree = ""; }; + D7D7A0CB50404353CCE42F15 /* DTSmartPagingScrollView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTSmartPagingScrollView.h; path = Core/Source/iOS/DTSmartPagingScrollView.h; sourceTree = ""; }; + D82372A59C0AC80663B90CED /* NSArray+MTLManipulationAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSArray+MTLManipulationAdditions.h"; path = "Mantle/NSArray+MTLManipulationAdditions.h"; sourceTree = ""; }; + D905170C724FC07A087DA177 /* MTLReflection.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MTLReflection.m; path = Mantle/MTLReflection.m; sourceTree = ""; }; + D938F08000DB650B2F491850 /* NSError+MTLModelException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSError+MTLModelException.h"; path = "Mantle/NSError+MTLModelException.h"; sourceTree = ""; }; + D982A5993F423F2602770DD7 /* NSAttributedString+SmallCaps.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+SmallCaps.m"; path = "Core/Source/NSAttributedString+SmallCaps.m"; sourceTree = ""; }; + D9832217CABFF0E976E49A8F /* DTTextHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTTextHTMLElement.h; path = Core/Source/DTTextHTMLElement.h; sourceTree = ""; }; + D9A3FE59729AC5FB74AF9D67 /* SBJson4StreamParserState.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamParserState.m; path = src/main/objc/SBJson4StreamParserState.m; sourceTree = ""; }; + DB9901403DB337D702874EE5 /* NSDictionary+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSDictionary+DTCoreText.h"; path = "Core/Source/NSDictionary+DTCoreText.h"; sourceTree = ""; }; + DBBDECA0E031AACA6A6FD77E /* DTExtendedFileAttributes.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTExtendedFileAttributes.m; path = Core/Source/DTExtendedFileAttributes.m; sourceTree = ""; }; + DD16954F60332ADFD07CC6DD /* Pods-MBProgressHUD-Private.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-MBProgressHUD-Private.xcconfig"; sourceTree = ""; }; + DD2E4AF02D89954634EFF8C5 /* NSData+Godzippa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+Godzippa.h"; path = "Godzippa/NSData+Godzippa.h"; sourceTree = ""; }; + DD6A78B0D9A58DFC5680AEF5 /* DTFoundationConstants.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTFoundationConstants.h; path = Core/Source/DTFoundationConstants.h; sourceTree = ""; }; + DDB5573320075200698C87D5 /* DTCoreTextFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextFunctions.h; path = Core/Source/DTCoreTextFunctions.h; sourceTree = ""; }; + DF3A183ACE7AA9CF9B0D51C3 /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIImage+MultiFormat.h"; path = "SDWebImage/UIImage+MultiFormat.h"; sourceTree = ""; }; + DF93B9175E450858873DDAA6 /* NSURL+DTUnshorten.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSURL+DTUnshorten.m"; path = "Core/Source/NSURL+DTUnshorten.m"; sourceTree = ""; }; + DFE070D59D98460D7859BE1A /* Pods-Godzippa.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Godzippa.xcconfig"; sourceTree = ""; }; + E03546E55068EB6FC56539AA /* NSAttributedStringRunDelegates.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = NSAttributedStringRunDelegates.m; path = Core/Source/NSAttributedStringRunDelegates.m; sourceTree = ""; }; + E06A0E4811BBE705C4CCACAB /* DTHTMLParser.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLParser.h; path = Core/Source/DTHTMLParser/DTHTMLParser.h; sourceTree = ""; }; + E0CDB2B40E60145C0DD591F1 /* Pods-AFNetworking.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AFNetworking.xcconfig"; sourceTree = ""; }; + E12A9F77537BE752605BE4FB /* NSString+DTURLEncoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTURLEncoding.h"; path = "Core/Source/NSString+DTURLEncoding.h"; sourceTree = ""; }; + E185C3A63D33EA5B221AC913 /* NSValueTransformer+MTLInversionAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSValueTransformer+MTLInversionAdditions.h"; path = "Mantle/NSValueTransformer+MTLInversionAdditions.h"; sourceTree = ""; }; + E2047543F1590232A94322E0 /* NSCharacterSet+HTML.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSCharacterSet+HTML.h"; path = "Core/Source/NSCharacterSet+HTML.h"; sourceTree = ""; }; + E285C11FC8A0EDC3C050F5BA /* DTAnimatedGIF.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTAnimatedGIF.h; path = Core/Source/iOS/DTAnimatedGIF/DTAnimatedGIF.h; sourceTree = ""; }; + E2E58C3EBFFE680BA8B27886 /* Godzippa.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Godzippa.h; path = Godzippa/Godzippa.h; sourceTree = ""; }; + E30D75C853F99F1A5BB9BD3B /* EGOCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = EGOCache.m; sourceTree = ""; }; + E318B19F03E9DE62C674966F /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshConst.h; sourceTree = ""; }; + E395C8947ADEF664E5DAA682 /* Pods-Reachability.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-Reachability.xcconfig"; sourceTree = ""; }; + E3CA9A0D1022C0680DD14622 /* NSString+DTFormatNumbers.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+DTFormatNumbers.m"; path = "Core/Source/NSString+DTFormatNumbers.m"; sourceTree = ""; }; + E423E5459EDC690BEBD6A3A4 /* NSData+DTCrypto.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSData+DTCrypto.h"; path = "Core/Source/NSData+DTCrypto.h"; sourceTree = ""; }; + E5A4E4DF071DF4FCF2C16428 /* UIFont+DTCoreText.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIFont+DTCoreText.m"; path = "Core/Source/UIFont+DTCoreText.m"; sourceTree = ""; }; + E682227BB5148A457619A3B8 /* EXTKeyPathCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EXTKeyPathCoding.h; path = Mantle/extobjc/EXTKeyPathCoding.h; sourceTree = ""; }; + E70B4D3E26344AF290F4C98E /* AFURLSessionManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLSessionManager.m; path = AFNetworking/AFURLSessionManager.m; sourceTree = ""; }; + E76ADADDF8D8EED738777D61 /* NSCoder+DTCompatibility.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSCoder+DTCompatibility.m"; path = "Core/Source/NSCoder+DTCompatibility.m"; sourceTree = ""; }; + E8A843E0157B0F0CB285E87E /* DTObjectTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTObjectTextAttachment.m; path = Core/Source/DTObjectTextAttachment.m; sourceTree = ""; }; + E90048AC25846309934924ED /* DTHTMLParserNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTHTMLParserNode.m; path = Core/Source/DTHTMLParserNode.m; sourceTree = ""; }; + E9073FA1B8DD32D6490E136E /* NSString+Paragraphs.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSString+Paragraphs.m"; path = "Core/Source/NSString+Paragraphs.m"; sourceTree = ""; }; + E985496411C338BFFF72DC59 /* DTDictationPlaceholderView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTDictationPlaceholderView.h; path = Core/Source/DTDictationPlaceholderView.h; sourceTree = ""; }; + E9ACB5A0A0AB3C727CEFEE7D /* DTLinkButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTLinkButton.m; path = Core/Source/DTLinkButton.m; sourceTree = ""; }; + EB1FFA98D7F41E49D4A1FC80 /* MJRefreshLegendFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshLegendFooter.m; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendFooter.m; sourceTree = ""; }; + EB72821D64E431973F02A38F /* MJRefreshLegendHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshLegendHeader.h; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshLegendHeader.h; sourceTree = ""; }; + EBC22545F6D32A951618D5CE /* DTTextAttachment.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextAttachment.m; path = Core/Source/DTTextAttachment.m; sourceTree = ""; }; + EC01E94AC6E9783C2C51CA03 /* NSAttributedString+DTCoreText.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSAttributedString+DTCoreText.h"; path = "Core/Source/NSAttributedString+DTCoreText.h"; sourceTree = ""; }; + ECBCCCD797D5A2DC1FEF0C9E /* DTCoreGraphicsUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreGraphicsUtils.m; path = Core/Source/DTCoreGraphicsUtils.m; sourceTree = ""; }; + EDE030D85B22A8F05A718A4C /* DTColorFunctions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTColorFunctions.h; path = Core/Source/DTColorFunctions.h; sourceTree = ""; }; + EDF8FB7A99E6A32E06931FC8 /* DTTextHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextHTMLElement.m; path = Core/Source/DTTextHTMLElement.m; sourceTree = ""; }; + EE8565A6AA74E73D16AA06A7 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = AFURLResponseSerialization.m; path = AFNetworking/AFURLResponseSerialization.m; sourceTree = ""; }; + EEBAAD0C74D269B0751069C8 /* DTImage+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "DTImage+HTML.m"; path = "Core/Source/DTImage+HTML.m"; sourceTree = ""; }; + EF130C5383314A1B1F7BBC18 /* Pods-DTCoreText.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-DTCoreText.xcconfig"; sourceTree = ""; }; + F090452F16DD6E56998D85F1 /* DTCoreTextGlyphRun.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTCoreTextGlyphRun.m; path = Core/Source/DTCoreTextGlyphRun.m; sourceTree = ""; }; + F0CC372E47C461FBE2EB7486 /* DTAttributedTextView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTAttributedTextView.m; path = Core/Source/DTAttributedTextView.m; sourceTree = ""; }; + F0D499BD4214ECB217034F23 /* DTHTMLWriter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLWriter.h; path = Core/Source/DTHTMLWriter.h; sourceTree = ""; }; + F114083C13D15B1EB627A350 /* Pods-DTCoreText-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-DTCoreText-dummy.m"; sourceTree = ""; }; + F168A911AA440D4C151F9C1D /* DTHTMLElement.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTHTMLElement.h; path = Core/Source/DTHTMLElement.h; sourceTree = ""; }; + F1A74F2A196FE771945EA0BB /* Pods-SBJson.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-SBJson.xcconfig"; sourceTree = ""; }; + F2258CC4EF49C712074144BF /* Pods-environment.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-environment.h"; sourceTree = ""; }; + F2551C1ACF348C6C30F3CD19 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.h; sourceTree = ""; }; + F27265DD7AC462708EDB1231 /* SBJson4StreamParser.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4StreamParser.m; path = src/main/objc/SBJson4StreamParser.m; sourceTree = ""; }; + F2A3D38884C41197378682EC /* SBJson4.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SBJson4.h; path = src/main/objc/SBJson4.h; sourceTree = ""; }; + F3298950D38367B5B0B857B9 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefreshExample/MJRefreshExample/MJRefresh/UIView+MJExtension.m"; sourceTree = ""; }; + F3AFBC2A7345283D309D433A /* SBJson4Writer.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SBJson4Writer.m; path = src/main/objc/SBJson4Writer.m; sourceTree = ""; }; + F48BD34D52AB4DDAFF22F360 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshHeader.h; sourceTree = ""; }; + F50BE35C5313CE948435A1BE /* DTTextAttachmentHTMLElement.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = DTTextAttachmentHTMLElement.m; path = Core/Source/DTTextAttachmentHTMLElement.m; sourceTree = ""; }; + F582FC8D28A00099572FBB6E /* NSValueTransformer+MTLPredefinedTransformerAdditions.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSValueTransformer+MTLPredefinedTransformerAdditions.h"; path = "Mantle/NSValueTransformer+MTLPredefinedTransformerAdditions.h"; sourceTree = ""; }; + F64AF8C879E7300CB2CB9C16 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefreshExample/MJRefreshExample/MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = ""; }; + F657B550373040E1E6477D64 /* DTCoreTextParagraphStyle.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTCoreTextParagraphStyle.h; path = Core/Source/DTCoreTextParagraphStyle.h; sourceTree = ""; }; + F69B519C120CB30E30FF66B2 /* DTLazyImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DTLazyImageView.h; path = Core/Source/DTLazyImageView.h; sourceTree = ""; }; + F6A6D3AA20DAA77868C1D091 /* SDWebImageDecoder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SDWebImageDecoder.h; path = SDWebImage/SDWebImageDecoder.h; sourceTree = ""; }; + F8D82090CD2D00F85300B351 /* Pods-STableViewController.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-STableViewController.xcconfig"; sourceTree = ""; }; + F9F7F21660EEA731250022FB /* NSString+DTFormatNumbers.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "NSString+DTFormatNumbers.h"; path = "Core/Source/NSString+DTFormatNumbers.h"; sourceTree = ""; }; + FA171C7D85D5C1A68B9F4FF4 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefreshExample/MJRefreshExample/MJRefresh/MJRefreshGifHeader.h; sourceTree = ""; }; + FBF4D2435D4D21F020CB5127 /* NSArray+DTError.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSArray+DTError.m"; path = "Core/Source/NSArray+DTError.m"; sourceTree = ""; }; + FC33FC69327B72065A6A6850 /* SDImageCache.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SDImageCache.m; path = SDWebImage/SDImageCache.m; sourceTree = ""; }; + FCFD752A2ADB6A2F75E062F9 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AFNetworkReachabilityManager.h; path = AFNetworking/AFNetworkReachabilityManager.h; sourceTree = ""; }; + FD5081DE159AF8A6D580542B /* MTLModel+NSCoding.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "MTLModel+NSCoding.m"; path = "Mantle/MTLModel+NSCoding.m"; sourceTree = ""; }; + FD994BF3AB940E759259C133 /* libPods-MBProgressHUD.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-MBProgressHUD.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + FEC31545FD989A646944ADE6 /* NSAttributedString+HTML.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "NSAttributedString+HTML.m"; path = "Core/Source/NSAttributedString+HTML.m"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 055CE4C7CF75DA73B6B1D1EC /* Frameworks */ = { + 19828D821192B0AD8BA64DBB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F516341DDAA7CE2024F55E0A /* Foundation.framework in Frameworks */, + 42A53897D5B4C170C8BA5A2D /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 15F31417CE22CBF9BFECE988 /* Frameworks */ = { + 19D4E7F6FF342095B8492AC8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 51C8FEFB5B3DC0384E30B2E2 /* Foundation.framework in Frameworks */, + E22A0D18EFBF2CF39F5B261F /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 208951F830C652EC617B06DD /* Frameworks */ = { + 1D25D30E73586166225CE29E /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - D33EC5EE51E048580DFB2844 /* Foundation.framework in Frameworks */, - 806446BD12DDAC760CBAE3CC /* SystemConfiguration.framework in Frameworks */, + E074600F4370E1104CD8D06F /* Foundation.framework in Frameworks */, + A4FCDA6E8A73132DE1697C8C /* SystemConfiguration.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 2978C192CC733D305954C608 /* Frameworks */ = { + 2A1AE755DFA0B59CC7729650 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - A7553D40948A1F2F6385B4E3 /* Foundation.framework in Frameworks */, - 859CDB38D58D736E562AA0F5 /* ImageIO.framework in Frameworks */, + 28B28847D5910CBE3459691C /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 3C8B575E59E33ED91958D28A /* Frameworks */ = { + 2C840C92980331FD61DAE553 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - F332182BA4AE992C3F413D87 /* Foundation.framework in Frameworks */, + D9AA4784C032E0D998543045 /* Foundation.framework in Frameworks */, + E67300C88742A4B681315996 /* ImageIO.framework in Frameworks */, + C6223C9399648AFB82BE760E /* QuartzCore.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 51C58D2163AA5002A4470931 /* Frameworks */ = { + 485C496FBA72B48C8F36CA4D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 5A12D2E53A605B2D32E2973A /* Foundation.framework in Frameworks */, + 86EE283DDB3EF027EBBEF98D /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 79010AADA0A64D3B55B90051 /* Frameworks */ = { + 50951BBF8A9D3CA05D6D89B8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 1CD3AF7113FF9399D22F1C54 /* CoreGraphics.framework in Frameworks */, - D32E2A056FA6758BE033BF00 /* Foundation.framework in Frameworks */, - C59DEBA0D6AAFC562940592C /* MobileCoreServices.framework in Frameworks */, - 18FF6A36320C2C2FB28A1DFC /* Security.framework in Frameworks */, - 22D479268DC8096CE9A0E27A /* SystemConfiguration.framework in Frameworks */, + 995D2ACC6676C7A21A9785A1 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 7A048E57132B0296803F9EFE /* Frameworks */ = { + 787C5DE8DE63A5BCEBD5AEE0 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - E84F59A35F122F1FF30363AC /* CoreGraphics.framework in Frameworks */, - 85F1033E2C57C3B8F9572E6F /* CoreText.framework in Frameworks */, - 70B52F0D064EE8F5D546165D /* Foundation.framework in Frameworks */, - 7FF24A81ED643A038CB41A74 /* ImageIO.framework in Frameworks */, - 88AD50A678C5105EBEEAD7D6 /* MediaPlayer.framework in Frameworks */, - E6816C4A6C8A2C51EC93D58A /* QuartzCore.framework in Frameworks */, + 1A8BC21DA14BFA5949E50016 /* CoreGraphics.framework in Frameworks */, + 9C0D830AA8DCB895AFEDD1C6 /* CoreText.framework in Frameworks */, + 1A81AFCE6AD8D0FD89CC236C /* Foundation.framework in Frameworks */, + D0E72496EE93035611EE166A /* ImageIO.framework in Frameworks */, + A878E4C6E4373E80F5D13660 /* MediaPlayer.framework in Frameworks */, + CB679A67581D7F5E8E844983 /* QuartzCore.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 8AB7E0C632E1D7B8BD238DC9 /* Frameworks */ = { + 7B956EF253BFF061E3C16E58 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - C0B45FB51B6CF99ECED25F52 /* Foundation.framework in Frameworks */, + 0AC8372303BEDD826B295C92 /* CoreGraphics.framework in Frameworks */, + F541704588D0C5A8F61476F5 /* Foundation.framework in Frameworks */, + 63152F7711EC5D68D37865E6 /* MobileCoreServices.framework in Frameworks */, + D9B241CC9D4C1902E629A74C /* Security.framework in Frameworks */, + 4A84D4DF3953FEE67A8BDAC4 /* SystemConfiguration.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9EBDF19F93CBC757B77106F9 /* Frameworks */ = { + 935D1B47FC2BDDCD60EC14DA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - EEBBF9412DB941DA983CF3A3 /* CoreGraphics.framework in Frameworks */, - 11EDC8EA01E1CD00EEE2745D /* Foundation.framework in Frameworks */, + 95E1EDEF69C715F30E73EEC8 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - A8892F158B9F4D652282F827 /* Frameworks */ = { + CD2433D494CCBAA22BB04EC1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 727B0E2BA0BDEE329B338C01 /* Foundation.framework in Frameworks */, + D38EB84DF2438FE89F1DDE05 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - AE2D2F8BD1CA83EC7CEFBE55 /* Frameworks */ = { + D022507B2B9B65DE44C2621C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 8A616702A130CA9D64BF44F1 /* Foundation.framework in Frameworks */, + 29DE3615E251CDE95E6E5BFC /* CoreGraphics.framework in Frameworks */, + E8A28A4DFDA1422FD74336B6 /* Foundation.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; - CC276D295289A7BF9EABD83C /* Frameworks */ = { + EFEAE41152B284070046DA32 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 7D238BAC25BCB10BF3AE2962 /* Foundation.framework in Frameworks */, - 888C9B0A4E2C6940403E6A62 /* ImageIO.framework in Frameworks */, - EA54F3387BA69C3F6AD7E27D /* QuartzCore.framework in Frameworks */, + 9022D1E464FFC78664C3FDA0 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F9EB0F9BB143E1672B6627EA /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 6C5C29A4193C3E3380BDA42F /* Foundation.framework in Frameworks */, + A813C4B472CD834C8826EC9D /* ImageIO.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 05BF3CEF5CFD9D4DDB951913 /* STableViewController */ = { + 02FA3959F9CACA09C384A778 /* DTFoundation */ = { isa = PBXGroup; children = ( - 2071988D63E920ED00D53F81 /* STableViewController.h */, - E1D94DFB649CEDB295722CE3 /* STableViewController.m */, - 4103286E1656B9E27C799FC1 /* Support Files */, + 3DF3FC1DE07DDC29A6FCF9B2 /* Core */, + CFAA8C38836DF38CFFD0510E /* DTAnimatedGIF */, + 257223D4D69012254C26FB70 /* DTHTMLParser */, + 71288CA0E3EB5EAD8C16A98B /* Support Files */, + 657BA9EA5FE9DB4946EBCCBB /* UIKit */, ); - path = STableViewController; + path = DTFoundation; sourceTree = ""; }; - 0CF4B14CB441BD633C477F8F /* Mantle */ = { + 098FBF79125E912984348A58 /* Support Files */ = { isa = PBXGroup; children = ( - CFB46630F82D91A70BEFE778 /* MTLJSONAdapter.h */, - 8C830DC9FA8CE138CE899437 /* MTLJSONAdapter.m */, - 7CAEFFBE51335980B889D2B1 /* MTLManagedObjectAdapter.h */, - 7E23C63EE2780C6B036A5FF4 /* MTLManagedObjectAdapter.m */, - 7563ECB3221F82B0107B2934 /* MTLModel.h */, - 2DB04192C82F65E1052B241D /* MTLModel.m */, - 69AB0E927D34C81AA14AB3D7 /* MTLModel+NSCoding.h */, - BDE51FCB690314D17EDD61E1 /* MTLModel+NSCoding.m */, - 33F0365D231376ECD0C32F92 /* MTLReflection.h */, - A0431E2006710FCEC62858D4 /* MTLReflection.m */, - 16FDFBAA23D35A18396CB583 /* MTLValueTransformer.h */, - 88511088BC394F052D0E07D1 /* MTLValueTransformer.m */, - 0D7801E32CA32B7207F2DD07 /* Mantle.h */, - AC23DB16D2C82F90A3A505E7 /* NSArray+MTLManipulationAdditions.h */, - 7EE0142D56D941DA31DDE2C0 /* NSArray+MTLManipulationAdditions.m */, - 43CAA42B614FFB1BB3B7BDD8 /* NSDictionary+MTLManipulationAdditions.h */, - 4ED6B6394A312F0CA650760D /* NSDictionary+MTLManipulationAdditions.m */, - E7789FE773E9C27341E7FB51 /* NSError+MTLModelException.h */, - FB5CD85FF048CAE38B9B839E /* NSError+MTLModelException.m */, - E2EDC1133539DACE3B7803D2 /* NSObject+MTLComparisonAdditions.h */, - BCFDB273CD2AEF782D1DE189 /* NSObject+MTLComparisonAdditions.m */, - 5B7A6CF958439422E464C75C /* NSValueTransformer+MTLInversionAdditions.h */, - 856DCACD63B323B4914B893B /* NSValueTransformer+MTLInversionAdditions.m */, - 88B4201C4778092A276DCFFE /* NSValueTransformer+MTLPredefinedTransformerAdditions.h */, - 6E4CBCF215675EB712A79F00 /* NSValueTransformer+MTLPredefinedTransformerAdditions.m */, - 7E6B1AEB377317535CEDBDD2 /* Support Files */, - 83F885CDF4F2BAC3D0DF07F9 /* extobjc */, - ); - path = Mantle; - sourceTree = ""; - }; - 0F60DD45190D8FE32319E903 /* SBJson */ = { - isa = PBXGroup; - children = ( - 420CB36ED79B124B94556C62 /* SBJson4.h */, - 3C44D170034AED69BF745FDC /* SBJson4Parser.h */, - 890BE7875A7E3998D71EECD4 /* SBJson4Parser.m */, - 047BC0888E4D50C8B8700A6C /* SBJson4StreamParser.h */, - E871873953C5494CDDE8BA86 /* SBJson4StreamParser.m */, - F4C8CB4FA43CFF8177440E32 /* SBJson4StreamParserState.h */, - 97D9281D8657C98DAF2F1DD0 /* SBJson4StreamParserState.m */, - 990B190FC63A5B7CD1F8B556 /* SBJson4StreamTokeniser.h */, - E52B0D5E4A916FFDCDE359B7 /* SBJson4StreamTokeniser.m */, - 25E4FE3B96956F9BAD0581CD /* SBJson4StreamWriter.h */, - 5697436FD0CDA9F0DB73D21F /* SBJson4StreamWriter.m */, - C3C1130B8D9D1B235A06F7E7 /* SBJson4StreamWriterState.h */, - 625425467266D97BFACC32C2 /* SBJson4StreamWriterState.m */, - 59C3DC8990354986300B1021 /* SBJson4Writer.h */, - 380BEE354AB84E8D4795B5C4 /* SBJson4Writer.m */, - 444200E4C350AC3ED9BD8767 /* Support Files */, - ); - path = SBJson; - sourceTree = ""; - }; - 151FE67D8E45086ED936B3CA /* Support Files */ = { - isa = PBXGroup; - children = ( - 23FEB17B1B2482F9459FD6D4 /* Pods-DTCoreText.xcconfig */, - 54E5A78377BD592A76A105F7 /* Pods-DTCoreText-Private.xcconfig */, - 92C0CBA93013A95E242AAEB6 /* Pods-DTCoreText-dummy.m */, - 1AD4BD331A2EB531713AA757 /* Pods-DTCoreText-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Pods-DTCoreText"; - sourceTree = ""; - }; - 162FEC9395A3910D9FA217E6 /* NSURLSession */ = { - isa = PBXGroup; - children = ( - 7CABDEE4AA200D95A5738FE0 /* AFHTTPSessionManager.h */, - 1F46337FDAB531983759921C /* AFHTTPSessionManager.m */, - AC250D0369E9C16012A77E58 /* AFURLSessionManager.h */, - 3E1D11C0E845EFBAE5687F71 /* AFURLSessionManager.m */, - ); - name = NSURLSession; - sourceTree = ""; - }; - 1B2ADD8C30A4A35CBE663635 /* Support Files */ = { - isa = PBXGroup; - children = ( - 22525BE057443EBC90B0ED51 /* Pods-SDWebImage.xcconfig */, - B4558E19FB00C4D59FCABA2E /* Pods-SDWebImage-Private.xcconfig */, - 40F3271E4997585A6FB0773A /* Pods-SDWebImage-dummy.m */, - A851FB0BDD88D5525FBD1670 /* Pods-SDWebImage-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Pods-SDWebImage"; - sourceTree = ""; - }; - 21A3AA15A15BA7E1061AB0EA /* Reachability */ = { - isa = PBXGroup; - children = ( - 12E31B9207F2E25ED497CB9B /* Reachability.h */, - BCD46BF98238C92C93DACB8B /* Reachability.m */, - 981E1867CC62141EA70F075A /* Support Files */, - ); - path = Reachability; - sourceTree = ""; - }; - 40E53B97AD1DA0F8424B11AF /* Support Files */ = { - isa = PBXGroup; - children = ( - 9B8FBE2E7A9F342C961ABB4C /* Pods-DTFoundation.xcconfig */, - CE1973ECA90263EF05256EF0 /* Pods-DTFoundation-Private.xcconfig */, - 162E2E22107D20F2693387CF /* Pods-DTFoundation-dummy.m */, - 1DA5A00C3F1BF7F502BC8E0D /* Pods-DTFoundation-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Pods-DTFoundation"; - sourceTree = ""; - }; - 4103286E1656B9E27C799FC1 /* Support Files */ = { - isa = PBXGroup; - children = ( - 87C74BEC4F61FAA3CDAF0D49 /* Pods-STableViewController.xcconfig */, - D816D04D8676D443F2953CE2 /* Pods-STableViewController-Private.xcconfig */, - 67A4E6C9EE66030D38345C96 /* Pods-STableViewController-dummy.m */, - D63F4A713487B21B5ADF502D /* Pods-STableViewController-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Pods-STableViewController"; - sourceTree = ""; - }; - 43204F3240AB287A188D9EEB /* UIKit */ = { - isa = PBXGroup; - children = ( - 89A76E13D53BB2BE40A49C56 /* AFNetworkActivityIndicatorManager.h */, - 19454852EB647E3F82CC59FE /* AFNetworkActivityIndicatorManager.m */, - 8041A49A3E1DB57FCF3A1E3E /* UIActivityIndicatorView+AFNetworking.h */, - 15612070F182774F9D2CDF0E /* UIActivityIndicatorView+AFNetworking.m */, - 1FBFC4DA4E913780086FAD69 /* UIAlertView+AFNetworking.h */, - 176186BB28B17B45EBCD420E /* UIAlertView+AFNetworking.m */, - D5FA03A60C1A71082EFBAF32 /* UIButton+AFNetworking.h */, - AFB5F1D95E28D8BF4771CCF5 /* UIButton+AFNetworking.m */, - 365B7D3D24F9EFF9FD3F8AD0 /* UIImageView+AFNetworking.h */, - ABF1AF1AA665594D6AB2AB41 /* UIImageView+AFNetworking.m */, - 8DA8C488C28260E7A1F3D1D1 /* UIKit+AFNetworking.h */, - FCE65F29B4E1D26F9C281A97 /* UIProgressView+AFNetworking.h */, - F54AA8AD4C41F9F64CB3CB49 /* UIProgressView+AFNetworking.m */, - D02D4EA2FF3CEFC879098F92 /* UIRefreshControl+AFNetworking.h */, - 7390F1C5749025C6C345D1E7 /* UIRefreshControl+AFNetworking.m */, - 392FA2882314E9EE1F9FB21B /* UIWebView+AFNetworking.h */, - 35A3D3BA1E7D74A25FBB2E18 /* UIWebView+AFNetworking.m */, - ); - name = UIKit; - sourceTree = ""; - }; - 444200E4C350AC3ED9BD8767 /* Support Files */ = { - isa = PBXGroup; - children = ( - 7FAA90F35D4297F1CA83AD84 /* Pods-SBJson.xcconfig */, - 9DDCD77C38434B85E8A207DC /* Pods-SBJson-Private.xcconfig */, - 9264206C6738E273C5655F1C /* Pods-SBJson-dummy.m */, - FED9DD0820FEDDE583B415F8 /* Pods-SBJson-prefix.pch */, + F1A74F2A196FE771945EA0BB /* Pods-SBJson.xcconfig */, + 88E74D6057B5692DADC10F93 /* Pods-SBJson-Private.xcconfig */, + 8DB836771DC16F4553F6187C /* Pods-SBJson-dummy.m */, + 243AFC2DD859405081EB0853 /* Pods-SBJson-prefix.pch */, ); name = "Support Files"; path = "../Target Support Files/Pods-SBJson"; sourceTree = ""; }; - 4A0DF75DDCB0B449871D48EB /* Reachability */ = { + 0B78C3D8446DA96DD304D706 /* Pods */ = { isa = PBXGroup; children = ( - 78F1385437FA74A2B33B7D6C /* AFNetworkReachabilityManager.h */, - A56A6FA2555D2660EAEC2FF2 /* AFNetworkReachabilityManager.m */, - ); - name = Reachability; - sourceTree = ""; - }; - 4F958EBB46A312D771748E45 /* AFNetworking */ = { - isa = PBXGroup; - children = ( - 5E9CEBB7B860CB3B5F8640CE /* AFNetworking.h */, - 78E6512D2605892643A5F0D7 /* NSURLConnection */, - 162FEC9395A3910D9FA217E6 /* NSURLSession */, - 4A0DF75DDCB0B449871D48EB /* Reachability */, - DCF249F0A06C0CF16B4F3F88 /* Security */, - 9D8A6C3A13796AC3E8DD7E9B /* Serialization */, - D4CF9585B89EC7446AE3E281 /* Support Files */, - 43204F3240AB287A188D9EEB /* UIKit */, - ); - path = AFNetworking; - sourceTree = ""; - }; - 51AE8F8C865CA501C9F55B12 = { - isa = PBXGroup; - children = ( - 87B8EAD712E629A5126EFF6A /* Podfile */, - A7B631D4CEC4C10EDEC1AE0B /* Frameworks */, - A363CBE44F4B382468144A23 /* Pods */, - 6E66294E4578A322267B9D54 /* Products */, - 648C5CB91D36CAE70F4CE6C3 /* Targets Support Files */, - ); - sourceTree = ""; - }; - 5428BAB3C14346691803C4CD /* Support Files */ = { - isa = PBXGroup; - children = ( - 3AC39EA9C989418A578C8345 /* Pods-EGOCache.xcconfig */, - 57B209A108DA1DEBCA1C7664 /* Pods-EGOCache-Private.xcconfig */, - 05750AC4ADB266FCDE69E91C /* Pods-EGOCache-dummy.m */, - B693E70A818C5726F268DB02 /* Pods-EGOCache-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Pods-EGOCache"; - sourceTree = ""; - }; - 648C5CB91D36CAE70F4CE6C3 /* Targets Support Files */ = { - isa = PBXGroup; - children = ( - 9FD22AC16A49F3AF46E67C8D /* Pods */, - ); - name = "Targets Support Files"; - sourceTree = ""; - }; - 6C5131A0E262AA8092D07DC3 /* MBProgressHUD */ = { - isa = PBXGroup; - children = ( - E840D4D791D3065724828542 /* MBProgressHUD.h */, - 77F5CE3216641AC3148A077E /* MBProgressHUD.m */, - 9D5785C54F43DF3D6AD805D3 /* Support Files */, - ); - path = MBProgressHUD; - sourceTree = ""; - }; - 6E66294E4578A322267B9D54 /* Products */ = { - isa = PBXGroup; - children = ( - 2D4D3A8DD7BF721C32F55FC3 /* libPods.a */, - FB9B4890E359DB398B1E48B0 /* libPods-AFNetworking.a */, - 8ACFA92908F13EB46473AC72 /* libPods-DTCoreText.a */, - CAED700541E2AB58B1FD0793 /* libPods-DTFoundation.a */, - 09A8724B696B9CB66533D097 /* libPods-EGOCache.a */, - 81FF1040F2B07AAF62BD5424 /* libPods-Godzippa.a */, - 62918573B06CC38D5898215F /* libPods-MBProgressHUD.a */, - 01FE47E9B3A87B8D20E25ECE /* libPods-Mantle.a */, - 8A7F55E4967C67D363E9B3E2 /* libPods-Reachability.a */, - BB5105D1D07D5FAB04556D53 /* libPods-SBJson.a */, - D3CA2F1DF0DDCBF42AF3B13D /* libPods-SDWebImage.a */, - F3FDE928EB700929106ACC31 /* libPods-STableViewController.a */, - 8A7DC1DCF923EC380E831541 /* libPods-SecureUDID.a */, - ); - name = Products; - sourceTree = ""; - }; - 78E6512D2605892643A5F0D7 /* NSURLConnection */ = { - isa = PBXGroup; - children = ( - 9CDA688EA6A2B63B62AD58AE /* AFHTTPRequestOperation.h */, - 71D4BB6FC3BB93CE78F20303 /* AFHTTPRequestOperation.m */, - DBECAF7E1FE73E71A82AA4E7 /* AFHTTPRequestOperationManager.h */, - 7C51125AE40C5278A311CCCB /* AFHTTPRequestOperationManager.m */, - 7E95B94916BE169060085560 /* AFURLConnectionOperation.h */, - D50CAD7D886127B4FCC9651B /* AFURLConnectionOperation.m */, - ); - name = NSURLConnection; - sourceTree = ""; - }; - 7E6B1AEB377317535CEDBDD2 /* Support Files */ = { - isa = PBXGroup; - children = ( - C02BA88DCE88155CB334FC60 /* Pods-Mantle.xcconfig */, - F52DE06DB5EB4EC57FE16E34 /* Pods-Mantle-Private.xcconfig */, - A8249FC80A664103BBB1DE8F /* Pods-Mantle-dummy.m */, - 62F4C3239D4D3F015DD71C53 /* Pods-Mantle-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Pods-Mantle"; - sourceTree = ""; - }; - 8326CB411B481390650E9AF6 /* SecureUDID */ = { - isa = PBXGroup; - children = ( - 58E5DBC8B9818697255B4008 /* SecureUDID.h */, - 320BA35F75F32BB154425564 /* SecureUDID.m */, - C0AE48740AE0A46767D381C2 /* Support Files */, - ); - path = SecureUDID; - sourceTree = ""; - }; - 83F885CDF4F2BAC3D0DF07F9 /* extobjc */ = { - isa = PBXGroup; - children = ( - 9D66854E0766D3E0BE5A805B /* EXTKeyPathCoding.h */, - E14D41414B94B8F4989048E8 /* EXTRuntimeExtensions.h */, - 62ED7C040522BF04C2B390D1 /* EXTRuntimeExtensions.m */, - 675CFD70906846DC5A49D5EC /* EXTScope.h */, - 7CCAF6AE5C23F6D9915DA610 /* EXTScope.m */, - 0210892821128789322E792B /* metamacros.h */, - ); - name = extobjc; - sourceTree = ""; - }; - 981E1867CC62141EA70F075A /* Support Files */ = { - isa = PBXGroup; - children = ( - 2388D2D4188855470D4BF95C /* Pods-Reachability.xcconfig */, - 6F8C4D5398BE62C6328C2625 /* Pods-Reachability-Private.xcconfig */, - 6986933DD584C538002EBDE4 /* Pods-Reachability-dummy.m */, - FA59845C476487AD0A36BC6B /* Pods-Reachability-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Pods-Reachability"; - sourceTree = ""; - }; - 9C6F005027F2650E502555A2 /* Support Files */ = { - isa = PBXGroup; - children = ( - 80B119C9747B41B487526D88 /* Pods-Godzippa.xcconfig */, - 2E19EE9166A177F5698F8157 /* Pods-Godzippa-Private.xcconfig */, - A742DEB0FD9BD6014CE7E0A9 /* Pods-Godzippa-dummy.m */, - 4EAFF0BD3B364D0A56D53E50 /* Pods-Godzippa-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Pods-Godzippa"; - sourceTree = ""; - }; - 9D5785C54F43DF3D6AD805D3 /* Support Files */ = { - isa = PBXGroup; - children = ( - A079D2B660119076AFF95F22 /* Pods-MBProgressHUD.xcconfig */, - 9EB8D530AEC201D861CD005D /* Pods-MBProgressHUD-Private.xcconfig */, - 896D610411EB647BFA5B8890 /* Pods-MBProgressHUD-dummy.m */, - C60E9150D707BF5135311866 /* Pods-MBProgressHUD-prefix.pch */, - ); - name = "Support Files"; - path = "../Target Support Files/Pods-MBProgressHUD"; - sourceTree = ""; - }; - 9D8A6C3A13796AC3E8DD7E9B /* Serialization */ = { - isa = PBXGroup; - children = ( - 71E65BFF7B983D95A410F7CD /* AFURLRequestSerialization.h */, - DE97551E5565C457C3E6A477 /* AFURLRequestSerialization.m */, - C0359E5CB618AD16D6953ED5 /* AFURLResponseSerialization.h */, - 02A0577B565A1BDA867DFA0B /* AFURLResponseSerialization.m */, - ); - name = Serialization; - sourceTree = ""; - }; - 9FD22AC16A49F3AF46E67C8D /* Pods */ = { - isa = PBXGroup; - children = ( - 2604C3A2F683FC155CDA42C8 /* Pods-acknowledgements.markdown */, - 0417D34EA6D3F42B78A3D595 /* Pods-acknowledgements.plist */, - BD616071F804F598E9B5A2F6 /* Pods-dummy.m */, - 5086956498119AF55DB0D751 /* Pods-environment.h */, - 72E6C6A8EFE741EF53CDEC7B /* Pods-resources.sh */, - EB19ACC604D00C92DC9913F2 /* Pods.debug.xcconfig */, - BB7B84049551A243E8592AC1 /* Pods.release.xcconfig */, + 577229D8F9639E6E12F3384D /* Pods-acknowledgements.markdown */, + 4B1D5C4891F77D6629DCD612 /* Pods-acknowledgements.plist */, + 070F3F5B859156F2E1935C36 /* Pods-dummy.m */, + F2258CC4EF49C712074144BF /* Pods-environment.h */, + C62B8A8A0CCDC8D045217737 /* Pods-resources.sh */, + 6DED580510E29228D84B181C /* Pods.debug.xcconfig */, + 9F5D12453238D4D645F3419B /* Pods.release.xcconfig */, ); name = Pods; path = "Target Support Files/Pods"; sourceTree = ""; }; - A363CBE44F4B382468144A23 /* Pods */ = { + 1427F1C804B3D592BC5236CC /* Security */ = { isa = PBXGroup; children = ( - 4F958EBB46A312D771748E45 /* AFNetworking */, - B93B722DC4AF459C6F78B504 /* DTCoreText */, - F155AE9028630FDF81907E23 /* DTFoundation */, - A9C614BE348E725506161BF5 /* EGOCache */, - C748095BC8618193984EBE26 /* Godzippa */, - 6C5131A0E262AA8092D07DC3 /* MBProgressHUD */, - 0CF4B14CB441BD633C477F8F /* Mantle */, - 21A3AA15A15BA7E1061AB0EA /* Reachability */, - 0F60DD45190D8FE32319E903 /* SBJson */, - F6A2CE5DBCE30FA4B5DB55C2 /* SDWebImage */, - 05BF3CEF5CFD9D4DDB951913 /* STableViewController */, - 8326CB411B481390650E9AF6 /* SecureUDID */, + 30F3F9E01B43C34729A44800 /* AFSecurityPolicy.h */, + 8BA13D397123DD418D9A5557 /* AFSecurityPolicy.m */, ); - name = Pods; + name = Security; sourceTree = ""; }; - A6529EA6CB51C4B3B9E2F1A9 /* UIKit */ = { + 1C7C8810C4C92E27EF896C53 = { isa = PBXGroup; children = ( - 9E8CA8078E20A60DBC1AF6AA /* DTActivityTitleView.h */, - 7A67916EB92B6B880C683460 /* DTActivityTitleView.m */, - 6E82B7E38AD25F8AB4D93CB7 /* DTCustomColoredAccessory.h */, - 310301EC7307552E99263FAC /* DTCustomColoredAccessory.m */, - A99C7CEFD9A42E5F3A51688D /* DTPieProgressIndicator.h */, - 08FD2171E8CD24A8A0DBD606 /* DTPieProgressIndicator.m */, - 1317063F912B339440797EBD /* DTSmartPagingScrollView.h */, - 465331F158130126CBA562F4 /* DTSmartPagingScrollView.m */, - 2F980946DEC33178A5A08C53 /* DTTiledLayerWithoutFade.h */, - 5426F101E987C706690A126B /* DTTiledLayerWithoutFade.m */, - E0F68C07F0EC17F0FCAB39C6 /* NSURL+DTAppLinks.h */, - 785F0A5933408660B50739A5 /* NSURL+DTAppLinks.m */, - 4295F3EC67170421A98183DD /* UIApplication+DTNetworkActivity.h */, - 0621301F98A3CAAC9F12D049 /* UIApplication+DTNetworkActivity.m */, - 9B6DDBCAC733394FF051FE8A /* UIImage+DTFoundation.h */, - A8D7E8CD890D9B675C0DE37E /* UIImage+DTFoundation.m */, - 1A917C215351608764A9240E /* UIView+DTFoundation.h */, - 1D5C1A7AAF534DEEC4199715 /* UIView+DTFoundation.m */, - E4AF31FDAA6C98777F9E86D5 /* UIWebView+DTFoundation.h */, - 3BF6408A0A8D8169773FACB1 /* UIWebView+DTFoundation.m */, + 8B7C124E5CCC2A6FF542A2DD /* Podfile */, + 74498EA379806177A76B704F /* Frameworks */, + B14D2A223A51A15D1D58710A /* Pods */, + A52776769F46F28B2F3F4E48 /* Products */, + 8034BFDEB38D8AE445026C40 /* Targets Support Files */, ); - name = UIKit; sourceTree = ""; }; - A6AFFFDC12AC1C76DAA424A0 /* Core */ = { + 1E1CCB09C08C1CB47B5024BE /* iOS */ = { isa = PBXGroup; children = ( - 3FA247B15C8627BDE1FCAAF3 /* DTAsyncFileDeleter.h */, - F20A15D4F163AA0D25A3B9B5 /* DTAsyncFileDeleter.m */, - DE52400D79B96D2E135A261F /* DTBase64Coding.h */, - 6D6B7239BFC55E389163C9ED /* DTBase64Coding.m */, - F9D384C3C514918ED5E79089 /* DTBlockFunctions.h */, - 3E6D5B50E644E5F4D6F85508 /* DTBlockFunctions.m */, - 96824B14B6DBDCF4D1EBF710 /* DTCoreGraphicsUtils.h */, - B364AC7790E4C914B376B78E /* DTCoreGraphicsUtils.m */, - 241F7CF8C579B43DCA7B8799 /* DTExtendedFileAttributes.h */, - 630BD53F48E6A1081E0981FC /* DTExtendedFileAttributes.m */, - 54F69CDEE37B4673319D8CE4 /* DTFolderMonitor.h */, - 9FA43D71769A4303D9490097 /* DTFolderMonitor.m */, - 11FBBF6C5F20C6501912875E /* DTFoundationConstants.h */, - 73CBB4F984043238B005F4F6 /* DTFoundationConstants.m */, - 6869CC0726278E3A9703581B /* DTLog.h */, - DCE55304C9E3886863A46B6A /* DTLog.m */, - C6A3C5E6701A78D0157E3C33 /* DTVersion.h */, - AE67E38C44414521A4F59135 /* DTVersion.m */, - FE35E19F4EA7C40A33AF8E0D /* DTWeakSupport.h */, - 57868989FCC8CE96EDB53AA9 /* NSArray+DTError.h */, - B11DEBB55CF64C761DCF7AD9 /* NSArray+DTError.m */, - 128D136FE07EB11F95B8CC51 /* NSData+DTCrypto.h */, - A8ED301F3656553A753F946D /* NSData+DTCrypto.m */, - 3AEFB7A0C243F4C9C4DC7750 /* NSDictionary+DTError.h */, - 8C6876031C50434AF3213AF8 /* NSDictionary+DTError.m */, - 5973967E662A7994F1653102 /* NSFileWrapper+DTCopying.h */, - 3B740C69E7D4962CD28B5BC7 /* NSFileWrapper+DTCopying.m */, - BFCB508AD9823A7983E5D74A /* NSMutableArray+DTMoving.h */, - 8E509C66681EEBD1C3466D0F /* NSMutableArray+DTMoving.m */, - 2D2D809FEB987395EFAD2412 /* NSString+DTFormatNumbers.h */, - BD767EB3A2FD0B7E73572E95 /* NSString+DTFormatNumbers.m */, - 0170E263EEA87FC1A556A6AB /* NSString+DTPaths.h */, - 5C65FB39B32FD3702DD36096 /* NSString+DTPaths.m */, - 4639A91682C983BA77196B83 /* NSString+DTURLEncoding.h */, - 649CCA7B271777F59E67FC2E /* NSString+DTURLEncoding.m */, - 5C3FB43C025EF8A6DD5E9C36 /* NSString+DTUtilities.h */, - BA16CAEF21533DDF3C2B7290 /* NSString+DTUtilities.m */, - B6CC01899F1AFCC17E18AE72 /* NSURL+DTComparing.h */, - DB1B04C922A0CA51D8BB03F0 /* NSURL+DTComparing.m */, - D8613BDFE36745543E38EB25 /* NSURL+DTUnshorten.h */, - 9A349FFF5A28BBF0B9F4DB1E /* NSURL+DTUnshorten.m */, + 773442E765A1C63F2FE4C7A7 /* CoreGraphics.framework */, + D0113E9980E365E7C47DF37E /* CoreText.framework */, + 9DD9C5A817433D789365FBBE /* Foundation.framework */, + 75CADB59E864B3C4B66EE1C2 /* ImageIO.framework */, + B4DD78557F2221312508EA29 /* MediaPlayer.framework */, + 82CC48C7AD519486AEE6522C /* MobileCoreServices.framework */, + 20C1566CF6ACC33C01D5FD71 /* QuartzCore.framework */, + 55E04A8B77AF2CE09FB706A1 /* Security.framework */, + 9CDF2BBFC944D7EC9ED7E876 /* SystemConfiguration.framework */, ); - name = Core; + name = iOS; sourceTree = ""; }; - A7B631D4CEC4C10EDEC1AE0B /* Frameworks */ = { + 24FD9540574FA5304DB42E9A /* EGOCache */ = { isa = PBXGroup; children = ( - FB060C6562E7756E27EDDCD1 /* iOS */, - ); - name = Frameworks; - sourceTree = ""; - }; - A9C614BE348E725506161BF5 /* EGOCache */ = { - isa = PBXGroup; - children = ( - 3E393A9434AC2E5B0578EE04 /* EGOCache.h */, - C86ED4DF721FBAD75848E084 /* EGOCache.m */, - 5428BAB3C14346691803C4CD /* Support Files */, + 9AF4EEBE22CA0773738FC4D0 /* EGOCache.h */, + E30D75C853F99F1A5BB9BD3B /* EGOCache.m */, + EA72CDCF8B6C509DA7BB7B38 /* Support Files */, ); path = EGOCache; sourceTree = ""; }; - B93B722DC4AF459C6F78B504 /* DTCoreText */ = { + 257223D4D69012254C26FB70 /* DTHTMLParser */ = { isa = PBXGroup; children = ( - 0320712F0F4CDA7D7098351F /* DTAccessibilityElement.h */, - 85903A9CE88F53C982C6F9D7 /* DTAccessibilityElement.m */, - 54F06CEE2B9ECA4F48697194 /* DTAccessibilityViewProxy.h */, - D7D014F7A128D766754B5F7F /* DTAccessibilityViewProxy.m */, - 0849E2AF5C936DCEB63EB2F6 /* DTAnchorHTMLElement.h */, - 6F1AB28EB778D9E2B929EDAC /* DTAnchorHTMLElement.m */, - AA70EEAAB48CF3DCB2A5FBEA /* DTAttributedLabel.h */, - 8F8C1006846FFB9885019458 /* DTAttributedLabel.m */, - 50979E45EB072018E763F1F8 /* DTAttributedTextCell.h */, - 447C69AE2DB50032DA69DB8B /* DTAttributedTextCell.m */, - 5F6CE03C1BE5EE9482750BBD /* DTAttributedTextContentView.h */, - 69A6343C2F18C658F7DD348A /* DTAttributedTextContentView.m */, - D7676B7849F90ADD8C2A6104 /* DTAttributedTextView.h */, - 5CEA1D6A1444C4CDE57AD32F /* DTAttributedTextView.m */, - 3EB0D7FEBDAEE8A3A88CE324 /* DTBreakHTMLElement.h */, - 668C174C9A564ECD8DA27812 /* DTBreakHTMLElement.m */, - 2884F9F57D9ECEE3DD58DD1A /* DTCSSListStyle.h */, - 09F407F343D0087C42F08031 /* DTCSSListStyle.m */, - 578BD36F73D093BC8645E484 /* DTCSSStylesheet.h */, - 9BD89C3F03ABA3F9FC00C227 /* DTCSSStylesheet.m */, - BFC11B9CE25E1851B3DC13E5 /* DTColor+Compatibility.h */, - 8CD8F8A3D741599FFD818A67 /* DTColor+Compatibility.m */, - C0B6FBCAF783DCAE22AE62FF /* DTColorFunctions.h */, - 50CF6C85A9936F7B0CE4584E /* DTColorFunctions.m */, - 44E4F3AAE1C171E7A4031501 /* DTCompatibility.h */, - 1258305292DF8E3E5E5F4539 /* DTCoreText.h */, - 869484474F565EA93AF7561A /* DTCoreTextConstants.h */, - 91ABEFD71C8DC74363B9C5E3 /* DTCoreTextConstants.m */, - D74D946F2FB9D80EC21079B7 /* DTCoreTextFontCollection.h */, - 40E0444C0FDFD0F02412C625 /* DTCoreTextFontCollection.m */, - ED32489A39CA56F82A8B58D6 /* DTCoreTextFontDescriptor.h */, - 92ABF115E586E14B05BB47D2 /* DTCoreTextFontDescriptor.m */, - 425FCD32EA3A382DBE0A237B /* DTCoreTextFunctions.h */, - EF36058EE813794558E29841 /* DTCoreTextFunctions.m */, - 70AAEE38922C0864796C3663 /* DTCoreTextGlyphRun.h */, - 294FFA5E957524F2BD16D37F /* DTCoreTextGlyphRun.m */, - 1E5B1551BBB442D36A5CEF82 /* DTCoreTextLayoutFrame.h */, - F6BA5BF6B3FAD36E8400B33E /* DTCoreTextLayoutFrame.m */, - 17DDE6D2255B4DB4A87B8366 /* DTCoreTextLayoutFrame+Cursor.h */, - A45287DD5CC03DA55BB4E16B /* DTCoreTextLayoutFrame+Cursor.m */, - 44686F701B4CAC8A22C54366 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */, - A20238144AF5030F4899E448 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */, - EFCD1E4528F0F4B030F80E0E /* DTCoreTextLayoutLine.h */, - 4ED4274B1019AF1CB40F157A /* DTCoreTextLayoutLine.m */, - 951FD23A4DEBF2BDED20BFAE /* DTCoreTextLayouter.h */, - 71AAFDB5996AAEC577483D9A /* DTCoreTextLayouter.m */, - AE310881700502634449D6C4 /* DTCoreTextMacros.h */, - 1842F4D296B06A7D984A0DB9 /* DTCoreTextParagraphStyle.h */, - 3B25075098DCB6B2D9612299 /* DTCoreTextParagraphStyle.m */, - AA3B09A0EC579933C2353DD7 /* DTDictationPlaceholderTextAttachment.h */, - 6E9F835357A14FF2B1C80A9C /* DTDictationPlaceholderTextAttachment.m */, - 3A98DC14C37B5AE16E678A78 /* DTDictationPlaceholderView.h */, - CF93413A0C6ADA4A69B0D9FD /* DTDictationPlaceholderView.m */, - 367683D4BA48112D10FC451B /* DTHTMLAttributedStringBuilder.h */, - 5484AF5E8CE0D3C01D661913 /* DTHTMLAttributedStringBuilder.m */, - 367D248A9F931602CDF863C0 /* DTHTMLElement.h */, - 7DD579988D28CEBBD0A61020 /* DTHTMLElement.m */, - 3142E3DCD198FB065F097F2B /* DTHTMLParserNode.h */, - A1964D061908079EBF220739 /* DTHTMLParserNode.m */, - 66D6BAE209CBAF4097E6F0D8 /* DTHTMLParserTextNode.h */, - 9C89330B1170394C848D9635 /* DTHTMLParserTextNode.m */, - F82201EEEA8068C6B34C7253 /* DTHTMLWriter.h */, - 81BA6B8EB8CC08960A063EE0 /* DTHTMLWriter.m */, - 691B3BE5EBDE90AEA617D150 /* DTHorizontalRuleHTMLElement.h */, - 55D783A030AFE19969828736 /* DTHorizontalRuleHTMLElement.m */, - EAA805FFFDCC2F3DAAD620F4 /* DTIframeTextAttachment.h */, - 4489190037A7638D8CC8533B /* DTIframeTextAttachment.m */, - CA0B9BE163B0DD38B5562943 /* DTImage+HTML.h */, - 76B29DB969C6C0A537A7E3FF /* DTImage+HTML.m */, - 99E38BEE217EECD8FE04EBA9 /* DTImageTextAttachment.h */, - 30F6B331E5B9C868CFD6C2B6 /* DTImageTextAttachment.m */, - D3A601900EB45032F31DC99D /* DTLazyImageView.h */, - 14706916BDF049126B204977 /* DTLazyImageView.m */, - B90CC6020ED076B105C73921 /* DTLinkButton.h */, - 5FB146217237D87D2A9D47E2 /* DTLinkButton.m */, - 4FDFCE1EC5AF47663E5533F7 /* DTListItemHTMLElement.h */, - D46418981F56A6D2D0388744 /* DTListItemHTMLElement.m */, - 9E37B0929B1EE2BBA7F0BE5C /* DTObjectTextAttachment.h */, - B9B4ED813F9D586A98029B78 /* DTObjectTextAttachment.m */, - 08E474FD595CE24032B3197B /* DTStylesheetHTMLElement.h */, - 3EB94C86CF85EBA81690153B /* DTStylesheetHTMLElement.m */, - 782EE1F836220422D6EC79F3 /* DTTextAttachment.h */, - 2E2FD2F9C9CD6399D0BA90F0 /* DTTextAttachment.m */, - 16FF2ACABF2CA27BF6ABAF85 /* DTTextAttachmentHTMLElement.h */, - A2FEED2109EB7168AD4BDF3D /* DTTextAttachmentHTMLElement.m */, - 7BA176D215A12300DA2BC3DC /* DTTextBlock.h */, - A3F4DDCE219F614C07910085 /* DTTextBlock.m */, - B4266A437FC0E61DE5F1D5B8 /* DTTextHTMLElement.h */, - 730A7D38F6FFDF0FE46892F6 /* DTTextHTMLElement.m */, - E94E485A430F7111CBB19E6C /* DTVideoTextAttachment.h */, - 81F4C822F02222D71A727283 /* DTVideoTextAttachment.m */, - 24F0989963D2EB6401D28C66 /* DTWebVideoView.h */, - B5C3782946107D22DDEAF59D /* DTWebVideoView.m */, - 7506622A70441410839FAD45 /* NSAttributedString+DTCoreText.h */, - 16492B8D5B7687C9AD07499C /* NSAttributedString+DTCoreText.m */, - 25441B0A2A133C0EB48B257B /* NSAttributedString+DTDebug.h */, - 1262F885EB2D8C42E0D251E8 /* NSAttributedString+DTDebug.m */, - 4024AAA0AD3BD40AF2F734AD /* NSAttributedString+HTML.h */, - 919485309D7F9E704DA3E9D0 /* NSAttributedString+HTML.m */, - 04ED898C2ECD35BF231AF596 /* NSAttributedString+SmallCaps.h */, - 14A727E0E5397AFD2403431C /* NSAttributedString+SmallCaps.m */, - C792084077E1D79D2046C05C /* NSAttributedStringRunDelegates.h */, - A09E4E3D058A22374FA3E52A /* NSAttributedStringRunDelegates.m */, - BC2F3066E4568C5EE01A4522 /* NSCharacterSet+HTML.h */, - DB21BF9329289D1E434B74DD /* NSCharacterSet+HTML.m */, - 596BA774AC77D3C5F33C1898 /* NSCoder+DTCompatibility.h */, - 610DE255531BF6EEB5991477 /* NSCoder+DTCompatibility.m */, - 35BD8EDE5554915364A56608 /* NSDictionary+DTCoreText.h */, - F224B535A700999FE12BAFE9 /* NSDictionary+DTCoreText.m */, - 2781170ACEC84912C5741685 /* NSMutableAttributedString+HTML.h */, - 2756DF9C91A022A1E05A42B8 /* NSMutableAttributedString+HTML.m */, - 810A23CACBC834CFB7FE0B59 /* NSMutableString+HTML.h */, - FFEB0A84E6675AEBE0CFE484 /* NSMutableString+HTML.m */, - 7FE9E4CECFDA7FAA64A49FAE /* NSScanner+HTML.h */, - B5C57EFC89F1A8F197D6BB9F /* NSScanner+HTML.m */, - 47D3C22AE0C8AB6543BDC349 /* NSString+CSS.h */, - 8F754E08EA6C27E65CE75BF0 /* NSString+CSS.m */, - 2A746EFCC6E837213E79E458 /* NSString+HTML.h */, - 878709F0A0EA26F7CA14C962 /* NSString+HTML.m */, - 30DD1909FF84B561B5097267 /* NSString+Paragraphs.h */, - 1E5010AFA39031FAE5069966 /* NSString+Paragraphs.m */, - FDC4F3449CACD9982B406C79 /* UIFont+DTCoreText.h */, - FDEB6D07D34B0BAE39B2E5B8 /* UIFont+DTCoreText.m */, - 102A91707C3814BAE0EB62CA /* default.css.c */, - 151FE67D8E45086ED936B3CA /* Support Files */, + E06A0E4811BBE705C4CCACAB /* DTHTMLParser.h */, + 54154F8BD9FC16F347D72760 /* DTHTMLParser.m */, ); - path = DTCoreText; + name = DTHTMLParser; sourceTree = ""; }; - C0AE48740AE0A46767D381C2 /* Support Files */ = { + 26D71C1BD95AE5034CCF0451 /* extobjc */ = { isa = PBXGroup; children = ( - A7C651B7A7788E52E2126329 /* Pods-SecureUDID.xcconfig */, - 5FB3240C6586FC260EA9EAF1 /* Pods-SecureUDID-Private.xcconfig */, - 264C12C1EB557815566DA774 /* Pods-SecureUDID-dummy.m */, - 86077D8B6C20D046B0B4BDB7 /* Pods-SecureUDID-prefix.pch */, + E682227BB5148A457619A3B8 /* EXTKeyPathCoding.h */, + 2AEE9E5C80C90AF637A41B1D /* EXTRuntimeExtensions.h */, + 0338FF159AEAE4FBAB5EA8DE /* EXTRuntimeExtensions.m */, + 7769048F02C4CA9F2EDF56FB /* EXTScope.h */, + 2FBF0F645D702F931F268E9E /* EXTScope.m */, + 286208A4C4A2A5532D103394 /* metamacros.h */, + ); + name = extobjc; + sourceTree = ""; + }; + 32915A5FA3E8EE9AD0939608 /* MJRefresh */ = { + isa = PBXGroup; + children = ( + F2551C1ACF348C6C30F3CD19 /* MJRefresh.h */, + 73CEA0FB979ED40EC2A6B6BC /* MJRefreshComponent.h */, + A3A3790BFF503435831271AC /* MJRefreshComponent.m */, + E318B19F03E9DE62C674966F /* MJRefreshConst.h */, + 88996DCFB9C20647C811521A /* MJRefreshConst.m */, + BC02B7E0A617A2C3EE555756 /* MJRefreshFooter.h */, + C9D08CD6B532365139DA1407 /* MJRefreshFooter.m */, + 905830A7C598494CA2F91F4C /* MJRefreshGifFooter.h */, + 87F422B2E0D48E37DAC11B50 /* MJRefreshGifFooter.m */, + FA171C7D85D5C1A68B9F4FF4 /* MJRefreshGifHeader.h */, + 30EF123E79EC9F1A86F2FB80 /* MJRefreshGifHeader.m */, + F48BD34D52AB4DDAFF22F360 /* MJRefreshHeader.h */, + 1D67FE333691046E4CB8302C /* MJRefreshHeader.m */, + 3F785BCBA9B7F64378E76278 /* MJRefreshLegendFooter.h */, + EB1FFA98D7F41E49D4A1FC80 /* MJRefreshLegendFooter.m */, + EB72821D64E431973F02A38F /* MJRefreshLegendHeader.h */, + 69A1F0BE372389DA46197303 /* MJRefreshLegendHeader.m */, + AE4D8F0FE101726A21C7916D /* UIScrollView+MJExtension.h */, + 9447CAF1045E27BEEDA3F476 /* UIScrollView+MJExtension.m */, + F64AF8C879E7300CB2CB9C16 /* UIScrollView+MJRefresh.h */, + 51DA841889AC7CDBDC4EEC6E /* UIScrollView+MJRefresh.m */, + 1803F7DA4A6EF54918CD8DAB /* UIView+MJExtension.h */, + F3298950D38367B5B0B857B9 /* UIView+MJExtension.m */, + BE6DD9DD3A2C58FC4D6A319F /* Resources */, + 6AAE7E0A24D8A6E53F99455F /* Support Files */, + ); + path = MJRefresh; + sourceTree = ""; + }; + 35435CBB3BF878B0E5621735 /* Support Files */ = { + isa = PBXGroup; + children = ( + C7F5D47434A5342B76894D9E /* Pods-MBProgressHUD.xcconfig */, + DD16954F60332ADFD07CC6DD /* Pods-MBProgressHUD-Private.xcconfig */, + 51F816C7B2A3D31378A7677E /* Pods-MBProgressHUD-dummy.m */, + 22AC81C0620BA21E6E75DE8B /* Pods-MBProgressHUD-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/Pods-MBProgressHUD"; + sourceTree = ""; + }; + 3DF3FC1DE07DDC29A6FCF9B2 /* Core */ = { + isa = PBXGroup; + children = ( + 2EC05C5B2AC470186E038E3F /* DTAsyncFileDeleter.h */, + 49AB829E61E71E2B8119ABA5 /* DTAsyncFileDeleter.m */, + 34E2230D1DF25D9C76EEE3BA /* DTBase64Coding.h */, + B500ECF7DB98EE0B317600B7 /* DTBase64Coding.m */, + 663130FDE5B7DD0A2641EB9D /* DTBlockFunctions.h */, + 811C72238540E10D821E509F /* DTBlockFunctions.m */, + 57E5F26122F2FB06F884C15A /* DTCoreGraphicsUtils.h */, + ECBCCCD797D5A2DC1FEF0C9E /* DTCoreGraphicsUtils.m */, + 7AA0FD965C5FBB1287C48E48 /* DTExtendedFileAttributes.h */, + DBBDECA0E031AACA6A6FD77E /* DTExtendedFileAttributes.m */, + 0CD381B22C0C351795FA961B /* DTFolderMonitor.h */, + 74AC06D02C0D9C5BA41A0675 /* DTFolderMonitor.m */, + DD6A78B0D9A58DFC5680AEF5 /* DTFoundationConstants.h */, + 1B6C1077FF5B5CE830E38ED8 /* DTFoundationConstants.m */, + 155778E11B2A513DDDAEF986 /* DTLog.h */, + 5A1335E83B09E0425099AB9E /* DTLog.m */, + 9520C2A2987FE0DFD1CC4197 /* DTVersion.h */, + 5B6AF433338EC4AC033A9181 /* DTVersion.m */, + D086CB92C6BD593F773E96CE /* DTWeakSupport.h */, + 9F42516FEA63D4DC3288C7DE /* NSArray+DTError.h */, + FBF4D2435D4D21F020CB5127 /* NSArray+DTError.m */, + E423E5459EDC690BEBD6A3A4 /* NSData+DTCrypto.h */, + D5EA61467C60003133DD0D39 /* NSData+DTCrypto.m */, + 2F6688E0FD46351AE98ED8E7 /* NSDictionary+DTError.h */, + 7177B72C59C85460D5052B06 /* NSDictionary+DTError.m */, + 2ADF5358C353032A4C980480 /* NSFileWrapper+DTCopying.h */, + 5AC655EBA4D1C6760F814C3F /* NSFileWrapper+DTCopying.m */, + 38824C80AA03F622FF5609CD /* NSMutableArray+DTMoving.h */, + 0FFDB42E147E3F4AC3BD515A /* NSMutableArray+DTMoving.m */, + F9F7F21660EEA731250022FB /* NSString+DTFormatNumbers.h */, + E3CA9A0D1022C0680DD14622 /* NSString+DTFormatNumbers.m */, + 4F72F40D140F09B394AAEE86 /* NSString+DTPaths.h */, + 0546F3C3A3284709F421382A /* NSString+DTPaths.m */, + E12A9F77537BE752605BE4FB /* NSString+DTURLEncoding.h */, + A5DC4DE3B2C1EA11EA2068EE /* NSString+DTURLEncoding.m */, + 4847BB93AAE212547B53AC4C /* NSString+DTUtilities.h */, + 8D7624987F033F98039FBAA9 /* NSString+DTUtilities.m */, + 2CF9B41C27A9903229B4D678 /* NSURL+DTComparing.h */, + 9363BC239F7CCC502F0109FD /* NSURL+DTComparing.m */, + 7BBF2A6202CA507D30D3476A /* NSURL+DTUnshorten.h */, + DF93B9175E450858873DDAA6 /* NSURL+DTUnshorten.m */, + ); + name = Core; + sourceTree = ""; + }; + 4099F847395F33999CACE38E /* Support Files */ = { + isa = PBXGroup; + children = ( + B7C1F9E6ED53CEE2B5E2C968 /* Pods-SDWebImage.xcconfig */, + 22DC7F7C26F943CC883DABEC /* Pods-SDWebImage-Private.xcconfig */, + 4F2E55C6466ED5FD349BC1A9 /* Pods-SDWebImage-dummy.m */, + 853BA32A4A24F1EE925CEB3E /* Pods-SDWebImage-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/Pods-SDWebImage"; + sourceTree = ""; + }; + 45F7C249D2B64178C6F57BFA /* UIKit */ = { + isa = PBXGroup; + children = ( + A1B9DA4F4DB2E5878765292A /* AFNetworkActivityIndicatorManager.h */, + BAD193C4FADB5899C6C15C32 /* AFNetworkActivityIndicatorManager.m */, + D5C54EE1B30EC338D3303861 /* UIActivityIndicatorView+AFNetworking.h */, + 20D928D2843510C0E5CBFF97 /* UIActivityIndicatorView+AFNetworking.m */, + 930A0AB4C8E7F92D743F8FB7 /* UIAlertView+AFNetworking.h */, + 9EAF55F3F29A2DC5F6D0D400 /* UIAlertView+AFNetworking.m */, + 799A3F011EE9572BE76485F5 /* UIButton+AFNetworking.h */, + C81BB5A80B9CDD86C332157A /* UIButton+AFNetworking.m */, + B2BE44C2BD5CFBD496BADAF2 /* UIImageView+AFNetworking.h */, + 7EF4F9B8E1DE4E5EC5ADEADA /* UIImageView+AFNetworking.m */, + 365283556A4FFE038B8368A7 /* UIKit+AFNetworking.h */, + 11123DE0038FC1BD0EB81C7B /* UIProgressView+AFNetworking.h */, + 1FAA7411D6D971B73B99F6D3 /* UIProgressView+AFNetworking.m */, + BD4CC0F4A206E3387EB23FC7 /* UIRefreshControl+AFNetworking.h */, + 9A0DCAD1855DE063C4F9EC83 /* UIRefreshControl+AFNetworking.m */, + 43E49596A789FBF422F82CB3 /* UIWebView+AFNetworking.h */, + 5A9EFA1E9B05357190D9172E /* UIWebView+AFNetworking.m */, + ); + name = UIKit; + sourceTree = ""; + }; + 4A640C92F90FA75C70C6CDA0 /* MBProgressHUD */ = { + isa = PBXGroup; + children = ( + 7B4E1FCB0CDB86A8C3132D2B /* MBProgressHUD.h */, + 28542C81679EC1F5BE13B85D /* MBProgressHUD.m */, + 35435CBB3BF878B0E5621735 /* Support Files */, + ); + path = MBProgressHUD; + sourceTree = ""; + }; + 565F3D0C6438286E8959044E /* Core */ = { + isa = PBXGroup; + children = ( + 5BFCE43BFE1BE917E23BA9CE /* NSData+ImageContentType.h */, + 4207141FCF781427DE11D23B /* NSData+ImageContentType.m */, + C69239397978F1E0635D29A1 /* SDImageCache.h */, + FC33FC69327B72065A6A6850 /* SDImageCache.m */, + 2931671231F2BF356C7EAEAC /* SDWebImageCompat.h */, + 2089825488BA852B53109B98 /* SDWebImageCompat.m */, + F6A6D3AA20DAA77868C1D091 /* SDWebImageDecoder.h */, + 4970587FBCB99927707153C7 /* SDWebImageDecoder.m */, + A4297449CDDF54794845DE0B /* SDWebImageDownloader.h */, + 97B8EB9DDB15EC1FE96AD6FC /* SDWebImageDownloader.m */, + 39293F16EE02408BB628602B /* SDWebImageDownloaderOperation.h */, + 92DD137860918A2914D09FBE /* SDWebImageDownloaderOperation.m */, + C4236B98DE95D458253A2E28 /* SDWebImageManager.h */, + 70BE3A9C24806ADF38059D79 /* SDWebImageManager.m */, + 64BD8CA15822F6A5D7114EE5 /* SDWebImageOperation.h */, + 0FE4C73D317A76FA9C7AE4B2 /* SDWebImagePrefetcher.h */, + 5C9CE7FF98D4D9258B432D6A /* SDWebImagePrefetcher.m */, + 02567E2AFA2ABD2F2C933C40 /* UIButton+WebCache.h */, + 0C1064303DF3B737DA725814 /* UIButton+WebCache.m */, + 000C7C8E20F34124E0809DB3 /* UIImage+GIF.h */, + 53816A84E2AE1459E9514BC5 /* UIImage+GIF.m */, + DF3A183ACE7AA9CF9B0D51C3 /* UIImage+MultiFormat.h */, + 34D8B3FF86517D1908DF722D /* UIImage+MultiFormat.m */, + 26C9F48A9F0BC01C9500E750 /* UIImageView+HighlightedWebCache.h */, + 9AC757925F47F6FF993302F2 /* UIImageView+HighlightedWebCache.m */, + B26EF2E1F5791671372428C1 /* UIImageView+WebCache.h */, + B84601644BABDDB5EF4E1742 /* UIImageView+WebCache.m */, + 12CAC97CA7D7C1588D4A140F /* UIView+WebCacheOperation.h */, + AFFE47C69E2CCB6543DD7528 /* UIView+WebCacheOperation.m */, + ); + name = Core; + sourceTree = ""; + }; + 617D87F1C98D8799E32D3317 /* AFNetworking */ = { + isa = PBXGroup; + children = ( + C0130EFECC56B2652B94F81E /* AFNetworking.h */, + CD15B04DC899B539C4854E4E /* NSURLConnection */, + F7D2983AF2ED174CFA046104 /* NSURLSession */, + E838453A945BF81964DFD856 /* Reachability */, + 1427F1C804B3D592BC5236CC /* Security */, + CFF3BDE017F92278D168BB35 /* Serialization */, + D042DBD861BC220311E28DCC /* Support Files */, + 45F7C249D2B64178C6F57BFA /* UIKit */, + ); + path = AFNetworking; + sourceTree = ""; + }; + 657BA9EA5FE9DB4946EBCCBB /* UIKit */ = { + isa = PBXGroup; + children = ( + 98A1A4FA156A15C63ED19D69 /* DTActivityTitleView.h */, + 02297CC15BF3E306414B69BD /* DTActivityTitleView.m */, + C3CACD01ECAC658FCCD298EC /* DTCustomColoredAccessory.h */, + 8603AA1F5FB93FC0461DE390 /* DTCustomColoredAccessory.m */, + C988330BF193EC2D1790D01E /* DTPieProgressIndicator.h */, + 73327572566D7640FD245B2A /* DTPieProgressIndicator.m */, + D7D7A0CB50404353CCE42F15 /* DTSmartPagingScrollView.h */, + C9CEC52E2C906AE8F6B24AF0 /* DTSmartPagingScrollView.m */, + 596D48C47A75A30F8F476EF7 /* DTTiledLayerWithoutFade.h */, + 99BB5CAD5850C8794A82F246 /* DTTiledLayerWithoutFade.m */, + 49732D6B3FAC6FA975BA8B57 /* NSURL+DTAppLinks.h */, + AEE0406A9A825584A0F6B860 /* NSURL+DTAppLinks.m */, + A4476FAA3F466E24375C066C /* UIApplication+DTNetworkActivity.h */, + AE00973AB256DF3A0D0BA60F /* UIApplication+DTNetworkActivity.m */, + C55CF69840949A3B9DB21983 /* UIImage+DTFoundation.h */, + 016554F1D5DBD110C0A9FAF8 /* UIImage+DTFoundation.m */, + 2B66DC6C098625298FDCAD16 /* UIView+DTFoundation.h */, + 36F28FF07FEBCD953A6BF6AF /* UIView+DTFoundation.m */, + 3F710767E010692A479E81A8 /* UIWebView+DTFoundation.h */, + B0A3460A7A2FDD3392A03A11 /* UIWebView+DTFoundation.m */, + ); + name = UIKit; + sourceTree = ""; + }; + 6AAE7E0A24D8A6E53F99455F /* Support Files */ = { + isa = PBXGroup; + children = ( + D3C8C061C4FFE31551220FA8 /* Pods-MJRefresh.xcconfig */, + 90370D6EA53E520AF4DD96ED /* Pods-MJRefresh-Private.xcconfig */, + A4E0118791F34CD014CF9579 /* Pods-MJRefresh-dummy.m */, + 540C1ACAE6662D1616D6CC6D /* Pods-MJRefresh-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/Pods-MJRefresh"; + sourceTree = ""; + }; + 71288CA0E3EB5EAD8C16A98B /* Support Files */ = { + isa = PBXGroup; + children = ( + 218C23F30E34325AF887D15E /* Pods-DTFoundation.xcconfig */, + 52247F1042D0F039DD844309 /* Pods-DTFoundation-Private.xcconfig */, + CD2AE4C4FECECC3D80428448 /* Pods-DTFoundation-dummy.m */, + 0EE45DCFC5E46ECBA0783341 /* Pods-DTFoundation-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/Pods-DTFoundation"; + sourceTree = ""; + }; + 74498EA379806177A76B704F /* Frameworks */ = { + isa = PBXGroup; + children = ( + 1E1CCB09C08C1CB47B5024BE /* iOS */, + ); + name = Frameworks; + sourceTree = ""; + }; + 79EEE589057B17968FCFC0D2 /* Reachability */ = { + isa = PBXGroup; + children = ( + C99E56F7134A39AC6037E2E3 /* Reachability.h */, + A5204F4E2CF3C362FF72EF76 /* Reachability.m */, + ACD048247F3E96A7DFF3B218 /* Support Files */, + ); + path = Reachability; + sourceTree = ""; + }; + 8034BFDEB38D8AE445026C40 /* Targets Support Files */ = { + isa = PBXGroup; + children = ( + 0B78C3D8446DA96DD304D706 /* Pods */, + ); + name = "Targets Support Files"; + sourceTree = ""; + }; + 822ADC966DFB778D5E7190B2 /* Support Files */ = { + isa = PBXGroup; + children = ( + 56D14654DC8077D93D2A1E02 /* Pods-SecureUDID.xcconfig */, + 4F71A29574E0B380FE804D63 /* Pods-SecureUDID-Private.xcconfig */, + 57CBAECC87D95F8EDCB43392 /* Pods-SecureUDID-dummy.m */, + 5EA4D2B9D7DADFFFFBB8C962 /* Pods-SecureUDID-prefix.pch */, ); name = "Support Files"; path = "../Target Support Files/Pods-SecureUDID"; sourceTree = ""; }; - C748095BC8618193984EBE26 /* Godzippa */ = { + 885692F5D851BC67F5303C1D /* SDWebImage */ = { isa = PBXGroup; children = ( - 32EAED9B52457C4645FFAFF2 /* Godzippa.h */, - 2564BD064A8DF54367722ED0 /* NSData+Godzippa.h */, - 513154F6A79243EA1B6F566A /* NSData+Godzippa.m */, - FF814FE7ED9C6040D466ABCF /* NSFileManager+Godzippa.h */, - 2C228B56F7C84D191A3FD702 /* NSFileManager+Godzippa.m */, - 9C6F005027F2650E502555A2 /* Support Files */, + 565F3D0C6438286E8959044E /* Core */, + 4099F847395F33999CACE38E /* Support Files */, + ); + path = SDWebImage; + sourceTree = ""; + }; + 93588BA60D412C3324FABD02 /* Support Files */ = { + isa = PBXGroup; + children = ( + EF130C5383314A1B1F7BBC18 /* Pods-DTCoreText.xcconfig */, + C09B4C9B31BECE0AAEBA4764 /* Pods-DTCoreText-Private.xcconfig */, + F114083C13D15B1EB627A350 /* Pods-DTCoreText-dummy.m */, + D204A5D144A99453E91B207B /* Pods-DTCoreText-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/Pods-DTCoreText"; + sourceTree = ""; + }; + 96DA662D9BAF7EAF6B7C0D25 /* Mantle */ = { + isa = PBXGroup; + children = ( + 02267995D166E83411B7FA6E /* MTLJSONAdapter.h */, + 0DBF7BFED66DEA608EE98F79 /* MTLJSONAdapter.m */, + CE8D89294248FA6062C49829 /* MTLManagedObjectAdapter.h */, + 19360A8F7BDBEE56A4499368 /* MTLManagedObjectAdapter.m */, + 8831276CD46A5B60D74C2BAC /* MTLModel.h */, + C9D338DCF7BBE8E416037CF6 /* MTLModel.m */, + AE53AD511CE0BA44B4752FEA /* MTLModel+NSCoding.h */, + FD5081DE159AF8A6D580542B /* MTLModel+NSCoding.m */, + 7BC113614F7136493658DF3D /* MTLReflection.h */, + D905170C724FC07A087DA177 /* MTLReflection.m */, + 4DBFAFDF68A673A50270352B /* MTLValueTransformer.h */, + 1198240109E0FF9B776C4A37 /* MTLValueTransformer.m */, + 0CB61A9012F7783015E18B7B /* Mantle.h */, + D82372A59C0AC80663B90CED /* NSArray+MTLManipulationAdditions.h */, + AC65D72031F0470A4D32818C /* NSArray+MTLManipulationAdditions.m */, + 272D39690151F2016FF485C2 /* NSDictionary+MTLManipulationAdditions.h */, + 9A64DFA72DEB806D609C599D /* NSDictionary+MTLManipulationAdditions.m */, + D938F08000DB650B2F491850 /* NSError+MTLModelException.h */, + 3E9CAEF7849C7310918D8E32 /* NSError+MTLModelException.m */, + 8312AECB034C2BC0914BFAAF /* NSObject+MTLComparisonAdditions.h */, + CAB0A45839DC7DB4DE3ED48D /* NSObject+MTLComparisonAdditions.m */, + E185C3A63D33EA5B221AC913 /* NSValueTransformer+MTLInversionAdditions.h */, + 10E66F61731BC4E063DE4062 /* NSValueTransformer+MTLInversionAdditions.m */, + F582FC8D28A00099572FBB6E /* NSValueTransformer+MTLPredefinedTransformerAdditions.h */, + 78733D989F9F73E37027C410 /* NSValueTransformer+MTLPredefinedTransformerAdditions.m */, + 9BF0032683A4917FAB555AAE /* Support Files */, + 26D71C1BD95AE5034CCF0451 /* extobjc */, + ); + path = Mantle; + sourceTree = ""; + }; + 9BF0032683A4917FAB555AAE /* Support Files */ = { + isa = PBXGroup; + children = ( + 9AB972B15EDB9900880A5BD4 /* Pods-Mantle.xcconfig */, + B75F71FC4D5A158E5CBAAE4A /* Pods-Mantle-Private.xcconfig */, + 976E8ED367ED5D8851AFBD7F /* Pods-Mantle-dummy.m */, + 27C0477001CA531D8F675E00 /* Pods-Mantle-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/Pods-Mantle"; + sourceTree = ""; + }; + 9D41155BE4CC4B51CB20817F /* Support Files */ = { + isa = PBXGroup; + children = ( + F8D82090CD2D00F85300B351 /* Pods-STableViewController.xcconfig */, + AEDF710B3D9BBB4B3530BDB4 /* Pods-STableViewController-Private.xcconfig */, + 8E7C41887C23810EB51DD0A0 /* Pods-STableViewController-dummy.m */, + 14B01793281B15823DA8AB70 /* Pods-STableViewController-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/Pods-STableViewController"; + sourceTree = ""; + }; + 9D5410C18F4CDD38DD63F89C /* Godzippa */ = { + isa = PBXGroup; + children = ( + E2E58C3EBFFE680BA8B27886 /* Godzippa.h */, + DD2E4AF02D89954634EFF8C5 /* NSData+Godzippa.h */, + 14E0B24681D42846B0CD9A3B /* NSData+Godzippa.m */, + CD5024FC7D47DD48B5ED9D8D /* NSFileManager+Godzippa.h */, + 755D62429655E5D59DD7F71D /* NSFileManager+Godzippa.m */, + C311A51B9EC4B49AA7F516CD /* Support Files */, ); path = Godzippa; sourceTree = ""; }; - D4CF9585B89EC7446AE3E281 /* Support Files */ = { + A52776769F46F28B2F3F4E48 /* Products */ = { isa = PBXGroup; children = ( - E01E154AA85044DF660072E7 /* Pods-AFNetworking.xcconfig */, - 46BF64EBBCB8E5A1BE2C6F2F /* Pods-AFNetworking-Private.xcconfig */, - 1BF72998B2A17068028BA308 /* Pods-AFNetworking-dummy.m */, - 7FAB33FA4E8EE63F4C74AF90 /* Pods-AFNetworking-prefix.pch */, + 0DFC802C0A6071810B82B253 /* libPods.a */, + A3D50189B84CAFA22502AA88 /* libPods-AFNetworking.a */, + CBE26A822B9113D7AEE87DA3 /* libPods-DTCoreText.a */, + B62216477414878B1B856598 /* libPods-DTFoundation.a */, + 2E48888E05ABEED31745F4E6 /* libPods-EGOCache.a */, + 27C436A1B9330F8576D3D27E /* libPods-Godzippa.a */, + FD994BF3AB940E759259C133 /* libPods-MBProgressHUD.a */, + 053E650D0FAE12D024D858D0 /* libPods-MJRefresh.a */, + A2B2B182EBB052C8D1A75726 /* libPods-Mantle.a */, + 4800D6896DDF29D0676A963A /* libPods-Reachability.a */, + 4675BAADC653074EB3762AB3 /* libPods-SBJson.a */, + 1C4485F4C42846C2279D9B3C /* libPods-SDWebImage.a */, + B30451B8E4FDB09C257558C5 /* libPods-STableViewController.a */, + B001B4A5AB7E920F7C68C0BF /* libPods-SecureUDID.a */, + ); + name = Products; + sourceTree = ""; + }; + ACD048247F3E96A7DFF3B218 /* Support Files */ = { + isa = PBXGroup; + children = ( + E395C8947ADEF664E5DAA682 /* Pods-Reachability.xcconfig */, + 862B69EC37D1700792222296 /* Pods-Reachability-Private.xcconfig */, + 2CFB20E08EB3F41ABA5F07D0 /* Pods-Reachability-dummy.m */, + 3D8E2AA6030AF427437E83FD /* Pods-Reachability-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/Pods-Reachability"; + sourceTree = ""; + }; + B14D2A223A51A15D1D58710A /* Pods */ = { + isa = PBXGroup; + children = ( + 617D87F1C98D8799E32D3317 /* AFNetworking */, + FB0401E282DEB9F5EF414A1D /* DTCoreText */, + 02FA3959F9CACA09C384A778 /* DTFoundation */, + 24FD9540574FA5304DB42E9A /* EGOCache */, + 9D5410C18F4CDD38DD63F89C /* Godzippa */, + 4A640C92F90FA75C70C6CDA0 /* MBProgressHUD */, + 32915A5FA3E8EE9AD0939608 /* MJRefresh */, + 96DA662D9BAF7EAF6B7C0D25 /* Mantle */, + 79EEE589057B17968FCFC0D2 /* Reachability */, + E33C4F58B0E8D1398D1B615F /* SBJson */, + 885692F5D851BC67F5303C1D /* SDWebImage */, + B4EAA255AD4BA977AF582710 /* STableViewController */, + B8451AA3EBE88B2160A7D6A8 /* SecureUDID */, + ); + name = Pods; + sourceTree = ""; + }; + B4EAA255AD4BA977AF582710 /* STableViewController */ = { + isa = PBXGroup; + children = ( + 2C66CCE611914E181AD7F1F5 /* STableViewController.h */, + C65AC3C56199B42EA9136A83 /* STableViewController.m */, + 9D41155BE4CC4B51CB20817F /* Support Files */, + ); + path = STableViewController; + sourceTree = ""; + }; + B8451AA3EBE88B2160A7D6A8 /* SecureUDID */ = { + isa = PBXGroup; + children = ( + C072F31E804C6721B44E54F2 /* SecureUDID.h */, + 61383BAC381EA9F53764205F /* SecureUDID.m */, + 822ADC966DFB778D5E7190B2 /* Support Files */, + ); + path = SecureUDID; + sourceTree = ""; + }; + BE6DD9DD3A2C58FC4D6A319F /* Resources */ = { + isa = PBXGroup; + children = ( + CB8B44F2AD738EA16716C5FE /* MJRefresh.bundle */, + ); + name = Resources; + sourceTree = ""; + }; + C311A51B9EC4B49AA7F516CD /* Support Files */ = { + isa = PBXGroup; + children = ( + DFE070D59D98460D7859BE1A /* Pods-Godzippa.xcconfig */, + 043D98647761B600A32F118F /* Pods-Godzippa-Private.xcconfig */, + 503A291995410E5B5A763B2D /* Pods-Godzippa-dummy.m */, + 62C8D3C5B2D9903F6B8D9DD2 /* Pods-Godzippa-prefix.pch */, + ); + name = "Support Files"; + path = "../Target Support Files/Pods-Godzippa"; + sourceTree = ""; + }; + CD15B04DC899B539C4854E4E /* NSURLConnection */ = { + isa = PBXGroup; + children = ( + ACBD88BFCFCB486595242A16 /* AFHTTPRequestOperation.h */, + 8548215E6816926EBD286077 /* AFHTTPRequestOperation.m */, + 46BBD8CD798A9C6A959B2F9C /* AFHTTPRequestOperationManager.h */, + 5A049A3C50CE466C4E012A2E /* AFHTTPRequestOperationManager.m */, + 74503AAA593FD430ACC0474E /* AFURLConnectionOperation.h */, + BB7CD6D48CF336B4A54D21F1 /* AFURLConnectionOperation.m */, + ); + name = NSURLConnection; + sourceTree = ""; + }; + CFAA8C38836DF38CFFD0510E /* DTAnimatedGIF */ = { + isa = PBXGroup; + children = ( + E285C11FC8A0EDC3C050F5BA /* DTAnimatedGIF.h */, + 756716097FFEF7DF57ABDADA /* DTAnimatedGIF.m */, + ); + name = DTAnimatedGIF; + sourceTree = ""; + }; + CFF3BDE017F92278D168BB35 /* Serialization */ = { + isa = PBXGroup; + children = ( + A8F04169908591C458261427 /* AFURLRequestSerialization.h */, + 337FFFD4E19E5FEE3B22903C /* AFURLRequestSerialization.m */, + 499918F35DCBA4F2298533F3 /* AFURLResponseSerialization.h */, + EE8565A6AA74E73D16AA06A7 /* AFURLResponseSerialization.m */, + ); + name = Serialization; + sourceTree = ""; + }; + D042DBD861BC220311E28DCC /* Support Files */ = { + isa = PBXGroup; + children = ( + E0CDB2B40E60145C0DD591F1 /* Pods-AFNetworking.xcconfig */, + CBC0B7619CE8715C3E8F9F05 /* Pods-AFNetworking-Private.xcconfig */, + 6C0F24BC2B49183DD4CDCD44 /* Pods-AFNetworking-dummy.m */, + 4F2DF4152986932E452C878E /* Pods-AFNetworking-prefix.pch */, ); name = "Support Files"; path = "../Target Support Files/Pods-AFNetworking"; sourceTree = ""; }; - D4E21EA6AE46C9061F6289BE /* DTHTMLParser */ = { + E33C4F58B0E8D1398D1B615F /* SBJson */ = { isa = PBXGroup; children = ( - 3AA8A5B332A17FCFBFE39DC1 /* DTHTMLParser.h */, - F655701E7EDC90F5F2D6B40C /* DTHTMLParser.m */, + F2A3D38884C41197378682EC /* SBJson4.h */, + 4750630460C4BF10955C50F5 /* SBJson4Parser.h */, + 10FEB6C385D0B97A813899C3 /* SBJson4Parser.m */, + 09B84FF607C97FBFEA9CEE6F /* SBJson4StreamParser.h */, + F27265DD7AC462708EDB1231 /* SBJson4StreamParser.m */, + C1A3480ED022780B4482E351 /* SBJson4StreamParserState.h */, + D9A3FE59729AC5FB74AF9D67 /* SBJson4StreamParserState.m */, + 6F6BBE8AF6052FBE8F7598DD /* SBJson4StreamTokeniser.h */, + 320C4B3C2C920938601B4305 /* SBJson4StreamTokeniser.m */, + ACDC97D0468852D958D8D8E8 /* SBJson4StreamWriter.h */, + A652D0BB9B4989A790D1C56C /* SBJson4StreamWriter.m */, + 05BD0FA1310754768903BD03 /* SBJson4StreamWriterState.h */, + 09EAFDAD063EDC00096089DB /* SBJson4StreamWriterState.m */, + 10E13906FA92C4B9CF1CEA8B /* SBJson4Writer.h */, + F3AFBC2A7345283D309D433A /* SBJson4Writer.m */, + 098FBF79125E912984348A58 /* Support Files */, ); - name = DTHTMLParser; + path = SBJson; sourceTree = ""; }; - DCF249F0A06C0CF16B4F3F88 /* Security */ = { + E838453A945BF81964DFD856 /* Reachability */ = { isa = PBXGroup; children = ( - AC491F4239C710AF434E79A2 /* AFSecurityPolicy.h */, - 2881C43808AAE7488912B9A9 /* AFSecurityPolicy.m */, + FCFD752A2ADB6A2F75E062F9 /* AFNetworkReachabilityManager.h */, + 46FB8C8725057434D48E2858 /* AFNetworkReachabilityManager.m */, ); - name = Security; + name = Reachability; sourceTree = ""; }; - F155AE9028630FDF81907E23 /* DTFoundation */ = { + EA72CDCF8B6C509DA7BB7B38 /* Support Files */ = { isa = PBXGroup; children = ( - A6AFFFDC12AC1C76DAA424A0 /* Core */, - F5A85DE77BC78FA993BC4110 /* DTAnimatedGIF */, - D4E21EA6AE46C9061F6289BE /* DTHTMLParser */, - 40E53B97AD1DA0F8424B11AF /* Support Files */, - A6529EA6CB51C4B3B9E2F1A9 /* UIKit */, + 638F50533EF02B8CDCA92EDC /* Pods-EGOCache.xcconfig */, + 576D95F49662885C9F88275D /* Pods-EGOCache-Private.xcconfig */, + 10AD45869DE0C509621F9E38 /* Pods-EGOCache-dummy.m */, + 0F3FAAAEBB793D8BD8F6B7AB /* Pods-EGOCache-prefix.pch */, ); - path = DTFoundation; + name = "Support Files"; + path = "../Target Support Files/Pods-EGOCache"; sourceTree = ""; }; - F5A85DE77BC78FA993BC4110 /* DTAnimatedGIF */ = { + F7D2983AF2ED174CFA046104 /* NSURLSession */ = { isa = PBXGroup; children = ( - 015536558FDF35FA84CDD5E0 /* DTAnimatedGIF.h */, - 57C02398985BECE8ECA8A872 /* DTAnimatedGIF.m */, + 4F7C8832258AE8D64AD6EB22 /* AFHTTPSessionManager.h */, + 75148258B54D8B8313FE17F3 /* AFHTTPSessionManager.m */, + 7C0CF15C9EC35C2E7049DE73 /* AFURLSessionManager.h */, + E70B4D3E26344AF290F4C98E /* AFURLSessionManager.m */, ); - name = DTAnimatedGIF; + name = NSURLSession; sourceTree = ""; }; - F6A2CE5DBCE30FA4B5DB55C2 /* SDWebImage */ = { + FB0401E282DEB9F5EF414A1D /* DTCoreText */ = { isa = PBXGroup; children = ( - FA33C681051260269C364911 /* Core */, - 1B2ADD8C30A4A35CBE663635 /* Support Files */, + 4EB3E403669E23800E28A5B7 /* DTAccessibilityElement.h */, + 148DEBCC24AB506B6C316DCD /* DTAccessibilityElement.m */, + 80F2C8CC2597851350219120 /* DTAccessibilityViewProxy.h */, + 6F4E8F22347EFC734538CC8B /* DTAccessibilityViewProxy.m */, + AB0C595492DC29BD26231AFF /* DTAnchorHTMLElement.h */, + BDBB5D463CB84DB5FCE7F69C /* DTAnchorHTMLElement.m */, + B9DF7E684875D2D0F3F9E90E /* DTAttributedLabel.h */, + 622F4B3E7D7A4AECD2871F39 /* DTAttributedLabel.m */, + B93673E4E9B9583E3B0A0B12 /* DTAttributedTextCell.h */, + 6EE3DD7AA93E5C3165EADD31 /* DTAttributedTextCell.m */, + 24549194CFAFFDC9DDED662B /* DTAttributedTextContentView.h */, + 58AB7EDBD11A4580DE48181E /* DTAttributedTextContentView.m */, + 0111CBCAA13EC54A465F0746 /* DTAttributedTextView.h */, + F0CC372E47C461FBE2EB7486 /* DTAttributedTextView.m */, + 306DD73F546D8F8A8EABA570 /* DTBreakHTMLElement.h */, + A97975ECB669CF8B1BD1619F /* DTBreakHTMLElement.m */, + A0F6431993B81C62063DA281 /* DTCSSListStyle.h */, + 910112F4F3EB875F4AA0D908 /* DTCSSListStyle.m */, + 3696ED74324B48504AA37EDC /* DTCSSStylesheet.h */, + 4A2144565633C90B3C594FED /* DTCSSStylesheet.m */, + 5A0F5FB33E256EFCE938303C /* DTColor+Compatibility.h */, + BB4F7C51E8746A317D228300 /* DTColor+Compatibility.m */, + EDE030D85B22A8F05A718A4C /* DTColorFunctions.h */, + D2E92F7A6612F4A24E6F20D7 /* DTColorFunctions.m */, + 1E596786EA619668160B3663 /* DTCompatibility.h */, + 425566B984B0A4BCA253D006 /* DTCoreText.h */, + CD097ED93E1C276A7FA9430E /* DTCoreTextConstants.h */, + CD3E2723A996F6F8BF044B77 /* DTCoreTextConstants.m */, + 0A482D8F45EBE17D716551A2 /* DTCoreTextFontCollection.h */, + 96B8523A07E3B9C83A16BC62 /* DTCoreTextFontCollection.m */, + BBAB2C0DE7B01A6D434F48BD /* DTCoreTextFontDescriptor.h */, + 09E8DECB7BF75BA0244B2071 /* DTCoreTextFontDescriptor.m */, + DDB5573320075200698C87D5 /* DTCoreTextFunctions.h */, + 4AC683F0D93BD0059752887D /* DTCoreTextFunctions.m */, + 0ADDF9071F468C9B000996C8 /* DTCoreTextGlyphRun.h */, + F090452F16DD6E56998D85F1 /* DTCoreTextGlyphRun.m */, + 787874207266EB6FAABD051A /* DTCoreTextLayoutFrame.h */, + 8BB919BCAFB78FEB1758A4DC /* DTCoreTextLayoutFrame.m */, + 836D171FF07483A75E6861A1 /* DTCoreTextLayoutFrame+Cursor.h */, + 1569D676E63A0FD1BC54FB04 /* DTCoreTextLayoutFrame+Cursor.m */, + 0DEB70690586C98E99677DF6 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h */, + BFADDF1EED8DBE2B4E2421F9 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m */, + ACDAAD9655E2C1AC4DAA7447 /* DTCoreTextLayoutLine.h */, + 6FCD29A7ED59ACB691B908DD /* DTCoreTextLayoutLine.m */, + 7CB88CB32F99B23A91737376 /* DTCoreTextLayouter.h */, + 4675B125EF5ADBB90CEA3374 /* DTCoreTextLayouter.m */, + ACA554A92D0F17480F387916 /* DTCoreTextMacros.h */, + F657B550373040E1E6477D64 /* DTCoreTextParagraphStyle.h */, + 8BDFB7E4C0AAC71A08B0A6CC /* DTCoreTextParagraphStyle.m */, + AF34AB79D5153D4F27D6D084 /* DTDictationPlaceholderTextAttachment.h */, + AF6FAB1F9B36456C522A1AE0 /* DTDictationPlaceholderTextAttachment.m */, + E985496411C338BFFF72DC59 /* DTDictationPlaceholderView.h */, + 42A2C07608DCFE0ADD03E8BD /* DTDictationPlaceholderView.m */, + 02284A8207F847282436F7AD /* DTHTMLAttributedStringBuilder.h */, + 319687905BA188E79179D100 /* DTHTMLAttributedStringBuilder.m */, + F168A911AA440D4C151F9C1D /* DTHTMLElement.h */, + 37533697C6A34D1B83B33C24 /* DTHTMLElement.m */, + A1934AD2A92C4DDA7871D006 /* DTHTMLParserNode.h */, + E90048AC25846309934924ED /* DTHTMLParserNode.m */, + D200097579CFD9EDF1B9A1B3 /* DTHTMLParserTextNode.h */, + 05ED87CBC8DC6A907A84AD2A /* DTHTMLParserTextNode.m */, + F0D499BD4214ECB217034F23 /* DTHTMLWriter.h */, + 824F3205D3AFC48DF86294BD /* DTHTMLWriter.m */, + 8B2778A2CBCC22A5EBAD6A04 /* DTHorizontalRuleHTMLElement.h */, + 9268DFFDA72C1B913AEBDAC9 /* DTHorizontalRuleHTMLElement.m */, + 59658FE86151B90EC9F3BE27 /* DTIframeTextAttachment.h */, + 42F04B328F71757BD504E292 /* DTIframeTextAttachment.m */, + B4E0100EC49E294FB3E6DD7A /* DTImage+HTML.h */, + EEBAAD0C74D269B0751069C8 /* DTImage+HTML.m */, + CFFCBAA6E08FE2EC737991CC /* DTImageTextAttachment.h */, + 4ED3BBB64F7701D817161278 /* DTImageTextAttachment.m */, + F69B519C120CB30E30FF66B2 /* DTLazyImageView.h */, + 37CAD4D7A0AEA3B3C94B73BE /* DTLazyImageView.m */, + 843417D7C9BE78F634ED964E /* DTLinkButton.h */, + E9ACB5A0A0AB3C727CEFEE7D /* DTLinkButton.m */, + 7759495D676C2716B5C752A2 /* DTListItemHTMLElement.h */, + 0414DCA4C8A0D9FEFA8D0CB2 /* DTListItemHTMLElement.m */, + 3670C7769C590549B0C44E1D /* DTObjectTextAttachment.h */, + E8A843E0157B0F0CB285E87E /* DTObjectTextAttachment.m */, + AD7C7DDA0AE1AFD4F00970DA /* DTStylesheetHTMLElement.h */, + 3E978A5700527A930D7D1B6C /* DTStylesheetHTMLElement.m */, + 539798AD51FB8DC0BD6B0E2A /* DTTextAttachment.h */, + EBC22545F6D32A951618D5CE /* DTTextAttachment.m */, + 9F12284C6293A7179D9BBF6A /* DTTextAttachmentHTMLElement.h */, + F50BE35C5313CE948435A1BE /* DTTextAttachmentHTMLElement.m */, + 09E5FA8F17EC2E65ADAAADCF /* DTTextBlock.h */, + AC5D6F872F7F6A7FEBA2E5A2 /* DTTextBlock.m */, + D9832217CABFF0E976E49A8F /* DTTextHTMLElement.h */, + EDF8FB7A99E6A32E06931FC8 /* DTTextHTMLElement.m */, + AF028E837C5BC33FDC893180 /* DTVideoTextAttachment.h */, + CB44F38D8EB7A12F257CF13C /* DTVideoTextAttachment.m */, + 7FA2010E282D8967EE2214B2 /* DTWebVideoView.h */, + AF72C372F5483D431A4FF1A7 /* DTWebVideoView.m */, + EC01E94AC6E9783C2C51CA03 /* NSAttributedString+DTCoreText.h */, + 533693CAE3A5D5A92C7CA2B7 /* NSAttributedString+DTCoreText.m */, + 44FA4F56DE2750802DDF3E7D /* NSAttributedString+DTDebug.h */, + 3CB8ABE55CC35E6B1DD6EB1B /* NSAttributedString+DTDebug.m */, + 6242A9BEC50022E7229F5D08 /* NSAttributedString+HTML.h */, + FEC31545FD989A646944ADE6 /* NSAttributedString+HTML.m */, + 85EDAE7F553BE9B9025A5BBE /* NSAttributedString+SmallCaps.h */, + D982A5993F423F2602770DD7 /* NSAttributedString+SmallCaps.m */, + AB2F60F681150993334D0AF7 /* NSAttributedStringRunDelegates.h */, + E03546E55068EB6FC56539AA /* NSAttributedStringRunDelegates.m */, + E2047543F1590232A94322E0 /* NSCharacterSet+HTML.h */, + CA3FD3F948E17C33EBE4FEEA /* NSCharacterSet+HTML.m */, + D78D447FDC3C650ACDBF8768 /* NSCoder+DTCompatibility.h */, + E76ADADDF8D8EED738777D61 /* NSCoder+DTCompatibility.m */, + DB9901403DB337D702874EE5 /* NSDictionary+DTCoreText.h */, + 51EC2D065396A6C2D8A571D6 /* NSDictionary+DTCoreText.m */, + 9930956F5D90FA1EBCBB3A48 /* NSMutableAttributedString+HTML.h */, + 735C2D06848839B5B1750A09 /* NSMutableAttributedString+HTML.m */, + A7DD0CD7ACA9C39AC1571612 /* NSMutableString+HTML.h */, + 23308DE32C980BD290D12A4B /* NSMutableString+HTML.m */, + 044DC8C7F9205B47C61B7091 /* NSScanner+HTML.h */, + 3EDF560E4F5DC163CFD3BCD3 /* NSScanner+HTML.m */, + 5CCC7AC0562537FEB44115A4 /* NSString+CSS.h */, + 234F1B433F201823EDFA1E6E /* NSString+CSS.m */, + CC9008DF746F6AE684082BCB /* NSString+HTML.h */, + 5E2A76CCC4F20D18844F698C /* NSString+HTML.m */, + 39E350355D4CDA7345039AA1 /* NSString+Paragraphs.h */, + E9073FA1B8DD32D6490E136E /* NSString+Paragraphs.m */, + 39A1C34F923602E69F92BFDE /* UIFont+DTCoreText.h */, + E5A4E4DF071DF4FCF2C16428 /* UIFont+DTCoreText.m */, + 1B659E68785F55141EB11EE7 /* default.css.c */, + 93588BA60D412C3324FABD02 /* Support Files */, ); - path = SDWebImage; - sourceTree = ""; - }; - FA33C681051260269C364911 /* Core */ = { - isa = PBXGroup; - children = ( - 182C1BADEC87E296B6514FE2 /* NSData+ImageContentType.h */, - 8DC929F360D11D6A9AF4D5A5 /* NSData+ImageContentType.m */, - C11CD05B0831E358589D74EE /* SDImageCache.h */, - E431F1BD21F4E5EA33AEA3E8 /* SDImageCache.m */, - D7FCE77D05351D39FA2768CA /* SDWebImageCompat.h */, - 928903BF260AA1A2B0B05299 /* SDWebImageCompat.m */, - 89024B0DB7003A0824189113 /* SDWebImageDecoder.h */, - 590F8D2F9C16A87EBFEDAA48 /* SDWebImageDecoder.m */, - D2B1A156DE6B17F6990F581F /* SDWebImageDownloader.h */, - B3C78E01D06BD6F6914FAF7C /* SDWebImageDownloader.m */, - 300A2479E90F1DD2B1144966 /* SDWebImageDownloaderOperation.h */, - DF071B9931D904BEED3CD3DD /* SDWebImageDownloaderOperation.m */, - BB6BE3E53C4D6F40B4C2533D /* SDWebImageManager.h */, - D2412896BDB200297D51739E /* SDWebImageManager.m */, - 4B1D4B67B8ECBDF01CCA2B5D /* SDWebImageOperation.h */, - 5E0ED4C54909C3754C32F9F7 /* SDWebImagePrefetcher.h */, - 6FEFF6F630CED819928ED732 /* SDWebImagePrefetcher.m */, - 11B0370520C30390636399CF /* UIButton+WebCache.h */, - F311C60317391EA8382FA941 /* UIButton+WebCache.m */, - 8DBCB70ADAF750B243D34F29 /* UIImage+GIF.h */, - 5317D4EC799B8DB732BB0B71 /* UIImage+GIF.m */, - 211C837307329644DDB6CC11 /* UIImage+MultiFormat.h */, - F9E95148985AF2075E1448A9 /* UIImage+MultiFormat.m */, - 25C866B117E59B1332598BB9 /* UIImageView+HighlightedWebCache.h */, - 64898BA52DC103C58AFFACDF /* UIImageView+HighlightedWebCache.m */, - C93CDBD644823C4EF1935E68 /* UIImageView+WebCache.h */, - 8495BAF833A7C37A511CC33A /* UIImageView+WebCache.m */, - DD47B0AED35B1278A00B09EB /* UIView+WebCacheOperation.h */, - 1EAA671DBCED9E85006EB5DE /* UIView+WebCacheOperation.m */, - ); - name = Core; - sourceTree = ""; - }; - FB060C6562E7756E27EDDCD1 /* iOS */ = { - isa = PBXGroup; - children = ( - 1B6F15A6D1DD9CE0E2656C9F /* CoreGraphics.framework */, - EA35A5E9CD0A1C5A15D39088 /* CoreText.framework */, - F55EFAA16869F0908B637564 /* Foundation.framework */, - FEE193EEE84F1FA030D5ABB0 /* ImageIO.framework */, - E4E68CBBF46EE5DD482F2C04 /* MediaPlayer.framework */, - 12267743C03057BDFD011A3D /* MobileCoreServices.framework */, - 5DE9E2502F28A70DB59A99D6 /* QuartzCore.framework */, - 92A11FD3460B5667CE950BA2 /* Security.framework */, - 5FB69A9CC09DBFD8E512EA12 /* SystemConfiguration.framework */, - ); - name = iOS; + path = DTCoreText; sourceTree = ""; }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ - 305472D9931576941D46FF89 /* Headers */ = { + 1613FE62016399916B0E6172 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A838DCED6E6A262F679B230C /* MBProgressHUD.h in Headers */, + A77FFAB16B99174E3A942137 /* Reachability.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 43C9E26D87D23E02754044B1 /* Headers */ = { + 34A3A6650169190A1DEE7096 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2026F57EF8678B4BB65DD8E4 /* DTAccessibilityElement.h in Headers */, - 321A2D27C40B534692DBD598 /* DTAccessibilityViewProxy.h in Headers */, - F92EB8CB0B478ABFFA04DDDC /* DTAnchorHTMLElement.h in Headers */, - B473C6F012FCF579DEF841AC /* DTAttributedLabel.h in Headers */, - F612406A3AB45CDBCDE68CA5 /* DTAttributedTextCell.h in Headers */, - B1D1C43ACC6AD0CC51DD7C57 /* DTAttributedTextContentView.h in Headers */, - B5257ACB5025D4CA0A41D656 /* DTAttributedTextView.h in Headers */, - E8E1167D17480850EA452646 /* DTBreakHTMLElement.h in Headers */, - A3FD11303CD97924CA10FC47 /* DTCSSListStyle.h in Headers */, - 603BBDDA7184DF82E5BE26EF /* DTCSSStylesheet.h in Headers */, - 78C71C17E88B5EE5318824F0 /* DTColor+Compatibility.h in Headers */, - 2D5DBD678B3FBD9F68E110E4 /* DTColorFunctions.h in Headers */, - 3E76C9D70B95A90F009F8336 /* DTCompatibility.h in Headers */, - C41CBAE06455664E0C384F6C /* DTCoreText.h in Headers */, - 84B58FAADA445504A19A62B6 /* DTCoreTextConstants.h in Headers */, - D0E3DBC1F2919FCC3708D4B6 /* DTCoreTextFontCollection.h in Headers */, - 78D0858E3CA385F512C47301 /* DTCoreTextFontDescriptor.h in Headers */, - 376B34136D172D834EA964F4 /* DTCoreTextFunctions.h in Headers */, - 18A1A39B19C1534F71373520 /* DTCoreTextGlyphRun.h in Headers */, - 7691CF6BFCCCE31636E79EF6 /* DTCoreTextLayoutFrame+Cursor.h in Headers */, - 6D4E647A5127207521CE0A16 /* DTCoreTextLayoutFrame.h in Headers */, - 2315EABB41B4E33BFF0B6F80 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h in Headers */, - EC0E9BEB0A58C368058AF84F /* DTCoreTextLayoutLine.h in Headers */, - 93644245B214E76FD17395EC /* DTCoreTextLayouter.h in Headers */, - F6E75DFF2331894F245AAA9A /* DTCoreTextMacros.h in Headers */, - B9E0B7B69ED077E6DB9D24F5 /* DTCoreTextParagraphStyle.h in Headers */, - BF40A6D268C06A0727D2705C /* DTDictationPlaceholderTextAttachment.h in Headers */, - AFBE2B2BECDAE83FBE9A7F91 /* DTDictationPlaceholderView.h in Headers */, - B4D5D7E21CEE946713BBF814 /* DTHTMLAttributedStringBuilder.h in Headers */, - B40B5EE8BCB21BB386C6E705 /* DTHTMLElement.h in Headers */, - 1762F9D2E1F9F71E604D6BC9 /* DTHTMLParserNode.h in Headers */, - CFF30F21E6408AA62ACEB8C5 /* DTHTMLParserTextNode.h in Headers */, - 01AC0A0E127A0445D4CA9B14 /* DTHTMLWriter.h in Headers */, - 50BB311D3E57911BEC876158 /* DTHorizontalRuleHTMLElement.h in Headers */, - C5532F2750F9223902545F0F /* DTIframeTextAttachment.h in Headers */, - 0B24824B3847E2FFA506EDA9 /* DTImage+HTML.h in Headers */, - 34212660D805D104820A8E47 /* DTImageTextAttachment.h in Headers */, - C336D1E8B3A77E2544BC0A82 /* DTLazyImageView.h in Headers */, - A49D4BC268C3DA03481045C3 /* DTLinkButton.h in Headers */, - CC7CC573352644B5567E3E8D /* DTListItemHTMLElement.h in Headers */, - A134A6EEC76931C31798C633 /* DTObjectTextAttachment.h in Headers */, - 7894EF68261BDF2BE236ECEB /* DTStylesheetHTMLElement.h in Headers */, - 60E3B4E1EFE4FCC156854E39 /* DTTextAttachment.h in Headers */, - 0D40543485C33160DEABEC2C /* DTTextAttachmentHTMLElement.h in Headers */, - D2D36773C72F95526D88D540 /* DTTextBlock.h in Headers */, - D2F12B4B20F3F1D40FDAB503 /* DTTextHTMLElement.h in Headers */, - BC310B2832CFCDF319451021 /* DTVideoTextAttachment.h in Headers */, - 3128A40A97CF35CEC5D2F1FF /* DTWebVideoView.h in Headers */, - 2DBB43914703B0329ACAD721 /* NSAttributedString+DTCoreText.h in Headers */, - 422E1A8D923A9D5D32FC2E7B /* NSAttributedString+DTDebug.h in Headers */, - 706707338BA50B957680D54C /* NSAttributedString+HTML.h in Headers */, - FE3A7439F5493343758EC737 /* NSAttributedString+SmallCaps.h in Headers */, - 9CA220CFC57514849CBC2777 /* NSAttributedStringRunDelegates.h in Headers */, - B73F06AF3A42C8099CCBCB82 /* NSCharacterSet+HTML.h in Headers */, - 703026E26F25120B4FD93543 /* NSCoder+DTCompatibility.h in Headers */, - 65AC95168E99245BFCB93EE9 /* NSDictionary+DTCoreText.h in Headers */, - 7B37D849EA7675D510AA59DE /* NSMutableAttributedString+HTML.h in Headers */, - 79B7D14878C0B5F7CD2DE401 /* NSMutableString+HTML.h in Headers */, - C3ECDCF7C1C21639EE6479DA /* NSScanner+HTML.h in Headers */, - A2EE8CFA67D7C5AE859C851F /* NSString+CSS.h in Headers */, - 476E67C53CED3FF322A64BE7 /* NSString+HTML.h in Headers */, - D8608E1A9FE81416230F23BF /* NSString+Paragraphs.h in Headers */, - FC4C0E9B6509D66A22BA96CC /* UIFont+DTCoreText.h in Headers */, + 4CC40D4013DBF1B0E277E3AF /* MBProgressHUD.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 6F7FD84216A89D9033541B7A /* Headers */ = { + 5B46A645248E81DACF3E6A34 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 097325EC67B9025FD956AE36 /* SecureUDID.h in Headers */, + 9D98773DFC27852056B73E3A /* SecureUDID.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 75AA86B3DB00DCFF904B549F /* Headers */ = { + 623C42686ED4E09BFC0A3DF3 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A7ECCB6E85654C205A53FC58 /* STableViewController.h in Headers */, + 67F735E54B44DB40A8261D3B /* Godzippa.h in Headers */, + 10C70F53FD8C8952216F80BC /* NSData+Godzippa.h in Headers */, + 96E08C7FF522874F7BC99D16 /* NSFileManager+Godzippa.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 81F3B165F4F77F66D4F0FD23 /* Headers */ = { + 67F2A71D2934694E9500B7C1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 972829A00BE71D4EFAAB7E8F /* SBJson4.h in Headers */, - DCC8CB7E2E70E3BDD62AD6F2 /* SBJson4Parser.h in Headers */, - BB4E62DEF19ACBAEA72DA5CE /* SBJson4StreamParser.h in Headers */, - 7503D0C98C9A32426A6240C8 /* SBJson4StreamParserState.h in Headers */, - 2540FE3BC5BAED88E7DBE37A /* SBJson4StreamTokeniser.h in Headers */, - 9CC1A02E4A5A316AF94E899A /* SBJson4StreamWriter.h in Headers */, - BE257A2317B003E968B73819 /* SBJson4StreamWriterState.h in Headers */, - D90CAF4908EAE5FA1339AB10 /* SBJson4Writer.h in Headers */, + 5C675D64694AF44C794E298D /* DTAccessibilityElement.h in Headers */, + 5C5BFC53F089F1892CE28BCE /* DTAccessibilityViewProxy.h in Headers */, + C0596E0610B32053A42E3BCD /* DTAnchorHTMLElement.h in Headers */, + 66BF2FC248E1EF98DC3FE975 /* DTAttributedLabel.h in Headers */, + A0B8C20FD2206CA9A59B5010 /* DTAttributedTextCell.h in Headers */, + 94B3F003C98A7E89F27C14BF /* DTAttributedTextContentView.h in Headers */, + BE11DC3A17A6DFC45300239C /* DTAttributedTextView.h in Headers */, + B9AFBA8CD2AB1E9C44D38193 /* DTBreakHTMLElement.h in Headers */, + 3D9DE2FAF1FDDF8C25A57A35 /* DTCSSListStyle.h in Headers */, + 09F24AED39819E1AABBE030D /* DTCSSStylesheet.h in Headers */, + E41FB029EF2930643C3DD2F5 /* DTColor+Compatibility.h in Headers */, + 2A1611C1112D3B4127B318A0 /* DTColorFunctions.h in Headers */, + 58C065258DA29A4B7228293B /* DTCompatibility.h in Headers */, + 33130592D42A6A1ECAD801F3 /* DTCoreText.h in Headers */, + 8916EC3A47FE50159DAC7D6E /* DTCoreTextConstants.h in Headers */, + D0C42B5BF5A6FA191E4C5E9A /* DTCoreTextFontCollection.h in Headers */, + 8DFDD3ECF2CC01CC5BDCEE9D /* DTCoreTextFontDescriptor.h in Headers */, + F48F5AC8407EDE9DDB80D39D /* DTCoreTextFunctions.h in Headers */, + B2A8559D66257E3A2975F635 /* DTCoreTextGlyphRun.h in Headers */, + 0F853548CDF9FB2256F7E61D /* DTCoreTextLayoutFrame+Cursor.h in Headers */, + D8BF1DF7C130E466A3D81125 /* DTCoreTextLayoutFrame.h in Headers */, + 781C990028B2EBDF93F75AD7 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.h in Headers */, + 1FF57ED960C0D6CC6FEEE7B1 /* DTCoreTextLayoutLine.h in Headers */, + 22C576C9448921EFF3D709CA /* DTCoreTextLayouter.h in Headers */, + B370B3BE0B0230D96361A967 /* DTCoreTextMacros.h in Headers */, + B242B3A45F719245D03D7C39 /* DTCoreTextParagraphStyle.h in Headers */, + 8F75C6859C046A3212ED3F4D /* DTDictationPlaceholderTextAttachment.h in Headers */, + A0C69FEB13FEBF23970F0426 /* DTDictationPlaceholderView.h in Headers */, + 7E61F86C0DF0B103B9EDFABF /* DTHTMLAttributedStringBuilder.h in Headers */, + 36E06283E2A8B178FCEA10F8 /* DTHTMLElement.h in Headers */, + A3CA2D7609359CBBD2DE525F /* DTHTMLParserNode.h in Headers */, + F434831BC75495A6AFF126D7 /* DTHTMLParserTextNode.h in Headers */, + 9174116757AEC26D0E6CF78C /* DTHTMLWriter.h in Headers */, + 23572C332549731F35868C27 /* DTHorizontalRuleHTMLElement.h in Headers */, + 157F0C0C9BE20C20E2FDB47D /* DTIframeTextAttachment.h in Headers */, + 8DC366B059E33BABA6099AE2 /* DTImage+HTML.h in Headers */, + 74A6D03D803FA63BDC52419B /* DTImageTextAttachment.h in Headers */, + B4FB5B03E656C8109381638D /* DTLazyImageView.h in Headers */, + F6E1E04DED7418AC39859D77 /* DTLinkButton.h in Headers */, + DAB2571C793D060D2245BA6D /* DTListItemHTMLElement.h in Headers */, + 013467F6755569661F39AF4B /* DTObjectTextAttachment.h in Headers */, + BA5A2568F1D20CD7514550A7 /* DTStylesheetHTMLElement.h in Headers */, + 426686586767BC3E0A121DD8 /* DTTextAttachment.h in Headers */, + 9FDAFAA00821E2363F415822 /* DTTextAttachmentHTMLElement.h in Headers */, + 11AC09BAEB0E1B2D525AA41C /* DTTextBlock.h in Headers */, + 290912F2E086545784B86935 /* DTTextHTMLElement.h in Headers */, + 387F89C6691C6631954FAE74 /* DTVideoTextAttachment.h in Headers */, + 457F86F0E38CA9DCD7CE1695 /* DTWebVideoView.h in Headers */, + 9C8515C72E37C7405E0E9028 /* NSAttributedString+DTCoreText.h in Headers */, + 3F5AF18A621A4141626E0CD5 /* NSAttributedString+DTDebug.h in Headers */, + 5BE033B73E0CC0E509D10181 /* NSAttributedString+HTML.h in Headers */, + 67A2862A89CFDBF643CE13AE /* NSAttributedString+SmallCaps.h in Headers */, + BDF22929F9D18A2FCC0E80A0 /* NSAttributedStringRunDelegates.h in Headers */, + 5867806F774A920DE6FBBA4F /* NSCharacterSet+HTML.h in Headers */, + C85DA5C7C81D45D0D891C657 /* NSCoder+DTCompatibility.h in Headers */, + 0EED913B03DF39227F72F553 /* NSDictionary+DTCoreText.h in Headers */, + 848E6515BC358ABCB0B89350 /* NSMutableAttributedString+HTML.h in Headers */, + CBD0AA6E6D10C4235B9AE15C /* NSMutableString+HTML.h in Headers */, + 408435DD7CF9179692B3B6AD /* NSScanner+HTML.h in Headers */, + 58BC9D84FAD6E995FA149EF2 /* NSString+CSS.h in Headers */, + D1513F5C50DC7A175A2469CE /* NSString+HTML.h in Headers */, + 6B9E38201BDE3E9D77525C4E /* NSString+Paragraphs.h in Headers */, + 129137FB275A32B0ADC82CE2 /* UIFont+DTCoreText.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9BD1808973BE92B52BD1AB9C /* Headers */ = { + 6FEB327AAC56F2CC36B4EE17 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 2FDEDE44605410224E1BB1EA /* AFHTTPRequestOperation.h in Headers */, - 95EA54130CD2C07190076794 /* AFHTTPRequestOperationManager.h in Headers */, - 4B27B5E91B9281BFF198638C /* AFHTTPSessionManager.h in Headers */, - 5751EF3CA77D01A7314EAD51 /* AFNetworkActivityIndicatorManager.h in Headers */, - FEEF934A17B9681D46F978B5 /* AFNetworkReachabilityManager.h in Headers */, - 9383DB35FF1EDF548A83AAC2 /* AFNetworking.h in Headers */, - DB72401F95DF610C25F013F1 /* AFSecurityPolicy.h in Headers */, - 263D9B3BC42E568419790D66 /* AFURLConnectionOperation.h in Headers */, - 6AE22235BD7FBC288DF9BBA9 /* AFURLRequestSerialization.h in Headers */, - A7B10E62CC11942B23323F9F /* AFURLResponseSerialization.h in Headers */, - 31C77980771C4CD82E86AC4B /* AFURLSessionManager.h in Headers */, - 60EC7107783259310D129791 /* UIActivityIndicatorView+AFNetworking.h in Headers */, - 5D89B9246FD876A616A72322 /* UIAlertView+AFNetworking.h in Headers */, - 88C689EE4869BE7B3F1A7EF4 /* UIButton+AFNetworking.h in Headers */, - 900E11B9D721A82FC235DF01 /* UIImageView+AFNetworking.h in Headers */, - 0BBFAAD643D2E5792453BAC7 /* UIKit+AFNetworking.h in Headers */, - 3D0E7D3F519BA5F9E017A7CB /* UIProgressView+AFNetworking.h in Headers */, - 44F49891A63453A9E3834B8E /* UIRefreshControl+AFNetworking.h in Headers */, - 97F544FAA0654586A24D8CC5 /* UIWebView+AFNetworking.h in Headers */, + EF6A510848C75360AF7E2C2E /* EXTKeyPathCoding.h in Headers */, + DC4D77D8D89DD39056EDF450 /* EXTRuntimeExtensions.h in Headers */, + 7C3CB77A3ECF1A4BC6059E79 /* EXTScope.h in Headers */, + C3880D9F121CBB124377A26C /* MTLJSONAdapter.h in Headers */, + 66831CEE444CB67898D15B84 /* MTLManagedObjectAdapter.h in Headers */, + 62C7A6CCED2206B30F54EE83 /* MTLModel+NSCoding.h in Headers */, + AF803D64E061565CAF4E16A1 /* MTLModel.h in Headers */, + 24D229DD078766D957CCF1BD /* MTLReflection.h in Headers */, + 30AAEE8481CF871BBD3F3632 /* MTLValueTransformer.h in Headers */, + A0CB67B24A241A2D279DDF5C /* Mantle.h in Headers */, + FAEF7FA14CA99039F2C19349 /* NSArray+MTLManipulationAdditions.h in Headers */, + 8A5510C98A8314548E449EA7 /* NSDictionary+MTLManipulationAdditions.h in Headers */, + 41D4ACE03A4D78DD7594743C /* NSError+MTLModelException.h in Headers */, + E118C1A6B57D45A3566D2579 /* NSObject+MTLComparisonAdditions.h in Headers */, + 49287364D76BF68CD71F0059 /* NSValueTransformer+MTLInversionAdditions.h in Headers */, + 6F14BCD3CD08AA94874A79D5 /* NSValueTransformer+MTLPredefinedTransformerAdditions.h in Headers */, + F0CA0C18E7FB5C661C72F124 /* metamacros.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - A8552B36BD0ECFF43EC13D06 /* Headers */ = { + 7ACB8384E2B9A768599E0A8A /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - C993E1482D0BC628286E3E66 /* EGOCache.h in Headers */, + 8D3424918AC53F8CB0290DC1 /* MJRefresh.h in Headers */, + 56702CE0370CD7591056FE21 /* MJRefreshComponent.h in Headers */, + 6022AE41B46C9B7FDE781425 /* MJRefreshConst.h in Headers */, + 80B421C7C030F68C530E30CB /* MJRefreshFooter.h in Headers */, + A4A0304CC5B6B2198E42C817 /* MJRefreshGifFooter.h in Headers */, + FC7E0A71D43D6741387A9C00 /* MJRefreshGifHeader.h in Headers */, + 96F2B34DECCF317CDCD62D0F /* MJRefreshHeader.h in Headers */, + F2A0662D1C975B86473CABD8 /* MJRefreshLegendFooter.h in Headers */, + 889D550F5F71A9830B7E8390 /* MJRefreshLegendHeader.h in Headers */, + 4C63FDE40B392A78CAE77305 /* UIScrollView+MJExtension.h in Headers */, + 586BFFC03A65CB210F74D722 /* UIScrollView+MJRefresh.h in Headers */, + B19980DFE118C678022EE1B4 /* UIView+MJExtension.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - B95CC1C33C34875C7797E1B5 /* Headers */ = { + 7DD42D2B3E3D2B0FD39DEFEB /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - FE29EB5A90EC7ABCE7A36DFC /* NSData+ImageContentType.h in Headers */, - 00DC058CF583F54EA24BB30C /* SDImageCache.h in Headers */, - F9DBF32C2B8F5278EB1409AD /* SDWebImageCompat.h in Headers */, - 0365BAD3CBBEE8E22D46F4BA /* SDWebImageDecoder.h in Headers */, - 10F4940B5FE5952DB1C18560 /* SDWebImageDownloader.h in Headers */, - 19E8D3C03F3A817518861D2A /* SDWebImageDownloaderOperation.h in Headers */, - FC55CD8E5FC3934C11BDA08F /* SDWebImageManager.h in Headers */, - EC6031108F3C8D8954518E33 /* SDWebImageOperation.h in Headers */, - 6C42070C62BF92F0A805FDB3 /* SDWebImagePrefetcher.h in Headers */, - 7A897CA3D3262E0C05A6699A /* UIButton+WebCache.h in Headers */, - EC796905CFA49F59D6BEB76E /* UIImage+GIF.h in Headers */, - 61307D83DE3790D10E3898C2 /* UIImage+MultiFormat.h in Headers */, - 6FFE6BAE7F9F5A93038FED18 /* UIImageView+HighlightedWebCache.h in Headers */, - 9B7F8AE9011C4B2284C6B0AF /* UIImageView+WebCache.h in Headers */, - A10C21F4B949D4F2A2ACEE7C /* UIView+WebCacheOperation.h in Headers */, + B415B86319633DFAB02E2298 /* STableViewController.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - BA5DFE6D17BF0310B8E36526 /* Headers */ = { + 889F0855848F7F3D0089B17E /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 94E30D220DEDCDF8C658A2BC /* Godzippa.h in Headers */, - CE07C44BF654A17BAA6B9DC0 /* NSData+Godzippa.h in Headers */, - EA68BA6921377F72C094098B /* NSFileManager+Godzippa.h in Headers */, + EA09C1BD4F83E0CFE02B214C /* DTActivityTitleView.h in Headers */, + 65C3DC46F7BF23D8216E7D73 /* DTAnimatedGIF.h in Headers */, + BE0CBC7BE3C7FE02DE8C3DC7 /* DTAsyncFileDeleter.h in Headers */, + BBC629713AEAD9C359329092 /* DTBase64Coding.h in Headers */, + 635F190AD6CEECBB54365F03 /* DTBlockFunctions.h in Headers */, + 4ACCE6B6945543B1B0C7E3D8 /* DTCoreGraphicsUtils.h in Headers */, + 5281FE4438B836460AAF08AA /* DTCustomColoredAccessory.h in Headers */, + 365D687F479329B69DC21B1F /* DTExtendedFileAttributes.h in Headers */, + 8181C1F6C24D1FCF7528E66B /* DTFolderMonitor.h in Headers */, + C1C69BE3D60B1A2AE6C5718C /* DTFoundationConstants.h in Headers */, + ADD401B6FB058141AA765121 /* DTHTMLParser.h in Headers */, + A88E1FB837D2987A7D105B1A /* DTLog.h in Headers */, + 93CF95030A57C4D95B906FD8 /* DTPieProgressIndicator.h in Headers */, + 8AD1D251EA2B8F7410EEBB3F /* DTSmartPagingScrollView.h in Headers */, + B63584FC9C032F8408AE5C78 /* DTTiledLayerWithoutFade.h in Headers */, + B09E10479A8A43F7EE0CF8FF /* DTVersion.h in Headers */, + 0D7CE15921BEF9485FFB70EC /* DTWeakSupport.h in Headers */, + 713D0BE35B2F72D703DB903A /* NSArray+DTError.h in Headers */, + 4311CCE77CCC6D844976EAFA /* NSData+DTCrypto.h in Headers */, + A9AA44A38FC6A113DBFC01C7 /* NSDictionary+DTError.h in Headers */, + 2C8EC9E0E48E4E51F2E26FBD /* NSFileWrapper+DTCopying.h in Headers */, + D67BEA5E08AF4AD5987737D4 /* NSMutableArray+DTMoving.h in Headers */, + E708A811779C19D6AAA55A8E /* NSString+DTFormatNumbers.h in Headers */, + B5E86D0F95798788DC35F949 /* NSString+DTPaths.h in Headers */, + 9C17C9964E4DC070FD248AB2 /* NSString+DTURLEncoding.h in Headers */, + 4D0482135D8BD6F38AC8E82F /* NSString+DTUtilities.h in Headers */, + AAD748AA4CF2E3319D3D082D /* NSURL+DTAppLinks.h in Headers */, + C8EC2777DAF6CBD59342E191 /* NSURL+DTComparing.h in Headers */, + 4E882AE138DA4FB231C758E1 /* NSURL+DTUnshorten.h in Headers */, + E731054ECE70017FBA55AA43 /* UIApplication+DTNetworkActivity.h in Headers */, + 7E63FB57AFE221521DBC1166 /* UIImage+DTFoundation.h in Headers */, + 11D7AE61ACE8E5EF584A2334 /* UIView+DTFoundation.h in Headers */, + FB0C39EACA7A7231B83897E1 /* UIWebView+DTFoundation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - BC2DBC5F7250D235C8C7B0D3 /* Headers */ = { + 8C924C1CC8279044E723C3A8 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - 6EE2D1BA764383CF7898D16D /* Reachability.h in Headers */, + FC3A73111B3A0E2F3FD1DEB7 /* NSData+ImageContentType.h in Headers */, + 3ED3617D49C9292442C8C8EB /* SDImageCache.h in Headers */, + 6D3C077CE557A5159838A720 /* SDWebImageCompat.h in Headers */, + 4EA70A8BB0A35B6C33B7C140 /* SDWebImageDecoder.h in Headers */, + 99EC58284F82D2E9157DABD2 /* SDWebImageDownloader.h in Headers */, + F56A55B38E7F033348C55957 /* SDWebImageDownloaderOperation.h in Headers */, + 4B58DE5823C889AA7BCE5AF8 /* SDWebImageManager.h in Headers */, + CD9837AE41A628CDF013036D /* SDWebImageOperation.h in Headers */, + C7012A0C970F247FA61DAB11 /* SDWebImagePrefetcher.h in Headers */, + 522B27D45468F4BB65EAFAA3 /* UIButton+WebCache.h in Headers */, + 31071C73FFA23AD720191706 /* UIImage+GIF.h in Headers */, + C2D87BDA5A4BE1128FED5388 /* UIImage+MultiFormat.h in Headers */, + D03BF1D90B0CF2294761BE2E /* UIImageView+HighlightedWebCache.h in Headers */, + 7FD058B6B5B638759C5FE085 /* UIImageView+WebCache.h in Headers */, + 2AA1FE64199A6BD55C88E843 /* UIView+WebCacheOperation.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - C84AD995C9C460F2B1B4CD14 /* Headers */ = { + 95A744E12E25BA9892107DF1 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - D6F01A0402238926CCE12935 /* DTActivityTitleView.h in Headers */, - 15D859F9ECE186D3CFE51FE8 /* DTAnimatedGIF.h in Headers */, - 3BBFC4275CAE4A689B7C0851 /* DTAsyncFileDeleter.h in Headers */, - 601063BB19D922916C792729 /* DTBase64Coding.h in Headers */, - F88DBF8474D135B0C33E1F30 /* DTBlockFunctions.h in Headers */, - D73F0E0B7336E83EC31D1DFC /* DTCoreGraphicsUtils.h in Headers */, - FEE05EE46C0B4A2723A0E884 /* DTCustomColoredAccessory.h in Headers */, - 23F8EDA39E64534CA151E079 /* DTExtendedFileAttributes.h in Headers */, - 3A745D4510A4B6004E5BA780 /* DTFolderMonitor.h in Headers */, - B8BF1A36FA5D3E538EC2DF52 /* DTFoundationConstants.h in Headers */, - 329A5481709B77ED12FF0C13 /* DTHTMLParser.h in Headers */, - B3B0FDC96B39C48AD88862C0 /* DTLog.h in Headers */, - F51E92D68A984894019D14DC /* DTPieProgressIndicator.h in Headers */, - B5BE7F0DBB9CE79D831A76FC /* DTSmartPagingScrollView.h in Headers */, - A1BA373EA15B9F8528020909 /* DTTiledLayerWithoutFade.h in Headers */, - DA14D4DA2EF4E1A83EA035A5 /* DTVersion.h in Headers */, - F141914AF0C651D00149913E /* DTWeakSupport.h in Headers */, - FB90F7CC5E2C4F2E0DCA9B13 /* NSArray+DTError.h in Headers */, - 38C134451FB1F109E54481A4 /* NSData+DTCrypto.h in Headers */, - E2574AF7D46DDBC29DA77F61 /* NSDictionary+DTError.h in Headers */, - 8E367E643CC5B90F2EB07250 /* NSFileWrapper+DTCopying.h in Headers */, - BD3EC5560E56E491C10F019F /* NSMutableArray+DTMoving.h in Headers */, - C909D0A3845F6FD073BE61A3 /* NSString+DTFormatNumbers.h in Headers */, - 284F10E0D0D65DF783CC81AA /* NSString+DTPaths.h in Headers */, - B905B9ED288ABCD765B1952D /* NSString+DTURLEncoding.h in Headers */, - 9FCA87F58AF5AA0707D5C126 /* NSString+DTUtilities.h in Headers */, - A335A6C32A3B5F89A55F28AD /* NSURL+DTAppLinks.h in Headers */, - 4498B94EF84178CA563DC32B /* NSURL+DTComparing.h in Headers */, - 359304B802FCD9894E1C3439 /* NSURL+DTUnshorten.h in Headers */, - 0F334E560FF8DE63ADDDEAE5 /* UIApplication+DTNetworkActivity.h in Headers */, - 468E6E6C88B97F74C5CAA1D3 /* UIImage+DTFoundation.h in Headers */, - CDD3098F16EF9FDF73F15C0A /* UIView+DTFoundation.h in Headers */, - 4400407D1F85C54B160EAA64 /* UIWebView+DTFoundation.h in Headers */, + 2E2A225E09AA1776237DA0A3 /* EGOCache.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; - EFBFA04F7157B8A43C60E877 /* Headers */ = { + D72DFCE34325BA598D00CBE0 /* Headers */ = { isa = PBXHeadersBuildPhase; buildActionMask = 2147483647; files = ( - A460ECB8888836C5F13B8855 /* EXTKeyPathCoding.h in Headers */, - 48B7AC61837F9FF64522F2FA /* EXTRuntimeExtensions.h in Headers */, - 031B715BE95AAB83EF3FE41C /* EXTScope.h in Headers */, - 9945F3B4839DF392A66021F7 /* MTLJSONAdapter.h in Headers */, - 93FFA53DAE38E698A6BA616B /* MTLManagedObjectAdapter.h in Headers */, - 02AC154ABE8EB00D494B1D92 /* MTLModel+NSCoding.h in Headers */, - 5BB8315218D85AB2F77C8183 /* MTLModel.h in Headers */, - 4AAFCD21B1C65ADD30782F7D /* MTLReflection.h in Headers */, - 9145F29AEAAAA84E5C2277AC /* MTLValueTransformer.h in Headers */, - 43CE2D7DDE8F482A2AC38887 /* Mantle.h in Headers */, - B63C2FC63A71A102ACA3B4DC /* NSArray+MTLManipulationAdditions.h in Headers */, - 6AA708662B636F869E1282C8 /* NSDictionary+MTLManipulationAdditions.h in Headers */, - 6FD288CF6B3EC0844950C4C5 /* NSError+MTLModelException.h in Headers */, - 787870442B3323CC17D78EC1 /* NSObject+MTLComparisonAdditions.h in Headers */, - B825C1F97D8EA5A3F66F8562 /* NSValueTransformer+MTLInversionAdditions.h in Headers */, - 8FA4B95A09B2A4D131CB93CC /* NSValueTransformer+MTLPredefinedTransformerAdditions.h in Headers */, - 9EBF43F96C286D1243D595F1 /* metamacros.h in Headers */, + A92C33E5C970F02348C70FDA /* SBJson4.h in Headers */, + 759B24C40B042D2318608AC4 /* SBJson4Parser.h in Headers */, + A9D7A4E61D9132A38B88240A /* SBJson4StreamParser.h in Headers */, + 6FB17487DBD6EBEC72C5147B /* SBJson4StreamParserState.h in Headers */, + E1EF224D6F3F7C9ECD7A0354 /* SBJson4StreamTokeniser.h in Headers */, + 0A67893342424A28B89B671F /* SBJson4StreamWriter.h in Headers */, + AC27ED2936703D4B82F70D64 /* SBJson4StreamWriterState.h in Headers */, + FFB6EEBAEACCD9DC9896A0DC /* SBJson4Writer.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E2CC50351B83C1626FE8426C /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + 8A44333E6C1AD1939F353AFF /* AFHTTPRequestOperation.h in Headers */, + F85CE8E45976C128A2058567 /* AFHTTPRequestOperationManager.h in Headers */, + C8101DF5EB0D1F6C7CB8E527 /* AFHTTPSessionManager.h in Headers */, + C49951E6B3BEE0D50DE44200 /* AFNetworkActivityIndicatorManager.h in Headers */, + ED1F77755C992D872C44378A /* AFNetworkReachabilityManager.h in Headers */, + 4A53FD937B8D71DC6EEFA258 /* AFNetworking.h in Headers */, + 36E611C63BFDA916CBCD6895 /* AFSecurityPolicy.h in Headers */, + 62E2DD56976312E5C92C1895 /* AFURLConnectionOperation.h in Headers */, + FD8F1DFEE9A6D874F7BA6AB6 /* AFURLRequestSerialization.h in Headers */, + 611A97144BA4643E8F4C1C23 /* AFURLResponseSerialization.h in Headers */, + D2ED567FF654C0C51AF05599 /* AFURLSessionManager.h in Headers */, + C2CC62434A97B8C789A52755 /* UIActivityIndicatorView+AFNetworking.h in Headers */, + 1C071DB1CEBE4A97470A88CB /* UIAlertView+AFNetworking.h in Headers */, + CBBBBF0C2A6E70025BEC8C04 /* UIButton+AFNetworking.h in Headers */, + 874457D74458E84DA62E07FD /* UIImageView+AFNetworking.h in Headers */, + D5F1C7ECCF73943D6CA58CD6 /* UIKit+AFNetworking.h in Headers */, + D4A103D081F2189CBCC9AA77 /* UIProgressView+AFNetworking.h in Headers */, + 2E0A61731F92585F5F6409A1 /* UIRefreshControl+AFNetworking.h in Headers */, + B4490C1535367E6529BCA8E0 /* UIWebView+AFNetworking.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ - 2598E678E6856E0B69C04891 /* Pods-DTFoundation */ = { + 14D13089E11DA69B9989B5D7 /* Pods */ = { isa = PBXNativeTarget; - buildConfigurationList = D6A8CCD16FC0004873783B34 /* Build configuration list for PBXNativeTarget "Pods-DTFoundation" */; + buildConfigurationList = DC81AD117F48A5D8D26DFB2F /* Build configuration list for PBXNativeTarget "Pods" */; buildPhases = ( - F555B0678D0300306110912C /* Sources */, - CC276D295289A7BF9EABD83C /* Frameworks */, - C84AD995C9C460F2B1B4CD14 /* Headers */, + 271BA0642B2F27DA3F11220A /* Sources */, + 935D1B47FC2BDDCD60EC14DA /* Frameworks */, ); buildRules = ( ); dependencies = ( - ); - name = "Pods-DTFoundation"; - productName = "Pods-DTFoundation"; - productReference = CAED700541E2AB58B1FD0793 /* libPods-DTFoundation.a */; - productType = "com.apple.product-type.library.static"; - }; - 2AA81FBE6282912F6E7F14F3 /* Pods-Reachability */ = { - isa = PBXNativeTarget; - buildConfigurationList = 941145061A1016CE1A236F52 /* Build configuration list for PBXNativeTarget "Pods-Reachability" */; - buildPhases = ( - 0D4A2B0EC373B11EA1F00A97 /* Sources */, - 208951F830C652EC617B06DD /* Frameworks */, - BC2DBC5F7250D235C8C7B0D3 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-Reachability"; - productName = "Pods-Reachability"; - productReference = 8A7F55E4967C67D363E9B3E2 /* libPods-Reachability.a */; - productType = "com.apple.product-type.library.static"; - }; - 4EE670259BB59F0E2363AE87 /* Pods-EGOCache */ = { - isa = PBXNativeTarget; - buildConfigurationList = 65C10858FCF76FBB9A8AC1B4 /* Build configuration list for PBXNativeTarget "Pods-EGOCache" */; - buildPhases = ( - 0D28C75229987713C4753BBC /* Sources */, - 51C58D2163AA5002A4470931 /* Frameworks */, - A8552B36BD0ECFF43EC13D06 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-EGOCache"; - productName = "Pods-EGOCache"; - productReference = 09A8724B696B9CB66533D097 /* libPods-EGOCache.a */; - productType = "com.apple.product-type.library.static"; - }; - 547318FF46D8305D2B020EC1 /* Pods-Mantle */ = { - isa = PBXNativeTarget; - buildConfigurationList = 8D41402F72882E179EBCAFCA /* Build configuration list for PBXNativeTarget "Pods-Mantle" */; - buildPhases = ( - A5086AC3F253D32CC42A32B1 /* Sources */, - A8892F158B9F4D652282F827 /* Frameworks */, - EFBFA04F7157B8A43C60E877 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-Mantle"; - productName = "Pods-Mantle"; - productReference = 01FE47E9B3A87B8D20E25ECE /* libPods-Mantle.a */; - productType = "com.apple.product-type.library.static"; - }; - 712FB3430DDB22E3783751FE /* Pods-Godzippa */ = { - isa = PBXNativeTarget; - buildConfigurationList = 6A28518B14CD65E36A5BBA1B /* Build configuration list for PBXNativeTarget "Pods-Godzippa" */; - buildPhases = ( - D741E6679E7BCACEA71BD23B /* Sources */, - 8AB7E0C632E1D7B8BD238DC9 /* Frameworks */, - BA5DFE6D17BF0310B8E36526 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-Godzippa"; - productName = "Pods-Godzippa"; - productReference = 81FF1040F2B07AAF62BD5424 /* libPods-Godzippa.a */; - productType = "com.apple.product-type.library.static"; - }; - 8F2162B4D278000EA5C539EC /* Pods-STableViewController */ = { - isa = PBXNativeTarget; - buildConfigurationList = 7C753D95F144226E7E93981F /* Build configuration list for PBXNativeTarget "Pods-STableViewController" */; - buildPhases = ( - 04E782952F2E12A1746135DF /* Sources */, - 3C8B575E59E33ED91958D28A /* Frameworks */, - 75AA86B3DB00DCFF904B549F /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-STableViewController"; - productName = "Pods-STableViewController"; - productReference = F3FDE928EB700929106ACC31 /* libPods-STableViewController.a */; - productType = "com.apple.product-type.library.static"; - }; - AD146F7AD0657054CC81D382 /* Pods-MBProgressHUD */ = { - isa = PBXNativeTarget; - buildConfigurationList = 0489B26666649B8E8108C4D2 /* Build configuration list for PBXNativeTarget "Pods-MBProgressHUD" */; - buildPhases = ( - 9642157AF03301B9171A1BA5 /* Sources */, - 9EBDF19F93CBC757B77106F9 /* Frameworks */, - 305472D9931576941D46FF89 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-MBProgressHUD"; - productName = "Pods-MBProgressHUD"; - productReference = 62918573B06CC38D5898215F /* libPods-MBProgressHUD.a */; - productType = "com.apple.product-type.library.static"; - }; - AD56501F7D1542D4DB1414FC /* Pods */ = { - isa = PBXNativeTarget; - buildConfigurationList = 86456AC22EAD67613EF3BC64 /* Build configuration list for PBXNativeTarget "Pods" */; - buildPhases = ( - 67D68FA6A53D723037197BD6 /* Sources */, - AE2D2F8BD1CA83EC7CEFBE55 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - A56216DF71385C62C8227BEE /* PBXTargetDependency */, - B03C43B72E4080B1AEEF1634 /* PBXTargetDependency */, - C3F16054EA1D9B44007D7BE4 /* PBXTargetDependency */, - 296EE32F6B9B2EE1B903964C /* PBXTargetDependency */, - C2A29791C14B742A807932E4 /* PBXTargetDependency */, - 01A6918CAC880C0CFA05F9EC /* PBXTargetDependency */, - D91B92954B76D0060B4FC317 /* PBXTargetDependency */, - A9AF71720E2DEB73CD994BC7 /* PBXTargetDependency */, - 92973EC390C17AB5B628A830 /* PBXTargetDependency */, - FFC5A6E8784542451D7FF8E1 /* PBXTargetDependency */, - 9538586E631EF116489019D8 /* PBXTargetDependency */, - CD2B074E1F5AE3F3C5A4466E /* PBXTargetDependency */, + FE39A11FC6BA60A53AD1C0CA /* PBXTargetDependency */, + C90B979B0763E58C1ECB1C8C /* PBXTargetDependency */, + 3F8A1F3D4F9BFD03625482CB /* PBXTargetDependency */, + 7128B2D8BBDDCBAE3EAA17F2 /* PBXTargetDependency */, + D965D94F70BD2ACB62A36195 /* PBXTargetDependency */, + E711A3109557099B3AF43935 /* PBXTargetDependency */, + 8F55CBBE44981043A059015D /* PBXTargetDependency */, + 9BFF5EB87C6C233A097553C6 /* PBXTargetDependency */, + DBC36892FC0F6C2C976F8D13 /* PBXTargetDependency */, + 252845096E59F9EB7428AE4F /* PBXTargetDependency */, + 154A418E45CE656728ED4824 /* PBXTargetDependency */, + 8431BE6D7108C8BA8D2647AA /* PBXTargetDependency */, + B060BD778F628281C4729922 /* PBXTargetDependency */, ); name = Pods; productName = Pods; - productReference = 2D4D3A8DD7BF721C32F55FC3 /* libPods.a */; + productReference = 0DFC802C0A6071810B82B253 /* libPods.a */; productType = "com.apple.product-type.library.static"; }; - BAD0B2191D1913493C9537E6 /* Pods-SecureUDID */ = { + 1C099AB0A914FF873E22025E /* Pods-SecureUDID */ = { isa = PBXNativeTarget; - buildConfigurationList = 55D2AB716F17F68D190F0034 /* Build configuration list for PBXNativeTarget "Pods-SecureUDID" */; + buildConfigurationList = C0B3FEA2AA18227702AE86D0 /* Build configuration list for PBXNativeTarget "Pods-SecureUDID" */; buildPhases = ( - BAE081F1C0D395B570DE3E2E /* Sources */, - 055CE4C7CF75DA73B6B1D1EC /* Frameworks */, - 6F7FD84216A89D9033541B7A /* Headers */, + AE295086C1653AEF242065A9 /* Sources */, + EFEAE41152B284070046DA32 /* Frameworks */, + 5B46A645248E81DACF3E6A34 /* Headers */, ); buildRules = ( ); @@ -2138,68 +2162,16 @@ ); name = "Pods-SecureUDID"; productName = "Pods-SecureUDID"; - productReference = 8A7DC1DCF923EC380E831541 /* libPods-SecureUDID.a */; + productReference = B001B4A5AB7E920F7C68C0BF /* libPods-SecureUDID.a */; productType = "com.apple.product-type.library.static"; }; - C28E1D77C35A229E98AC7E98 /* Pods-DTCoreText */ = { + 246007DB8F862E25EDD87EC3 /* Pods-SDWebImage */ = { isa = PBXNativeTarget; - buildConfigurationList = 69C6D82F26B410219D840BB4 /* Build configuration list for PBXNativeTarget "Pods-DTCoreText" */; + buildConfigurationList = 0224B1896EF6A709F9E14C24 /* Build configuration list for PBXNativeTarget "Pods-SDWebImage" */; buildPhases = ( - E397A4C9097AC6794A47BC45 /* Sources */, - 7A048E57132B0296803F9EFE /* Frameworks */, - 43C9E26D87D23E02754044B1 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - 711A365A05C63AEEAD0436A8 /* PBXTargetDependency */, - ); - name = "Pods-DTCoreText"; - productName = "Pods-DTCoreText"; - productReference = 8ACFA92908F13EB46473AC72 /* libPods-DTCoreText.a */; - productType = "com.apple.product-type.library.static"; - }; - C99BA687A28ABFF62F6E3F0D /* Pods-SBJson */ = { - isa = PBXNativeTarget; - buildConfigurationList = 2DDDBF4F551BA1FFB3EAE008 /* Build configuration list for PBXNativeTarget "Pods-SBJson" */; - buildPhases = ( - 12CD0DF878ED8D959584FAA7 /* Sources */, - 15F31417CE22CBF9BFECE988 /* Frameworks */, - 81F3B165F4F77F66D4F0FD23 /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-SBJson"; - productName = "Pods-SBJson"; - productReference = BB5105D1D07D5FAB04556D53 /* libPods-SBJson.a */; - productType = "com.apple.product-type.library.static"; - }; - F696F07F8E87A3481C192E0B /* Pods-AFNetworking */ = { - isa = PBXNativeTarget; - buildConfigurationList = 48D0E08F0DF4A3A33D4B46F4 /* Build configuration list for PBXNativeTarget "Pods-AFNetworking" */; - buildPhases = ( - E7EBD7A367DC4E524E6037A2 /* Sources */, - 79010AADA0A64D3B55B90051 /* Frameworks */, - 9BD1808973BE92B52BD1AB9C /* Headers */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = "Pods-AFNetworking"; - productName = "Pods-AFNetworking"; - productReference = FB9B4890E359DB398B1E48B0 /* libPods-AFNetworking.a */; - productType = "com.apple.product-type.library.static"; - }; - F99C14BA01B05EDB6951DD66 /* Pods-SDWebImage */ = { - isa = PBXNativeTarget; - buildConfigurationList = 4E3ACB9AC37F0EFE7DC88102 /* Build configuration list for PBXNativeTarget "Pods-SDWebImage" */; - buildPhases = ( - C33F202491237FBDD265D8AA /* Sources */, - 2978C192CC733D305954C608 /* Frameworks */, - B95CC1C33C34875C7797E1B5 /* Headers */, + AC92C9C59762CE5201D3E4FA /* Sources */, + F9EB0F9BB143E1672B6627EA /* Frameworks */, + 8C924C1CC8279044E723C3A8 /* Headers */, ); buildRules = ( ); @@ -2207,393 +2179,607 @@ ); name = "Pods-SDWebImage"; productName = "Pods-SDWebImage"; - productReference = D3CA2F1DF0DDCBF42AF3B13D /* libPods-SDWebImage.a */; + productReference = 1C4485F4C42846C2279D9B3C /* libPods-SDWebImage.a */; + productType = "com.apple.product-type.library.static"; + }; + 3407AC2ADE0234D6024C3225 /* Pods-MJRefresh */ = { + isa = PBXNativeTarget; + buildConfigurationList = CD5B0112664C365774FBF164 /* Build configuration list for PBXNativeTarget "Pods-MJRefresh" */; + buildPhases = ( + DED9F731FC6B56D2234A4F13 /* Sources */, + 19828D821192B0AD8BA64DBB /* Frameworks */, + 7ACB8384E2B9A768599E0A8A /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-MJRefresh"; + productName = "Pods-MJRefresh"; + productReference = 053E650D0FAE12D024D858D0 /* libPods-MJRefresh.a */; + productType = "com.apple.product-type.library.static"; + }; + 5516FCAE39C9ADCE88363669 /* Pods-EGOCache */ = { + isa = PBXNativeTarget; + buildConfigurationList = 41C18C3F490300E87F7137C7 /* Build configuration list for PBXNativeTarget "Pods-EGOCache" */; + buildPhases = ( + C10FD15D7A796A7F96C0556E /* Sources */, + CD2433D494CCBAA22BB04EC1 /* Frameworks */, + 95A744E12E25BA9892107DF1 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-EGOCache"; + productName = "Pods-EGOCache"; + productReference = 2E48888E05ABEED31745F4E6 /* libPods-EGOCache.a */; + productType = "com.apple.product-type.library.static"; + }; + 5CE1CEB18F375654764E6BEE /* Pods-Mantle */ = { + isa = PBXNativeTarget; + buildConfigurationList = 0899F51A4DFAE9EA982785B0 /* Build configuration list for PBXNativeTarget "Pods-Mantle" */; + buildPhases = ( + 3871007EE923E49BC0C7C189 /* Sources */, + 19D4E7F6FF342095B8492AC8 /* Frameworks */, + 6FEB327AAC56F2CC36B4EE17 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-Mantle"; + productName = "Pods-Mantle"; + productReference = A2B2B182EBB052C8D1A75726 /* libPods-Mantle.a */; + productType = "com.apple.product-type.library.static"; + }; + 71A4FA4DD2C39B010FEF1F64 /* Pods-STableViewController */ = { + isa = PBXNativeTarget; + buildConfigurationList = 1F5B8925DF3847EB18FB26EB /* Build configuration list for PBXNativeTarget "Pods-STableViewController" */; + buildPhases = ( + F56D9DC8F77D39164C09E72B /* Sources */, + 485C496FBA72B48C8F36CA4D /* Frameworks */, + 7DD42D2B3E3D2B0FD39DEFEB /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-STableViewController"; + productName = "Pods-STableViewController"; + productReference = B30451B8E4FDB09C257558C5 /* libPods-STableViewController.a */; + productType = "com.apple.product-type.library.static"; + }; + 7AAD259F4548BFB4D392BCE8 /* Pods-DTFoundation */ = { + isa = PBXNativeTarget; + buildConfigurationList = 2197E30DCF1893EFFB50C950 /* Build configuration list for PBXNativeTarget "Pods-DTFoundation" */; + buildPhases = ( + 9B01D4DF00F7DE882F64335C /* Sources */, + 2C840C92980331FD61DAE553 /* Frameworks */, + 889F0855848F7F3D0089B17E /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-DTFoundation"; + productName = "Pods-DTFoundation"; + productReference = B62216477414878B1B856598 /* libPods-DTFoundation.a */; + productType = "com.apple.product-type.library.static"; + }; + D4CB5066DD4B9FA1102C148C /* Pods-SBJson */ = { + isa = PBXNativeTarget; + buildConfigurationList = BFB9722C75FA0D33477152AA /* Build configuration list for PBXNativeTarget "Pods-SBJson" */; + buildPhases = ( + 9053894A398DC237175612F6 /* Sources */, + 2A1AE755DFA0B59CC7729650 /* Frameworks */, + D72DFCE34325BA598D00CBE0 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-SBJson"; + productName = "Pods-SBJson"; + productReference = 4675BAADC653074EB3762AB3 /* libPods-SBJson.a */; + productType = "com.apple.product-type.library.static"; + }; + E4CE1DC0A990D7D49C2F3706 /* Pods-MBProgressHUD */ = { + isa = PBXNativeTarget; + buildConfigurationList = E0312F5DB5390546EC07C28D /* Build configuration list for PBXNativeTarget "Pods-MBProgressHUD" */; + buildPhases = ( + C3D75EC5880A07C7FFE4B77F /* Sources */, + D022507B2B9B65DE44C2621C /* Frameworks */, + 34A3A6650169190A1DEE7096 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-MBProgressHUD"; + productName = "Pods-MBProgressHUD"; + productReference = FD994BF3AB940E759259C133 /* libPods-MBProgressHUD.a */; + productType = "com.apple.product-type.library.static"; + }; + EDBB7D54D3DBA6D222E66ACC /* Pods-AFNetworking */ = { + isa = PBXNativeTarget; + buildConfigurationList = CA3E6F2226233EF570586D0B /* Build configuration list for PBXNativeTarget "Pods-AFNetworking" */; + buildPhases = ( + 5DB31C8B187018C4C20B90B4 /* Sources */, + 7B956EF253BFF061E3C16E58 /* Frameworks */, + E2CC50351B83C1626FE8426C /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-AFNetworking"; + productName = "Pods-AFNetworking"; + productReference = A3D50189B84CAFA22502AA88 /* libPods-AFNetworking.a */; + productType = "com.apple.product-type.library.static"; + }; + F564FE7FF3C0FFC99E487782 /* Pods-Godzippa */ = { + isa = PBXNativeTarget; + buildConfigurationList = A4A57808D4240107C25A4D8C /* Build configuration list for PBXNativeTarget "Pods-Godzippa" */; + buildPhases = ( + 8D29B19E38F029F6C7915BD3 /* Sources */, + 50951BBF8A9D3CA05D6D89B8 /* Frameworks */, + 623C42686ED4E09BFC0A3DF3 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-Godzippa"; + productName = "Pods-Godzippa"; + productReference = 27C436A1B9330F8576D3D27E /* libPods-Godzippa.a */; + productType = "com.apple.product-type.library.static"; + }; + F71420DF9662B503D8ACFF36 /* Pods-Reachability */ = { + isa = PBXNativeTarget; + buildConfigurationList = CEA819D71063BA6A3869EF7E /* Build configuration list for PBXNativeTarget "Pods-Reachability" */; + buildPhases = ( + 920C70FABBB472096CFA871F /* Sources */, + 1D25D30E73586166225CE29E /* Frameworks */, + 1613FE62016399916B0E6172 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "Pods-Reachability"; + productName = "Pods-Reachability"; + productReference = 4800D6896DDF29D0676A963A /* libPods-Reachability.a */; + productType = "com.apple.product-type.library.static"; + }; + F923B086C24D15CF9BD1F307 /* Pods-DTCoreText */ = { + isa = PBXNativeTarget; + buildConfigurationList = BCDA08264FAD178F9E7902E4 /* Build configuration list for PBXNativeTarget "Pods-DTCoreText" */; + buildPhases = ( + 58E496AEAEEBBD79F2E5FFE5 /* Sources */, + 787C5DE8DE63A5BCEBD5AEE0 /* Frameworks */, + 67F2A71D2934694E9500B7C1 /* Headers */, + ); + buildRules = ( + ); + dependencies = ( + 90E0C2F76215FE886E6B8B11 /* PBXTargetDependency */, + ); + name = "Pods-DTCoreText"; + productName = "Pods-DTCoreText"; + productReference = CBE26A822B9113D7AEE87DA3 /* libPods-DTCoreText.a */; productType = "com.apple.product-type.library.static"; }; /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 7DD05114B399CF5F8BBA9391 /* Project object */ = { + 90BC916F6B727ED9575295CB /* Project object */ = { isa = PBXProject; attributes = { LastUpgradeCheck = 0510; }; - buildConfigurationList = 58D34F109EB3BEBD2788BC9A /* Build configuration list for PBXProject "Pods" */; + buildConfigurationList = C84CA766F0B00CABD15454A1 /* Build configuration list for PBXProject "Pods" */; compatibilityVersion = "Xcode 3.2"; developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( en, ); - mainGroup = 51AE8F8C865CA501C9F55B12; - productRefGroup = 6E66294E4578A322267B9D54 /* Products */; + mainGroup = 1C7C8810C4C92E27EF896C53; + productRefGroup = A52776769F46F28B2F3F4E48 /* Products */; projectDirPath = ""; projectRoot = ""; targets = ( - AD56501F7D1542D4DB1414FC /* Pods */, - F696F07F8E87A3481C192E0B /* Pods-AFNetworking */, - C28E1D77C35A229E98AC7E98 /* Pods-DTCoreText */, - 2598E678E6856E0B69C04891 /* Pods-DTFoundation */, - 4EE670259BB59F0E2363AE87 /* Pods-EGOCache */, - 712FB3430DDB22E3783751FE /* Pods-Godzippa */, - AD146F7AD0657054CC81D382 /* Pods-MBProgressHUD */, - 547318FF46D8305D2B020EC1 /* Pods-Mantle */, - 2AA81FBE6282912F6E7F14F3 /* Pods-Reachability */, - C99BA687A28ABFF62F6E3F0D /* Pods-SBJson */, - F99C14BA01B05EDB6951DD66 /* Pods-SDWebImage */, - 8F2162B4D278000EA5C539EC /* Pods-STableViewController */, - BAD0B2191D1913493C9537E6 /* Pods-SecureUDID */, + 14D13089E11DA69B9989B5D7 /* Pods */, + EDBB7D54D3DBA6D222E66ACC /* Pods-AFNetworking */, + F923B086C24D15CF9BD1F307 /* Pods-DTCoreText */, + 7AAD259F4548BFB4D392BCE8 /* Pods-DTFoundation */, + 5516FCAE39C9ADCE88363669 /* Pods-EGOCache */, + F564FE7FF3C0FFC99E487782 /* Pods-Godzippa */, + E4CE1DC0A990D7D49C2F3706 /* Pods-MBProgressHUD */, + 3407AC2ADE0234D6024C3225 /* Pods-MJRefresh */, + 5CE1CEB18F375654764E6BEE /* Pods-Mantle */, + F71420DF9662B503D8ACFF36 /* Pods-Reachability */, + D4CB5066DD4B9FA1102C148C /* Pods-SBJson */, + 246007DB8F862E25EDD87EC3 /* Pods-SDWebImage */, + 71A4FA4DD2C39B010FEF1F64 /* Pods-STableViewController */, + 1C099AB0A914FF873E22025E /* Pods-SecureUDID */, ); }; /* End PBXProject section */ /* Begin PBXSourcesBuildPhase section */ - 04E782952F2E12A1746135DF /* Sources */ = { + 271BA0642B2F27DA3F11220A /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 70FF956904F8FEDFA9ED61B4 /* Pods-STableViewController-dummy.m in Sources */, - 0F834B27CF98DE89E35CD99F /* STableViewController.m in Sources */, + C33777998D03C1943CA5729F /* Pods-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0D28C75229987713C4753BBC /* Sources */ = { + 3871007EE923E49BC0C7C189 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 41E2C2E0D1EF0B0E3B2F01F9 /* EGOCache.m in Sources */, - 89A4612C7BD27030A887DAA7 /* Pods-EGOCache-dummy.m in Sources */, + F7A4BFA846605A22CB40F48A /* EXTRuntimeExtensions.m in Sources */, + 48E611DCB028272820C85F25 /* EXTScope.m in Sources */, + 74ACEBE8FC6D5F215150EAEB /* MTLJSONAdapter.m in Sources */, + F9D9AFBB20E3D04BA9F40590 /* MTLManagedObjectAdapter.m in Sources */, + F6060AD3D3D289C8F5E2E1E1 /* MTLModel+NSCoding.m in Sources */, + 982F61ACA8240D98559EF20C /* MTLModel.m in Sources */, + 28C947BC1C877387DA779D3E /* MTLReflection.m in Sources */, + 8AFFF954971550F4B9A3C48E /* MTLValueTransformer.m in Sources */, + FCC315EC9B022BB58231B39D /* NSArray+MTLManipulationAdditions.m in Sources */, + 56325DA5C191FA7D75ADCC94 /* NSDictionary+MTLManipulationAdditions.m in Sources */, + D1B7A9D9D013845DDDE157AF /* NSError+MTLModelException.m in Sources */, + 9C6D4BFC5E92F7CEFD61F772 /* NSObject+MTLComparisonAdditions.m in Sources */, + 17C8DB4DB8A058C8E99C7756 /* NSValueTransformer+MTLInversionAdditions.m in Sources */, + 1498E1CE4D319EC01BFFAB10 /* NSValueTransformer+MTLPredefinedTransformerAdditions.m in Sources */, + A561A3BE1A8675BF0FFF7668 /* Pods-Mantle-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 0D4A2B0EC373B11EA1F00A97 /* Sources */ = { + 58E496AEAEEBBD79F2E5FFE5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 29C90492180057BA77B4892D /* Pods-Reachability-dummy.m in Sources */, - A1C64413FB78831F7EA4E9AE /* Reachability.m in Sources */, + 57EEF7C5E70A9BB7C4B0FADB /* DTAccessibilityElement.m in Sources */, + 468589F666ABDDD9A6FA07F4 /* DTAccessibilityViewProxy.m in Sources */, + 6823457F8E43FB5C9C7554F8 /* DTAnchorHTMLElement.m in Sources */, + 93784C2C01C15630CFC61D83 /* DTAttributedLabel.m in Sources */, + 7CA5F3C41A1F4A4AD8BC1FBC /* DTAttributedTextCell.m in Sources */, + 86AF24B70739E2E410382A24 /* DTAttributedTextContentView.m in Sources */, + 8189EAE9B094C139F07B5E31 /* DTAttributedTextView.m in Sources */, + F8931DEA95BB8BC72F432430 /* DTBreakHTMLElement.m in Sources */, + EF0B1DCEC8F2C6569C9E2793 /* DTCSSListStyle.m in Sources */, + 6EDBF0DABB6635A9974D4707 /* DTCSSStylesheet.m in Sources */, + 8737D39FC757F48505E97ADC /* DTColor+Compatibility.m in Sources */, + 3F2F8A5FD546EFB18686E1D1 /* DTColorFunctions.m in Sources */, + 4190B3AE187ED49E37EA4E3B /* DTCoreTextConstants.m in Sources */, + ADED2C0F4CC498E8BAFDF335 /* DTCoreTextFontCollection.m in Sources */, + DE1BFFAE508A2E2B26A7BE09 /* DTCoreTextFontDescriptor.m in Sources */, + C3666EC3988C0685E339F926 /* DTCoreTextFunctions.m in Sources */, + C628730FA336FA7325BB0E9C /* DTCoreTextGlyphRun.m in Sources */, + B5AB8DB17846A2138A288704 /* DTCoreTextLayoutFrame+Cursor.m in Sources */, + 2A29E5880992E50A2340F226 /* DTCoreTextLayoutFrame.m in Sources */, + FB997B55BB092421A61123C2 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m in Sources */, + EDB4EAEA8C8CA7582BE6524F /* DTCoreTextLayoutLine.m in Sources */, + C235636402245C5EE9811447 /* DTCoreTextLayouter.m in Sources */, + 7E2B06EBB71E73F76B965207 /* DTCoreTextParagraphStyle.m in Sources */, + 9A9D9A340943B30B067EE1B0 /* DTDictationPlaceholderTextAttachment.m in Sources */, + 511BAA36D0762088F7DDD7B9 /* DTDictationPlaceholderView.m in Sources */, + E732DB06754EA53254B94735 /* DTHTMLAttributedStringBuilder.m in Sources */, + C091864FBB955E27F86D3F85 /* DTHTMLElement.m in Sources */, + 2957FD54466B570824668768 /* DTHTMLParserNode.m in Sources */, + 76A8AF44494649F2C9921273 /* DTHTMLParserTextNode.m in Sources */, + DE032459E92803F21DAF6177 /* DTHTMLWriter.m in Sources */, + B5CF28826926F9B920F476D2 /* DTHorizontalRuleHTMLElement.m in Sources */, + C3F00385920B4655024620E7 /* DTIframeTextAttachment.m in Sources */, + 9DDF74DB7D7E5E8EF07BA04F /* DTImage+HTML.m in Sources */, + 71264C5CD1A8852E56E3F88F /* DTImageTextAttachment.m in Sources */, + E7291F024C531A2A9C013429 /* DTLazyImageView.m in Sources */, + 6D12B076ADD9EF9B2105D6D6 /* DTLinkButton.m in Sources */, + D1F439C75EC1CFFF9A2DD88D /* DTListItemHTMLElement.m in Sources */, + B299EE3F4930338CF702A3A1 /* DTObjectTextAttachment.m in Sources */, + DE6D56467B4F6118F21DCBB7 /* DTStylesheetHTMLElement.m in Sources */, + C6D22327B28AB9680C0F9DE3 /* DTTextAttachment.m in Sources */, + BDDB77AF9A58D1B79014004D /* DTTextAttachmentHTMLElement.m in Sources */, + 4EF33D5049AFA1509CF73779 /* DTTextBlock.m in Sources */, + 56537D1008A6086C62D57D36 /* DTTextHTMLElement.m in Sources */, + A833C2A3D7B70FB37A4E46DC /* DTVideoTextAttachment.m in Sources */, + E980727C56C02EF4FD745263 /* DTWebVideoView.m in Sources */, + 7A439BD4DA6EFE2F4F61EB63 /* NSAttributedString+DTCoreText.m in Sources */, + 2CA32DA7E65DF80E7C750048 /* NSAttributedString+DTDebug.m in Sources */, + 09D5C7B9E5669FC9852799A0 /* NSAttributedString+HTML.m in Sources */, + C8AD6D29FA096FD12F747DDC /* NSAttributedString+SmallCaps.m in Sources */, + 645A5C37747872C68DE2F8B2 /* NSAttributedStringRunDelegates.m in Sources */, + CFDEA7BADEE329C1A1A1EBB0 /* NSCharacterSet+HTML.m in Sources */, + 2599716241029048D12453BB /* NSCoder+DTCompatibility.m in Sources */, + 38D554163E106E1C88D223F8 /* NSDictionary+DTCoreText.m in Sources */, + 9788817922F0E81CA3356114 /* NSMutableAttributedString+HTML.m in Sources */, + AD390BCEA9D792C3957FFAF8 /* NSMutableString+HTML.m in Sources */, + CC05D3F5473B93B70829B099 /* NSScanner+HTML.m in Sources */, + EF56D323C7DE78EA9D735BE2 /* NSString+CSS.m in Sources */, + B8CABA753182C060BFA2183F /* NSString+HTML.m in Sources */, + 1557DF7243D3BE8FF57762F9 /* NSString+Paragraphs.m in Sources */, + D80BE4E29F69553549A0713E /* Pods-DTCoreText-dummy.m in Sources */, + F91E1D6B1784B35C920BAD67 /* UIFont+DTCoreText.m in Sources */, + 4AE39F5A27F3C1A67BC1F10C /* default.css.c in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 12CD0DF878ED8D959584FAA7 /* Sources */ = { + 5DB31C8B187018C4C20B90B4 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B8429AEE5E3661D05500AE7F /* Pods-SBJson-dummy.m in Sources */, - C6F4F9B53A3C2E706CF9EA2E /* SBJson4Parser.m in Sources */, - 5057D5810369410BA0BE2CEA /* SBJson4StreamParser.m in Sources */, - EE84CBE8407BF806C7E2A40A /* SBJson4StreamParserState.m in Sources */, - 405877848584FCDC36AF4FA9 /* SBJson4StreamTokeniser.m in Sources */, - 2BD4E30D5648A3824220CF31 /* SBJson4StreamWriter.m in Sources */, - C0EC98E5ED6F65A64D15275E /* SBJson4StreamWriterState.m in Sources */, - 489CF5D5E1E4BC18488BEE07 /* SBJson4Writer.m in Sources */, + 4E19B321140DF0FFCAD39931 /* AFHTTPRequestOperation.m in Sources */, + D9A42AA8AC78B29F5909F2EF /* AFHTTPRequestOperationManager.m in Sources */, + 3632E9ABE4CBE8994EF0AFB2 /* AFHTTPSessionManager.m in Sources */, + ED603858C05FB7A9F4C8A998 /* AFNetworkActivityIndicatorManager.m in Sources */, + 6230463E54645081E39A2E9C /* AFNetworkReachabilityManager.m in Sources */, + 9AEAEC552D6893233463DFD1 /* AFSecurityPolicy.m in Sources */, + 3CAC6C9048BD575906F46945 /* AFURLConnectionOperation.m in Sources */, + DC639029D855700349F85E09 /* AFURLRequestSerialization.m in Sources */, + 90039C5C2F0C0A40DD688913 /* AFURLResponseSerialization.m in Sources */, + 4092F1978DB4496E053C37AB /* AFURLSessionManager.m in Sources */, + 08B673B94982357C5B554C17 /* Pods-AFNetworking-dummy.m in Sources */, + 22DC6D081D812BDC590D1790 /* UIActivityIndicatorView+AFNetworking.m in Sources */, + 9EA6F696EA65ED8F56DFF108 /* UIAlertView+AFNetworking.m in Sources */, + 6D1BA9DEA803AD732BC520C1 /* UIButton+AFNetworking.m in Sources */, + 91DA1F9D2E84A4178269769D /* UIImageView+AFNetworking.m in Sources */, + 87693E4DDCFD61DC4FE03752 /* UIProgressView+AFNetworking.m in Sources */, + FA624995017C8D9B99980ECD /* UIRefreshControl+AFNetworking.m in Sources */, + 193E008C51214B282BB15DB0 /* UIWebView+AFNetworking.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 67D68FA6A53D723037197BD6 /* Sources */ = { + 8D29B19E38F029F6C7915BD3 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FD639000489071DC6322FEE1 /* Pods-dummy.m in Sources */, + A8A8688A740DB6DA56EF6DB5 /* NSData+Godzippa.m in Sources */, + 2414AE68EE3B87A413FAF4A6 /* NSFileManager+Godzippa.m in Sources */, + 1927D218D867C80904A9D718 /* Pods-Godzippa-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - 9642157AF03301B9171A1BA5 /* Sources */ = { + 9053894A398DC237175612F6 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EF3493AA0D81B440E60E6B37 /* MBProgressHUD.m in Sources */, - BCA7B4E72387B5A000BB6116 /* Pods-MBProgressHUD-dummy.m in Sources */, + CAF5189BCDA0A6BBE9B232F4 /* Pods-SBJson-dummy.m in Sources */, + FA3D4208009A96348BA934ED /* SBJson4Parser.m in Sources */, + 2B3CEB8B932D6275D22E365C /* SBJson4StreamParser.m in Sources */, + A56BFA99D1F1F6A6AC80DBC3 /* SBJson4StreamParserState.m in Sources */, + 41B3C717DCE4AA5E4D1BE745 /* SBJson4StreamTokeniser.m in Sources */, + EDCDAD0297C93F420DB0A137 /* SBJson4StreamWriter.m in Sources */, + 6E1B015496786B6F6BECD649 /* SBJson4StreamWriterState.m in Sources */, + 3A199E6E897D83B2FE5E0BC5 /* SBJson4Writer.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - A5086AC3F253D32CC42A32B1 /* Sources */ = { + 920C70FABBB472096CFA871F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 1E6EE6AD347DA9EB75A0FEA9 /* EXTRuntimeExtensions.m in Sources */, - 0E248C9F793D091C3953F3AB /* EXTScope.m in Sources */, - D10A471C561B555BAF10C253 /* MTLJSONAdapter.m in Sources */, - F663D86E70844B8710BDBE81 /* MTLManagedObjectAdapter.m in Sources */, - 126A0B4FCB32967627E059C3 /* MTLModel+NSCoding.m in Sources */, - C36F68BCCFBF68ACF6DC5497 /* MTLModel.m in Sources */, - 1DBCEDD6CFCC3ABC6307F6B9 /* MTLReflection.m in Sources */, - AEFC2E2AA95DC887E8EC8865 /* MTLValueTransformer.m in Sources */, - 77F71E4E2C1D80F1928194BE /* NSArray+MTLManipulationAdditions.m in Sources */, - 91B1A2ED6FD884AB018C226D /* NSDictionary+MTLManipulationAdditions.m in Sources */, - 3C070DF0BB5D2F31B3CB98FE /* NSError+MTLModelException.m in Sources */, - 2E4498511BCE27614E0B5BBB /* NSObject+MTLComparisonAdditions.m in Sources */, - ABE9A0ECEB2125B4D430C7A9 /* NSValueTransformer+MTLInversionAdditions.m in Sources */, - E7ED3FDE074A2B73C50B8B3C /* NSValueTransformer+MTLPredefinedTransformerAdditions.m in Sources */, - FA9F9CE9AEEF9A446E1DF840 /* Pods-Mantle-dummy.m in Sources */, + FC0C6AA4307A7E5DB2E0E360 /* Pods-Reachability-dummy.m in Sources */, + EE3D8069B5FFFB74BDBDE5A6 /* Reachability.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - BAE081F1C0D395B570DE3E2E /* Sources */ = { + 9B01D4DF00F7DE882F64335C /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B927088F2E65746D82CC2B32 /* Pods-SecureUDID-dummy.m in Sources */, - 3140B49E82F401B1B9DC3854 /* SecureUDID.m in Sources */, + 6A21E94A5341699D26C493FB /* DTActivityTitleView.m in Sources */, + 10013362018CA4989D580A81 /* DTAnimatedGIF.m in Sources */, + 6352551E83620AA320F9BEAD /* DTAsyncFileDeleter.m in Sources */, + 5941F1A283E283FA9A7ACC8A /* DTBase64Coding.m in Sources */, + D860516C72317BD81E11CEB5 /* DTBlockFunctions.m in Sources */, + C6E8E09246A2749A956187B4 /* DTCoreGraphicsUtils.m in Sources */, + 5921EB579F7FAEF03FF8B6F5 /* DTCustomColoredAccessory.m in Sources */, + 1081B1832D78FB4CF7BF72F6 /* DTExtendedFileAttributes.m in Sources */, + 61674A1F9BD420367B6C7A57 /* DTFolderMonitor.m in Sources */, + E169462BDEA825EC2FFA2818 /* DTFoundationConstants.m in Sources */, + D3A3C2E147CEEFBB7FEB74EF /* DTHTMLParser.m in Sources */, + 6F8C0549CE0E74983DEB2525 /* DTLog.m in Sources */, + 3BB69F101FB7962D1F60644E /* DTPieProgressIndicator.m in Sources */, + B2BA58000A6B0F2FB85768F4 /* DTSmartPagingScrollView.m in Sources */, + BE38EC0AE62924DD67E9FE1C /* DTTiledLayerWithoutFade.m in Sources */, + 07DC747AB89E367CCFD890C2 /* DTVersion.m in Sources */, + 99392309B94CE18346DA0EA8 /* NSArray+DTError.m in Sources */, + 26AC6C444F6FAE0FAA2E760C /* NSData+DTCrypto.m in Sources */, + AA776D7C0C90F33CD7D327E3 /* NSDictionary+DTError.m in Sources */, + BD4EEE83BE46779F584C7CC7 /* NSFileWrapper+DTCopying.m in Sources */, + F3E77CD28645D885900F45DC /* NSMutableArray+DTMoving.m in Sources */, + 6E8CB74C97B4358B4A14FA53 /* NSString+DTFormatNumbers.m in Sources */, + 8C51B09BD3256961EF3080D9 /* NSString+DTPaths.m in Sources */, + 6A07B0C1D9C7D99852513FE8 /* NSString+DTURLEncoding.m in Sources */, + 12F17919DA35204E9E8190E2 /* NSString+DTUtilities.m in Sources */, + 7B712A885E3AC50A4797B179 /* NSURL+DTAppLinks.m in Sources */, + AF4C931E95064EFE6898E4B2 /* NSURL+DTComparing.m in Sources */, + 03602DA16768AA2E4F44EF9F /* NSURL+DTUnshorten.m in Sources */, + 52CAE06DBD6FA7F2C2B4B95B /* Pods-DTFoundation-dummy.m in Sources */, + DECFDFCCAC554EAE56A2A9C2 /* UIApplication+DTNetworkActivity.m in Sources */, + F2A40A1202DB1216C90862A4 /* UIImage+DTFoundation.m in Sources */, + 7B076D2975F1D808E454CF8E /* UIView+DTFoundation.m in Sources */, + C0C1AEC45B65D87312750F35 /* UIWebView+DTFoundation.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - C33F202491237FBDD265D8AA /* Sources */ = { + AC92C9C59762CE5201D3E4FA /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - B0695112894595099123BC8F /* NSData+ImageContentType.m in Sources */, - F2E786CE7E8636D757D3BF6C /* Pods-SDWebImage-dummy.m in Sources */, - F2431F4E5E9C87441203BDA9 /* SDImageCache.m in Sources */, - 1BC1EECD982CE07DA3848806 /* SDWebImageCompat.m in Sources */, - E07A42F90C05F5337633D3E9 /* SDWebImageDecoder.m in Sources */, - 663CAA2B445B604D27F58867 /* SDWebImageDownloader.m in Sources */, - CCBD7AEDBF92C5F3BE3FD568 /* SDWebImageDownloaderOperation.m in Sources */, - D5D2C67E74273A13CDC409A6 /* SDWebImageManager.m in Sources */, - E062CEAD6F3F87291B37AB99 /* SDWebImagePrefetcher.m in Sources */, - 50F5D9653F4061ABA3154C96 /* UIButton+WebCache.m in Sources */, - D6ED89509EC4B42C49D6FD78 /* UIImage+GIF.m in Sources */, - EE5BE1B3E14C712AD023F8A3 /* UIImage+MultiFormat.m in Sources */, - 4A5BDDDCCBA3F4C1D56F2BE8 /* UIImageView+HighlightedWebCache.m in Sources */, - 5D57B6F2158CB1588D3FA733 /* UIImageView+WebCache.m in Sources */, - 8F9E52CBD66F281407605693 /* UIView+WebCacheOperation.m in Sources */, + 02FDDB835C27EF636DAB16C8 /* NSData+ImageContentType.m in Sources */, + 4D178EA509151771F9471851 /* Pods-SDWebImage-dummy.m in Sources */, + 4F10F0A70F10D1D2BAF784C5 /* SDImageCache.m in Sources */, + DEFBA23CF6F4EF128E90E531 /* SDWebImageCompat.m in Sources */, + FF8CB0ABA29672C1B2634C2F /* SDWebImageDecoder.m in Sources */, + 94053C0235D66070913E143E /* SDWebImageDownloader.m in Sources */, + F5C8F6274B4C9131CFAA827F /* SDWebImageDownloaderOperation.m in Sources */, + 2CDE09CE2BD3FCE505BC0E48 /* SDWebImageManager.m in Sources */, + BDF2155F432F8BD9411CD9F8 /* SDWebImagePrefetcher.m in Sources */, + 1FD9A8ED7D34AF7E58005295 /* UIButton+WebCache.m in Sources */, + D536F373B3F30C87AEFC268D /* UIImage+GIF.m in Sources */, + 50977A6FB806F7290536C123 /* UIImage+MultiFormat.m in Sources */, + 6F0101FEEAF8EEAFA8AAA3DD /* UIImageView+HighlightedWebCache.m in Sources */, + 9D2BAA3444ECCF844DCC2D0E /* UIImageView+WebCache.m in Sources */, + 35CAD4E7E13BD530B42C2A88 /* UIView+WebCacheOperation.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - D741E6679E7BCACEA71BD23B /* Sources */ = { + AE295086C1653AEF242065A9 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 3E4C6F9FAB20AB4A6DD3E169 /* NSData+Godzippa.m in Sources */, - 90EA45AE10D4E3D1D65C63DA /* NSFileManager+Godzippa.m in Sources */, - 7104773CB91A5E4C9BC5095F /* Pods-Godzippa-dummy.m in Sources */, + A21C6B68A0B246CA9CC03108 /* Pods-SecureUDID-dummy.m in Sources */, + E4A708ED5E6882982158D569 /* SecureUDID.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E397A4C9097AC6794A47BC45 /* Sources */ = { + C10FD15D7A796A7F96C0556E /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 48F03C3AFF3FCA5E36977EB1 /* DTAccessibilityElement.m in Sources */, - A308C9D7A6A343B0E70788CC /* DTAccessibilityViewProxy.m in Sources */, - EB8F1B0DA229F57C2574DA5E /* DTAnchorHTMLElement.m in Sources */, - 042FC8C71A71F23C7E8B38DB /* DTAttributedLabel.m in Sources */, - 0EEF3459E4A629D1910BD341 /* DTAttributedTextCell.m in Sources */, - 98C916D6A1F3B146EBA710DD /* DTAttributedTextContentView.m in Sources */, - 3CAF8F9E93597F161B387D8D /* DTAttributedTextView.m in Sources */, - 519F7AA43E907E3B627EEE62 /* DTBreakHTMLElement.m in Sources */, - A070A576B2B07FE720796407 /* DTCSSListStyle.m in Sources */, - F3340FCE178705CB20643CDE /* DTCSSStylesheet.m in Sources */, - C463CE6C190E2EB4FC56FA40 /* DTColor+Compatibility.m in Sources */, - 04CEADCF6201AA3B4437D910 /* DTColorFunctions.m in Sources */, - 93F3AC6A3A54584CB5CC4789 /* DTCoreTextConstants.m in Sources */, - 6DA58B4206B1E439CA7F4870 /* DTCoreTextFontCollection.m in Sources */, - D6DC4A97233BBD19A4C7E4A0 /* DTCoreTextFontDescriptor.m in Sources */, - 57C5DDBF159443966B766389 /* DTCoreTextFunctions.m in Sources */, - CB0ADAED7BD7C6ACA9F9A08B /* DTCoreTextGlyphRun.m in Sources */, - FAF3585E0612946D1FB60B55 /* DTCoreTextLayoutFrame+Cursor.m in Sources */, - 5C19A0DCBD9AB53B16D8D824 /* DTCoreTextLayoutFrame.m in Sources */, - 1D3029A518228E7435D68323 /* DTCoreTextLayoutFrameAccessibilityElementGenerator.m in Sources */, - B072F4965DCCB24ED66B14D9 /* DTCoreTextLayoutLine.m in Sources */, - 93D561DC5C6CE1F9D3D71292 /* DTCoreTextLayouter.m in Sources */, - 51D1554D615B2DB4418238FB /* DTCoreTextParagraphStyle.m in Sources */, - 53DE649D16E818599816995F /* DTDictationPlaceholderTextAttachment.m in Sources */, - 363A6CCD8B1FB86FE4FC02B0 /* DTDictationPlaceholderView.m in Sources */, - EBFB2772ADA8F6243E8F05A8 /* DTHTMLAttributedStringBuilder.m in Sources */, - 40E94982E8C6910077F4AB95 /* DTHTMLElement.m in Sources */, - 717949A16163AA0AA1149187 /* DTHTMLParserNode.m in Sources */, - F1A3091A9DCDB70CADB909B9 /* DTHTMLParserTextNode.m in Sources */, - 7B0B0BF59FBD874077D2EB65 /* DTHTMLWriter.m in Sources */, - 19A6F62CC7C9973F06A81961 /* DTHorizontalRuleHTMLElement.m in Sources */, - DD2A9E40DE0C9ADE47406FB7 /* DTIframeTextAttachment.m in Sources */, - 12B03F1C7B242066A336F5A5 /* DTImage+HTML.m in Sources */, - B5E8DE5EA8009389FAA9FFF7 /* DTImageTextAttachment.m in Sources */, - 64ADCCBEB4F5C8EDF9C412C1 /* DTLazyImageView.m in Sources */, - E2D5E14857F4F8D0EF850E5F /* DTLinkButton.m in Sources */, - 6C4BCB0C4365A243DBB8E87B /* DTListItemHTMLElement.m in Sources */, - 0E3E85F43503C414377EC0E5 /* DTObjectTextAttachment.m in Sources */, - C0D7AE7406C6A9FC0BA50178 /* DTStylesheetHTMLElement.m in Sources */, - A1EE40AF0F6734F2372BC986 /* DTTextAttachment.m in Sources */, - 7E4D83EE04A12DA6CEB71C9A /* DTTextAttachmentHTMLElement.m in Sources */, - CAD40842F80E5CADC9B014C0 /* DTTextBlock.m in Sources */, - BF3C792CAF0E4533AFBEA646 /* DTTextHTMLElement.m in Sources */, - 8F1DF6BCDB3CEBE73C1E8A0B /* DTVideoTextAttachment.m in Sources */, - 15299A9B321B81109C33DDAE /* DTWebVideoView.m in Sources */, - 35A354524C5503BC3547D592 /* NSAttributedString+DTCoreText.m in Sources */, - DD3466A8C888BBD69731EDDB /* NSAttributedString+DTDebug.m in Sources */, - 02B7E5C2D587B2DAD58266F5 /* NSAttributedString+HTML.m in Sources */, - 9F6CC06088448EFD7C5CF9CD /* NSAttributedString+SmallCaps.m in Sources */, - DC0E3F81D77DE8B7A39613E1 /* NSAttributedStringRunDelegates.m in Sources */, - FD2C2ACD0F7ED96358DF738F /* NSCharacterSet+HTML.m in Sources */, - EF8D3D99178DD99A50B5607F /* NSCoder+DTCompatibility.m in Sources */, - BED3DD952FFCF3BCA75E1B53 /* NSDictionary+DTCoreText.m in Sources */, - CC5703EFE48A316342FB4786 /* NSMutableAttributedString+HTML.m in Sources */, - 61EB5CF92D71E8E939212894 /* NSMutableString+HTML.m in Sources */, - CCE91C49322B5F7248140992 /* NSScanner+HTML.m in Sources */, - ED96F3371CA09CFB370DC539 /* NSString+CSS.m in Sources */, - CC822B3EA52CB14214C90F42 /* NSString+HTML.m in Sources */, - B1F65C99DD9FFC4AEBE11943 /* NSString+Paragraphs.m in Sources */, - B2766E3775EB4D3D57AABB65 /* Pods-DTCoreText-dummy.m in Sources */, - C7376FD48641126E2618D5BC /* UIFont+DTCoreText.m in Sources */, - A84242AFF8B8AFC23407FD58 /* default.css.c in Sources */, + 207323BBA418E47FB0C5570A /* EGOCache.m in Sources */, + 9F3924124111D61A4BA8685C /* Pods-EGOCache-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - E7EBD7A367DC4E524E6037A2 /* Sources */ = { + C3D75EC5880A07C7FFE4B77F /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - D63B59B6E711215FBFCE3853 /* AFHTTPRequestOperation.m in Sources */, - 7693C75B26B5B3233466FEAD /* AFHTTPRequestOperationManager.m in Sources */, - AA400FB3DB48AF375988C91D /* AFHTTPSessionManager.m in Sources */, - C8FFE812C5F450379BFB8087 /* AFNetworkActivityIndicatorManager.m in Sources */, - D7867D502940B0E070C59731 /* AFNetworkReachabilityManager.m in Sources */, - 369642CEC6469B98EEC6FE74 /* AFSecurityPolicy.m in Sources */, - C2A8BA5DF5EEA6721602586A /* AFURLConnectionOperation.m in Sources */, - F397EDF9769BAC066D257AEA /* AFURLRequestSerialization.m in Sources */, - 0C78E5F1A4668C8979060505 /* AFURLResponseSerialization.m in Sources */, - D61772959A9EDD731616ACE0 /* AFURLSessionManager.m in Sources */, - 7F0C564E32D4702413538D76 /* Pods-AFNetworking-dummy.m in Sources */, - 72AC1AABA06EC68CFF0214A3 /* UIActivityIndicatorView+AFNetworking.m in Sources */, - 20CA5760D166EC4CD5D90A1B /* UIAlertView+AFNetworking.m in Sources */, - 69F982719DE671E10C672F1C /* UIButton+AFNetworking.m in Sources */, - 1B5E0C8F877982527C093CD4 /* UIImageView+AFNetworking.m in Sources */, - C921F207713C1401E8610DAA /* UIProgressView+AFNetworking.m in Sources */, - 716670E0FAE817B0A28D168C /* UIRefreshControl+AFNetworking.m in Sources */, - B21D564BC65D759C011917DC /* UIWebView+AFNetworking.m in Sources */, + E82B8C9DE1D60F403B63D8FE /* MBProgressHUD.m in Sources */, + 960DC808B718C5A17E234BDD /* Pods-MBProgressHUD-dummy.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; - F555B0678D0300306110912C /* Sources */ = { + DED9F731FC6B56D2234A4F13 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - EE5B776B5B5D218A40637952 /* DTActivityTitleView.m in Sources */, - 3239FBDA096E9F0F64456C2D /* DTAnimatedGIF.m in Sources */, - DB3EA62F219C86E9D6C0794F /* DTAsyncFileDeleter.m in Sources */, - CD3E5E94F4AC2DD8EE7AE61F /* DTBase64Coding.m in Sources */, - BA3305959EE53AF8A3AB5572 /* DTBlockFunctions.m in Sources */, - 9B76CC06FE28F98C0A0E4E83 /* DTCoreGraphicsUtils.m in Sources */, - EC08C1AAF70C76944B58CB13 /* DTCustomColoredAccessory.m in Sources */, - C69E67EB4F031F43BBF83856 /* DTExtendedFileAttributes.m in Sources */, - 70F519C504F106F1503D1BF0 /* DTFolderMonitor.m in Sources */, - C054DD615619A47878D9477F /* DTFoundationConstants.m in Sources */, - D8F84477D56B138C15D7F6F2 /* DTHTMLParser.m in Sources */, - E678665236DD2338C2BDEBE9 /* DTLog.m in Sources */, - 8CBBA0C3DFDF34175052881E /* DTPieProgressIndicator.m in Sources */, - BABE1440BD36E0B6121C37E7 /* DTSmartPagingScrollView.m in Sources */, - 2A64088F7B30AB8D66D31FCA /* DTTiledLayerWithoutFade.m in Sources */, - E85F70199309EDDA8E08EE97 /* DTVersion.m in Sources */, - AA00E4D4700C512E30F86085 /* NSArray+DTError.m in Sources */, - 95907139FB907B518BB798D0 /* NSData+DTCrypto.m in Sources */, - B932407E23FF7E6B2137AB4F /* NSDictionary+DTError.m in Sources */, - 5AC072D88A5C2FA98B280966 /* NSFileWrapper+DTCopying.m in Sources */, - 248131D80A518E57BCECFAAD /* NSMutableArray+DTMoving.m in Sources */, - 7DC82175409C28241005626F /* NSString+DTFormatNumbers.m in Sources */, - ECC3654109CE43F952347D06 /* NSString+DTPaths.m in Sources */, - 060EAF2AA5CC33C820635B68 /* NSString+DTURLEncoding.m in Sources */, - 63CC252A525ADFACFF4FC6F0 /* NSString+DTUtilities.m in Sources */, - A615CFF7314B485DD95F39C2 /* NSURL+DTAppLinks.m in Sources */, - 0A7968C683B1EE9EB3A02339 /* NSURL+DTComparing.m in Sources */, - A7DF30027AC34B70C32909A3 /* NSURL+DTUnshorten.m in Sources */, - DC36D9814E7A721A86AF6A02 /* Pods-DTFoundation-dummy.m in Sources */, - 2B8C990235D7AFF3100C4374 /* UIApplication+DTNetworkActivity.m in Sources */, - 66F9B21B5BEE4FEFDD0BCEEB /* UIImage+DTFoundation.m in Sources */, - CCAF15E7E6C4788FC309C31E /* UIView+DTFoundation.m in Sources */, - 6FDE8E93FEE8AA171A02014E /* UIWebView+DTFoundation.m in Sources */, + EF51ED77B13ABAA7CB745CFA /* MJRefreshComponent.m in Sources */, + 07E1C1882ADC1CE2FA6B0F55 /* MJRefreshConst.m in Sources */, + 150FF6D4FE69C5430F4A310B /* MJRefreshFooter.m in Sources */, + 8F575E11771A529DCF0FE05D /* MJRefreshGifFooter.m in Sources */, + 7D64ADF8423BB40EF10D4ADF /* MJRefreshGifHeader.m in Sources */, + F24C8AF54568D6BEDD06A674 /* MJRefreshHeader.m in Sources */, + 0D2FE5AF1FEFA62248A77602 /* MJRefreshLegendFooter.m in Sources */, + 2BFC12E3A6466342025550CC /* MJRefreshLegendHeader.m in Sources */, + A2676B4ABFF77B64F6E91ED0 /* Pods-MJRefresh-dummy.m in Sources */, + 2BA7FBFBD062CEDAD4E5DC98 /* UIScrollView+MJExtension.m in Sources */, + 648AB936C6937FF4E02FA4BB /* UIScrollView+MJRefresh.m in Sources */, + 9B47C7363665EC5AB1EBCF13 /* UIView+MJExtension.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + F56D9DC8F77D39164C09E72B /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 682FDEED1A6A7C8243E4AF37 /* Pods-STableViewController-dummy.m in Sources */, + 2557188806A5F77BE086DA35 /* STableViewController.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; /* End PBXSourcesBuildPhase section */ /* Begin PBXTargetDependency section */ - 01A6918CAC880C0CFA05F9EC /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-MBProgressHUD"; - target = AD146F7AD0657054CC81D382 /* Pods-MBProgressHUD */; - targetProxy = 3CCEC660E8E9CAEAB524B267 /* PBXContainerItemProxy */; - }; - 296EE32F6B9B2EE1B903964C /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-EGOCache"; - target = 4EE670259BB59F0E2363AE87 /* Pods-EGOCache */; - targetProxy = 65883AAA83F18D799A29B139 /* PBXContainerItemProxy */; - }; - 711A365A05C63AEEAD0436A8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-DTFoundation"; - target = 2598E678E6856E0B69C04891 /* Pods-DTFoundation */; - targetProxy = AFC0AD7DCA72425DB031E7CA /* PBXContainerItemProxy */; - }; - 92973EC390C17AB5B628A830 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-SBJson"; - target = C99BA687A28ABFF62F6E3F0D /* Pods-SBJson */; - targetProxy = F23DB52770F242E8D982B774 /* PBXContainerItemProxy */; - }; - 9538586E631EF116489019D8 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-STableViewController"; - target = 8F2162B4D278000EA5C539EC /* Pods-STableViewController */; - targetProxy = C5BC56DDF687C6869B31438F /* PBXContainerItemProxy */; - }; - A56216DF71385C62C8227BEE /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-AFNetworking"; - target = F696F07F8E87A3481C192E0B /* Pods-AFNetworking */; - targetProxy = E155F501B2D12D978946DE26 /* PBXContainerItemProxy */; - }; - A9AF71720E2DEB73CD994BC7 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-Reachability"; - target = 2AA81FBE6282912F6E7F14F3 /* Pods-Reachability */; - targetProxy = 54CCF98BEF5ED6513B5B4393 /* PBXContainerItemProxy */; - }; - B03C43B72E4080B1AEEF1634 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-DTCoreText"; - target = C28E1D77C35A229E98AC7E98 /* Pods-DTCoreText */; - targetProxy = 32C045B7658EE42955421F2B /* PBXContainerItemProxy */; - }; - C2A29791C14B742A807932E4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-Godzippa"; - target = 712FB3430DDB22E3783751FE /* Pods-Godzippa */; - targetProxy = 3724B37017AC35CA3D25E6AB /* PBXContainerItemProxy */; - }; - C3F16054EA1D9B44007D7BE4 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-DTFoundation"; - target = 2598E678E6856E0B69C04891 /* Pods-DTFoundation */; - targetProxy = A5347C6388300C18253BB2CF /* PBXContainerItemProxy */; - }; - CD2B074E1F5AE3F3C5A4466E /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-SecureUDID"; - target = BAD0B2191D1913493C9537E6 /* Pods-SecureUDID */; - targetProxy = 0EC09724DB940575706D2E79 /* PBXContainerItemProxy */; - }; - D91B92954B76D0060B4FC317 /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - name = "Pods-Mantle"; - target = 547318FF46D8305D2B020EC1 /* Pods-Mantle */; - targetProxy = 623AD2572FDACFA294D7D027 /* PBXContainerItemProxy */; - }; - FFC5A6E8784542451D7FF8E1 /* PBXTargetDependency */ = { + 154A418E45CE656728ED4824 /* PBXTargetDependency */ = { isa = PBXTargetDependency; name = "Pods-SDWebImage"; - target = F99C14BA01B05EDB6951DD66 /* Pods-SDWebImage */; - targetProxy = 712487C8F70EF62492C34C61 /* PBXContainerItemProxy */; + target = 246007DB8F862E25EDD87EC3 /* Pods-SDWebImage */; + targetProxy = 38C945F1F6F6BC52E4CE665E /* PBXContainerItemProxy */; + }; + 252845096E59F9EB7428AE4F /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-SBJson"; + target = D4CB5066DD4B9FA1102C148C /* Pods-SBJson */; + targetProxy = FE0CECC3D1513298672661F4 /* PBXContainerItemProxy */; + }; + 3F8A1F3D4F9BFD03625482CB /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-DTFoundation"; + target = 7AAD259F4548BFB4D392BCE8 /* Pods-DTFoundation */; + targetProxy = 1739FF7FE3B342BF01E503F6 /* PBXContainerItemProxy */; + }; + 7128B2D8BBDDCBAE3EAA17F2 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-EGOCache"; + target = 5516FCAE39C9ADCE88363669 /* Pods-EGOCache */; + targetProxy = 02AD8F81C589D205D29DB38C /* PBXContainerItemProxy */; + }; + 8431BE6D7108C8BA8D2647AA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-STableViewController"; + target = 71A4FA4DD2C39B010FEF1F64 /* Pods-STableViewController */; + targetProxy = B71AED8C508841B62163A219 /* PBXContainerItemProxy */; + }; + 8F55CBBE44981043A059015D /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-MJRefresh"; + target = 3407AC2ADE0234D6024C3225 /* Pods-MJRefresh */; + targetProxy = 8E25F8235F2571BBC5DA927B /* PBXContainerItemProxy */; + }; + 90E0C2F76215FE886E6B8B11 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-DTFoundation"; + target = 7AAD259F4548BFB4D392BCE8 /* Pods-DTFoundation */; + targetProxy = 21120104EC635683D0B4D139 /* PBXContainerItemProxy */; + }; + 9BFF5EB87C6C233A097553C6 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-Mantle"; + target = 5CE1CEB18F375654764E6BEE /* Pods-Mantle */; + targetProxy = 7EB8709494DC6FB10B44B3BE /* PBXContainerItemProxy */; + }; + B060BD778F628281C4729922 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-SecureUDID"; + target = 1C099AB0A914FF873E22025E /* Pods-SecureUDID */; + targetProxy = 4D573A2942931FFD1FAA6C61 /* PBXContainerItemProxy */; + }; + C90B979B0763E58C1ECB1C8C /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-DTCoreText"; + target = F923B086C24D15CF9BD1F307 /* Pods-DTCoreText */; + targetProxy = 42261464B06A0BFF5FA815D5 /* PBXContainerItemProxy */; + }; + D965D94F70BD2ACB62A36195 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-Godzippa"; + target = F564FE7FF3C0FFC99E487782 /* Pods-Godzippa */; + targetProxy = 9F99C0C33B43C989580614FC /* PBXContainerItemProxy */; + }; + DBC36892FC0F6C2C976F8D13 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-Reachability"; + target = F71420DF9662B503D8ACFF36 /* Pods-Reachability */; + targetProxy = B2F393B569A411420FA898BE /* PBXContainerItemProxy */; + }; + E711A3109557099B3AF43935 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-MBProgressHUD"; + target = E4CE1DC0A990D7D49C2F3706 /* Pods-MBProgressHUD */; + targetProxy = 4B2A182BEEF28A31FB75187D /* PBXContainerItemProxy */; + }; + FE39A11FC6BA60A53AD1C0CA /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = "Pods-AFNetworking"; + target = EDBB7D54D3DBA6D222E66ACC /* Pods-AFNetworking */; + targetProxy = AB93C3A70AFE14B9D5948982 /* PBXContainerItemProxy */; }; /* End PBXTargetDependency section */ /* Begin XCBuildConfiguration section */ - 0A5787816C68240BCB2D8EE5 /* Debug */ = { + 0C2CBF088FD9DF20F1B6213B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 9DDCD77C38434B85E8A207DC /* Pods-SBJson-Private.xcconfig */; + baseConfigurationReference = C09B4C9B31BECE0AAEBA4764 /* Pods-DTCoreText-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-SBJson/Pods-SBJson-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Pods-DTCoreText/Pods-DTCoreText-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 6.0; MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; @@ -2604,89 +2790,9 @@ }; name = Debug; }; - 131054128FB42E9CE5D2B768 /* Release */ = { + 11C7803EC7FF4D9C33109F1F /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4558E19FB00C4D59FCABA2E /* Pods-SDWebImage-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-SDWebImage/Pods-SDWebImage-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Release; - }; - 18BB2EF8A7C869743B451190 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 57B209A108DA1DEBCA1C7664 /* Pods-EGOCache-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-EGOCache/Pods-EGOCache-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Release; - }; - 3D7E7B085C7094DDA527521F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9DDCD77C38434B85E8A207DC /* Pods-SBJson-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-SBJson/Pods-SBJson-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Release; - }; - 4CBF7EBED747A264644A340A /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9EB8D530AEC201D861CD005D /* Pods-MBProgressHUD-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - 5562CE937130661795886FC6 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 57B209A108DA1DEBCA1C7664 /* Pods-EGOCache-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-EGOCache/Pods-EGOCache-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - 61BE9619DFC86FEB269CC24B /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F52DE06DB5EB4EC57FE16E34 /* Pods-Mantle-Private.xcconfig */; + baseConfigurationReference = B75F71FC4D5A158E5CBAAE4A /* Pods-Mantle-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/Pods-Mantle/Pods-Mantle-prefix.pch"; @@ -2700,25 +2806,41 @@ }; name = Release; }; - 702E988E5D65C7BDD09BA262 /* Debug */ = { + 1C8EED1B1E9ABE657F0957DC /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CE1973ECA90263EF05256EF0 /* Pods-DTFoundation-Private.xcconfig */; + baseConfigurationReference = CBC0B7619CE8715C3E8F9F05 /* Pods-AFNetworking-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-DTFoundation/Pods-DTFoundation-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Pods-AFNetworking/Pods-AFNetworking-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; + MTL_ENABLE_DEBUG_INFO = NO; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; - name = Debug; + name = Release; }; - 748616771B93BD5D0D2A2EA8 /* Release */ = { + 1E1E1BCFD85E51F02050D7C5 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 2E19EE9166A177F5698F8157 /* Pods-Godzippa-Private.xcconfig */; + baseConfigurationReference = 90370D6EA53E520AF4DD96ED /* Pods-MJRefresh-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-MJRefresh/Pods-MJRefresh-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Release; + }; + 2263A6926872D85E125C8F2C /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 043D98647761B600A32F118F /* Pods-Godzippa-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/Pods-Godzippa/Pods-Godzippa-prefix.pch"; @@ -2732,25 +2854,41 @@ }; name = Release; }; - 8BCAF160E7B19E213DA4042E /* Debug */ = { + 2566E5179B875303CB5F7FAB /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D816D04D8676D443F2953CE2 /* Pods-STableViewController-Private.xcconfig */; + baseConfigurationReference = 9F5D12453238D4D645F3419B /* Pods.release.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-STableViewController/Pods-STableViewController-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Release; + }; + 4072D356A72448FA898FAE76 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 862B69EC37D1700792222296 /* Pods-Reachability-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-Reachability/Pods-Reachability-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = NO; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; - name = Debug; + name = Release; }; - 99E73AB278D75A7AD5477CD0 /* Release */ = { + 475425BBB28BCFFE03565041 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 54E5A78377BD592A76A105F7 /* Pods-DTCoreText-Private.xcconfig */; + baseConfigurationReference = C09B4C9B31BECE0AAEBA4764 /* Pods-DTCoreText-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/Pods-DTCoreText/Pods-DTCoreText-prefix.pch"; @@ -2764,7 +2902,199 @@ }; name = Release; }; - 9DE269F6E1D24AF60E374A7E /* Debug */ = { + 4E9BBADD7ABF5A4622326D70 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 043D98647761B600A32F118F /* Pods-Godzippa-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-Godzippa/Pods-Godzippa-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 5018CC43DB58D73A6AF30AC0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 52247F1042D0F039DD844309 /* Pods-DTFoundation-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-DTFoundation/Pods-DTFoundation-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 639303A0087CE76FA3F2AACB /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DD16954F60332ADFD07CC6DD /* Pods-MBProgressHUD-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 700F470686CD318E831ECF5D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 22DC7F7C26F943CC883DABEC /* Pods-SDWebImage-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-SDWebImage/Pods-SDWebImage-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Release; + }; + 7148599659007ADE41CD4755 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4F71A29574E0B380FE804D63 /* Pods-SecureUDID-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-SecureUDID/Pods-SecureUDID-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 71F83F3AA5A8366D45330C1E /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 90370D6EA53E520AF4DD96ED /* Pods-MJRefresh-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-MJRefresh/Pods-MJRefresh-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 8080777D3306971F8487E07D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = AEDF710B3D9BBB4B3530BDB4 /* Pods-STableViewController-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-STableViewController/Pods-STableViewController-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 8608610D593A775F16F4A0C0 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = CBC0B7619CE8715C3E8F9F05 /* Pods-AFNetworking-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-AFNetworking/Pods-AFNetworking-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + 88A87F73D2B38115C3B80393 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 576D95F49662885C9F88275D /* Pods-EGOCache-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-EGOCache/Pods-EGOCache-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Release; + }; + 8E72BBD2C785ED13A3DC1592 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 52247F1042D0F039DD844309 /* Pods-DTFoundation-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-DTFoundation/Pods-DTFoundation-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Release; + }; + 968F848956BEC49C0D0D8BA0 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 4F71A29574E0B380FE804D63 /* Pods-SecureUDID-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-SecureUDID/Pods-SecureUDID-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Release; + }; + A6C0C256C65BB625A566F9DF /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = DD16954F60332ADFD07CC6DD /* Pods-MBProgressHUD-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = NO; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Release; + }; + AD59A97C310CAA8085904D1A /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -2803,28 +3133,12 @@ }; name = Debug; }; - A3C53042372777659BD39128 /* Release */ = { + AE190827C144AFE0131A0B16 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46BF64EBBCB8E5A1BE2C6F2F /* Pods-AFNetworking-Private.xcconfig */; + baseConfigurationReference = 88E74D6057B5692DADC10F93 /* Pods-SBJson-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-AFNetworking/Pods-AFNetworking-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Release; - }; - A5F5DE6D83DAC747E8FAD370 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 2E19EE9166A177F5698F8157 /* Pods-Godzippa-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-Godzippa/Pods-Godzippa-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Pods-SBJson/Pods-SBJson-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 6.0; MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; @@ -2835,12 +3149,12 @@ }; name = Debug; }; - AEA162DE3EDB544F2A40A50A /* Release */ = { + AE85C6EA9EFF50C2E9F49BFD /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 6F8C4D5398BE62C6328C2625 /* Pods-Reachability-Private.xcconfig */; + baseConfigurationReference = 88E74D6057B5692DADC10F93 /* Pods-SBJson-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-Reachability/Pods-Reachability-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Pods-SBJson/Pods-SBJson-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 6.0; MTL_ENABLE_DEBUG_INFO = NO; OTHER_LDFLAGS = ""; @@ -2851,12 +3165,12 @@ }; name = Release; }; - B0CCAAEE3FD59286578A7CD0 /* Debug */ = { + AF241EFC0DF06C703EEC07FC /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 54E5A78377BD592A76A105F7 /* Pods-DTCoreText-Private.xcconfig */; + baseConfigurationReference = B75F71FC4D5A158E5CBAAE4A /* Pods-Mantle-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-DTCoreText/Pods-DTCoreText-prefix.pch"; + GCC_PREFIX_HEADER = "Target Support Files/Pods-Mantle/Pods-Mantle-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 6.0; MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; @@ -2867,9 +3181,25 @@ }; name = Debug; }; - B274DE574B7A3E3D3AE7A667 /* Debug */ = { + B202258D06331B14EC622D79 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B4558E19FB00C4D59FCABA2E /* Pods-SDWebImage-Private.xcconfig */; + baseConfigurationReference = 576D95F49662885C9F88275D /* Pods-EGOCache-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-EGOCache/Pods-EGOCache-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + D529C85CC77351FE05993355 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 22DC7F7C26F943CC883DABEC /* Pods-SDWebImage-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/Pods-SDWebImage/Pods-SDWebImage-prefix.pch"; @@ -2883,25 +3213,25 @@ }; name = Debug; }; - B4E93EE7186E06A279A82579 /* Debug */ = { + E84F07D663124301A2C2F40B /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 46BF64EBBCB8E5A1BE2C6F2F /* Pods-AFNetworking-Private.xcconfig */; + baseConfigurationReference = 6DED580510E29228D84B181C /* Pods.debug.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-AFNetworking/Pods-AFNetworking-prefix.pch"; IPHONEOS_DEPLOYMENT_TARGET = 6.0; MTL_ENABLE_DEBUG_INFO = YES; OTHER_LDFLAGS = ""; OTHER_LIBTOOLFLAGS = ""; + PODS_ROOT = "$(SRCROOT)"; PRODUCT_NAME = "$(TARGET_NAME)"; SDKROOT = iphoneos; SKIP_INSTALL = YES; }; name = Debug; }; - BFE6B20278343D14B516D9B3 /* Release */ = { + EDCA71E732519343645C1461 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = D816D04D8676D443F2953CE2 /* Pods-STableViewController-Private.xcconfig */; + baseConfigurationReference = AEDF710B3D9BBB4B3530BDB4 /* Pods-STableViewController-Private.xcconfig */; buildSettings = { ENABLE_STRICT_OBJC_MSGSEND = YES; GCC_PREFIX_HEADER = "Target Support Files/Pods-STableViewController/Pods-STableViewController-prefix.pch"; @@ -2915,7 +3245,23 @@ }; name = Release; }; - C0814415DE9E520EB9F370BC /* Release */ = { + F5A3B668A75170676582C59F /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 862B69EC37D1700792222296 /* Pods-Reachability-Private.xcconfig */; + buildSettings = { + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_PREFIX_HEADER = "Target Support Files/Pods-Reachability/Pods-Reachability-prefix.pch"; + IPHONEOS_DEPLOYMENT_TARGET = 6.0; + MTL_ENABLE_DEBUG_INFO = YES; + OTHER_LDFLAGS = ""; + OTHER_LIBTOOLFLAGS = ""; + PRODUCT_NAME = "$(TARGET_NAME)"; + SDKROOT = iphoneos; + SKIP_INSTALL = YES; + }; + name = Debug; + }; + F6719AA61F374A2EA8AE5734 /* Release */ = { isa = XCBuildConfiguration; buildSettings = { ALWAYS_SEARCH_USER_PATHS = NO; @@ -2949,264 +3295,145 @@ }; name = Release; }; - C09418B469E11071AB82E5D5 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5FB3240C6586FC260EA9EAF1 /* Pods-SecureUDID-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-SecureUDID/Pods-SecureUDID-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - C9CB31E2813F48E9AA1D394C /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 6F8C4D5398BE62C6328C2625 /* Pods-Reachability-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-Reachability/Pods-Reachability-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - CB0E1905B65FB4B6D2225346 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = F52DE06DB5EB4EC57FE16E34 /* Pods-Mantle-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-Mantle/Pods-Mantle-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - CB630CD725EB196BE21BE638 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 9EB8D530AEC201D861CD005D /* Pods-MBProgressHUD-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Release; - }; - CE2B93AD4F844E047777732F /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = 5FB3240C6586FC260EA9EAF1 /* Pods-SecureUDID-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-SecureUDID/Pods-SecureUDID-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Release; - }; - E7F75A85FD69ADC1337684B7 /* Debug */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = EB19ACC604D00C92DC9913F2 /* Pods.debug.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = YES; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Debug; - }; - F1BF63310DE3D430813857DF /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = BB7B84049551A243E8592AC1 /* Pods.release.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PODS_ROOT = "$(SRCROOT)"; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Release; - }; - F3DB97B1BDE586B0ED544CF1 /* Release */ = { - isa = XCBuildConfiguration; - baseConfigurationReference = CE1973ECA90263EF05256EF0 /* Pods-DTFoundation-Private.xcconfig */; - buildSettings = { - ENABLE_STRICT_OBJC_MSGSEND = YES; - GCC_PREFIX_HEADER = "Target Support Files/Pods-DTFoundation/Pods-DTFoundation-prefix.pch"; - IPHONEOS_DEPLOYMENT_TARGET = 6.0; - MTL_ENABLE_DEBUG_INFO = NO; - OTHER_LDFLAGS = ""; - OTHER_LIBTOOLFLAGS = ""; - PRODUCT_NAME = "$(TARGET_NAME)"; - SDKROOT = iphoneos; - SKIP_INSTALL = YES; - }; - name = Release; - }; /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ - 0489B26666649B8E8108C4D2 /* Build configuration list for PBXNativeTarget "Pods-MBProgressHUD" */ = { + 0224B1896EF6A709F9E14C24 /* Build configuration list for PBXNativeTarget "Pods-SDWebImage" */ = { isa = XCConfigurationList; buildConfigurations = ( - 4CBF7EBED747A264644A340A /* Debug */, - CB630CD725EB196BE21BE638 /* Release */, + D529C85CC77351FE05993355 /* Debug */, + 700F470686CD318E831ECF5D /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 2DDDBF4F551BA1FFB3EAE008 /* Build configuration list for PBXNativeTarget "Pods-SBJson" */ = { + 0899F51A4DFAE9EA982785B0 /* Build configuration list for PBXNativeTarget "Pods-Mantle" */ = { isa = XCConfigurationList; buildConfigurations = ( - 0A5787816C68240BCB2D8EE5 /* Debug */, - 3D7E7B085C7094DDA527521F /* Release */, + AF241EFC0DF06C703EEC07FC /* Debug */, + 11C7803EC7FF4D9C33109F1F /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 48D0E08F0DF4A3A33D4B46F4 /* Build configuration list for PBXNativeTarget "Pods-AFNetworking" */ = { + 1F5B8925DF3847EB18FB26EB /* Build configuration list for PBXNativeTarget "Pods-STableViewController" */ = { isa = XCConfigurationList; buildConfigurations = ( - B4E93EE7186E06A279A82579 /* Debug */, - A3C53042372777659BD39128 /* Release */, + 8080777D3306971F8487E07D /* Debug */, + EDCA71E732519343645C1461 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 4E3ACB9AC37F0EFE7DC88102 /* Build configuration list for PBXNativeTarget "Pods-SDWebImage" */ = { + 2197E30DCF1893EFFB50C950 /* Build configuration list for PBXNativeTarget "Pods-DTFoundation" */ = { isa = XCConfigurationList; buildConfigurations = ( - B274DE574B7A3E3D3AE7A667 /* Debug */, - 131054128FB42E9CE5D2B768 /* Release */, + 5018CC43DB58D73A6AF30AC0 /* Debug */, + 8E72BBD2C785ED13A3DC1592 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 55D2AB716F17F68D190F0034 /* Build configuration list for PBXNativeTarget "Pods-SecureUDID" */ = { + 41C18C3F490300E87F7137C7 /* Build configuration list for PBXNativeTarget "Pods-EGOCache" */ = { isa = XCConfigurationList; buildConfigurations = ( - C09418B469E11071AB82E5D5 /* Debug */, - CE2B93AD4F844E047777732F /* Release */, + B202258D06331B14EC622D79 /* Debug */, + 88A87F73D2B38115C3B80393 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 58D34F109EB3BEBD2788BC9A /* Build configuration list for PBXProject "Pods" */ = { + A4A57808D4240107C25A4D8C /* Build configuration list for PBXNativeTarget "Pods-Godzippa" */ = { isa = XCConfigurationList; buildConfigurations = ( - 9DE269F6E1D24AF60E374A7E /* Debug */, - C0814415DE9E520EB9F370BC /* Release */, + 4E9BBADD7ABF5A4622326D70 /* Debug */, + 2263A6926872D85E125C8F2C /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 65C10858FCF76FBB9A8AC1B4 /* Build configuration list for PBXNativeTarget "Pods-EGOCache" */ = { + BCDA08264FAD178F9E7902E4 /* Build configuration list for PBXNativeTarget "Pods-DTCoreText" */ = { isa = XCConfigurationList; buildConfigurations = ( - 5562CE937130661795886FC6 /* Debug */, - 18BB2EF8A7C869743B451190 /* Release */, + 0C2CBF088FD9DF20F1B6213B /* Debug */, + 475425BBB28BCFFE03565041 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 69C6D82F26B410219D840BB4 /* Build configuration list for PBXNativeTarget "Pods-DTCoreText" */ = { + BFB9722C75FA0D33477152AA /* Build configuration list for PBXNativeTarget "Pods-SBJson" */ = { isa = XCConfigurationList; buildConfigurations = ( - B0CCAAEE3FD59286578A7CD0 /* Debug */, - 99E73AB278D75A7AD5477CD0 /* Release */, + AE190827C144AFE0131A0B16 /* Debug */, + AE85C6EA9EFF50C2E9F49BFD /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 6A28518B14CD65E36A5BBA1B /* Build configuration list for PBXNativeTarget "Pods-Godzippa" */ = { + C0B3FEA2AA18227702AE86D0 /* Build configuration list for PBXNativeTarget "Pods-SecureUDID" */ = { isa = XCConfigurationList; buildConfigurations = ( - A5F5DE6D83DAC747E8FAD370 /* Debug */, - 748616771B93BD5D0D2A2EA8 /* Release */, + 7148599659007ADE41CD4755 /* Debug */, + 968F848956BEC49C0D0D8BA0 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 7C753D95F144226E7E93981F /* Build configuration list for PBXNativeTarget "Pods-STableViewController" */ = { + C84CA766F0B00CABD15454A1 /* Build configuration list for PBXProject "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 8BCAF160E7B19E213DA4042E /* Debug */, - BFE6B20278343D14B516D9B3 /* Release */, + AD59A97C310CAA8085904D1A /* Debug */, + F6719AA61F374A2EA8AE5734 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 86456AC22EAD67613EF3BC64 /* Build configuration list for PBXNativeTarget "Pods" */ = { + CA3E6F2226233EF570586D0B /* Build configuration list for PBXNativeTarget "Pods-AFNetworking" */ = { isa = XCConfigurationList; buildConfigurations = ( - E7F75A85FD69ADC1337684B7 /* Debug */, - F1BF63310DE3D430813857DF /* Release */, + 8608610D593A775F16F4A0C0 /* Debug */, + 1C8EED1B1E9ABE657F0957DC /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 8D41402F72882E179EBCAFCA /* Build configuration list for PBXNativeTarget "Pods-Mantle" */ = { + CD5B0112664C365774FBF164 /* Build configuration list for PBXNativeTarget "Pods-MJRefresh" */ = { isa = XCConfigurationList; buildConfigurations = ( - CB0E1905B65FB4B6D2225346 /* Debug */, - 61BE9619DFC86FEB269CC24B /* Release */, + 71F83F3AA5A8366D45330C1E /* Debug */, + 1E1E1BCFD85E51F02050D7C5 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - 941145061A1016CE1A236F52 /* Build configuration list for PBXNativeTarget "Pods-Reachability" */ = { + CEA819D71063BA6A3869EF7E /* Build configuration list for PBXNativeTarget "Pods-Reachability" */ = { isa = XCConfigurationList; buildConfigurations = ( - C9CB31E2813F48E9AA1D394C /* Debug */, - AEA162DE3EDB544F2A40A50A /* Release */, + F5A3B668A75170676582C59F /* Debug */, + 4072D356A72448FA898FAE76 /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; - D6A8CCD16FC0004873783B34 /* Build configuration list for PBXNativeTarget "Pods-DTFoundation" */ = { + DC81AD117F48A5D8D26DFB2F /* Build configuration list for PBXNativeTarget "Pods" */ = { isa = XCConfigurationList; buildConfigurations = ( - 702E988E5D65C7BDD09BA262 /* Debug */, - F3DB97B1BDE586B0ED544CF1 /* Release */, + E84F07D663124301A2C2F40B /* Debug */, + 2566E5179B875303CB5F7FAB /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E0312F5DB5390546EC07C28D /* Build configuration list for PBXNativeTarget "Pods-MBProgressHUD" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 639303A0087CE76FA3F2AACB /* Debug */, + A6C0C256C65BB625A566F9DF /* Release */, ); defaultConfigurationIsVisible = 0; defaultConfigurationName = Release; }; /* End XCConfigurationList section */ }; - rootObject = 7DD05114B399CF5F8BBA9391 /* Project object */; + rootObject = 90BC916F6B727ED9575295CB /* Project object */; } diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-AFNetworking.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-AFNetworking.xcscheme index 6f9531c..b493436 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-AFNetworking.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-AFNetworking.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-DTCoreText.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-DTCoreText.xcscheme index 1ee4a47..d56aae6 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-DTCoreText.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-DTCoreText.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-DTFoundation.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-DTFoundation.xcscheme index 543ceb9..be6ec1d 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-DTFoundation.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-DTFoundation.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-EGOCache.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-EGOCache.xcscheme index 2f1c0fb..8e5244c 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-EGOCache.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-EGOCache.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Godzippa.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Godzippa.xcscheme index 190f5c8..93ab1df 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Godzippa.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Godzippa.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-MBProgressHUD.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-MBProgressHUD.xcscheme index 5a65885..e102f5a 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-MBProgressHUD.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-MBProgressHUD.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-MJRefresh.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-MJRefresh.xcscheme new file mode 100644 index 0000000..ec8dd3c --- /dev/null +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-MJRefresh.xcscheme @@ -0,0 +1,59 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Mantle.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Mantle.xcscheme index f310c73..686d24b 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Mantle.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Mantle.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Reachability.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Reachability.xcscheme index df605d2..163e938 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Reachability.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-Reachability.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SBJson.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SBJson.xcscheme index a5e6c61..0a0869c 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SBJson.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SBJson.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SDWebImage.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SDWebImage.xcscheme index e9bb474..f560f0c 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SDWebImage.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SDWebImage.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-STableViewController.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-STableViewController.xcscheme index 7249b4b..f5508ec 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-STableViewController.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-STableViewController.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SecureUDID.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SecureUDID.xcscheme index f67527a..038f952 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SecureUDID.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods-SecureUDID.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods.xcscheme b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods.xcscheme index 1206391..92203c6 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods.xcscheme +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/Pods.xcscheme @@ -14,7 +14,7 @@ buildForAnalyzing = "YES"> diff --git a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/xcschememanagement.plist b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/xcschememanagement.plist index 7681d08..e53ed8c 100644 --- a/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/xcschememanagement.plist +++ b/Pods/Pods.xcodeproj/xcuserdata/xmfish.xcuserdatad/xcschemes/xcschememanagement.plist @@ -34,6 +34,11 @@ isShown + Pods-MJRefresh.xcscheme + + isShown + + Pods-Mantle.xcscheme isShown @@ -72,67 +77,72 @@ SuppressBuildableAutocreation - 2598E678E6856E0B69C04891 + 14D13089E11DA69B9989B5D7 primary - 2AA81FBE6282912F6E7F14F3 + 1C099AB0A914FF873E22025E primary - 4EE670259BB59F0E2363AE87 + 246007DB8F862E25EDD87EC3 primary - 547318FF46D8305D2B020EC1 + 3407AC2ADE0234D6024C3225 primary - 712FB3430DDB22E3783751FE + 5516FCAE39C9ADCE88363669 primary - 8F2162B4D278000EA5C539EC + 5CE1CEB18F375654764E6BEE primary - AD146F7AD0657054CC81D382 + 71A4FA4DD2C39B010FEF1F64 primary - AD56501F7D1542D4DB1414FC + 7AAD259F4548BFB4D392BCE8 primary - BAD0B2191D1913493C9537E6 + D4CB5066DD4B9FA1102C148C primary - C28E1D77C35A229E98AC7E98 + E4CE1DC0A990D7D49C2F3706 primary - C99BA687A28ABFF62F6E3F0D + EDBB7D54D3DBA6D222E66ACC primary - F696F07F8E87A3481C192E0B + F564FE7FF3C0FFC99E487782 primary - F99C14BA01B05EDB6951DD66 + F71420DF9662B503D8ACFF36 + + primary + + + F923B086C24D15CF9BD1F307 primary diff --git a/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-Private.xcconfig b/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-Private.xcconfig index ea8fd4a..61dd248 100644 --- a/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-Private.xcconfig +++ b/Pods/Target Support Files/Pods-AFNetworking/Pods-AFNetworking-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-AFNetworking.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/AFNetworking" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/AFNetworking" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = ${PODS_AFNETWORKING_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-DTCoreText/Pods-DTCoreText-Private.xcconfig b/Pods/Target Support Files/Pods-DTCoreText/Pods-DTCoreText-Private.xcconfig index eb6b444..3fc2391 100644 --- a/Pods/Target Support Files/Pods-DTCoreText/Pods-DTCoreText-Private.xcconfig +++ b/Pods/Target Support Files/Pods-DTCoreText/Pods-DTCoreText-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-DTCoreText.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/DTCoreText" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/DTCoreText" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = ${PODS_DTCORETEXT_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-DTFoundation/Pods-DTFoundation-Private.xcconfig b/Pods/Target Support Files/Pods-DTFoundation/Pods-DTFoundation-Private.xcconfig index c984df4..282bfd4 100644 --- a/Pods/Target Support Files/Pods-DTFoundation/Pods-DTFoundation-Private.xcconfig +++ b/Pods/Target Support Files/Pods-DTFoundation/Pods-DTFoundation-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-DTFoundation.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/DTFoundation" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" ${PODS_DTFOUNDATION_HEADER_SEARCH_PATHS} +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/DTFoundation" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" ${PODS_DTFOUNDATION_HEADER_SEARCH_PATHS} OTHER_LDFLAGS = ${PODS_DTFOUNDATION_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-EGOCache/Pods-EGOCache-Private.xcconfig b/Pods/Target Support Files/Pods-EGOCache/Pods-EGOCache-Private.xcconfig index 64bebb9..d927088 100644 --- a/Pods/Target Support Files/Pods-EGOCache/Pods-EGOCache-Private.xcconfig +++ b/Pods/Target Support Files/Pods-EGOCache/Pods-EGOCache-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-EGOCache.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EGOCache" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/EGOCache" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Godzippa/Pods-Godzippa-Private.xcconfig b/Pods/Target Support Files/Pods-Godzippa/Pods-Godzippa-Private.xcconfig index 5b078c2..e578b85 100644 --- a/Pods/Target Support Files/Pods-Godzippa/Pods-Godzippa-Private.xcconfig +++ b/Pods/Target Support Files/Pods-Godzippa/Pods-Godzippa-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-Godzippa.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Godzippa" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Godzippa" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = ${PODS_GODZIPPA_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-Private.xcconfig b/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-Private.xcconfig index 976c88e..bc1c379 100644 --- a/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-Private.xcconfig +++ b/Pods/Target Support Files/Pods-MBProgressHUD/Pods-MBProgressHUD-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-MBProgressHUD.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/MBProgressHUD" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/MBProgressHUD" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = ${PODS_MBPROGRESSHUD_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh-Private.xcconfig b/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh-Private.xcconfig new file mode 100644 index 0000000..2b398bb --- /dev/null +++ b/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh-Private.xcconfig @@ -0,0 +1,6 @@ +#include "Pods-MJRefresh.xcconfig" +GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/MJRefresh" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +OTHER_LDFLAGS = -ObjC +PODS_ROOT = ${SRCROOT} +SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh-dummy.m b/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh-dummy.m new file mode 100644 index 0000000..cc6a260 --- /dev/null +++ b/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh-dummy.m @@ -0,0 +1,5 @@ +#import +@interface PodsDummy_Pods_MJRefresh : NSObject +@end +@implementation PodsDummy_Pods_MJRefresh +@end diff --git a/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh-prefix.pch b/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh-prefix.pch new file mode 100644 index 0000000..95cf11d --- /dev/null +++ b/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh-prefix.pch @@ -0,0 +1,5 @@ +#ifdef __OBJC__ +#import +#endif + +#import "Pods-environment.h" diff --git a/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh.xcconfig b/Pods/Target Support Files/Pods-MJRefresh/Pods-MJRefresh.xcconfig new file mode 100644 index 0000000..e69de29 diff --git a/Pods/Target Support Files/Pods-Mantle/Pods-Mantle-Private.xcconfig b/Pods/Target Support Files/Pods-Mantle/Pods-Mantle-Private.xcconfig index f052d12..241f79e 100644 --- a/Pods/Target Support Files/Pods-Mantle/Pods-Mantle-Private.xcconfig +++ b/Pods/Target Support Files/Pods-Mantle/Pods-Mantle-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-Mantle.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Mantle" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Mantle" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = ${PODS_MANTLE_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-Reachability/Pods-Reachability-Private.xcconfig b/Pods/Target Support Files/Pods-Reachability/Pods-Reachability-Private.xcconfig index 5ae6a66..f99b687 100644 --- a/Pods/Target Support Files/Pods-Reachability/Pods-Reachability-Private.xcconfig +++ b/Pods/Target Support Files/Pods-Reachability/Pods-Reachability-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-Reachability.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Reachability" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/Reachability" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = ${PODS_REACHABILITY_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-SBJson/Pods-SBJson-Private.xcconfig b/Pods/Target Support Files/Pods-SBJson/Pods-SBJson-Private.xcconfig index d066860..4b8e057 100644 --- a/Pods/Target Support Files/Pods-SBJson/Pods-SBJson-Private.xcconfig +++ b/Pods/Target Support Files/Pods-SBJson/Pods-SBJson-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-SBJson.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SBJson" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SBJson" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-SDWebImage/Pods-SDWebImage-Private.xcconfig b/Pods/Target Support Files/Pods-SDWebImage/Pods-SDWebImage-Private.xcconfig index 01ebec7..8958598 100644 --- a/Pods/Target Support Files/Pods-SDWebImage/Pods-SDWebImage-Private.xcconfig +++ b/Pods/Target Support Files/Pods-SDWebImage/Pods-SDWebImage-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-SDWebImage.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SDWebImage" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SDWebImage" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = ${PODS_SDWEBIMAGE_OTHER_LDFLAGS} -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-STableViewController/Pods-STableViewController-Private.xcconfig b/Pods/Target Support Files/Pods-STableViewController/Pods-STableViewController-Private.xcconfig index 10648b4..0876c9e 100644 --- a/Pods/Target Support Files/Pods-STableViewController/Pods-STableViewController-Private.xcconfig +++ b/Pods/Target Support Files/Pods-STableViewController/Pods-STableViewController-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-STableViewController.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/STableViewController" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/STableViewController" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods-SecureUDID/Pods-SecureUDID-Private.xcconfig b/Pods/Target Support Files/Pods-SecureUDID/Pods-SecureUDID-Private.xcconfig index c9739c0..b898e79 100644 --- a/Pods/Target Support Files/Pods-SecureUDID/Pods-SecureUDID-Private.xcconfig +++ b/Pods/Target Support Files/Pods-SecureUDID/Pods-SecureUDID-Private.xcconfig @@ -1,6 +1,6 @@ #include "Pods-SecureUDID.xcconfig" GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SecureUDID" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" +HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Private" "${PODS_ROOT}/Headers/Private/SecureUDID" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" OTHER_LDFLAGS = -ObjC PODS_ROOT = ${SRCROOT} SKIP_INSTALL = YES \ No newline at end of file diff --git a/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown b/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown index 256334d..be90cc9 100644 --- a/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown +++ b/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown @@ -144,6 +144,29 @@ 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. +## MJRefresh + +Copyright (c) 2013-2015 MJRefresh (https://github.com/CoderMJLee/MJRefresh) + +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. + + ## Mantle **Copyright (c) 2012 - 2014, GitHub, Inc.** diff --git a/Pods/Target Support Files/Pods/Pods-acknowledgements.plist b/Pods/Target Support Files/Pods/Pods-acknowledgements.plist index 5dc4c54..1970a95 100644 --- a/Pods/Target Support Files/Pods/Pods-acknowledgements.plist +++ b/Pods/Target Support Files/Pods/Pods-acknowledgements.plist @@ -179,6 +179,33 @@ THE SOFTWARE. Type PSGroupSpecifier + + FooterText + Copyright (c) 2013-2015 MJRefresh (https://github.com/CoderMJLee/MJRefresh) + +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. + + Title + MJRefresh + Type + PSGroupSpecifier + FooterText **Copyright (c) 2012 - 2014, GitHub, Inc.** diff --git a/Pods/Target Support Files/Pods/Pods-environment.h b/Pods/Target Support Files/Pods/Pods-environment.h index 7894b54..fdeba9e 100644 --- a/Pods/Target Support Files/Pods/Pods-environment.h +++ b/Pods/Target Support Files/Pods/Pods-environment.h @@ -96,6 +96,12 @@ #define COCOAPODS_VERSION_MINOR_MBProgressHUD 9 #define COCOAPODS_VERSION_PATCH_MBProgressHUD 1 +// MJRefresh +#define COCOAPODS_POD_AVAILABLE_MJRefresh +#define COCOAPODS_VERSION_MAJOR_MJRefresh 1 +#define COCOAPODS_VERSION_MINOR_MJRefresh 4 +#define COCOAPODS_VERSION_PATCH_MJRefresh 1 + // Mantle #define COCOAPODS_POD_AVAILABLE_Mantle #define COCOAPODS_VERSION_MAJOR_Mantle 1 diff --git a/Pods/Target Support Files/Pods/Pods-resources.sh b/Pods/Target Support Files/Pods/Pods-resources.sh index 0adecdd..b39030f 100755 --- a/Pods/Target Support Files/Pods/Pods-resources.sh +++ b/Pods/Target Support Files/Pods/Pods-resources.sh @@ -50,6 +50,12 @@ install_resource() ;; esac } +if [[ "$CONFIGURATION" == "Debug" ]]; then + install_resource "MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.bundle" +fi +if [[ "$CONFIGURATION" == "Release" ]]; then + install_resource "MJRefresh/MJRefreshExample/MJRefreshExample/MJRefresh/MJRefresh.bundle" +fi rsync -avr --copy-links --no-relative --exclude '*/.svn/*' --files-from="$RESOURCES_TO_COPY" / "${CONFIGURATION_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}" if [[ "${ACTION}" == "install" ]]; then diff --git a/Pods/Target Support Files/Pods/Pods.debug.xcconfig b/Pods/Target Support Files/Pods/Pods.debug.xcconfig index f2183b4..e2af7ac 100644 --- a/Pods/Target Support Files/Pods/Pods.debug.xcconfig +++ b/Pods/Target Support Files/Pods/Pods.debug.xcconfig @@ -1,6 +1,6 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" "$(SDKROOT)/usr/include/libxml2" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AFNetworking" -isystem "${PODS_ROOT}/Headers/Public/DTCoreText" -isystem "${PODS_ROOT}/Headers/Public/DTFoundation" -isystem "${PODS_ROOT}/Headers/Public/EGOCache" -isystem "${PODS_ROOT}/Headers/Public/Godzippa" -isystem "${PODS_ROOT}/Headers/Public/MBProgressHUD" -isystem "${PODS_ROOT}/Headers/Public/Mantle" -isystem "${PODS_ROOT}/Headers/Public/Reachability" -isystem "${PODS_ROOT}/Headers/Public/SBJson" -isystem "${PODS_ROOT}/Headers/Public/SDWebImage" -isystem "${PODS_ROOT}/Headers/Public/STableViewController" -isystem "${PODS_ROOT}/Headers/Public/SecureUDID" -OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-AFNetworking" -l"Pods-DTCoreText" -l"Pods-DTFoundation" -l"Pods-EGOCache" -l"Pods-Godzippa" -l"Pods-MBProgressHUD" -l"Pods-Mantle" -l"Pods-Reachability" -l"Pods-SBJson" -l"Pods-SDWebImage" -l"Pods-STableViewController" -l"Pods-SecureUDID" -l"xml2" -l"z" -framework "CoreGraphics" -framework "CoreText" -framework "Foundation" -framework "ImageIO" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "SystemConfiguration" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" "$(SDKROOT)/usr/include/libxml2" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AFNetworking" -isystem "${PODS_ROOT}/Headers/Public/DTCoreText" -isystem "${PODS_ROOT}/Headers/Public/DTFoundation" -isystem "${PODS_ROOT}/Headers/Public/EGOCache" -isystem "${PODS_ROOT}/Headers/Public/Godzippa" -isystem "${PODS_ROOT}/Headers/Public/MBProgressHUD" -isystem "${PODS_ROOT}/Headers/Public/MJRefresh" -isystem "${PODS_ROOT}/Headers/Public/Mantle" -isystem "${PODS_ROOT}/Headers/Public/Reachability" -isystem "${PODS_ROOT}/Headers/Public/SBJson" -isystem "${PODS_ROOT}/Headers/Public/SDWebImage" -isystem "${PODS_ROOT}/Headers/Public/STableViewController" -isystem "${PODS_ROOT}/Headers/Public/SecureUDID" +OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-AFNetworking" -l"Pods-DTCoreText" -l"Pods-DTFoundation" -l"Pods-EGOCache" -l"Pods-Godzippa" -l"Pods-MBProgressHUD" -l"Pods-MJRefresh" -l"Pods-Mantle" -l"Pods-Reachability" -l"Pods-SBJson" -l"Pods-SDWebImage" -l"Pods-STableViewController" -l"Pods-SecureUDID" -l"xml2" -l"z" -framework "CoreGraphics" -framework "CoreText" -framework "Foundation" -framework "ImageIO" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "SystemConfiguration" OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file diff --git a/Pods/Target Support Files/Pods/Pods.release.xcconfig b/Pods/Target Support Files/Pods/Pods.release.xcconfig index f2183b4..e2af7ac 100644 --- a/Pods/Target Support Files/Pods/Pods.release.xcconfig +++ b/Pods/Target Support Files/Pods/Pods.release.xcconfig @@ -1,6 +1,6 @@ GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 -HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" "$(SDKROOT)/usr/include/libxml2" -OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AFNetworking" -isystem "${PODS_ROOT}/Headers/Public/DTCoreText" -isystem "${PODS_ROOT}/Headers/Public/DTFoundation" -isystem "${PODS_ROOT}/Headers/Public/EGOCache" -isystem "${PODS_ROOT}/Headers/Public/Godzippa" -isystem "${PODS_ROOT}/Headers/Public/MBProgressHUD" -isystem "${PODS_ROOT}/Headers/Public/Mantle" -isystem "${PODS_ROOT}/Headers/Public/Reachability" -isystem "${PODS_ROOT}/Headers/Public/SBJson" -isystem "${PODS_ROOT}/Headers/Public/SDWebImage" -isystem "${PODS_ROOT}/Headers/Public/STableViewController" -isystem "${PODS_ROOT}/Headers/Public/SecureUDID" -OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-AFNetworking" -l"Pods-DTCoreText" -l"Pods-DTFoundation" -l"Pods-EGOCache" -l"Pods-Godzippa" -l"Pods-MBProgressHUD" -l"Pods-Mantle" -l"Pods-Reachability" -l"Pods-SBJson" -l"Pods-SDWebImage" -l"Pods-STableViewController" -l"Pods-SecureUDID" -l"xml2" -l"z" -framework "CoreGraphics" -framework "CoreText" -framework "Foundation" -framework "ImageIO" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "SystemConfiguration" +HEADER_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/AFNetworking" "${PODS_ROOT}/Headers/Public/DTCoreText" "${PODS_ROOT}/Headers/Public/DTFoundation" "${PODS_ROOT}/Headers/Public/EGOCache" "${PODS_ROOT}/Headers/Public/Godzippa" "${PODS_ROOT}/Headers/Public/MBProgressHUD" "${PODS_ROOT}/Headers/Public/MJRefresh" "${PODS_ROOT}/Headers/Public/Mantle" "${PODS_ROOT}/Headers/Public/Reachability" "${PODS_ROOT}/Headers/Public/SBJson" "${PODS_ROOT}/Headers/Public/SDWebImage" "${PODS_ROOT}/Headers/Public/STableViewController" "${PODS_ROOT}/Headers/Public/SecureUDID" "$(SDKROOT)/usr/include/libxml2" +OTHER_CFLAGS = $(inherited) -isystem "${PODS_ROOT}/Headers/Public" -isystem "${PODS_ROOT}/Headers/Public/AFNetworking" -isystem "${PODS_ROOT}/Headers/Public/DTCoreText" -isystem "${PODS_ROOT}/Headers/Public/DTFoundation" -isystem "${PODS_ROOT}/Headers/Public/EGOCache" -isystem "${PODS_ROOT}/Headers/Public/Godzippa" -isystem "${PODS_ROOT}/Headers/Public/MBProgressHUD" -isystem "${PODS_ROOT}/Headers/Public/MJRefresh" -isystem "${PODS_ROOT}/Headers/Public/Mantle" -isystem "${PODS_ROOT}/Headers/Public/Reachability" -isystem "${PODS_ROOT}/Headers/Public/SBJson" -isystem "${PODS_ROOT}/Headers/Public/SDWebImage" -isystem "${PODS_ROOT}/Headers/Public/STableViewController" -isystem "${PODS_ROOT}/Headers/Public/SecureUDID" +OTHER_LDFLAGS = $(inherited) -ObjC -l"Pods-AFNetworking" -l"Pods-DTCoreText" -l"Pods-DTFoundation" -l"Pods-EGOCache" -l"Pods-Godzippa" -l"Pods-MBProgressHUD" -l"Pods-MJRefresh" -l"Pods-Mantle" -l"Pods-Reachability" -l"Pods-SBJson" -l"Pods-SDWebImage" -l"Pods-STableViewController" -l"Pods-SecureUDID" -l"xml2" -l"z" -framework "CoreGraphics" -framework "CoreText" -framework "Foundation" -framework "ImageIO" -framework "MediaPlayer" -framework "MobileCoreServices" -framework "QuartzCore" -framework "Security" -framework "SystemConfiguration" OTHER_LIBTOOLFLAGS = $(OTHER_LDFLAGS) PODS_ROOT = ${SRCROOT}/Pods \ No newline at end of file