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
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
801230F21DD30704008C7904 /* KWMSearchBrandsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 801230F01DD30704008C7904 /* KWMSearchBrandsCell.m */; };
801230F31DD30704008C7904 /* KWMSearchBrandsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 801230F11DD30704008C7904 /* KWMSearchBrandsCell.xib */; };
801230F61DD32B39008C7904 /* KWMInformationView.m in Sources */ = {isa = PBXBuildFile; fileRef = 801230F51DD32B39008C7904 /* KWMInformationView.m */; };
801230F81DD32B49008C7904 /* KWMInformationView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 801230F71DD32B49008C7904 /* KWMInformationView.xib */; };
8019E9541DC89CF300CAD7BF /* KWMNewGoodsModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 8019E9531DC89CF300CAD7BF /* KWMNewGoodsModel.m */; };
801F87BC1DD1A9B90038FA4C /* KWMNewProducts.m in Sources */ = {isa = PBXBuildFile; fileRef = 801F87BB1DD1A9B90038FA4C /* KWMNewProducts.m */; };
801F87BF1DD1D6850038FA4C /* KWMLoadStatus.m in Sources */ = {isa = PBXBuildFile; fileRef = 801F87BE1DD1D6850038FA4C /* KWMLoadStatus.m */; };
8031DA991D8268CD00349869 /* KWMForgetPasswordVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 8031DA981D8268CD00349869 /* KWMForgetPasswordVC.m */; };
8045F30E1D94C6BF0042B15A /* libsqlite3.0.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = 8045F30D1D94C6BF0042B15A /* libsqlite3.0.tbd */; };
8047717B1D6D31FD0086B4DC /* KWMBrandVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 8047717A1D6D31FD0086B4DC /* KWMBrandVC.m */; };
804771801D6D326D0086B4DC /* KWMLoginVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 8047717F1D6D326D0086B4DC /* KWMLoginVC.m */; };
804771821D6D32A70086B4DC /* Login.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 804771811D6D32A70086B4DC /* Login.storyboard */; };
804771851D6D585B0086B4DC /* KWMValidationVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 804771841D6D585B0086B4DC /* KWMValidationVC.m */; };
804771881D6D769C0086B4DC /* KWMEmailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 804771871D6D769C0086B4DC /* KWMEmailVC.m */; };
80537ADB1D86A7E100AB5122 /* KWMUserModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 80537ADA1D86A7E100AB5122 /* KWMUserModel.m */; };
80598D471D99193400BF0F97 /* KWMInformationVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 80598D461D99193400BF0F97 /* KWMInformationVC.m */; };
805C04351DD1FA4900ACC071 /* KWMBrandsTypeModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 805C04341DD1FA4900ACC071 /* KWMBrandsTypeModel.m */; };
805C04381DD1FA7100ACC071 /* KWMBrandsTypeResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 805C04371DD1FA7100ACC071 /* KWMBrandsTypeResult.m */; };
8077F7961D73D2D700A2E2E2 /* KWMBrandCaramelVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 8077F7951D73D2D700A2E2E2 /* KWMBrandCaramelVC.m */; };
8077F79A1D73E39000A2E2E2 /* KWMBrandCaramelCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 8077F7981D73E39000A2E2E2 /* KWMBrandCaramelCell.m */; };
8077F79B1D73E39000A2E2E2 /* KWMBrandCaramelCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8077F7991D73E39000A2E2E2 /* KWMBrandCaramelCell.xib */; };
807806871D7566DD00FD2841 /* NSString+PinYin.m in Sources */ = {isa = PBXBuildFile; fileRef = 807806861D7566DD00FD2841 /* NSString+PinYin.m */; };
8078068A1D75680600FD2841 /* KWMSearchBrandVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 807806891D75680600FD2841 /* KWMSearchBrandVC.m */; };
807AF4A21DC984950000A326 /* KWMArticlesResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 807AF4951DC984950000A326 /* KWMArticlesResult.m */; };
807AF4A31DC984950000A326 /* KWMBlogResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 807AF4971DC984950000A326 /* KWMBlogResult.m */; };
807AF4A41DC984950000A326 /* KWMBrandsResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 807AF4991DC984950000A326 /* KWMBrandsResult.m */; };
807AF4A51DC984950000A326 /* KWMCustomerResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 807AF49B1DC984950000A326 /* KWMCustomerResult.m */; };
807AF4A61DC984950000A326 /* KWMDataProduct.m in Sources */ = {isa = PBXBuildFile; fileRef = 807AF49D1DC984950000A326 /* KWMDataProduct.m */; };
807AF4A71DC984950000A326 /* KWMProducts.m in Sources */ = {isa = PBXBuildFile; fileRef = 807AF49F1DC984950000A326 /* KWMProducts.m */; };
807AF4A81DC984950000A326 /* KWMSearchResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 807AF4A11DC984950000A326 /* KWMSearchResult.m */; };
8091DFA11D6E878C0020519C /* KWMGuideVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 8091DFA01D6E878C0020519C /* KWMGuideVC.m */; };
8091DFA31D6E8CCA0020519C /* Guide.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 8091DFA21D6E8CCA0020519C /* Guide.storyboard */; };
8091DFA61D6EA0840020519C /* KWMLastView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8091DFA51D6EA0840020519C /* KWMLastView.xib */; };
8091DFAC1D6EA11E0020519C /* KWMLastView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8091DFAB1D6EA11E0020519C /* KWMLastView.m */; };
8091DFAE1D6EA6DC0020519C /* KWMFirstView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8091DFAD1D6EA6DC0020519C /* KWMFirstView.xib */; };
8091DFB01D6EAD6F0020519C /* KWMSecondView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8091DFAF1D6EAD6F0020519C /* KWMSecondView.xib */; };
8091DFB31D6EADE60020519C /* KWMSecondView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8091DFB21D6EADE60020519C /* KWMSecondView.m */; };
8091DFB61D6EADFB0020519C /* KWMFirstView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8091DFB51D6EADFB0020519C /* KWMFirstView.m */; };
8091DFB81D6EC1C60020519C /* KWMThreeView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 8091DFB71D6EC1C60020519C /* KWMThreeView.xib */; };
8091DFBB1D6EC1DD0020519C /* KWMThreeView.m in Sources */ = {isa = PBXBuildFile; fileRef = 8091DFBA1D6EC1DD0020519C /* KWMThreeView.m */; };
80A611AF1D6DB0CD00709E09 /* ShopCart.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 80A611AE1D6DB0CD00709E09 /* ShopCart.storyboard */; };
80A611B21D6DB0EC00709E09 /* KWMShopCartVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 80A611B11D6DB0EC00709E09 /* KWMShopCartVC.m */; };
80C8014F1D78134800002306 /* KWMTBVSectionHeardView.m in Sources */ = {isa = PBXBuildFile; fileRef = 80C8014E1D78134800002306 /* KWMTBVSectionHeardView.m */; };
80C801511D78136400002306 /* KWMTBVSectionHeardView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 80C801501D78136400002306 /* KWMTBVSectionHeardView.xib */; };
80DD275B1DC2FE6800CDC5B5 /* Home.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 80DD275A1DC2FE6800CDC5B5 /* Home.storyboard */; };
80DD275E1DC2FF2200CDC5B5 /* KWMBlogDetailVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 80DD275D1DC2FF2200CDC5B5 /* KWMBlogDetailVC.m */; };
80E65A7E1D95383E0084610B /* Contacts.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 80E65A7C1D95383E0084610B /* Contacts.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
80E65A7F1D95383E0084610B /* ContactsUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 80E65A7D1D95383E0084610B /* ContactsUI.framework */; settings = {ATTRIBUTES = (Weak, ); }; };
80E844271D7FB0FF0042AED2 /* KWMRuleView.m in Sources */ = {isa = PBXBuildFile; fileRef = 80E844261D7FB0FF0042AED2 /* KWMRuleView.m */; };
80E844291D7FB1130042AED2 /* KWMRuleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = 80E844281D7FB1130042AED2 /* KWMRuleView.xib */; };
80ED0A371D93840A00B28DF2 /* DB_shopCart.xcdatamodeld in Sources */ = {isa = PBXBuildFile; fileRef = 80ED0A351D93840A00B28DF2 /* DB_shopCart.xcdatamodeld */; };
80ED0A481D93B82F00B28DF2 /* KWMShopCartItem+CoreDataClass.m in Sources */ = {isa = PBXBuildFile; fileRef = 80ED0A451D93B82F00B28DF2 /* KWMShopCartItem+CoreDataClass.m */; };
80ED0A491D93B82F00B28DF2 /* KWMShopCartItem+CoreDataProperties.m in Sources */ = {isa = PBXBuildFile; fileRef = 80ED0A471D93B82F00B28DF2 /* KWMShopCartItem+CoreDataProperties.m */; };
80ED0A4C1D93B99E00B28DF2 /* KWMShopCartData.m in Sources */ = {isa = PBXBuildFile; fileRef = 80ED0A4B1D93B99E00B28DF2 /* KWMShopCartData.m */; };
80ED0A4F1D93BD0E00B28DF2 /* KWMShopCartModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 80ED0A4E1D93BD0E00B28DF2 /* KWMShopCartModel.m */; };
80F82E4F1D701F82008B470B /* Brand.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 80F82E4E1D701F82008B470B /* Brand.storyboard */; };
80F82E581D7033D0008B470B /* KWMBrandModel.m in Sources */ = {isa = PBXBuildFile; fileRef = 80F82E571D7033D0008B470B /* KWMBrandModel.m */; };
80F82E611D704E34008B470B /* KWMBrandCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 80F82E5F1D704E34008B470B /* KWMBrandCell.m */; };
80F82E621D704E34008B470B /* KWMBrandCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 80F82E601D704E34008B470B /* KWMBrandCell.xib */; };
80FBF7E18C063DB9E8DC7502 /* libPods-iCemarose.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 450DA8BB947651E9A9B38BEB /* libPods-iCemarose.a */; };
9B01488B1EF3B5330056D937 /* KWMSelectCurrencyVC.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B01488A1EF3B5330056D937 /* KWMSelectCurrencyVC.m */; };
9B01488E1EF3B8760056D937 /* KWMSelectCurrencyCell.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B01488D1EF3B8760056D937 /* KWMSelectCurrencyCell.m */; };
9B0F56B81ECD3424009FC5FE /* UIViewController+AppearLog.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B0F56B71ECD3424009FC5FE /* UIViewController+AppearLog.m */; };
9B166F511ED6DBCF003E9F03 /* KWMHttpUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B166F501ED6DBCF003E9F03 /* KWMHttpUtil.m */; };
9B18C11F1EF1270A001DD59B /* BUYProductVariant+Currency.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B18C11E1EF1270A001DD59B /* BUYProductVariant+Currency.m */; };
9B53D5D71EE94739005BA6F7 /* KWMValidateUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B53D5D61EE94739005BA6F7 /* KWMValidateUtil.m */; };
9B8298E31EF22BE200743438 /* KWMCurrencyUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B8298E21EF22BE200743438 /* KWMCurrencyUtil.m */; };
9B8298E61EF237FC00743438 /* NSDecimalNumber+Currency.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B8298E51EF237FC00743438 /* NSDecimalNumber+Currency.m */; };
9BE61CFB1ECD56E70031D21E /* KWMDictioaryResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BE61CFA1ECD56E70031D21E /* KWMDictioaryResult.m */; };
9BE61CFE1ECD66BC0031D21E /* KWMShoppingCart.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BE61CFD1ECD66BC0031D21E /* KWMShoppingCart.m */; };
9BE61D011ECD71610031D21E /* KWMCartResult.m in Sources */ = {isa = PBXBuildFile; fileRef = 9BE61D001ECD71610031D21E /* KWMCartResult.m */; };
C001BA5C1EB2ED5500B366A8 /* KWMImageBlurUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C001BA5B1EB2ED5500B366A8 /* KWMImageBlurUtil.m */; };
C0028EC51F0DD19C00744C14 /* KWMAdditionalResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C0028EC41F0DD19C00744C14 /* KWMAdditionalResult.m */; };
C0028EC81F0DE80500744C14 /* KWMWish.m in Sources */ = {isa = PBXBuildFile; fileRef = C0028EC71F0DE80500744C14 /* KWMWish.m */; };
C0028ECB1F0E2B3500744C14 /* KWMAdditionalListResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C0028ECA1F0E2B3500744C14 /* KWMAdditionalListResult.m */; };
C00D40941F187C9500DEA685 /* KWMCategoryTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C00D40931F187C9500DEA685 /* KWMCategoryTitleView.xib */; };
C00D40971F187CAB00DEA685 /* KWMCategoryTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = C00D40961F187CAB00DEA685 /* KWMCategoryTitleView.m */; };
C0219A951DF53EB200711099 /* KWMExchangeRateResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C0219A941DF53EB200711099 /* KWMExchangeRateResult.m */; };
C0243BBD1EFBD5A10013CFA7 /* Category.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0243BAF1EFBD5A10013CFA7 /* Category.storyboard */; };
C0243BBE1EFBD5A10013CFA7 /* KWMLeftCategoryCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0243BB21EFBD5A10013CFA7 /* KWMLeftCategoryCell.m */; };
C0243BBF1EFBD5A10013CFA7 /* KWMLeftCategoryCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0243BB31EFBD5A10013CFA7 /* KWMLeftCategoryCell.xib */; };
C0243BC01EFBD5A10013CFA7 /* KWMRightProductCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0243BB51EFBD5A10013CFA7 /* KWMRightProductCell.m */; };
C0243BC11EFBD5A10013CFA7 /* KWMRightProductCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0243BB61EFBD5A10013CFA7 /* KWMRightProductCell.xib */; };
C0243BC21EFBD5A10013CFA7 /* KWMBrandFilterVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0243BB81EFBD5A10013CFA7 /* KWMBrandFilterVC.m */; };
C0243BC31EFBD5A10013CFA7 /* KWMCategoryVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0243BBA1EFBD5A10013CFA7 /* KWMCategoryVC.m */; };
C0243BC41EFBD5A10013CFA7 /* KWMProductFilterVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0243BBC1EFBD5A10013CFA7 /* KWMProductFilterVC.m */; };
C0243BC81EFBD6060013CFA7 /* KWMCategoryFilterTab.m in Sources */ = {isa = PBXBuildFile; fileRef = C0243BC61EFBD6060013CFA7 /* KWMCategoryFilterTab.m */; };
C0243BC91EFBD6060013CFA7 /* KWMCategoryFilterTab.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0243BC71EFBD6060013CFA7 /* KWMCategoryFilterTab.xib */; };
C02986881F0F249D002EB25F /* KWMWishListVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C02986871F0F249D002EB25F /* KWMWishListVC.m */; };
C029868F1F0F2663002EB25F /* KWMWishCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C029868D1F0F2663002EB25F /* KWMWishCell.m */; };
C02986901F0F2663002EB25F /* KWMWishCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C029868E1F0F2663002EB25F /* KWMWishCell.xib */; };
C02C7D801E640D82008DC29C /* libWeChatSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = C02C7D7B1E640D82008DC29C /* libWeChatSDK.a */; };
C02C7D811E640D82008DC29C /* README.txt in Resources */ = {isa = PBXBuildFile; fileRef = C02C7D7C1E640D82008DC29C /* README.txt */; };
C02C7D831E640FBF008DC29C /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C02C7D821E640FBF008DC29C /* SystemConfiguration.framework */; };
C02C7D861E641172008DC29C /* libz.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = C02C7D841E640FD9008DC29C /* libz.tbd */; };
C02C7D881E64118D008DC29C /* libc++.tbd in Frameworks */ = {isa = PBXBuildFile; fileRef = C02C7D871E64118D008DC29C /* libc++.tbd */; };
C02C7D8A1E64119E008DC29C /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C02C7D891E64119E008DC29C /* Security.framework */; };
C02C7D8C1E6411AE008DC29C /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C02C7D8B1E6411AE008DC29C /* CoreTelephony.framework */; };
C02C7D8E1E6411C3008DC29C /* CFNetwork.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C02C7D8D1E6411C3008DC29C /* CFNetwork.framework */; };
C02C7D9B1E642DED008DC29C /* KWMWeChatUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C02C7D9A1E642DED008DC29C /* KWMWeChatUtil.m */; };
C02C7D9E1E643323008DC29C /* KWMShareVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C02C7D9D1E643323008DC29C /* KWMShareVC.m */; };
C02C7DA31E66AA97008DC29C /* KWMFilterVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C02C7DA21E66AA97008DC29C /* KWMFilterVC.m */; };
C02C7DA71E66B2AE008DC29C /* KWMFilterCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C02C7DA51E66B2AE008DC29C /* KWMFilterCell.m */; };
C02C7DA81E66B2AE008DC29C /* KWMFilterCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C02C7DA61E66B2AE008DC29C /* KWMFilterCell.xib */; };
C02C7DB41E67B56D008DC29C /* KWMFilterHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C02C7DB21E67B56D008DC29C /* KWMFilterHeaderView.m */; };
C02C7DB51E67B56D008DC29C /* KWMFilterHeaderView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C02C7DB31E67B56D008DC29C /* KWMFilterHeaderView.xib */; };
C03120961EF29A5F00E49EFA /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C03120951EF29A5F00E49EFA /* QuartzCore.framework */; };
C03120981EF29A8900E49EFA /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C03120971EF29A8900E49EFA /* CoreText.framework */; };
C031209A1EF29A9800E49EFA /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C03120991EF29A9800E49EFA /* CoreGraphics.framework */; };
C031209C1EF29AA400E49EFA /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C031209B1EF29AA400E49EFA /* UIKit.framework */; };
C031209E1EF29ABE00E49EFA /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C031209D1EF29ABE00E49EFA /* Foundation.framework */; };
C03120A01EF29AF200E49EFA /* CoreMotion.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C031209F1EF29AF200E49EFA /* CoreMotion.framework */; };
C03120A51EF29B2900E49EFA /* AlipaySDK.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C03120A21EF29B2900E49EFA /* AlipaySDK.bundle */; };
C03120A61EF29B2900E49EFA /* AlipaySDK.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C03120A31EF29B2900E49EFA /* AlipaySDK.framework */; };
C03120A71EF29B2900E49EFA /* 更新日志.txt in Resources */ = {isa = PBXBuildFile; fileRef = C03120A41EF29B2900E49EFA /* 更新日志.txt */; };
C03120AA1EF2AC5A00E49EFA /* KWMWechatPayData.m in Sources */ = {isa = PBXBuildFile; fileRef = C03120A91EF2AC5A00E49EFA /* KWMWechatPayData.m */; };
C03120AD1EF2AC6700E49EFA /* KWMCheckoutPayResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C03120AC1EF2AC6700E49EFA /* KWMCheckoutPayResult.m */; };
C03120B01EF2B26B00E49EFA /* KWMPayUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C03120AF1EF2B26B00E49EFA /* KWMPayUtil.m */; };
C032D3041DD87E07008D3155 /* KWMMetafieldResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C032D3031DD87E07008D3155 /* KWMMetafieldResult.m */; };
C032D3071DD87E5F008D3155 /* KWMMetafield.m in Sources */ = {isa = PBXBuildFile; fileRef = C032D3061DD87E5F008D3155 /* KWMMetafield.m */; };
C034E68F1D6AEB12006EE129 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E68E1D6AEB12006EE129 /* main.m */; };
C034E6921D6AEB12006EE129 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6911D6AEB12006EE129 /* AppDelegate.m */; };
C034E6951D6AEB12006EE129 /* ViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6941D6AEB12006EE129 /* ViewController.m */; };
C034E6981D6AEB12006EE129 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C034E6961D6AEB12006EE129 /* Main.storyboard */; };
C034E69A1D6AEB12006EE129 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C034E6991D6AEB12006EE129 /* Assets.xcassets */; };
C034E69D1D6AEB12006EE129 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C034E69B1D6AEB12006EE129 /* LaunchScreen.storyboard */; };
C034E6A81D6AEB13006EE129 /* iCemaroseTests.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6A71D6AEB13006EE129 /* iCemaroseTests.m */; };
C034E6B31D6AEB13006EE129 /* iCemaroseUITests.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6B21D6AEB13006EE129 /* iCemaroseUITests.m */; };
C034E6C81D6AED1F006EE129 /* KWMUser.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6C71D6AED1F006EE129 /* KWMUser.m */; };
C034E6CB1D6AED31006EE129 /* KWMBaseModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6CA1D6AED31006EE129 /* KWMBaseModel.m */; };
C034E6CF1D6AEE39006EE129 /* KWMUserDao.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6CE1D6AEE39006EE129 /* KWMUserDao.m */; };
C034E6D81D6AEF1B006EE129 /* KWMImageUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6D11D6AEF1B006EE129 /* KWMImageUtil.m */; };
C034E6D91D6AEF1B006EE129 /* KWMStringUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6D31D6AEF1B006EE129 /* KWMStringUtil.m */; };
C034E6DA1D6AEF1B006EE129 /* KWMTextFieldUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6D51D6AEF1B006EE129 /* KWMTextFieldUtil.m */; };
C034E6DE1D6AEF53006EE129 /* KWMAPIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6DD1D6AEF53006EE129 /* KWMAPIManager.m */; };
C034E6E11D6AEF62006EE129 /* KWMRequestListResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6E01D6AEF62006EE129 /* KWMRequestListResult.m */; };
C034E6E41D6AEF73006EE129 /* KWMRequestResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6E31D6AEF73006EE129 /* KWMRequestResult.m */; };
C034E6EB1D6AF0A0006EE129 /* Localizable.strings in Resources */ = {isa = PBXBuildFile; fileRef = C034E6EA1D6AF0A0006EE129 /* Localizable.strings */; };
C034E6F01D6AF13A006EE129 /* KWMBaseVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6ED1D6AF13A006EE129 /* KWMBaseVC.m */; };
C034E6F11D6AF13A006EE129 /* KWMBasePageVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6EF1D6AF13A006EE129 /* KWMBasePageVC.m */; };
C034E6F51D6AF197006EE129 /* KWMPickView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6F31D6AF197006EE129 /* KWMPickView.m */; };
C034E6F61D6AF197006EE129 /* KWMPickView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C034E6F41D6AF197006EE129 /* KWMPickView.xib */; };
C034E7001D6AF205006EE129 /* KWMButton.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6F81D6AF205006EE129 /* KWMButton.m */; };
C034E7031D6AF205006EE129 /* KWMLineView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6FD1D6AF205006EE129 /* KWMLineView.m */; };
C034E7041D6AF205006EE129 /* RTSpinKitView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E6FF1D6AF205006EE129 /* RTSpinKitView.m */; };
C034E7B01D6AFBDA006EE129 /* KWMWebViewVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7AF1D6AFBDA006EE129 /* KWMWebViewVC.m */; };
C034E7B31D6AFC3B006EE129 /* KWMMainVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7B21D6AFC3B006EE129 /* KWMMainVC.m */; };
C034E7B91D6B0A8D006EE129 /* KWMHomeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7B81D6B0A8D006EE129 /* KWMHomeVC.m */; };
C034E7C21D6B0B62006EE129 /* KWMMineVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7C11D6B0B62006EE129 /* KWMMineVC.m */; };
C034E83E1D6B10A0006EE129 /* NSString+File.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7C71D6B10A0006EE129 /* NSString+File.m */; };
C034E83F1D6B10A0006EE129 /* CoreArchive.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7C91D6B10A0006EE129 /* CoreArchive.m */; };
C034E8401D6B10A0006EE129 /* CALayer+Anim.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7CD1D6B10A0006EE129 /* CALayer+Anim.m */; };
C034E8411D6B10A0006EE129 /* CALayer+Transition.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7CF1D6B10A0006EE129 /* CALayer+Transition.m */; };
C034E8421D6B10A0006EE129 /* NSArray+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7D21D6B10A0006EE129 /* NSArray+Extend.m */; };
C034E8431D6B10A0006EE129 /* NSDate+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7D51D6B10A0006EE129 /* NSDate+Extend.m */; };
C034E8441D6B10A0006EE129 /* NSObject+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7D81D6B10A0006EE129 /* NSObject+Extend.m */; };
C034E8451D6B10A0006EE129 /* NSString+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7DB1D6B10A0006EE129 /* NSString+Extend.m */; };
C034E8461D6B10A0006EE129 /* NSString+Password.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7DD1D6B10A0006EE129 /* NSString+Password.m */; };
C034E8471D6B10A0006EE129 /* UIColor+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7E01D6B10A0006EE129 /* UIColor+Extend.m */; };
C034E8481D6B10A0006EE129 /* UIDevice+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7E31D6B10A0006EE129 /* UIDevice+Extend.m */; };
C034E8491D6B10A0006EE129 /* UIFont+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7E61D6B10A0006EE129 /* UIFont+Extend.m */; };
C034E84A1D6B10A0006EE129 /* UIImage+Color.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7E91D6B10A0006EE129 /* UIImage+Color.m */; };
C034E84B1D6B10A0006EE129 /* UIImage+Cut.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7EB1D6B10A0006EE129 /* UIImage+Cut.m */; };
C034E84C1D6B10A0006EE129 /* UIImage+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7ED1D6B10A0006EE129 /* UIImage+Extend.m */; };
C034E84D1D6B10A0006EE129 /* UIImage+FixOrientation.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7EF1D6B10A0006EE129 /* UIImage+FixOrientation.m */; };
C034E84E1D6B10A0006EE129 /* UIImage+Water.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7F11D6B10A0006EE129 /* UIImage+Water.m */; };
C034E84F1D6B10A0006EE129 /* UITableViewCell+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7F41D6B10A0006EE129 /* UITableViewCell+Extend.m */; };
C034E8501D6B10A0006EE129 /* UIView+Extend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7F71D6B10A0006EE129 /* UIView+Extend.m */; };
C034E8511D6B10A0006EE129 /* UIWindow+Launch.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E7FA1D6B10A0006EE129 /* UIWindow+Launch.m */; };
C034E8521D6B10A0006EE129 /* UIImage+ReMake.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8011D6B10A0006EE129 /* UIImage+ReMake.m */; };
C034E8531D6B10A0006EE129 /* CoreSDWebImage.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C034E8031D6B10A0006EE129 /* CoreSDWebImage.bundle */; };
C034E8541D6B10A0006EE129 /* UIButton+SD.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8051D6B10A0006EE129 /* UIButton+SD.m */; };
C034E8551D6B10A0006EE129 /* UIImageView+SD.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8071D6B10A0006EE129 /* UIImageView+SD.m */; };
C034E8561D6B10A0006EE129 /* CoreSVP.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C034E8091D6B10A0006EE129 /* CoreSVP.bundle */; };
C034E8571D6B10A0006EE129 /* CoreSVP.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E80B1D6B10A0006EE129 /* CoreSVP.m */; };
C034E8581D6B10A0006EE129 /* SVIndefiniteAnimatedView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E80E1D6B10A0006EE129 /* SVIndefiniteAnimatedView.m */; };
C034E8591D6B10A0006EE129 /* SVProgressHUD.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C034E8101D6B10A0006EE129 /* SVProgressHUD.bundle */; };
C034E85A1D6B10A0006EE129 /* SVProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8121D6B10A0006EE129 /* SVProgressHUD.m */; };
C034E85B1D6B10A0006EE129 /* LFRoundProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8151D6B10A0006EE129 /* LFRoundProgressView.m */; };
C034E85C1D6B10A0006EE129 /* UIView+PBExtend.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8191D6B10A0006EE129 /* UIView+PBExtend.m */; };
C034E85D1D6B10A0006EE129 /* PBConst.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E81C1D6B10A0006EE129 /* PBConst.m */; };
C034E85E1D6B10A0006EE129 /* PhotoBroswerLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E81F1D6B10A0006EE129 /* PhotoBroswerLayout.m */; };
C034E85F1D6B10A0006EE129 /* PhotoModel.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8221D6B10A0006EE129 /* PhotoModel.m */; };
C034E8601D6B10A0006EE129 /* PB.bundle in Resources */ = {isa = PBXBuildFile; fileRef = C034E8241D6B10A0006EE129 /* PB.bundle */; };
C034E8611D6B10A0006EE129 /* PBBlurImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8291D6B10A0006EE129 /* PBBlurImageView.m */; };
C034E8621D6B10A0006EE129 /* PBPGView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E82B1D6B10A0006EE129 /* PBPGView.m */; };
C034E8631D6B10A0006EE129 /* PBSaveBtn.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E82D1D6B10A0006EE129 /* PBSaveBtn.m */; };
C034E8641D6B10A0006EE129 /* PBScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E82F1D6B10A0006EE129 /* PBScrollView.m */; };
C034E8651D6B10A0006EE129 /* PhotoImageView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8311D6B10A0006EE129 /* PhotoImageView.m */; };
C034E8661D6B10A0006EE129 /* PhotoItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8331D6B10A0006EE129 /* PhotoItemView.m */; };
C034E8671D6B10A0006EE129 /* PhotoItemView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C034E8341D6B10A0006EE129 /* PhotoItemView.xib */; };
C034E8681D6B10A0006EE129 /* PhotoBroswerVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E8361D6B10A0006EE129 /* PhotoBroswerVC.m */; };
C034E8691D6B10A0006EE129 /* PhotoBroswerVC.xib in Resources */ = {isa = PBXBuildFile; fileRef = C034E8371D6B10A0006EE129 /* PhotoBroswerVC.xib */; };
C034E86A1D6B10A0006EE129 /* EGORefreshTableFooterView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E83A1D6B10A0006EE129 /* EGORefreshTableFooterView.m */; };
C034E86B1D6B10A0006EE129 /* EGORefreshTableHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = C034E83C1D6B10A0006EE129 /* EGORefreshTableHeaderView.m */; };
C03846911DB87BCA008C3BAB /* KWMCustomer.m in Sources */ = {isa = PBXBuildFile; fileRef = C03846901DB87BCA008C3BAB /* KWMCustomer.m */; };
C03846941DB89EEB008C3BAB /* KWMCemaroseResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C03846931DB89EEB008C3BAB /* KWMCemaroseResult.m */; };
C0392DB91DCC38450051AC8E /* KWMShippingCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0392DB71DCC38450051AC8E /* KWMShippingCell.m */; };
C0392DBA1DCC38450051AC8E /* KWMShippingCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0392DB81DCC38450051AC8E /* KWMShippingCell.xib */; };
C0392DBD1DCC786F0051AC8E /* KWMShippingVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0392DBC1DCC786F0051AC8E /* KWMShippingVC.m */; };
C03943C01DD1FCE900141475 /* KWMProductType.m in Sources */ = {isa = PBXBuildFile; fileRef = C03943BF1DD1FCE900141475 /* KWMProductType.m */; };
C03943C31DD1FD3F00141475 /* KWMProductTypeResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C03943C21DD1FD3F00141475 /* KWMProductTypeResult.m */; };
C03A05061E35DC5800BAA889 /* KWMNewGiftCardVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C03A05051E35DC5800BAA889 /* KWMNewGiftCardVC.m */; };
C043927A1F0F99310027ABA3 /* KWMHomeData.m in Sources */ = {isa = PBXBuildFile; fileRef = C04392791F0F99310027ABA3 /* KWMHomeData.m */; };
C043927D1F0F9A2A0027ABA3 /* KWMAdvertisement.m in Sources */ = {isa = PBXBuildFile; fileRef = C043927C1F0F9A2A0027ABA3 /* KWMAdvertisement.m */; };
C04392801F0F9A3D0027ABA3 /* KWMHotSales.m in Sources */ = {isa = PBXBuildFile; fileRef = C043927F1F0F9A3D0027ABA3 /* KWMHotSales.m */; };
C04834231F13215500A5BFB4 /* KWMBannerView.m in Sources */ = {isa = PBXBuildFile; fileRef = C04834221F13215500A5BFB4 /* KWMBannerView.m */; };
C048342B1F1324B400A5BFB4 /* KWMAdHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C048342A1F1324B400A5BFB4 /* KWMAdHeader.m */; };
C048342E1F13254200A5BFB4 /* KWMMenuHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C048342D1F13254200A5BFB4 /* KWMMenuHeader.m */; };
C04834341F1325A000A5BFB4 /* KWMClothingSetsHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C04834331F1325A000A5BFB4 /* KWMClothingSetsHeader.m */; };
C04834371F1325CB00A5BFB4 /* KWMHotSalesHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C04834361F1325CB00A5BFB4 /* KWMHotSalesHeader.m */; };
C048343B1F13274300A5BFB4 /* KWMNewHomeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C04834391F13274300A5BFB4 /* KWMNewHomeVC.m */; };
C048343E1F13288F00A5BFB4 /* KWMMenuHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = C048343D1F13288F00A5BFB4 /* KWMMenuHeader.xib */; };
C04834411F13350F00A5BFB4 /* KWMRecommendHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C04834401F13350F00A5BFB4 /* KWMRecommendHeader.m */; };
C04834451F1337A800A5BFB4 /* KWMNewHomeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C04834431F1337A800A5BFB4 /* KWMNewHomeCell.m */; };
C04834461F1337A800A5BFB4 /* KWMNewHomeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C04834441F1337A800A5BFB4 /* KWMNewHomeCell.xib */; };
C04834481F1338F200A5BFB4 /* KWMRecommendHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = C04834471F1338F200A5BFB4 /* KWMRecommendHeader.xib */; };
C048344A1F13391A00A5BFB4 /* KWMClothingSetsHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = C04834491F13391A00A5BFB4 /* KWMClothingSetsHeader.xib */; };
C048344C1F13393D00A5BFB4 /* KWMHotSalesHeader.xib in Resources */ = {isa = PBXBuildFile; fileRef = C048344B1F13393D00A5BFB4 /* KWMHotSalesHeader.xib */; };
C04834531F13590500A5BFB4 /* KWMProductBannerItemView.m in Sources */ = {isa = PBXBuildFile; fileRef = C048344E1F13590500A5BFB4 /* KWMProductBannerItemView.m */; };
C04834541F13590500A5BFB4 /* KWMProductBannerItemView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C048344F1F13590500A5BFB4 /* KWMProductBannerItemView.xib */; };
C04834551F13590500A5BFB4 /* KWMClothingSetsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C04834511F13590500A5BFB4 /* KWMClothingSetsCell.m */; };
C04834561F13590500A5BFB4 /* KWMClothingSetsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C04834521F13590500A5BFB4 /* KWMClothingSetsCell.xib */; };
C048B8E21EF3C04B000DA7AF /* KWMBeforePayData.m in Sources */ = {isa = PBXBuildFile; fileRef = C048B8E11EF3C04B000DA7AF /* KWMBeforePayData.m */; };
C048B8E51EF3F20B000DA7AF /* KWMCollectionRefreshUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C048B8E41EF3F20B000DA7AF /* KWMCollectionRefreshUtil.m */; };
C057C77D1F172D4C00B95034 /* KWMMidDetailView.m in Sources */ = {isa = PBXBuildFile; fileRef = C057C77C1F172D4C00B95034 /* KWMMidDetailView.m */; };
C057C77F1F172D8E00B95034 /* KWMMidDetailView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C057C77E1F172D8E00B95034 /* KWMMidDetailView.xib */; };
C05910941E34A729002990B3 /* KWMNewGiftCardCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C05910921E34A729002990B3 /* KWMNewGiftCardCell.m */; };
C05910951E34A729002990B3 /* KWMNewGiftCardCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C05910931E34A729002990B3 /* KWMNewGiftCardCell.xib */; };
C06665091D75A2E500F02EF4 /* KWMOrderCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C06665041D75A2E500F02EF4 /* KWMOrderCell.m */; };
C066650A1D75A2E500F02EF4 /* KWMOrderCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C06665051D75A2E500F02EF4 /* KWMOrderCell.xib */; };
C066650B1D75A2E500F02EF4 /* KWMOrderVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C06665071D75A2E500F02EF4 /* KWMOrderVC.m */; };
C066650C1D75A2E500F02EF4 /* Mine.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C06665081D75A2E500F02EF4 /* Mine.storyboard */; };
C066650F1D7675FC00F02EF4 /* KWMAboutUsVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C066650E1D7675FC00F02EF4 /* KWMAboutUsVC.m */; };
C06665121D767A0A00F02EF4 /* KWMContactUsVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C06665111D767A0A00F02EF4 /* KWMContactUsVC.m */; };
C07267821F15D62400C5A869 /* NSLayoutConstraint+Multiplier.m in Sources */ = {isa = PBXBuildFile; fileRef = C07267811F15D62400C5A869 /* NSLayoutConstraint+Multiplier.m */; };
C07267851F1616E500C5A869 /* KWMColor.m in Sources */ = {isa = PBXBuildFile; fileRef = C07267841F1616E500C5A869 /* KWMColor.m */; };
C077966F1EEAA2BE00CD6859 /* KWMFilterUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = C077966E1EEAA2BE00CD6859 /* KWMFilterUtil.m */; };
C084F4531D6D8CA700A0625D /* KWMBlogCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C084F4511D6D8CA700A0625D /* KWMBlogCell.m */; };
C084F4541D6D8CA700A0625D /* KWMBlogCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C084F4521D6D8CA700A0625D /* KWMBlogCell.xib */; };
C084F4571D6D975400A0625D /* KWMSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = C084F4561D6D975400A0625D /* KWMSearchBar.m */; };
C084F4591D6D976F00A0625D /* KWMSearchBar.xib in Resources */ = {isa = PBXBuildFile; fileRef = C084F4581D6D976F00A0625D /* KWMSearchBar.xib */; };
C08827A61E28B4AF006A8B91 /* KWMPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = C08827A51E28B4AF006A8B91 /* KWMPageControl.m */; };
C08870E81F0342B000C9C1C8 /* KWMCustomsClearanceVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C08870E71F0342B000C9C1C8 /* KWMCustomsClearanceVC.m */; };
C08870EB1F03481C00C9C1C8 /* KWMCustomsClearance.m in Sources */ = {isa = PBXBuildFile; fileRef = C08870EA1F03481C00C9C1C8 /* KWMCustomsClearance.m */; };
C08FDA271D9A5F3400EBDB0D /* KWMAddGiftCardVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C08FDA261D9A5F3400EBDB0D /* KWMAddGiftCardVC.m */; };
C08FDA2A1D9B583400EBDB0D /* KWMGiftCardVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C08FDA291D9B583400EBDB0D /* KWMGiftCardVC.m */; };
C091EE331DDB1FC500A382B9 /* KWMAppVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = C091EE321DDB1FC500A382B9 /* KWMAppVersion.m */; };
C091EE361DDEEA9400A382B9 /* KWMVariants.m in Sources */ = {isa = PBXBuildFile; fileRef = C091EE351DDEEA9400A382B9 /* KWMVariants.m */; };
C0A6B3BE1F01FC5300D85673 /* KWMFirstDetailView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0A6B3AB1F01FC5300D85673 /* KWMFirstDetailView.m */; };
C0A6B3BF1F01FC5300D85673 /* KWMFirstDetailView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0A6B3AC1F01FC5300D85673 /* KWMFirstDetailView.xib */; };
C0A6B3C01F01FC5300D85673 /* KWMProductColorCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0A6B3AE1F01FC5300D85673 /* KWMProductColorCell.m */; };
C0A6B3C11F01FC5300D85673 /* KWMProductColorCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0A6B3AF1F01FC5300D85673 /* KWMProductColorCell.xib */; };
C0A6B3C21F01FC5300D85673 /* KWMProductSizeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0A6B3B11F01FC5300D85673 /* KWMProductSizeCell.m */; };
C0A6B3C31F01FC5300D85673 /* KWMProductSizeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0A6B3B21F01FC5300D85673 /* KWMProductSizeCell.xib */; };
C0A6B3C41F01FC5300D85673 /* KWMSecondDetailView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0A6B3B41F01FC5300D85673 /* KWMSecondDetailView.m */; };
C0A6B3C51F01FC5300D85673 /* KWMSecondDetailView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0A6B3B51F01FC5300D85673 /* KWMSecondDetailView.xib */; };
C0A6B3C81F01FC5300D85673 /* KWMNewProductVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0A6B3BA1F01FC5300D85673 /* KWMNewProductVC.m */; };
C0A6B3C91F01FC5300D85673 /* KWMVariantsVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0A6B3BC1F01FC5300D85673 /* KWMVariantsVC.m */; };
C0A6B3CA1F01FC5300D85673 /* NewProduct.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0A6B3BD1F01FC5300D85673 /* NewProduct.storyboard */; };
C0AF039A1DD5BFB20060623F /* UIViewController+BackButtonHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = C0AF03991DD5BFB20060623F /* UIViewController+BackButtonHandler.m */; };
C0AF039E1DD5C8EE0060623F /* KWMNeedAddressView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0AF039C1DD5C8EE0060623F /* KWMNeedAddressView.m */; };
C0AF039F1DD5C8EE0060623F /* KWMNeedAddressView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0AF039D1DD5C8EE0060623F /* KWMNeedAddressView.xib */; };
C0CC14041D7823B0007B5986 /* KWMDeleteView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CC13FC1D7823B0007B5986 /* KWMDeleteView.m */; };
C0CC14051D7823B0007B5986 /* KWMDeleteView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0CC13FD1D7823B0007B5986 /* KWMDeleteView.xib */; };
C0CC14061D7823B0007B5986 /* KWMShopCarCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CC13FF1D7823B0007B5986 /* KWMShopCarCell.m */; };
C0CC14071D7823B0007B5986 /* KWMShopCarCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0CC14001D7823B0007B5986 /* KWMShopCarCell.xib */; };
C0CC14081D7823B0007B5986 /* KWMSizeCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CC14021D7823B0007B5986 /* KWMSizeCell.m */; };
C0CC14091D7823B0007B5986 /* KWMSizeCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0CC14031D7823B0007B5986 /* KWMSizeCell.xib */; };
C0CC140C1D7829FC007B5986 /* KWMSelectSizeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CC140B1D7829FC007B5986 /* KWMSelectSizeVC.m */; };
C0CC140F1D7926DF007B5986 /* KWMBeforePayVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CC140E1D7926DF007B5986 /* KWMBeforePayVC.m */; };
C0CC14121D795743007B5986 /* KWMDiscountVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CC14111D795743007B5986 /* KWMDiscountVC.m */; };
C0CC14161D79826F007B5986 /* KWMAddressCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CC14141D79826F007B5986 /* KWMAddressCell.m */; };
C0CC14171D79826F007B5986 /* KWMAddressCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0CC14151D79826F007B5986 /* KWMAddressCell.xib */; };
C0CC141A1D79847A007B5986 /* KWMSelectAddressVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CC14191D79847A007B5986 /* KWMSelectAddressVC.m */; };
C0CCB3B91EEA579900BC2FB8 /* KWMFilterView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CCB3B71EEA579900BC2FB8 /* KWMFilterView.m */; };
C0CCB3BA1EEA579900BC2FB8 /* KWMFilterView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0CCB3B81EEA579900BC2FB8 /* KWMFilterView.xib */; };
C0CCB3BD1EEA589200BC2FB8 /* KWMFilter.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CCB3BC1EEA589200BC2FB8 /* KWMFilter.m */; };
C0CCB3C11EEA59A200BC2FB8 /* KWMFilterViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CCB3BF1EEA59A200BC2FB8 /* KWMFilterViewCell.m */; };
C0CCB3C21EEA59A200BC2FB8 /* KWMFilterViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0CCB3C01EEA59A200BC2FB8 /* KWMFilterViewCell.xib */; };
C0CCB3C51EEA5A1100BC2FB8 /* UIView+Prettify.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CCB3C41EEA5A1100BC2FB8 /* UIView+Prettify.m */; };
C0CCB3CF1EEA765B00BC2FB8 /* KWMFilterTabItem.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CCB3C71EEA765B00BC2FB8 /* KWMFilterTabItem.m */; };
C0CCB3D01EEA765B00BC2FB8 /* KWMFilterTabItem.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0CCB3C81EEA765B00BC2FB8 /* KWMFilterTabItem.xib */; };
C0CCB3D11EEA765B00BC2FB8 /* KWMNormalFilterTab.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CCB3CA1EEA765B00BC2FB8 /* KWMNormalFilterTab.m */; };
C0CCB3D21EEA765B00BC2FB8 /* KWMNormalFilterTab.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0CCB3CB1EEA765B00BC2FB8 /* KWMNormalFilterTab.xib */; };
C0CCB3D31EEA765B00BC2FB8 /* KWMNormalFilterView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0CCB3CD1EEA765B00BC2FB8 /* KWMNormalFilterView.m */; };
C0CCB3D41EEA765B00BC2FB8 /* KWMNormalFilterView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0CCB3CE1EEA765B00BC2FB8 /* KWMNormalFilterView.xib */; };
C0D7CA9E1EA7384E005AE3A3 /* KWMPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = C08827A51E28B4AF006A8B91 /* KWMPageControl.m */; };
C0D7CAA11EA843AD005AE3A3 /* KWMOrder.m in Sources */ = {isa = PBXBuildFile; fileRef = C0D7CAA01EA843AD005AE3A3 /* KWMOrder.m */; };
C0D7CAA41EA846AA005AE3A3 /* KWMOrdersResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C0D7CAA31EA846AA005AE3A3 /* KWMOrdersResult.m */; };
C0DD530F1EE54A9E002D1E0C /* KWMBarandSelectView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD530D1EE54A9E002D1E0C /* KWMBarandSelectView.m */; };
C0DD53101EE54A9E002D1E0C /* KWMBarandSelectView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0DD530E1EE54A9E002D1E0C /* KWMBarandSelectView.xib */; };
C0DD53141EE54B96002D1E0C /* KWMSearchBrandView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD53121EE54B96002D1E0C /* KWMSearchBrandView.m */; };
C0DD53151EE54B96002D1E0C /* KWMSearchBrandView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0DD53131EE54B96002D1E0C /* KWMSearchBrandView.xib */; };
C0DD53191EE54C5F002D1E0C /* KWMSearchFeedBackView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD53171EE54C5F002D1E0C /* KWMSearchFeedBackView.m */; };
C0DD531A1EE54C5F002D1E0C /* KWMSearchFeedBackView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0DD53181EE54C5F002D1E0C /* KWMSearchFeedBackView.xib */; };
C0DD531E1EE54F5D002D1E0C /* KWMMineTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD531C1EE54F5D002D1E0C /* KWMMineTitleView.m */; };
C0DD531F1EE54F5D002D1E0C /* KWMMineTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0DD531D1EE54F5D002D1E0C /* KWMMineTitleView.xib */; };
C0DD53231EE55062002D1E0C /* KWMCarCountView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD53211EE55062002D1E0C /* KWMCarCountView.m */; };
C0DD53241EE55062002D1E0C /* KWMCarCountView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0DD53221EE55062002D1E0C /* KWMCarCountView.xib */; };
C0DD53351EE55190002D1E0C /* ArcToCircleLayer.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD53281EE55190002D1E0C /* ArcToCircleLayer.m */; };
C0DD53361EE55190002D1E0C /* KWMLoadingHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD532A1EE55190002D1E0C /* KWMLoadingHeader.m */; };
C0DD53371EE55190002D1E0C /* KWMLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD532C1EE55190002D1E0C /* KWMLoadingView.m */; };
C0DD53381EE55190002D1E0C /* KWMLoadingView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0DD532D1EE55190002D1E0C /* KWMLoadingView.xib */; };
C0DD53391EE55190002D1E0C /* KWMSplashView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD532F1EE55190002D1E0C /* KWMSplashView.m */; };
C0DD533A1EE55190002D1E0C /* KWMSplashView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0DD53301EE55190002D1E0C /* KWMSplashView.xib */; };
C0DD533B1EE55190002D1E0C /* KWMSuperLoadingView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD53321EE55190002D1E0C /* KWMSuperLoadingView.m */; };
C0DD533C1EE55190002D1E0C /* MMJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD53341EE55190002D1E0C /* MMJRefreshNormalHeader.m */; };
C0DD534D1EE6AE06002D1E0C /* BaseCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0DD534C1EE6AE06002D1E0C /* BaseCell.m */; };
C0E8AE091D7D030B00C193DC /* KWMEditAddressVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0E8AE081D7D030B00C193DC /* KWMEditAddressVC.m */; };
C0E8AE0C1D7D503600C193DC /* KWMPaySuccessVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0E8AE0B1D7D503600C193DC /* KWMPaySuccessVC.m */; };
C0E8AE121D7D52B200C193DC /* KWMPayTypeVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0E8AE111D7D52B200C193DC /* KWMPayTypeVC.m */; };
C0EA5E981D9A0AED0029157E /* KWMCheckoutWebViewVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0EA5E971D9A0AED0029157E /* KWMCheckoutWebViewVC.m */; };
C0F4AF481DF110F000BDA719 /* KWMProductResult.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F4AF471DF110F000BDA719 /* KWMProductResult.m */; };
C0F4AF4B1DF1149500BDA719 /* KWMProduct.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F4AF4A1DF1149500BDA719 /* KWMProduct.m */; };
C0F586741E24F820001248E2 /* KWMBottomView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F586441E24F820001248E2 /* KWMBottomView.m */; };
C0F586761E24F820001248E2 /* KWMCollectionCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F586471E24F820001248E2 /* KWMCollectionCell.m */; };
C0F586771E24F820001248E2 /* KWMCollectionCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0F586481E24F820001248E2 /* KWMCollectionCell.xib */; };
C0F586781E24F820001248E2 /* KWMDetailCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F5864A1E24F820001248E2 /* KWMDetailCell.m */; };
C0F586791E24F820001248E2 /* KWMDetailCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0F5864B1E24F820001248E2 /* KWMDetailCell.xib */; };
C0F5867A1E24F820001248E2 /* KWMDoubleTitleView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F5864D1E24F820001248E2 /* KWMDoubleTitleView.m */; };
C0F5867B1E24F820001248E2 /* KWMDoubleTitleView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0F5864E1E24F820001248E2 /* KWMDoubleTitleView.xib */; };
C0F5867E1E24F820001248E2 /* KWMNewGoodsCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F586531E24F820001248E2 /* KWMNewGoodsCell.m */; };
C0F5867F1E24F820001248E2 /* KWMNewGoodsCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0F586541E24F820001248E2 /* KWMNewGoodsCell.xib */; };
C0F586801E24F820001248E2 /* KWMNewTypeView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F586561E24F820001248E2 /* KWMNewTypeView.m */; };
C0F586811E24F820001248E2 /* KWMNewTypeView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0F586571E24F820001248E2 /* KWMNewTypeView.xib */; };
C0F586871E24F820001248E2 /* KWMNewTypeSelectedVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F586611E24F820001248E2 /* KWMNewTypeSelectedVC.m */; };
C0F586881E24F820001248E2 /* KWMNewVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F586631E24F820001248E2 /* KWMNewVC.m */; };
C0F586891E24F820001248E2 /* KWMSearchFeedbackVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F586651E24F820001248E2 /* KWMSearchFeedbackVC.m */; };
C0F5868A1E24F820001248E2 /* KWMSelectedGoodsVC.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F586671E24F820001248E2 /* KWMSelectedGoodsVC.m */; };
C0F5868B1E24F820001248E2 /* New.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C0F586681E24F820001248E2 /* New.storyboard */; };
C0F5868C1E24F821001248E2 /* ATPagingView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F5866C1E24F820001248E2 /* ATPagingView.m */; };
C0F5868D1E24F821001248E2 /* SHorizontalView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F5866F1E24F820001248E2 /* SHorizontalView.m */; };
C0F5868E1E24F821001248E2 /* SSView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F586711E24F820001248E2 /* SSView.m */; };
C0F5868F1E24F821001248E2 /* SVerticalView.m in Sources */ = {isa = PBXBuildFile; fileRef = C0F586731E24F820001248E2 /* SVerticalView.m */; };
C0F586AE1E279574001248E2 /* KWMBottomView.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0F586AD1E279574001248E2 /* KWMBottomView.xib */; };
C0FBD88E1F049D510009E375 /* KWMOrderPaid.m in Sources */ = {isa = PBXBuildFile; fileRef = C0FBD88D1F049D510009E375 /* KWMOrderPaid.m */; };
C0FC278E1D9B73B000C5CFFE /* KWMGiftCardCell.m in Sources */ = {isa = PBXBuildFile; fileRef = C0FC278D1D9B73B000C5CFFE /* KWMGiftCardCell.m */; };
DA4E36921F1613C70007E4D0 /* KWMHomeDataResult.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4E36911F1613C70007E4D0 /* KWMHomeDataResult.m */; };
DA4E36951F1726B80007E4D0 /* UIViewController+HTTP.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4E36941F1726B80007E4D0 /* UIViewController+HTTP.m */; };
DA4E36981F17729C0007E4D0 /* KWMCategoryModel.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4E36971F17729C0007E4D0 /* KWMCategoryModel.m */; };
DA4E369E1F188B400007E4D0 /* BUYClient+FilterSoldout.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4E369D1F188B400007E4D0 /* BUYClient+FilterSoldout.m */; };
DA4E36A11F18A6CB0007E4D0 /* KWMPageResult.m in Sources */ = {isa = PBXBuildFile; fileRef = DA4E36A01F18A6CB0007E4D0 /* KWMPageResult.m */; };
DA7457681F692D67000E192E /* KWMProductSameBrandView.m in Sources */ = {isa = PBXBuildFile; fileRef = DA7457671F692D67000E192E /* KWMProductSameBrandView.m */; };
DA74576C1F692DCA000E192E /* KWMProductSameBrandView.xib in Resources */ = {isa = PBXBuildFile; fileRef = DA74576B1F692DCA000E192E /* KWMProductSameBrandView.xib */; };
DA7DF8E51F1DB01600D5239B /* NSString+Format.m in Sources */ = {isa = PBXBuildFile; fileRef = DA7DF8E41F1DB01600D5239B /* NSString+Format.m */; };
DA8B97801F58F816002FC38A /* SDImageCache+Resize.m in Sources */ = {isa = PBXBuildFile; fileRef = DA8B977F1F58F816002FC38A /* SDImageCache+Resize.m */; };
DA8D64121F31C67F00B8F4A6 /* DeepLinkURLProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = DA8D64111F31C67F00B8F4A6 /* DeepLinkURLProtocol.m */; };
DA8D64151F31CD2600B8F4A6 /* DPWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = DA8D64141F31CD2600B8F4A6 /* DPWebViewController.m */; };
DAB6431A1F04CFE5002CD7FE /* AppDelegate+Deeplink.m in Sources */ = {isa = PBXBuildFile; fileRef = DAB643191F04CFE5002CD7FE /* AppDelegate+Deeplink.m */; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
C034E6A41D6AEB13006EE129 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C034E6821D6AEB12006EE129 /* Project object */;
proxyType = 1;
remoteGlobalIDString = C034E6891D6AEB12006EE129;
remoteInfo = iCemarose;
};
C034E6AF1D6AEB13006EE129 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = C034E6821D6AEB12006EE129 /* Project object */;
proxyType = 1;
remoteGlobalIDString = C034E6891D6AEB12006EE129;
remoteInfo = iCemarose;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
450DA8BB947651E9A9B38BEB /* libPods-iCemarose.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-iCemarose.a"; sourceTree = BUILT_PRODUCTS_DIR; };
801230EF1DD30704008C7904 /* KWMSearchBrandsCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSearchBrandsCell.h; sourceTree = "<group>"; };
801230F01DD30704008C7904 /* KWMSearchBrandsCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSearchBrandsCell.m; sourceTree = "<group>"; };
801230F11DD30704008C7904 /* KWMSearchBrandsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMSearchBrandsCell.xib; sourceTree = "<group>"; };
801230F41DD32B39008C7904 /* KWMInformationView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMInformationView.h; sourceTree = "<group>"; };
801230F51DD32B39008C7904 /* KWMInformationView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMInformationView.m; sourceTree = "<group>"; };
801230F71DD32B49008C7904 /* KWMInformationView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMInformationView.xib; sourceTree = "<group>"; };
8019E9521DC89CF300CAD7BF /* KWMNewGoodsModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KWMNewGoodsModel.h; path = ../Api/Cemarose/KWMNewGoodsModel.h; sourceTree = "<group>"; };
8019E9531DC89CF300CAD7BF /* KWMNewGoodsModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = KWMNewGoodsModel.m; path = ../Api/Cemarose/KWMNewGoodsModel.m; sourceTree = "<group>"; };
801F87BA1DD1A9B90038FA4C /* KWMNewProducts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNewProducts.h; sourceTree = "<group>"; };
801F87BB1DD1A9B90038FA4C /* KWMNewProducts.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNewProducts.m; sourceTree = "<group>"; };
801F87BD1DD1D6850038FA4C /* KWMLoadStatus.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMLoadStatus.h; sourceTree = "<group>"; };
801F87BE1DD1D6850038FA4C /* KWMLoadStatus.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMLoadStatus.m; sourceTree = "<group>"; };
8031DA971D8268CD00349869 /* KWMForgetPasswordVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMForgetPasswordVC.h; sourceTree = "<group>"; };
8031DA981D8268CD00349869 /* KWMForgetPasswordVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMForgetPasswordVC.m; sourceTree = "<group>"; };
8045F30B1D94C6AB0042B15A /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
8045F30D1D94C6BF0042B15A /* libsqlite3.0.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libsqlite3.0.tbd; path = usr/lib/libsqlite3.0.tbd; sourceTree = SDKROOT; };
80471CB11D95374C00B36D4B /* AddressBook.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBook.framework; path = System/Library/Frameworks/AddressBook.framework; sourceTree = SDKROOT; };
80471CB31D95375600B36D4B /* AddressBookUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AddressBookUI.framework; path = System/Library/Frameworks/AddressBookUI.framework; sourceTree = SDKROOT; };
804771791D6D31FD0086B4DC /* KWMBrandVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBrandVC.h; sourceTree = "<group>"; };
8047717A1D6D31FD0086B4DC /* KWMBrandVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBrandVC.m; sourceTree = "<group>"; };
8047717E1D6D326D0086B4DC /* KWMLoginVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMLoginVC.h; sourceTree = "<group>"; };
8047717F1D6D326D0086B4DC /* KWMLoginVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMLoginVC.m; sourceTree = "<group>"; };
804771811D6D32A70086B4DC /* Login.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Login.storyboard; sourceTree = "<group>"; };
804771831D6D585B0086B4DC /* KWMValidationVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMValidationVC.h; sourceTree = "<group>"; };
804771841D6D585B0086B4DC /* KWMValidationVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMValidationVC.m; sourceTree = "<group>"; };
804771861D6D769C0086B4DC /* KWMEmailVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMEmailVC.h; sourceTree = "<group>"; };
804771871D6D769C0086B4DC /* KWMEmailVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMEmailVC.m; sourceTree = "<group>"; };
80537AD91D86A7E100AB5122 /* KWMUserModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMUserModel.h; sourceTree = "<group>"; };
80537ADA1D86A7E100AB5122 /* KWMUserModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMUserModel.m; sourceTree = "<group>"; };
80598D451D99193400BF0F97 /* KWMInformationVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMInformationVC.h; sourceTree = "<group>"; };
80598D461D99193400BF0F97 /* KWMInformationVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMInformationVC.m; sourceTree = "<group>"; };
805C04331DD1FA4900ACC071 /* KWMBrandsTypeModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBrandsTypeModel.h; sourceTree = "<group>"; };
805C04341DD1FA4900ACC071 /* KWMBrandsTypeModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBrandsTypeModel.m; sourceTree = "<group>"; };
805C04361DD1FA7100ACC071 /* KWMBrandsTypeResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBrandsTypeResult.h; sourceTree = "<group>"; };
805C04371DD1FA7100ACC071 /* KWMBrandsTypeResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBrandsTypeResult.m; sourceTree = "<group>"; };
8077F7941D73D2D700A2E2E2 /* KWMBrandCaramelVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBrandCaramelVC.h; sourceTree = "<group>"; };
8077F7951D73D2D700A2E2E2 /* KWMBrandCaramelVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBrandCaramelVC.m; sourceTree = "<group>"; };
8077F7971D73E39000A2E2E2 /* KWMBrandCaramelCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBrandCaramelCell.h; sourceTree = "<group>"; };
8077F7981D73E39000A2E2E2 /* KWMBrandCaramelCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBrandCaramelCell.m; sourceTree = "<group>"; };
8077F7991D73E39000A2E2E2 /* KWMBrandCaramelCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMBrandCaramelCell.xib; sourceTree = "<group>"; };
807806851D7566DD00FD2841 /* NSString+PinYin.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+PinYin.h"; sourceTree = "<group>"; };
807806861D7566DD00FD2841 /* NSString+PinYin.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+PinYin.m"; sourceTree = "<group>"; };
807806881D75680600FD2841 /* KWMSearchBrandVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSearchBrandVC.h; sourceTree = "<group>"; };
807806891D75680600FD2841 /* KWMSearchBrandVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSearchBrandVC.m; sourceTree = "<group>"; };
807AF4941DC984950000A326 /* KWMArticlesResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMArticlesResult.h; sourceTree = "<group>"; };
807AF4951DC984950000A326 /* KWMArticlesResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMArticlesResult.m; sourceTree = "<group>"; };
807AF4961DC984950000A326 /* KWMBlogResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBlogResult.h; sourceTree = "<group>"; };
807AF4971DC984950000A326 /* KWMBlogResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBlogResult.m; sourceTree = "<group>"; };
807AF4981DC984950000A326 /* KWMBrandsResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBrandsResult.h; sourceTree = "<group>"; };
807AF4991DC984950000A326 /* KWMBrandsResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBrandsResult.m; sourceTree = "<group>"; };
807AF49A1DC984950000A326 /* KWMCustomerResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCustomerResult.h; sourceTree = "<group>"; };
807AF49B1DC984950000A326 /* KWMCustomerResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCustomerResult.m; sourceTree = "<group>"; };
807AF49C1DC984950000A326 /* KWMDataProduct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KWMDataProduct.h; path = ../Api/Cemarose/KWMDataProduct.h; sourceTree = "<group>"; };
807AF49D1DC984950000A326 /* KWMDataProduct.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = KWMDataProduct.m; path = ../Api/Cemarose/KWMDataProduct.m; sourceTree = "<group>"; };
807AF49E1DC984950000A326 /* KWMProducts.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KWMProducts.h; path = ../Api/Cemarose/KWMProducts.h; sourceTree = "<group>"; };
807AF49F1DC984950000A326 /* KWMProducts.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = KWMProducts.m; path = ../Api/Cemarose/KWMProducts.m; sourceTree = "<group>"; };
807AF4A01DC984950000A326 /* KWMSearchResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSearchResult.h; sourceTree = "<group>"; };
807AF4A11DC984950000A326 /* KWMSearchResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSearchResult.m; sourceTree = "<group>"; };
8091DF9F1D6E878C0020519C /* KWMGuideVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMGuideVC.h; sourceTree = "<group>"; };
8091DFA01D6E878C0020519C /* KWMGuideVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMGuideVC.m; sourceTree = "<group>"; };
8091DFA21D6E8CCA0020519C /* Guide.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Guide.storyboard; sourceTree = "<group>"; };
8091DFA51D6EA0840020519C /* KWMLastView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMLastView.xib; sourceTree = "<group>"; };
8091DFAA1D6EA11E0020519C /* KWMLastView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMLastView.h; sourceTree = "<group>"; };
8091DFAB1D6EA11E0020519C /* KWMLastView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMLastView.m; sourceTree = "<group>"; };
8091DFAD1D6EA6DC0020519C /* KWMFirstView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMFirstView.xib; sourceTree = "<group>"; };
8091DFAF1D6EAD6F0020519C /* KWMSecondView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMSecondView.xib; sourceTree = "<group>"; };
8091DFB11D6EADE60020519C /* KWMSecondView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSecondView.h; sourceTree = "<group>"; };
8091DFB21D6EADE60020519C /* KWMSecondView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSecondView.m; sourceTree = "<group>"; };
8091DFB41D6EADFB0020519C /* KWMFirstView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMFirstView.h; sourceTree = "<group>"; };
8091DFB51D6EADFB0020519C /* KWMFirstView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMFirstView.m; sourceTree = "<group>"; };
8091DFB71D6EC1C60020519C /* KWMThreeView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMThreeView.xib; sourceTree = "<group>"; };
8091DFB91D6EC1DD0020519C /* KWMThreeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMThreeView.h; sourceTree = "<group>"; };
8091DFBA1D6EC1DD0020519C /* KWMThreeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMThreeView.m; sourceTree = "<group>"; };
80A611AE1D6DB0CD00709E09 /* ShopCart.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = ShopCart.storyboard; sourceTree = "<group>"; };
80A611B01D6DB0EC00709E09 /* KWMShopCartVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMShopCartVC.h; sourceTree = "<group>"; };
80A611B11D6DB0EC00709E09 /* KWMShopCartVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMShopCartVC.m; sourceTree = "<group>"; };
80C8014D1D78134800002306 /* KWMTBVSectionHeardView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMTBVSectionHeardView.h; sourceTree = "<group>"; };
80C8014E1D78134800002306 /* KWMTBVSectionHeardView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMTBVSectionHeardView.m; sourceTree = "<group>"; };
80C801501D78136400002306 /* KWMTBVSectionHeardView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMTBVSectionHeardView.xib; sourceTree = "<group>"; };
80DD275A1DC2FE6800CDC5B5 /* Home.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Home.storyboard; sourceTree = "<group>"; };
80DD275C1DC2FF2200CDC5B5 /* KWMBlogDetailVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBlogDetailVC.h; sourceTree = "<group>"; tabWidth = 4; };
80DD275D1DC2FF2200CDC5B5 /* KWMBlogDetailVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBlogDetailVC.m; sourceTree = "<group>"; };
80E65A7C1D95383E0084610B /* Contacts.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Contacts.framework; path = System/Library/Frameworks/Contacts.framework; sourceTree = SDKROOT; };
80E65A7D1D95383E0084610B /* ContactsUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ContactsUI.framework; path = System/Library/Frameworks/ContactsUI.framework; sourceTree = SDKROOT; };
80E65A801D953AE20084610B /* PassKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = PassKit.framework; path = System/Library/Frameworks/PassKit.framework; sourceTree = SDKROOT; };
80E844251D7FB0FF0042AED2 /* KWMRuleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMRuleView.h; sourceTree = "<group>"; };
80E844261D7FB0FF0042AED2 /* KWMRuleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMRuleView.m; sourceTree = "<group>"; };
80E844281D7FB1130042AED2 /* KWMRuleView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMRuleView.xib; sourceTree = "<group>"; };
80ED0A361D93840A00B28DF2 /* DB_shopCart.xcdatamodel */ = {isa = PBXFileReference; lastKnownFileType = wrapper.xcdatamodel; path = DB_shopCart.xcdatamodel; sourceTree = "<group>"; };
80ED0A441D93B82F00B28DF2 /* KWMShopCartItem+CoreDataClass.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "KWMShopCartItem+CoreDataClass.h"; sourceTree = "<group>"; };
80ED0A451D93B82F00B28DF2 /* KWMShopCartItem+CoreDataClass.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "KWMShopCartItem+CoreDataClass.m"; sourceTree = "<group>"; };
80ED0A461D93B82F00B28DF2 /* KWMShopCartItem+CoreDataProperties.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "KWMShopCartItem+CoreDataProperties.h"; sourceTree = "<group>"; };
80ED0A471D93B82F00B28DF2 /* KWMShopCartItem+CoreDataProperties.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "KWMShopCartItem+CoreDataProperties.m"; sourceTree = "<group>"; };
80ED0A4A1D93B99E00B28DF2 /* KWMShopCartData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMShopCartData.h; sourceTree = "<group>"; };
80ED0A4B1D93B99E00B28DF2 /* KWMShopCartData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMShopCartData.m; sourceTree = "<group>"; };
80ED0A4D1D93BD0E00B28DF2 /* KWMShopCartModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMShopCartModel.h; sourceTree = "<group>"; };
80ED0A4E1D93BD0E00B28DF2 /* KWMShopCartModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMShopCartModel.m; sourceTree = "<group>"; };
80F82E4E1D701F82008B470B /* Brand.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Brand.storyboard; sourceTree = "<group>"; };
80F82E561D7033D0008B470B /* KWMBrandModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KWMBrandModel.h; path = DAO/KWMBrandModel.h; sourceTree = "<group>"; };
80F82E571D7033D0008B470B /* KWMBrandModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = KWMBrandModel.m; path = DAO/KWMBrandModel.m; sourceTree = "<group>"; };
80F82E5E1D704E34008B470B /* KWMBrandCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBrandCell.h; sourceTree = "<group>"; };
80F82E5F1D704E34008B470B /* KWMBrandCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBrandCell.m; sourceTree = "<group>"; };
80F82E601D704E34008B470B /* KWMBrandCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMBrandCell.xib; sourceTree = "<group>"; };
9B0148891EF3B5330056D937 /* KWMSelectCurrencyVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSelectCurrencyVC.h; sourceTree = "<group>"; };
9B01488A1EF3B5330056D937 /* KWMSelectCurrencyVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSelectCurrencyVC.m; sourceTree = "<group>"; };
9B01488C1EF3B8750056D937 /* KWMSelectCurrencyCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSelectCurrencyCell.h; sourceTree = "<group>"; };
9B01488D1EF3B8760056D937 /* KWMSelectCurrencyCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSelectCurrencyCell.m; sourceTree = "<group>"; };
9B0F56B61ECD3424009FC5FE /* UIViewController+AppearLog.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+AppearLog.h"; sourceTree = "<group>"; };
9B0F56B71ECD3424009FC5FE /* UIViewController+AppearLog.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+AppearLog.m"; sourceTree = "<group>"; };
9B166F4F1ED6DBCF003E9F03 /* KWMHttpUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMHttpUtil.h; sourceTree = "<group>"; };
9B166F501ED6DBCF003E9F03 /* KWMHttpUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMHttpUtil.m; sourceTree = "<group>"; };
9B18C11D1EF1270A001DD59B /* BUYProductVariant+Currency.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "BUYProductVariant+Currency.h"; sourceTree = "<group>"; };
9B18C11E1EF1270A001DD59B /* BUYProductVariant+Currency.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "BUYProductVariant+Currency.m"; sourceTree = "<group>"; };
9B53D5D51EE94739005BA6F7 /* KWMValidateUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMValidateUtil.h; sourceTree = "<group>"; };
9B53D5D61EE94739005BA6F7 /* KWMValidateUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMValidateUtil.m; sourceTree = "<group>"; };
9B58353B797587723B0E7515 /* Pods-iCemarose.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iCemarose.debug.xcconfig"; path = "Pods/Target Support Files/Pods-iCemarose/Pods-iCemarose.debug.xcconfig"; sourceTree = "<group>"; };
9B8298E11EF22BE200743438 /* KWMCurrencyUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCurrencyUtil.h; sourceTree = "<group>"; };
9B8298E21EF22BE200743438 /* KWMCurrencyUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCurrencyUtil.m; sourceTree = "<group>"; };
9B8298E41EF237FC00743438 /* NSDecimalNumber+Currency.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDecimalNumber+Currency.h"; sourceTree = "<group>"; };
9B8298E51EF237FC00743438 /* NSDecimalNumber+Currency.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDecimalNumber+Currency.m"; sourceTree = "<group>"; };
9BE61CF91ECD56E70031D21E /* KWMDictionaryResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMDictionaryResult.h; sourceTree = "<group>"; };
9BE61CFA1ECD56E70031D21E /* KWMDictioaryResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMDictioaryResult.m; sourceTree = "<group>"; };
9BE61CFC1ECD66BC0031D21E /* KWMShoppingCart.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMShoppingCart.h; sourceTree = "<group>"; };
9BE61CFD1ECD66BC0031D21E /* KWMShoppingCart.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMShoppingCart.m; sourceTree = "<group>"; };
9BE61CFF1ECD71610031D21E /* KWMCartResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCartResult.h; sourceTree = "<group>"; };
9BE61D001ECD71610031D21E /* KWMCartResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCartResult.m; sourceTree = "<group>"; };
B5C3F0326028FE5E2F51B4C1 /* Pods-iCemarose.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-iCemarose.release.xcconfig"; path = "Pods/Target Support Files/Pods-iCemarose/Pods-iCemarose.release.xcconfig"; sourceTree = "<group>"; };
C001BA5A1EB2ED5500B366A8 /* KWMImageBlurUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMImageBlurUtil.h; sourceTree = "<group>"; };
C001BA5B1EB2ED5500B366A8 /* KWMImageBlurUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMImageBlurUtil.m; sourceTree = "<group>"; };
C0028EC31F0DD19C00744C14 /* KWMAdditionalResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMAdditionalResult.h; sourceTree = "<group>"; };
C0028EC41F0DD19C00744C14 /* KWMAdditionalResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMAdditionalResult.m; sourceTree = "<group>"; };
C0028EC61F0DE80500744C14 /* KWMWish.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMWish.h; sourceTree = "<group>"; };
C0028EC71F0DE80500744C14 /* KWMWish.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMWish.m; sourceTree = "<group>"; };
C0028EC91F0E2B3500744C14 /* KWMAdditionalListResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMAdditionalListResult.h; sourceTree = "<group>"; };
C0028ECA1F0E2B3500744C14 /* KWMAdditionalListResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMAdditionalListResult.m; sourceTree = "<group>"; };
C00D40931F187C9500DEA685 /* KWMCategoryTitleView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMCategoryTitleView.xib; sourceTree = "<group>"; };
C00D40951F187CAB00DEA685 /* KWMCategoryTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCategoryTitleView.h; sourceTree = "<group>"; };
C00D40961F187CAB00DEA685 /* KWMCategoryTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCategoryTitleView.m; sourceTree = "<group>"; };
C0219A931DF53EB200711099 /* KWMExchangeRateResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMExchangeRateResult.h; sourceTree = "<group>"; };
C0219A941DF53EB200711099 /* KWMExchangeRateResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMExchangeRateResult.m; sourceTree = "<group>"; };
C0243BAF1EFBD5A10013CFA7 /* Category.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Category.storyboard; sourceTree = "<group>"; };
C0243BB11EFBD5A10013CFA7 /* KWMLeftCategoryCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMLeftCategoryCell.h; sourceTree = "<group>"; };
C0243BB21EFBD5A10013CFA7 /* KWMLeftCategoryCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMLeftCategoryCell.m; sourceTree = "<group>"; };
C0243BB31EFBD5A10013CFA7 /* KWMLeftCategoryCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMLeftCategoryCell.xib; sourceTree = "<group>"; };
C0243BB41EFBD5A10013CFA7 /* KWMRightProductCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMRightProductCell.h; sourceTree = "<group>"; };
C0243BB51EFBD5A10013CFA7 /* KWMRightProductCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMRightProductCell.m; sourceTree = "<group>"; };
C0243BB61EFBD5A10013CFA7 /* KWMRightProductCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMRightProductCell.xib; sourceTree = "<group>"; };
C0243BB71EFBD5A10013CFA7 /* KWMBrandFilterVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBrandFilterVC.h; sourceTree = "<group>"; };
C0243BB81EFBD5A10013CFA7 /* KWMBrandFilterVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBrandFilterVC.m; sourceTree = "<group>"; };
C0243BB91EFBD5A10013CFA7 /* KWMCategoryVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCategoryVC.h; sourceTree = "<group>"; };
C0243BBA1EFBD5A10013CFA7 /* KWMCategoryVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCategoryVC.m; sourceTree = "<group>"; };
C0243BBB1EFBD5A10013CFA7 /* KWMProductFilterVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMProductFilterVC.h; sourceTree = "<group>"; };
C0243BBC1EFBD5A10013CFA7 /* KWMProductFilterVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMProductFilterVC.m; sourceTree = "<group>"; };
C0243BC51EFBD6060013CFA7 /* KWMCategoryFilterTab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCategoryFilterTab.h; sourceTree = "<group>"; };
C0243BC61EFBD6060013CFA7 /* KWMCategoryFilterTab.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCategoryFilterTab.m; sourceTree = "<group>"; };
C0243BC71EFBD6060013CFA7 /* KWMCategoryFilterTab.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMCategoryFilterTab.xib; sourceTree = "<group>"; };
C02986861F0F249D002EB25F /* KWMWishListVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMWishListVC.h; sourceTree = "<group>"; };
C02986871F0F249D002EB25F /* KWMWishListVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMWishListVC.m; sourceTree = "<group>"; };
C029868C1F0F2663002EB25F /* KWMWishCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMWishCell.h; sourceTree = "<group>"; };
C029868D1F0F2663002EB25F /* KWMWishCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMWishCell.m; sourceTree = "<group>"; };
C029868E1F0F2663002EB25F /* KWMWishCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMWishCell.xib; sourceTree = "<group>"; };
C02C7D7B1E640D82008DC29C /* libWeChatSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libWeChatSDK.a; sourceTree = "<group>"; };
C02C7D7C1E640D82008DC29C /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
C02C7D7D1E640D82008DC29C /* WechatAuthSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WechatAuthSDK.h; sourceTree = "<group>"; };
C02C7D7E1E640D82008DC29C /* WXApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApi.h; sourceTree = "<group>"; };
C02C7D7F1E640D82008DC29C /* WXApiObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApiObject.h; sourceTree = "<group>"; };
C02C7D821E640FBF008DC29C /* SystemConfiguration.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SystemConfiguration.framework; path = System/Library/Frameworks/SystemConfiguration.framework; sourceTree = SDKROOT; };
C02C7D841E640FD9008DC29C /* libz.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = libz.tbd; path = usr/lib/libz.tbd; sourceTree = SDKROOT; };
C02C7D871E64118D008DC29C /* libc++.tbd */ = {isa = PBXFileReference; lastKnownFileType = "sourcecode.text-based-dylib-definition"; name = "libc++.tbd"; path = "usr/lib/libc++.tbd"; sourceTree = SDKROOT; };
C02C7D891E64119E008DC29C /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
C02C7D8B1E6411AE008DC29C /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; };
C02C7D8D1E6411C3008DC29C /* CFNetwork.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CFNetwork.framework; path = System/Library/Frameworks/CFNetwork.framework; sourceTree = SDKROOT; };
C02C7D991E642DED008DC29C /* KWMWeChatUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMWeChatUtil.h; sourceTree = "<group>"; };
C02C7D9A1E642DED008DC29C /* KWMWeChatUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMWeChatUtil.m; sourceTree = "<group>"; };
C02C7D9C1E643323008DC29C /* KWMShareVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMShareVC.h; sourceTree = "<group>"; };
C02C7D9D1E643323008DC29C /* KWMShareVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMShareVC.m; sourceTree = "<group>"; };
C02C7D9F1E666978008DC29C /* MessageUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = MessageUI.framework; path = System/Library/Frameworks/MessageUI.framework; sourceTree = SDKROOT; };
C02C7DA11E66AA96008DC29C /* KWMFilterVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMFilterVC.h; sourceTree = "<group>"; };
C02C7DA21E66AA97008DC29C /* KWMFilterVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMFilterVC.m; sourceTree = "<group>"; };
C02C7DA41E66B2AE008DC29C /* KWMFilterCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMFilterCell.h; sourceTree = "<group>"; };
C02C7DA51E66B2AE008DC29C /* KWMFilterCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMFilterCell.m; sourceTree = "<group>"; };
C02C7DA61E66B2AE008DC29C /* KWMFilterCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMFilterCell.xib; sourceTree = "<group>"; };
C02C7DB11E67B56D008DC29C /* KWMFilterHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMFilterHeaderView.h; sourceTree = "<group>"; };
C02C7DB21E67B56D008DC29C /* KWMFilterHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMFilterHeaderView.m; sourceTree = "<group>"; };
C02C7DB31E67B56D008DC29C /* KWMFilterHeaderView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMFilterHeaderView.xib; sourceTree = "<group>"; };
C03120951EF29A5F00E49EFA /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; };
C03120971EF29A8900E49EFA /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; };
C03120991EF29A9800E49EFA /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
C031209B1EF29AA400E49EFA /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
C031209D1EF29ABE00E49EFA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
C031209F1EF29AF200E49EFA /* CoreMotion.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreMotion.framework; path = System/Library/Frameworks/CoreMotion.framework; sourceTree = SDKROOT; };
C03120A21EF29B2900E49EFA /* AlipaySDK.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = AlipaySDK.bundle; sourceTree = "<group>"; };
C03120A31EF29B2900E49EFA /* AlipaySDK.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = AlipaySDK.framework; sourceTree = "<group>"; };
C03120A41EF29B2900E49EFA /* 更新日志.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = "更新日志.txt"; sourceTree = "<group>"; };
C03120A81EF2AC5A00E49EFA /* KWMWechatPayData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMWechatPayData.h; sourceTree = "<group>"; };
C03120A91EF2AC5A00E49EFA /* KWMWechatPayData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMWechatPayData.m; sourceTree = "<group>"; };
C03120AB1EF2AC6700E49EFA /* KWMCheckoutPayResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCheckoutPayResult.h; sourceTree = "<group>"; };
C03120AC1EF2AC6700E49EFA /* KWMCheckoutPayResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCheckoutPayResult.m; sourceTree = "<group>"; };
C03120AE1EF2B26B00E49EFA /* KWMPayUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMPayUtil.h; sourceTree = "<group>"; };
C03120AF1EF2B26B00E49EFA /* KWMPayUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMPayUtil.m; sourceTree = "<group>"; };
C032D3021DD87E07008D3155 /* KWMMetafieldResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMMetafieldResult.h; sourceTree = "<group>"; };
C032D3031DD87E07008D3155 /* KWMMetafieldResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMMetafieldResult.m; sourceTree = "<group>"; };
C032D3051DD87E5F008D3155 /* KWMMetafield.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMMetafield.h; sourceTree = "<group>"; };
C032D3061DD87E5F008D3155 /* KWMMetafield.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMMetafield.m; sourceTree = "<group>"; };
C034E68A1D6AEB12006EE129 /* Cemarose.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Cemarose.app; sourceTree = BUILT_PRODUCTS_DIR; };
C034E68E1D6AEB12006EE129 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
C034E6901D6AEB12006EE129 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = AppDelegate.h; path = ../AppDelegate.h; sourceTree = "<group>"; };
C034E6911D6AEB12006EE129 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = AppDelegate.m; path = ../AppDelegate.m; sourceTree = "<group>"; };
C034E6931D6AEB12006EE129 /* ViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = ViewController.h; path = ../ViewController.h; sourceTree = "<group>"; };
C034E6941D6AEB12006EE129 /* ViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = ViewController.m; path = ../ViewController.m; sourceTree = "<group>"; };
C034E6971D6AEB12006EE129 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
C034E6991D6AEB12006EE129 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; name = Assets.xcassets; path = ../Assets.xcassets; sourceTree = "<group>"; };
C034E69C1D6AEB12006EE129 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
C034E69E1D6AEB12006EE129 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = Info.plist; path = ../Info.plist; sourceTree = "<group>"; };
C034E6A31D6AEB13006EE129 /* iCemaroseTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iCemaroseTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
C034E6A71D6AEB13006EE129 /* iCemaroseTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = iCemaroseTests.m; sourceTree = "<group>"; };
C034E6A91D6AEB13006EE129 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C034E6AE1D6AEB13006EE129 /* iCemaroseUITests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = iCemaroseUITests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
C034E6B21D6AEB13006EE129 /* iCemaroseUITests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = iCemaroseUITests.m; sourceTree = "<group>"; };
C034E6B41D6AEB13006EE129 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
C034E6C61D6AED1F006EE129 /* KWMUser.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMUser.h; sourceTree = "<group>"; };
C034E6C71D6AED1F006EE129 /* KWMUser.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMUser.m; sourceTree = "<group>"; };
C034E6C91D6AED31006EE129 /* KWMBaseModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBaseModel.h; sourceTree = "<group>"; };
C034E6CA1D6AED31006EE129 /* KWMBaseModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBaseModel.m; sourceTree = "<group>"; };
C034E6CD1D6AEE39006EE129 /* KWMUserDao.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMUserDao.h; sourceTree = "<group>"; };
C034E6CE1D6AEE39006EE129 /* KWMUserDao.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMUserDao.m; sourceTree = "<group>"; };
C034E6D01D6AEF1B006EE129 /* KWMImageUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMImageUtil.h; sourceTree = "<group>"; };
C034E6D11D6AEF1B006EE129 /* KWMImageUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMImageUtil.m; sourceTree = "<group>"; };
C034E6D21D6AEF1B006EE129 /* KWMStringUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMStringUtil.h; sourceTree = "<group>"; };
C034E6D31D6AEF1B006EE129 /* KWMStringUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMStringUtil.m; sourceTree = "<group>"; };
C034E6D41D6AEF1B006EE129 /* KWMTextFieldUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMTextFieldUtil.h; sourceTree = "<group>"; };
C034E6D51D6AEF1B006EE129 /* KWMTextFieldUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMTextFieldUtil.m; sourceTree = "<group>"; };
C034E6DC1D6AEF53006EE129 /* KWMAPIManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMAPIManager.h; sourceTree = "<group>"; };
C034E6DD1D6AEF53006EE129 /* KWMAPIManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMAPIManager.m; sourceTree = "<group>"; };
C034E6DF1D6AEF62006EE129 /* KWMRequestListResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMRequestListResult.h; sourceTree = "<group>"; };
C034E6E01D6AEF62006EE129 /* KWMRequestListResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMRequestListResult.m; sourceTree = "<group>"; };
C034E6E21D6AEF73006EE129 /* KWMRequestResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMRequestResult.h; sourceTree = "<group>"; };
C034E6E31D6AEF73006EE129 /* KWMRequestResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMRequestResult.m; sourceTree = "<group>"; };
C034E6E91D6AF0A0006EE129 /* Header-Prefix.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Header-Prefix.h"; sourceTree = "<group>"; };
C034E6EA1D6AF0A0006EE129 /* Localizable.strings */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.strings; path = Localizable.strings; sourceTree = "<group>"; };
C034E6EC1D6AF13A006EE129 /* KWMBaseVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBaseVC.h; sourceTree = "<group>"; };
C034E6ED1D6AF13A006EE129 /* KWMBaseVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBaseVC.m; sourceTree = "<group>"; };
C034E6EE1D6AF13A006EE129 /* KWMBasePageVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBasePageVC.h; sourceTree = "<group>"; };
C034E6EF1D6AF13A006EE129 /* KWMBasePageVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBasePageVC.m; sourceTree = "<group>"; };
C034E6F21D6AF197006EE129 /* KWMPickView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMPickView.h; sourceTree = "<group>"; };
C034E6F31D6AF197006EE129 /* KWMPickView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMPickView.m; sourceTree = "<group>"; };
C034E6F41D6AF197006EE129 /* KWMPickView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMPickView.xib; sourceTree = "<group>"; };
C034E6F71D6AF205006EE129 /* KWMButton.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMButton.h; sourceTree = "<group>"; };
C034E6F81D6AF205006EE129 /* KWMButton.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMButton.m; sourceTree = "<group>"; };
C034E6FC1D6AF205006EE129 /* KWMLineView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMLineView.h; sourceTree = "<group>"; };
C034E6FD1D6AF205006EE129 /* KWMLineView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMLineView.m; sourceTree = "<group>"; };
C034E6FE1D6AF205006EE129 /* RTSpinKitView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RTSpinKitView.h; sourceTree = "<group>"; };
C034E6FF1D6AF205006EE129 /* RTSpinKitView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RTSpinKitView.m; sourceTree = "<group>"; };
C034E7AE1D6AFBDA006EE129 /* KWMWebViewVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMWebViewVC.h; sourceTree = "<group>"; };
C034E7AF1D6AFBDA006EE129 /* KWMWebViewVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMWebViewVC.m; sourceTree = "<group>"; };
C034E7B11D6AFC3B006EE129 /* KWMMainVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMMainVC.h; sourceTree = "<group>"; };
C034E7B21D6AFC3B006EE129 /* KWMMainVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMMainVC.m; sourceTree = "<group>"; };
C034E7B71D6B0A8D006EE129 /* KWMHomeVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMHomeVC.h; sourceTree = "<group>"; };
C034E7B81D6B0A8D006EE129 /* KWMHomeVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMHomeVC.m; sourceTree = "<group>"; };
C034E7C01D6B0B62006EE129 /* KWMMineVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMMineVC.h; sourceTree = "<group>"; };
C034E7C11D6B0B62006EE129 /* KWMMineVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMMineVC.m; sourceTree = "<group>"; };
C034E7C61D6B10A0006EE129 /* NSString+File.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+File.h"; sourceTree = "<group>"; };
C034E7C71D6B10A0006EE129 /* NSString+File.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+File.m"; sourceTree = "<group>"; };
C034E7C81D6B10A0006EE129 /* CoreArchive.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CoreArchive.h; sourceTree = "<group>"; };
C034E7C91D6B10A0006EE129 /* CoreArchive.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CoreArchive.m; sourceTree = "<group>"; };
C034E7CC1D6B10A0006EE129 /* CALayer+Anim.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Anim.h"; sourceTree = "<group>"; };
C034E7CD1D6B10A0006EE129 /* CALayer+Anim.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Anim.m"; sourceTree = "<group>"; };
C034E7CE1D6B10A0006EE129 /* CALayer+Transition.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CALayer+Transition.h"; sourceTree = "<group>"; };
C034E7CF1D6B10A0006EE129 /* CALayer+Transition.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CALayer+Transition.m"; sourceTree = "<group>"; };
C034E7D11D6B10A0006EE129 /* NSArray+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+Extend.h"; sourceTree = "<group>"; };
C034E7D21D6B10A0006EE129 /* NSArray+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+Extend.m"; sourceTree = "<group>"; };
C034E7D41D6B10A0006EE129 /* NSDate+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extend.h"; sourceTree = "<group>"; };
C034E7D51D6B10A0006EE129 /* NSDate+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extend.m"; sourceTree = "<group>"; };
C034E7D71D6B10A0006EE129 /* NSObject+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSObject+Extend.h"; sourceTree = "<group>"; };
C034E7D81D6B10A0006EE129 /* NSObject+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Extend.m"; sourceTree = "<group>"; };
C034E7DA1D6B10A0006EE129 /* NSString+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Extend.h"; sourceTree = "<group>"; };
C034E7DB1D6B10A0006EE129 /* NSString+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extend.m"; sourceTree = "<group>"; };
C034E7DC1D6B10A0006EE129 /* NSString+Password.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Password.h"; sourceTree = "<group>"; };
C034E7DD1D6B10A0006EE129 /* NSString+Password.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Password.m"; sourceTree = "<group>"; };
C034E7DF1D6B10A0006EE129 /* UIColor+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIColor+Extend.h"; sourceTree = "<group>"; };
C034E7E01D6B10A0006EE129 /* UIColor+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIColor+Extend.m"; sourceTree = "<group>"; };
C034E7E21D6B10A0006EE129 /* UIDevice+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIDevice+Extend.h"; sourceTree = "<group>"; };
C034E7E31D6B10A0006EE129 /* UIDevice+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIDevice+Extend.m"; sourceTree = "<group>"; };
C034E7E51D6B10A0006EE129 /* UIFont+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIFont+Extend.h"; sourceTree = "<group>"; };
C034E7E61D6B10A0006EE129 /* UIFont+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIFont+Extend.m"; sourceTree = "<group>"; };
C034E7E81D6B10A0006EE129 /* UIImage+Color.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Color.h"; sourceTree = "<group>"; };
C034E7E91D6B10A0006EE129 /* UIImage+Color.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Color.m"; sourceTree = "<group>"; };
C034E7EA1D6B10A0006EE129 /* UIImage+Cut.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Cut.h"; sourceTree = "<group>"; };
C034E7EB1D6B10A0006EE129 /* UIImage+Cut.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Cut.m"; sourceTree = "<group>"; };
C034E7EC1D6B10A0006EE129 /* UIImage+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Extend.h"; sourceTree = "<group>"; };
C034E7ED1D6B10A0006EE129 /* UIImage+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Extend.m"; sourceTree = "<group>"; };
C034E7EE1D6B10A0006EE129 /* UIImage+FixOrientation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+FixOrientation.h"; sourceTree = "<group>"; };
C034E7EF1D6B10A0006EE129 /* UIImage+FixOrientation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+FixOrientation.m"; sourceTree = "<group>"; };
C034E7F01D6B10A0006EE129 /* UIImage+Water.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+Water.h"; sourceTree = "<group>"; };
C034E7F11D6B10A0006EE129 /* UIImage+Water.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Water.m"; sourceTree = "<group>"; };
C034E7F31D6B10A0006EE129 /* UITableViewCell+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UITableViewCell+Extend.h"; sourceTree = "<group>"; };
C034E7F41D6B10A0006EE129 /* UITableViewCell+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UITableViewCell+Extend.m"; sourceTree = "<group>"; };
C034E7F61D6B10A0006EE129 /* UIView+Extend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Extend.h"; sourceTree = "<group>"; };
C034E7F71D6B10A0006EE129 /* UIView+Extend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Extend.m"; sourceTree = "<group>"; };
C034E7F91D6B10A0006EE129 /* UIWindow+Launch.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWindow+Launch.h"; sourceTree = "<group>"; };
C034E7FA1D6B10A0006EE129 /* UIWindow+Launch.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWindow+Launch.m"; sourceTree = "<group>"; };
C034E7FC1D6B10A0006EE129 /* CoreConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CoreConst.h; sourceTree = "<group>"; };
C034E8001D6B10A0006EE129 /* UIImage+ReMake.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+ReMake.h"; sourceTree = "<group>"; };
C034E8011D6B10A0006EE129 /* UIImage+ReMake.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+ReMake.m"; sourceTree = "<group>"; };
C034E8031D6B10A0006EE129 /* CoreSDWebImage.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = CoreSDWebImage.bundle; sourceTree = "<group>"; };
C034E8041D6B10A0006EE129 /* UIButton+SD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+SD.h"; sourceTree = "<group>"; };
C034E8051D6B10A0006EE129 /* UIButton+SD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+SD.m"; sourceTree = "<group>"; };
C034E8061D6B10A0006EE129 /* UIImageView+SD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+SD.h"; sourceTree = "<group>"; };
C034E8071D6B10A0006EE129 /* UIImageView+SD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+SD.m"; sourceTree = "<group>"; };
C034E8091D6B10A0006EE129 /* CoreSVP.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = CoreSVP.bundle; sourceTree = "<group>"; };
C034E80A1D6B10A0006EE129 /* CoreSVP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CoreSVP.h; sourceTree = "<group>"; };
C034E80B1D6B10A0006EE129 /* CoreSVP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CoreSVP.m; sourceTree = "<group>"; };
C034E80D1D6B10A0006EE129 /* SVIndefiniteAnimatedView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVIndefiniteAnimatedView.h; sourceTree = "<group>"; };
C034E80E1D6B10A0006EE129 /* SVIndefiniteAnimatedView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SVIndefiniteAnimatedView.m; sourceTree = "<group>"; };
C034E80F1D6B10A0006EE129 /* SVProgressHUD-Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SVProgressHUD-Prefix.pch"; sourceTree = "<group>"; };
C034E8101D6B10A0006EE129 /* SVProgressHUD.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = SVProgressHUD.bundle; sourceTree = "<group>"; };
C034E8111D6B10A0006EE129 /* SVProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVProgressHUD.h; sourceTree = "<group>"; };
C034E8121D6B10A0006EE129 /* SVProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SVProgressHUD.m; sourceTree = "<group>"; };
C034E8141D6B10A0006EE129 /* LFRoundProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LFRoundProgressView.h; sourceTree = "<group>"; };
C034E8151D6B10A0006EE129 /* LFRoundProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LFRoundProgressView.m; sourceTree = "<group>"; };
C034E8181D6B10A0006EE129 /* UIView+PBExtend.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+PBExtend.h"; sourceTree = "<group>"; };
C034E8191D6B10A0006EE129 /* UIView+PBExtend.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+PBExtend.m"; sourceTree = "<group>"; };
C034E81B1D6B10A0006EE129 /* PBConst.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PBConst.h; sourceTree = "<group>"; };
C034E81C1D6B10A0006EE129 /* PBConst.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PBConst.m; sourceTree = "<group>"; };
C034E81E1D6B10A0006EE129 /* PhotoBroswerLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoBroswerLayout.h; sourceTree = "<group>"; };
C034E81F1D6B10A0006EE129 /* PhotoBroswerLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoBroswerLayout.m; sourceTree = "<group>"; };
C034E8211D6B10A0006EE129 /* PhotoModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoModel.h; sourceTree = "<group>"; };
C034E8221D6B10A0006EE129 /* PhotoModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoModel.m; sourceTree = "<group>"; };
C034E8241D6B10A0006EE129 /* PB.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = PB.bundle; sourceTree = "<group>"; };
C034E8261D6B10A0006EE129 /* PhotoBroswerType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoBroswerType.h; sourceTree = "<group>"; };
C034E8281D6B10A0006EE129 /* PBBlurImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PBBlurImageView.h; sourceTree = "<group>"; };
C034E8291D6B10A0006EE129 /* PBBlurImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PBBlurImageView.m; sourceTree = "<group>"; };
C034E82A1D6B10A0006EE129 /* PBPGView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PBPGView.h; sourceTree = "<group>"; };
C034E82B1D6B10A0006EE129 /* PBPGView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PBPGView.m; sourceTree = "<group>"; };
C034E82C1D6B10A0006EE129 /* PBSaveBtn.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PBSaveBtn.h; sourceTree = "<group>"; };
C034E82D1D6B10A0006EE129 /* PBSaveBtn.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PBSaveBtn.m; sourceTree = "<group>"; };
C034E82E1D6B10A0006EE129 /* PBScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PBScrollView.h; sourceTree = "<group>"; };
C034E82F1D6B10A0006EE129 /* PBScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PBScrollView.m; sourceTree = "<group>"; };
C034E8301D6B10A0006EE129 /* PhotoImageView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoImageView.h; sourceTree = "<group>"; };
C034E8311D6B10A0006EE129 /* PhotoImageView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoImageView.m; sourceTree = "<group>"; };
C034E8321D6B10A0006EE129 /* PhotoItemView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoItemView.h; sourceTree = "<group>"; };
C034E8331D6B10A0006EE129 /* PhotoItemView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoItemView.m; sourceTree = "<group>"; };
C034E8341D6B10A0006EE129 /* PhotoItemView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhotoItemView.xib; sourceTree = "<group>"; };
C034E8351D6B10A0006EE129 /* PhotoBroswerVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PhotoBroswerVC.h; sourceTree = "<group>"; };
C034E8361D6B10A0006EE129 /* PhotoBroswerVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PhotoBroswerVC.m; sourceTree = "<group>"; };
C034E8371D6B10A0006EE129 /* PhotoBroswerVC.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = PhotoBroswerVC.xib; sourceTree = "<group>"; };
C034E8391D6B10A0006EE129 /* EGORefreshTableFooterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EGORefreshTableFooterView.h; sourceTree = "<group>"; };
C034E83A1D6B10A0006EE129 /* EGORefreshTableFooterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EGORefreshTableFooterView.m; sourceTree = "<group>"; };
C034E83B1D6B10A0006EE129 /* EGORefreshTableHeaderView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EGORefreshTableHeaderView.h; sourceTree = "<group>"; };
C034E83C1D6B10A0006EE129 /* EGORefreshTableHeaderView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = EGORefreshTableHeaderView.m; sourceTree = "<group>"; };
C034E83D1D6B10A0006EE129 /* EGOViewCommon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = EGOViewCommon.h; sourceTree = "<group>"; };
C038468F1DB87BCA008C3BAB /* KWMCustomer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCustomer.h; sourceTree = "<group>"; };
C03846901DB87BCA008C3BAB /* KWMCustomer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCustomer.m; sourceTree = "<group>"; };
C03846921DB89EEB008C3BAB /* KWMCemaroseResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCemaroseResult.h; sourceTree = "<group>"; };
C03846931DB89EEB008C3BAB /* KWMCemaroseResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCemaroseResult.m; sourceTree = "<group>"; };
C0392DB61DCC38450051AC8E /* KWMShippingCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMShippingCell.h; sourceTree = "<group>"; };
C0392DB71DCC38450051AC8E /* KWMShippingCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMShippingCell.m; sourceTree = "<group>"; };
C0392DB81DCC38450051AC8E /* KWMShippingCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMShippingCell.xib; sourceTree = "<group>"; };
C0392DBB1DCC786F0051AC8E /* KWMShippingVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMShippingVC.h; sourceTree = "<group>"; };
C0392DBC1DCC786F0051AC8E /* KWMShippingVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMShippingVC.m; sourceTree = "<group>"; };
C03943BE1DD1FCE900141475 /* KWMProductType.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMProductType.h; sourceTree = "<group>"; };
C03943BF1DD1FCE900141475 /* KWMProductType.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMProductType.m; sourceTree = "<group>"; };
C03943C11DD1FD3F00141475 /* KWMProductTypeResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMProductTypeResult.h; sourceTree = "<group>"; };
C03943C21DD1FD3F00141475 /* KWMProductTypeResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMProductTypeResult.m; sourceTree = "<group>"; };
C03A05041E35DC5800BAA889 /* KWMNewGiftCardVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNewGiftCardVC.h; sourceTree = "<group>"; };
C03A05051E35DC5800BAA889 /* KWMNewGiftCardVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNewGiftCardVC.m; sourceTree = "<group>"; };
C04392781F0F99310027ABA3 /* KWMHomeData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMHomeData.h; sourceTree = "<group>"; };
C04392791F0F99310027ABA3 /* KWMHomeData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMHomeData.m; sourceTree = "<group>"; };
C043927B1F0F9A2A0027ABA3 /* KWMAdvertisement.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMAdvertisement.h; sourceTree = "<group>"; };
C043927C1F0F9A2A0027ABA3 /* KWMAdvertisement.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMAdvertisement.m; sourceTree = "<group>"; };
C043927E1F0F9A3D0027ABA3 /* KWMHotSales.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMHotSales.h; sourceTree = "<group>"; };
C043927F1F0F9A3D0027ABA3 /* KWMHotSales.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMHotSales.m; sourceTree = "<group>"; };
C04834211F13215500A5BFB4 /* KWMBannerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBannerView.h; sourceTree = "<group>"; };
C04834221F13215500A5BFB4 /* KWMBannerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBannerView.m; sourceTree = "<group>"; };
C04834291F1324B400A5BFB4 /* KWMAdHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMAdHeader.h; sourceTree = "<group>"; };
C048342A1F1324B400A5BFB4 /* KWMAdHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMAdHeader.m; sourceTree = "<group>"; };
C048342C1F13254200A5BFB4 /* KWMMenuHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMMenuHeader.h; sourceTree = "<group>"; };
C048342D1F13254200A5BFB4 /* KWMMenuHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMMenuHeader.m; sourceTree = "<group>"; };
C04834321F1325A000A5BFB4 /* KWMClothingSetsHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMClothingSetsHeader.h; sourceTree = "<group>"; };
C04834331F1325A000A5BFB4 /* KWMClothingSetsHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMClothingSetsHeader.m; sourceTree = "<group>"; };
C04834351F1325CB00A5BFB4 /* KWMHotSalesHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMHotSalesHeader.h; sourceTree = "<group>"; };
C04834361F1325CB00A5BFB4 /* KWMHotSalesHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMHotSalesHeader.m; sourceTree = "<group>"; };
C04834381F13274300A5BFB4 /* KWMNewHomeVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNewHomeVC.h; sourceTree = "<group>"; };
C04834391F13274300A5BFB4 /* KWMNewHomeVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNewHomeVC.m; sourceTree = "<group>"; };
C048343D1F13288F00A5BFB4 /* KWMMenuHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMMenuHeader.xib; sourceTree = "<group>"; };
C048343F1F13350F00A5BFB4 /* KWMRecommendHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMRecommendHeader.h; sourceTree = "<group>"; };
C04834401F13350F00A5BFB4 /* KWMRecommendHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMRecommendHeader.m; sourceTree = "<group>"; };
C04834421F1337A800A5BFB4 /* KWMNewHomeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNewHomeCell.h; sourceTree = "<group>"; };
C04834431F1337A800A5BFB4 /* KWMNewHomeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNewHomeCell.m; sourceTree = "<group>"; };
C04834441F1337A800A5BFB4 /* KWMNewHomeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMNewHomeCell.xib; sourceTree = "<group>"; };
C04834471F1338F200A5BFB4 /* KWMRecommendHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMRecommendHeader.xib; sourceTree = "<group>"; };
C04834491F13391A00A5BFB4 /* KWMClothingSetsHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMClothingSetsHeader.xib; sourceTree = "<group>"; };
C048344B1F13393D00A5BFB4 /* KWMHotSalesHeader.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMHotSalesHeader.xib; sourceTree = "<group>"; };
C048344D1F13590500A5BFB4 /* KWMProductBannerItemView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMProductBannerItemView.h; sourceTree = "<group>"; };
C048344E1F13590500A5BFB4 /* KWMProductBannerItemView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMProductBannerItemView.m; sourceTree = "<group>"; };
C048344F1F13590500A5BFB4 /* KWMProductBannerItemView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMProductBannerItemView.xib; sourceTree = "<group>"; };
C04834501F13590500A5BFB4 /* KWMClothingSetsCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMClothingSetsCell.h; sourceTree = "<group>"; };
C04834511F13590500A5BFB4 /* KWMClothingSetsCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMClothingSetsCell.m; sourceTree = "<group>"; };
C04834521F13590500A5BFB4 /* KWMClothingSetsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMClothingSetsCell.xib; sourceTree = "<group>"; };
C048B8E01EF3C04B000DA7AF /* KWMBeforePayData.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBeforePayData.h; sourceTree = "<group>"; };
C048B8E11EF3C04B000DA7AF /* KWMBeforePayData.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBeforePayData.m; sourceTree = "<group>"; };
C048B8E31EF3F20B000DA7AF /* KWMCollectionRefreshUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCollectionRefreshUtil.h; sourceTree = "<group>"; };
C048B8E41EF3F20B000DA7AF /* KWMCollectionRefreshUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCollectionRefreshUtil.m; sourceTree = "<group>"; };
C057C77B1F172D4C00B95034 /* KWMMidDetailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMMidDetailView.h; sourceTree = "<group>"; };
C057C77C1F172D4C00B95034 /* KWMMidDetailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMMidDetailView.m; sourceTree = "<group>"; };
C057C77E1F172D8E00B95034 /* KWMMidDetailView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMMidDetailView.xib; sourceTree = "<group>"; };
C05910911E34A729002990B3 /* KWMNewGiftCardCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = KWMNewGiftCardCell.h; path = ../../ShopCart/Cell/KWMNewGiftCardCell.h; sourceTree = "<group>"; };
C05910921E34A729002990B3 /* KWMNewGiftCardCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = KWMNewGiftCardCell.m; path = ../../ShopCart/Cell/KWMNewGiftCardCell.m; sourceTree = "<group>"; };
C05910931E34A729002990B3 /* KWMNewGiftCardCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; name = KWMNewGiftCardCell.xib; path = ../../ShopCart/Cell/KWMNewGiftCardCell.xib; sourceTree = "<group>"; };
C06665031D75A2E500F02EF4 /* KWMOrderCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMOrderCell.h; sourceTree = "<group>"; };
C06665041D75A2E500F02EF4 /* KWMOrderCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMOrderCell.m; sourceTree = "<group>"; };
C06665051D75A2E500F02EF4 /* KWMOrderCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMOrderCell.xib; sourceTree = "<group>"; };
C06665061D75A2E500F02EF4 /* KWMOrderVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMOrderVC.h; sourceTree = "<group>"; };
C06665071D75A2E500F02EF4 /* KWMOrderVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMOrderVC.m; sourceTree = "<group>"; };
C06665081D75A2E500F02EF4 /* Mine.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Mine.storyboard; sourceTree = "<group>"; };
C066650D1D7675FC00F02EF4 /* KWMAboutUsVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMAboutUsVC.h; sourceTree = "<group>"; };
C066650E1D7675FC00F02EF4 /* KWMAboutUsVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMAboutUsVC.m; sourceTree = "<group>"; };
C06665101D767A0A00F02EF4 /* KWMContactUsVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMContactUsVC.h; sourceTree = "<group>"; };
C06665111D767A0A00F02EF4 /* KWMContactUsVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMContactUsVC.m; sourceTree = "<group>"; };
C07267801F15D62400C5A869 /* NSLayoutConstraint+Multiplier.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSLayoutConstraint+Multiplier.h"; sourceTree = "<group>"; };
C07267811F15D62400C5A869 /* NSLayoutConstraint+Multiplier.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSLayoutConstraint+Multiplier.m"; sourceTree = "<group>"; };
C07267831F1616E500C5A869 /* KWMColor.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMColor.h; sourceTree = "<group>"; };
C07267841F1616E500C5A869 /* KWMColor.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMColor.m; sourceTree = "<group>"; };
C077966D1EEAA2BE00CD6859 /* KWMFilterUtil.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMFilterUtil.h; sourceTree = "<group>"; };
C077966E1EEAA2BE00CD6859 /* KWMFilterUtil.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMFilterUtil.m; sourceTree = "<group>"; };
C084F4501D6D8CA700A0625D /* KWMBlogCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBlogCell.h; sourceTree = "<group>"; };
C084F4511D6D8CA700A0625D /* KWMBlogCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBlogCell.m; sourceTree = "<group>"; };
C084F4521D6D8CA700A0625D /* KWMBlogCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMBlogCell.xib; sourceTree = "<group>"; };
C084F4551D6D975400A0625D /* KWMSearchBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSearchBar.h; sourceTree = "<group>"; };
C084F4561D6D975400A0625D /* KWMSearchBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSearchBar.m; sourceTree = "<group>"; };
C084F4581D6D976F00A0625D /* KWMSearchBar.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMSearchBar.xib; sourceTree = "<group>"; };
C08827A41E28B4AF006A8B91 /* KWMPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMPageControl.h; sourceTree = "<group>"; };
C08827A51E28B4AF006A8B91 /* KWMPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMPageControl.m; sourceTree = "<group>"; };
C08870E61F0342B000C9C1C8 /* KWMCustomsClearanceVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCustomsClearanceVC.h; sourceTree = "<group>"; };
C08870E71F0342B000C9C1C8 /* KWMCustomsClearanceVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCustomsClearanceVC.m; sourceTree = "<group>"; };
C08870E91F03481C00C9C1C8 /* KWMCustomsClearance.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCustomsClearance.h; sourceTree = "<group>"; };
C08870EA1F03481C00C9C1C8 /* KWMCustomsClearance.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCustomsClearance.m; sourceTree = "<group>"; };
C08FDA251D9A5F3400EBDB0D /* KWMAddGiftCardVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMAddGiftCardVC.h; sourceTree = "<group>"; };
C08FDA261D9A5F3400EBDB0D /* KWMAddGiftCardVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMAddGiftCardVC.m; sourceTree = "<group>"; };
C08FDA281D9B583400EBDB0D /* KWMGiftCardVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMGiftCardVC.h; sourceTree = "<group>"; };
C08FDA291D9B583400EBDB0D /* KWMGiftCardVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMGiftCardVC.m; sourceTree = "<group>"; };
C091EE311DDB1FC500A382B9 /* KWMAppVersion.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMAppVersion.h; sourceTree = "<group>"; };
C091EE321DDB1FC500A382B9 /* KWMAppVersion.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMAppVersion.m; sourceTree = "<group>"; };
C091EE341DDEEA9400A382B9 /* KWMVariants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMVariants.h; sourceTree = "<group>"; };
C091EE351DDEEA9400A382B9 /* KWMVariants.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMVariants.m; sourceTree = "<group>"; };
C0A6B3AA1F01FC5300D85673 /* KWMFirstDetailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMFirstDetailView.h; sourceTree = "<group>"; };
C0A6B3AB1F01FC5300D85673 /* KWMFirstDetailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMFirstDetailView.m; sourceTree = "<group>"; };
C0A6B3AC1F01FC5300D85673 /* KWMFirstDetailView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMFirstDetailView.xib; sourceTree = "<group>"; };
C0A6B3AD1F01FC5300D85673 /* KWMProductColorCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMProductColorCell.h; sourceTree = "<group>"; };
C0A6B3AE1F01FC5300D85673 /* KWMProductColorCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMProductColorCell.m; sourceTree = "<group>"; };
C0A6B3AF1F01FC5300D85673 /* KWMProductColorCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMProductColorCell.xib; sourceTree = "<group>"; };
C0A6B3B01F01FC5300D85673 /* KWMProductSizeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMProductSizeCell.h; sourceTree = "<group>"; };
C0A6B3B11F01FC5300D85673 /* KWMProductSizeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMProductSizeCell.m; sourceTree = "<group>"; };
C0A6B3B21F01FC5300D85673 /* KWMProductSizeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMProductSizeCell.xib; sourceTree = "<group>"; };
C0A6B3B31F01FC5300D85673 /* KWMSecondDetailView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSecondDetailView.h; sourceTree = "<group>"; };
C0A6B3B41F01FC5300D85673 /* KWMSecondDetailView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSecondDetailView.m; sourceTree = "<group>"; };
C0A6B3B51F01FC5300D85673 /* KWMSecondDetailView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMSecondDetailView.xib; sourceTree = "<group>"; };
C0A6B3B91F01FC5300D85673 /* KWMNewProductVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNewProductVC.h; sourceTree = "<group>"; };
C0A6B3BA1F01FC5300D85673 /* KWMNewProductVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNewProductVC.m; sourceTree = "<group>"; };
C0A6B3BB1F01FC5300D85673 /* KWMVariantsVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMVariantsVC.h; sourceTree = "<group>"; };
C0A6B3BC1F01FC5300D85673 /* KWMVariantsVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMVariantsVC.m; sourceTree = "<group>"; };
C0A6B3BD1F01FC5300D85673 /* NewProduct.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = NewProduct.storyboard; sourceTree = "<group>"; };
C0AF03981DD5BFB20060623F /* UIViewController+BackButtonHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIViewController+BackButtonHandler.h"; path = "EGO/UIViewController+BackButtonHandler.h"; sourceTree = "<group>"; };
C0AF03991DD5BFB20060623F /* UIViewController+BackButtonHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIViewController+BackButtonHandler.m"; path = "EGO/UIViewController+BackButtonHandler.m"; sourceTree = "<group>"; };
C0AF039B1DD5C8EE0060623F /* KWMNeedAddressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNeedAddressView.h; sourceTree = "<group>"; };
C0AF039C1DD5C8EE0060623F /* KWMNeedAddressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNeedAddressView.m; sourceTree = "<group>"; };
C0AF039D1DD5C8EE0060623F /* KWMNeedAddressView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMNeedAddressView.xib; sourceTree = "<group>"; };
C0CC13FB1D7823B0007B5986 /* KWMDeleteView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMDeleteView.h; sourceTree = "<group>"; };
C0CC13FC1D7823B0007B5986 /* KWMDeleteView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMDeleteView.m; sourceTree = "<group>"; };
C0CC13FD1D7823B0007B5986 /* KWMDeleteView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMDeleteView.xib; sourceTree = "<group>"; };
C0CC13FE1D7823B0007B5986 /* KWMShopCarCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMShopCarCell.h; sourceTree = "<group>"; };
C0CC13FF1D7823B0007B5986 /* KWMShopCarCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMShopCarCell.m; sourceTree = "<group>"; };
C0CC14001D7823B0007B5986 /* KWMShopCarCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMShopCarCell.xib; sourceTree = "<group>"; };
C0CC14011D7823B0007B5986 /* KWMSizeCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSizeCell.h; sourceTree = "<group>"; };
C0CC14021D7823B0007B5986 /* KWMSizeCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSizeCell.m; sourceTree = "<group>"; };
C0CC14031D7823B0007B5986 /* KWMSizeCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMSizeCell.xib; sourceTree = "<group>"; };
C0CC140A1D7829FC007B5986 /* KWMSelectSizeVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSelectSizeVC.h; sourceTree = "<group>"; };
C0CC140B1D7829FC007B5986 /* KWMSelectSizeVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSelectSizeVC.m; sourceTree = "<group>"; };
C0CC140D1D7926DF007B5986 /* KWMBeforePayVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBeforePayVC.h; sourceTree = "<group>"; };
C0CC140E1D7926DF007B5986 /* KWMBeforePayVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBeforePayVC.m; sourceTree = "<group>"; };
C0CC14101D795743007B5986 /* KWMDiscountVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMDiscountVC.h; sourceTree = "<group>"; };
C0CC14111D795743007B5986 /* KWMDiscountVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMDiscountVC.m; sourceTree = "<group>"; };
C0CC14131D79826F007B5986 /* KWMAddressCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMAddressCell.h; sourceTree = "<group>"; };
C0CC14141D79826F007B5986 /* KWMAddressCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMAddressCell.m; sourceTree = "<group>"; };
C0CC14151D79826F007B5986 /* KWMAddressCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMAddressCell.xib; sourceTree = "<group>"; };
C0CC14181D79847A007B5986 /* KWMSelectAddressVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSelectAddressVC.h; sourceTree = "<group>"; };
C0CC14191D79847A007B5986 /* KWMSelectAddressVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSelectAddressVC.m; sourceTree = "<group>"; };
C0CCB3B61EEA579900BC2FB8 /* KWMFilterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMFilterView.h; sourceTree = "<group>"; };
C0CCB3B71EEA579900BC2FB8 /* KWMFilterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMFilterView.m; sourceTree = "<group>"; };
C0CCB3B81EEA579900BC2FB8 /* KWMFilterView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMFilterView.xib; sourceTree = "<group>"; };
C0CCB3BB1EEA589200BC2FB8 /* KWMFilter.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMFilter.h; sourceTree = "<group>"; };
C0CCB3BC1EEA589200BC2FB8 /* KWMFilter.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMFilter.m; sourceTree = "<group>"; };
C0CCB3BE1EEA59A200BC2FB8 /* KWMFilterViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMFilterViewCell.h; sourceTree = "<group>"; };
C0CCB3BF1EEA59A200BC2FB8 /* KWMFilterViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMFilterViewCell.m; sourceTree = "<group>"; };
C0CCB3C01EEA59A200BC2FB8 /* KWMFilterViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMFilterViewCell.xib; sourceTree = "<group>"; };
C0CCB3C31EEA5A1100BC2FB8 /* UIView+Prettify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIView+Prettify.h"; sourceTree = "<group>"; };
C0CCB3C41EEA5A1100BC2FB8 /* UIView+Prettify.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIView+Prettify.m"; sourceTree = "<group>"; };
C0CCB3C61EEA765B00BC2FB8 /* KWMFilterTabItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMFilterTabItem.h; sourceTree = "<group>"; };
C0CCB3C71EEA765B00BC2FB8 /* KWMFilterTabItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMFilterTabItem.m; sourceTree = "<group>"; };
C0CCB3C81EEA765B00BC2FB8 /* KWMFilterTabItem.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMFilterTabItem.xib; sourceTree = "<group>"; };
C0CCB3C91EEA765B00BC2FB8 /* KWMNormalFilterTab.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNormalFilterTab.h; sourceTree = "<group>"; };
C0CCB3CA1EEA765B00BC2FB8 /* KWMNormalFilterTab.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNormalFilterTab.m; sourceTree = "<group>"; };
C0CCB3CB1EEA765B00BC2FB8 /* KWMNormalFilterTab.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMNormalFilterTab.xib; sourceTree = "<group>"; };
C0CCB3CC1EEA765B00BC2FB8 /* KWMNormalFilterView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNormalFilterView.h; sourceTree = "<group>"; };
C0CCB3CD1EEA765B00BC2FB8 /* KWMNormalFilterView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNormalFilterView.m; sourceTree = "<group>"; };
C0CCB3CE1EEA765B00BC2FB8 /* KWMNormalFilterView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMNormalFilterView.xib; sourceTree = "<group>"; };
C0D7CA9F1EA843AD005AE3A3 /* KWMOrder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMOrder.h; sourceTree = "<group>"; };
C0D7CAA01EA843AD005AE3A3 /* KWMOrder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMOrder.m; sourceTree = "<group>"; };
C0D7CAA21EA846AA005AE3A3 /* KWMOrdersResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMOrdersResult.h; sourceTree = "<group>"; };
C0D7CAA31EA846AA005AE3A3 /* KWMOrdersResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMOrdersResult.m; sourceTree = "<group>"; };
C0DD530C1EE54A9E002D1E0C /* KWMBarandSelectView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBarandSelectView.h; sourceTree = "<group>"; };
C0DD530D1EE54A9E002D1E0C /* KWMBarandSelectView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBarandSelectView.m; sourceTree = "<group>"; };
C0DD530E1EE54A9E002D1E0C /* KWMBarandSelectView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMBarandSelectView.xib; sourceTree = "<group>"; };
C0DD53111EE54B96002D1E0C /* KWMSearchBrandView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSearchBrandView.h; sourceTree = "<group>"; };
C0DD53121EE54B96002D1E0C /* KWMSearchBrandView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSearchBrandView.m; sourceTree = "<group>"; };
C0DD53131EE54B96002D1E0C /* KWMSearchBrandView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMSearchBrandView.xib; sourceTree = "<group>"; };
C0DD53161EE54C5F002D1E0C /* KWMSearchFeedBackView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSearchFeedBackView.h; sourceTree = "<group>"; };
C0DD53171EE54C5F002D1E0C /* KWMSearchFeedBackView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSearchFeedBackView.m; sourceTree = "<group>"; };
C0DD53181EE54C5F002D1E0C /* KWMSearchFeedBackView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMSearchFeedBackView.xib; sourceTree = "<group>"; };
C0DD531B1EE54F5D002D1E0C /* KWMMineTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMMineTitleView.h; sourceTree = "<group>"; };
C0DD531C1EE54F5D002D1E0C /* KWMMineTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMMineTitleView.m; sourceTree = "<group>"; };
C0DD531D1EE54F5D002D1E0C /* KWMMineTitleView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMMineTitleView.xib; sourceTree = "<group>"; };
C0DD53201EE55062002D1E0C /* KWMCarCountView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCarCountView.h; sourceTree = "<group>"; };
C0DD53211EE55062002D1E0C /* KWMCarCountView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCarCountView.m; sourceTree = "<group>"; };
C0DD53221EE55062002D1E0C /* KWMCarCountView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMCarCountView.xib; sourceTree = "<group>"; };
C0DD53271EE55190002D1E0C /* ArcToCircleLayer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ArcToCircleLayer.h; sourceTree = "<group>"; };
C0DD53281EE55190002D1E0C /* ArcToCircleLayer.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ArcToCircleLayer.m; sourceTree = "<group>"; };
C0DD53291EE55190002D1E0C /* KWMLoadingHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMLoadingHeader.h; sourceTree = "<group>"; };
C0DD532A1EE55190002D1E0C /* KWMLoadingHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMLoadingHeader.m; sourceTree = "<group>"; };
C0DD532B1EE55190002D1E0C /* KWMLoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMLoadingView.h; sourceTree = "<group>"; };
C0DD532C1EE55190002D1E0C /* KWMLoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMLoadingView.m; sourceTree = "<group>"; };
C0DD532D1EE55190002D1E0C /* KWMLoadingView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMLoadingView.xib; sourceTree = "<group>"; };
C0DD532E1EE55190002D1E0C /* KWMSplashView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSplashView.h; sourceTree = "<group>"; };
C0DD532F1EE55190002D1E0C /* KWMSplashView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSplashView.m; sourceTree = "<group>"; };
C0DD53301EE55190002D1E0C /* KWMSplashView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMSplashView.xib; sourceTree = "<group>"; };
C0DD53311EE55190002D1E0C /* KWMSuperLoadingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSuperLoadingView.h; sourceTree = "<group>"; };
C0DD53321EE55190002D1E0C /* KWMSuperLoadingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSuperLoadingView.m; sourceTree = "<group>"; };
C0DD53331EE55190002D1E0C /* MMJRefreshNormalHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MMJRefreshNormalHeader.h; sourceTree = "<group>"; };
C0DD53341EE55190002D1E0C /* MMJRefreshNormalHeader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MMJRefreshNormalHeader.m; sourceTree = "<group>"; };
C0DD534B1EE6AE06002D1E0C /* BaseCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BaseCell.h; sourceTree = "<group>"; };
C0DD534C1EE6AE06002D1E0C /* BaseCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BaseCell.m; sourceTree = "<group>"; };
C0E8AE071D7D030B00C193DC /* KWMEditAddressVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMEditAddressVC.h; sourceTree = "<group>"; };
C0E8AE081D7D030B00C193DC /* KWMEditAddressVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMEditAddressVC.m; sourceTree = "<group>"; };
C0E8AE0A1D7D503600C193DC /* KWMPaySuccessVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMPaySuccessVC.h; sourceTree = "<group>"; };
C0E8AE0B1D7D503600C193DC /* KWMPaySuccessVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMPaySuccessVC.m; sourceTree = "<group>"; };
C0E8AE101D7D52B200C193DC /* KWMPayTypeVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMPayTypeVC.h; sourceTree = "<group>"; };
C0E8AE111D7D52B200C193DC /* KWMPayTypeVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMPayTypeVC.m; sourceTree = "<group>"; };
C0EA5E961D9A0AED0029157E /* KWMCheckoutWebViewVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCheckoutWebViewVC.h; sourceTree = "<group>"; };
C0EA5E971D9A0AED0029157E /* KWMCheckoutWebViewVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCheckoutWebViewVC.m; sourceTree = "<group>"; };
C0F4AF461DF110EF00BDA719 /* KWMProductResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMProductResult.h; sourceTree = "<group>"; };
C0F4AF471DF110F000BDA719 /* KWMProductResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMProductResult.m; sourceTree = "<group>"; };
C0F4AF491DF1149500BDA719 /* KWMProduct.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMProduct.h; sourceTree = "<group>"; };
C0F4AF4A1DF1149500BDA719 /* KWMProduct.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMProduct.m; sourceTree = "<group>"; };
C0F586431E24F820001248E2 /* KWMBottomView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMBottomView.h; sourceTree = "<group>"; };
C0F586441E24F820001248E2 /* KWMBottomView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMBottomView.m; sourceTree = "<group>"; };
C0F586461E24F820001248E2 /* KWMCollectionCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCollectionCell.h; sourceTree = "<group>"; };
C0F586471E24F820001248E2 /* KWMCollectionCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCollectionCell.m; sourceTree = "<group>"; };
C0F586481E24F820001248E2 /* KWMCollectionCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMCollectionCell.xib; sourceTree = "<group>"; };
C0F586491E24F820001248E2 /* KWMDetailCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMDetailCell.h; sourceTree = "<group>"; };
C0F5864A1E24F820001248E2 /* KWMDetailCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMDetailCell.m; sourceTree = "<group>"; };
C0F5864B1E24F820001248E2 /* KWMDetailCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMDetailCell.xib; sourceTree = "<group>"; };
C0F5864C1E24F820001248E2 /* KWMDoubleTitleView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMDoubleTitleView.h; sourceTree = "<group>"; };
C0F5864D1E24F820001248E2 /* KWMDoubleTitleView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMDoubleTitleView.m; sourceTree = "<group>"; };
C0F5864E1E24F820001248E2 /* KWMDoubleTitleView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMDoubleTitleView.xib; sourceTree = "<group>"; };
C0F586521E24F820001248E2 /* KWMNewGoodsCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNewGoodsCell.h; sourceTree = "<group>"; };
C0F586531E24F820001248E2 /* KWMNewGoodsCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNewGoodsCell.m; sourceTree = "<group>"; };
C0F586541E24F820001248E2 /* KWMNewGoodsCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMNewGoodsCell.xib; sourceTree = "<group>"; };
C0F586551E24F820001248E2 /* KWMNewTypeView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNewTypeView.h; sourceTree = "<group>"; };
C0F586561E24F820001248E2 /* KWMNewTypeView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNewTypeView.m; sourceTree = "<group>"; };
C0F586571E24F820001248E2 /* KWMNewTypeView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMNewTypeView.xib; sourceTree = "<group>"; };
C0F586601E24F820001248E2 /* KWMNewTypeSelectedVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNewTypeSelectedVC.h; sourceTree = "<group>"; };
C0F586611E24F820001248E2 /* KWMNewTypeSelectedVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNewTypeSelectedVC.m; sourceTree = "<group>"; };
C0F586621E24F820001248E2 /* KWMNewVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMNewVC.h; sourceTree = "<group>"; };
C0F586631E24F820001248E2 /* KWMNewVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMNewVC.m; sourceTree = "<group>"; };
C0F586641E24F820001248E2 /* KWMSearchFeedbackVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSearchFeedbackVC.h; sourceTree = "<group>"; };
C0F586651E24F820001248E2 /* KWMSearchFeedbackVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSearchFeedbackVC.m; sourceTree = "<group>"; };
C0F586661E24F820001248E2 /* KWMSelectedGoodsVC.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMSelectedGoodsVC.h; sourceTree = "<group>"; };
C0F586671E24F820001248E2 /* KWMSelectedGoodsVC.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMSelectedGoodsVC.m; sourceTree = "<group>"; };
C0F586681E24F820001248E2 /* New.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = New.storyboard; sourceTree = "<group>"; };
C0F5866B1E24F820001248E2 /* ATPagingView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ATPagingView.h; sourceTree = "<group>"; };
C0F5866C1E24F820001248E2 /* ATPagingView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ATPagingView.m; sourceTree = "<group>"; };
C0F5866E1E24F820001248E2 /* SHorizontalView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SHorizontalView.h; sourceTree = "<group>"; };
C0F5866F1E24F820001248E2 /* SHorizontalView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SHorizontalView.m; sourceTree = "<group>"; };
C0F586701E24F820001248E2 /* SSView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SSView.h; sourceTree = "<group>"; };
C0F586711E24F820001248E2 /* SSView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SSView.m; sourceTree = "<group>"; };
C0F586721E24F820001248E2 /* SVerticalView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SVerticalView.h; sourceTree = "<group>"; };
C0F586731E24F820001248E2 /* SVerticalView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SVerticalView.m; sourceTree = "<group>"; };
C0F586AD1E279574001248E2 /* KWMBottomView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMBottomView.xib; sourceTree = "<group>"; };
C0FBD88C1F049D510009E375 /* KWMOrderPaid.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMOrderPaid.h; sourceTree = "<group>"; };
C0FBD88D1F049D510009E375 /* KWMOrderPaid.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMOrderPaid.m; sourceTree = "<group>"; };
C0FC278C1D9B73B000C5CFFE /* KWMGiftCardCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMGiftCardCell.h; sourceTree = "<group>"; };
C0FC278D1D9B73B000C5CFFE /* KWMGiftCardCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMGiftCardCell.m; sourceTree = "<group>"; };
DA4E36901F1613C70007E4D0 /* KWMHomeDataResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMHomeDataResult.h; sourceTree = "<group>"; };
DA4E36911F1613C70007E4D0 /* KWMHomeDataResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMHomeDataResult.m; sourceTree = "<group>"; };
DA4E36931F1726B80007E4D0 /* UIViewController+HTTP.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+HTTP.h"; sourceTree = "<group>"; };
DA4E36941F1726B80007E4D0 /* UIViewController+HTTP.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+HTTP.m"; sourceTree = "<group>"; };
DA4E36961F17729C0007E4D0 /* KWMCategoryModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMCategoryModel.h; sourceTree = "<group>"; };
DA4E36971F17729C0007E4D0 /* KWMCategoryModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMCategoryModel.m; sourceTree = "<group>"; };
DA4E369C1F188B400007E4D0 /* BUYClient+FilterSoldout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "BUYClient+FilterSoldout.h"; sourceTree = "<group>"; };
DA4E369D1F188B400007E4D0 /* BUYClient+FilterSoldout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "BUYClient+FilterSoldout.m"; sourceTree = "<group>"; };
DA4E369F1F18A6CB0007E4D0 /* KWMPageResult.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMPageResult.h; sourceTree = "<group>"; };
DA4E36A01F18A6CB0007E4D0 /* KWMPageResult.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMPageResult.m; sourceTree = "<group>"; };
DA7457661F692D67000E192E /* KWMProductSameBrandView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = KWMProductSameBrandView.h; sourceTree = "<group>"; };
DA7457671F692D67000E192E /* KWMProductSameBrandView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = KWMProductSameBrandView.m; sourceTree = "<group>"; };
DA74576B1F692DCA000E192E /* KWMProductSameBrandView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = KWMProductSameBrandView.xib; sourceTree = "<group>"; };
DA7DF8E31F1DB01600D5239B /* NSString+Format.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+Format.h"; sourceTree = "<group>"; };
DA7DF8E41F1DB01600D5239B /* NSString+Format.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+Format.m"; sourceTree = "<group>"; };
DA8B977E1F58F816002FC38A /* SDImageCache+Resize.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "SDImageCache+Resize.h"; sourceTree = "<group>"; };
DA8B977F1F58F816002FC38A /* SDImageCache+Resize.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "SDImageCache+Resize.m"; sourceTree = "<group>"; };
DA8D64101F31C67F00B8F4A6 /* DeepLinkURLProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DeepLinkURLProtocol.h; sourceTree = "<group>"; };
DA8D64111F31C67F00B8F4A6 /* DeepLinkURLProtocol.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DeepLinkURLProtocol.m; sourceTree = "<group>"; };
DA8D64131F31CD2600B8F4A6 /* DPWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DPWebViewController.h; sourceTree = "<group>"; };
DA8D64141F31CD2600B8F4A6 /* DPWebViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DPWebViewController.m; sourceTree = "<group>"; };
DAB643181F04CFE5002CD7FE /* AppDelegate+Deeplink.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "AppDelegate+Deeplink.h"; sourceTree = "<group>"; };
DAB643191F04CFE5002CD7FE /* AppDelegate+Deeplink.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "AppDelegate+Deeplink.m"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
C034E6871D6AEB12006EE129 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
C02C7D8C1E6411AE008DC29C /* CoreTelephony.framework in Frameworks */,
C03120961EF29A5F00E49EFA /* QuartzCore.framework in Frameworks */,
C03120981EF29A8900E49EFA /* CoreText.framework in Frameworks */,
C031209A1EF29A9800E49EFA /* CoreGraphics.framework in Frameworks */,
C031209C1EF29AA400E49EFA /* UIKit.framework in Frameworks */,
C031209E1EF29ABE00E49EFA /* Foundation.framework in Frameworks */,
C02C7D8E1E6411C3008DC29C /* CFNetwork.framework in Frameworks */,
C03120A01EF29AF200E49EFA /* CoreMotion.framework in Frameworks */,
C02C7D8A1E64119E008DC29C /* Security.framework in Frameworks */,
C02C7D881E64118D008DC29C /* libc++.tbd in Frameworks */,
C02C7D861E641172008DC29C /* libz.tbd in Frameworks */,
C02C7D831E640FBF008DC29C /* SystemConfiguration.framework in Frameworks */,
80E65A7E1D95383E0084610B /* Contacts.framework in Frameworks */,
80E65A7F1D95383E0084610B /* ContactsUI.framework in Frameworks */,
C02C7D801E640D82008DC29C /* libWeChatSDK.a in Frameworks */,
8045F30E1D94C6BF0042B15A /* libsqlite3.0.tbd in Frameworks */,
80FBF7E18C063DB9E8DC7502 /* libPods-iCemarose.a in Frameworks */,
C03120A61EF29B2900E49EFA /* AlipaySDK.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C034E6A01D6AEB13006EE129 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C034E6AB1D6AEB13006EE129 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
35A28AF314C40D5A36A7652E /* Pods */ = {
isa = PBXGroup;
children = (
9B58353B797587723B0E7515 /* Pods-iCemarose.debug.xcconfig */,
B5C3F0326028FE5E2F51B4C1 /* Pods-iCemarose.release.xcconfig */,
);
name = Pods;
sourceTree = "<group>";
};
804771771D6D31FD0086B4DC /* Brand */ = {
isa = PBXGroup;
children = (
80F82E501D702C0A008B470B /* Cell */,
80F82E4E1D701F82008B470B /* Brand.storyboard */,
804771791D6D31FD0086B4DC /* KWMBrandVC.h */,
8047717A1D6D31FD0086B4DC /* KWMBrandVC.m */,
8077F7941D73D2D700A2E2E2 /* KWMBrandCaramelVC.h */,
8077F7951D73D2D700A2E2E2 /* KWMBrandCaramelVC.m */,
807806881D75680600FD2841 /* KWMSearchBrandVC.h */,
807806891D75680600FD2841 /* KWMSearchBrandVC.m */,
);
path = Brand;
sourceTree = "<group>";
};
8047717C1D6D32130086B4DC /* Login */ = {
isa = PBXGroup;
children = (
804771811D6D32A70086B4DC /* Login.storyboard */,
8047717E1D6D326D0086B4DC /* KWMLoginVC.h */,
8047717F1D6D326D0086B4DC /* KWMLoginVC.m */,
804771831D6D585B0086B4DC /* KWMValidationVC.h */,
804771841D6D585B0086B4DC /* KWMValidationVC.m */,
804771861D6D769C0086B4DC /* KWMEmailVC.h */,
804771871D6D769C0086B4DC /* KWMEmailVC.m */,
8031DA971D8268CD00349869 /* KWMForgetPasswordVC.h */,
8031DA981D8268CD00349869 /* KWMForgetPasswordVC.m */,
);
path = Login;
sourceTree = "<group>";
};
807806841D75666400FD2841 /* Classify */ = {
isa = PBXGroup;
children = (
807806851D7566DD00FD2841 /* NSString+PinYin.h */,
807806861D7566DD00FD2841 /* NSString+PinYin.m */,
9B8298E41EF237FC00743438 /* NSDecimalNumber+Currency.h */,
9B8298E51EF237FC00743438 /* NSDecimalNumber+Currency.m */,
DA4E36931F1726B80007E4D0 /* UIViewController+HTTP.h */,
DA4E36941F1726B80007E4D0 /* UIViewController+HTTP.m */,
DA4E369C1F188B400007E4D0 /* BUYClient+FilterSoldout.h */,
DA4E369D1F188B400007E4D0 /* BUYClient+FilterSoldout.m */,
DA7DF8E31F1DB01600D5239B /* NSString+Format.h */,
DA7DF8E41F1DB01600D5239B /* NSString+Format.m */,
);
path = Classify;
sourceTree = "<group>";
};
8091DF9E1D6E86E70020519C /* Guide */ = {
isa = PBXGroup;
children = (
8091DFA41D6E914F0020519C /* View */,
8091DFA21D6E8CCA0020519C /* Guide.storyboard */,
8091DF9F1D6E878C0020519C /* KWMGuideVC.h */,
8091DFA01D6E878C0020519C /* KWMGuideVC.m */,
);
path = Guide;
sourceTree = "<group>";
};
8091DFA41D6E914F0020519C /* View */ = {
isa = PBXGroup;
children = (
8091DFAD1D6EA6DC0020519C /* KWMFirstView.xib */,
8091DFB41D6EADFB0020519C /* KWMFirstView.h */,
8091DFB51D6EADFB0020519C /* KWMFirstView.m */,
8091DFAF1D6EAD6F0020519C /* KWMSecondView.xib */,
8091DFB11D6EADE60020519C /* KWMSecondView.h */,
8091DFB21D6EADE60020519C /* KWMSecondView.m */,
8091DFB71D6EC1C60020519C /* KWMThreeView.xib */,
8091DFB91D6EC1DD0020519C /* KWMThreeView.h */,
8091DFBA1D6EC1DD0020519C /* KWMThreeView.m */,
8091DFA51D6EA0840020519C /* KWMLastView.xib */,
8091DFAA1D6EA11E0020519C /* KWMLastView.h */,
8091DFAB1D6EA11E0020519C /* KWMLastView.m */,
);
path = View;
sourceTree = "<group>";
};
80A611AD1D6DB0A700709E09 /* ShopCart */ = {
isa = PBXGroup;
children = (
C0CC13FA1D7823B0007B5986 /* Cell */,
80A611AE1D6DB0CD00709E09 /* ShopCart.storyboard */,
80A611B01D6DB0EC00709E09 /* KWMShopCartVC.h */,
80A611B11D6DB0EC00709E09 /* KWMShopCartVC.m */,
C0CC140A1D7829FC007B5986 /* KWMSelectSizeVC.h */,
C0CC140B1D7829FC007B5986 /* KWMSelectSizeVC.m */,
C0CC140D1D7926DF007B5986 /* KWMBeforePayVC.h */,
C0CC140E1D7926DF007B5986 /* KWMBeforePayVC.m */,
C0CC14101D795743007B5986 /* KWMDiscountVC.h */,
C0CC14111D795743007B5986 /* KWMDiscountVC.m */,
C0CC14181D79847A007B5986 /* KWMSelectAddressVC.h */,
C0CC14191D79847A007B5986 /* KWMSelectAddressVC.m */,
C0E8AE071D7D030B00C193DC /* KWMEditAddressVC.h */,
C0E8AE081D7D030B00C193DC /* KWMEditAddressVC.m */,
C0E8AE0A1D7D503600C193DC /* KWMPaySuccessVC.h */,
C0E8AE0B1D7D503600C193DC /* KWMPaySuccessVC.m */,
C0E8AE101D7D52B200C193DC /* KWMPayTypeVC.h */,
C0E8AE111D7D52B200C193DC /* KWMPayTypeVC.m */,
C0EA5E961D9A0AED0029157E /* KWMCheckoutWebViewVC.h */,
C0EA5E971D9A0AED0029157E /* KWMCheckoutWebViewVC.m */,
C08FDA251D9A5F3400EBDB0D /* KWMAddGiftCardVC.h */,
C08FDA261D9A5F3400EBDB0D /* KWMAddGiftCardVC.m */,
C08FDA281D9B583400EBDB0D /* KWMGiftCardVC.h */,
C08FDA291D9B583400EBDB0D /* KWMGiftCardVC.m */,
C0392DBB1DCC786F0051AC8E /* KWMShippingVC.h */,
C0392DBC1DCC786F0051AC8E /* KWMShippingVC.m */,
C08870E61F0342B000C9C1C8 /* KWMCustomsClearanceVC.h */,
C08870E71F0342B000C9C1C8 /* KWMCustomsClearanceVC.m */,
);
path = ShopCart;
sourceTree = "<group>";
};
80ED0A3D1D93B4CF00B28DF2 /* CoreData */ = {
isa = PBXGroup;
children = (
80ED0A4A1D93B99E00B28DF2 /* KWMShopCartData.h */,
80ED0A4B1D93B99E00B28DF2 /* KWMShopCartData.m */,
80ED0A4D1D93BD0E00B28DF2 /* KWMShopCartModel.h */,
80ED0A4E1D93BD0E00B28DF2 /* KWMShopCartModel.m */,
80ED0A441D93B82F00B28DF2 /* KWMShopCartItem+CoreDataClass.h */,
80ED0A451D93B82F00B28DF2 /* KWMShopCartItem+CoreDataClass.m */,
80ED0A461D93B82F00B28DF2 /* KWMShopCartItem+CoreDataProperties.h */,
80ED0A471D93B82F00B28DF2 /* KWMShopCartItem+CoreDataProperties.m */,
80ED0A351D93840A00B28DF2 /* DB_shopCart.xcdatamodeld */,
);
path = CoreData;
sourceTree = "<group>";
};
80F82E501D702C0A008B470B /* Cell */ = {
isa = PBXGroup;
children = (
C0DD53201EE55062002D1E0C /* KWMCarCountView.h */,
C0DD53211EE55062002D1E0C /* KWMCarCountView.m */,
C0DD53221EE55062002D1E0C /* KWMCarCountView.xib */,
C0DD53111EE54B96002D1E0C /* KWMSearchBrandView.h */,
C0DD53121EE54B96002D1E0C /* KWMSearchBrandView.m */,
C0DD53131EE54B96002D1E0C /* KWMSearchBrandView.xib */,
C0DD530C1EE54A9E002D1E0C /* KWMBarandSelectView.h */,
C0DD530D1EE54A9E002D1E0C /* KWMBarandSelectView.m */,
C0DD530E1EE54A9E002D1E0C /* KWMBarandSelectView.xib */,
80F82E5E1D704E34008B470B /* KWMBrandCell.h */,
80F82E5F1D704E34008B470B /* KWMBrandCell.m */,
80F82E601D704E34008B470B /* KWMBrandCell.xib */,
801230EF1DD30704008C7904 /* KWMSearchBrandsCell.h */,
801230F01DD30704008C7904 /* KWMSearchBrandsCell.m */,
801230F11DD30704008C7904 /* KWMSearchBrandsCell.xib */,
8077F7971D73E39000A2E2E2 /* KWMBrandCaramelCell.h */,
8077F7981D73E39000A2E2E2 /* KWMBrandCaramelCell.m */,
8077F7991D73E39000A2E2E2 /* KWMBrandCaramelCell.xib */,
);
path = Cell;
sourceTree = "<group>";
};
C0243BAE1EFBD5A10013CFA7 /* Category */ = {
isa = PBXGroup;
children = (
C0243BAF1EFBD5A10013CFA7 /* Category.storyboard */,
C0243BB01EFBD5A10013CFA7 /* Cell */,
C0243BB71EFBD5A10013CFA7 /* KWMBrandFilterVC.h */,
C0243BB81EFBD5A10013CFA7 /* KWMBrandFilterVC.m */,
C0243BB91EFBD5A10013CFA7 /* KWMCategoryVC.h */,
C0243BBA1EFBD5A10013CFA7 /* KWMCategoryVC.m */,
C0243BBB1EFBD5A10013CFA7 /* KWMProductFilterVC.h */,
C0243BBC1EFBD5A10013CFA7 /* KWMProductFilterVC.m */,
);
path = Category;
sourceTree = "<group>";
};
C0243BB01EFBD5A10013CFA7 /* Cell */ = {
isa = PBXGroup;
children = (
C0243BB11EFBD5A10013CFA7 /* KWMLeftCategoryCell.h */,
C0243BB21EFBD5A10013CFA7 /* KWMLeftCategoryCell.m */,
C0243BB31EFBD5A10013CFA7 /* KWMLeftCategoryCell.xib */,
C0243BB41EFBD5A10013CFA7 /* KWMRightProductCell.h */,
C0243BB51EFBD5A10013CFA7 /* KWMRightProductCell.m */,
C0243BB61EFBD5A10013CFA7 /* KWMRightProductCell.xib */,
C00D40951F187CAB00DEA685 /* KWMCategoryTitleView.h */,
C00D40961F187CAB00DEA685 /* KWMCategoryTitleView.m */,
C00D40931F187C9500DEA685 /* KWMCategoryTitleView.xib */,
);
path = Cell;
sourceTree = "<group>";
};
C02C7D7A1E640D82008DC29C /* WeChat */ = {
isa = PBXGroup;
children = (
C02C7D7B1E640D82008DC29C /* libWeChatSDK.a */,
C02C7D7C1E640D82008DC29C /* README.txt */,
C02C7D7D1E640D82008DC29C /* WechatAuthSDK.h */,
C02C7D7E1E640D82008DC29C /* WXApi.h */,
C02C7D7F1E640D82008DC29C /* WXApiObject.h */,
);
name = WeChat;
path = iCemarose/WeChat;
sourceTree = "<group>";
};
C03120A11EF29B2900E49EFA /* Alipay */ = {
isa = PBXGroup;
children = (
C03120A21EF29B2900E49EFA /* AlipaySDK.bundle */,
C03120A31EF29B2900E49EFA /* AlipaySDK.framework */,
C03120A41EF29B2900E49EFA /* 更新日志.txt */,
);
name = Alipay;
path = iCemarose/Alipay;
sourceTree = "<group>";
};
C034E6811D6AEB12006EE129 = {
isa = PBXGroup;
children = (
C03120A11EF29B2900E49EFA /* Alipay */,
C02C7D7A1E640D82008DC29C /* WeChat */,
C034E68C1D6AEB12006EE129 /* iCemarose */,
C034E6A61D6AEB13006EE129 /* iCemaroseTests */,
C034E6B11D6AEB13006EE129 /* iCemaroseUITests */,
C034E68B1D6AEB12006EE129 /* Products */,
35A28AF314C40D5A36A7652E /* Pods */,
FB61DBBD1842EA19647B37D6 /* Frameworks */,
);
sourceTree = "<group>";
};
C034E68B1D6AEB12006EE129 /* Products */ = {
isa = PBXGroup;
children = (
C034E68A1D6AEB12006EE129 /* Cemarose.app */,
C034E6A31D6AEB13006EE129 /* iCemaroseTests.xctest */,
C034E6AE1D6AEB13006EE129 /* iCemaroseUITests.xctest */,
);
name = Products;
sourceTree = "<group>";
};
C034E68C1D6AEB12006EE129 /* iCemarose */ = {
isa = PBXGroup;
children = (
C034E6C01D6AEC7A006EE129 /* Class */,
C034E68D1D6AEB12006EE129 /* Supporting Files */,
);
path = iCemarose;
sourceTree = "<group>";
};
C034E68D1D6AEB12006EE129 /* Supporting Files */ = {
isa = PBXGroup;
children = (
C034E68E1D6AEB12006EE129 /* main.m */,
C034E6E91D6AF0A0006EE129 /* Header-Prefix.h */,
C034E6EA1D6AF0A0006EE129 /* Localizable.strings */,
);
name = "Supporting Files";
sourceTree = "<group>";
};
C034E6A61D6AEB13006EE129 /* iCemaroseTests */ = {
isa = PBXGroup;
children = (
C034E6A71D6AEB13006EE129 /* iCemaroseTests.m */,
C034E6A91D6AEB13006EE129 /* Info.plist */,
);
path = iCemaroseTests;
sourceTree = "<group>";
};
C034E6B11D6AEB13006EE129 /* iCemaroseUITests */ = {
isa = PBXGroup;
children = (
C034E6B21D6AEB13006EE129 /* iCemaroseUITests.m */,
C034E6B41D6AEB13006EE129 /* Info.plist */,
);
path = iCemaroseUITests;
sourceTree = "<group>";
};
C034E6C01D6AEC7A006EE129 /* Class */ = {
isa = PBXGroup;
children = (
C034E6901D6AEB12006EE129 /* AppDelegate.h */,
C034E6911D6AEB12006EE129 /* AppDelegate.m */,
C034E6931D6AEB12006EE129 /* ViewController.h */,
C034E6941D6AEB12006EE129 /* ViewController.m */,
C034E6961D6AEB12006EE129 /* Main.storyboard */,
C034E6991D6AEB12006EE129 /* Assets.xcassets */,
C034E69B1D6AEB12006EE129 /* LaunchScreen.storyboard */,
C034E69E1D6AEB12006EE129 /* Info.plist */,
C034E6C11D6AECF9006EE129 /* Api */,
C034E6C21D6AECF9006EE129 /* Model */,
C034E6C31D6AECF9006EE129 /* UI */,
C034E6C41D6AECF9006EE129 /* Util */,
807806841D75666400FD2841 /* Classify */,
C034E6C51D6AECF9006EE129 /* View */,
80ED0A3D1D93B4CF00B28DF2 /* CoreData */,
9B0F56B61ECD3424009FC5FE /* UIViewController+AppearLog.h */,
9B0F56B71ECD3424009FC5FE /* UIViewController+AppearLog.m */,
DAB643181F04CFE5002CD7FE /* AppDelegate+Deeplink.h */,
DAB643191F04CFE5002CD7FE /* AppDelegate+Deeplink.m */,
DA8D64101F31C67F00B8F4A6 /* DeepLinkURLProtocol.h */,
DA8D64111F31C67F00B8F4A6 /* DeepLinkURLProtocol.m */,
DA8B977E1F58F816002FC38A /* SDImageCache+Resize.h */,
DA8B977F1F58F816002FC38A /* SDImageCache+Resize.m */,
);
path = Class;
sourceTree = "<group>";
};
C034E6C11D6AECF9006EE129 /* Api */ = {
isa = PBXGroup;
children = (
C03846951DB9C3E7008C3BAB /* Cemarose */,
C034E6DC1D6AEF53006EE129 /* KWMAPIManager.h */,
C034E6DD1D6AEF53006EE129 /* KWMAPIManager.m */,
C034E6DF1D6AEF62006EE129 /* KWMRequestListResult.h */,
C034E6E01D6AEF62006EE129 /* KWMRequestListResult.m */,
C034E6E21D6AEF73006EE129 /* KWMRequestResult.h */,
C034E6E31D6AEF73006EE129 /* KWMRequestResult.m */,
C03846921DB89EEB008C3BAB /* KWMCemaroseResult.h */,
C03846931DB89EEB008C3BAB /* KWMCemaroseResult.m */,
C03120AB1EF2AC6700E49EFA /* KWMCheckoutPayResult.h */,
C03120AC1EF2AC6700E49EFA /* KWMCheckoutPayResult.m */,
C0028EC31F0DD19C00744C14 /* KWMAdditionalResult.h */,
C0028EC41F0DD19C00744C14 /* KWMAdditionalResult.m */,
C0028EC91F0E2B3500744C14 /* KWMAdditionalListResult.h */,
C0028ECA1F0E2B3500744C14 /* KWMAdditionalListResult.m */,
);
path = Api;
sourceTree = "<group>";
};
C034E6C21D6AECF9006EE129 /* Model */ = {
isa = PBXGroup;
children = (
C034E6CC1D6AEE20006EE129 /* DAO */,
C0FBD88C1F049D510009E375 /* KWMOrderPaid.h */,
C0FBD88D1F049D510009E375 /* KWMOrderPaid.m */,
C03120A81EF2AC5A00E49EFA /* KWMWechatPayData.h */,
C03120A91EF2AC5A00E49EFA /* KWMWechatPayData.m */,
C091EE311DDB1FC500A382B9 /* KWMAppVersion.h */,
C091EE321DDB1FC500A382B9 /* KWMAppVersion.m */,
C034E6C61D6AED1F006EE129 /* KWMUser.h */,
C034E6C71D6AED1F006EE129 /* KWMUser.m */,
807AF49E1DC984950000A326 /* KWMProducts.h */,
807AF49F1DC984950000A326 /* KWMProducts.m */,
807AF49C1DC984950000A326 /* KWMDataProduct.h */,
807AF49D1DC984950000A326 /* KWMDataProduct.m */,
C034E6C91D6AED31006EE129 /* KWMBaseModel.h */,
C034E6CA1D6AED31006EE129 /* KWMBaseModel.m */,
80537AD91D86A7E100AB5122 /* KWMUserModel.h */,
80537ADA1D86A7E100AB5122 /* KWMUserModel.m */,
80F82E561D7033D0008B470B /* KWMBrandModel.h */,
80F82E571D7033D0008B470B /* KWMBrandModel.m */,
C038468F1DB87BCA008C3BAB /* KWMCustomer.h */,
C03846901DB87BCA008C3BAB /* KWMCustomer.m */,
8019E9521DC89CF300CAD7BF /* KWMNewGoodsModel.h */,
8019E9531DC89CF300CAD7BF /* KWMNewGoodsModel.m */,
801F87BD1DD1D6850038FA4C /* KWMLoadStatus.h */,
801F87BE1DD1D6850038FA4C /* KWMLoadStatus.m */,
805C04331DD1FA4900ACC071 /* KWMBrandsTypeModel.h */,
805C04341DD1FA4900ACC071 /* KWMBrandsTypeModel.m */,
C03943BE1DD1FCE900141475 /* KWMProductType.h */,
C03943BF1DD1FCE900141475 /* KWMProductType.m */,
C032D3051DD87E5F008D3155 /* KWMMetafield.h */,
C032D3061DD87E5F008D3155 /* KWMMetafield.m */,
C091EE341DDEEA9400A382B9 /* KWMVariants.h */,
C091EE351DDEEA9400A382B9 /* KWMVariants.m */,
C0F4AF491DF1149500BDA719 /* KWMProduct.h */,
C0F4AF4A1DF1149500BDA719 /* KWMProduct.m */,
C0D7CA9F1EA843AD005AE3A3 /* KWMOrder.h */,
C0D7CAA01EA843AD005AE3A3 /* KWMOrder.m */,
9BE61CFC1ECD66BC0031D21E /* KWMShoppingCart.h */,
9BE61CFD1ECD66BC0031D21E /* KWMShoppingCart.m */,
C0CCB3BB1EEA589200BC2FB8 /* KWMFilter.h */,
C0CCB3BC1EEA589200BC2FB8 /* KWMFilter.m */,
C048B8E01EF3C04B000DA7AF /* KWMBeforePayData.h */,
C048B8E11EF3C04B000DA7AF /* KWMBeforePayData.m */,
9B18C11D1EF1270A001DD59B /* BUYProductVariant+Currency.h */,
9B18C11E1EF1270A001DD59B /* BUYProductVariant+Currency.m */,
C08870E91F03481C00C9C1C8 /* KWMCustomsClearance.h */,
C08870EA1F03481C00C9C1C8 /* KWMCustomsClearance.m */,
C0028EC61F0DE80500744C14 /* KWMWish.h */,
C0028EC71F0DE80500744C14 /* KWMWish.m */,
C04392781F0F99310027ABA3 /* KWMHomeData.h */,
C04392791F0F99310027ABA3 /* KWMHomeData.m */,
C043927B1F0F9A2A0027ABA3 /* KWMAdvertisement.h */,
C043927C1F0F9A2A0027ABA3 /* KWMAdvertisement.m */,
C043927E1F0F9A3D0027ABA3 /* KWMHotSales.h */,
C043927F1F0F9A3D0027ABA3 /* KWMHotSales.m */,
C07267831F1616E500C5A869 /* KWMColor.h */,
C07267841F1616E500C5A869 /* KWMColor.m */,
DA4E36961F17729C0007E4D0 /* KWMCategoryModel.h */,
DA4E36971F17729C0007E4D0 /* KWMCategoryModel.m */,
);
path = Model;
sourceTree = "<group>";
};
C034E6C31D6AECF9006EE129 /* UI */ = {
isa = PBXGroup;
children = (
C04834241F13219A00A5BFB4 /* NewHome */,
C0A6B3A81F01FC5300D85673 /* NewProduct */,
C0243BAE1EFBD5A10013CFA7 /* Category */,
C0F586411E24F820001248E2 /* Product */,
C034E7B41D6B0805006EE129 /* Home */,
C034E7B51D6B0805006EE129 /* Mine */,
804771771D6D31FD0086B4DC /* Brand */,
8047717C1D6D32130086B4DC /* Login */,
80A611AD1D6DB0A700709E09 /* ShopCart */,
8091DF9E1D6E86E70020519C /* Guide */,
C034E6EC1D6AF13A006EE129 /* KWMBaseVC.h */,
C034E6ED1D6AF13A006EE129 /* KWMBaseVC.m */,
C034E6EE1D6AF13A006EE129 /* KWMBasePageVC.h */,
C034E6EF1D6AF13A006EE129 /* KWMBasePageVC.m */,
C034E7AE1D6AFBDA006EE129 /* KWMWebViewVC.h */,
C034E7AF1D6AFBDA006EE129 /* KWMWebViewVC.m */,
C034E7B11D6AFC3B006EE129 /* KWMMainVC.h */,
C034E7B21D6AFC3B006EE129 /* KWMMainVC.m */,
80598D451D99193400BF0F97 /* KWMInformationVC.h */,
80598D461D99193400BF0F97 /* KWMInformationVC.m */,
DA8D64131F31CD2600B8F4A6 /* DPWebViewController.h */,
DA8D64141F31CD2600B8F4A6 /* DPWebViewController.m */,
);
path = UI;
sourceTree = "<group>";
};
C034E6C41D6AECF9006EE129 /* Util */ = {
isa = PBXGroup;
children = (
C048B8E31EF3F20B000DA7AF /* KWMCollectionRefreshUtil.h */,
C048B8E41EF3F20B000DA7AF /* KWMCollectionRefreshUtil.m */,
C077966D1EEAA2BE00CD6859 /* KWMFilterUtil.h */,
C077966E1EEAA2BE00CD6859 /* KWMFilterUtil.m */,
C02C7D991E642DED008DC29C /* KWMWeChatUtil.h */,
C02C7D9A1E642DED008DC29C /* KWMWeChatUtil.m */,
C034E6D01D6AEF1B006EE129 /* KWMImageUtil.h */,
C034E6D11D6AEF1B006EE129 /* KWMImageUtil.m */,
C034E6D21D6AEF1B006EE129 /* KWMStringUtil.h */,
C034E6D31D6AEF1B006EE129 /* KWMStringUtil.m */,
C034E6D41D6AEF1B006EE129 /* KWMTextFieldUtil.h */,
C034E6D51D6AEF1B006EE129 /* KWMTextFieldUtil.m */,
C001BA5A1EB2ED5500B366A8 /* KWMImageBlurUtil.h */,
C001BA5B1EB2ED5500B366A8 /* KWMImageBlurUtil.m */,
9B166F4F1ED6DBCF003E9F03 /* KWMHttpUtil.h */,
9B166F501ED6DBCF003E9F03 /* KWMHttpUtil.m */,
9B53D5D51EE94739005BA6F7 /* KWMValidateUtil.h */,
9B53D5D61EE94739005BA6F7 /* KWMValidateUtil.m */,
9B8298E11EF22BE200743438 /* KWMCurrencyUtil.h */,
9B8298E21EF22BE200743438 /* KWMCurrencyUtil.m */,
C03120AE1EF2B26B00E49EFA /* KWMPayUtil.h */,
C03120AF1EF2B26B00E49EFA /* KWMPayUtil.m */,
);
path = Util;
sourceTree = "<group>";
};
C034E6C51D6AECF9006EE129 /* View */ = {
isa = PBXGroup;
children = (
C0CCB3B51EEA520C00BC2FB8 /* FilterView */,
C0DD53251EE55190002D1E0C /* Cell */,
C0DD53261EE55190002D1E0C /* Loading */,
C034E7C31D6B10A0006EE129 /* CorePhotoBroswer */,
C034E8381D6B10A0006EE129 /* EGO */,
C0AF03981DD5BFB20060623F /* UIViewController+BackButtonHandler.h */,
C0AF03991DD5BFB20060623F /* UIViewController+BackButtonHandler.m */,
C04834211F13215500A5BFB4 /* KWMBannerView.h */,
C04834221F13215500A5BFB4 /* KWMBannerView.m */,
C034E6F21D6AF197006EE129 /* KWMPickView.h */,
C034E6F31D6AF197006EE129 /* KWMPickView.m */,
C034E6F41D6AF197006EE129 /* KWMPickView.xib */,
C034E6F71D6AF205006EE129 /* KWMButton.h */,
C034E6F81D6AF205006EE129 /* KWMButton.m */,
C034E6FC1D6AF205006EE129 /* KWMLineView.h */,
C034E6FD1D6AF205006EE129 /* KWMLineView.m */,
C034E6FE1D6AF205006EE129 /* RTSpinKitView.h */,
C034E6FF1D6AF205006EE129 /* RTSpinKitView.m */,
C084F4551D6D975400A0625D /* KWMSearchBar.h */,
C084F4561D6D975400A0625D /* KWMSearchBar.m */,
C084F4581D6D976F00A0625D /* KWMSearchBar.xib */,
80C8014D1D78134800002306 /* KWMTBVSectionHeardView.h */,
80C8014E1D78134800002306 /* KWMTBVSectionHeardView.m */,
80C801501D78136400002306 /* KWMTBVSectionHeardView.xib */,
DA7457661F692D67000E192E /* KWMProductSameBrandView.h */,
DA7457671F692D67000E192E /* KWMProductSameBrandView.m */,
DA74576B1F692DCA000E192E /* KWMProductSameBrandView.xib */,
80E844251D7FB0FF0042AED2 /* KWMRuleView.h */,
80E844261D7FB0FF0042AED2 /* KWMRuleView.m */,
80E844281D7FB1130042AED2 /* KWMRuleView.xib */,
801230F41DD32B39008C7904 /* KWMInformationView.h */,
801230F51DD32B39008C7904 /* KWMInformationView.m */,
801230F71DD32B49008C7904 /* KWMInformationView.xib */,
C0CCB3C31EEA5A1100BC2FB8 /* UIView+Prettify.h */,
C0CCB3C41EEA5A1100BC2FB8 /* UIView+Prettify.m */,
C07267801F15D62400C5A869 /* NSLayoutConstraint+Multiplier.h */,
C07267811F15D62400C5A869 /* NSLayoutConstraint+Multiplier.m */,
);
path = View;
sourceTree = "<group>";
};
C034E6CC1D6AEE20006EE129 /* DAO */ = {
isa = PBXGroup;
children = (
C034E6CD1D6AEE39006EE129 /* KWMUserDao.h */,
C034E6CE1D6AEE39006EE129 /* KWMUserDao.m */,
);
path = DAO;
sourceTree = "<group>";
};
C034E7B41D6B0805006EE129 /* Home */ = {
isa = PBXGroup;
children = (
C084F44F1D6D8CA700A0625D /* Cell */,
80DD275A1DC2FE6800CDC5B5 /* Home.storyboard */,
C034E7B71D6B0A8D006EE129 /* KWMHomeVC.h */,
C034E7B81D6B0A8D006EE129 /* KWMHomeVC.m */,
80DD275C1DC2FF2200CDC5B5 /* KWMBlogDetailVC.h */,
80DD275D1DC2FF2200CDC5B5 /* KWMBlogDetailVC.m */,
);
path = Home;
sourceTree = "<group>";
};
C034E7B51D6B0805006EE129 /* Mine */ = {
isa = PBXGroup;
children = (
C06665021D75A2E500F02EF4 /* Cell */,
C06665081D75A2E500F02EF4 /* Mine.storyboard */,
C06665061D75A2E500F02EF4 /* KWMOrderVC.h */,
C06665071D75A2E500F02EF4 /* KWMOrderVC.m */,
C034E7C01D6B0B62006EE129 /* KWMMineVC.h */,
C034E7C11D6B0B62006EE129 /* KWMMineVC.m */,
C066650D1D7675FC00F02EF4 /* KWMAboutUsVC.h */,
C066650E1D7675FC00F02EF4 /* KWMAboutUsVC.m */,
C06665101D767A0A00F02EF4 /* KWMContactUsVC.h */,
C06665111D767A0A00F02EF4 /* KWMContactUsVC.m */,
C03A05041E35DC5800BAA889 /* KWMNewGiftCardVC.h */,
C03A05051E35DC5800BAA889 /* KWMNewGiftCardVC.m */,
9B0148891EF3B5330056D937 /* KWMSelectCurrencyVC.h */,
9B01488A1EF3B5330056D937 /* KWMSelectCurrencyVC.m */,
);
path = Mine;
sourceTree = "<group>";
};
C034E7C31D6B10A0006EE129 /* CorePhotoBroswer */ = {
isa = PBXGroup;
children = (
C034E7C41D6B10A0006EE129 /* CoreArchive */,
C034E7CA1D6B10A0006EE129 /* CoreCategory */,
C034E7FB1D6B10A0006EE129 /* CoreExtend */,
C034E7FD1D6B10A0006EE129 /* CoreSDWebImage */,
C034E8081D6B10A0006EE129 /* CoreSVP */,
C034E8131D6B10A0006EE129 /* LFRoundProgressView */,
C034E8161D6B10A0006EE129 /* Lib */,
C034E8351D6B10A0006EE129 /* PhotoBroswerVC.h */,
C034E8361D6B10A0006EE129 /* PhotoBroswerVC.m */,
C034E8371D6B10A0006EE129 /* PhotoBroswerVC.xib */,
);
path = CorePhotoBroswer;
sourceTree = "<group>";
};
C034E7C41D6B10A0006EE129 /* CoreArchive */ = {
isa = PBXGroup;
children = (
C034E7C51D6B10A0006EE129 /* Category */,
C034E7C81D6B10A0006EE129 /* CoreArchive.h */,
C034E7C91D6B10A0006EE129 /* CoreArchive.m */,
);
path = CoreArchive;
sourceTree = "<group>";
};
C034E7C51D6B10A0006EE129 /* Category */ = {
isa = PBXGroup;
children = (
C034E7C61D6B10A0006EE129 /* NSString+File.h */,
C034E7C71D6B10A0006EE129 /* NSString+File.m */,
);
path = Category;
sourceTree = "<group>";
};
C034E7CA1D6B10A0006EE129 /* CoreCategory */ = {
isa = PBXGroup;
children = (
C034E7CB1D6B10A0006EE129 /* CALayer */,
C034E7D01D6B10A0006EE129 /* NSArray */,
C034E7D31D6B10A0006EE129 /* NSDate */,
C034E7D61D6B10A0006EE129 /* NSObject */,
C034E7D91D6B10A0006EE129 /* NSString */,
C034E7DE1D6B10A0006EE129 /* UIColor */,
C034E7E11D6B10A0006EE129 /* UIDevice */,
C034E7E41D6B10A0006EE129 /* UIFont */,
C034E7E71D6B10A0006EE129 /* UIImage */,
C034E7F21D6B10A0006EE129 /* UITableViewCell */,
C034E7F51D6B10A0006EE129 /* UIView */,
C034E7F81D6B10A0006EE129 /* UIWindow */,
);
path = CoreCategory;
sourceTree = "<group>";
};
C034E7CB1D6B10A0006EE129 /* CALayer */ = {
isa = PBXGroup;
children = (
C034E7CC1D6B10A0006EE129 /* CALayer+Anim.h */,
C034E7CD1D6B10A0006EE129 /* CALayer+Anim.m */,
C034E7CE1D6B10A0006EE129 /* CALayer+Transition.h */,
C034E7CF1D6B10A0006EE129 /* CALayer+Transition.m */,
);
path = CALayer;
sourceTree = "<group>";
};
C034E7D01D6B10A0006EE129 /* NSArray */ = {
isa = PBXGroup;
children = (
C034E7D11D6B10A0006EE129 /* NSArray+Extend.h */,
C034E7D21D6B10A0006EE129 /* NSArray+Extend.m */,
);
path = NSArray;
sourceTree = "<group>";
};
C034E7D31D6B10A0006EE129 /* NSDate */ = {
isa = PBXGroup;
children = (
C034E7D41D6B10A0006EE129 /* NSDate+Extend.h */,
C034E7D51D6B10A0006EE129 /* NSDate+Extend.m */,
);
path = NSDate;
sourceTree = "<group>";
};
C034E7D61D6B10A0006EE129 /* NSObject */ = {
isa = PBXGroup;
children = (
C034E7D71D6B10A0006EE129 /* NSObject+Extend.h */,
C034E7D81D6B10A0006EE129 /* NSObject+Extend.m */,
);
path = NSObject;
sourceTree = "<group>";
};
C034E7D91D6B10A0006EE129 /* NSString */ = {
isa = PBXGroup;
children = (
C034E7DA1D6B10A0006EE129 /* NSString+Extend.h */,
C034E7DB1D6B10A0006EE129 /* NSString+Extend.m */,
C034E7DC1D6B10A0006EE129 /* NSString+Password.h */,
C034E7DD1D6B10A0006EE129 /* NSString+Password.m */,
);
path = NSString;
sourceTree = "<group>";
};
C034E7DE1D6B10A0006EE129 /* UIColor */ = {
isa = PBXGroup;
children = (
C034E7DF1D6B10A0006EE129 /* UIColor+Extend.h */,
C034E7E01D6B10A0006EE129 /* UIColor+Extend.m */,
);
path = UIColor;
sourceTree = "<group>";
};
C034E7E11D6B10A0006EE129 /* UIDevice */ = {
isa = PBXGroup;
children = (
C034E7E21D6B10A0006EE129 /* UIDevice+Extend.h */,
C034E7E31D6B10A0006EE129 /* UIDevice+Extend.m */,
);
path = UIDevice;
sourceTree = "<group>";
};
C034E7E41D6B10A0006EE129 /* UIFont */ = {
isa = PBXGroup;
children = (
C034E7E51D6B10A0006EE129 /* UIFont+Extend.h */,
C034E7E61D6B10A0006EE129 /* UIFont+Extend.m */,
);
path = UIFont;
sourceTree = "<group>";
};
C034E7E71D6B10A0006EE129 /* UIImage */ = {
isa = PBXGroup;
children = (
C034E7E81D6B10A0006EE129 /* UIImage+Color.h */,
C034E7E91D6B10A0006EE129 /* UIImage+Color.m */,
C034E7EA1D6B10A0006EE129 /* UIImage+Cut.h */,
C034E7EB1D6B10A0006EE129 /* UIImage+Cut.m */,
C034E7EC1D6B10A0006EE129 /* UIImage+Extend.h */,
C034E7ED1D6B10A0006EE129 /* UIImage+Extend.m */,
C034E7EE1D6B10A0006EE129 /* UIImage+FixOrientation.h */,
C034E7EF1D6B10A0006EE129 /* UIImage+FixOrientation.m */,
C034E7F01D6B10A0006EE129 /* UIImage+Water.h */,
C034E7F11D6B10A0006EE129 /* UIImage+Water.m */,
);
path = UIImage;
sourceTree = "<group>";
};
C034E7F21D6B10A0006EE129 /* UITableViewCell */ = {
isa = PBXGroup;
children = (
C034E7F31D6B10A0006EE129 /* UITableViewCell+Extend.h */,
C034E7F41D6B10A0006EE129 /* UITableViewCell+Extend.m */,
);
path = UITableViewCell;
sourceTree = "<group>";
};
C034E7F51D6B10A0006EE129 /* UIView */ = {
isa = PBXGroup;
children = (
C034E7F61D6B10A0006EE129 /* UIView+Extend.h */,
C034E7F71D6B10A0006EE129 /* UIView+Extend.m */,
);
path = UIView;
sourceTree = "<group>";
};
C034E7F81D6B10A0006EE129 /* UIWindow */ = {
isa = PBXGroup;
children = (
C034E7F91D6B10A0006EE129 /* UIWindow+Launch.h */,
C034E7FA1D6B10A0006EE129 /* UIWindow+Launch.m */,
);
path = UIWindow;
sourceTree = "<group>";
};
C034E7FB1D6B10A0006EE129 /* CoreExtend */ = {
isa = PBXGroup;
children = (
C034E7FC1D6B10A0006EE129 /* CoreConst.h */,
);
path = CoreExtend;
sourceTree = "<group>";
};
C034E7FD1D6B10A0006EE129 /* CoreSDWebImage */ = {
isa = PBXGroup;
children = (
C034E7FE1D6B10A0006EE129 /* Lib */,
C034E8041D6B10A0006EE129 /* UIButton+SD.h */,
C034E8051D6B10A0006EE129 /* UIButton+SD.m */,
C034E8061D6B10A0006EE129 /* UIImageView+SD.h */,
C034E8071D6B10A0006EE129 /* UIImageView+SD.m */,
);
path = CoreSDWebImage;
sourceTree = "<group>";
};
C034E7FE1D6B10A0006EE129 /* Lib */ = {
isa = PBXGroup;
children = (
C034E7FF1D6B10A0006EE129 /* Category */,
C034E8021D6B10A0006EE129 /* Resource */,
);
path = Lib;
sourceTree = "<group>";
};
C034E7FF1D6B10A0006EE129 /* Category */ = {
isa = PBXGroup;
children = (
C034E8001D6B10A0006EE129 /* UIImage+ReMake.h */,
C034E8011D6B10A0006EE129 /* UIImage+ReMake.m */,
);
path = Category;
sourceTree = "<group>";
};
C034E8021D6B10A0006EE129 /* Resource */ = {
isa = PBXGroup;
children = (
C034E8031D6B10A0006EE129 /* CoreSDWebImage.bundle */,
);
path = Resource;
sourceTree = "<group>";
};
C034E8081D6B10A0006EE129 /* CoreSVP */ = {
isa = PBXGroup;
children = (
C034E8091D6B10A0006EE129 /* CoreSVP.bundle */,
C034E80A1D6B10A0006EE129 /* CoreSVP.h */,
C034E80B1D6B10A0006EE129 /* CoreSVP.m */,
C034E80C1D6B10A0006EE129 /* SVProgressHUD */,
);
path = CoreSVP;
sourceTree = "<group>";
};
C034E80C1D6B10A0006EE129 /* SVProgressHUD */ = {
isa = PBXGroup;
children = (
C034E80D1D6B10A0006EE129 /* SVIndefiniteAnimatedView.h */,
C034E80E1D6B10A0006EE129 /* SVIndefiniteAnimatedView.m */,
C034E80F1D6B10A0006EE129 /* SVProgressHUD-Prefix.pch */,
C034E8101D6B10A0006EE129 /* SVProgressHUD.bundle */,
C034E8111D6B10A0006EE129 /* SVProgressHUD.h */,
C034E8121D6B10A0006EE129 /* SVProgressHUD.m */,
);
path = SVProgressHUD;
sourceTree = "<group>";
};
C034E8131D6B10A0006EE129 /* LFRoundProgressView */ = {
isa = PBXGroup;
children = (
C034E8141D6B10A0006EE129 /* LFRoundProgressView.h */,
C034E8151D6B10A0006EE129 /* LFRoundProgressView.m */,
);
path = LFRoundProgressView;
sourceTree = "<group>";
};
C034E8161D6B10A0006EE129 /* Lib */ = {
isa = PBXGroup;
children = (
C034E8171D6B10A0006EE129 /* Category */,
C034E81A1D6B10A0006EE129 /* Const */,
C034E81D1D6B10A0006EE129 /* Layout */,
C034E8201D6B10A0006EE129 /* Model */,
C034E8231D6B10A0006EE129 /* Resource */,
C034E8251D6B10A0006EE129 /* Type */,
C034E8271D6B10A0006EE129 /* View */,
);
path = Lib;
sourceTree = "<group>";
};
C034E8171D6B10A0006EE129 /* Category */ = {
isa = PBXGroup;
children = (
C034E8181D6B10A0006EE129 /* UIView+PBExtend.h */,
C034E8191D6B10A0006EE129 /* UIView+PBExtend.m */,
);
path = Category;
sourceTree = "<group>";
};
C034E81A1D6B10A0006EE129 /* Const */ = {
isa = PBXGroup;
children = (
C034E81B1D6B10A0006EE129 /* PBConst.h */,
C034E81C1D6B10A0006EE129 /* PBConst.m */,
);
path = Const;
sourceTree = "<group>";
};
C034E81D1D6B10A0006EE129 /* Layout */ = {
isa = PBXGroup;
children = (
C034E81E1D6B10A0006EE129 /* PhotoBroswerLayout.h */,
C034E81F1D6B10A0006EE129 /* PhotoBroswerLayout.m */,
);
path = Layout;
sourceTree = "<group>";
};
C034E8201D6B10A0006EE129 /* Model */ = {
isa = PBXGroup;
children = (
C034E8211D6B10A0006EE129 /* PhotoModel.h */,
C034E8221D6B10A0006EE129 /* PhotoModel.m */,
);
path = Model;
sourceTree = "<group>";
};
C034E8231D6B10A0006EE129 /* Resource */ = {
isa = PBXGroup;
children = (
C034E8241D6B10A0006EE129 /* PB.bundle */,
);
path = Resource;
sourceTree = "<group>";
};
C034E8251D6B10A0006EE129 /* Type */ = {
isa = PBXGroup;
children = (
C034E8261D6B10A0006EE129 /* PhotoBroswerType.h */,
);
path = Type;
sourceTree = "<group>";
};
C034E8271D6B10A0006EE129 /* View */ = {
isa = PBXGroup;
children = (
C034E8281D6B10A0006EE129 /* PBBlurImageView.h */,
C034E8291D6B10A0006EE129 /* PBBlurImageView.m */,
C034E82A1D6B10A0006EE129 /* PBPGView.h */,
C034E82B1D6B10A0006EE129 /* PBPGView.m */,
C034E82C1D6B10A0006EE129 /* PBSaveBtn.h */,
C034E82D1D6B10A0006EE129 /* PBSaveBtn.m */,
C034E82E1D6B10A0006EE129 /* PBScrollView.h */,
C034E82F1D6B10A0006EE129 /* PBScrollView.m */,
C034E8301D6B10A0006EE129 /* PhotoImageView.h */,
C034E8311D6B10A0006EE129 /* PhotoImageView.m */,
C034E8321D6B10A0006EE129 /* PhotoItemView.h */,
C034E8331D6B10A0006EE129 /* PhotoItemView.m */,
C034E8341D6B10A0006EE129 /* PhotoItemView.xib */,
);
path = View;
sourceTree = "<group>";
};
C034E8381D6B10A0006EE129 /* EGO */ = {
isa = PBXGroup;
children = (
C034E8391D6B10A0006EE129 /* EGORefreshTableFooterView.h */,
C034E83A1D6B10A0006EE129 /* EGORefreshTableFooterView.m */,
C034E83B1D6B10A0006EE129 /* EGORefreshTableHeaderView.h */,
C034E83C1D6B10A0006EE129 /* EGORefreshTableHeaderView.m */,
C034E83D1D6B10A0006EE129 /* EGOViewCommon.h */,
);
path = EGO;
sourceTree = "<group>";
};
C03846951DB9C3E7008C3BAB /* Cemarose */ = {
isa = PBXGroup;
children = (
DA4E369F1F18A6CB0007E4D0 /* KWMPageResult.h */,
DA4E36A01F18A6CB0007E4D0 /* KWMPageResult.m */,
807AF4941DC984950000A326 /* KWMArticlesResult.h */,
807AF4951DC984950000A326 /* KWMArticlesResult.m */,
807AF4961DC984950000A326 /* KWMBlogResult.h */,
807AF4971DC984950000A326 /* KWMBlogResult.m */,
807AF4981DC984950000A326 /* KWMBrandsResult.h */,
807AF4991DC984950000A326 /* KWMBrandsResult.m */,
807AF49A1DC984950000A326 /* KWMCustomerResult.h */,
807AF49B1DC984950000A326 /* KWMCustomerResult.m */,
807AF4A01DC984950000A326 /* KWMSearchResult.h */,
807AF4A11DC984950000A326 /* KWMSearchResult.m */,
801F87BA1DD1A9B90038FA4C /* KWMNewProducts.h */,
801F87BB1DD1A9B90038FA4C /* KWMNewProducts.m */,
805C04361DD1FA7100ACC071 /* KWMBrandsTypeResult.h */,
805C04371DD1FA7100ACC071 /* KWMBrandsTypeResult.m */,
C03943C11DD1FD3F00141475 /* KWMProductTypeResult.h */,
C03943C21DD1FD3F00141475 /* KWMProductTypeResult.m */,
C032D3021DD87E07008D3155 /* KWMMetafieldResult.h */,
C032D3031DD87E07008D3155 /* KWMMetafieldResult.m */,
C0F4AF461DF110EF00BDA719 /* KWMProductResult.h */,
C0F4AF471DF110F000BDA719 /* KWMProductResult.m */,
C0219A931DF53EB200711099 /* KWMExchangeRateResult.h */,
C0219A941DF53EB200711099 /* KWMExchangeRateResult.m */,
C0D7CAA21EA846AA005AE3A3 /* KWMOrdersResult.h */,
C0D7CAA31EA846AA005AE3A3 /* KWMOrdersResult.m */,
9BE61CF91ECD56E70031D21E /* KWMDictionaryResult.h */,
9BE61CFA1ECD56E70031D21E /* KWMDictioaryResult.m */,
9BE61CFF1ECD71610031D21E /* KWMCartResult.h */,
9BE61D001ECD71610031D21E /* KWMCartResult.m */,
DA4E36901F1613C70007E4D0 /* KWMHomeDataResult.h */,
DA4E36911F1613C70007E4D0 /* KWMHomeDataResult.m */,
);
path = Cemarose;
sourceTree = "<group>";
};
C04834241F13219A00A5BFB4 /* NewHome */ = {
isa = PBXGroup;
children = (
C04834251F13242600A5BFB4 /* Cell */,
C04834381F13274300A5BFB4 /* KWMNewHomeVC.h */,
C04834391F13274300A5BFB4 /* KWMNewHomeVC.m */,
);
path = NewHome;
sourceTree = "<group>";
};
C04834251F13242600A5BFB4 /* Cell */ = {
isa = PBXGroup;
children = (
C04834291F1324B400A5BFB4 /* KWMAdHeader.h */,
C048342A1F1324B400A5BFB4 /* KWMAdHeader.m */,
C048343D1F13288F00A5BFB4 /* KWMMenuHeader.xib */,
C048342C1F13254200A5BFB4 /* KWMMenuHeader.h */,
C048342D1F13254200A5BFB4 /* KWMMenuHeader.m */,
C04834471F1338F200A5BFB4 /* KWMRecommendHeader.xib */,
C048343F1F13350F00A5BFB4 /* KWMRecommendHeader.h */,
C04834401F13350F00A5BFB4 /* KWMRecommendHeader.m */,
C04834491F13391A00A5BFB4 /* KWMClothingSetsHeader.xib */,
C04834321F1325A000A5BFB4 /* KWMClothingSetsHeader.h */,
C04834331F1325A000A5BFB4 /* KWMClothingSetsHeader.m */,
C048344B1F13393D00A5BFB4 /* KWMHotSalesHeader.xib */,
C04834351F1325CB00A5BFB4 /* KWMHotSalesHeader.h */,
C04834361F1325CB00A5BFB4 /* KWMHotSalesHeader.m */,
C048344F1F13590500A5BFB4 /* KWMProductBannerItemView.xib */,
C048344D1F13590500A5BFB4 /* KWMProductBannerItemView.h */,
C048344E1F13590500A5BFB4 /* KWMProductBannerItemView.m */,
C04834521F13590500A5BFB4 /* KWMClothingSetsCell.xib */,
C04834501F13590500A5BFB4 /* KWMClothingSetsCell.h */,
C04834511F13590500A5BFB4 /* KWMClothingSetsCell.m */,
C04834441F1337A800A5BFB4 /* KWMNewHomeCell.xib */,
C04834421F1337A800A5BFB4 /* KWMNewHomeCell.h */,
C04834431F1337A800A5BFB4 /* KWMNewHomeCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
C06665021D75A2E500F02EF4 /* Cell */ = {
isa = PBXGroup;
children = (
C0DD531B1EE54F5D002D1E0C /* KWMMineTitleView.h */,
C0DD531C1EE54F5D002D1E0C /* KWMMineTitleView.m */,
C0DD531D1EE54F5D002D1E0C /* KWMMineTitleView.xib */,
C06665031D75A2E500F02EF4 /* KWMOrderCell.h */,
C06665041D75A2E500F02EF4 /* KWMOrderCell.m */,
C06665051D75A2E500F02EF4 /* KWMOrderCell.xib */,
C05910911E34A729002990B3 /* KWMNewGiftCardCell.h */,
C05910921E34A729002990B3 /* KWMNewGiftCardCell.m */,
C05910931E34A729002990B3 /* KWMNewGiftCardCell.xib */,
9B01488C1EF3B8750056D937 /* KWMSelectCurrencyCell.h */,
9B01488D1EF3B8760056D937 /* KWMSelectCurrencyCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
C084F44F1D6D8CA700A0625D /* Cell */ = {
isa = PBXGroup;
children = (
C084F4501D6D8CA700A0625D /* KWMBlogCell.h */,
C084F4511D6D8CA700A0625D /* KWMBlogCell.m */,
C084F4521D6D8CA700A0625D /* KWMBlogCell.xib */,
);
path = Cell;
sourceTree = "<group>";
};
C0A6B3A81F01FC5300D85673 /* NewProduct */ = {
isa = PBXGroup;
children = (
C0A6B3A91F01FC5300D85673 /* Cell */,
C0A6B3B91F01FC5300D85673 /* KWMNewProductVC.h */,
C0A6B3BA1F01FC5300D85673 /* KWMNewProductVC.m */,
C0A6B3BB1F01FC5300D85673 /* KWMVariantsVC.h */,
C0A6B3BC1F01FC5300D85673 /* KWMVariantsVC.m */,
C02986861F0F249D002EB25F /* KWMWishListVC.h */,
C02986871F0F249D002EB25F /* KWMWishListVC.m */,
C0A6B3BD1F01FC5300D85673 /* NewProduct.storyboard */,
);
path = NewProduct;
sourceTree = "<group>";
};
C0A6B3A91F01FC5300D85673 /* Cell */ = {
isa = PBXGroup;
children = (
C0A6B3AA1F01FC5300D85673 /* KWMFirstDetailView.h */,
C0A6B3AB1F01FC5300D85673 /* KWMFirstDetailView.m */,
C0A6B3AC1F01FC5300D85673 /* KWMFirstDetailView.xib */,
C0A6B3B31F01FC5300D85673 /* KWMSecondDetailView.h */,
C0A6B3B41F01FC5300D85673 /* KWMSecondDetailView.m */,
C0A6B3B51F01FC5300D85673 /* KWMSecondDetailView.xib */,
C057C77B1F172D4C00B95034 /* KWMMidDetailView.h */,
C057C77C1F172D4C00B95034 /* KWMMidDetailView.m */,
C057C77E1F172D8E00B95034 /* KWMMidDetailView.xib */,
C0A6B3AD1F01FC5300D85673 /* KWMProductColorCell.h */,
C0A6B3AE1F01FC5300D85673 /* KWMProductColorCell.m */,
C0A6B3AF1F01FC5300D85673 /* KWMProductColorCell.xib */,
C0A6B3B01F01FC5300D85673 /* KWMProductSizeCell.h */,
C0A6B3B11F01FC5300D85673 /* KWMProductSizeCell.m */,
C0A6B3B21F01FC5300D85673 /* KWMProductSizeCell.xib */,
C029868C1F0F2663002EB25F /* KWMWishCell.h */,
C029868D1F0F2663002EB25F /* KWMWishCell.m */,
C029868E1F0F2663002EB25F /* KWMWishCell.xib */,
);
path = Cell;
sourceTree = "<group>";
};
C0CC13FA1D7823B0007B5986 /* Cell */ = {
isa = PBXGroup;
children = (
C0AF039B1DD5C8EE0060623F /* KWMNeedAddressView.h */,
C0AF039C1DD5C8EE0060623F /* KWMNeedAddressView.m */,
C0AF039D1DD5C8EE0060623F /* KWMNeedAddressView.xib */,
C0CC13FB1D7823B0007B5986 /* KWMDeleteView.h */,
C0CC13FC1D7823B0007B5986 /* KWMDeleteView.m */,
C0CC13FD1D7823B0007B5986 /* KWMDeleteView.xib */,
C0CC13FE1D7823B0007B5986 /* KWMShopCarCell.h */,
C0CC13FF1D7823B0007B5986 /* KWMShopCarCell.m */,
C0CC14001D7823B0007B5986 /* KWMShopCarCell.xib */,
C0CC14011D7823B0007B5986 /* KWMSizeCell.h */,
C0CC14021D7823B0007B5986 /* KWMSizeCell.m */,
C0CC14031D7823B0007B5986 /* KWMSizeCell.xib */,
C0CC14131D79826F007B5986 /* KWMAddressCell.h */,
C0CC14141D79826F007B5986 /* KWMAddressCell.m */,
C0CC14151D79826F007B5986 /* KWMAddressCell.xib */,
C0FC278C1D9B73B000C5CFFE /* KWMGiftCardCell.h */,
C0FC278D1D9B73B000C5CFFE /* KWMGiftCardCell.m */,
C0392DB61DCC38450051AC8E /* KWMShippingCell.h */,
C0392DB71DCC38450051AC8E /* KWMShippingCell.m */,
C0392DB81DCC38450051AC8E /* KWMShippingCell.xib */,
);
path = Cell;
sourceTree = "<group>";
};
C0CCB3B51EEA520C00BC2FB8 /* FilterView */ = {
isa = PBXGroup;
children = (
C0243BC51EFBD6060013CFA7 /* KWMCategoryFilterTab.h */,
C0243BC61EFBD6060013CFA7 /* KWMCategoryFilterTab.m */,
C0243BC71EFBD6060013CFA7 /* KWMCategoryFilterTab.xib */,
C0CCB3BE1EEA59A200BC2FB8 /* KWMFilterViewCell.h */,
C0CCB3BF1EEA59A200BC2FB8 /* KWMFilterViewCell.m */,
C0CCB3C01EEA59A200BC2FB8 /* KWMFilterViewCell.xib */,
C0CCB3B61EEA579900BC2FB8 /* KWMFilterView.h */,
C0CCB3B71EEA579900BC2FB8 /* KWMFilterView.m */,
C0CCB3B81EEA579900BC2FB8 /* KWMFilterView.xib */,
C0CCB3C61EEA765B00BC2FB8 /* KWMFilterTabItem.h */,
C0CCB3C71EEA765B00BC2FB8 /* KWMFilterTabItem.m */,
C0CCB3C81EEA765B00BC2FB8 /* KWMFilterTabItem.xib */,
C0CCB3C91EEA765B00BC2FB8 /* KWMNormalFilterTab.h */,
C0CCB3CA1EEA765B00BC2FB8 /* KWMNormalFilterTab.m */,
C0CCB3CB1EEA765B00BC2FB8 /* KWMNormalFilterTab.xib */,
C0CCB3CC1EEA765B00BC2FB8 /* KWMNormalFilterView.h */,
C0CCB3CD1EEA765B00BC2FB8 /* KWMNormalFilterView.m */,
C0CCB3CE1EEA765B00BC2FB8 /* KWMNormalFilterView.xib */,
);
path = FilterView;
sourceTree = "<group>";
};
C0DD53251EE55190002D1E0C /* Cell */ = {
isa = PBXGroup;
children = (
C0DD534B1EE6AE06002D1E0C /* BaseCell.h */,
C0DD534C1EE6AE06002D1E0C /* BaseCell.m */,
);
path = Cell;
sourceTree = "<group>";
};
C0DD53261EE55190002D1E0C /* Loading */ = {
isa = PBXGroup;
children = (
C0DD53271EE55190002D1E0C /* ArcToCircleLayer.h */,
C0DD53281EE55190002D1E0C /* ArcToCircleLayer.m */,
C0DD53291EE55190002D1E0C /* KWMLoadingHeader.h */,
C0DD532A1EE55190002D1E0C /* KWMLoadingHeader.m */,
C0DD532B1EE55190002D1E0C /* KWMLoadingView.h */,
C0DD532C1EE55190002D1E0C /* KWMLoadingView.m */,
C0DD532D1EE55190002D1E0C /* KWMLoadingView.xib */,
C0DD532E1EE55190002D1E0C /* KWMSplashView.h */,
C0DD532F1EE55190002D1E0C /* KWMSplashView.m */,
C0DD53301EE55190002D1E0C /* KWMSplashView.xib */,
C0DD53311EE55190002D1E0C /* KWMSuperLoadingView.h */,
C0DD53321EE55190002D1E0C /* KWMSuperLoadingView.m */,
C0DD53331EE55190002D1E0C /* MMJRefreshNormalHeader.h */,
C0DD53341EE55190002D1E0C /* MMJRefreshNormalHeader.m */,
);
path = Loading;
sourceTree = "<group>";
};
C0F586411E24F820001248E2 /* Product */ = {
isa = PBXGroup;
children = (
C0F586421E24F820001248E2 /* Cell */,
C0F586601E24F820001248E2 /* KWMNewTypeSelectedVC.h */,
C0F586611E24F820001248E2 /* KWMNewTypeSelectedVC.m */,
C0F586621E24F820001248E2 /* KWMNewVC.h */,
C0F586631E24F820001248E2 /* KWMNewVC.m */,
C0F586641E24F820001248E2 /* KWMSearchFeedbackVC.h */,
C0F586651E24F820001248E2 /* KWMSearchFeedbackVC.m */,
C0F586661E24F820001248E2 /* KWMSelectedGoodsVC.h */,
C0F586671E24F820001248E2 /* KWMSelectedGoodsVC.m */,
C02C7D9C1E643323008DC29C /* KWMShareVC.h */,
C02C7D9D1E643323008DC29C /* KWMShareVC.m */,
C02C7DA11E66AA96008DC29C /* KWMFilterVC.h */,
C02C7DA21E66AA97008DC29C /* KWMFilterVC.m */,
C0F586681E24F820001248E2 /* New.storyboard */,
C0F586691E24F820001248E2 /* OpenSource */,
C0F5866D1E24F820001248E2 /* SVInSV */,
);
path = Product;
sourceTree = "<group>";
};
C0F586421E24F820001248E2 /* Cell */ = {
isa = PBXGroup;
children = (
C0DD53161EE54C5F002D1E0C /* KWMSearchFeedBackView.h */,
C0DD53171EE54C5F002D1E0C /* KWMSearchFeedBackView.m */,
C0DD53181EE54C5F002D1E0C /* KWMSearchFeedBackView.xib */,
C0F586431E24F820001248E2 /* KWMBottomView.h */,
C0F586441E24F820001248E2 /* KWMBottomView.m */,
C0F586AD1E279574001248E2 /* KWMBottomView.xib */,
C0F586461E24F820001248E2 /* KWMCollectionCell.h */,
C0F586471E24F820001248E2 /* KWMCollectionCell.m */,
C0F586481E24F820001248E2 /* KWMCollectionCell.xib */,
C0F586491E24F820001248E2 /* KWMDetailCell.h */,
C0F5864A1E24F820001248E2 /* KWMDetailCell.m */,
C0F5864B1E24F820001248E2 /* KWMDetailCell.xib */,
C0F5864C1E24F820001248E2 /* KWMDoubleTitleView.h */,
C0F5864D1E24F820001248E2 /* KWMDoubleTitleView.m */,
C0F5864E1E24F820001248E2 /* KWMDoubleTitleView.xib */,
C0F586521E24F820001248E2 /* KWMNewGoodsCell.h */,
C0F586531E24F820001248E2 /* KWMNewGoodsCell.m */,
C0F586541E24F820001248E2 /* KWMNewGoodsCell.xib */,
C0F586551E24F820001248E2 /* KWMNewTypeView.h */,
C0F586561E24F820001248E2 /* KWMNewTypeView.m */,
C0F586571E24F820001248E2 /* KWMNewTypeView.xib */,
C08827A41E28B4AF006A8B91 /* KWMPageControl.h */,
C08827A51E28B4AF006A8B91 /* KWMPageControl.m */,
C02C7DA41E66B2AE008DC29C /* KWMFilterCell.h */,
C02C7DA51E66B2AE008DC29C /* KWMFilterCell.m */,
C02C7DA61E66B2AE008DC29C /* KWMFilterCell.xib */,
C02C7DB11E67B56D008DC29C /* KWMFilterHeaderView.h */,
C02C7DB21E67B56D008DC29C /* KWMFilterHeaderView.m */,
C02C7DB31E67B56D008DC29C /* KWMFilterHeaderView.xib */,
);
path = Cell;
sourceTree = "<group>";
};
C0F586691E24F820001248E2 /* OpenSource */ = {
isa = PBXGroup;
children = (
C0F5866A1E24F820001248E2 /* ATView */,
);
path = OpenSource;
sourceTree = "<group>";
};
C0F5866A1E24F820001248E2 /* ATView */ = {
isa = PBXGroup;
children = (
C0F5866B1E24F820001248E2 /* ATPagingView.h */,
C0F5866C1E24F820001248E2 /* ATPagingView.m */,
);
path = ATView;
sourceTree = "<group>";
};
C0F5866D1E24F820001248E2 /* SVInSV */ = {
isa = PBXGroup;
children = (
C0F5866E1E24F820001248E2 /* SHorizontalView.h */,
C0F5866F1E24F820001248E2 /* SHorizontalView.m */,
C0F586701E24F820001248E2 /* SSView.h */,
C0F586711E24F820001248E2 /* SSView.m */,
C0F586721E24F820001248E2 /* SVerticalView.h */,
C0F586731E24F820001248E2 /* SVerticalView.m */,
);
path = SVInSV;
sourceTree = "<group>";
};
FB61DBBD1842EA19647B37D6 /* Frameworks */ = {
isa = PBXGroup;
children = (
C031209F1EF29AF200E49EFA /* CoreMotion.framework */,
C031209D1EF29ABE00E49EFA /* Foundation.framework */,
C031209B1EF29AA400E49EFA /* UIKit.framework */,
C03120991EF29A9800E49EFA /* CoreGraphics.framework */,
C03120971EF29A8900E49EFA /* CoreText.framework */,
C03120951EF29A5F00E49EFA /* QuartzCore.framework */,
C02C7D9F1E666978008DC29C /* MessageUI.framework */,
C02C7D8D1E6411C3008DC29C /* CFNetwork.framework */,
C02C7D8B1E6411AE008DC29C /* CoreTelephony.framework */,
C02C7D891E64119E008DC29C /* Security.framework */,
C02C7D871E64118D008DC29C /* libc++.tbd */,
C02C7D841E640FD9008DC29C /* libz.tbd */,
C02C7D821E640FBF008DC29C /* SystemConfiguration.framework */,
80E65A801D953AE20084610B /* PassKit.framework */,
80E65A7C1D95383E0084610B /* Contacts.framework */,
80E65A7D1D95383E0084610B /* ContactsUI.framework */,
80471CB31D95375600B36D4B /* AddressBookUI.framework */,
80471CB11D95374C00B36D4B /* AddressBook.framework */,
8045F30D1D94C6BF0042B15A /* libsqlite3.0.tbd */,
8045F30B1D94C6AB0042B15A /* CoreData.framework */,
450DA8BB947651E9A9B38BEB /* libPods-iCemarose.a */,
);
name = Frameworks;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXNativeTarget section */
C034E6891D6AEB12006EE129 /* iCemarose */ = {
isa = PBXNativeTarget;
buildConfigurationList = C034E6B71D6AEB13006EE129 /* Build configuration list for PBXNativeTarget "iCemarose" */;
buildPhases = (
64966DC87007D09CBBF4452B /* [CP] Check Pods Manifest.lock */,
C034E6861D6AEB12006EE129 /* Sources */,
C034E6871D6AEB12006EE129 /* Frameworks */,
C034E6881D6AEB12006EE129 /* Resources */,
142DC2F5BB46E008FACD17B9 /* [CP] Embed Pods Frameworks */,
F84386F9A53E1205C21D5570 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
dependencies = (
);
name = iCemarose;
productName = iCemarose;
productReference = C034E68A1D6AEB12006EE129 /* Cemarose.app */;
productType = "com.apple.product-type.application";
};
C034E6A21D6AEB13006EE129 /* iCemaroseTests */ = {
isa = PBXNativeTarget;
buildConfigurationList = C034E6BA1D6AEB13006EE129 /* Build configuration list for PBXNativeTarget "iCemaroseTests" */;
buildPhases = (
C034E69F1D6AEB13006EE129 /* Sources */,
C034E6A01D6AEB13006EE129 /* Frameworks */,
C034E6A11D6AEB13006EE129 /* Resources */,
);
buildRules = (
);
dependencies = (
C034E6A51D6AEB13006EE129 /* PBXTargetDependency */,
);
name = iCemaroseTests;
productName = iCemaroseTests;
productReference = C034E6A31D6AEB13006EE129 /* iCemaroseTests.xctest */;
productType = "com.apple.product-type.bundle.unit-test";
};
C034E6AD1D6AEB13006EE129 /* iCemaroseUITests */ = {
isa = PBXNativeTarget;
buildConfigurationList = C034E6BD1D6AEB13006EE129 /* Build configuration list for PBXNativeTarget "iCemaroseUITests" */;
buildPhases = (
C034E6AA1D6AEB13006EE129 /* Sources */,
C034E6AB1D6AEB13006EE129 /* Frameworks */,
C034E6AC1D6AEB13006EE129 /* Resources */,
);
buildRules = (
);
dependencies = (
C034E6B01D6AEB13006EE129 /* PBXTargetDependency */,
);
name = iCemaroseUITests;
productName = iCemaroseUITests;
productReference = C034E6AE1D6AEB13006EE129 /* iCemaroseUITests.xctest */;
productType = "com.apple.product-type.bundle.ui-testing";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
C034E6821D6AEB12006EE129 /* Project object */ = {
isa = PBXProject;
attributes = {
LastUpgradeCheck = 0730;
ORGANIZATIONNAME = kollway;
TargetAttributes = {
C034E6891D6AEB12006EE129 = {
CreatedOnToolsVersion = 7.3.1;
DevelopmentTeam = 72Z44QQ9ZD;
ProvisioningStyle = Manual;
};
C034E6A21D6AEB13006EE129 = {
CreatedOnToolsVersion = 7.3.1;
DevelopmentTeam = 3DFT78DGSN;
TestTargetID = C034E6891D6AEB12006EE129;
};
C034E6AD1D6AEB13006EE129 = {
CreatedOnToolsVersion = 7.3.1;
DevelopmentTeam = 3DFT78DGSN;
TestTargetID = C034E6891D6AEB12006EE129;
};
};
};
buildConfigurationList = C034E6851D6AEB12006EE129 /* Build configuration list for PBXProject "iCemarose" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
en,
Base,
);
mainGroup = C034E6811D6AEB12006EE129;
productRefGroup = C034E68B1D6AEB12006EE129 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
C034E6891D6AEB12006EE129 /* iCemarose */,
C034E6A21D6AEB13006EE129 /* iCemaroseTests */,
C034E6AD1D6AEB13006EE129 /* iCemaroseUITests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
C034E6881D6AEB12006EE129 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
C0243BBF1EFBD5A10013CFA7 /* KWMLeftCategoryCell.xib in Resources */,
C02986901F0F2663002EB25F /* KWMWishCell.xib in Resources */,
C0F5867B1E24F820001248E2 /* KWMDoubleTitleView.xib in Resources */,
C034E8561D6B10A0006EE129 /* CoreSVP.bundle in Resources */,
C034E8591D6B10A0006EE129 /* SVProgressHUD.bundle in Resources */,
C0243BC11EFBD5A10013CFA7 /* KWMRightProductCell.xib in Resources */,
801230F31DD30704008C7904 /* KWMSearchBrandsCell.xib in Resources */,
C048344A1F13391A00A5BFB4 /* KWMClothingSetsHeader.xib in Resources */,
C03120A71EF29B2900E49EFA /* 更新日志.txt in Resources */,
C084F4591D6D976F00A0625D /* KWMSearchBar.xib in Resources */,
C0DD53381EE55190002D1E0C /* KWMLoadingView.xib in Resources */,
C0F586811E24F820001248E2 /* KWMNewTypeView.xib in Resources */,
C0AF039F1DD5C8EE0060623F /* KWMNeedAddressView.xib in Resources */,
C084F4541D6D8CA700A0625D /* KWMBlogCell.xib in Resources */,
C05910951E34A729002990B3 /* KWMNewGiftCardCell.xib in Resources */,
C0CC14091D7823B0007B5986 /* KWMSizeCell.xib in Resources */,
8091DFAE1D6EA6DC0020519C /* KWMFirstView.xib in Resources */,
C02C7DB51E67B56D008DC29C /* KWMFilterHeaderView.xib in Resources */,
C0CCB3D21EEA765B00BC2FB8 /* KWMNormalFilterTab.xib in Resources */,
C034E8671D6B10A0006EE129 /* PhotoItemView.xib in Resources */,
C0A6B3C31F01FC5300D85673 /* KWMProductSizeCell.xib in Resources */,
C0DD533A1EE55190002D1E0C /* KWMSplashView.xib in Resources */,
8091DFA31D6E8CCA0020519C /* Guide.storyboard in Resources */,
80F82E4F1D701F82008B470B /* Brand.storyboard in Resources */,
C034E69D1D6AEB12006EE129 /* LaunchScreen.storyboard in Resources */,
C0A6B3C11F01FC5300D85673 /* KWMProductColorCell.xib in Resources */,
C00D40941F187C9500DEA685 /* KWMCategoryTitleView.xib in Resources */,
C048344C1F13393D00A5BFB4 /* KWMHotSalesHeader.xib in Resources */,
80E844291D7FB1130042AED2 /* KWMRuleView.xib in Resources */,
C034E6F61D6AF197006EE129 /* KWMPickView.xib in Resources */,
C0F586771E24F820001248E2 /* KWMCollectionCell.xib in Resources */,
C0243BBD1EFBD5A10013CFA7 /* Category.storyboard in Resources */,
C0F586791E24F820001248E2 /* KWMDetailCell.xib in Resources */,
C04834481F1338F200A5BFB4 /* KWMRecommendHeader.xib in Resources */,
C0F5867F1E24F820001248E2 /* KWMNewGoodsCell.xib in Resources */,
C0DD53101EE54A9E002D1E0C /* KWMBarandSelectView.xib in Resources */,
C066650C1D75A2E500F02EF4 /* Mine.storyboard in Resources */,
8077F79B1D73E39000A2E2E2 /* KWMBrandCaramelCell.xib in Resources */,
C034E6EB1D6AF0A0006EE129 /* Localizable.strings in Resources */,
C0243BC91EFBD6060013CFA7 /* KWMCategoryFilterTab.xib in Resources */,
DA74576C1F692DCA000E192E /* KWMProductSameBrandView.xib in Resources */,
C0F586AE1E279574001248E2 /* KWMBottomView.xib in Resources */,
C0392DBA1DCC38450051AC8E /* KWMShippingCell.xib in Resources */,
C0CCB3D01EEA765B00BC2FB8 /* KWMFilterTabItem.xib in Resources */,
80DD275B1DC2FE6800CDC5B5 /* Home.storyboard in Resources */,
C057C77F1F172D8E00B95034 /* KWMMidDetailView.xib in Resources */,
80A611AF1D6DB0CD00709E09 /* ShopCart.storyboard in Resources */,
C02C7D811E640D82008DC29C /* README.txt in Resources */,
C0DD531F1EE54F5D002D1E0C /* KWMMineTitleView.xib in Resources */,
C034E8531D6B10A0006EE129 /* CoreSDWebImage.bundle in Resources */,
C0CCB3D41EEA765B00BC2FB8 /* KWMNormalFilterView.xib in Resources */,
C066650A1D75A2E500F02EF4 /* KWMOrderCell.xib in Resources */,
8091DFB81D6EC1C60020519C /* KWMThreeView.xib in Resources */,
C048343E1F13288F00A5BFB4 /* KWMMenuHeader.xib in Resources */,
8091DFB01D6EAD6F0020519C /* KWMSecondView.xib in Resources */,
8091DFA61D6EA0840020519C /* KWMLastView.xib in Resources */,
C03120A51EF29B2900E49EFA /* AlipaySDK.bundle in Resources */,
C034E8601D6B10A0006EE129 /* PB.bundle in Resources */,
C0DD531A1EE54C5F002D1E0C /* KWMSearchFeedBackView.xib in Resources */,
C0DD53151EE54B96002D1E0C /* KWMSearchBrandView.xib in Resources */,
80C801511D78136400002306 /* KWMTBVSectionHeardView.xib in Resources */,
80F82E621D704E34008B470B /* KWMBrandCell.xib in Resources */,
C04834541F13590500A5BFB4 /* KWMProductBannerItemView.xib in Resources */,
C0A6B3CA1F01FC5300D85673 /* NewProduct.storyboard in Resources */,
C0A6B3BF1F01FC5300D85673 /* KWMFirstDetailView.xib in Resources */,
801230F81DD32B49008C7904 /* KWMInformationView.xib in Resources */,
C034E69A1D6AEB12006EE129 /* Assets.xcassets in Resources */,
C034E8691D6B10A0006EE129 /* PhotoBroswerVC.xib in Resources */,
C0CC14051D7823B0007B5986 /* KWMDeleteView.xib in Resources */,
C034E6981D6AEB12006EE129 /* Main.storyboard in Resources */,
C04834461F1337A800A5BFB4 /* KWMNewHomeCell.xib in Resources */,
C0CC14071D7823B0007B5986 /* KWMShopCarCell.xib in Resources */,
C0CCB3BA1EEA579900BC2FB8 /* KWMFilterView.xib in Resources */,
C0CCB3C21EEA59A200BC2FB8 /* KWMFilterViewCell.xib in Resources */,
C0CC14171D79826F007B5986 /* KWMAddressCell.xib in Resources */,
804771821D6D32A70086B4DC /* Login.storyboard in Resources */,
C0DD53241EE55062002D1E0C /* KWMCarCountView.xib in Resources */,
C0A6B3C51F01FC5300D85673 /* KWMSecondDetailView.xib in Resources */,
C04834561F13590500A5BFB4 /* KWMClothingSetsCell.xib in Resources */,
C0F5868B1E24F820001248E2 /* New.storyboard in Resources */,
C02C7DA81E66B2AE008DC29C /* KWMFilterCell.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C034E6A11D6AEB13006EE129 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C034E6AC1D6AEB13006EE129 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXShellScriptBuildPhase section */
142DC2F5BB46E008FACD17B9 /* [CP] Embed Pods Frameworks */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-iCemarose/Pods-iCemarose-frameworks.sh\"\n";
showEnvVarsInLog = 0;
};
64966DC87007D09CBBF4452B /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "[CP] Check Pods Manifest.lock";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
F84386F9A53E1205C21D5570 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
);
name = "[CP] Copy Pods Resources";
outputPaths = (
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-iCemarose/Pods-iCemarose-resources.sh\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
C034E6861D6AEB12006EE129 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
C084F4531D6D8CA700A0625D /* KWMBlogCell.m in Sources */,
C04834451F1337A800A5BFB4 /* KWMNewHomeCell.m in Sources */,
C0DD53361EE55190002D1E0C /* KWMLoadingHeader.m in Sources */,
807AF4A21DC984950000A326 /* KWMArticlesResult.m in Sources */,
C048B8E51EF3F20B000DA7AF /* KWMCollectionRefreshUtil.m in Sources */,
C034E6E41D6AEF73006EE129 /* KWMRequestResult.m in Sources */,
8019E9541DC89CF300CAD7BF /* KWMNewGoodsModel.m in Sources */,
C034E7B01D6AFBDA006EE129 /* KWMWebViewVC.m in Sources */,
C034E84C1D6B10A0006EE129 /* UIImage+Extend.m in Sources */,
C04834531F13590500A5BFB4 /* KWMProductBannerItemView.m in Sources */,
C0CC141A1D79847A007B5986 /* KWMSelectAddressVC.m in Sources */,
C034E7001D6AF205006EE129 /* KWMButton.m in Sources */,
C0A6B3C91F01FC5300D85673 /* KWMVariantsVC.m in Sources */,
C04392801F0F9A3D0027ABA3 /* KWMHotSales.m in Sources */,
C0F5867A1E24F820001248E2 /* KWMDoubleTitleView.m in Sources */,
C0A6B3C01F01FC5300D85673 /* KWMProductColorCell.m in Sources */,
8091DFBB1D6EC1DD0020519C /* KWMThreeView.m in Sources */,
C0DD53371EE55190002D1E0C /* KWMLoadingView.m in Sources */,
9B01488E1EF3B8760056D937 /* KWMSelectCurrencyCell.m in Sources */,
C03120B01EF2B26B00E49EFA /* KWMPayUtil.m in Sources */,
9BE61CFB1ECD56E70031D21E /* KWMDictioaryResult.m in Sources */,
C034E6D81D6AEF1B006EE129 /* KWMImageUtil.m in Sources */,
C0A6B3BE1F01FC5300D85673 /* KWMFirstDetailView.m in Sources */,
DA4E36981F17729C0007E4D0 /* KWMCategoryModel.m in Sources */,
C048B8E21EF3C04B000DA7AF /* KWMBeforePayData.m in Sources */,
C03846941DB89EEB008C3BAB /* KWMCemaroseResult.m in Sources */,
C04834411F13350F00A5BFB4 /* KWMRecommendHeader.m in Sources */,
C0F586871E24F820001248E2 /* KWMNewTypeSelectedVC.m in Sources */,
80598D471D99193400BF0F97 /* KWMInformationVC.m in Sources */,
C034E7B91D6B0A8D006EE129 /* KWMHomeVC.m in Sources */,
C0CCB3BD1EEA589200BC2FB8 /* KWMFilter.m in Sources */,
C0F5868F1E24F821001248E2 /* SVerticalView.m in Sources */,
C048343B1F13274300A5BFB4 /* KWMNewHomeVC.m in Sources */,
801F87BC1DD1A9B90038FA4C /* KWMNewProducts.m in Sources */,
C0CC14061D7823B0007B5986 /* KWMShopCarCell.m in Sources */,
C0243BC81EFBD6060013CFA7 /* KWMCategoryFilterTab.m in Sources */,
C04834371F1325CB00A5BFB4 /* KWMHotSalesHeader.m in Sources */,
9B8298E31EF22BE200743438 /* KWMCurrencyUtil.m in Sources */,
C034E6951D6AEB12006EE129 /* ViewController.m in Sources */,
C0DD53231EE55062002D1E0C /* KWMCarCountView.m in Sources */,
C02986881F0F249D002EB25F /* KWMWishListVC.m in Sources */,
C0028EC51F0DD19C00744C14 /* KWMAdditionalResult.m in Sources */,
C03943C01DD1FCE900141475 /* KWMProductType.m in Sources */,
C0CC140C1D7829FC007B5986 /* KWMSelectSizeVC.m in Sources */,
C00D40971F187CAB00DEA685 /* KWMCategoryTitleView.m in Sources */,
C034E7B31D6AFC3B006EE129 /* KWMMainVC.m in Sources */,
C08FDA2A1D9B583400EBDB0D /* KWMGiftCardVC.m in Sources */,
804771801D6D326D0086B4DC /* KWMLoginVC.m in Sources */,
C034E83F1D6B10A0006EE129 /* CoreArchive.m in Sources */,
C043927A1F0F99310027ABA3 /* KWMHomeData.m in Sources */,
C034E8611D6B10A0006EE129 /* PBBlurImageView.m in Sources */,
C043927D1F0F9A2A0027ABA3 /* KWMAdvertisement.m in Sources */,
C034E6DE1D6AEF53006EE129 /* KWMAPIManager.m in Sources */,
C034E8541D6B10A0006EE129 /* UIButton+SD.m in Sources */,
C0F5868C1E24F821001248E2 /* ATPagingView.m in Sources */,
C034E6921D6AEB12006EE129 /* AppDelegate.m in Sources */,
8091DFB61D6EADFB0020519C /* KWMFirstView.m in Sources */,
C0DD533C1EE55190002D1E0C /* MMJRefreshNormalHeader.m in Sources */,
8078068A1D75680600FD2841 /* KWMSearchBrandVC.m in Sources */,
C0F4AF4B1DF1149500BDA719 /* KWMProduct.m in Sources */,
C0F586741E24F820001248E2 /* KWMBottomView.m in Sources */,
C0392DB91DCC38450051AC8E /* KWMShippingCell.m in Sources */,
C02C7DA31E66AA97008DC29C /* KWMFilterVC.m in Sources */,
C034E8681D6B10A0006EE129 /* PhotoBroswerVC.m in Sources */,
C0028EC81F0DE80500744C14 /* KWMWish.m in Sources */,
C0CCB3D31EEA765B00BC2FB8 /* KWMNormalFilterView.m in Sources */,
8091DFB31D6EADE60020519C /* KWMSecondView.m in Sources */,
C034E8501D6B10A0006EE129 /* UIView+Extend.m in Sources */,
C0CCB3CF1EEA765B00BC2FB8 /* KWMFilterTabItem.m in Sources */,
C0A6B3C81F01FC5300D85673 /* KWMNewProductVC.m in Sources */,
80ED0A4C1D93B99E00B28DF2 /* KWMShopCartData.m in Sources */,
C034E85C1D6B10A0006EE129 /* UIView+PBExtend.m in Sources */,
C0F5867E1E24F820001248E2 /* KWMNewGoodsCell.m in Sources */,
C032D3071DD87E5F008D3155 /* KWMMetafield.m in Sources */,
9BE61CFE1ECD66BC0031D21E /* KWMShoppingCart.m in Sources */,
C04834341F1325A000A5BFB4 /* KWMClothingSetsHeader.m in Sources */,
C0F586761E24F820001248E2 /* KWMCollectionCell.m in Sources */,
C034E8421D6B10A0006EE129 /* NSArray+Extend.m in Sources */,
C034E85B1D6B10A0006EE129 /* LFRoundProgressView.m in Sources */,
80F82E611D704E34008B470B /* KWMBrandCell.m in Sources */,
C0A6B3C41F01FC5300D85673 /* KWMSecondDetailView.m in Sources */,
DA4E36A11F18A6CB0007E4D0 /* KWMPageResult.m in Sources */,
9B8298E61EF237FC00743438 /* NSDecimalNumber+Currency.m in Sources */,
DA7DF8E51F1DB01600D5239B /* NSString+Format.m in Sources */,
C034E6F51D6AF197006EE129 /* KWMPickView.m in Sources */,
C08870EB1F03481C00C9C1C8 /* KWMCustomsClearance.m in Sources */,
C034E8651D6B10A0006EE129 /* PhotoImageView.m in Sources */,
C034E6C81D6AED1F006EE129 /* KWMUser.m in Sources */,
C034E6F01D6AF13A006EE129 /* KWMBaseVC.m in Sources */,
C0EA5E981D9A0AED0029157E /* KWMCheckoutWebViewVC.m in Sources */,
C034E8461D6B10A0006EE129 /* NSString+Password.m in Sources */,
C034E8641D6B10A0006EE129 /* PBScrollView.m in Sources */,
C0D7CAA11EA843AD005AE3A3 /* KWMOrder.m in Sources */,
C0F586781E24F820001248E2 /* KWMDetailCell.m in Sources */,
C03120AD1EF2AC6700E49EFA /* KWMCheckoutPayResult.m in Sources */,
801F87BF1DD1D6850038FA4C /* KWMLoadStatus.m in Sources */,
C03943C31DD1FD3F00141475 /* KWMProductTypeResult.m in Sources */,
804771851D6D585B0086B4DC /* KWMValidationVC.m in Sources */,
80ED0A4F1D93BD0E00B28DF2 /* KWMShopCartModel.m in Sources */,
C034E8581D6B10A0006EE129 /* SVIndefiniteAnimatedView.m in Sources */,
C0F586881E24F820001248E2 /* KWMNewVC.m in Sources */,
8047717B1D6D31FD0086B4DC /* KWMBrandVC.m in Sources */,
C034E6E11D6AEF62006EE129 /* KWMRequestListResult.m in Sources */,
C02C7DA71E66B2AE008DC29C /* KWMFilterCell.m in Sources */,
80F82E581D7033D0008B470B /* KWMBrandModel.m in Sources */,
8077F7961D73D2D700A2E2E2 /* KWMBrandCaramelVC.m in Sources */,
C034E84D1D6B10A0006EE129 /* UIImage+FixOrientation.m in Sources */,
C0F5868E1E24F821001248E2 /* SSView.m in Sources */,
807806871D7566DD00FD2841 /* NSString+PinYin.m in Sources */,
C034E8511D6B10A0006EE129 /* UIWindow+Launch.m in Sources */,
C034E8571D6B10A0006EE129 /* CoreSVP.m in Sources */,
C06665091D75A2E500F02EF4 /* KWMOrderCell.m in Sources */,
C0DD53141EE54B96002D1E0C /* KWMSearchBrandView.m in Sources */,
C0CCB3C51EEA5A1100BC2FB8 /* UIView+Prettify.m in Sources */,
C034E8621D6B10A0006EE129 /* PBPGView.m in Sources */,
C0243BC01EFBD5A10013CFA7 /* KWMRightProductCell.m in Sources */,
C02C7DB41E67B56D008DC29C /* KWMFilterHeaderView.m in Sources */,
80ED0A371D93840A00B28DF2 /* DB_shopCart.xcdatamodeld in Sources */,
C0DD53391EE55190002D1E0C /* KWMSplashView.m in Sources */,
80E844271D7FB0FF0042AED2 /* KWMRuleView.m in Sources */,
8031DA991D8268CD00349869 /* KWMForgetPasswordVC.m in Sources */,
C0A6B3C21F01FC5300D85673 /* KWMProductSizeCell.m in Sources */,
C0F586801E24F820001248E2 /* KWMNewTypeView.m in Sources */,
80ED0A481D93B82F00B28DF2 /* KWMShopCartItem+CoreDataClass.m in Sources */,
C034E84F1D6B10A0006EE129 /* UITableViewCell+Extend.m in Sources */,
C034E8401D6B10A0006EE129 /* CALayer+Anim.m in Sources */,
C0FC278E1D9B73B000C5CFFE /* KWMGiftCardCell.m in Sources */,
8077F79A1D73E39000A2E2E2 /* KWMBrandCaramelCell.m in Sources */,
9BE61D011ECD71610031D21E /* KWMCartResult.m in Sources */,
C0CCB3C11EEA59A200BC2FB8 /* KWMFilterViewCell.m in Sources */,
C03120AA1EF2AC5A00E49EFA /* KWMWechatPayData.m in Sources */,
C084F4571D6D975400A0625D /* KWMSearchBar.m in Sources */,
C0DD534D1EE6AE06002D1E0C /* BaseCell.m in Sources */,
C0E8AE091D7D030B00C193DC /* KWMEditAddressVC.m in Sources */,
807AF4A51DC984950000A326 /* KWMCustomerResult.m in Sources */,
DA8B97801F58F816002FC38A /* SDImageCache+Resize.m in Sources */,
C066650F1D7675FC00F02EF4 /* KWMAboutUsVC.m in Sources */,
807AF4A31DC984950000A326 /* KWMBlogResult.m in Sources */,
C0CC14081D7823B0007B5986 /* KWMSizeCell.m in Sources */,
C057C77D1F172D4C00B95034 /* KWMMidDetailView.m in Sources */,
DAB6431A1F04CFE5002CD7FE /* AppDelegate+Deeplink.m in Sources */,
C06665121D767A0A00F02EF4 /* KWMContactUsVC.m in Sources */,
C034E6CF1D6AEE39006EE129 /* KWMUserDao.m in Sources */,
C08870E81F0342B000C9C1C8 /* KWMCustomsClearanceVC.m in Sources */,
C0DD530F1EE54A9E002D1E0C /* KWMBarandSelectView.m in Sources */,
C034E8551D6B10A0006EE129 /* UIImageView+SD.m in Sources */,
C034E85E1D6B10A0006EE129 /* PhotoBroswerLayout.m in Sources */,
C034E6CB1D6AED31006EE129 /* KWMBaseModel.m in Sources */,
C034E8481D6B10A0006EE129 /* UIDevice+Extend.m in Sources */,
C034E8491D6B10A0006EE129 /* UIFont+Extend.m in Sources */,
C0D7CAA41EA846AA005AE3A3 /* KWMOrdersResult.m in Sources */,
C0CC14121D795743007B5986 /* KWMDiscountVC.m in Sources */,
C066650B1D75A2E500F02EF4 /* KWMOrderVC.m in Sources */,
C034E8431D6B10A0006EE129 /* NSDate+Extend.m in Sources */,
C091EE331DDB1FC500A382B9 /* KWMAppVersion.m in Sources */,
C0CC14041D7823B0007B5986 /* KWMDeleteView.m in Sources */,
C0028ECB1F0E2B3500744C14 /* KWMAdditionalListResult.m in Sources */,
8091DFA11D6E878C0020519C /* KWMGuideVC.m in Sources */,
C034E84A1D6B10A0006EE129 /* UIImage+Color.m in Sources */,
801230F21DD30704008C7904 /* KWMSearchBrandsCell.m in Sources */,
DA8D64151F31CD2600B8F4A6 /* DPWebViewController.m in Sources */,
C048342E1F13254200A5BFB4 /* KWMMenuHeader.m in Sources */,
C0DD531E1EE54F5D002D1E0C /* KWMMineTitleView.m in Sources */,
805C04351DD1FA4900ACC071 /* KWMBrandsTypeModel.m in Sources */,
C08827A61E28B4AF006A8B91 /* KWMPageControl.m in Sources */,
C034E83E1D6B10A0006EE129 /* NSString+File.m in Sources */,
801230F61DD32B39008C7904 /* KWMInformationView.m in Sources */,
C0F586891E24F820001248E2 /* KWMSearchFeedbackVC.m in Sources */,
80ED0A491D93B82F00B28DF2 /* KWMShopCartItem+CoreDataProperties.m in Sources */,
80537ADB1D86A7E100AB5122 /* KWMUserModel.m in Sources */,
C034E84E1D6B10A0006EE129 /* UIImage+Water.m in Sources */,
C034E86B1D6B10A0006EE129 /* EGORefreshTableHeaderView.m in Sources */,
C0DD53191EE54C5F002D1E0C /* KWMSearchFeedBackView.m in Sources */,
C03A05061E35DC5800BAA889 /* KWMNewGiftCardVC.m in Sources */,
C034E86A1D6B10A0006EE129 /* EGORefreshTableFooterView.m in Sources */,
C034E84B1D6B10A0006EE129 /* UIImage+Cut.m in Sources */,
C0219A951DF53EB200711099 /* KWMExchangeRateResult.m in Sources */,
9B18C11F1EF1270A001DD59B /* BUYProductVariant+Currency.m in Sources */,
C034E85A1D6B10A0006EE129 /* SVProgressHUD.m in Sources */,
C07267851F1616E500C5A869 /* KWMColor.m in Sources */,
C0243BBE1EFBD5A10013CFA7 /* KWMLeftCategoryCell.m in Sources */,
807AF4A81DC984950000A326 /* KWMSearchResult.m in Sources */,
C04834231F13215500A5BFB4 /* KWMBannerView.m in Sources */,
C0243BC41EFBD5A10013CFA7 /* KWMProductFilterVC.m in Sources */,
C0DD533B1EE55190002D1E0C /* KWMSuperLoadingView.m in Sources */,
C034E85D1D6B10A0006EE129 /* PBConst.m in Sources */,
C0CCB3D11EEA765B00BC2FB8 /* KWMNormalFilterTab.m in Sources */,
9B01488B1EF3B5330056D937 /* KWMSelectCurrencyVC.m in Sources */,
C0CC140F1D7926DF007B5986 /* KWMBeforePayVC.m in Sources */,
C034E8441D6B10A0006EE129 /* NSObject+Extend.m in Sources */,
80A611B21D6DB0EC00709E09 /* KWMShopCartVC.m in Sources */,
9B53D5D71EE94739005BA6F7 /* KWMValidateUtil.m in Sources */,
9B0F56B81ECD3424009FC5FE /* UIViewController+AppearLog.m in Sources */,
C034E8451D6B10A0006EE129 /* NSString+Extend.m in Sources */,
C029868F1F0F2663002EB25F /* KWMWishCell.m in Sources */,
805C04381DD1FA7100ACC071 /* KWMBrandsTypeResult.m in Sources */,
C034E6DA1D6AEF1B006EE129 /* KWMTextFieldUtil.m in Sources */,
C0F5868D1E24F821001248E2 /* SHorizontalView.m in Sources */,
DA4E36921F1613C70007E4D0 /* KWMHomeDataResult.m in Sources */,
C034E7041D6AF205006EE129 /* RTSpinKitView.m in Sources */,
C0CCB3B91EEA579900BC2FB8 /* KWMFilterView.m in Sources */,
C05910941E34A729002990B3 /* KWMNewGiftCardCell.m in Sources */,
C04834551F13590500A5BFB4 /* KWMClothingSetsCell.m in Sources */,
C0243BC31EFBD5A10013CFA7 /* KWMCategoryVC.m in Sources */,
C034E8411D6B10A0006EE129 /* CALayer+Transition.m in Sources */,
C077966F1EEAA2BE00CD6859 /* KWMFilterUtil.m in Sources */,
C034E8631D6B10A0006EE129 /* PBSaveBtn.m in Sources */,
DA4E36951F1726B80007E4D0 /* UIViewController+HTTP.m in Sources */,
807AF4A71DC984950000A326 /* KWMProducts.m in Sources */,
C0F5868A1E24F820001248E2 /* KWMSelectedGoodsVC.m in Sources */,
C034E8661D6B10A0006EE129 /* PhotoItemView.m in Sources */,
9B166F511ED6DBCF003E9F03 /* KWMHttpUtil.m in Sources */,
C034E6D91D6AEF1B006EE129 /* KWMStringUtil.m in Sources */,
C02C7D9B1E642DED008DC29C /* KWMWeChatUtil.m in Sources */,
C034E6F11D6AF13A006EE129 /* KWMBasePageVC.m in Sources */,
C034E7031D6AF205006EE129 /* KWMLineView.m in Sources */,
C0243BC21EFBD5A10013CFA7 /* KWMBrandFilterVC.m in Sources */,
807AF4A41DC984950000A326 /* KWMBrandsResult.m in Sources */,
C048342B1F1324B400A5BFB4 /* KWMAdHeader.m in Sources */,
C034E8471D6B10A0006EE129 /* UIColor+Extend.m in Sources */,
DA7457681F692D67000E192E /* KWMProductSameBrandView.m in Sources */,
C0DD53351EE55190002D1E0C /* ArcToCircleLayer.m in Sources */,
C091EE361DDEEA9400A382B9 /* KWMVariants.m in Sources */,
C0E8AE121D7D52B200C193DC /* KWMPayTypeVC.m in Sources */,
C034E85F1D6B10A0006EE129 /* PhotoModel.m in Sources */,
C0AF039A1DD5BFB20060623F /* UIViewController+BackButtonHandler.m in Sources */,
C0F4AF481DF110F000BDA719 /* KWMProductResult.m in Sources */,
C0E8AE0C1D7D503600C193DC /* KWMPaySuccessVC.m in Sources */,
C0392DBD1DCC786F0051AC8E /* KWMShippingVC.m in Sources */,
C0FBD88E1F049D510009E375 /* KWMOrderPaid.m in Sources */,
807AF4A61DC984950000A326 /* KWMDataProduct.m in Sources */,
80C8014F1D78134800002306 /* KWMTBVSectionHeardView.m in Sources */,
C034E7C21D6B0B62006EE129 /* KWMMineVC.m in Sources */,
DA8D64121F31C67F00B8F4A6 /* DeepLinkURLProtocol.m in Sources */,
C08FDA271D9A5F3400EBDB0D /* KWMAddGiftCardVC.m in Sources */,
C07267821F15D62400C5A869 /* NSLayoutConstraint+Multiplier.m in Sources */,
C02C7D9E1E643323008DC29C /* KWMShareVC.m in Sources */,
C034E68F1D6AEB12006EE129 /* main.m in Sources */,
DA4E369E1F188B400007E4D0 /* BUYClient+FilterSoldout.m in Sources */,
C0AF039E1DD5C8EE0060623F /* KWMNeedAddressView.m in Sources */,
C034E8521D6B10A0006EE129 /* UIImage+ReMake.m in Sources */,
C001BA5C1EB2ED5500B366A8 /* KWMImageBlurUtil.m in Sources */,
80DD275E1DC2FF2200CDC5B5 /* KWMBlogDetailVC.m in Sources */,
C03846911DB87BCA008C3BAB /* KWMCustomer.m in Sources */,
8091DFAC1D6EA11E0020519C /* KWMLastView.m in Sources */,
C0CC14161D79826F007B5986 /* KWMAddressCell.m in Sources */,
C032D3041DD87E07008D3155 /* KWMMetafieldResult.m in Sources */,
804771881D6D769C0086B4DC /* KWMEmailVC.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C034E69F1D6AEB13006EE129 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
C0D7CA9E1EA7384E005AE3A3 /* KWMPageControl.m in Sources */,
C034E6A81D6AEB13006EE129 /* iCemaroseTests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C034E6AA1D6AEB13006EE129 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
C034E6B31D6AEB13006EE129 /* iCemaroseUITests.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */
C034E6A51D6AEB13006EE129 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = C034E6891D6AEB12006EE129 /* iCemarose */;
targetProxy = C034E6A41D6AEB13006EE129 /* PBXContainerItemProxy */;
};
C034E6B01D6AEB13006EE129 /* PBXTargetDependency */ = {
isa = PBXTargetDependency;
target = C034E6891D6AEB12006EE129 /* iCemarose */;
targetProxy = C034E6AF1D6AEB13006EE129 /* PBXContainerItemProxy */;
};
/* End PBXTargetDependency section */
/* Begin PBXVariantGroup section */
C034E6961D6AEB12006EE129 /* Main.storyboard */ = {
isa = PBXVariantGroup;
children = (
C034E6971D6AEB12006EE129 /* Base */,
);
name = Main.storyboard;
path = ..;
sourceTree = "<group>";
};
C034E69B1D6AEB12006EE129 /* LaunchScreen.storyboard */ = {
isa = PBXVariantGroup;
children = (
C034E69C1D6AEB12006EE129 /* Base */,
);
name = LaunchScreen.storyboard;
path = ..;
sourceTree = "<group>";
};
/* End PBXVariantGroup section */
/* Begin XCBuildConfiguration section */
C034E6B51D6AEB13006EE129 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Distribution: Mantong(Tianjin) Technology Dev Co., Ltd. (3DFT78DGSN)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: Mantong(Tianjin) Technology Dev Co., Ltd. (3DFT78DGSN)";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = dwarf;
DEVELOPMENT_TEAM = 3DFT78DGSN;
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 = 9.1;
MTL_ENABLE_DEBUG_INFO = YES;
ONLY_ACTIVE_ARCH = YES;
PROVISIONING_PROFILE = "50c552a9-9d3f-4af3-8a9f-1f3a1ff1d4f1";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
C034E6B61D6AEB13006EE129 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO;
CLANG_ANALYZER_NONNULL = YES;
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
CLANG_CXX_LIBRARY = "libc++";
CLANG_ENABLE_MODULES = YES;
CLANG_ENABLE_OBJC_ARC = YES;
CLANG_WARN_BOOL_CONVERSION = YES;
CLANG_WARN_CONSTANT_CONVERSION = YES;
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
CLANG_WARN_EMPTY_BODY = YES;
CLANG_WARN_ENUM_CONVERSION = YES;
CLANG_WARN_INT_CONVERSION = YES;
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
CLANG_WARN_UNREACHABLE_CODE = YES;
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
CODE_SIGN_IDENTITY = "iPhone Distribution: Mantong(Tianjin) Technology Dev Co., Ltd. (3DFT78DGSN)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Distribution: Mantong(Tianjin) Technology Dev Co., Ltd. (3DFT78DGSN)";
COPY_PHASE_STRIP = NO;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 3DFT78DGSN;
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 = 9.1;
MTL_ENABLE_DEBUG_INFO = NO;
PROVISIONING_PROFILE = "50c552a9-9d3f-4af3-8a9f-1f3a1ff1d4f1";
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
C034E6B81D6AEB13006EE129 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 9B58353B797587723B0E7515 /* Pods-iCemarose.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer: Yibo Jia (W6TWSKB7VU)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer: Yibo Jia (W6TWSKB7VU)";
DEVELOPMENT_TEAM = 72Z44QQ9ZD;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/iCemarose/Alipay",
);
GCC_PREFIX_HEADER = "iCemarose/Header-Prefix.h";
INFOPLIST_FILE = iCemarose/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/iCemarose/WeChat",
);
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-l\"AFNetworking\"",
"-l\"HMSegmentedControl@hons82\"",
"-l\"JSONModel\"",
"-l\"MBProgressHUD\"",
"-l\"MJRefresh\"",
"-l\"MagicalRecord\"",
"-l\"Mobile-Buy-SDK\"",
"-l\"PSAlertView\"",
"-l\"SAMCategories\"",
"-l\"SAMTextField\"",
"-l\"SAMTextView\"",
"-l\"SDWebImage\"",
"-l\"SFFocusViewLayout\"",
"-l\"YYCache\"",
"-l\"c++\"",
"-l\"sqlite3\"",
"-l\"z\"",
"-framework",
"\"Accelerate\"",
"-framework",
"\"AssetsLibrary\"",
"-framework",
"\"CoreData\"",
"-framework",
"\"CoreFoundation\"",
"-framework",
"\"CoreGraphics\"",
"-framework",
"\"ImageIO\"",
"-framework",
"\"MobileCoreServices\"",
"-framework",
"\"QuartzCore\"",
"-framework",
"\"Security\"",
"-framework",
"\"SystemConfiguration\"",
"-framework",
"\"UIKit\"",
"-all_load",
);
PRODUCT_BUNDLE_IDENTIFIER = com.kollway.cemarose;
PRODUCT_NAME = Cemarose;
PROVISIONING_PROFILE = "69b2b79b-9e23-4461-84e1-d6a05cdb90fa";
PROVISIONING_PROFILE_SPECIFIER = ios_distribution_dev_cemarose;
TARGETED_DEVICE_FAMILY = 1;
};
name = Debug;
};
C034E6B91D6AEB13006EE129 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = B5C3F0326028FE5E2F51B4C1 /* Pods-iCemarose.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "iPhone Developer: Yibo Jia (W6TWSKB7VU)";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer: Yibo Jia (W6TWSKB7VU)";
DEVELOPMENT_TEAM = 72Z44QQ9ZD;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/iCemarose/Alipay",
);
GCC_PREFIX_HEADER = "iCemarose/Header-Prefix.h";
INFOPLIST_FILE = iCemarose/Info.plist;
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
LIBRARY_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)/iCemarose/WeChat",
);
OTHER_LDFLAGS = (
"$(inherited)",
"-ObjC",
"-l\"AFNetworking\"",
"-l\"HMSegmentedControl@hons82\"",
"-l\"JSONModel\"",
"-l\"MBProgressHUD\"",
"-l\"MJRefresh\"",
"-l\"MagicalRecord\"",
"-l\"Mobile-Buy-SDK\"",
"-l\"PSAlertView\"",
"-l\"SAMCategories\"",
"-l\"SAMTextField\"",
"-l\"SAMTextView\"",
"-l\"SDWebImage\"",
"-l\"SFFocusViewLayout\"",
"-l\"YYCache\"",
"-l\"c++\"",
"-l\"sqlite3\"",
"-l\"z\"",
"-framework",
"\"Accelerate\"",
"-framework",
"\"AssetsLibrary\"",
"-framework",
"\"CoreData\"",
"-framework",
"\"CoreFoundation\"",
"-framework",
"\"CoreGraphics\"",
"-framework",
"\"ImageIO\"",
"-framework",
"\"MobileCoreServices\"",
"-framework",
"\"QuartzCore\"",
"-framework",
"\"Security\"",
"-framework",
"\"SystemConfiguration\"",
"-framework",
"\"UIKit\"",
"-all_load",
);
PRODUCT_BUNDLE_IDENTIFIER = com.kollway.cemarose;
PRODUCT_NAME = Cemarose;
PROVISIONING_PROFILE = "69b2b79b-9e23-4461-84e1-d6a05cdb90fa";
PROVISIONING_PROFILE_SPECIFIER = ios_distribution_dev_cemarose;
TARGETED_DEVICE_FAMILY = 1;
};
name = Release;
};
C034E6BB1D6AEB13006EE129 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
INFOPLIST_FILE = iCemaroseTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.kollway.iCemaroseTests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/iCemarose.app/iCemarose";
};
name = Debug;
};
C034E6BC1D6AEB13006EE129 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
BUNDLE_LOADER = "$(TEST_HOST)";
INFOPLIST_FILE = iCemaroseTests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.kollway.iCemaroseTests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/iCemarose.app/iCemarose";
};
name = Release;
};
C034E6BE1D6AEB13006EE129 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
INFOPLIST_FILE = iCemaroseUITests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.kollway.iCemaroseUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_TARGET_NAME = iCemarose;
};
name = Debug;
};
C034E6BF1D6AEB13006EE129 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
INFOPLIST_FILE = iCemaroseUITests/Info.plist;
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.kollway.iCemaroseUITests;
PRODUCT_NAME = "$(TARGET_NAME)";
TEST_TARGET_NAME = iCemarose;
};
name = Release;
};
/* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */
C034E6851D6AEB12006EE129 /* Build configuration list for PBXProject "iCemarose" */ = {
isa = XCConfigurationList;
buildConfigurations = (
C034E6B51D6AEB13006EE129 /* Debug */,
C034E6B61D6AEB13006EE129 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
C034E6B71D6AEB13006EE129 /* Build configuration list for PBXNativeTarget "iCemarose" */ = {
isa = XCConfigurationList;
buildConfigurations = (
C034E6B81D6AEB13006EE129 /* Debug */,
C034E6B91D6AEB13006EE129 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
C034E6BA1D6AEB13006EE129 /* Build configuration list for PBXNativeTarget "iCemaroseTests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
C034E6BB1D6AEB13006EE129 /* Debug */,
C034E6BC1D6AEB13006EE129 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
C034E6BD1D6AEB13006EE129 /* Build configuration list for PBXNativeTarget "iCemaroseUITests" */ = {
isa = XCConfigurationList;
buildConfigurations = (
C034E6BE1D6AEB13006EE129 /* Debug */,
C034E6BF1D6AEB13006EE129 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
/* End XCConfigurationList section */
/* Begin XCVersionGroup section */
80ED0A351D93840A00B28DF2 /* DB_shopCart.xcdatamodeld */ = {
isa = XCVersionGroup;
children = (
80ED0A361D93840A00B28DF2 /* DB_shopCart.xcdatamodel */,
);
currentVersion = 80ED0A361D93840A00B28DF2 /* DB_shopCart.xcdatamodel */;
name = DB_shopCart.xcdatamodeld;
path = ../DB_shopCart.xcdatamodeld;
sourceTree = "<group>";
versionGroupType = wrapper.xcdatamodel;
};
/* End XCVersionGroup section */
};
rootObject = C034E6821D6AEB12006EE129 /* Project object */;
}