JLChen
2021-02-03 4715e99a9be1c50d8ec31f594af9ebde18647c94
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
// !$*UTF8*$!
{
    archiveVersion = 1;
    classes = {
    };
    objectVersion = 50;
    objects = {
 
/* Begin PBXBuildFile section */
        B9BC92FF25C0FC3500C024FE /* EZSDK.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC92FE25C0FC3500C024FE /* EZSDK.m */; };
        B9BC930025C0FC3500C024FE /* EZSDK.h in CopyFiles */ = {isa = PBXBuildFile; fileRef = B9BC92FD25C0FC3500C024FE /* EZSDK.h */; };
        B9BC956225C0FC6C00C024FE /* DeviceInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC94D125C0FC6B00C024FE /* DeviceInfo.m */; };
        B9BC999B25C0FFBD00C024FE /* UITableView+FDTemplateLayoutCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC97D825C0FFB600C024FE /* UITableView+FDTemplateLayoutCell.m */; };
        B9BC999C25C0FFBD00C024FE /* UITableView+FDKeyedHeightCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC97DA25C0FFB600C024FE /* UITableView+FDKeyedHeightCache.m */; };
        B9BC999D25C0FFBD00C024FE /* UITableView+FDTemplateLayoutCellDebug.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC97DB25C0FFB600C024FE /* UITableView+FDTemplateLayoutCellDebug.m */; };
        B9BC999E25C0FFBD00C024FE /* UITableView+FDIndexPathHeightCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC97DC25C0FFB600C024FE /* UITableView+FDIndexPathHeightCache.m */; };
        B9BC999F25C0FFBD00C024FE /* DALabeledCircularProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC97DF25C0FFB600C024FE /* DALabeledCircularProgressView.m */; };
        B9BC99A025C0FFBD00C024FE /* DACircularProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC97E025C0FFB600C024FE /* DACircularProgressView.m */; };
        B9BC99A125C0FFBD00C024FE /* DDCollectionViewFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC97E525C0FFB600C024FE /* DDCollectionViewFlowLayout.m */; };
        B9BC99B425C0FFBD00C024FE /* UIView+Toast.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC981525C0FFB600C024FE /* UIView+Toast.m */; };
        B9BC99B525C0FFBD00C024FE /* MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC981B25C0FFB700C024FE /* MWPhotoBrowser.m */; };
        B9BC99B625C0FFBD00C024FE /* MWCaptionView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC981C25C0FFB700C024FE /* MWCaptionView.m */; };
        B9BC99B725C0FFBD00C024FE /* MWZoomingScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC981F25C0FFB700C024FE /* MWZoomingScrollView.m */; };
        B9BC99B825C0FFBD00C024FE /* UIImage+MWPhotoBrowser.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC982025C0FFB700C024FE /* UIImage+MWPhotoBrowser.m */; };
        B9BC99B925C0FFBD00C024FE /* MWTapDetectingImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC982225C0FFB700C024FE /* MWTapDetectingImageView.m */; };
        B9BC99BA25C0FFBD00C024FE /* MWPhoto.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC982325C0FFB700C024FE /* MWPhoto.m */; };
        B9BC99BB25C0FFBD00C024FE /* MWTapDetectingView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC982425C0FFB700C024FE /* MWTapDetectingView.m */; };
        B9BC99BC25C0FFBD00C024FE /* MWGridViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC982625C0FFB700C024FE /* MWGridViewController.m */; };
        B9BC99BD25C0FFBD00C024FE /* MWGridCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC982925C0FFB700C024FE /* MWGridCell.m */; };
        B9BC99C825C0FFBD00C024FE /* UIView+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC984825C0FFB700C024FE /* UIView+DDKit.m */; };
        B9BC99C925C0FFBD00C024FE /* UISegmentedControl+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC984925C0FFB700C024FE /* UISegmentedControl+DDKit.m */; };
        B9BC99CA25C0FFBD00C024FE /* UIImageView+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC984C25C0FFB700C024FE /* UIImageView+DDKit.m */; };
        B9BC99CB25C0FFBD00C024FE /* UILabel+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC984F25C0FFB700C024FE /* UILabel+DDKit.m */; };
        B9BC99CC25C0FFBD00C024FE /* UIColor+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC985125C0FFB700C024FE /* UIColor+DDKit.m */; };
        B9BC99CD25C0FFBD00C024FE /* NSArray+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC985225C0FFB700C024FE /* NSArray+DDKit.m */; };
        B9BC99CE25C0FFBD00C024FE /* NSString+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC985625C0FFB700C024FE /* NSString+DDKit.m */; };
        B9BC99CF25C0FFBD00C024FE /* UIImage+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC985725C0FFB700C024FE /* UIImage+DDKit.m */; };
        B9BC99D025C0FFBD00C024FE /* UIViewController+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC985925C0FFB700C024FE /* UIViewController+DDKit.m */; };
        B9BC99D125C0FFBD00C024FE /* NSDate+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC985B25C0FFB700C024FE /* NSDate+DDKit.m */; };
        B9BC99D225C0FFBD00C024FE /* UIButton+DDKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC985D25C0FFB700C024FE /* UIButton+DDKit.m */; };
        B9BC99D325C0FFBD00C024FE /* UIAlertView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC986125C0FFB700C024FE /* UIAlertView+AFNetworking.m */; };
        B9BC99D425C0FFBD00C024FE /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC986225C0FFB700C024FE /* UIProgressView+AFNetworking.m */; };
        B9BC99D525C0FFBD00C024FE /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC986425C0FFB700C024FE /* UIRefreshControl+AFNetworking.m */; };
        B9BC99D625C0FFBD00C024FE /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC986625C0FFB800C024FE /* AFNetworkActivityIndicatorManager.m */; };
        B9BC99D725C0FFBD00C024FE /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC986B25C0FFB800C024FE /* UIImageView+AFNetworking.m */; };
        B9BC99D825C0FFBD00C024FE /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC986E25C0FFB800C024FE /* UIButton+AFNetworking.m */; };
        B9BC99D925C0FFBD00C024FE /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC986F25C0FFB800C024FE /* UIActivityIndicatorView+AFNetworking.m */; };
        B9BC99DA25C0FFBD00C024FE /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC987925C0FFB800C024FE /* AFURLResponseSerialization.m */; };
        B9BC99DB25C0FFBD00C024FE /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC987A25C0FFB800C024FE /* AFHTTPSessionManager.m */; };
        B9BC99DC25C0FFBD00C024FE /* AFURLConnectionOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC987B25C0FFB800C024FE /* AFURLConnectionOperation.m */; };
        B9BC99DD25C0FFBD00C024FE /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC987D25C0FFB800C024FE /* AFURLSessionManager.m */; };
        B9BC99DE25C0FFBD00C024FE /* AFHTTPRequestOperationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC987E25C0FFB800C024FE /* AFHTTPRequestOperationManager.m */; };
        B9BC99DF25C0FFBD00C024FE /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC987F25C0FFB800C024FE /* AFURLRequestSerialization.m */; };
        B9BC99E025C0FFBD00C024FE /* AFHTTPRequestOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC988025C0FFB800C024FE /* AFHTTPRequestOperation.m */; };
        B9BC99E125C0FFBD00C024FE /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC988225C0FFB800C024FE /* AFNetworkReachabilityManager.m */; };
        B9BC99E225C0FFBD00C024FE /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC988325C0FFB800C024FE /* AFSecurityPolicy.m */; };
        B9BC99E325C0FFBD00C024FE /* MBProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC988625C0FFB800C024FE /* MBProgressHUD.m */; };
        B9BC99E425C0FFBD00C024FE /* UIImage+WebP.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC988925C0FFB800C024FE /* UIImage+WebP.m */; };
        B9BC99E525C0FFBD00C024FE /* MKAnnotationView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC988A25C0FFB800C024FE /* MKAnnotationView+WebCache.m */; };
        B9BC99E625C0FFBD00C024FE /* SDWebImageManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC988D25C0FFB800C024FE /* SDWebImageManager.m */; };
        B9BC99E725C0FFBD00C024FE /* SDWebImageDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC988E25C0FFB800C024FE /* SDWebImageDecoder.m */; };
        B9BC99E825C0FFBD00C024FE /* UIImageView+HighlightedWebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC989025C0FFB800C024FE /* UIImageView+HighlightedWebCache.m */; };
        B9BC99E925C0FFBD00C024FE /* SDWebImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC989225C0FFB800C024FE /* SDWebImageDownloader.m */; };
        B9BC99EA25C0FFBD00C024FE /* UIImage+GIF.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC989325C0FFB800C024FE /* UIImage+GIF.m */; };
        B9BC99EB25C0FFBD00C024FE /* UIImage+MultiFormat.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC989525C0FFB800C024FE /* UIImage+MultiFormat.m */; };
        B9BC99EC25C0FFBD00C024FE /* SDWebImageCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC989625C0FFB800C024FE /* SDWebImageCompat.m */; };
        B9BC99ED25C0FFBD00C024FE /* SDWebImagePrefetcher.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC989725C0FFB800C024FE /* SDWebImagePrefetcher.m */; };
        B9BC99EE25C0FFBD00C024FE /* SDImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC989B25C0FFB800C024FE /* SDImageCache.m */; };
        B9BC99EF25C0FFBD00C024FE /* SDWebImageDownloaderOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC989D25C0FFB800C024FE /* SDWebImageDownloaderOperation.m */; };
        B9BC99F025C0FFBD00C024FE /* NSData+ImageContentType.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC98A025C0FFB800C024FE /* NSData+ImageContentType.m */; };
        B9BC99F125C0FFBD00C024FE /* UIImageView+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC98A125C0FFB800C024FE /* UIImageView+WebCache.m */; };
        B9BC99F225C0FFBD00C024FE /* UIView+WebCacheOperation.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC98A425C0FFB800C024FE /* UIView+WebCacheOperation.m */; };
        B9BC99F325C0FFBD00C024FE /* UIButton+WebCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC98A825C0FFB800C024FE /* UIButton+WebCache.m */; };
        B9BC99F425C0FFBD00C024FE /* libcrypto.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B9BC98FD25C0FFBA00C024FE /* libcrypto.a */; };
        B9BC99F525C0FFBD00C024FE /* libssl.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B9BC98FE25C0FFBA00C024FE /* libssl.a */; };
        B9BC99F625C0FFBD00C024FE /* Aspects.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC990125C0FFBA00C024FE /* Aspects.m */; };
        B9BC99F725C0FFBD00C024FE /* EZQRView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC990425C0FFBA00C024FE /* EZQRView.m */; };
        B9BC99F825C0FFBD00C024FE /* EZCustomTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC990925C0FFBA00C024FE /* EZCustomTableView.m */; };
        B9BC99F925C0FFBD00C024FE /* UIImageView+EzvizOpenSDK.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC990A25C0FFBA00C024FE /* UIImageView+EzvizOpenSDK.m */; };
        B9BC99FA25C0FFBD00C024FE /* Toast+UIView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC990B25C0FFBA00C024FE /* Toast+UIView.m */; settings = {COMPILER_FLAGS = "-fno-objc-arc"; }; };
        B9BC99FB25C0FFBD00C024FE /* EZRecordCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC990D25C0FFBA00C024FE /* EZRecordCell.m */; };
        B9BC99FC25C0FFBD00C024FE /* NSDate-Utilities.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC990F25C0FFBA00C024FE /* NSDate-Utilities.m */; };
        B9BC99FD25C0FFBD00C024FE /* HIKLoadViewItem+configPath.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC991025C0FFBA00C024FE /* HIKLoadViewItem+configPath.m */; };
        B9BC99FE25C0FFBD00C024FE /* HIKLoadPercentView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC991125C0FFBA00C024FE /* HIKLoadPercentView.m */; };
        B9BC99FF25C0FFBD00C024FE /* HIKLoadViewItem.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC991425C0FFBA00C024FE /* HIKLoadViewItem.m */; };
        B9BC9A0025C0FFBD00C024FE /* HIKLoadView.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC991525C0FFBA00C024FE /* HIKLoadView.m */; };
        B9BC9A0225C0FFBD00C024FE /* DeviceListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC991D25C0FFBA00C024FE /* DeviceListCell.m */; };
        B9BC9A0325C0FFBD00C024FE /* CameraListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC991E25C0FFBA00C024FE /* CameraListCell.m */; };
        B9BC9A0425C0FFBD00C024FE /* MessageListCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC991F25C0FFBA00C024FE /* MessageListCell.m */; };
        B9BC9A0625C0FFBD00C024FE /* EZCameraTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC992625C0FFBA00C024FE /* EZCameraTableViewController.m */; };
        B9BC9A0725C0FFBD00C024FE /* EZWifiConfigViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC992725C0FFBA00C024FE /* EZWifiConfigViewController.m */; };
        B9BC9A0825C0FFBD00C024FE /* EZVideoTalkViewcontroller.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9BC992925C0FFBA00C024FE /* EZVideoTalkViewcontroller.mm */; };
        B9BC9A0925C0FFBD00C024FE /* EZMessagePlaybackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC992B25C0FFBA00C024FE /* EZMessagePlaybackViewController.m */; };
        B9BC9A0A25C0FFBD00C024FE /* EZMultiChannelRealPlayVC.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC992C25C0FFBA00C024FE /* EZMultiChannelRealPlayVC.m */; };
        B9BC9A0B25C0FFBD00C024FE /* EZDeviceUpgradeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC992D25C0FFBA00C024FE /* EZDeviceUpgradeViewController.m */; };
        B9BC9A0C25C0FFBD00C024FE /* EZLocalCameraListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC992E25C0FFBA00C024FE /* EZLocalCameraListViewController.m */; };
        B9BC9A0D25C0FFBD00C024FE /* UIViewController+EZBackPop.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC993125C0FFBA00C024FE /* UIViewController+EZBackPop.m */; };
        B9BC9A0E25C0FFBD00C024FE /* EZLocalDeviceListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC993425C0FFBA00C024FE /* EZLocalDeviceListViewController.m */; };
        B9BC9A0F25C0FFBD00C024FE /* EZDeviceResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC993525C0FFBA00C024FE /* EZDeviceResultViewController.m */; };
        B9BC9A1025C0FFBD00C024FE /* EZMessagePhotoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC993725C0FFBA00C024FE /* EZMessagePhotoViewController.m */; };
        B9BC9A1125C0FFBD00C024FE /* EZDeviceRestartTipsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC993825C0FFBA00C024FE /* EZDeviceRestartTipsViewController.m */; };
        B9BC9A1225C0FFBD00C024FE /* EZLivePlayViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC993925C0FFBA00C024FE /* EZLivePlayViewController.m */; };
        B9BC9A1325C0FFBD00C024FE /* EZLocalRealPlayViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC993A25C0FFBA00C024FE /* EZLocalRealPlayViewController.m */; };
        B9BC9A1425C0FFBD00C024FE /* EZInputSerialViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC993D25C0FFBB00C024FE /* EZInputSerialViewController.m */; };
        B9BC9A1525C0FFBD00C024FE /* EZAPConfigResultViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC993F25C0FFBB00C024FE /* EZAPConfigResultViewController.m */; };
        B9BC9A1625C0FFBD00C024FE /* EZOfflineCameraCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC994125C0FFBB00C024FE /* EZOfflineCameraCell.m */; };
        B9BC9A1725C0FFBD00C024FE /* EZEncryptCameraCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC994225C0FFBB00C024FE /* EZEncryptCameraCell.m */; };
        B9BC9A1825C0FFBD00C024FE /* EZHubDebugViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC994325C0FFBB00C024FE /* EZHubDebugViewController.m */; };
        B9BC9A1925C0FFBD00C024FE /* EZAPWiFiConfigViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC994425C0FFBB00C024FE /* EZAPWiFiConfigViewController.m */; };
        B9BC9A1A25C0FFBD00C024FE /* EZDeviceTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC994925C0FFBB00C024FE /* EZDeviceTableViewController.m */; };
        B9BC9A1B25C0FFBD00C024FE /* EZWifiTipsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC994A25C0FFBB00C024FE /* EZWifiTipsViewController.m */; };
        B9BC9A1C25C0FFBD00C024FE /* EZSupportViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC995325C0FFBB00C024FE /* EZSupportViewController.m */; };
        B9BC9A1D25C0FFBD00C024FE /* EZCalendarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC995425C0FFBB00C024FE /* EZCalendarViewController.m */; };
        B9BC9A1E25C0FFBD00C024FE /* EZWifiInfoViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC995525C0FFBB00C024FE /* EZWifiInfoViewController.m */; };
        B9BC9A1F25C0FFBD00C024FE /* EZSettingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC995825C0FFBB00C024FE /* EZSettingViewController.m */; };
        B9BC9A2025C0FFBD00C024FE /* EZDdnsDeviceTableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC995925C0FFBB00C024FE /* EZDdnsDeviceTableViewController.m */; };
        B9BC9A2125C0FFBD00C024FE /* EZLocationAlertVCViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC995B25C0FFBB00C024FE /* EZLocationAlertVCViewController.m */; };
        B9BC9A2225C0FFBD00C024FE /* UINavigationController+EZOpenSDK.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC995D25C0FFBB00C024FE /* UINavigationController+EZOpenSDK.m */; };
        B9BC9A2325C0FFBD00C024FE /* EZMessageListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC995E25C0FFBB00C024FE /* EZMessageListViewController.m */; };
        B9BC9A2425C0FFBD00C024FE /* UIAlertController+TextField.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC996325C0FFBB00C024FE /* UIAlertController+TextField.m */; };
        B9BC9A2525C0FFBD00C024FE /* EZOnlineCameraCell.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC996425C0FFBB00C024FE /* EZOnlineCameraCell.m */; };
        B9BC9A2625C0FFBD00C024FE /* EZEditViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC996525C0FFBB00C024FE /* EZEditViewController.m */; };
        B9BC9A2725C0FFBD00C024FE /* EZAddByQRCodeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC996625C0FFBB00C024FE /* EZAddByQRCodeViewController.m */; };
        B9BC9A2825C0FFBD00C024FE /* EZPlaybackViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC996A25C0FFBB00C024FE /* EZPlaybackViewController.m */; };
        B9BC9A2925C0FFBD00C024FE /* GlobalKit.m in Sources */ = {isa = PBXBuildFile; fileRef = B9BC997025C0FFBB00C024FE /* GlobalKit.m */; };
        B9BC9A2B25C0FFBD00C024FE /* libEZOpenSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = B9BC999A25C0FFBD00C024FE /* libEZOpenSDK.a */; };
        B9EA4E8525C7E806000FFDA2 /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E5625C7E805000FFDA2 /* UIScrollView+MJRefresh.m */; };
        B9EA4E8625C7E806000FFDA2 /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E5725C7E805000FFDA2 /* MJRefreshConst.m */; };
        B9EA4E8725C7E806000FFDA2 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E5D25C7E805000FFDA2 /* UIScrollView+MJExtension.m */; };
        B9EA4E8825C7E806000FFDA2 /* NSBundle+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E6025C7E805000FFDA2 /* NSBundle+MJRefresh.m */; };
        B9EA4E8925C7E806000FFDA2 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E6125C7E805000FFDA2 /* UIView+MJExtension.m */; };
        B9EA4E8A25C7E806000FFDA2 /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E6825C7E806000FFDA2 /* MJRefreshBackGifFooter.m */; };
        B9EA4E8B25C7E806000FFDA2 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E6925C7E806000FFDA2 /* MJRefreshBackStateFooter.m */; };
        B9EA4E8C25C7E806000FFDA2 /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E6A25C7E806000FFDA2 /* MJRefreshBackNormalFooter.m */; };
        B9EA4E8D25C7E806000FFDA2 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E6F25C7E806000FFDA2 /* MJRefreshAutoStateFooter.m */; };
        B9EA4E8E25C7E806000FFDA2 /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E7025C7E806000FFDA2 /* MJRefreshAutoGifFooter.m */; };
        B9EA4E8F25C7E806000FFDA2 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E7125C7E806000FFDA2 /* MJRefreshAutoNormalFooter.m */; };
        B9EA4E9025C7E806000FFDA2 /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E7325C7E806000FFDA2 /* MJRefreshNormalHeader.m */; };
        B9EA4E9125C7E806000FFDA2 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E7725C7E806000FFDA2 /* MJRefreshStateHeader.m */; };
        B9EA4E9225C7E806000FFDA2 /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E7825C7E806000FFDA2 /* MJRefreshGifHeader.m */; };
        B9EA4E9325C7E806000FFDA2 /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E7A25C7E806000FFDA2 /* MJRefreshFooter.m */; };
        B9EA4E9425C7E806000FFDA2 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E7C25C7E806000FFDA2 /* MJRefreshHeader.m */; };
        B9EA4E9525C7E806000FFDA2 /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E7E25C7E806000FFDA2 /* MJRefreshBackFooter.m */; };
        B9EA4E9625C7E806000FFDA2 /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E7F25C7E806000FFDA2 /* MJRefreshAutoFooter.m */; };
        B9EA4E9725C7E806000FFDA2 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = B9EA4E8125C7E806000FFDA2 /* MJRefreshComponent.m */; };
/* End PBXBuildFile section */
 
/* Begin PBXCopyFilesBuildPhase section */
        B9BC92F825C0FC3500C024FE /* CopyFiles */ = {
            isa = PBXCopyFilesBuildPhase;
            buildActionMask = 2147483647;
            dstPath = "include/$(PRODUCT_NAME)";
            dstSubfolderSpec = 16;
            files = (
                B9BC930025C0FC3500C024FE /* EZSDK.h in CopyFiles */,
            );
            runOnlyForDeploymentPostprocessing = 0;
        };
/* End PBXCopyFilesBuildPhase section */
 
/* Begin PBXFileReference section */
        B9BC92FA25C0FC3500C024FE /* libEZSDK.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = libEZSDK.a; sourceTree = BUILT_PRODUCTS_DIR; };
        B9BC92FD25C0FC3500C024FE /* EZSDK.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = EZSDK.h; sourceTree = "<group>"; };
        B9BC92FE25C0FC3500C024FE /* EZSDK.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = EZSDK.m; sourceTree = "<group>"; };
        B9BC94A925C0FC6B00C024FE /* DeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceInfo.h; sourceTree = "<group>"; };
        B9BC94D125C0FC6B00C024FE /* DeviceInfo.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceInfo.m; sourceTree = "<group>"; };
        B9BC97D625C0FFB600C024FE /* UITableView+FDKeyedHeightCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+FDKeyedHeightCache.h"; sourceTree = "<group>"; };
        B9BC97D725C0FFB600C024FE /* UITableView+FDTemplateLayoutCellDebug.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+FDTemplateLayoutCellDebug.h"; sourceTree = "<group>"; };
        B9BC97D825C0FFB600C024FE /* UITableView+FDTemplateLayoutCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+FDTemplateLayoutCell.m"; sourceTree = "<group>"; };
        B9BC97D925C0FFB600C024FE /* UITableView+FDIndexPathHeightCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+FDIndexPathHeightCache.h"; sourceTree = "<group>"; };
        B9BC97DA25C0FFB600C024FE /* UITableView+FDKeyedHeightCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+FDKeyedHeightCache.m"; sourceTree = "<group>"; };
        B9BC97DB25C0FFB600C024FE /* UITableView+FDTemplateLayoutCellDebug.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+FDTemplateLayoutCellDebug.m"; sourceTree = "<group>"; };
        B9BC97DC25C0FFB600C024FE /* UITableView+FDIndexPathHeightCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableView+FDIndexPathHeightCache.m"; sourceTree = "<group>"; };
        B9BC97DD25C0FFB600C024FE /* UITableView+FDTemplateLayoutCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableView+FDTemplateLayoutCell.h"; sourceTree = "<group>"; };
        B9BC97DF25C0FFB600C024FE /* DALabeledCircularProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DALabeledCircularProgressView.m; sourceTree = "<group>"; };
        B9BC97E025C0FFB600C024FE /* DACircularProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DACircularProgressView.m; sourceTree = "<group>"; };
        B9BC97E125C0FFB600C024FE /* DALabeledCircularProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DALabeledCircularProgressView.h; sourceTree = "<group>"; };
        B9BC97E225C0FFB600C024FE /* DACircularProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DACircularProgressView.h; sourceTree = "<group>"; };
        B9BC97E425C0FFB600C024FE /* DDCollectionViewFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDCollectionViewFlowLayout.h; sourceTree = "<group>"; };
        B9BC97E525C0FFB600C024FE /* DDCollectionViewFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DDCollectionViewFlowLayout.m; sourceTree = "<group>"; };
        B9BC981425C0FFB600C024FE /* UIView+Toast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Toast.h"; sourceTree = "<group>"; };
        B9BC981525C0FFB600C024FE /* UIView+Toast.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Toast.m"; sourceTree = "<group>"; };
        B9BC981725C0FFB600C024FE /* MWTapDetectingImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingImageView.h; sourceTree = "<group>"; };
        B9BC981825C0FFB600C024FE /* MWPhoto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhoto.h; sourceTree = "<group>"; };
        B9BC981925C0FFB700C024FE /* MWPhotoProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoProtocol.h; sourceTree = "<group>"; };
        B9BC981A25C0FFB700C024FE /* MWGridViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWGridViewController.h; sourceTree = "<group>"; };
        B9BC981B25C0FFB700C024FE /* MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhotoBrowser.m; sourceTree = "<group>"; };
        B9BC981C25C0FFB700C024FE /* MWCaptionView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWCaptionView.m; sourceTree = "<group>"; };
        B9BC981D25C0FFB700C024FE /* MWTapDetectingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWTapDetectingView.h; sourceTree = "<group>"; };
        B9BC981E25C0FFB700C024FE /* MWPhotoBrowserPrivate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowserPrivate.h; sourceTree = "<group>"; };
        B9BC981F25C0FFB700C024FE /* MWZoomingScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWZoomingScrollView.m; sourceTree = "<group>"; };
        B9BC982025C0FFB700C024FE /* UIImage+MWPhotoBrowser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MWPhotoBrowser.m"; sourceTree = "<group>"; };
        B9BC982125C0FFB700C024FE /* MWGridCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWGridCell.h; sourceTree = "<group>"; };
        B9BC982225C0FFB700C024FE /* MWTapDetectingImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingImageView.m; sourceTree = "<group>"; };
        B9BC982325C0FFB700C024FE /* MWPhoto.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWPhoto.m; sourceTree = "<group>"; };
        B9BC982425C0FFB700C024FE /* MWTapDetectingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWTapDetectingView.m; sourceTree = "<group>"; };
        B9BC982525C0FFB700C024FE /* MWCaptionView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCaptionView.h; sourceTree = "<group>"; };
        B9BC982625C0FFB700C024FE /* MWGridViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWGridViewController.m; sourceTree = "<group>"; };
        B9BC982725C0FFB700C024FE /* MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWPhotoBrowser.h; sourceTree = "<group>"; };
        B9BC982825C0FFB700C024FE /* MWCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWCommon.h; sourceTree = "<group>"; };
        B9BC982925C0FFB700C024FE /* MWGridCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MWGridCell.m; sourceTree = "<group>"; };
        B9BC982A25C0FFB700C024FE /* UIImage+MWPhotoBrowser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MWPhotoBrowser.h"; sourceTree = "<group>"; };
        B9BC982B25C0FFB700C024FE /* MWZoomingScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MWZoomingScrollView.h; sourceTree = "<group>"; };
        B9BC984125C0FFB700C024FE /* Masonry.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Masonry.h; sourceTree = "<group>"; };
        B9BC984825C0FFB700C024FE /* UIView+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+DDKit.m"; sourceTree = "<group>"; };
        B9BC984925C0FFB700C024FE /* UISegmentedControl+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UISegmentedControl+DDKit.m"; sourceTree = "<group>"; };
        B9BC984A25C0FFB700C024FE /* DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDKit.h; sourceTree = "<group>"; };
        B9BC984B25C0FFB700C024FE /* UIViewController+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+DDKit.h"; sourceTree = "<group>"; };
        B9BC984C25C0FFB700C024FE /* UIImageView+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+DDKit.m"; sourceTree = "<group>"; };
        B9BC984D25C0FFB700C024FE /* UIImage+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+DDKit.h"; sourceTree = "<group>"; };
        B9BC984E25C0FFB700C024FE /* NSString+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+DDKit.h"; sourceTree = "<group>"; };
        B9BC984F25C0FFB700C024FE /* UILabel+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+DDKit.m"; sourceTree = "<group>"; };
        B9BC985025C0FFB700C024FE /* NSDate+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+DDKit.h"; sourceTree = "<group>"; };
        B9BC985125C0FFB700C024FE /* UIColor+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+DDKit.m"; sourceTree = "<group>"; };
        B9BC985225C0FFB700C024FE /* NSArray+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+DDKit.m"; sourceTree = "<group>"; };
        B9BC985325C0FFB700C024FE /* UIButton+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+DDKit.h"; sourceTree = "<group>"; };
        B9BC985425C0FFB700C024FE /* UISegmentedControl+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UISegmentedControl+DDKit.h"; sourceTree = "<group>"; };
        B9BC985525C0FFB700C024FE /* UIView+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+DDKit.h"; sourceTree = "<group>"; };
        B9BC985625C0FFB700C024FE /* NSString+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+DDKit.m"; sourceTree = "<group>"; };
        B9BC985725C0FFB700C024FE /* UIImage+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+DDKit.m"; sourceTree = "<group>"; };
        B9BC985825C0FFB700C024FE /* UIImageView+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+DDKit.h"; sourceTree = "<group>"; };
        B9BC985925C0FFB700C024FE /* UIViewController+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+DDKit.m"; sourceTree = "<group>"; };
        B9BC985A25C0FFB700C024FE /* UIColor+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+DDKit.h"; sourceTree = "<group>"; };
        B9BC985B25C0FFB700C024FE /* NSDate+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+DDKit.m"; sourceTree = "<group>"; };
        B9BC985C25C0FFB700C024FE /* UILabel+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+DDKit.h"; sourceTree = "<group>"; };
        B9BC985D25C0FFB700C024FE /* UIButton+DDKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+DDKit.m"; sourceTree = "<group>"; };
        B9BC985E25C0FFB700C024FE /* NSArray+DDKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+DDKit.h"; sourceTree = "<group>"; };
        B9BC985F25C0FFB700C024FE /* DDCategory.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DDCategory.h; sourceTree = "<group>"; };
        B9BC986125C0FFB700C024FE /* UIAlertView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertView+AFNetworking.m"; sourceTree = "<group>"; };
        B9BC986225C0FFB700C024FE /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIProgressView+AFNetworking.m"; sourceTree = "<group>"; };
        B9BC986325C0FFB700C024FE /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+AFNetworking.h"; sourceTree = "<group>"; };
        B9BC986425C0FFB700C024FE /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIRefreshControl+AFNetworking.m"; sourceTree = "<group>"; };
        B9BC986525C0FFB700C024FE /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+AFNetworking.h"; sourceTree = "<group>"; };
        B9BC986625C0FFB800C024FE /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkActivityIndicatorManager.m; sourceTree = "<group>"; };
        B9BC986725C0FFB800C024FE /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIActivityIndicatorView+AFNetworking.h"; sourceTree = "<group>"; };
        B9BC986825C0FFB800C024FE /* UIAlertView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertView+AFNetworking.h"; sourceTree = "<group>"; };
        B9BC986925C0FFB800C024FE /* UIImage+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+AFNetworking.h"; sourceTree = "<group>"; };
        B9BC986A25C0FFB800C024FE /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIProgressView+AFNetworking.h"; sourceTree = "<group>"; };
        B9BC986B25C0FFB800C024FE /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+AFNetworking.m"; sourceTree = "<group>"; };
        B9BC986C25C0FFB800C024FE /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIKit+AFNetworking.h"; sourceTree = "<group>"; };
        B9BC986D25C0FFB800C024FE /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIRefreshControl+AFNetworking.h"; sourceTree = "<group>"; };
        B9BC986E25C0FFB800C024FE /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+AFNetworking.m"; sourceTree = "<group>"; };
        B9BC986F25C0FFB800C024FE /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIActivityIndicatorView+AFNetworking.m"; sourceTree = "<group>"; };
        B9BC987025C0FFB800C024FE /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkActivityIndicatorManager.h; sourceTree = "<group>"; };
        B9BC987225C0FFB800C024FE /* AFSecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFSecurityPolicy.h; sourceTree = "<group>"; };
        B9BC987325C0FFB800C024FE /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
        B9BC987425C0FFB800C024FE /* AFHTTPRequestOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPRequestOperation.h; sourceTree = "<group>"; };
        B9BC987525C0FFB800C024FE /* AFHTTPRequestOperationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPRequestOperationManager.h; sourceTree = "<group>"; };
        B9BC987625C0FFB800C024FE /* AFURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLSessionManager.h; sourceTree = "<group>"; };
        B9BC987725C0FFB800C024FE /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLRequestSerialization.h; sourceTree = "<group>"; };
        B9BC987825C0FFB800C024FE /* AFURLConnectionOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLConnectionOperation.h; sourceTree = "<group>"; };
        B9BC987925C0FFB800C024FE /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLResponseSerialization.m; sourceTree = "<group>"; };
        B9BC987A25C0FFB800C024FE /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPSessionManager.m; sourceTree = "<group>"; };
        B9BC987B25C0FFB800C024FE /* AFURLConnectionOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLConnectionOperation.m; sourceTree = "<group>"; };
        B9BC987C25C0FFB800C024FE /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLResponseSerialization.h; sourceTree = "<group>"; };
        B9BC987D25C0FFB800C024FE /* AFURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLSessionManager.m; sourceTree = "<group>"; };
        B9BC987E25C0FFB800C024FE /* AFHTTPRequestOperationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPRequestOperationManager.m; sourceTree = "<group>"; };
        B9BC987F25C0FFB800C024FE /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLRequestSerialization.m; sourceTree = "<group>"; };
        B9BC988025C0FFB800C024FE /* AFHTTPRequestOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPRequestOperation.m; sourceTree = "<group>"; };
        B9BC988125C0FFB800C024FE /* AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworking.h; sourceTree = "<group>"; };
        B9BC988225C0FFB800C024FE /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
        B9BC988325C0FFB800C024FE /* AFSecurityPolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFSecurityPolicy.m; sourceTree = "<group>"; };
        B9BC988425C0FFB800C024FE /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPSessionManager.h; sourceTree = "<group>"; };
        B9BC988625C0FFB800C024FE /* MBProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MBProgressHUD.m; sourceTree = "<group>"; };
        B9BC988725C0FFB800C024FE /* MBProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MBProgressHUD.h; sourceTree = "<group>"; };
        B9BC988925C0FFB800C024FE /* UIImage+WebP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+WebP.m"; sourceTree = "<group>"; };
        B9BC988A25C0FFB800C024FE /* MKAnnotationView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "MKAnnotationView+WebCache.m"; sourceTree = "<group>"; };
        B9BC988B25C0FFB800C024FE /* UIImageView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+WebCache.h"; sourceTree = "<group>"; };
        B9BC988C25C0FFB800C024FE /* NSData+ImageContentType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+ImageContentType.h"; sourceTree = "<group>"; };
        B9BC988D25C0FFB800C024FE /* SDWebImageManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageManager.m; sourceTree = "<group>"; };
        B9BC988E25C0FFB800C024FE /* SDWebImageDecoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDecoder.m; sourceTree = "<group>"; };
        B9BC988F25C0FFB800C024FE /* SDWebImageDownloaderOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloaderOperation.h; sourceTree = "<group>"; };
        B9BC989025C0FFB800C024FE /* UIImageView+HighlightedWebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+HighlightedWebCache.m"; sourceTree = "<group>"; };
        B9BC989125C0FFB800C024FE /* SDImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDImageCache.h; sourceTree = "<group>"; };
        B9BC989225C0FFB800C024FE /* SDWebImageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloader.m; sourceTree = "<group>"; };
        B9BC989325C0FFB800C024FE /* UIImage+GIF.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+GIF.m"; sourceTree = "<group>"; };
        B9BC989425C0FFB800C024FE /* UIButton+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+WebCache.h"; sourceTree = "<group>"; };
        B9BC989525C0FFB800C024FE /* UIImage+MultiFormat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+MultiFormat.m"; sourceTree = "<group>"; };
        B9BC989625C0FFB800C024FE /* SDWebImageCompat.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageCompat.m; sourceTree = "<group>"; };
        B9BC989725C0FFB800C024FE /* SDWebImagePrefetcher.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImagePrefetcher.m; sourceTree = "<group>"; };
        B9BC989825C0FFB800C024FE /* UIView+WebCacheOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+WebCacheOperation.h"; sourceTree = "<group>"; };
        B9BC989925C0FFB800C024FE /* MKAnnotationView+WebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "MKAnnotationView+WebCache.h"; sourceTree = "<group>"; };
        B9BC989A25C0FFB800C024FE /* UIImage+WebP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+WebP.h"; sourceTree = "<group>"; };
        B9BC989B25C0FFB800C024FE /* SDImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDImageCache.m; sourceTree = "<group>"; };
        B9BC989C25C0FFB800C024FE /* UIImageView+HighlightedWebCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+HighlightedWebCache.h"; sourceTree = "<group>"; };
        B9BC989D25C0FFB800C024FE /* SDWebImageDownloaderOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SDWebImageDownloaderOperation.m; sourceTree = "<group>"; };
        B9BC989E25C0FFB800C024FE /* SDWebImageDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDecoder.h; sourceTree = "<group>"; };
        B9BC989F25C0FFB800C024FE /* SDWebImageManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageManager.h; sourceTree = "<group>"; };
        B9BC98A025C0FFB800C024FE /* NSData+ImageContentType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+ImageContentType.m"; sourceTree = "<group>"; };
        B9BC98A125C0FFB800C024FE /* UIImageView+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+WebCache.m"; sourceTree = "<group>"; };
        B9BC98A225C0FFB800C024FE /* SDWebImageOperation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageOperation.h; sourceTree = "<group>"; };
        B9BC98A325C0FFB800C024FE /* SDWebImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageDownloader.h; sourceTree = "<group>"; };
        B9BC98A425C0FFB800C024FE /* UIView+WebCacheOperation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+WebCacheOperation.m"; sourceTree = "<group>"; };
        B9BC98A525C0FFB800C024FE /* SDWebImagePrefetcher.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImagePrefetcher.h; sourceTree = "<group>"; };
        B9BC98A625C0FFB800C024FE /* SDWebImageCompat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SDWebImageCompat.h; sourceTree = "<group>"; };
        B9BC98A725C0FFB800C024FE /* UIImage+MultiFormat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+MultiFormat.h"; sourceTree = "<group>"; };
        B9BC98A825C0FFB800C024FE /* UIButton+WebCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+WebCache.m"; sourceTree = "<group>"; };
        B9BC98A925C0FFB800C024FE /* UIImage+GIF.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+GIF.h"; sourceTree = "<group>"; };
        B9BC98AD25C0FFB900C024FE /* pem2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem2.h; sourceTree = "<group>"; };
        B9BC98AE25C0FFB900C024FE /* pem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pem.h; sourceTree = "<group>"; };
        B9BC98AF25C0FFB900C024FE /* md2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md2.h; sourceTree = "<group>"; };
        B9BC98B025C0FFB900C024FE /* ssl3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl3.h; sourceTree = "<group>"; };
        B9BC98B125C0FFB900C024FE /* ossl_typ.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ossl_typ.h; sourceTree = "<group>"; };
        B9BC98B225C0FFB900C024FE /* dtls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dtls1.h; sourceTree = "<group>"; };
        B9BC98B325C0FFB900C024FE /* err.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = err.h; sourceTree = "<group>"; };
        B9BC98B425C0FFB900C024FE /* bn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bn.h; sourceTree = "<group>"; };
        B9BC98B525C0FFB900C024FE /* blowfish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = blowfish.h; sourceTree = "<group>"; };
        B9BC98B625C0FFB900C024FE /* cms.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cms.h; sourceTree = "<group>"; };
        B9BC98B725C0FFB900C024FE /* engine.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = engine.h; sourceTree = "<group>"; };
        B9BC98B825C0FFB900C024FE /* conf_api.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf_api.h; sourceTree = "<group>"; };
        B9BC98B925C0FFB900C024FE /* x509.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509.h; sourceTree = "<group>"; };
        B9BC98BA25C0FFB900C024FE /* asn1_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1_mac.h; sourceTree = "<group>"; };
        B9BC98BB25C0FFB900C024FE /* ui.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui.h; sourceTree = "<group>"; };
        B9BC98BC25C0FFB900C024FE /* kssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = kssl.h; sourceTree = "<group>"; };
        B9BC98BD25C0FFB900C024FE /* sha.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = sha.h; sourceTree = "<group>"; };
        B9BC98BE25C0FFB900C024FE /* symhacks.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = symhacks.h; sourceTree = "<group>"; };
        B9BC98BF25C0FFB900C024FE /* asn1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1.h; sourceTree = "<group>"; };
        B9BC98C025C0FFB900C024FE /* opensslconf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslconf.h; sourceTree = "<group>"; };
        B9BC98C125C0FFB900C024FE /* bio.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bio.h; sourceTree = "<group>"; };
        B9BC98C225C0FFB900C024FE /* rc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc2.h; sourceTree = "<group>"; };
        B9BC98C325C0FFB900C024FE /* dh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dh.h; sourceTree = "<group>"; };
        B9BC98C425C0FFB900C024FE /* ui_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ui_compat.h; sourceTree = "<group>"; };
        B9BC98C525C0FFB900C024FE /* x509v3.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509v3.h; sourceTree = "<group>"; };
        B9BC98C625C0FFB900C024FE /* ssl23.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl23.h; sourceTree = "<group>"; };
        B9BC98C725C0FFB900C024FE /* conf.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = conf.h; sourceTree = "<group>"; };
        B9BC98C825C0FFB900C024FE /* md5.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md5.h; sourceTree = "<group>"; };
        B9BC98C925C0FFB900C024FE /* x509_vfy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = x509_vfy.h; sourceTree = "<group>"; };
        B9BC98CA25C0FFB900C024FE /* txt_db.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = txt_db.h; sourceTree = "<group>"; };
        B9BC98CB25C0FFB900C024FE /* safestack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = safestack.h; sourceTree = "<group>"; };
        B9BC98CC25C0FFB900C024FE /* ecdsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdsa.h; sourceTree = "<group>"; };
        B9BC98CD25C0FFB900C024FE /* objects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = objects.h; sourceTree = "<group>"; };
        B9BC98CE25C0FFB900C024FE /* pkcs12.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs12.h; sourceTree = "<group>"; };
        B9BC98CF25C0FFB900C024FE /* crypto.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = crypto.h; sourceTree = "<group>"; };
        B9BC98D025C0FFB900C024FE /* opensslv.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = opensslv.h; sourceTree = "<group>"; };
        B9BC98D125C0FFB900C024FE /* pkcs7.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pkcs7.h; sourceTree = "<group>"; };
        B9BC98D225C0FFB900C024FE /* obj_mac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = obj_mac.h; sourceTree = "<group>"; };
        B9BC98D325C0FFB900C024FE /* tmdiff.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tmdiff.h; sourceTree = "<group>"; };
        B9BC98D425C0FFB900C024FE /* buffer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = buffer.h; sourceTree = "<group>"; };
        B9BC98D525C0FFB900C024FE /* ssl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl.h; sourceTree = "<group>"; };
        B9BC98D625C0FFB900C024FE /* srp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srp.h; sourceTree = "<group>"; };
        B9BC98D725C0FFB900C024FE /* camellia.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = camellia.h; sourceTree = "<group>"; };
        B9BC98D825C0FFB900C024FE /* evp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = evp.h; sourceTree = "<group>"; };
        B9BC98D925C0FFB900C024FE /* e_os2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = e_os2.h; sourceTree = "<group>"; };
        B9BC98DA25C0FFB900C024FE /* md4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = md4.h; sourceTree = "<group>"; };
        B9BC98DB25C0FFB900C024FE /* hmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = hmac.h; sourceTree = "<group>"; };
        B9BC98DC25C0FFB900C024FE /* aes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = aes.h; sourceTree = "<group>"; };
        B9BC98DD25C0FFB900C024FE /* comp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = comp.h; sourceTree = "<group>"; };
        B9BC98DE25C0FFB900C024FE /* cast.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cast.h; sourceTree = "<group>"; };
        B9BC98DF25C0FFB900C024FE /* rc4.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rc4.h; sourceTree = "<group>"; };
        B9BC98E025C0FFB900C024FE /* stack.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = stack.h; sourceTree = "<group>"; };
        B9BC98E125C0FFB900C024FE /* des.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des.h; sourceTree = "<group>"; };
        B9BC98E225C0FFB900C024FE /* ocsp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ocsp.h; sourceTree = "<group>"; };
        B9BC98E325C0FFB900C024FE /* ec.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ec.h; sourceTree = "<group>"; };
        B9BC98E425C0FFB900C024FE /* ecdh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ecdh.h; sourceTree = "<group>"; };
        B9BC98E525C0FFB900C024FE /* rand.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rand.h; sourceTree = "<group>"; };
        B9BC98E625C0FFB900C024FE /* ts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ts.h; sourceTree = "<group>"; };
        B9BC98E725C0FFB900C024FE /* pqueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pqueue.h; sourceTree = "<group>"; };
        B9BC98E825C0FFB900C024FE /* dso.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dso.h; sourceTree = "<group>"; };
        B9BC98E925C0FFB900C024FE /* seed.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = seed.h; sourceTree = "<group>"; };
        B9BC98EA25C0FFB900C024FE /* modes.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = modes.h; sourceTree = "<group>"; };
        B9BC98EB25C0FFB900C024FE /* ssl2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ssl2.h; sourceTree = "<group>"; };
        B9BC98EC25C0FFB900C024FE /* rsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = rsa.h; sourceTree = "<group>"; };
        B9BC98ED25C0FFB900C024FE /* krb5_asn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = krb5_asn.h; sourceTree = "<group>"; };
        B9BC98EE25C0FFB900C024FE /* des_old.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = des_old.h; sourceTree = "<group>"; };
        B9BC98EF25C0FFB900C024FE /* ripemd.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ripemd.h; sourceTree = "<group>"; };
        B9BC98F025C0FFB900C024FE /* whrlpool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = whrlpool.h; sourceTree = "<group>"; };
        B9BC98F125C0FFB900C024FE /* tls1.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = tls1.h; sourceTree = "<group>"; };
        B9BC98F225C0FFB900C024FE /* mdc2.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mdc2.h; sourceTree = "<group>"; };
        B9BC98F325C0FFB900C024FE /* dsa.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = dsa.h; sourceTree = "<group>"; };
        B9BC98F425C0FFB900C024FE /* srtp.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = srtp.h; sourceTree = "<group>"; };
        B9BC98F525C0FFB900C024FE /* asn1t.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = asn1t.h; sourceTree = "<group>"; };
        B9BC98F625C0FFBA00C024FE /* cmac.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = cmac.h; sourceTree = "<group>"; };
        B9BC98F725C0FFBA00C024FE /* ebcdic.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ebcdic.h; sourceTree = "<group>"; };
        B9BC98F825C0FFBA00C024FE /* store.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = store.h; sourceTree = "<group>"; };
        B9BC98F925C0FFBA00C024FE /* idea.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = idea.h; sourceTree = "<group>"; };
        B9BC98FA25C0FFBA00C024FE /* lhash.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = lhash.h; sourceTree = "<group>"; };
        B9BC98FB25C0FFBA00C024FE /* pq_compat.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = pq_compat.h; sourceTree = "<group>"; };
        B9BC98FD25C0FFBA00C024FE /* libcrypto.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcrypto.a; sourceTree = "<group>"; };
        B9BC98FE25C0FFBA00C024FE /* libssl.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libssl.a; sourceTree = "<group>"; };
        B9BC990025C0FFBA00C024FE /* Aspects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Aspects.h; sourceTree = "<group>"; };
        B9BC990125C0FFBA00C024FE /* Aspects.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Aspects.m; sourceTree = "<group>"; };
        B9BC990325C0FFBA00C024FE /* NSDate-Utilities.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate-Utilities.h"; sourceTree = "<group>"; };
        B9BC990425C0FFBA00C024FE /* EZQRView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZQRView.m; sourceTree = "<group>"; };
        B9BC990525C0FFBA00C024FE /* EZRecordCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZRecordCell.h; sourceTree = "<group>"; };
        B9BC990625C0FFBA00C024FE /* HIKLoadPercentView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HIKLoadPercentView.h; sourceTree = "<group>"; };
        B9BC990725C0FFBA00C024FE /* HIKLoadViewItem+configPath.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "HIKLoadViewItem+configPath.h"; sourceTree = "<group>"; };
        B9BC990825C0FFBA00C024FE /* HIKLoadViewItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HIKLoadViewItem.h; sourceTree = "<group>"; };
        B9BC990925C0FFBA00C024FE /* EZCustomTableView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZCustomTableView.m; sourceTree = "<group>"; };
        B9BC990A25C0FFBA00C024FE /* UIImageView+EzvizOpenSDK.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+EzvizOpenSDK.m"; sourceTree = "<group>"; };
        B9BC990B25C0FFBA00C024FE /* Toast+UIView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "Toast+UIView.m"; sourceTree = "<group>"; };
        B9BC990C25C0FFBA00C024FE /* HIKLoadView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = HIKLoadView.h; sourceTree = "<group>"; };
        B9BC990D25C0FFBA00C024FE /* EZRecordCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZRecordCell.m; sourceTree = "<group>"; };
        B9BC990E25C0FFBA00C024FE /* EZQRView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZQRView.h; sourceTree = "<group>"; };
        B9BC990F25C0FFBA00C024FE /* NSDate-Utilities.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate-Utilities.m"; sourceTree = "<group>"; };
        B9BC991025C0FFBA00C024FE /* HIKLoadViewItem+configPath.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "HIKLoadViewItem+configPath.m"; sourceTree = "<group>"; };
        B9BC991125C0FFBA00C024FE /* HIKLoadPercentView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HIKLoadPercentView.m; sourceTree = "<group>"; };
        B9BC991225C0FFBA00C024FE /* UIImageView+EzvizOpenSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+EzvizOpenSDK.h"; sourceTree = "<group>"; };
        B9BC991325C0FFBA00C024FE /* EZCustomTableView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCustomTableView.h; sourceTree = "<group>"; };
        B9BC991425C0FFBA00C024FE /* HIKLoadViewItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HIKLoadViewItem.m; sourceTree = "<group>"; };
        B9BC991525C0FFBA00C024FE /* HIKLoadView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = HIKLoadView.m; sourceTree = "<group>"; };
        B9BC991625C0FFBA00C024FE /* Toast+UIView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Toast+UIView.h"; sourceTree = "<group>"; };
        B9BC991725C0FFBA00C024FE /* EZStartPushParameter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZStartPushParameter.h; sourceTree = "<group>"; };
        B9BC991A25C0FFBA00C024FE /* CameraListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CameraListCell.h; sourceTree = "<group>"; };
        B9BC991B25C0FFBA00C024FE /* DeviceListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeviceListCell.h; sourceTree = "<group>"; };
        B9BC991C25C0FFBA00C024FE /* MessageListCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MessageListCell.h; sourceTree = "<group>"; };
        B9BC991D25C0FFBA00C024FE /* DeviceListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeviceListCell.m; sourceTree = "<group>"; };
        B9BC991E25C0FFBA00C024FE /* CameraListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CameraListCell.m; sourceTree = "<group>"; };
        B9BC991F25C0FFBA00C024FE /* MessageListCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MessageListCell.m; sourceTree = "<group>"; };
        B9BC992225C0FFBA00C024FE /* EZOpenSDK+EZPrivateHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "EZOpenSDK+EZPrivateHeader.h"; sourceTree = "<group>"; };
        B9BC992425C0FFBA00C024FE /* EZWifiInfoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZWifiInfoViewController.h; sourceTree = "<group>"; };
        B9BC992525C0FFBA00C024FE /* EZCalendarViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCalendarViewController.h; sourceTree = "<group>"; };
        B9BC992625C0FFBA00C024FE /* EZCameraTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZCameraTableViewController.m; sourceTree = "<group>"; };
        B9BC992725C0FFBA00C024FE /* EZWifiConfigViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZWifiConfigViewController.m; sourceTree = "<group>"; };
        B9BC992925C0FFBA00C024FE /* EZVideoTalkViewcontroller.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = EZVideoTalkViewcontroller.mm; sourceTree = "<group>"; };
        B9BC992A25C0FFBA00C024FE /* EZVideoTalkViewcontroller.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoTalkViewcontroller.h; sourceTree = "<group>"; };
        B9BC992B25C0FFBA00C024FE /* EZMessagePlaybackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZMessagePlaybackViewController.m; sourceTree = "<group>"; };
        B9BC992C25C0FFBA00C024FE /* EZMultiChannelRealPlayVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZMultiChannelRealPlayVC.m; sourceTree = "<group>"; };
        B9BC992D25C0FFBA00C024FE /* EZDeviceUpgradeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZDeviceUpgradeViewController.m; sourceTree = "<group>"; };
        B9BC992E25C0FFBA00C024FE /* EZLocalCameraListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZLocalCameraListViewController.m; sourceTree = "<group>"; };
        B9BC992F25C0FFBA00C024FE /* EZDeviceTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceTableViewController.h; sourceTree = "<group>"; };
        B9BC993025C0FFBA00C024FE /* EZWifiTipsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZWifiTipsViewController.h; sourceTree = "<group>"; };
        B9BC993125C0FFBA00C024FE /* UIViewController+EZBackPop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+EZBackPop.m"; sourceTree = "<group>"; };
        B9BC993225C0FFBA00C024FE /* EZDdnsDeviceTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDdnsDeviceTableViewController.h; sourceTree = "<group>"; };
        B9BC993325C0FFBA00C024FE /* EZSettingViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZSettingViewController.h; sourceTree = "<group>"; };
        B9BC993425C0FFBA00C024FE /* EZLocalDeviceListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZLocalDeviceListViewController.m; sourceTree = "<group>"; };
        B9BC993525C0FFBA00C024FE /* EZDeviceResultViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZDeviceResultViewController.m; sourceTree = "<group>"; };
        B9BC993625C0FFBA00C024FE /* UIAlertController+TextField.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIAlertController+TextField.h"; sourceTree = "<group>"; };
        B9BC993725C0FFBA00C024FE /* EZMessagePhotoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZMessagePhotoViewController.m; sourceTree = "<group>"; };
        B9BC993825C0FFBA00C024FE /* EZDeviceRestartTipsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZDeviceRestartTipsViewController.m; sourceTree = "<group>"; };
        B9BC993925C0FFBA00C024FE /* EZLivePlayViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZLivePlayViewController.m; sourceTree = "<group>"; };
        B9BC993A25C0FFBA00C024FE /* EZLocalRealPlayViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZLocalRealPlayViewController.m; sourceTree = "<group>"; };
        B9BC993B25C0FFBA00C024FE /* EZMessageListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZMessageListViewController.h; sourceTree = "<group>"; };
        B9BC993C25C0FFBB00C024FE /* UINavigationController+EZOpenSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+EZOpenSDK.h"; sourceTree = "<group>"; };
        B9BC993D25C0FFBB00C024FE /* EZInputSerialViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZInputSerialViewController.m; sourceTree = "<group>"; };
        B9BC993E25C0FFBB00C024FE /* EZLocationAlertVCViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZLocationAlertVCViewController.h; sourceTree = "<group>"; };
        B9BC993F25C0FFBB00C024FE /* EZAPConfigResultViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZAPConfigResultViewController.m; sourceTree = "<group>"; };
        B9BC994025C0FFBB00C024FE /* EZPlaybackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZPlaybackViewController.h; sourceTree = "<group>"; };
        B9BC994125C0FFBB00C024FE /* EZOfflineCameraCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZOfflineCameraCell.m; sourceTree = "<group>"; };
        B9BC994225C0FFBB00C024FE /* EZEncryptCameraCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZEncryptCameraCell.m; sourceTree = "<group>"; };
        B9BC994325C0FFBB00C024FE /* EZHubDebugViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZHubDebugViewController.m; sourceTree = "<group>"; };
        B9BC994425C0FFBB00C024FE /* EZAPWiFiConfigViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZAPWiFiConfigViewController.m; sourceTree = "<group>"; };
        B9BC994525C0FFBB00C024FE /* EZAddByQRCodeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAddByQRCodeViewController.h; sourceTree = "<group>"; };
        B9BC994625C0FFBB00C024FE /* EZEditViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZEditViewController.h; sourceTree = "<group>"; };
        B9BC994725C0FFBB00C024FE /* EZOnlineCameraCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZOnlineCameraCell.h; sourceTree = "<group>"; };
        B9BC994825C0FFBB00C024FE /* UIViewController+EZBackPop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+EZBackPop.h"; sourceTree = "<group>"; };
        B9BC994925C0FFBB00C024FE /* EZDeviceTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZDeviceTableViewController.m; sourceTree = "<group>"; };
        B9BC994A25C0FFBB00C024FE /* EZWifiTipsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZWifiTipsViewController.m; sourceTree = "<group>"; };
        B9BC994B25C0FFBB00C024FE /* EZLocalCameraListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZLocalCameraListViewController.h; sourceTree = "<group>"; };
        B9BC994C25C0FFBB00C024FE /* EZDeviceUpgradeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceUpgradeViewController.h; sourceTree = "<group>"; };
        B9BC994D25C0FFBB00C024FE /* EZMultiChannelRealPlayVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZMultiChannelRealPlayVC.h; sourceTree = "<group>"; };
        B9BC994E25C0FFBB00C024FE /* EZMessagePlaybackViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZMessagePlaybackViewController.h; sourceTree = "<group>"; };
        B9BC994F25C0FFBB00C024FE /* EZWifiConfigViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZWifiConfigViewController.h; sourceTree = "<group>"; };
        B9BC995025C0FFBB00C024FE /* EZCameraTableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCameraTableViewController.h; sourceTree = "<group>"; };
        B9BC995225C0FFBB00C024FE /* EZSupportViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZSupportViewController.h; sourceTree = "<group>"; };
        B9BC995325C0FFBB00C024FE /* EZSupportViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZSupportViewController.m; sourceTree = "<group>"; };
        B9BC995425C0FFBB00C024FE /* EZCalendarViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZCalendarViewController.m; sourceTree = "<group>"; };
        B9BC995525C0FFBB00C024FE /* EZWifiInfoViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZWifiInfoViewController.m; sourceTree = "<group>"; };
        B9BC995625C0FFBB00C024FE /* EZDeviceResultViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceResultViewController.h; sourceTree = "<group>"; };
        B9BC995725C0FFBB00C024FE /* EZLocalDeviceListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZLocalDeviceListViewController.h; sourceTree = "<group>"; };
        B9BC995825C0FFBB00C024FE /* EZSettingViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZSettingViewController.m; sourceTree = "<group>"; };
        B9BC995925C0FFBB00C024FE /* EZDdnsDeviceTableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZDdnsDeviceTableViewController.m; sourceTree = "<group>"; };
        B9BC995A25C0FFBB00C024FE /* EZAPConfigResultViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAPConfigResultViewController.h; sourceTree = "<group>"; };
        B9BC995B25C0FFBB00C024FE /* EZLocationAlertVCViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZLocationAlertVCViewController.m; sourceTree = "<group>"; };
        B9BC995C25C0FFBB00C024FE /* EZInputSerialViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZInputSerialViewController.h; sourceTree = "<group>"; };
        B9BC995D25C0FFBB00C024FE /* UINavigationController+EZOpenSDK.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+EZOpenSDK.m"; sourceTree = "<group>"; };
        B9BC995E25C0FFBB00C024FE /* EZMessageListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZMessageListViewController.m; sourceTree = "<group>"; };
        B9BC995F25C0FFBB00C024FE /* EZLocalRealPlayViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZLocalRealPlayViewController.h; sourceTree = "<group>"; };
        B9BC996025C0FFBB00C024FE /* EZLivePlayViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZLivePlayViewController.h; sourceTree = "<group>"; };
        B9BC996125C0FFBB00C024FE /* EZDeviceRestartTipsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceRestartTipsViewController.h; sourceTree = "<group>"; };
        B9BC996225C0FFBB00C024FE /* EZMessagePhotoViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZMessagePhotoViewController.h; sourceTree = "<group>"; };
        B9BC996325C0FFBB00C024FE /* UIAlertController+TextField.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIAlertController+TextField.m"; sourceTree = "<group>"; };
        B9BC996425C0FFBB00C024FE /* EZOnlineCameraCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZOnlineCameraCell.m; sourceTree = "<group>"; };
        B9BC996525C0FFBB00C024FE /* EZEditViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZEditViewController.m; sourceTree = "<group>"; };
        B9BC996625C0FFBB00C024FE /* EZAddByQRCodeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZAddByQRCodeViewController.m; sourceTree = "<group>"; };
        B9BC996725C0FFBB00C024FE /* EZAPWiFiConfigViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAPWiFiConfigViewController.h; sourceTree = "<group>"; };
        B9BC996825C0FFBB00C024FE /* EZHubDebugViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZHubDebugViewController.h; sourceTree = "<group>"; };
        B9BC996925C0FFBB00C024FE /* EZEncryptCameraCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZEncryptCameraCell.h; sourceTree = "<group>"; };
        B9BC996A25C0FFBB00C024FE /* EZPlaybackViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EZPlaybackViewController.m; sourceTree = "<group>"; };
        B9BC996B25C0FFBB00C024FE /* EZOfflineCameraCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZOfflineCameraCell.h; sourceTree = "<group>"; };
        B9BC996E25C0FFBB00C024FE /* PrefixHeader.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
        B9BC997025C0FFBB00C024FE /* GlobalKit.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GlobalKit.m; sourceTree = "<group>"; };
        B9BC997125C0FFBB00C024FE /* GlobalKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = GlobalKit.h; sourceTree = "<group>"; };
        B9BC997625C0FFBC00C024FE /* EZConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZConstants.h; sourceTree = "<group>"; };
        B9BC997725C0FFBC00C024FE /* EZHCNetDeviceSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZHCNetDeviceSDK.h; sourceTree = "<group>"; };
        B9BC997825C0FFBC00C024FE /* EZStreamPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZStreamPlayer.h; sourceTree = "<group>"; };
        B9BC997925C0FFBC00C024FE /* EZOpenSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZOpenSDK.h; sourceTree = "<group>"; };
        B9BC997A25C0FFBC00C024FE /* EZPlayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZPlayer.h; sourceTree = "<group>"; };
        B9BC997B25C0FFBC00C024FE /* EZGlobalSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZGlobalSDK.h; sourceTree = "<group>"; };
        B9BC997D25C0FFBC00C024FE /* EZDeviceVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceVersion.h; sourceTree = "<group>"; };
        B9BC997E25C0FFBC00C024FE /* EZUserInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZUserInfo.h; sourceTree = "<group>"; };
        B9BC997F25C0FFBC00C024FE /* EZDeviceUpgradeStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceUpgradeStatus.h; sourceTree = "<group>"; };
        B9BC998025C0FFBC00C024FE /* EZAccessToken.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAccessToken.h; sourceTree = "<group>"; };
        B9BC998125C0FFBC00C024FE /* EZPlayerExParamInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZPlayerExParamInfo.h; sourceTree = "<group>"; };
        B9BC998225C0FFBC00C024FE /* EzvizWatchServerInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EzvizWatchServerInfo.h; sourceTree = "<group>"; };
        B9BC998325C0FFBC00C024FE /* EZDeviceRecordDownloadTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceRecordDownloadTask.h; sourceTree = "<group>"; };
        B9BC998425C0FFBC00C024FE /* EzvizRecordFileInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EzvizRecordFileInfo.h; sourceTree = "<group>"; };
        B9BC998525C0FFBC00C024FE /* EZDeviceRecordFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceRecordFile.h; sourceTree = "<group>"; };
        B9BC998625C0FFBC00C024FE /* EZLeaveMessage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZLeaveMessage.h; sourceTree = "<group>"; };
        B9BC998725C0FFBC00C024FE /* EZHiddnsDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZHiddnsDeviceInfo.h; sourceTree = "<group>"; };
        B9BC998825C0FFBC00C024FE /* EZDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDeviceInfo.h; sourceTree = "<group>"; };
        B9BC998925C0FFBC00C024FE /* EZRecordDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZRecordDownloader.h; sourceTree = "<group>"; };
        B9BC998A25C0FFBC00C024FE /* EZRecordDownloadTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZRecordDownloadTask.h; sourceTree = "<group>"; };
        B9BC998B25C0FFBC00C024FE /* EZVideoTransformer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoTransformer.h; sourceTree = "<group>"; };
        B9BC998C25C0FFBC00C024FE /* EZTokenKit.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZTokenKit.h; sourceTree = "<group>"; };
        B9BC998D25C0FFBC00C024FE /* EZDetectorInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZDetectorInfo.h; sourceTree = "<group>"; };
        B9BC998E25C0FFBC00C024FE /* EZHCNetDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZHCNetDeviceInfo.h; sourceTree = "<group>"; };
        B9BC998F25C0FFBC00C024FE /* EZCameraInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCameraInfo.h; sourceTree = "<group>"; };
        B9BC999025C0FFBC00C024FE /* EZCloudRecordFile.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCloudRecordFile.h; sourceTree = "<group>"; };
        B9BC999125C0FFBC00C024FE /* EZCloudRecordDownloadTask.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZCloudRecordDownloadTask.h; sourceTree = "<group>"; };
        B9BC999225C0FFBC00C024FE /* EZAreaInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAreaInfo.h; sourceTree = "<group>"; };
        B9BC999325C0FFBC00C024FE /* EZProbeDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZProbeDeviceInfo.h; sourceTree = "<group>"; };
        B9BC999425C0FFBD00C024FE /* EZVideoTalkSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoTalkSDK.h; sourceTree = "<group>"; };
        B9BC999525C0FFBD00C024FE /* EZVideoQualityInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoQualityInfo.h; sourceTree = "<group>"; };
        B9BC999625C0FFBD00C024FE /* EZAlarmInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZAlarmInfo.h; sourceTree = "<group>"; };
        B9BC999725C0FFBD00C024FE /* EZVideoTalkParam.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZVideoTalkParam.h; sourceTree = "<group>"; };
        B9BC999825C0FFBD00C024FE /* EZSADPDeviceInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZSADPDeviceInfo.h; sourceTree = "<group>"; };
        B9BC999925C0FFBD00C024FE /* EZStorageInfo.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EZStorageInfo.h; sourceTree = "<group>"; };
        B9BC999A25C0FFBD00C024FE /* libEZOpenSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libEZOpenSDK.a; sourceTree = "<group>"; };
        B9EA4E5425C7E805000FFDA2 /* LICENSE */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
        B9EA4E5625C7E805000FFDA2 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJRefresh.m"; sourceTree = "<group>"; };
        B9EA4E5725C7E805000FFDA2 /* MJRefreshConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshConst.m; sourceTree = "<group>"; };
        B9EA4E5825C7E805000FFDA2 /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJExtension.h"; sourceTree = "<group>"; };
        B9EA4E5925C7E805000FFDA2 /* MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefresh.h; sourceTree = "<group>"; };
        B9EA4E5A25C7E805000FFDA2 /* NSBundle+MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSBundle+MJRefresh.h"; sourceTree = "<group>"; };
        B9EA4E5B25C7E805000FFDA2 /* MJRefresh.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = MJRefresh.bundle; sourceTree = "<group>"; };
        B9EA4E5C25C7E805000FFDA2 /* UIView+MJExtension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+MJExtension.h"; sourceTree = "<group>"; };
        B9EA4E5D25C7E805000FFDA2 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIScrollView+MJExtension.m"; sourceTree = "<group>"; };
        B9EA4E5E25C7E805000FFDA2 /* MJRefreshConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshConst.h; sourceTree = "<group>"; };
        B9EA4E5F25C7E805000FFDA2 /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIScrollView+MJRefresh.h"; sourceTree = "<group>"; };
        B9EA4E6025C7E805000FFDA2 /* NSBundle+MJRefresh.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSBundle+MJRefresh.m"; sourceTree = "<group>"; };
        B9EA4E6125C7E805000FFDA2 /* UIView+MJExtension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+MJExtension.m"; sourceTree = "<group>"; };
        B9EA4E6525C7E805000FFDA2 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackGifFooter.h; sourceTree = "<group>"; };
        B9EA4E6625C7E805000FFDA2 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackStateFooter.h; sourceTree = "<group>"; };
        B9EA4E6725C7E805000FFDA2 /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
        B9EA4E6825C7E806000FFDA2 /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackGifFooter.m; sourceTree = "<group>"; };
        B9EA4E6925C7E806000FFDA2 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackStateFooter.m; sourceTree = "<group>"; };
        B9EA4E6A25C7E806000FFDA2 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackNormalFooter.m; sourceTree = "<group>"; };
        B9EA4E6C25C7E806000FFDA2 /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoStateFooter.h; sourceTree = "<group>"; };
        B9EA4E6D25C7E806000FFDA2 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoNormalFooter.h; sourceTree = "<group>"; };
        B9EA4E6E25C7E806000FFDA2 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoGifFooter.h; sourceTree = "<group>"; };
        B9EA4E6F25C7E806000FFDA2 /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoStateFooter.m; sourceTree = "<group>"; };
        B9EA4E7025C7E806000FFDA2 /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
        B9EA4E7125C7E806000FFDA2 /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoNormalFooter.m; sourceTree = "<group>"; };
        B9EA4E7325C7E806000FFDA2 /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshNormalHeader.m; sourceTree = "<group>"; };
        B9EA4E7425C7E806000FFDA2 /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshStateHeader.h; sourceTree = "<group>"; };
        B9EA4E7525C7E806000FFDA2 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshGifHeader.h; sourceTree = "<group>"; };
        B9EA4E7625C7E806000FFDA2 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshNormalHeader.h; sourceTree = "<group>"; };
        B9EA4E7725C7E806000FFDA2 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshStateHeader.m; sourceTree = "<group>"; };
        B9EA4E7825C7E806000FFDA2 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshGifHeader.m; sourceTree = "<group>"; };
        B9EA4E7A25C7E806000FFDA2 /* MJRefreshFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshFooter.m; sourceTree = "<group>"; };
        B9EA4E7B25C7E806000FFDA2 /* MJRefreshComponent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshComponent.h; sourceTree = "<group>"; };
        B9EA4E7C25C7E806000FFDA2 /* MJRefreshHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshHeader.m; sourceTree = "<group>"; };
        B9EA4E7D25C7E806000FFDA2 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshAutoFooter.h; sourceTree = "<group>"; };
        B9EA4E7E25C7E806000FFDA2 /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshBackFooter.m; sourceTree = "<group>"; };
        B9EA4E7F25C7E806000FFDA2 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshAutoFooter.m; sourceTree = "<group>"; };
        B9EA4E8025C7E806000FFDA2 /* MJRefreshHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshHeader.h; sourceTree = "<group>"; };
        B9EA4E8125C7E806000FFDA2 /* MJRefreshComponent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MJRefreshComponent.m; sourceTree = "<group>"; };
        B9EA4E8225C7E806000FFDA2 /* MJRefreshFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshFooter.h; sourceTree = "<group>"; };
        B9EA4E8325C7E806000FFDA2 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MJRefreshBackFooter.h; sourceTree = "<group>"; };
        B9EA4E8425C7E806000FFDA2 /* README.md */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
/* End PBXFileReference section */
 
/* Begin PBXFrameworksBuildPhase section */
        B9BC92F725C0FC3500C024FE /* Frameworks */ = {
            isa = PBXFrameworksBuildPhase;
            buildActionMask = 2147483647;
            files = (
                B9BC99F525C0FFBD00C024FE /* libssl.a in Frameworks */,
                B9BC9A2B25C0FFBD00C024FE /* libEZOpenSDK.a in Frameworks */,
                B9BC99F425C0FFBD00C024FE /* libcrypto.a in Frameworks */,
            );
            runOnlyForDeploymentPostprocessing = 0;
        };
/* End PBXFrameworksBuildPhase section */
 
/* Begin PBXGroup section */
        B9BC92F125C0FC3500C024FE = {
            isa = PBXGroup;
            children = (
                B9BC92FC25C0FC3500C024FE /* EZSDK */,
                B9BC92FB25C0FC3500C024FE /* Products */,
            );
            sourceTree = "<group>";
        };
        B9BC92FB25C0FC3500C024FE /* Products */ = {
            isa = PBXGroup;
            children = (
                B9BC92FA25C0FC3500C024FE /* libEZSDK.a */,
            );
            name = Products;
            sourceTree = "<group>";
        };
        B9BC92FC25C0FC3500C024FE /* EZSDK */ = {
            isa = PBXGroup;
            children = (
                B9BC97D325C0FFB600C024FE /* EZ */,
                B9BC997425C0FFBC00C024FE /* SDK */,
                B9BC92FD25C0FC3500C024FE /* EZSDK.h */,
                B9BC92FE25C0FC3500C024FE /* EZSDK.m */,
                B9BC94A925C0FC6B00C024FE /* DeviceInfo.h */,
                B9BC94D125C0FC6B00C024FE /* DeviceInfo.m */,
            );
            path = EZSDK;
            sourceTree = "<group>";
        };
        B9BC97D325C0FFB600C024FE /* EZ */ = {
            isa = PBXGroup;
            children = (
                B9BC97D425C0FFB600C024FE /* Venders */,
                B9BC990225C0FFBA00C024FE /* CustomUI */,
                B9BC991725C0FFBA00C024FE /* EZStartPushParameter.h */,
                B9BC991925C0FFBA00C024FE /* TableViewCells */,
                B9BC992225C0FFBA00C024FE /* EZOpenSDK+EZPrivateHeader.h */,
                B9BC992325C0FFBA00C024FE /* UIViewControllers */,
                B9BC996E25C0FFBB00C024FE /* PrefixHeader.pch */,
                B9BC996F25C0FFBB00C024FE /* Global */,
            );
            path = EZ;
            sourceTree = "<group>";
        };
        B9BC97D425C0FFB600C024FE /* Venders */ = {
            isa = PBXGroup;
            children = (
                B9EA4E5325C7E805000FFDA2 /* MJRefresh */,
                B9BC97D525C0FFB600C024FE /* UITableView-FDTemplateLayoutCell */,
                B9BC97DE25C0FFB600C024FE /* DACircularProgress */,
                B9BC97E325C0FFB600C024FE /* DDCollectionViewFlowLayout */,
                B9BC981325C0FFB600C024FE /* Toast */,
                B9BC981625C0FFB600C024FE /* MWPhotoBrowser */,
                B9BC982C25C0FFB700C024FE /* Masonry */,
                B9BC984625C0FFB700C024FE /* DDCategory */,
                B9BC986025C0FFB700C024FE /* UIKit+AFNetworking */,
                B9BC987125C0FFB800C024FE /* AFNetworking */,
                B9BC988525C0FFB800C024FE /* MBProgressHUD */,
                B9BC988825C0FFB800C024FE /* SDWebImage */,
                B9BC98AA25C0FFB800C024FE /* openssl */,
                B9BC98FF25C0FFBA00C024FE /* Aspects */,
            );
            path = Venders;
            sourceTree = "<group>";
        };
        B9BC97D525C0FFB600C024FE /* UITableView-FDTemplateLayoutCell */ = {
            isa = PBXGroup;
            children = (
                B9BC97D625C0FFB600C024FE /* UITableView+FDKeyedHeightCache.h */,
                B9BC97D725C0FFB600C024FE /* UITableView+FDTemplateLayoutCellDebug.h */,
                B9BC97D825C0FFB600C024FE /* UITableView+FDTemplateLayoutCell.m */,
                B9BC97D925C0FFB600C024FE /* UITableView+FDIndexPathHeightCache.h */,
                B9BC97DA25C0FFB600C024FE /* UITableView+FDKeyedHeightCache.m */,
                B9BC97DB25C0FFB600C024FE /* UITableView+FDTemplateLayoutCellDebug.m */,
                B9BC97DC25C0FFB600C024FE /* UITableView+FDIndexPathHeightCache.m */,
                B9BC97DD25C0FFB600C024FE /* UITableView+FDTemplateLayoutCell.h */,
            );
            path = "UITableView-FDTemplateLayoutCell";
            sourceTree = "<group>";
        };
        B9BC97DE25C0FFB600C024FE /* DACircularProgress */ = {
            isa = PBXGroup;
            children = (
                B9BC97DF25C0FFB600C024FE /* DALabeledCircularProgressView.m */,
                B9BC97E025C0FFB600C024FE /* DACircularProgressView.m */,
                B9BC97E125C0FFB600C024FE /* DALabeledCircularProgressView.h */,
                B9BC97E225C0FFB600C024FE /* DACircularProgressView.h */,
            );
            path = DACircularProgress;
            sourceTree = "<group>";
        };
        B9BC97E325C0FFB600C024FE /* DDCollectionViewFlowLayout */ = {
            isa = PBXGroup;
            children = (
                B9BC97E425C0FFB600C024FE /* DDCollectionViewFlowLayout.h */,
                B9BC97E525C0FFB600C024FE /* DDCollectionViewFlowLayout.m */,
            );
            path = DDCollectionViewFlowLayout;
            sourceTree = "<group>";
        };
        B9BC981325C0FFB600C024FE /* Toast */ = {
            isa = PBXGroup;
            children = (
                B9BC981425C0FFB600C024FE /* UIView+Toast.h */,
                B9BC981525C0FFB600C024FE /* UIView+Toast.m */,
            );
            path = Toast;
            sourceTree = "<group>";
        };
        B9BC981625C0FFB600C024FE /* MWPhotoBrowser */ = {
            isa = PBXGroup;
            children = (
                B9BC981725C0FFB600C024FE /* MWTapDetectingImageView.h */,
                B9BC981825C0FFB600C024FE /* MWPhoto.h */,
                B9BC981925C0FFB700C024FE /* MWPhotoProtocol.h */,
                B9BC981A25C0FFB700C024FE /* MWGridViewController.h */,
                B9BC981B25C0FFB700C024FE /* MWPhotoBrowser.m */,
                B9BC981C25C0FFB700C024FE /* MWCaptionView.m */,
                B9BC981D25C0FFB700C024FE /* MWTapDetectingView.h */,
                B9BC981E25C0FFB700C024FE /* MWPhotoBrowserPrivate.h */,
                B9BC981F25C0FFB700C024FE /* MWZoomingScrollView.m */,
                B9BC982025C0FFB700C024FE /* UIImage+MWPhotoBrowser.m */,
                B9BC982125C0FFB700C024FE /* MWGridCell.h */,
                B9BC982225C0FFB700C024FE /* MWTapDetectingImageView.m */,
                B9BC982325C0FFB700C024FE /* MWPhoto.m */,
                B9BC982425C0FFB700C024FE /* MWTapDetectingView.m */,
                B9BC982525C0FFB700C024FE /* MWCaptionView.h */,
                B9BC982625C0FFB700C024FE /* MWGridViewController.m */,
                B9BC982725C0FFB700C024FE /* MWPhotoBrowser.h */,
                B9BC982825C0FFB700C024FE /* MWCommon.h */,
                B9BC982925C0FFB700C024FE /* MWGridCell.m */,
                B9BC982A25C0FFB700C024FE /* UIImage+MWPhotoBrowser.h */,
                B9BC982B25C0FFB700C024FE /* MWZoomingScrollView.h */,
            );
            path = MWPhotoBrowser;
            sourceTree = "<group>";
        };
        B9BC982C25C0FFB700C024FE /* Masonry */ = {
            isa = PBXGroup;
            children = (
                B9BC984125C0FFB700C024FE /* Masonry.h */,
            );
            path = Masonry;
            sourceTree = "<group>";
        };
        B9BC984625C0FFB700C024FE /* DDCategory */ = {
            isa = PBXGroup;
            children = (
                B9BC984725C0FFB700C024FE /* Categories */,
                B9BC985F25C0FFB700C024FE /* DDCategory.h */,
            );
            path = DDCategory;
            sourceTree = "<group>";
        };
        B9BC984725C0FFB700C024FE /* Categories */ = {
            isa = PBXGroup;
            children = (
                B9BC984825C0FFB700C024FE /* UIView+DDKit.m */,
                B9BC984925C0FFB700C024FE /* UISegmentedControl+DDKit.m */,
                B9BC984A25C0FFB700C024FE /* DDKit.h */,
                B9BC984B25C0FFB700C024FE /* UIViewController+DDKit.h */,
                B9BC984C25C0FFB700C024FE /* UIImageView+DDKit.m */,
                B9BC984D25C0FFB700C024FE /* UIImage+DDKit.h */,
                B9BC984E25C0FFB700C024FE /* NSString+DDKit.h */,
                B9BC984F25C0FFB700C024FE /* UILabel+DDKit.m */,
                B9BC985025C0FFB700C024FE /* NSDate+DDKit.h */,
                B9BC985125C0FFB700C024FE /* UIColor+DDKit.m */,
                B9BC985225C0FFB700C024FE /* NSArray+DDKit.m */,
                B9BC985325C0FFB700C024FE /* UIButton+DDKit.h */,
                B9BC985425C0FFB700C024FE /* UISegmentedControl+DDKit.h */,
                B9BC985525C0FFB700C024FE /* UIView+DDKit.h */,
                B9BC985625C0FFB700C024FE /* NSString+DDKit.m */,
                B9BC985725C0FFB700C024FE /* UIImage+DDKit.m */,
                B9BC985825C0FFB700C024FE /* UIImageView+DDKit.h */,
                B9BC985925C0FFB700C024FE /* UIViewController+DDKit.m */,
                B9BC985A25C0FFB700C024FE /* UIColor+DDKit.h */,
                B9BC985B25C0FFB700C024FE /* NSDate+DDKit.m */,
                B9BC985C25C0FFB700C024FE /* UILabel+DDKit.h */,
                B9BC985D25C0FFB700C024FE /* UIButton+DDKit.m */,
                B9BC985E25C0FFB700C024FE /* NSArray+DDKit.h */,
            );
            path = Categories;
            sourceTree = "<group>";
        };
        B9BC986025C0FFB700C024FE /* UIKit+AFNetworking */ = {
            isa = PBXGroup;
            children = (
                B9BC986125C0FFB700C024FE /* UIAlertView+AFNetworking.m */,
                B9BC986225C0FFB700C024FE /* UIProgressView+AFNetworking.m */,
                B9BC986325C0FFB700C024FE /* UIButton+AFNetworking.h */,
                B9BC986425C0FFB700C024FE /* UIRefreshControl+AFNetworking.m */,
                B9BC986525C0FFB700C024FE /* UIImageView+AFNetworking.h */,
                B9BC986625C0FFB800C024FE /* AFNetworkActivityIndicatorManager.m */,
                B9BC986725C0FFB800C024FE /* UIActivityIndicatorView+AFNetworking.h */,
                B9BC986825C0FFB800C024FE /* UIAlertView+AFNetworking.h */,
                B9BC986925C0FFB800C024FE /* UIImage+AFNetworking.h */,
                B9BC986A25C0FFB800C024FE /* UIProgressView+AFNetworking.h */,
                B9BC986B25C0FFB800C024FE /* UIImageView+AFNetworking.m */,
                B9BC986C25C0FFB800C024FE /* UIKit+AFNetworking.h */,
                B9BC986D25C0FFB800C024FE /* UIRefreshControl+AFNetworking.h */,
                B9BC986E25C0FFB800C024FE /* UIButton+AFNetworking.m */,
                B9BC986F25C0FFB800C024FE /* UIActivityIndicatorView+AFNetworking.m */,
                B9BC987025C0FFB800C024FE /* AFNetworkActivityIndicatorManager.h */,
            );
            path = "UIKit+AFNetworking";
            sourceTree = "<group>";
        };
        B9BC987125C0FFB800C024FE /* AFNetworking */ = {
            isa = PBXGroup;
            children = (
                B9BC987225C0FFB800C024FE /* AFSecurityPolicy.h */,
                B9BC987325C0FFB800C024FE /* AFNetworkReachabilityManager.h */,
                B9BC987425C0FFB800C024FE /* AFHTTPRequestOperation.h */,
                B9BC987525C0FFB800C024FE /* AFHTTPRequestOperationManager.h */,
                B9BC987625C0FFB800C024FE /* AFURLSessionManager.h */,
                B9BC987725C0FFB800C024FE /* AFURLRequestSerialization.h */,
                B9BC987825C0FFB800C024FE /* AFURLConnectionOperation.h */,
                B9BC987925C0FFB800C024FE /* AFURLResponseSerialization.m */,
                B9BC987A25C0FFB800C024FE /* AFHTTPSessionManager.m */,
                B9BC987B25C0FFB800C024FE /* AFURLConnectionOperation.m */,
                B9BC987C25C0FFB800C024FE /* AFURLResponseSerialization.h */,
                B9BC987D25C0FFB800C024FE /* AFURLSessionManager.m */,
                B9BC987E25C0FFB800C024FE /* AFHTTPRequestOperationManager.m */,
                B9BC987F25C0FFB800C024FE /* AFURLRequestSerialization.m */,
                B9BC988025C0FFB800C024FE /* AFHTTPRequestOperation.m */,
                B9BC988125C0FFB800C024FE /* AFNetworking.h */,
                B9BC988225C0FFB800C024FE /* AFNetworkReachabilityManager.m */,
                B9BC988325C0FFB800C024FE /* AFSecurityPolicy.m */,
                B9BC988425C0FFB800C024FE /* AFHTTPSessionManager.h */,
            );
            path = AFNetworking;
            sourceTree = "<group>";
        };
        B9BC988525C0FFB800C024FE /* MBProgressHUD */ = {
            isa = PBXGroup;
            children = (
                B9BC988625C0FFB800C024FE /* MBProgressHUD.m */,
                B9BC988725C0FFB800C024FE /* MBProgressHUD.h */,
            );
            path = MBProgressHUD;
            sourceTree = "<group>";
        };
        B9BC988825C0FFB800C024FE /* SDWebImage */ = {
            isa = PBXGroup;
            children = (
                B9BC988925C0FFB800C024FE /* UIImage+WebP.m */,
                B9BC988A25C0FFB800C024FE /* MKAnnotationView+WebCache.m */,
                B9BC988B25C0FFB800C024FE /* UIImageView+WebCache.h */,
                B9BC988C25C0FFB800C024FE /* NSData+ImageContentType.h */,
                B9BC988D25C0FFB800C024FE /* SDWebImageManager.m */,
                B9BC988E25C0FFB800C024FE /* SDWebImageDecoder.m */,
                B9BC988F25C0FFB800C024FE /* SDWebImageDownloaderOperation.h */,
                B9BC989025C0FFB800C024FE /* UIImageView+HighlightedWebCache.m */,
                B9BC989125C0FFB800C024FE /* SDImageCache.h */,
                B9BC989225C0FFB800C024FE /* SDWebImageDownloader.m */,
                B9BC989325C0FFB800C024FE /* UIImage+GIF.m */,
                B9BC989425C0FFB800C024FE /* UIButton+WebCache.h */,
                B9BC989525C0FFB800C024FE /* UIImage+MultiFormat.m */,
                B9BC989625C0FFB800C024FE /* SDWebImageCompat.m */,
                B9BC989725C0FFB800C024FE /* SDWebImagePrefetcher.m */,
                B9BC989825C0FFB800C024FE /* UIView+WebCacheOperation.h */,
                B9BC989925C0FFB800C024FE /* MKAnnotationView+WebCache.h */,
                B9BC989A25C0FFB800C024FE /* UIImage+WebP.h */,
                B9BC989B25C0FFB800C024FE /* SDImageCache.m */,
                B9BC989C25C0FFB800C024FE /* UIImageView+HighlightedWebCache.h */,
                B9BC989D25C0FFB800C024FE /* SDWebImageDownloaderOperation.m */,
                B9BC989E25C0FFB800C024FE /* SDWebImageDecoder.h */,
                B9BC989F25C0FFB800C024FE /* SDWebImageManager.h */,
                B9BC98A025C0FFB800C024FE /* NSData+ImageContentType.m */,
                B9BC98A125C0FFB800C024FE /* UIImageView+WebCache.m */,
                B9BC98A225C0FFB800C024FE /* SDWebImageOperation.h */,
                B9BC98A325C0FFB800C024FE /* SDWebImageDownloader.h */,
                B9BC98A425C0FFB800C024FE /* UIView+WebCacheOperation.m */,
                B9BC98A525C0FFB800C024FE /* SDWebImagePrefetcher.h */,
                B9BC98A625C0FFB800C024FE /* SDWebImageCompat.h */,
                B9BC98A725C0FFB800C024FE /* UIImage+MultiFormat.h */,
                B9BC98A825C0FFB800C024FE /* UIButton+WebCache.m */,
                B9BC98A925C0FFB800C024FE /* UIImage+GIF.h */,
            );
            path = SDWebImage;
            sourceTree = "<group>";
        };
        B9BC98AA25C0FFB800C024FE /* openssl */ = {
            isa = PBXGroup;
            children = (
                B9BC98AB25C0FFB800C024FE /* include */,
                B9BC98FC25C0FFBA00C024FE /* lib */,
            );
            path = openssl;
            sourceTree = "<group>";
        };
        B9BC98AB25C0FFB800C024FE /* include */ = {
            isa = PBXGroup;
            children = (
                B9BC98AC25C0FFB800C024FE /* openssl */,
            );
            path = include;
            sourceTree = "<group>";
        };
        B9BC98AC25C0FFB800C024FE /* openssl */ = {
            isa = PBXGroup;
            children = (
                B9BC98AD25C0FFB900C024FE /* pem2.h */,
                B9BC98AE25C0FFB900C024FE /* pem.h */,
                B9BC98AF25C0FFB900C024FE /* md2.h */,
                B9BC98B025C0FFB900C024FE /* ssl3.h */,
                B9BC98B125C0FFB900C024FE /* ossl_typ.h */,
                B9BC98B225C0FFB900C024FE /* dtls1.h */,
                B9BC98B325C0FFB900C024FE /* err.h */,
                B9BC98B425C0FFB900C024FE /* bn.h */,
                B9BC98B525C0FFB900C024FE /* blowfish.h */,
                B9BC98B625C0FFB900C024FE /* cms.h */,
                B9BC98B725C0FFB900C024FE /* engine.h */,
                B9BC98B825C0FFB900C024FE /* conf_api.h */,
                B9BC98B925C0FFB900C024FE /* x509.h */,
                B9BC98BA25C0FFB900C024FE /* asn1_mac.h */,
                B9BC98BB25C0FFB900C024FE /* ui.h */,
                B9BC98BC25C0FFB900C024FE /* kssl.h */,
                B9BC98BD25C0FFB900C024FE /* sha.h */,
                B9BC98BE25C0FFB900C024FE /* symhacks.h */,
                B9BC98BF25C0FFB900C024FE /* asn1.h */,
                B9BC98C025C0FFB900C024FE /* opensslconf.h */,
                B9BC98C125C0FFB900C024FE /* bio.h */,
                B9BC98C225C0FFB900C024FE /* rc2.h */,
                B9BC98C325C0FFB900C024FE /* dh.h */,
                B9BC98C425C0FFB900C024FE /* ui_compat.h */,
                B9BC98C525C0FFB900C024FE /* x509v3.h */,
                B9BC98C625C0FFB900C024FE /* ssl23.h */,
                B9BC98C725C0FFB900C024FE /* conf.h */,
                B9BC98C825C0FFB900C024FE /* md5.h */,
                B9BC98C925C0FFB900C024FE /* x509_vfy.h */,
                B9BC98CA25C0FFB900C024FE /* txt_db.h */,
                B9BC98CB25C0FFB900C024FE /* safestack.h */,
                B9BC98CC25C0FFB900C024FE /* ecdsa.h */,
                B9BC98CD25C0FFB900C024FE /* objects.h */,
                B9BC98CE25C0FFB900C024FE /* pkcs12.h */,
                B9BC98CF25C0FFB900C024FE /* crypto.h */,
                B9BC98D025C0FFB900C024FE /* opensslv.h */,
                B9BC98D125C0FFB900C024FE /* pkcs7.h */,
                B9BC98D225C0FFB900C024FE /* obj_mac.h */,
                B9BC98D325C0FFB900C024FE /* tmdiff.h */,
                B9BC98D425C0FFB900C024FE /* buffer.h */,
                B9BC98D525C0FFB900C024FE /* ssl.h */,
                B9BC98D625C0FFB900C024FE /* srp.h */,
                B9BC98D725C0FFB900C024FE /* camellia.h */,
                B9BC98D825C0FFB900C024FE /* evp.h */,
                B9BC98D925C0FFB900C024FE /* e_os2.h */,
                B9BC98DA25C0FFB900C024FE /* md4.h */,
                B9BC98DB25C0FFB900C024FE /* hmac.h */,
                B9BC98DC25C0FFB900C024FE /* aes.h */,
                B9BC98DD25C0FFB900C024FE /* comp.h */,
                B9BC98DE25C0FFB900C024FE /* cast.h */,
                B9BC98DF25C0FFB900C024FE /* rc4.h */,
                B9BC98E025C0FFB900C024FE /* stack.h */,
                B9BC98E125C0FFB900C024FE /* des.h */,
                B9BC98E225C0FFB900C024FE /* ocsp.h */,
                B9BC98E325C0FFB900C024FE /* ec.h */,
                B9BC98E425C0FFB900C024FE /* ecdh.h */,
                B9BC98E525C0FFB900C024FE /* rand.h */,
                B9BC98E625C0FFB900C024FE /* ts.h */,
                B9BC98E725C0FFB900C024FE /* pqueue.h */,
                B9BC98E825C0FFB900C024FE /* dso.h */,
                B9BC98E925C0FFB900C024FE /* seed.h */,
                B9BC98EA25C0FFB900C024FE /* modes.h */,
                B9BC98EB25C0FFB900C024FE /* ssl2.h */,
                B9BC98EC25C0FFB900C024FE /* rsa.h */,
                B9BC98ED25C0FFB900C024FE /* krb5_asn.h */,
                B9BC98EE25C0FFB900C024FE /* des_old.h */,
                B9BC98EF25C0FFB900C024FE /* ripemd.h */,
                B9BC98F025C0FFB900C024FE /* whrlpool.h */,
                B9BC98F125C0FFB900C024FE /* tls1.h */,
                B9BC98F225C0FFB900C024FE /* mdc2.h */,
                B9BC98F325C0FFB900C024FE /* dsa.h */,
                B9BC98F425C0FFB900C024FE /* srtp.h */,
                B9BC98F525C0FFB900C024FE /* asn1t.h */,
                B9BC98F625C0FFBA00C024FE /* cmac.h */,
                B9BC98F725C0FFBA00C024FE /* ebcdic.h */,
                B9BC98F825C0FFBA00C024FE /* store.h */,
                B9BC98F925C0FFBA00C024FE /* idea.h */,
                B9BC98FA25C0FFBA00C024FE /* lhash.h */,
                B9BC98FB25C0FFBA00C024FE /* pq_compat.h */,
            );
            path = openssl;
            sourceTree = "<group>";
        };
        B9BC98FC25C0FFBA00C024FE /* lib */ = {
            isa = PBXGroup;
            children = (
                B9BC98FD25C0FFBA00C024FE /* libcrypto.a */,
                B9BC98FE25C0FFBA00C024FE /* libssl.a */,
            );
            path = lib;
            sourceTree = "<group>";
        };
        B9BC98FF25C0FFBA00C024FE /* Aspects */ = {
            isa = PBXGroup;
            children = (
                B9BC990025C0FFBA00C024FE /* Aspects.h */,
                B9BC990125C0FFBA00C024FE /* Aspects.m */,
            );
            path = Aspects;
            sourceTree = "<group>";
        };
        B9BC990225C0FFBA00C024FE /* CustomUI */ = {
            isa = PBXGroup;
            children = (
                B9BC990325C0FFBA00C024FE /* NSDate-Utilities.h */,
                B9BC990425C0FFBA00C024FE /* EZQRView.m */,
                B9BC990525C0FFBA00C024FE /* EZRecordCell.h */,
                B9BC990625C0FFBA00C024FE /* HIKLoadPercentView.h */,
                B9BC990725C0FFBA00C024FE /* HIKLoadViewItem+configPath.h */,
                B9BC990825C0FFBA00C024FE /* HIKLoadViewItem.h */,
                B9BC990925C0FFBA00C024FE /* EZCustomTableView.m */,
                B9BC990A25C0FFBA00C024FE /* UIImageView+EzvizOpenSDK.m */,
                B9BC990B25C0FFBA00C024FE /* Toast+UIView.m */,
                B9BC990C25C0FFBA00C024FE /* HIKLoadView.h */,
                B9BC990D25C0FFBA00C024FE /* EZRecordCell.m */,
                B9BC990E25C0FFBA00C024FE /* EZQRView.h */,
                B9BC990F25C0FFBA00C024FE /* NSDate-Utilities.m */,
                B9BC991025C0FFBA00C024FE /* HIKLoadViewItem+configPath.m */,
                B9BC991125C0FFBA00C024FE /* HIKLoadPercentView.m */,
                B9BC991225C0FFBA00C024FE /* UIImageView+EzvizOpenSDK.h */,
                B9BC991325C0FFBA00C024FE /* EZCustomTableView.h */,
                B9BC991425C0FFBA00C024FE /* HIKLoadViewItem.m */,
                B9BC991525C0FFBA00C024FE /* HIKLoadView.m */,
                B9BC991625C0FFBA00C024FE /* Toast+UIView.h */,
            );
            path = CustomUI;
            sourceTree = "<group>";
        };
        B9BC991925C0FFBA00C024FE /* TableViewCells */ = {
            isa = PBXGroup;
            children = (
                B9BC991A25C0FFBA00C024FE /* CameraListCell.h */,
                B9BC991B25C0FFBA00C024FE /* DeviceListCell.h */,
                B9BC991C25C0FFBA00C024FE /* MessageListCell.h */,
                B9BC991D25C0FFBA00C024FE /* DeviceListCell.m */,
                B9BC991E25C0FFBA00C024FE /* CameraListCell.m */,
                B9BC991F25C0FFBA00C024FE /* MessageListCell.m */,
            );
            path = TableViewCells;
            sourceTree = "<group>";
        };
        B9BC992325C0FFBA00C024FE /* UIViewControllers */ = {
            isa = PBXGroup;
            children = (
                B9BC992F25C0FFBA00C024FE /* EZDeviceTableViewController.h */,
                B9BC994925C0FFBB00C024FE /* EZDeviceTableViewController.m */,
                B9BC996025C0FFBB00C024FE /* EZLivePlayViewController.h */,
                B9BC993925C0FFBA00C024FE /* EZLivePlayViewController.m */,
                B9BC993325C0FFBA00C024FE /* EZSettingViewController.h */,
                B9BC995825C0FFBB00C024FE /* EZSettingViewController.m */,
                B9BC994025C0FFBB00C024FE /* EZPlaybackViewController.h */,
                B9BC996A25C0FFBB00C024FE /* EZPlaybackViewController.m */,
                B9BC994625C0FFBB00C024FE /* EZEditViewController.h */,
                B9BC996525C0FFBB00C024FE /* EZEditViewController.m */,
                B9BC992425C0FFBA00C024FE /* EZWifiInfoViewController.h */,
                B9BC995525C0FFBB00C024FE /* EZWifiInfoViewController.m */,
                B9BC992525C0FFBA00C024FE /* EZCalendarViewController.h */,
                B9BC995425C0FFBB00C024FE /* EZCalendarViewController.m */,
                B9BC994B25C0FFBB00C024FE /* EZLocalCameraListViewController.h */,
                B9BC992E25C0FFBA00C024FE /* EZLocalCameraListViewController.m */,
                B9BC995725C0FFBB00C024FE /* EZLocalDeviceListViewController.h */,
                B9BC993425C0FFBA00C024FE /* EZLocalDeviceListViewController.m */,
                B9BC995025C0FFBB00C024FE /* EZCameraTableViewController.h */,
                B9BC992625C0FFBA00C024FE /* EZCameraTableViewController.m */,
                B9BC993025C0FFBA00C024FE /* EZWifiTipsViewController.h */,
                B9BC994A25C0FFBB00C024FE /* EZWifiTipsViewController.m */,
                B9BC994F25C0FFBB00C024FE /* EZWifiConfigViewController.h */,
                B9BC992725C0FFBA00C024FE /* EZWifiConfigViewController.m */,
                B9BC992825C0FFBA00C024FE /* VideoTalk */,
                B9BC994E25C0FFBB00C024FE /* EZMessagePlaybackViewController.h */,
                B9BC992B25C0FFBA00C024FE /* EZMessagePlaybackViewController.m */,
                B9BC994D25C0FFBB00C024FE /* EZMultiChannelRealPlayVC.h */,
                B9BC992C25C0FFBA00C024FE /* EZMultiChannelRealPlayVC.m */,
                B9BC994C25C0FFBB00C024FE /* EZDeviceUpgradeViewController.h */,
                B9BC992D25C0FFBA00C024FE /* EZDeviceUpgradeViewController.m */,
                B9BC994825C0FFBB00C024FE /* UIViewController+EZBackPop.h */,
                B9BC993125C0FFBA00C024FE /* UIViewController+EZBackPop.m */,
                B9BC993225C0FFBA00C024FE /* EZDdnsDeviceTableViewController.h */,
                B9BC995925C0FFBB00C024FE /* EZDdnsDeviceTableViewController.m */,
                B9BC995625C0FFBB00C024FE /* EZDeviceResultViewController.h */,
                B9BC993525C0FFBA00C024FE /* EZDeviceResultViewController.m */,
                B9BC993625C0FFBA00C024FE /* UIAlertController+TextField.h */,
                B9BC996325C0FFBB00C024FE /* UIAlertController+TextField.m */,
                B9BC996225C0FFBB00C024FE /* EZMessagePhotoViewController.h */,
                B9BC993725C0FFBA00C024FE /* EZMessagePhotoViewController.m */,
                B9BC996125C0FFBB00C024FE /* EZDeviceRestartTipsViewController.h */,
                B9BC993825C0FFBA00C024FE /* EZDeviceRestartTipsViewController.m */,
                B9BC995F25C0FFBB00C024FE /* EZLocalRealPlayViewController.h */,
                B9BC993A25C0FFBA00C024FE /* EZLocalRealPlayViewController.m */,
                B9BC993B25C0FFBA00C024FE /* EZMessageListViewController.h */,
                B9BC995E25C0FFBB00C024FE /* EZMessageListViewController.m */,
                B9BC993C25C0FFBB00C024FE /* UINavigationController+EZOpenSDK.h */,
                B9BC995D25C0FFBB00C024FE /* UINavigationController+EZOpenSDK.m */,
                B9BC995C25C0FFBB00C024FE /* EZInputSerialViewController.h */,
                B9BC993D25C0FFBB00C024FE /* EZInputSerialViewController.m */,
                B9BC995B25C0FFBB00C024FE /* EZLocationAlertVCViewController.m */,
                B9BC993E25C0FFBB00C024FE /* EZLocationAlertVCViewController.h */,
                B9BC995A25C0FFBB00C024FE /* EZAPConfigResultViewController.h */,
                B9BC993F25C0FFBB00C024FE /* EZAPConfigResultViewController.m */,
                B9BC994725C0FFBB00C024FE /* EZOnlineCameraCell.h */,
                B9BC994125C0FFBB00C024FE /* EZOfflineCameraCell.m */,
                B9BC996925C0FFBB00C024FE /* EZEncryptCameraCell.h */,
                B9BC994225C0FFBB00C024FE /* EZEncryptCameraCell.m */,
                B9BC996B25C0FFBB00C024FE /* EZOfflineCameraCell.h */,
                B9BC996425C0FFBB00C024FE /* EZOnlineCameraCell.m */,
                B9BC996825C0FFBB00C024FE /* EZHubDebugViewController.h */,
                B9BC994325C0FFBB00C024FE /* EZHubDebugViewController.m */,
                B9BC996725C0FFBB00C024FE /* EZAPWiFiConfigViewController.h */,
                B9BC994425C0FFBB00C024FE /* EZAPWiFiConfigViewController.m */,
                B9BC994525C0FFBB00C024FE /* EZAddByQRCodeViewController.h */,
                B9BC996625C0FFBB00C024FE /* EZAddByQRCodeViewController.m */,
                B9BC995125C0FFBB00C024FE /* Support */,
            );
            path = UIViewControllers;
            sourceTree = "<group>";
        };
        B9BC992825C0FFBA00C024FE /* VideoTalk */ = {
            isa = PBXGroup;
            children = (
                B9BC992925C0FFBA00C024FE /* EZVideoTalkViewcontroller.mm */,
                B9BC992A25C0FFBA00C024FE /* EZVideoTalkViewcontroller.h */,
            );
            path = VideoTalk;
            sourceTree = "<group>";
        };
        B9BC995125C0FFBB00C024FE /* Support */ = {
            isa = PBXGroup;
            children = (
                B9BC995225C0FFBB00C024FE /* EZSupportViewController.h */,
                B9BC995325C0FFBB00C024FE /* EZSupportViewController.m */,
            );
            path = Support;
            sourceTree = "<group>";
        };
        B9BC996F25C0FFBB00C024FE /* Global */ = {
            isa = PBXGroup;
            children = (
                B9BC997125C0FFBB00C024FE /* GlobalKit.h */,
                B9BC997025C0FFBB00C024FE /* GlobalKit.m */,
            );
            path = Global;
            sourceTree = "<group>";
        };
        B9BC997425C0FFBC00C024FE /* SDK */ = {
            isa = PBXGroup;
            children = (
                B9BC997525C0FFBC00C024FE /* include */,
                B9BC999A25C0FFBD00C024FE /* libEZOpenSDK.a */,
            );
            path = SDK;
            sourceTree = "<group>";
        };
        B9BC997525C0FFBC00C024FE /* include */ = {
            isa = PBXGroup;
            children = (
                B9BC997625C0FFBC00C024FE /* EZConstants.h */,
                B9BC997725C0FFBC00C024FE /* EZHCNetDeviceSDK.h */,
                B9BC997825C0FFBC00C024FE /* EZStreamPlayer.h */,
                B9BC997925C0FFBC00C024FE /* EZOpenSDK.h */,
                B9BC997A25C0FFBC00C024FE /* EZPlayer.h */,
                B9BC997B25C0FFBC00C024FE /* EZGlobalSDK.h */,
                B9BC997C25C0FFBC00C024FE /* modules */,
            );
            path = include;
            sourceTree = "<group>";
        };
        B9BC997C25C0FFBC00C024FE /* modules */ = {
            isa = PBXGroup;
            children = (
                B9BC997D25C0FFBC00C024FE /* EZDeviceVersion.h */,
                B9BC997E25C0FFBC00C024FE /* EZUserInfo.h */,
                B9BC997F25C0FFBC00C024FE /* EZDeviceUpgradeStatus.h */,
                B9BC998025C0FFBC00C024FE /* EZAccessToken.h */,
                B9BC998125C0FFBC00C024FE /* EZPlayerExParamInfo.h */,
                B9BC998225C0FFBC00C024FE /* EzvizWatchServerInfo.h */,
                B9BC998325C0FFBC00C024FE /* EZDeviceRecordDownloadTask.h */,
                B9BC998425C0FFBC00C024FE /* EzvizRecordFileInfo.h */,
                B9BC998525C0FFBC00C024FE /* EZDeviceRecordFile.h */,
                B9BC998625C0FFBC00C024FE /* EZLeaveMessage.h */,
                B9BC998725C0FFBC00C024FE /* EZHiddnsDeviceInfo.h */,
                B9BC998825C0FFBC00C024FE /* EZDeviceInfo.h */,
                B9BC998925C0FFBC00C024FE /* EZRecordDownloader.h */,
                B9BC998A25C0FFBC00C024FE /* EZRecordDownloadTask.h */,
                B9BC998B25C0FFBC00C024FE /* EZVideoTransformer.h */,
                B9BC998C25C0FFBC00C024FE /* EZTokenKit.h */,
                B9BC998D25C0FFBC00C024FE /* EZDetectorInfo.h */,
                B9BC998E25C0FFBC00C024FE /* EZHCNetDeviceInfo.h */,
                B9BC998F25C0FFBC00C024FE /* EZCameraInfo.h */,
                B9BC999025C0FFBC00C024FE /* EZCloudRecordFile.h */,
                B9BC999125C0FFBC00C024FE /* EZCloudRecordDownloadTask.h */,
                B9BC999225C0FFBC00C024FE /* EZAreaInfo.h */,
                B9BC999325C0FFBC00C024FE /* EZProbeDeviceInfo.h */,
                B9BC999425C0FFBD00C024FE /* EZVideoTalkSDK.h */,
                B9BC999525C0FFBD00C024FE /* EZVideoQualityInfo.h */,
                B9BC999625C0FFBD00C024FE /* EZAlarmInfo.h */,
                B9BC999725C0FFBD00C024FE /* EZVideoTalkParam.h */,
                B9BC999825C0FFBD00C024FE /* EZSADPDeviceInfo.h */,
                B9BC999925C0FFBD00C024FE /* EZStorageInfo.h */,
            );
            path = modules;
            sourceTree = "<group>";
        };
        B9EA4E5325C7E805000FFDA2 /* MJRefresh */ = {
            isa = PBXGroup;
            children = (
                B9EA4E5425C7E805000FFDA2 /* LICENSE */,
                B9EA4E5525C7E805000FFDA2 /* MJRefresh */,
                B9EA4E8425C7E806000FFDA2 /* README.md */,
            );
            path = MJRefresh;
            sourceTree = "<group>";
        };
        B9EA4E5525C7E805000FFDA2 /* MJRefresh */ = {
            isa = PBXGroup;
            children = (
                B9EA4E5625C7E805000FFDA2 /* UIScrollView+MJRefresh.m */,
                B9EA4E5725C7E805000FFDA2 /* MJRefreshConst.m */,
                B9EA4E5825C7E805000FFDA2 /* UIScrollView+MJExtension.h */,
                B9EA4E5925C7E805000FFDA2 /* MJRefresh.h */,
                B9EA4E5A25C7E805000FFDA2 /* NSBundle+MJRefresh.h */,
                B9EA4E5B25C7E805000FFDA2 /* MJRefresh.bundle */,
                B9EA4E5C25C7E805000FFDA2 /* UIView+MJExtension.h */,
                B9EA4E5D25C7E805000FFDA2 /* UIScrollView+MJExtension.m */,
                B9EA4E5E25C7E805000FFDA2 /* MJRefreshConst.h */,
                B9EA4E5F25C7E805000FFDA2 /* UIScrollView+MJRefresh.h */,
                B9EA4E6025C7E805000FFDA2 /* NSBundle+MJRefresh.m */,
                B9EA4E6125C7E805000FFDA2 /* UIView+MJExtension.m */,
                B9EA4E6225C7E805000FFDA2 /* Custom */,
                B9EA4E7925C7E806000FFDA2 /* Base */,
            );
            path = MJRefresh;
            sourceTree = "<group>";
        };
        B9EA4E6225C7E805000FFDA2 /* Custom */ = {
            isa = PBXGroup;
            children = (
                B9EA4E6325C7E805000FFDA2 /* Footer */,
                B9EA4E7225C7E806000FFDA2 /* Header */,
            );
            path = Custom;
            sourceTree = "<group>";
        };
        B9EA4E6325C7E805000FFDA2 /* Footer */ = {
            isa = PBXGroup;
            children = (
                B9EA4E6425C7E805000FFDA2 /* Back */,
                B9EA4E6B25C7E806000FFDA2 /* Auto */,
            );
            path = Footer;
            sourceTree = "<group>";
        };
        B9EA4E6425C7E805000FFDA2 /* Back */ = {
            isa = PBXGroup;
            children = (
                B9EA4E6525C7E805000FFDA2 /* MJRefreshBackGifFooter.h */,
                B9EA4E6625C7E805000FFDA2 /* MJRefreshBackStateFooter.h */,
                B9EA4E6725C7E805000FFDA2 /* MJRefreshBackNormalFooter.h */,
                B9EA4E6825C7E806000FFDA2 /* MJRefreshBackGifFooter.m */,
                B9EA4E6925C7E806000FFDA2 /* MJRefreshBackStateFooter.m */,
                B9EA4E6A25C7E806000FFDA2 /* MJRefreshBackNormalFooter.m */,
            );
            path = Back;
            sourceTree = "<group>";
        };
        B9EA4E6B25C7E806000FFDA2 /* Auto */ = {
            isa = PBXGroup;
            children = (
                B9EA4E6C25C7E806000FFDA2 /* MJRefreshAutoStateFooter.h */,
                B9EA4E6D25C7E806000FFDA2 /* MJRefreshAutoNormalFooter.h */,
                B9EA4E6E25C7E806000FFDA2 /* MJRefreshAutoGifFooter.h */,
                B9EA4E6F25C7E806000FFDA2 /* MJRefreshAutoStateFooter.m */,
                B9EA4E7025C7E806000FFDA2 /* MJRefreshAutoGifFooter.m */,
                B9EA4E7125C7E806000FFDA2 /* MJRefreshAutoNormalFooter.m */,
            );
            path = Auto;
            sourceTree = "<group>";
        };
        B9EA4E7225C7E806000FFDA2 /* Header */ = {
            isa = PBXGroup;
            children = (
                B9EA4E7325C7E806000FFDA2 /* MJRefreshNormalHeader.m */,
                B9EA4E7425C7E806000FFDA2 /* MJRefreshStateHeader.h */,
                B9EA4E7525C7E806000FFDA2 /* MJRefreshGifHeader.h */,
                B9EA4E7625C7E806000FFDA2 /* MJRefreshNormalHeader.h */,
                B9EA4E7725C7E806000FFDA2 /* MJRefreshStateHeader.m */,
                B9EA4E7825C7E806000FFDA2 /* MJRefreshGifHeader.m */,
            );
            path = Header;
            sourceTree = "<group>";
        };
        B9EA4E7925C7E806000FFDA2 /* Base */ = {
            isa = PBXGroup;
            children = (
                B9EA4E7A25C7E806000FFDA2 /* MJRefreshFooter.m */,
                B9EA4E7B25C7E806000FFDA2 /* MJRefreshComponent.h */,
                B9EA4E7C25C7E806000FFDA2 /* MJRefreshHeader.m */,
                B9EA4E7D25C7E806000FFDA2 /* MJRefreshAutoFooter.h */,
                B9EA4E7E25C7E806000FFDA2 /* MJRefreshBackFooter.m */,
                B9EA4E7F25C7E806000FFDA2 /* MJRefreshAutoFooter.m */,
                B9EA4E8025C7E806000FFDA2 /* MJRefreshHeader.h */,
                B9EA4E8125C7E806000FFDA2 /* MJRefreshComponent.m */,
                B9EA4E8225C7E806000FFDA2 /* MJRefreshFooter.h */,
                B9EA4E8325C7E806000FFDA2 /* MJRefreshBackFooter.h */,
            );
            path = Base;
            sourceTree = "<group>";
        };
/* End PBXGroup section */
 
/* Begin PBXNativeTarget section */
        B9BC92F925C0FC3500C024FE /* EZSDK */ = {
            isa = PBXNativeTarget;
            buildConfigurationList = B9BC930325C0FC3500C024FE /* Build configuration list for PBXNativeTarget "EZSDK" */;
            buildPhases = (
                B9BC92F625C0FC3500C024FE /* Sources */,
                B9BC92F725C0FC3500C024FE /* Frameworks */,
                B9BC92F825C0FC3500C024FE /* CopyFiles */,
            );
            buildRules = (
            );
            dependencies = (
            );
            name = EZSDK;
            productName = EZSDK;
            productReference = B9BC92FA25C0FC3500C024FE /* libEZSDK.a */;
            productType = "com.apple.product-type.library.static";
        };
/* End PBXNativeTarget section */
 
/* Begin PBXProject section */
        B9BC92F225C0FC3500C024FE /* Project object */ = {
            isa = PBXProject;
            attributes = {
                LastUpgradeCheck = 1220;
                TargetAttributes = {
                    B9BC92F925C0FC3500C024FE = {
                        CreatedOnToolsVersion = 12.2;
                    };
                };
            };
            buildConfigurationList = B9BC92F525C0FC3500C024FE /* Build configuration list for PBXProject "EZSDK" */;
            compatibilityVersion = "Xcode 9.3";
            developmentRegion = en;
            hasScannedForEncodings = 0;
            knownRegions = (
                en,
                Base,
            );
            mainGroup = B9BC92F125C0FC3500C024FE;
            productRefGroup = B9BC92FB25C0FC3500C024FE /* Products */;
            projectDirPath = "";
            projectRoot = "";
            targets = (
                B9BC92F925C0FC3500C024FE /* EZSDK */,
            );
        };
/* End PBXProject section */
 
/* Begin PBXSourcesBuildPhase section */
        B9BC92F625C0FC3500C024FE /* Sources */ = {
            isa = PBXSourcesBuildPhase;
            buildActionMask = 2147483647;
            files = (
                B9BC99D225C0FFBD00C024FE /* UIButton+DDKit.m in Sources */,
                B9EA4E9325C7E806000FFDA2 /* MJRefreshFooter.m in Sources */,
                B9BC99F125C0FFBD00C024FE /* UIImageView+WebCache.m in Sources */,
                B9BC99DA25C0FFBD00C024FE /* AFURLResponseSerialization.m in Sources */,
                B9BC99D525C0FFBD00C024FE /* UIRefreshControl+AFNetworking.m in Sources */,
                B9BC99D425C0FFBD00C024FE /* UIProgressView+AFNetworking.m in Sources */,
                B9BC9A0025C0FFBD00C024FE /* HIKLoadView.m in Sources */,
                B9EA4E8D25C7E806000FFDA2 /* MJRefreshAutoStateFooter.m in Sources */,
                B9BC99E225C0FFBD00C024FE /* AFSecurityPolicy.m in Sources */,
                B9BC99F025C0FFBD00C024FE /* NSData+ImageContentType.m in Sources */,
                B9BC99B425C0FFBD00C024FE /* UIView+Toast.m in Sources */,
                B9BC99C925C0FFBD00C024FE /* UISegmentedControl+DDKit.m in Sources */,
                B9BC99DB25C0FFBD00C024FE /* AFHTTPSessionManager.m in Sources */,
                B9BC99D325C0FFBD00C024FE /* UIAlertView+AFNetworking.m in Sources */,
                B9BC99EA25C0FFBD00C024FE /* UIImage+GIF.m in Sources */,
                B9BC99E825C0FFBD00C024FE /* UIImageView+HighlightedWebCache.m in Sources */,
                B9EA4E8C25C7E806000FFDA2 /* MJRefreshBackNormalFooter.m in Sources */,
                B9BC9A2125C0FFBD00C024FE /* EZLocationAlertVCViewController.m in Sources */,
                B9BC99D025C0FFBD00C024FE /* UIViewController+DDKit.m in Sources */,
                B9BC99F625C0FFBD00C024FE /* Aspects.m in Sources */,
                B9EA4E8925C7E806000FFDA2 /* UIView+MJExtension.m in Sources */,
                B9BC99FA25C0FFBD00C024FE /* Toast+UIView.m in Sources */,
                B9BC9A1525C0FFBD00C024FE /* EZAPConfigResultViewController.m in Sources */,
                B9BC9A1025C0FFBD00C024FE /* EZMessagePhotoViewController.m in Sources */,
                B9BC999C25C0FFBD00C024FE /* UITableView+FDKeyedHeightCache.m in Sources */,
                B9BC9A1725C0FFBD00C024FE /* EZEncryptCameraCell.m in Sources */,
                B9BC9A0A25C0FFBD00C024FE /* EZMultiChannelRealPlayVC.m in Sources */,
                B9BC99F825C0FFBD00C024FE /* EZCustomTableView.m in Sources */,
                B9BC9A2625C0FFBD00C024FE /* EZEditViewController.m in Sources */,
                B9BC9A2525C0FFBD00C024FE /* EZOnlineCameraCell.m in Sources */,
                B9BC999B25C0FFBD00C024FE /* UITableView+FDTemplateLayoutCell.m in Sources */,
                B9BC9A0325C0FFBD00C024FE /* CameraListCell.m in Sources */,
                B9EA4E9025C7E806000FFDA2 /* MJRefreshNormalHeader.m in Sources */,
                B9EA4E8825C7E806000FFDA2 /* NSBundle+MJRefresh.m in Sources */,
                B9EA4E8725C7E806000FFDA2 /* UIScrollView+MJExtension.m in Sources */,
                B9BC9A0225C0FFBD00C024FE /* DeviceListCell.m in Sources */,
                B9BC9A1825C0FFBD00C024FE /* EZHubDebugViewController.m in Sources */,
                B9BC9A2325C0FFBD00C024FE /* EZMessageListViewController.m in Sources */,
                B9BC99B725C0FFBD00C024FE /* MWZoomingScrollView.m in Sources */,
                B9EA4E8A25C7E806000FFDA2 /* MJRefreshBackGifFooter.m in Sources */,
                B9BC99B625C0FFBD00C024FE /* MWCaptionView.m in Sources */,
                B9BC9A0B25C0FFBD00C024FE /* EZDeviceUpgradeViewController.m in Sources */,
                B9BC9A0C25C0FFBD00C024FE /* EZLocalCameraListViewController.m in Sources */,
                B9BC99B525C0FFBD00C024FE /* MWPhotoBrowser.m in Sources */,
                B9BC99CD25C0FFBD00C024FE /* NSArray+DDKit.m in Sources */,
                B9BC999D25C0FFBD00C024FE /* UITableView+FDTemplateLayoutCellDebug.m in Sources */,
                B9BC999E25C0FFBD00C024FE /* UITableView+FDIndexPathHeightCache.m in Sources */,
                B9BC99F325C0FFBD00C024FE /* UIButton+WebCache.m in Sources */,
                B9BC99B925C0FFBD00C024FE /* MWTapDetectingImageView.m in Sources */,
                B9BC99DE25C0FFBD00C024FE /* AFHTTPRequestOperationManager.m in Sources */,
                B9BC999F25C0FFBD00C024FE /* DALabeledCircularProgressView.m in Sources */,
                B9BC99B825C0FFBD00C024FE /* UIImage+MWPhotoBrowser.m in Sources */,
                B9BC99E025C0FFBD00C024FE /* AFHTTPRequestOperation.m in Sources */,
                B9BC99CB25C0FFBD00C024FE /* UILabel+DDKit.m in Sources */,
                B9BC99F925C0FFBD00C024FE /* UIImageView+EzvizOpenSDK.m in Sources */,
                B9BC9A2425C0FFBD00C024FE /* UIAlertController+TextField.m in Sources */,
                B9EA4E9625C7E806000FFDA2 /* MJRefreshAutoFooter.m in Sources */,
                B9BC9A1225C0FFBD00C024FE /* EZLivePlayViewController.m in Sources */,
                B9BC99ED25C0FFBD00C024FE /* SDWebImagePrefetcher.m in Sources */,
                B9BC99A025C0FFBD00C024FE /* DACircularProgressView.m in Sources */,
                B9BC99CE25C0FFBD00C024FE /* NSString+DDKit.m in Sources */,
                B9BC9A0825C0FFBD00C024FE /* EZVideoTalkViewcontroller.mm in Sources */,
                B9BC9A0925C0FFBD00C024FE /* EZMessagePlaybackViewController.m in Sources */,
                B9BC956225C0FC6C00C024FE /* DeviceInfo.m in Sources */,
                B9BC99D825C0FFBD00C024FE /* UIButton+AFNetworking.m in Sources */,
                B9BC99C825C0FFBD00C024FE /* UIView+DDKit.m in Sources */,
                B9BC99FE25C0FFBD00C024FE /* HIKLoadPercentView.m in Sources */,
                B9BC99BC25C0FFBD00C024FE /* MWGridViewController.m in Sources */,
                B9BC99EB25C0FFBD00C024FE /* UIImage+MultiFormat.m in Sources */,
                B9BC99F225C0FFBD00C024FE /* UIView+WebCacheOperation.m in Sources */,
                B9BC9A1425C0FFBD00C024FE /* EZInputSerialViewController.m in Sources */,
                B9BC99DD25C0FFBD00C024FE /* AFURLSessionManager.m in Sources */,
                B9BC9A1A25C0FFBD00C024FE /* EZDeviceTableViewController.m in Sources */,
                B9BC99D625C0FFBD00C024FE /* AFNetworkActivityIndicatorManager.m in Sources */,
                B9BC99EF25C0FFBD00C024FE /* SDWebImageDownloaderOperation.m in Sources */,
                B9BC99BD25C0FFBD00C024FE /* MWGridCell.m in Sources */,
                B9BC9A0E25C0FFBD00C024FE /* EZLocalDeviceListViewController.m in Sources */,
                B9BC9A1125C0FFBD00C024FE /* EZDeviceRestartTipsViewController.m in Sources */,
                B9BC99CA25C0FFBD00C024FE /* UIImageView+DDKit.m in Sources */,
                B9BC9A2825C0FFBD00C024FE /* EZPlaybackViewController.m in Sources */,
                B9BC9A1C25C0FFBD00C024FE /* EZSupportViewController.m in Sources */,
                B9BC92FF25C0FC3500C024FE /* EZSDK.m in Sources */,
                B9BC99BA25C0FFBD00C024FE /* MWPhoto.m in Sources */,
                B9BC9A1D25C0FFBD00C024FE /* EZCalendarViewController.m in Sources */,
                B9BC9A2925C0FFBD00C024FE /* GlobalKit.m in Sources */,
                B9BC99E625C0FFBD00C024FE /* SDWebImageManager.m in Sources */,
                B9BC99EC25C0FFBD00C024FE /* SDWebImageCompat.m in Sources */,
                B9BC99E125C0FFBD00C024FE /* AFNetworkReachabilityManager.m in Sources */,
                B9BC9A1B25C0FFBD00C024FE /* EZWifiTipsViewController.m in Sources */,
                B9BC99D925C0FFBD00C024FE /* UIActivityIndicatorView+AFNetworking.m in Sources */,
                B9BC9A0725C0FFBD00C024FE /* EZWifiConfigViewController.m in Sources */,
                B9BC9A1325C0FFBD00C024FE /* EZLocalRealPlayViewController.m in Sources */,
                B9BC9A2725C0FFBD00C024FE /* EZAddByQRCodeViewController.m in Sources */,
                B9BC99FC25C0FFBD00C024FE /* NSDate-Utilities.m in Sources */,
                B9BC9A0425C0FFBD00C024FE /* MessageListCell.m in Sources */,
                B9EA4E8525C7E806000FFDA2 /* UIScrollView+MJRefresh.m in Sources */,
                B9BC99DF25C0FFBD00C024FE /* AFURLRequestSerialization.m in Sources */,
                B9BC99E925C0FFBD00C024FE /* SDWebImageDownloader.m in Sources */,
                B9BC99FF25C0FFBD00C024FE /* HIKLoadViewItem.m in Sources */,
                B9BC99D125C0FFBD00C024FE /* NSDate+DDKit.m in Sources */,
                B9BC9A1625C0FFBD00C024FE /* EZOfflineCameraCell.m in Sources */,
                B9BC99CC25C0FFBD00C024FE /* UIColor+DDKit.m in Sources */,
                B9BC99DC25C0FFBD00C024FE /* AFURLConnectionOperation.m in Sources */,
                B9BC99E525C0FFBD00C024FE /* MKAnnotationView+WebCache.m in Sources */,
                B9BC9A0F25C0FFBD00C024FE /* EZDeviceResultViewController.m in Sources */,
                B9BC99E425C0FFBD00C024FE /* UIImage+WebP.m in Sources */,
                B9EA4E8E25C7E806000FFDA2 /* MJRefreshAutoGifFooter.m in Sources */,
                B9BC99FB25C0FFBD00C024FE /* EZRecordCell.m in Sources */,
                B9BC9A0625C0FFBD00C024FE /* EZCameraTableViewController.m in Sources */,
                B9EA4E8625C7E806000FFDA2 /* MJRefreshConst.m in Sources */,
                B9BC99FD25C0FFBD00C024FE /* HIKLoadViewItem+configPath.m in Sources */,
                B9BC99E325C0FFBD00C024FE /* MBProgressHUD.m in Sources */,
                B9EA4E8F25C7E806000FFDA2 /* MJRefreshAutoNormalFooter.m in Sources */,
                B9BC99BB25C0FFBD00C024FE /* MWTapDetectingView.m in Sources */,
                B9BC99F725C0FFBD00C024FE /* EZQRView.m in Sources */,
                B9BC9A1F25C0FFBD00C024FE /* EZSettingViewController.m in Sources */,
                B9EA4E9725C7E806000FFDA2 /* MJRefreshComponent.m in Sources */,
                B9BC9A2025C0FFBD00C024FE /* EZDdnsDeviceTableViewController.m in Sources */,
                B9BC99CF25C0FFBD00C024FE /* UIImage+DDKit.m in Sources */,
                B9BC9A0D25C0FFBD00C024FE /* UIViewController+EZBackPop.m in Sources */,
                B9EA4E9525C7E806000FFDA2 /* MJRefreshBackFooter.m in Sources */,
                B9BC9A2225C0FFBD00C024FE /* UINavigationController+EZOpenSDK.m in Sources */,
                B9BC99E725C0FFBD00C024FE /* SDWebImageDecoder.m in Sources */,
                B9EA4E9225C7E806000FFDA2 /* MJRefreshGifHeader.m in Sources */,
                B9BC99EE25C0FFBD00C024FE /* SDImageCache.m in Sources */,
                B9BC99D725C0FFBD00C024FE /* UIImageView+AFNetworking.m in Sources */,
                B9EA4E9125C7E806000FFDA2 /* MJRefreshStateHeader.m in Sources */,
                B9EA4E9425C7E806000FFDA2 /* MJRefreshHeader.m in Sources */,
                B9EA4E8B25C7E806000FFDA2 /* MJRefreshBackStateFooter.m in Sources */,
                B9BC99A125C0FFBD00C024FE /* DDCollectionViewFlowLayout.m in Sources */,
                B9BC9A1E25C0FFBD00C024FE /* EZWifiInfoViewController.m in Sources */,
                B9BC9A1925C0FFBD00C024FE /* EZAPWiFiConfigViewController.m in Sources */,
            );
            runOnlyForDeploymentPostprocessing = 0;
        };
/* End PBXSourcesBuildPhase section */
 
/* Begin XCBuildConfiguration section */
        B9BC930125C0FC3500C024FE /* Debug */ = {
            isa = XCBuildConfiguration;
            buildSettings = {
                ALWAYS_SEARCH_USER_PATHS = NO;
                CLANG_ANALYZER_NONNULL = YES;
                CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
                CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
                CLANG_CXX_LIBRARY = "libc++";
                CLANG_ENABLE_MODULES = YES;
                CLANG_ENABLE_OBJC_ARC = YES;
                CLANG_ENABLE_OBJC_WEAK = YES;
                CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
                CLANG_WARN_BOOL_CONVERSION = YES;
                CLANG_WARN_COMMA = YES;
                CLANG_WARN_CONSTANT_CONVERSION = YES;
                CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
                CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
                CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
                CLANG_WARN_EMPTY_BODY = YES;
                CLANG_WARN_ENUM_CONVERSION = YES;
                CLANG_WARN_INFINITE_RECURSION = YES;
                CLANG_WARN_INT_CONVERSION = YES;
                CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
                CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
                CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
                CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
                CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
                CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
                CLANG_WARN_STRICT_PROTOTYPES = YES;
                CLANG_WARN_SUSPICIOUS_MOVE = YES;
                CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
                CLANG_WARN_UNREACHABLE_CODE = YES;
                CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
                COPY_PHASE_STRIP = NO;
                DEBUG_INFORMATION_FORMAT = dwarf;
                ENABLE_STRICT_OBJC_MSGSEND = YES;
                ENABLE_TESTABILITY = YES;
                GCC_C_LANGUAGE_STANDARD = gnu99;
                GCC_DYNAMIC_NO_PIC = NO;
                GCC_NO_COMMON_BLOCKS = YES;
                GCC_OPTIMIZATION_LEVEL = 0;
                GCC_PREPROCESSOR_DEFINITIONS = (
                    "DEBUG=1",
                    "$(inherited)",
                );
                GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
                GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
                GCC_WARN_UNDECLARED_SELECTOR = YES;
                GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
                GCC_WARN_UNUSED_FUNCTION = YES;
                GCC_WARN_UNUSED_VARIABLE = YES;
                IPHONEOS_DEPLOYMENT_TARGET = 10.0;
                MACH_O_TYPE = staticlib;
                MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
                MTL_FAST_MATH = YES;
                ONLY_ACTIVE_ARCH = YES;
                SDKROOT = iphoneos;
            };
            name = Debug;
        };
        B9BC930225C0FC3500C024FE /* Release */ = {
            isa = XCBuildConfiguration;
            buildSettings = {
                ALWAYS_SEARCH_USER_PATHS = NO;
                CLANG_ANALYZER_NONNULL = YES;
                CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
                CLANG_CXX_LANGUAGE_STANDARD = "gnu++14";
                CLANG_CXX_LIBRARY = "libc++";
                CLANG_ENABLE_MODULES = YES;
                CLANG_ENABLE_OBJC_ARC = YES;
                CLANG_ENABLE_OBJC_WEAK = YES;
                CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
                CLANG_WARN_BOOL_CONVERSION = YES;
                CLANG_WARN_COMMA = YES;
                CLANG_WARN_CONSTANT_CONVERSION = YES;
                CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
                CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
                CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
                CLANG_WARN_EMPTY_BODY = YES;
                CLANG_WARN_ENUM_CONVERSION = YES;
                CLANG_WARN_INFINITE_RECURSION = YES;
                CLANG_WARN_INT_CONVERSION = YES;
                CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
                CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
                CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
                CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
                CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
                CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
                CLANG_WARN_STRICT_PROTOTYPES = YES;
                CLANG_WARN_SUSPICIOUS_MOVE = YES;
                CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
                CLANG_WARN_UNREACHABLE_CODE = YES;
                CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
                COPY_PHASE_STRIP = NO;
                DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
                ENABLE_NS_ASSERTIONS = NO;
                ENABLE_STRICT_OBJC_MSGSEND = YES;
                GCC_C_LANGUAGE_STANDARD = gnu99;
                GCC_NO_COMMON_BLOCKS = YES;
                GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
                GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
                GCC_WARN_UNDECLARED_SELECTOR = YES;
                GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
                GCC_WARN_UNUSED_FUNCTION = YES;
                GCC_WARN_UNUSED_VARIABLE = YES;
                IPHONEOS_DEPLOYMENT_TARGET = 10.0;
                MACH_O_TYPE = staticlib;
                MTL_ENABLE_DEBUG_INFO = NO;
                MTL_FAST_MATH = YES;
                SDKROOT = iphoneos;
                VALIDATE_PRODUCT = YES;
            };
            name = Release;
        };
        B9BC930425C0FC3500C024FE /* Debug */ = {
            isa = XCBuildConfiguration;
            buildSettings = {
                CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
                CODE_SIGN_STYLE = Automatic;
                DEVELOPMENT_TEAM = 259RU5K4MU;
                ENABLE_BITCODE = NO;
                GCC_C_LANGUAGE_STANDARD = gnu99;
                GCC_NO_COMMON_BLOCKS = YES;
                GCC_PREFIX_HEADER = "$(PROJECT_DIR)/EZSDK/EZ/PrefixHeader.pch";
                HEADER_SEARCH_PATHS = "$(inherited)";
                LIBRARY_SEARCH_PATHS = (
                    "$(PROJECT_DIR)/EZSDK/EZ/Venders/openssl/lib",
                    "$(PROJECT_DIR)/EZSDK/SDK",
                );
                OTHER_CFLAGS = "-mfpu=neon";
                OTHER_LDFLAGS = "-ObjC";
                PRODUCT_NAME = "$(TARGET_NAME)";
                SKIP_INSTALL = YES;
                TARGETED_DEVICE_FAMILY = "1,2";
            };
            name = Debug;
        };
        B9BC930525C0FC3500C024FE /* Release */ = {
            isa = XCBuildConfiguration;
            buildSettings = {
                CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
                CODE_SIGN_STYLE = Automatic;
                DEVELOPMENT_TEAM = 259RU5K4MU;
                ENABLE_BITCODE = NO;
                GCC_C_LANGUAGE_STANDARD = gnu99;
                GCC_NO_COMMON_BLOCKS = YES;
                GCC_PREFIX_HEADER = "$(PROJECT_DIR)/EZSDK/EZ/PrefixHeader.pch";
                HEADER_SEARCH_PATHS = "$(inherited)";
                LIBRARY_SEARCH_PATHS = (
                    "$(PROJECT_DIR)/EZSDK/EZ/Venders/openssl/lib",
                    "$(PROJECT_DIR)/EZSDK/SDK",
                );
                OTHER_CFLAGS = "-mfpu=neon";
                OTHER_LDFLAGS = "-ObjC";
                PRODUCT_NAME = "$(TARGET_NAME)";
                SKIP_INSTALL = YES;
                TARGETED_DEVICE_FAMILY = "1,2";
            };
            name = Release;
        };
/* End XCBuildConfiguration section */
 
/* Begin XCConfigurationList section */
        B9BC92F525C0FC3500C024FE /* Build configuration list for PBXProject "EZSDK" */ = {
            isa = XCConfigurationList;
            buildConfigurations = (
                B9BC930125C0FC3500C024FE /* Debug */,
                B9BC930225C0FC3500C024FE /* Release */,
            );
            defaultConfigurationIsVisible = 0;
            defaultConfigurationName = Release;
        };
        B9BC930325C0FC3500C024FE /* Build configuration list for PBXNativeTarget "EZSDK" */ = {
            isa = XCConfigurationList;
            buildConfigurations = (
                B9BC930425C0FC3500C024FE /* Debug */,
                B9BC930525C0FC3500C024FE /* Release */,
            );
            defaultConfigurationIsVisible = 0;
            defaultConfigurationName = Release;
        };
/* End XCConfigurationList section */
    };
    rootObject = B9BC92F225C0FC3500C024FE /* Project object */;
}