project.pbxproj 103.8 KB
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
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 55;
	objects = {

/* Begin PBXBuildFile section */
		39CC172FB610DA5F29120B56 /* Pods_DreamSleep.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D11699D88A7A7BDB6168B71 /* Pods_DreamSleep.framework */; settings = {ATTRIBUTES = (Required, ); }; };
		D00291892816CD4500C0573B /* DsCacheUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D00291882816CD4500C0573B /* DsCacheUtils.m */; };
		D01814D127FFCBAF00583D4E /* CWCarousel.m in Sources */ = {isa = PBXBuildFile; fileRef = D01814CB27FFCBAF00583D4E /* CWCarousel.m */; };
		D01814D227FFCBAF00583D4E /* CWFlowLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = D01814CD27FFCBAF00583D4E /* CWFlowLayout.m */; };
		D01814D527FFCCFA00583D4E /* HomeTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = D01814D427FFCCFA00583D4E /* HomeTableView.m */; };
		D01814DC27FFD92200583D4E /* DSDataSource.m in Sources */ = {isa = PBXBuildFile; fileRef = D01814DB27FFD92200583D4E /* DSDataSource.m */; };
		D01814E227FFDBB800583D4E /* HomeHeaderView.m in Sources */ = {isa = PBXBuildFile; fileRef = D01814E127FFDBB800583D4E /* HomeHeaderView.m */; };
		D01814E8280020F900583D4E /* CWPageControl.m in Sources */ = {isa = PBXBuildFile; fileRef = D01814E6280020F800583D4E /* CWPageControl.m */; };
		D01814EB28002A8200583D4E /* DsMiddleView.m in Sources */ = {isa = PBXBuildFile; fileRef = D01814EA28002A8200583D4E /* DsMiddleView.m */; };
		D01814EE28002DC700583D4E /* HeaderDataModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D01814ED28002DC700583D4E /* HeaderDataModel.m */; };
		D01C9D6728167F9D00163567 /* InfoModifyAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = D01C9D6628167F9D00163567 /* InfoModifyAlertView.m */; };
		D01C9D6E28168BFC00163567 /* WSDatePickerView.xib in Resources */ = {isa = PBXBuildFile; fileRef = D01C9D6B28168BFC00163567 /* WSDatePickerView.xib */; };
		D01C9D6F28168BFC00163567 /* WSDatePickerView.m in Sources */ = {isa = PBXBuildFile; fileRef = D01C9D6C28168BFC00163567 /* WSDatePickerView.m */; };
		D01C9D7028168BFC00163567 /* NSDate+Extension.m in Sources */ = {isa = PBXBuildFile; fileRef = D01C9D6D28168BFC00163567 /* NSDate+Extension.m */; };
		D020CE1F280D951400E7E82F /* invite_friend.webp in Resources */ = {isa = PBXBuildFile; fileRef = D020CE1E280D915D00E7E82F /* invite_friend.webp */; };
		D027EE2627FB3DC0004BBA61 /* NetLoadingStateView.m in Sources */ = {isa = PBXBuildFile; fileRef = D027EE2527FB3DC0004BBA61 /* NetLoadingStateView.m */; };
		D027EE2927FB51D0004BBA61 /* DSGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = D027EE2827FB51D0004BBA61 /* DSGifHeader.m */; };
		D027EE3027FB52DA004BBA61 /* UIImage+Extras.m in Sources */ = {isa = PBXBuildFile; fileRef = D027EE2F27FB52DA004BBA61 /* UIImage+Extras.m */; };
		D027EE3227FB5464004BBA61 /* pull_down.gif in Resources */ = {isa = PBXBuildFile; fileRef = D027EE3127FB5464004BBA61 /* pull_down.gif */; };
		D046FE0D28100342000295AC /* UMSocialSDKResources.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D046FDF728100342000295AC /* UMSocialSDKResources.bundle */; };
		D046FE0E28100342000295AC /* UShareUI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D046FDF828100342000295AC /* UShareUI.framework */; };
		D046FE0F28100342000295AC /* UMShare.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D046FDF928100342000295AC /* UMShare.framework */; };
		D046FE1028100342000295AC /* UMCommon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D046FDFA28100342000295AC /* UMCommon.framework */; };
		D046FE1128100342000295AC /* libSocialWeChat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D046FDFD28100342000295AC /* libSocialWeChat.a */; };
		D046FE1228100342000295AC /* libSocialOfficialWeChat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D046FE0028100342000295AC /* libSocialOfficialWeChat.a */; };
		D046FE1328100342000295AC /* README.txt in Resources */ = {isa = PBXBuildFile; fileRef = D046FE0328100342000295AC /* README.txt */; };
		D046FE1428100342000295AC /* libWeChatSDK.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D046FE0528100342000295AC /* libWeChatSDK.a */; };
		D046FE1528100342000295AC /* libSocialQQ.a in Frameworks */ = {isa = PBXBuildFile; fileRef = D046FE0828100342000295AC /* libSocialQQ.a */; };
		D046FE1628100342000295AC /* TencentOpenApi_IOS_Bundle.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D046FE0A28100342000295AC /* TencentOpenApi_IOS_Bundle.bundle */; };
		D046FE1728100342000295AC /* TencentOpenAPI.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D046FE0B28100342000295AC /* TencentOpenAPI.framework */; };
		D046FE1828100342000295AC /* UMDevice.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D046FE0C28100342000295AC /* UMDevice.framework */; };
		D04B3D9A27F6D4D90022F8DF /* LeadingController.m in Sources */ = {isa = PBXBuildFile; fileRef = D04B3D9827F6D4D90022F8DF /* LeadingController.m */; };
		D04B3DAC27F6EEB50022F8DF /* DSTabBarController.m in Sources */ = {isa = PBXBuildFile; fileRef = D04B3DAA27F6EEB40022F8DF /* DSTabBarController.m */; };
		D04B3DB327F6F6070022F8DF /* Home.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D04B3DB227F6F6070022F8DF /* Home.storyboard */; };
		D04B3DB527F6F7430022F8DF /* AISleepCoach.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D04B3DB427F6F7430022F8DF /* AISleepCoach.storyboard */; };
		D04B3DBB27F6F7940022F8DF /* AISleepCoachController.m in Sources */ = {isa = PBXBuildFile; fileRef = D04B3DBA27F6F7940022F8DF /* AISleepCoachController.m */; };
		D04B3DBD27F6F8090022F8DF /* Profile.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D04B3DBC27F6F8090022F8DF /* Profile.storyboard */; };
		D04B3DC027F6F82D0022F8DF /* ProfileController.m in Sources */ = {isa = PBXBuildFile; fileRef = D04B3DBF27F6F82D0022F8DF /* ProfileController.m */; };
		D04B3DC327F6F9390022F8DF /* HomeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D04B3DC227F6F9390022F8DF /* HomeViewController.m */; };
		D0506B0C280503A800229278 /* UIButton+Extras.m in Sources */ = {isa = PBXBuildFile; fileRef = D0506B0B280503A800229278 /* UIButton+Extras.m */; };
		D0506B1528051ED400229278 /* SafeSleepModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D0506B1428051ED400229278 /* SafeSleepModel.m */; };
		D0506B1828054ECD00229278 /* SafeHelperCollectionView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0506B1728054ECD00229278 /* SafeHelperCollectionView.m */; };
		D0506B1B2805500E00229278 /* SafeHelperCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D0506B1A2805500E00229278 /* SafeHelperCollectionViewCell.m */; };
		D053BEE9280F9E310028CCFC /* CloseAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = D053BEE8280F9E310028CCFC /* CloseAlertView.m */; };
		D070509A28071BAF006D72E1 /* DSNetworkTool.m in Sources */ = {isa = PBXBuildFile; fileRef = D070509928071BAF006D72E1 /* DSNetworkTool.m */; };
		D07A4B27280E9BAA00BA0EC0 /* AccountController.m in Sources */ = {isa = PBXBuildFile; fileRef = D07A4B26280E9BAA00BA0EC0 /* AccountController.m */; };
		D07A4B2A280EA6B600BA0EC0 /* UserInfoTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = D07A4B29280EA6B600BA0EC0 /* UserInfoTableView.m */; };
		D07A4B2D280EA73B00BA0EC0 /* UserInfoView.m in Sources */ = {isa = PBXBuildFile; fileRef = D07A4B2C280EA73B00BA0EC0 /* UserInfoView.m */; };
		D07A657D28158A1900C15AF6 /* DsWebController.m in Sources */ = {isa = PBXBuildFile; fileRef = D07A657C28158A1900C15AF6 /* DsWebController.m */; };
		D07A65832815911D00C15AF6 /* DsMaskView.m in Sources */ = {isa = PBXBuildFile; fileRef = D07A65822815911D00C15AF6 /* DsMaskView.m */; };
		D07DAC902810546A0067A1BF /* DSImagePickerController.m in Sources */ = {isa = PBXBuildFile; fileRef = D07DAC8F2810546A0067A1BF /* DSImagePickerController.m */; };
		D07DACA42810557D0067A1BF /* CGGeometry+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D07DAC922810557D0067A1BF /* CGGeometry+RSKImageCropper.m */; };
		D07DACA52810557D0067A1BF /* RSKInternalUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = D07DAC932810557D0067A1BF /* RSKInternalUtility.m */; };
		D07DACA62810557D0067A1BF /* RSKTouchView.m in Sources */ = {isa = PBXBuildFile; fileRef = D07DAC942810557D0067A1BF /* RSKTouchView.m */; };
		D07DACA72810557D0067A1BF /* UIApplication+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D07DAC962810557D0067A1BF /* UIApplication+RSKImageCropper.m */; };
		D07DACA82810557D0067A1BF /* RSKImageCropViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D07DAC972810557D0067A1BF /* RSKImageCropViewController.m */; };
		D07DACA92810557D0067A1BF /* UIImage+RSKImageCropper.m in Sources */ = {isa = PBXBuildFile; fileRef = D07DAC982810557D0067A1BF /* UIImage+RSKImageCropper.m */; };
		D07DACAA2810557D0067A1BF /* RSKImageCropperStrings.bundle in Resources */ = {isa = PBXBuildFile; fileRef = D07DAC9D2810557D0067A1BF /* RSKImageCropperStrings.bundle */; };
		D07DACAB2810557D0067A1BF /* RSKImageScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = D07DACA32810557D0067A1BF /* RSKImageScrollView.m */; };
		D07F9DE927F4683B0036372F /* DKColorTable.txt in Resources */ = {isa = PBXBuildFile; fileRef = D07F9DE827F4683B0036372F /* DKColorTable.txt */; };
		D0878F48280BD18F005F1B7F /* LoginView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0878F47280BD18F005F1B7F /* LoginView.m */; };
		D0878F4C280BEFF9005F1B7F /* UILabel+YBAttributeTextTapAction.m in Sources */ = {isa = PBXBuildFile; fileRef = D0878F4B280BEFF9005F1B7F /* UILabel+YBAttributeTextTapAction.m */; };
		D0878F4F280C087E005F1B7F /* LoginController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0878F4E280C087E005F1B7F /* LoginController.m */; };
		D091BBB72808F9DA00487A50 /* BreathTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = D091BBB62808F9DA00487A50 /* BreathTextView.m */; };
		D091BBBB2809079600487A50 /* NSString+Extras.m in Sources */ = {isa = PBXBuildFile; fileRef = D091BBBA2809079600487A50 /* NSString+Extras.m */; };
		D0930F122801124E006B497A /* BaseNaviController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0930F112801124E006B497A /* BaseNaviController.m */; };
		D0930F1A2801874B006B497A /* UIViewController+Swizzling.m in Sources */ = {isa = PBXBuildFile; fileRef = D0930F152801874B006B497A /* UIViewController+Swizzling.m */; };
		D0930F1B2801874B006B497A /* UINavigationController+Pop.m in Sources */ = {isa = PBXBuildFile; fileRef = D0930F182801874B006B497A /* UINavigationController+Pop.m */; };
		D09BF331280E570D00E5F06C /* UserModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D09BF330280E570D00E5F06C /* UserModel.m */; };
		D09BF337280E605900E5F06C /* NSObject+Extras.m in Sources */ = {isa = PBXBuildFile; fileRef = D09BF336280E605900E5F06C /* NSObject+Extras.m */; };
		D09BF33A280E94E300E5F06C /* LoginUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = D09BF339280E94E300E5F06C /* LoginUtils.m */; };
		D09D0E96280D3FE9008DEDAB /* NSDate+Extras.m in Sources */ = {isa = PBXBuildFile; fileRef = D09D0E95280D3FE9008DEDAB /* NSDate+Extras.m */; };
		D09D0E9A280D507F008DEDAB /* ProfileAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = D09D0E99280D507F008DEDAB /* ProfileAlertView.m */; };
		D09D0E9D280D73B6008DEDAB /* InviteController.m in Sources */ = {isa = PBXBuildFile; fileRef = D09D0E9C280D73B6008DEDAB /* InviteController.m */; };
		D0B5ECA627F2D9DE003EDFE3 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B5ECA527F2D9DE003EDFE3 /* AppDelegate.m */; };
		D0B5ECAF27F2D9DE003EDFE3 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D0B5ECAD27F2D9DE003EDFE3 /* Main.storyboard */; };
		D0B5ECB127F2D9E0003EDFE3 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = D0B5ECB027F2D9E0003EDFE3 /* Assets.xcassets */; };
		D0B5ECB427F2D9E0003EDFE3 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D0B5ECB227F2D9E0003EDFE3 /* LaunchScreen.storyboard */; };
		D0B5ECB727F2D9E0003EDFE3 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B5ECB627F2D9E0003EDFE3 /* main.m */; };
		D0B5ECC827F2E97A003EDFE3 /* MacroFuncUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B5ECC727F2E97A003EDFE3 /* MacroFuncUtil.m */; };
		D0B5ECD527F2F0B2003EDFE3 /* AdaptationUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B5ECD427F2F0B2003EDFE3 /* AdaptationUtil.m */; };
		D0B5ECD827F2F1B0003EDFE3 /* ServerAPIUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = D0B5ECD727F2F1B0003EDFE3 /* ServerAPIUtil.m */; };
		D0BB9AA4281626F200DB209E /* ExceptionDefaultView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0BB9AA3281626F200DB209E /* ExceptionDefaultView.m */; };
		D0BB9AA728164DFB00DB209E /* NickNameController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0BB9AA628164DFB00DB209E /* NickNameController.m */; };
		D0BE32E62814D42B006539BE /* HomeRequestModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D0BE32E52814D42B006539BE /* HomeRequestModel.m */; };
		D0BE32E9281551EB006539BE /* ShareAlertView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0BE32E8281551EB006539BE /* ShareAlertView.m */; };
		D0C09ED728007D9100709D4C /* relax_normal_lottie.json in Resources */ = {isa = PBXBuildFile; fileRef = D0C09ED328007D9100709D4C /* relax_normal_lottie.json */; };
		D0C09ED828007D9100709D4C /* 478_lottie.json in Resources */ = {isa = PBXBuildFile; fileRef = D0C09ED428007D9100709D4C /* 478_lottie.json */; };
		D0C09ED928007D9100709D4C /* 478normal_lottie.json in Resources */ = {isa = PBXBuildFile; fileRef = D0C09ED528007D9100709D4C /* 478normal_lottie.json */; };
		D0C09EDA28007D9100709D4C /* relax_lottie.json in Resources */ = {isa = PBXBuildFile; fileRef = D0C09ED628007D9100709D4C /* relax_lottie.json */; };
		D0C09EE028007E5F00709D4C /* BreatheController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0C09EDF28007E5F00709D4C /* BreatheController.m */; };
		D0C50B3027FD1BEB00DC68F0 /* PrivacyView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0C50B2F27FD1BEB00DC68F0 /* PrivacyView.m */; };
		D0C50B3C27FD2EFD00DC68F0 /* PrivacyViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0C50B3B27FD2EFD00DC68F0 /* PrivacyViewController.m */; };
		D0C50B3F27FD381000DC68F0 /* UIView+Extras.m in Sources */ = {isa = PBXBuildFile; fileRef = D0C50B3E27FD381000DC68F0 /* UIView+Extras.m */; };
		D0C50B4227FD39C800DC68F0 /* UIViewController+FullScreenModal.m in Sources */ = {isa = PBXBuildFile; fileRef = D0C50B4127FD39C800DC68F0 /* UIViewController+FullScreenModal.m */; };
		D0C50B4627FD66FB00DC68F0 /* DSConstUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = D0C50B4527FD66FB00DC68F0 /* DSConstUtil.m */; };
		D0C50B4F27FD832300DC68F0 /* LeadView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0C50B4E27FD832300DC68F0 /* LeadView.m */; };
		D0CFD3CF27FB3B920002982B /* launcher@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D0CFD3CC27FB3B910002982B /* launcher@2x.png */; };
		D0CFD3D027FB3B920002982B /* launcher@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = D0CFD3CD27FB3B910002982B /* launcher@3x.png */; };
		D0CFD3D127FB3B920002982B /* launcher.png in Resources */ = {isa = PBXBuildFile; fileRef = D0CFD3CE27FB3B920002982B /* launcher.png */; };
		D0D3826728124E8A005BB219 /* FeedbackController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0D3826628124E8A005BB219 /* FeedbackController.m */; };
		D0DF90AE2814390000FC0F64 /* BannerModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D0DF90AD2814390000FC0F64 /* BannerModel.m */; };
		D0E65FFA2807A654006562F2 /* NSArray+HYBUnicodeReadable.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E65FF42807A654006562F2 /* NSArray+HYBUnicodeReadable.m */; };
		D0E65FFB2807A654006562F2 /* NSDictionary+HYBUnicodeReadable.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E65FF52807A654006562F2 /* NSDictionary+HYBUnicodeReadable.m */; };
		D0E65FFC2807A654006562F2 /* NSSet+HYBUnicodeReadable.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E65FF62807A654006562F2 /* NSSet+HYBUnicodeReadable.m */; };
		D0E65FFF2807AC5E006562F2 /* DSProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E65FFE2807AC5E006562F2 /* DSProgressHUD.m */; };
		D0E660022807B5AE006562F2 /* SafeSleepRequestModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E660002807B5AE006562F2 /* SafeSleepRequestModel.m */; };
		D0E660052807D02C006562F2 /* UserRequestModel.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E660042807D02C006562F2 /* UserRequestModel.m */; };
		D0E6600828080F97006562F2 /* SystemSetController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0E6600728080F97006562F2 /* SystemSetController.m */; };
		D0F808F52803D4E70097899F /* Track.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F808F32803D4E70097899F /* Track.m */; };
		D0F808FE280421C20097899F /* ThreeMinuteController.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F808FD280421C20097899F /* ThreeMinuteController.m */; };
		D0F8090428042A0B0097899F /* SafeSleepCell.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F8090328042A0B0097899F /* SafeSleepCell.m */; };
		D0F80907280431100097899F /* UILabel+Extras.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F80906280431100097899F /* UILabel+Extras.m */; };
		D0F82286280C44D10039F586 /* SetTableView.m in Sources */ = {isa = PBXBuildFile; fileRef = D0F82285280C44D10039F586 /* SetTableView.m */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		2D11699D88A7A7BDB6168B71 /* Pods_DreamSleep.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_DreamSleep.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		72E2054B343085AE9898C560 /* Pods-DreamSleep.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DreamSleep.debug.xcconfig"; path = "Target Support Files/Pods-DreamSleep/Pods-DreamSleep.debug.xcconfig"; sourceTree = "<group>"; };
		9B4D4A8254C6E2872914AB4D /* Pods-DreamSleep.beta.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DreamSleep.beta.xcconfig"; path = "Target Support Files/Pods-DreamSleep/Pods-DreamSleep.beta.xcconfig"; sourceTree = "<group>"; };
		D00291872816CD4500C0573B /* DsCacheUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DsCacheUtils.h; sourceTree = "<group>"; };
		D00291882816CD4500C0573B /* DsCacheUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DsCacheUtils.m; sourceTree = "<group>"; };
		D01814CB27FFCBAF00583D4E /* CWCarousel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CWCarousel.m; sourceTree = "<group>"; };
		D01814CC27FFCBAF00583D4E /* CWCarouselHeader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CWCarouselHeader.h; sourceTree = "<group>"; };
		D01814CD27FFCBAF00583D4E /* CWFlowLayout.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CWFlowLayout.m; sourceTree = "<group>"; };
		D01814CE27FFCBAF00583D4E /* CWCarouselProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CWCarouselProtocol.h; sourceTree = "<group>"; };
		D01814CF27FFCBAF00583D4E /* CWCarousel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CWCarousel.h; sourceTree = "<group>"; };
		D01814D027FFCBAF00583D4E /* CWFlowLayout.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CWFlowLayout.h; sourceTree = "<group>"; };
		D01814D327FFCCFA00583D4E /* HomeTableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeTableView.h; sourceTree = "<group>"; };
		D01814D427FFCCFA00583D4E /* HomeTableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeTableView.m; sourceTree = "<group>"; };
		D01814DA27FFD92200583D4E /* DSDataSource.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSDataSource.h; sourceTree = "<group>"; };
		D01814DB27FFD92200583D4E /* DSDataSource.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSDataSource.m; sourceTree = "<group>"; };
		D01814E027FFDBB800583D4E /* HomeHeaderView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeHeaderView.h; sourceTree = "<group>"; };
		D01814E127FFDBB800583D4E /* HomeHeaderView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeHeaderView.m; sourceTree = "<group>"; };
		D01814E6280020F800583D4E /* CWPageControl.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CWPageControl.m; sourceTree = "<group>"; };
		D01814E7280020F900583D4E /* CWPageControl.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CWPageControl.h; sourceTree = "<group>"; };
		D01814E928002A8200583D4E /* DsMiddleView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DsMiddleView.h; sourceTree = "<group>"; };
		D01814EA28002A8200583D4E /* DsMiddleView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DsMiddleView.m; sourceTree = "<group>"; };
		D01814EC28002DC700583D4E /* HeaderDataModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HeaderDataModel.h; sourceTree = "<group>"; };
		D01814ED28002DC700583D4E /* HeaderDataModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HeaderDataModel.m; sourceTree = "<group>"; };
		D01C9D6528167F9D00163567 /* InfoModifyAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InfoModifyAlertView.h; sourceTree = "<group>"; };
		D01C9D6628167F9D00163567 /* InfoModifyAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InfoModifyAlertView.m; sourceTree = "<group>"; };
		D01C9D6928168BFC00163567 /* NSDate+Extension.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extension.h"; sourceTree = "<group>"; };
		D01C9D6A28168BFC00163567 /* WSDatePickerView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WSDatePickerView.h; sourceTree = "<group>"; };
		D01C9D6B28168BFC00163567 /* WSDatePickerView.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WSDatePickerView.xib; sourceTree = "<group>"; };
		D01C9D6C28168BFC00163567 /* WSDatePickerView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WSDatePickerView.m; sourceTree = "<group>"; };
		D01C9D6D28168BFC00163567 /* NSDate+Extension.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extension.m"; sourceTree = "<group>"; };
		D020CE1E280D915D00E7E82F /* invite_friend.webp */ = {isa = PBXFileReference; lastKnownFileType = file; path = invite_friend.webp; sourceTree = "<group>"; };
		D027EE2427FB3DC0004BBA61 /* NetLoadingStateView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NetLoadingStateView.h; sourceTree = "<group>"; };
		D027EE2527FB3DC0004BBA61 /* NetLoadingStateView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NetLoadingStateView.m; sourceTree = "<group>"; };
		D027EE2727FB51D0004BBA61 /* DSGifHeader.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSGifHeader.h; sourceTree = "<group>"; };
		D027EE2827FB51D0004BBA61 /* DSGifHeader.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSGifHeader.m; sourceTree = "<group>"; };
		D027EE2E27FB52DA004BBA61 /* UIImage+Extras.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIImage+Extras.h"; sourceTree = "<group>"; };
		D027EE2F27FB52DA004BBA61 /* UIImage+Extras.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIImage+Extras.m"; sourceTree = "<group>"; };
		D027EE3127FB5464004BBA61 /* pull_down.gif */ = {isa = PBXFileReference; lastKnownFileType = image.gif; path = pull_down.gif; sourceTree = "<group>"; };
		D046FDF728100342000295AC /* UMSocialSDKResources.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = UMSocialSDKResources.bundle; sourceTree = "<group>"; };
		D046FDF828100342000295AC /* UShareUI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = UShareUI.framework; sourceTree = "<group>"; };
		D046FDF928100342000295AC /* UMShare.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = UMShare.framework; sourceTree = "<group>"; };
		D046FDFA28100342000295AC /* UMCommon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = UMCommon.framework; sourceTree = "<group>"; };
		D046FDFD28100342000295AC /* libSocialWeChat.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libSocialWeChat.a; sourceTree = "<group>"; };
		D046FDFE28100342000295AC /* UMSocialWechatHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UMSocialWechatHandler.h; sourceTree = "<group>"; };
		D046FE0028100342000295AC /* libSocialOfficialWeChat.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libSocialOfficialWeChat.a; sourceTree = "<group>"; };
		D046FE0128100342000295AC /* WXApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApi.h; sourceTree = "<group>"; };
		D046FE0228100342000295AC /* WXApiObject.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WXApiObject.h; sourceTree = "<group>"; };
		D046FE0328100342000295AC /* README.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = README.txt; sourceTree = "<group>"; };
		D046FE0428100342000295AC /* WechatAuthSDK.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WechatAuthSDK.h; sourceTree = "<group>"; };
		D046FE0528100342000295AC /* libWeChatSDK.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libWeChatSDK.a; sourceTree = "<group>"; };
		D046FE0728100342000295AC /* UMSocialQQHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = UMSocialQQHandler.h; sourceTree = "<group>"; };
		D046FE0828100342000295AC /* libSocialQQ.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libSocialQQ.a; sourceTree = "<group>"; };
		D046FE0A28100342000295AC /* TencentOpenApi_IOS_Bundle.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = TencentOpenApi_IOS_Bundle.bundle; sourceTree = "<group>"; };
		D046FE0B28100342000295AC /* TencentOpenAPI.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = TencentOpenAPI.framework; sourceTree = "<group>"; };
		D046FE0C28100342000295AC /* UMDevice.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; path = UMDevice.framework; sourceTree = "<group>"; };
		D04B3D9727F6D4D90022F8DF /* LeadingController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LeadingController.h; sourceTree = "<group>"; };
		D04B3D9827F6D4D90022F8DF /* LeadingController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LeadingController.m; sourceTree = "<group>"; };
		D04B3DA927F6EEB40022F8DF /* DSTabBarController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSTabBarController.h; sourceTree = "<group>"; };
		D04B3DAA27F6EEB40022F8DF /* DSTabBarController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSTabBarController.m; sourceTree = "<group>"; };
		D04B3DB227F6F6070022F8DF /* Home.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Home.storyboard; sourceTree = "<group>"; };
		D04B3DB427F6F7430022F8DF /* AISleepCoach.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = AISleepCoach.storyboard; sourceTree = "<group>"; };
		D04B3DB927F6F7940022F8DF /* AISleepCoachController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AISleepCoachController.h; sourceTree = "<group>"; };
		D04B3DBA27F6F7940022F8DF /* AISleepCoachController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AISleepCoachController.m; sourceTree = "<group>"; };
		D04B3DBC27F6F8090022F8DF /* Profile.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Profile.storyboard; sourceTree = "<group>"; };
		D04B3DBE27F6F82D0022F8DF /* ProfileController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProfileController.h; sourceTree = "<group>"; };
		D04B3DBF27F6F82D0022F8DF /* ProfileController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ProfileController.m; sourceTree = "<group>"; };
		D04B3DC127F6F9390022F8DF /* HomeViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeViewController.h; sourceTree = "<group>"; };
		D04B3DC227F6F9390022F8DF /* HomeViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeViewController.m; sourceTree = "<group>"; };
		D0506B0A280503A800229278 /* UIButton+Extras.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIButton+Extras.h"; sourceTree = "<group>"; };
		D0506B0B280503A800229278 /* UIButton+Extras.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIButton+Extras.m"; sourceTree = "<group>"; };
		D0506B1328051ED400229278 /* SafeSleepModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SafeSleepModel.h; sourceTree = "<group>"; };
		D0506B1428051ED400229278 /* SafeSleepModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SafeSleepModel.m; sourceTree = "<group>"; };
		D0506B1628054ECD00229278 /* SafeHelperCollectionView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SafeHelperCollectionView.h; sourceTree = "<group>"; };
		D0506B1728054ECD00229278 /* SafeHelperCollectionView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SafeHelperCollectionView.m; sourceTree = "<group>"; };
		D0506B192805500E00229278 /* SafeHelperCollectionViewCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SafeHelperCollectionViewCell.h; sourceTree = "<group>"; };
		D0506B1A2805500E00229278 /* SafeHelperCollectionViewCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SafeHelperCollectionViewCell.m; sourceTree = "<group>"; };
		D053BEE7280F9E310028CCFC /* CloseAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = CloseAlertView.h; sourceTree = "<group>"; };
		D053BEE8280F9E310028CCFC /* CloseAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = CloseAlertView.m; sourceTree = "<group>"; };
		D070509828071BAF006D72E1 /* DSNetworkTool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSNetworkTool.h; sourceTree = "<group>"; };
		D070509928071BAF006D72E1 /* DSNetworkTool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DSNetworkTool.m; sourceTree = "<group>"; };
		D07A4B25280E9BAA00BA0EC0 /* AccountController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AccountController.h; sourceTree = "<group>"; };
		D07A4B26280E9BAA00BA0EC0 /* AccountController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AccountController.m; sourceTree = "<group>"; };
		D07A4B28280EA6B600BA0EC0 /* UserInfoTableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserInfoTableView.h; sourceTree = "<group>"; };
		D07A4B29280EA6B600BA0EC0 /* UserInfoTableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserInfoTableView.m; sourceTree = "<group>"; };
		D07A4B2B280EA73B00BA0EC0 /* UserInfoView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserInfoView.h; sourceTree = "<group>"; };
		D07A4B2C280EA73B00BA0EC0 /* UserInfoView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserInfoView.m; sourceTree = "<group>"; };
		D07A657B28158A1900C15AF6 /* DsWebController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DsWebController.h; sourceTree = "<group>"; };
		D07A657C28158A1900C15AF6 /* DsWebController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DsWebController.m; sourceTree = "<group>"; };
		D07A65812815911D00C15AF6 /* DsMaskView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DsMaskView.h; sourceTree = "<group>"; };
		D07A65822815911D00C15AF6 /* DsMaskView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DsMaskView.m; sourceTree = "<group>"; };
		D07DAC8E2810546A0067A1BF /* DSImagePickerController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = DSImagePickerController.h; sourceTree = "<group>"; };
		D07DAC8F2810546A0067A1BF /* DSImagePickerController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = DSImagePickerController.m; sourceTree = "<group>"; };
		D07DAC922810557D0067A1BF /* CGGeometry+RSKImageCropper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "CGGeometry+RSKImageCropper.m"; sourceTree = "<group>"; };
		D07DAC932810557D0067A1BF /* RSKInternalUtility.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSKInternalUtility.m; sourceTree = "<group>"; };
		D07DAC942810557D0067A1BF /* RSKTouchView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSKTouchView.m; sourceTree = "<group>"; };
		D07DAC952810557D0067A1BF /* RSKImageCropViewController+Protected.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "RSKImageCropViewController+Protected.h"; sourceTree = "<group>"; };
		D07DAC962810557D0067A1BF /* UIApplication+RSKImageCropper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIApplication+RSKImageCropper.m"; sourceTree = "<group>"; };
		D07DAC972810557D0067A1BF /* RSKImageCropViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSKImageCropViewController.m; sourceTree = "<group>"; };
		D07DAC982810557D0067A1BF /* UIImage+RSKImageCropper.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImage+RSKImageCropper.m"; sourceTree = "<group>"; };
		D07DAC992810557D0067A1BF /* RSKImageScrollView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSKImageScrollView.h; sourceTree = "<group>"; };
		D07DAC9A2810557D0067A1BF /* RSKTouchView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSKTouchView.h; sourceTree = "<group>"; };
		D07DAC9B2810557D0067A1BF /* RSKInternalUtility.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSKInternalUtility.h; sourceTree = "<group>"; };
		D07DAC9C2810557D0067A1BF /* CGGeometry+RSKImageCropper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "CGGeometry+RSKImageCropper.h"; sourceTree = "<group>"; };
		D07DAC9D2810557D0067A1BF /* RSKImageCropperStrings.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; path = RSKImageCropperStrings.bundle; sourceTree = "<group>"; };
		D07DAC9E2810557D0067A1BF /* UIImage+RSKImageCropper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+RSKImageCropper.h"; sourceTree = "<group>"; };
		D07DAC9F2810557D0067A1BF /* RSKImageCropViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSKImageCropViewController.h; sourceTree = "<group>"; };
		D07DACA02810557D0067A1BF /* RSKImageCropper.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = RSKImageCropper.modulemap; sourceTree = "<group>"; };
		D07DACA12810557D0067A1BF /* UIApplication+RSKImageCropper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIApplication+RSKImageCropper.h"; sourceTree = "<group>"; };
		D07DACA22810557D0067A1BF /* RSKImageCropper.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RSKImageCropper.h; sourceTree = "<group>"; };
		D07DACA32810557D0067A1BF /* RSKImageScrollView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RSKImageScrollView.m; sourceTree = "<group>"; };
		D07F9D0627F45CB20036372F /* DKNightVersion.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = DKNightVersion.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		D07F9DE827F4683B0036372F /* DKColorTable.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; path = DKColorTable.txt; sourceTree = "<group>"; };
		D0878F46280BD18F005F1B7F /* LoginView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginView.h; sourceTree = "<group>"; };
		D0878F47280BD18F005F1B7F /* LoginView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginView.m; sourceTree = "<group>"; };
		D0878F4A280BEFF9005F1B7F /* UILabel+YBAttributeTextTapAction.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UILabel+YBAttributeTextTapAction.h"; sourceTree = "<group>"; };
		D0878F4B280BEFF9005F1B7F /* UILabel+YBAttributeTextTapAction.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UILabel+YBAttributeTextTapAction.m"; sourceTree = "<group>"; };
		D0878F4D280C087E005F1B7F /* LoginController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginController.h; sourceTree = "<group>"; };
		D0878F4E280C087E005F1B7F /* LoginController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginController.m; sourceTree = "<group>"; };
		D091BBB52808F9DA00487A50 /* BreathTextView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BreathTextView.h; sourceTree = "<group>"; };
		D091BBB62808F9DA00487A50 /* BreathTextView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BreathTextView.m; sourceTree = "<group>"; };
		D091BBB82809024100487A50 /* DreamSleepBeta.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = DreamSleepBeta.entitlements; sourceTree = "<group>"; };
		D091BBB92809079600487A50 /* NSString+Extras.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSString+Extras.h"; sourceTree = "<group>"; };
		D091BBBA2809079600487A50 /* NSString+Extras.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSString+Extras.m"; sourceTree = "<group>"; };
		D0930F102801124E006B497A /* BaseNaviController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BaseNaviController.h; sourceTree = "<group>"; };
		D0930F112801124E006B497A /* BaseNaviController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BaseNaviController.m; sourceTree = "<group>"; };
		D0930F152801874B006B497A /* UIViewController+Swizzling.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+Swizzling.m"; sourceTree = "<group>"; };
		D0930F162801874B006B497A /* UINavigationController+Pop.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UINavigationController+Pop.h"; sourceTree = "<group>"; };
		D0930F172801874B006B497A /* UIViewController+Swizzling.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+Swizzling.h"; sourceTree = "<group>"; };
		D0930F182801874B006B497A /* UINavigationController+Pop.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UINavigationController+Pop.m"; sourceTree = "<group>"; };
		D0930F192801874B006B497A /* NaviBarHandlerProtocol.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = NaviBarHandlerProtocol.h; sourceTree = "<group>"; };
		D09BF32F280E570D00E5F06C /* UserModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserModel.h; sourceTree = "<group>"; };
		D09BF330280E570D00E5F06C /* UserModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserModel.m; sourceTree = "<group>"; };
		D09BF335280E605900E5F06C /* NSObject+Extras.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSObject+Extras.h"; sourceTree = "<group>"; };
		D09BF336280E605900E5F06C /* NSObject+Extras.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSObject+Extras.m"; sourceTree = "<group>"; };
		D09BF338280E94E300E5F06C /* LoginUtils.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LoginUtils.h; sourceTree = "<group>"; };
		D09BF339280E94E300E5F06C /* LoginUtils.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LoginUtils.m; sourceTree = "<group>"; };
		D09D0E94280D3FE9008DEDAB /* NSDate+Extras.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "NSDate+Extras.h"; sourceTree = "<group>"; };
		D09D0E95280D3FE9008DEDAB /* NSDate+Extras.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "NSDate+Extras.m"; sourceTree = "<group>"; };
		D09D0E98280D507F008DEDAB /* ProfileAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ProfileAlertView.h; sourceTree = "<group>"; };
		D09D0E99280D507F008DEDAB /* ProfileAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ProfileAlertView.m; sourceTree = "<group>"; };
		D09D0E9B280D73B6008DEDAB /* InviteController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = InviteController.h; sourceTree = "<group>"; };
		D09D0E9C280D73B6008DEDAB /* InviteController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = InviteController.m; sourceTree = "<group>"; };
		D0B5ECA127F2D9DE003EDFE3 /* DreamSleepDev.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DreamSleepDev.app; sourceTree = BUILT_PRODUCTS_DIR; };
		D0B5ECA427F2D9DE003EDFE3 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
		D0B5ECA527F2D9DE003EDFE3 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
		D0B5ECAE27F2D9DE003EDFE3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
		D0B5ECB027F2D9E0003EDFE3 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = "<group>"; };
		D0B5ECB327F2D9E0003EDFE3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
		D0B5ECB527F2D9E0003EDFE3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		D0B5ECB627F2D9E0003EDFE3 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
		D0B5ECC027F2E217003EDFE3 /* Debug.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Debug.xcconfig; sourceTree = "<group>"; };
		D0B5ECC227F2E25F003EDFE3 /* Beta.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Beta.xcconfig; sourceTree = "<group>"; };
		D0B5ECC427F2E27B003EDFE3 /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = Release.xcconfig; sourceTree = "<group>"; };
		D0B5ECC627F2E97A003EDFE3 /* MacroFuncUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = MacroFuncUtil.h; sourceTree = "<group>"; };
		D0B5ECC727F2E97A003EDFE3 /* MacroFuncUtil.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = MacroFuncUtil.m; sourceTree = "<group>"; };
		D0B5ECCC27F2EB8B003EDFE3 /* PrefixHeader.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrefixHeader.pch; sourceTree = "<group>"; };
		D0B5ECD327F2F0B2003EDFE3 /* AdaptationUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AdaptationUtil.h; sourceTree = "<group>"; };
		D0B5ECD427F2F0B2003EDFE3 /* AdaptationUtil.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AdaptationUtil.m; sourceTree = "<group>"; };
		D0B5ECD627F2F1B0003EDFE3 /* ServerAPIUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ServerAPIUtil.h; sourceTree = "<group>"; };
		D0B5ECD727F2F1B0003EDFE3 /* ServerAPIUtil.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ServerAPIUtil.m; sourceTree = "<group>"; };
		D0BB9AA2281626F200DB209E /* ExceptionDefaultView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ExceptionDefaultView.h; sourceTree = "<group>"; };
		D0BB9AA3281626F200DB209E /* ExceptionDefaultView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ExceptionDefaultView.m; sourceTree = "<group>"; };
		D0BB9AA528164DFB00DB209E /* NickNameController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = NickNameController.h; sourceTree = "<group>"; };
		D0BB9AA628164DFB00DB209E /* NickNameController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = NickNameController.m; sourceTree = "<group>"; };
		D0BE32E42814D42B006539BE /* HomeRequestModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = HomeRequestModel.h; sourceTree = "<group>"; };
		D0BE32E52814D42B006539BE /* HomeRequestModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = HomeRequestModel.m; sourceTree = "<group>"; };
		D0BE32E7281551EB006539BE /* ShareAlertView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ShareAlertView.h; sourceTree = "<group>"; };
		D0BE32E8281551EB006539BE /* ShareAlertView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ShareAlertView.m; sourceTree = "<group>"; };
		D0C09ED328007D9100709D4C /* relax_normal_lottie.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = relax_normal_lottie.json; sourceTree = "<group>"; };
		D0C09ED428007D9100709D4C /* 478_lottie.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = 478_lottie.json; sourceTree = "<group>"; };
		D0C09ED528007D9100709D4C /* 478normal_lottie.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = 478normal_lottie.json; sourceTree = "<group>"; };
		D0C09ED628007D9100709D4C /* relax_lottie.json */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.json; path = relax_lottie.json; sourceTree = "<group>"; };
		D0C09EDE28007E5F00709D4C /* BreatheController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BreatheController.h; sourceTree = "<group>"; };
		D0C09EDF28007E5F00709D4C /* BreatheController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BreatheController.m; sourceTree = "<group>"; };
		D0C50B2E27FD1BEB00DC68F0 /* PrivacyView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrivacyView.h; sourceTree = "<group>"; };
		D0C50B2F27FD1BEB00DC68F0 /* PrivacyView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PrivacyView.m; sourceTree = "<group>"; };
		D0C50B3A27FD2EFD00DC68F0 /* PrivacyViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = PrivacyViewController.h; sourceTree = "<group>"; };
		D0C50B3B27FD2EFD00DC68F0 /* PrivacyViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = PrivacyViewController.m; sourceTree = "<group>"; };
		D0C50B3D27FD381000DC68F0 /* UIView+Extras.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIView+Extras.h"; sourceTree = "<group>"; };
		D0C50B3E27FD381000DC68F0 /* UIView+Extras.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIView+Extras.m"; sourceTree = "<group>"; };
		D0C50B4027FD39C800DC68F0 /* UIViewController+FullScreenModal.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UIViewController+FullScreenModal.h"; sourceTree = "<group>"; };
		D0C50B4127FD39C800DC68F0 /* UIViewController+FullScreenModal.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+FullScreenModal.m"; sourceTree = "<group>"; };
		D0C50B4427FD66FB00DC68F0 /* DSConstUtil.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSConstUtil.h; sourceTree = "<group>"; };
		D0C50B4527FD66FB00DC68F0 /* DSConstUtil.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSConstUtil.m; sourceTree = "<group>"; };
		D0C50B4D27FD832300DC68F0 /* LeadView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LeadView.h; sourceTree = "<group>"; };
		D0C50B4E27FD832300DC68F0 /* LeadView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = LeadView.m; sourceTree = "<group>"; };
		D0CFD3CC27FB3B910002982B /* launcher@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "launcher@2x.png"; sourceTree = "<group>"; };
		D0CFD3CD27FB3B910002982B /* launcher@3x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "launcher@3x.png"; sourceTree = "<group>"; };
		D0CFD3CE27FB3B920002982B /* launcher.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = launcher.png; sourceTree = "<group>"; };
		D0D3826528124E8A005BB219 /* FeedbackController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FeedbackController.h; sourceTree = "<group>"; };
		D0D3826628124E8A005BB219 /* FeedbackController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FeedbackController.m; sourceTree = "<group>"; };
		D0D7480328118D0B00036379 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/Main.strings"; sourceTree = "<group>"; };
		D0D7480428118D0B00036379 /* zh-Hans */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = "zh-Hans"; path = "zh-Hans.lproj/LaunchScreen.strings"; sourceTree = "<group>"; };
		D0DF90AB28142F1300FC0F64 /* DreamSleepDebug.entitlements */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.entitlements; path = DreamSleepDebug.entitlements; sourceTree = "<group>"; };
		D0DF90AC2814390000FC0F64 /* BannerModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = BannerModel.h; sourceTree = "<group>"; };
		D0DF90AD2814390000FC0F64 /* BannerModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = BannerModel.m; sourceTree = "<group>"; };
		D0E65FF42807A654006562F2 /* NSArray+HYBUnicodeReadable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSArray+HYBUnicodeReadable.m"; sourceTree = "<group>"; };
		D0E65FF52807A654006562F2 /* NSDictionary+HYBUnicodeReadable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSDictionary+HYBUnicodeReadable.m"; sourceTree = "<group>"; };
		D0E65FF62807A654006562F2 /* NSSet+HYBUnicodeReadable.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSSet+HYBUnicodeReadable.m"; sourceTree = "<group>"; };
		D0E65FF72807A654006562F2 /* NSArray+HYBUnicodeReadable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSArray+HYBUnicodeReadable.h"; sourceTree = "<group>"; };
		D0E65FF82807A654006562F2 /* NSDictionary+HYBUnicodeReadable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSDictionary+HYBUnicodeReadable.h"; sourceTree = "<group>"; };
		D0E65FF92807A654006562F2 /* NSSet+HYBUnicodeReadable.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSSet+HYBUnicodeReadable.h"; sourceTree = "<group>"; };
		D0E65FFD2807AC5E006562F2 /* DSProgressHUD.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DSProgressHUD.h; sourceTree = "<group>"; };
		D0E65FFE2807AC5E006562F2 /* DSProgressHUD.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DSProgressHUD.m; sourceTree = "<group>"; };
		D0E660002807B5AE006562F2 /* SafeSleepRequestModel.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = SafeSleepRequestModel.m; sourceTree = "<group>"; };
		D0E660012807B5AE006562F2 /* SafeSleepRequestModel.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = SafeSleepRequestModel.h; sourceTree = "<group>"; };
		D0E660032807D02C006562F2 /* UserRequestModel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserRequestModel.h; sourceTree = "<group>"; };
		D0E660042807D02C006562F2 /* UserRequestModel.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserRequestModel.m; sourceTree = "<group>"; };
		D0E6600628080F97006562F2 /* SystemSetController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SystemSetController.h; sourceTree = "<group>"; };
		D0E6600728080F97006562F2 /* SystemSetController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SystemSetController.m; sourceTree = "<group>"; };
		D0F808F32803D4E70097899F /* Track.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Track.m; sourceTree = "<group>"; };
		D0F808F42803D4E70097899F /* Track.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Track.h; sourceTree = "<group>"; };
		D0F808FC280421C20097899F /* ThreeMinuteController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ThreeMinuteController.h; sourceTree = "<group>"; };
		D0F808FD280421C20097899F /* ThreeMinuteController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ThreeMinuteController.m; sourceTree = "<group>"; };
		D0F8090228042A0B0097899F /* SafeSleepCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SafeSleepCell.h; sourceTree = "<group>"; };
		D0F8090328042A0B0097899F /* SafeSleepCell.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SafeSleepCell.m; sourceTree = "<group>"; };
		D0F80905280431100097899F /* UILabel+Extras.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "UILabel+Extras.h"; sourceTree = "<group>"; };
		D0F80906280431100097899F /* UILabel+Extras.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = "UILabel+Extras.m"; sourceTree = "<group>"; };
		D0F82284280C44D10039F586 /* SetTableView.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SetTableView.h; sourceTree = "<group>"; };
		D0F82285280C44D10039F586 /* SetTableView.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = SetTableView.m; sourceTree = "<group>"; };
		F02C34A5649294F60932630C /* Pods-DreamSleep.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DreamSleep.release.xcconfig"; path = "Target Support Files/Pods-DreamSleep/Pods-DreamSleep.release.xcconfig"; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		D0B5EC9E27F2D9DE003EDFE3 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D046FE1528100342000295AC /* libSocialQQ.a in Frameworks */,
				D046FE1028100342000295AC /* UMCommon.framework in Frameworks */,
				D046FE1428100342000295AC /* libWeChatSDK.a in Frameworks */,
				D046FE1228100342000295AC /* libSocialOfficialWeChat.a in Frameworks */,
				D046FE1728100342000295AC /* TencentOpenAPI.framework in Frameworks */,
				39CC172FB610DA5F29120B56 /* Pods_DreamSleep.framework in Frameworks */,
				D046FE0F28100342000295AC /* UMShare.framework in Frameworks */,
				D046FE1128100342000295AC /* libSocialWeChat.a in Frameworks */,
				D046FE1828100342000295AC /* UMDevice.framework in Frameworks */,
				D046FE0E28100342000295AC /* UShareUI.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		CE276FBF2ABDD975AA8B5377 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				D07F9D0627F45CB20036372F /* DKNightVersion.framework */,
				2D11699D88A7A7BDB6168B71 /* Pods_DreamSleep.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		D01814CA27FFCBAF00583D4E /* CWCarousel */ = {
			isa = PBXGroup;
			children = (
				D01814CF27FFCBAF00583D4E /* CWCarousel.h */,
				D01814CB27FFCBAF00583D4E /* CWCarousel.m */,
				D01814D027FFCBAF00583D4E /* CWFlowLayout.h */,
				D01814CD27FFCBAF00583D4E /* CWFlowLayout.m */,
				D01814E7280020F900583D4E /* CWPageControl.h */,
				D01814E6280020F800583D4E /* CWPageControl.m */,
				D01814CC27FFCBAF00583D4E /* CWCarouselHeader.h */,
				D01814CE27FFCBAF00583D4E /* CWCarouselProtocol.h */,
			);
			path = CWCarousel;
			sourceTree = "<group>";
		};
		D01814D927FFD91100583D4E /* DataSource */ = {
			isa = PBXGroup;
			children = (
				D01814DA27FFD92200583D4E /* DSDataSource.h */,
				D01814DB27FFD92200583D4E /* DSDataSource.m */,
			);
			path = DataSource;
			sourceTree = "<group>";
		};
		D01C9D6828168BFC00163567 /* WSDaePickerView */ = {
			isa = PBXGroup;
			children = (
				D01C9D6928168BFC00163567 /* NSDate+Extension.h */,
				D01C9D6A28168BFC00163567 /* WSDatePickerView.h */,
				D01C9D6B28168BFC00163567 /* WSDatePickerView.xib */,
				D01C9D6C28168BFC00163567 /* WSDatePickerView.m */,
				D01C9D6D28168BFC00163567 /* NSDate+Extension.m */,
			);
			path = WSDaePickerView;
			sourceTree = "<group>";
		};
		D027EE2327FB3C99004BBA61 /* Network */ = {
			isa = PBXGroup;
			children = (
				D027EE2727FB51D0004BBA61 /* DSGifHeader.h */,
				D027EE2827FB51D0004BBA61 /* DSGifHeader.m */,
				D027EE2427FB3DC0004BBA61 /* NetLoadingStateView.h */,
				D027EE2527FB3DC0004BBA61 /* NetLoadingStateView.m */,
				D070509828071BAF006D72E1 /* DSNetworkTool.h */,
				D070509928071BAF006D72E1 /* DSNetworkTool.m */,
				D0E65FFD2807AC5E006562F2 /* DSProgressHUD.h */,
				D0E65FFE2807AC5E006562F2 /* DSProgressHUD.m */,
				D00291872816CD4500C0573B /* DsCacheUtils.h */,
				D00291882816CD4500C0573B /* DsCacheUtils.m */,
			);
			path = Network;
			sourceTree = "<group>";
		};
		D027EE2A27FB5285004BBA61 /* Category */ = {
			isa = PBXGroup;
			children = (
				D0930F142801874B006B497A /* DSNavigationTools */,
				D0C50B3D27FD381000DC68F0 /* UIView+Extras.h */,
				D0C50B3E27FD381000DC68F0 /* UIView+Extras.m */,
				D027EE2E27FB52DA004BBA61 /* UIImage+Extras.h */,
				D027EE2F27FB52DA004BBA61 /* UIImage+Extras.m */,
				D0C50B4027FD39C800DC68F0 /* UIViewController+FullScreenModal.h */,
				D0C50B4127FD39C800DC68F0 /* UIViewController+FullScreenModal.m */,
				D0F80905280431100097899F /* UILabel+Extras.h */,
				D0F80906280431100097899F /* UILabel+Extras.m */,
				D0506B0A280503A800229278 /* UIButton+Extras.h */,
				D0506B0B280503A800229278 /* UIButton+Extras.m */,
				D091BBB92809079600487A50 /* NSString+Extras.h */,
				D091BBBA2809079600487A50 /* NSString+Extras.m */,
				D09D0E94280D3FE9008DEDAB /* NSDate+Extras.h */,
				D09D0E95280D3FE9008DEDAB /* NSDate+Extras.m */,
				D09BF335280E605900E5F06C /* NSObject+Extras.h */,
				D09BF336280E605900E5F06C /* NSObject+Extras.m */,
			);
			path = Category;
			sourceTree = "<group>";
		};
		D04567A827F6D018009F0A82 /* Resource */ = {
			isa = PBXGroup;
			children = (
				D020CE1E280D915D00E7E82F /* invite_friend.webp */,
				D0C09ED428007D9100709D4C /* 478_lottie.json */,
				D0C09ED528007D9100709D4C /* 478normal_lottie.json */,
				D0C09ED628007D9100709D4C /* relax_lottie.json */,
				D0C09ED328007D9100709D4C /* relax_normal_lottie.json */,
				D027EE3127FB5464004BBA61 /* pull_down.gif */,
				D0B5ECB027F2D9E0003EDFE3 /* Assets.xcassets */,
				D07F9DE827F4683B0036372F /* DKColorTable.txt */,
			);
			path = Resource;
			sourceTree = "<group>";
		};
		D04567A927F6D038009F0A82 /* Launcher */ = {
			isa = PBXGroup;
			children = (
				D0CFD3CE27FB3B920002982B /* launcher.png */,
				D0CFD3CC27FB3B910002982B /* launcher@2x.png */,
				D0CFD3CD27FB3B910002982B /* launcher@3x.png */,
				D0B5ECB227F2D9E0003EDFE3 /* LaunchScreen.storyboard */,
				D0C50B4D27FD832300DC68F0 /* LeadView.h */,
				D0C50B4E27FD832300DC68F0 /* LeadView.m */,
				D04B3D9727F6D4D90022F8DF /* LeadingController.h */,
				D04B3D9827F6D4D90022F8DF /* LeadingController.m */,
			);
			path = Launcher;
			sourceTree = "<group>";
		};
		D04567AA27F6D067009F0A82 /* Main */ = {
			isa = PBXGroup;
			children = (
				D0B5ECB627F2D9E0003EDFE3 /* main.m */,
				D0B5ECAD27F2D9DE003EDFE3 /* Main.storyboard */,
				D0B5ECA427F2D9DE003EDFE3 /* AppDelegate.h */,
				D0B5ECA527F2D9DE003EDFE3 /* AppDelegate.m */,
				D04B3DA927F6EEB40022F8DF /* DSTabBarController.h */,
				D04B3DAA27F6EEB40022F8DF /* DSTabBarController.m */,
				D0930F102801124E006B497A /* BaseNaviController.h */,
				D0930F112801124E006B497A /* BaseNaviController.m */,
			);
			path = Main;
			sourceTree = "<group>";
		};
		D04567AB27F6D0A5009F0A82 /* HomeModule */ = {
			isa = PBXGroup;
			children = (
				D0F808F72804204B0097899F /* Home */,
				D0F808FB280421160097899F /* FallAsleep */,
				D0F808F628041FB60097899F /* BreathingMethod */,
			);
			path = HomeModule;
			sourceTree = "<group>";
		};
		D04567AC27F6D0BA009F0A82 /* AISleepCoach */ = {
			isa = PBXGroup;
			children = (
				D04B3DB427F6F7430022F8DF /* AISleepCoach.storyboard */,
				D04B3DB927F6F7940022F8DF /* AISleepCoachController.h */,
				D04B3DBA27F6F7940022F8DF /* AISleepCoachController.m */,
			);
			path = AISleepCoach;
			sourceTree = "<group>";
		};
		D04567AD27F6D0F4009F0A82 /* Profile */ = {
			isa = PBXGroup;
			children = (
				D07A4B2E280EC1F100BA0EC0 /* Me */,
				D07A4B2F280EC21B00BA0EC0 /* Account */,
				D0CE3D80280A532D00D8B02D /* UserLogin */,
				D0D3826428124E34005BB219 /* Feedback */,
				D09D0E97280D4EEA008DEDAB /* SystemSet */,
				D0D382682812660C005BB219 /* InviteFriend */,
			);
			path = Profile;
			sourceTree = "<group>";
		};
		D046FDF528100342000295AC /* UMSocial_6.10.4 */ = {
			isa = PBXGroup;
			children = (
				D046FDF928100342000295AC /* UMShare.framework */,
				D046FE0C28100342000295AC /* UMDevice.framework */,
				D046FDFA28100342000295AC /* UMCommon.framework */,
				D046FDF628100342000295AC /* UMSocialUI */,
				D046FDFB28100342000295AC /* SocialLibraries */,
			);
			path = UMSocial_6.10.4;
			sourceTree = "<group>";
		};
		D046FDF628100342000295AC /* UMSocialUI */ = {
			isa = PBXGroup;
			children = (
				D046FDF728100342000295AC /* UMSocialSDKResources.bundle */,
				D046FDF828100342000295AC /* UShareUI.framework */,
			);
			path = UMSocialUI;
			sourceTree = "<group>";
		};
		D046FDFB28100342000295AC /* SocialLibraries */ = {
			isa = PBXGroup;
			children = (
				D046FDFC28100342000295AC /* WeChat */,
				D046FE0628100342000295AC /* QQ */,
			);
			path = SocialLibraries;
			sourceTree = "<group>";
		};
		D046FDFC28100342000295AC /* WeChat */ = {
			isa = PBXGroup;
			children = (
				D046FDFD28100342000295AC /* libSocialWeChat.a */,
				D046FDFE28100342000295AC /* UMSocialWechatHandler.h */,
				D046FDFF28100342000295AC /* WechatSDK */,
			);
			path = WeChat;
			sourceTree = "<group>";
		};
		D046FDFF28100342000295AC /* WechatSDK */ = {
			isa = PBXGroup;
			children = (
				D046FE0028100342000295AC /* libSocialOfficialWeChat.a */,
				D046FE0128100342000295AC /* WXApi.h */,
				D046FE0228100342000295AC /* WXApiObject.h */,
				D046FE0328100342000295AC /* README.txt */,
				D046FE0428100342000295AC /* WechatAuthSDK.h */,
				D046FE0528100342000295AC /* libWeChatSDK.a */,
			);
			path = WechatSDK;
			sourceTree = "<group>";
		};
		D046FE0628100342000295AC /* QQ */ = {
			isa = PBXGroup;
			children = (
				D046FE0728100342000295AC /* UMSocialQQHandler.h */,
				D046FE0828100342000295AC /* libSocialQQ.a */,
				D046FE0928100342000295AC /* QQSDK */,
			);
			path = QQ;
			sourceTree = "<group>";
		};
		D046FE0928100342000295AC /* QQSDK */ = {
			isa = PBXGroup;
			children = (
				D046FE0A28100342000295AC /* TencentOpenApi_IOS_Bundle.bundle */,
				D046FE0B28100342000295AC /* TencentOpenAPI.framework */,
			);
			path = QQSDK;
			sourceTree = "<group>";
		};
		D07A4B2E280EC1F100BA0EC0 /* Me */ = {
			isa = PBXGroup;
			children = (
				D09D0E98280D507F008DEDAB /* ProfileAlertView.h */,
				D09D0E99280D507F008DEDAB /* ProfileAlertView.m */,
				D04B3DBC27F6F8090022F8DF /* Profile.storyboard */,
				D04B3DBE27F6F82D0022F8DF /* ProfileController.h */,
				D04B3DBF27F6F82D0022F8DF /* ProfileController.m */,
			);
			path = Me;
			sourceTree = "<group>";
		};
		D07A4B2F280EC21B00BA0EC0 /* Account */ = {
			isa = PBXGroup;
			children = (
				D07A4B25280E9BAA00BA0EC0 /* AccountController.h */,
				D07A4B26280E9BAA00BA0EC0 /* AccountController.m */,
				D07DAC8E2810546A0067A1BF /* DSImagePickerController.h */,
				D07DAC8F2810546A0067A1BF /* DSImagePickerController.m */,
				D0BB9AA528164DFB00DB209E /* NickNameController.h */,
				D0BB9AA628164DFB00DB209E /* NickNameController.m */,
				D07A4B2B280EA73B00BA0EC0 /* UserInfoView.h */,
				D07A4B2C280EA73B00BA0EC0 /* UserInfoView.m */,
				D07A4B28280EA6B600BA0EC0 /* UserInfoTableView.h */,
				D07A4B29280EA6B600BA0EC0 /* UserInfoTableView.m */,
				D053BEE7280F9E310028CCFC /* CloseAlertView.h */,
				D053BEE8280F9E310028CCFC /* CloseAlertView.m */,
				D01C9D6528167F9D00163567 /* InfoModifyAlertView.h */,
				D01C9D6628167F9D00163567 /* InfoModifyAlertView.m */,
			);
			path = Account;
			sourceTree = "<group>";
		};
		D07A657A2815897A00C15AF6 /* H5 */ = {
			isa = PBXGroup;
			children = (
				D07A65812815911D00C15AF6 /* DsMaskView.h */,
				D07A65822815911D00C15AF6 /* DsMaskView.m */,
				D0BB9AA2281626F200DB209E /* ExceptionDefaultView.h */,
				D0BB9AA3281626F200DB209E /* ExceptionDefaultView.m */,
				D07A657B28158A1900C15AF6 /* DsWebController.h */,
				D07A657C28158A1900C15AF6 /* DsWebController.m */,
			);
			path = H5;
			sourceTree = "<group>";
		};
		D07DAC912810557D0067A1BF /* RSKImageCropper */ = {
			isa = PBXGroup;
			children = (
				D07DAC922810557D0067A1BF /* CGGeometry+RSKImageCropper.m */,
				D07DAC932810557D0067A1BF /* RSKInternalUtility.m */,
				D07DAC942810557D0067A1BF /* RSKTouchView.m */,
				D07DAC952810557D0067A1BF /* RSKImageCropViewController+Protected.h */,
				D07DAC962810557D0067A1BF /* UIApplication+RSKImageCropper.m */,
				D07DAC972810557D0067A1BF /* RSKImageCropViewController.m */,
				D07DAC982810557D0067A1BF /* UIImage+RSKImageCropper.m */,
				D07DAC992810557D0067A1BF /* RSKImageScrollView.h */,
				D07DAC9A2810557D0067A1BF /* RSKTouchView.h */,
				D07DAC9B2810557D0067A1BF /* RSKInternalUtility.h */,
				D07DAC9C2810557D0067A1BF /* CGGeometry+RSKImageCropper.h */,
				D07DAC9D2810557D0067A1BF /* RSKImageCropperStrings.bundle */,
				D07DAC9E2810557D0067A1BF /* UIImage+RSKImageCropper.h */,
				D07DAC9F2810557D0067A1BF /* RSKImageCropViewController.h */,
				D07DACA02810557D0067A1BF /* RSKImageCropper.modulemap */,
				D07DACA12810557D0067A1BF /* UIApplication+RSKImageCropper.h */,
				D07DACA22810557D0067A1BF /* RSKImageCropper.h */,
				D07DACA32810557D0067A1BF /* RSKImageScrollView.m */,
			);
			path = RSKImageCropper;
			sourceTree = "<group>";
		};
		D0878F49280BEFF9005F1B7F /* YBAttributeTextTapAction */ = {
			isa = PBXGroup;
			children = (
				D0878F4A280BEFF9005F1B7F /* UILabel+YBAttributeTextTapAction.h */,
				D0878F4B280BEFF9005F1B7F /* UILabel+YBAttributeTextTapAction.m */,
			);
			path = YBAttributeTextTapAction;
			sourceTree = "<group>";
		};
		D0930F142801874B006B497A /* DSNavigationTools */ = {
			isa = PBXGroup;
			children = (
				D0930F192801874B006B497A /* NaviBarHandlerProtocol.h */,
				D0930F162801874B006B497A /* UINavigationController+Pop.h */,
				D0930F182801874B006B497A /* UINavigationController+Pop.m */,
				D0930F172801874B006B497A /* UIViewController+Swizzling.h */,
				D0930F152801874B006B497A /* UIViewController+Swizzling.m */,
			);
			path = DSNavigationTools;
			sourceTree = "<group>";
		};
		D09D0E97280D4EEA008DEDAB /* SystemSet */ = {
			isa = PBXGroup;
			children = (
				D0F82284280C44D10039F586 /* SetTableView.h */,
				D0F82285280C44D10039F586 /* SetTableView.m */,
				D0E6600628080F97006562F2 /* SystemSetController.h */,
				D0E6600728080F97006562F2 /* SystemSetController.m */,
			);
			path = SystemSet;
			sourceTree = "<group>";
		};
		D0B5EC9827F2D9DE003EDFE3 = {
			isa = PBXGroup;
			children = (
				D0B5ECA327F2D9DE003EDFE3 /* DreamSleep */,
				D0B5ECA227F2D9DE003EDFE3 /* Products */,
				E9799C724D3AE78E7105C4CE /* Pods */,
				CE276FBF2ABDD975AA8B5377 /* Frameworks */,
			);
			sourceTree = "<group>";
		};
		D0B5ECA227F2D9DE003EDFE3 /* Products */ = {
			isa = PBXGroup;
			children = (
				D0B5ECA127F2D9DE003EDFE3 /* DreamSleepDev.app */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		D0B5ECA327F2D9DE003EDFE3 /* DreamSleep */ = {
			isa = PBXGroup;
			children = (
				D091BBB82809024100487A50 /* DreamSleepBeta.entitlements */,
				D0DF90AB28142F1300FC0F64 /* DreamSleepDebug.entitlements */,
				D07A657A2815897A00C15AF6 /* H5 */,
				D04567AA27F6D067009F0A82 /* Main */,
				D04567AB27F6D0A5009F0A82 /* HomeModule */,
				D04567AC27F6D0BA009F0A82 /* AISleepCoach */,
				D04567AD27F6D0F4009F0A82 /* Profile */,
				D04567A927F6D038009F0A82 /* Launcher */,
				D0C50B4327FD3DE800DC68F0 /* PrivacyPolicy */,
				D0B5ECD927F2F410003EDFE3 /* Utils */,
				D027EE2327FB3C99004BBA61 /* Network */,
				D0E9408127FE961300D57495 /* Vendors */,
				D027EE2A27FB5285004BBA61 /* Category */,
				D0B5ECBF27F2E0ED003EDFE3 /* DSConfig */,
				D04567A827F6D018009F0A82 /* Resource */,
			);
			path = DreamSleep;
			sourceTree = "<group>";
		};
		D0B5ECBF27F2E0ED003EDFE3 /* DSConfig */ = {
			isa = PBXGroup;
			children = (
				D0B5ECB527F2D9E0003EDFE3 /* Info.plist */,
				D0B5ECC027F2E217003EDFE3 /* Debug.xcconfig */,
				D0B5ECC227F2E25F003EDFE3 /* Beta.xcconfig */,
				D0B5ECC427F2E27B003EDFE3 /* Release.xcconfig */,
			);
			path = DSConfig;
			sourceTree = "<group>";
		};
		D0B5ECD927F2F410003EDFE3 /* Utils */ = {
			isa = PBXGroup;
			children = (
				D0B5ECCC27F2EB8B003EDFE3 /* PrefixHeader.pch */,
				D0C50B4427FD66FB00DC68F0 /* DSConstUtil.h */,
				D0C50B4527FD66FB00DC68F0 /* DSConstUtil.m */,
				D0B5ECC627F2E97A003EDFE3 /* MacroFuncUtil.h */,
				D0B5ECC727F2E97A003EDFE3 /* MacroFuncUtil.m */,
				D0B5ECD627F2F1B0003EDFE3 /* ServerAPIUtil.h */,
				D0B5ECD727F2F1B0003EDFE3 /* ServerAPIUtil.m */,
				D0B5ECD327F2F0B2003EDFE3 /* AdaptationUtil.h */,
				D0B5ECD427F2F0B2003EDFE3 /* AdaptationUtil.m */,
			);
			path = Utils;
			sourceTree = "<group>";
		};
		D0C50B4327FD3DE800DC68F0 /* PrivacyPolicy */ = {
			isa = PBXGroup;
			children = (
				D0C50B2E27FD1BEB00DC68F0 /* PrivacyView.h */,
				D0C50B2F27FD1BEB00DC68F0 /* PrivacyView.m */,
				D0C50B3A27FD2EFD00DC68F0 /* PrivacyViewController.h */,
				D0C50B3B27FD2EFD00DC68F0 /* PrivacyViewController.m */,
			);
			path = PrivacyPolicy;
			sourceTree = "<group>";
		};
		D0CE3D80280A532D00D8B02D /* UserLogin */ = {
			isa = PBXGroup;
			children = (
				D09BF338280E94E300E5F06C /* LoginUtils.h */,
				D09BF339280E94E300E5F06C /* LoginUtils.m */,
				D0878F46280BD18F005F1B7F /* LoginView.h */,
				D0878F47280BD18F005F1B7F /* LoginView.m */,
				D09BF32F280E570D00E5F06C /* UserModel.h */,
				D09BF330280E570D00E5F06C /* UserModel.m */,
				D0878F4D280C087E005F1B7F /* LoginController.h */,
				D0878F4E280C087E005F1B7F /* LoginController.m */,
				D0E660032807D02C006562F2 /* UserRequestModel.h */,
				D0E660042807D02C006562F2 /* UserRequestModel.m */,
			);
			path = UserLogin;
			sourceTree = "<group>";
		};
		D0D3826428124E34005BB219 /* Feedback */ = {
			isa = PBXGroup;
			children = (
				D0D3826528124E8A005BB219 /* FeedbackController.h */,
				D0D3826628124E8A005BB219 /* FeedbackController.m */,
			);
			path = Feedback;
			sourceTree = "<group>";
		};
		D0D382682812660C005BB219 /* InviteFriend */ = {
			isa = PBXGroup;
			children = (
				D09D0E9B280D73B6008DEDAB /* InviteController.h */,
				D09D0E9C280D73B6008DEDAB /* InviteController.m */,
				D0BE32E7281551EB006539BE /* ShareAlertView.h */,
				D0BE32E8281551EB006539BE /* ShareAlertView.m */,
			);
			path = InviteFriend;
			sourceTree = "<group>";
		};
		D0E65FF32807A654006562F2 /* HYBUnicodeReadable */ = {
			isa = PBXGroup;
			children = (
				D0E65FF92807A654006562F2 /* NSSet+HYBUnicodeReadable.h */,
				D0E65FF62807A654006562F2 /* NSSet+HYBUnicodeReadable.m */,
				D0E65FF72807A654006562F2 /* NSArray+HYBUnicodeReadable.h */,
				D0E65FF42807A654006562F2 /* NSArray+HYBUnicodeReadable.m */,
				D0E65FF82807A654006562F2 /* NSDictionary+HYBUnicodeReadable.h */,
				D0E65FF52807A654006562F2 /* NSDictionary+HYBUnicodeReadable.m */,
			);
			path = HYBUnicodeReadable;
			sourceTree = "<group>";
		};
		D0E9408127FE961300D57495 /* Vendors */ = {
			isa = PBXGroup;
			children = (
				D01814D927FFD91100583D4E /* DataSource */,
				D01814CA27FFCBAF00583D4E /* CWCarousel */,
				D046FDF528100342000295AC /* UMSocial_6.10.4 */,
				D01C9D6828168BFC00163567 /* WSDaePickerView */,
				D07DAC912810557D0067A1BF /* RSKImageCropper */,
				D0E65FF32807A654006562F2 /* HYBUnicodeReadable */,
				D0878F49280BEFF9005F1B7F /* YBAttributeTextTapAction */,
			);
			path = Vendors;
			sourceTree = "<group>";
		};
		D0F808F628041FB60097899F /* BreathingMethod */ = {
			isa = PBXGroup;
			children = (
				D0F808F42803D4E70097899F /* Track.h */,
				D0F808F32803D4E70097899F /* Track.m */,
				D0C09EDE28007E5F00709D4C /* BreatheController.h */,
				D0C09EDF28007E5F00709D4C /* BreatheController.m */,
				D091BBB52808F9DA00487A50 /* BreathTextView.h */,
				D091BBB62808F9DA00487A50 /* BreathTextView.m */,
			);
			path = BreathingMethod;
			sourceTree = "<group>";
		};
		D0F808F72804204B0097899F /* Home */ = {
			isa = PBXGroup;
			children = (
				D0F808FA280420DE0097899F /* Model */,
				D0F808F9280420A30097899F /* View */,
				D0F808F82804208C0097899F /* Controller */,
			);
			path = Home;
			sourceTree = "<group>";
		};
		D0F808F82804208C0097899F /* Controller */ = {
			isa = PBXGroup;
			children = (
				D04B3DB227F6F6070022F8DF /* Home.storyboard */,
				D04B3DC127F6F9390022F8DF /* HomeViewController.h */,
				D04B3DC227F6F9390022F8DF /* HomeViewController.m */,
			);
			path = Controller;
			sourceTree = "<group>";
		};
		D0F808F9280420A30097899F /* View */ = {
			isa = PBXGroup;
			children = (
				D01814D327FFCCFA00583D4E /* HomeTableView.h */,
				D01814D427FFCCFA00583D4E /* HomeTableView.m */,
				D01814E027FFDBB800583D4E /* HomeHeaderView.h */,
				D01814E127FFDBB800583D4E /* HomeHeaderView.m */,
				D01814E928002A8200583D4E /* DsMiddleView.h */,
				D01814EA28002A8200583D4E /* DsMiddleView.m */,
				D0F8090228042A0B0097899F /* SafeSleepCell.h */,
				D0F8090328042A0B0097899F /* SafeSleepCell.m */,
				D0506B1628054ECD00229278 /* SafeHelperCollectionView.h */,
				D0506B1728054ECD00229278 /* SafeHelperCollectionView.m */,
				D0506B192805500E00229278 /* SafeHelperCollectionViewCell.h */,
				D0506B1A2805500E00229278 /* SafeHelperCollectionViewCell.m */,
			);
			path = View;
			sourceTree = "<group>";
		};
		D0F808FA280420DE0097899F /* Model */ = {
			isa = PBXGroup;
			children = (
				D01814EC28002DC700583D4E /* HeaderDataModel.h */,
				D01814ED28002DC700583D4E /* HeaderDataModel.m */,
				D0506B1328051ED400229278 /* SafeSleepModel.h */,
				D0506B1428051ED400229278 /* SafeSleepModel.m */,
				D0E660012807B5AE006562F2 /* SafeSleepRequestModel.h */,
				D0E660002807B5AE006562F2 /* SafeSleepRequestModel.m */,
				D0DF90AC2814390000FC0F64 /* BannerModel.h */,
				D0DF90AD2814390000FC0F64 /* BannerModel.m */,
				D0BE32E42814D42B006539BE /* HomeRequestModel.h */,
				D0BE32E52814D42B006539BE /* HomeRequestModel.m */,
			);
			path = Model;
			sourceTree = "<group>";
		};
		D0F808FB280421160097899F /* FallAsleep */ = {
			isa = PBXGroup;
			children = (
				D0F808FC280421C20097899F /* ThreeMinuteController.h */,
				D0F808FD280421C20097899F /* ThreeMinuteController.m */,
			);
			path = FallAsleep;
			sourceTree = "<group>";
		};
		E9799C724D3AE78E7105C4CE /* Pods */ = {
			isa = PBXGroup;
			children = (
				72E2054B343085AE9898C560 /* Pods-DreamSleep.debug.xcconfig */,
				9B4D4A8254C6E2872914AB4D /* Pods-DreamSleep.beta.xcconfig */,
				F02C34A5649294F60932630C /* Pods-DreamSleep.release.xcconfig */,
			);
			path = Pods;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
		D0B5ECA027F2D9DE003EDFE3 /* DreamSleep */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = D0B5ECBA27F2D9E0003EDFE3 /* Build configuration list for PBXNativeTarget "DreamSleep" */;
			buildPhases = (
				69DB6EF79D8870E84F9DDA37 /* [CP] Check Pods Manifest.lock */,
				D0B5EC9D27F2D9DE003EDFE3 /* Sources */,
				D0B5EC9E27F2D9DE003EDFE3 /* Frameworks */,
				D0B5EC9F27F2D9DE003EDFE3 /* Resources */,
				409ED65E54EAA1876017E6E6 /* [CP] Embed Pods Frameworks */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = DreamSleep;
			productName = DreamSleep;
			productReference = D0B5ECA127F2D9DE003EDFE3 /* DreamSleepDev.app */;
			productType = "com.apple.product-type.application";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		D0B5EC9927F2D9DE003EDFE3 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				BuildIndependentTargetsInParallel = 1;
				LastUpgradeCheck = 1330;
				TargetAttributes = {
					D0B5ECA027F2D9DE003EDFE3 = {
						CreatedOnToolsVersion = 13.3;
					};
				};
			};
			buildConfigurationList = D0B5EC9C27F2D9DE003EDFE3 /* Build configuration list for PBXProject "DreamSleep" */;
			compatibilityVersion = "Xcode 13.0";
			developmentRegion = en;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
				"zh-Hans",
			);
			mainGroup = D0B5EC9827F2D9DE003EDFE3;
			productRefGroup = D0B5ECA227F2D9DE003EDFE3 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				D0B5ECA027F2D9DE003EDFE3 /* DreamSleep */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		D0B5EC9F27F2D9DE003EDFE3 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D0C09ED728007D9100709D4C /* relax_normal_lottie.json in Resources */,
				D01C9D6E28168BFC00163567 /* WSDatePickerView.xib in Resources */,
				D0C09ED828007D9100709D4C /* 478_lottie.json in Resources */,
				D046FE0D28100342000295AC /* UMSocialSDKResources.bundle in Resources */,
				D04B3DB327F6F6070022F8DF /* Home.storyboard in Resources */,
				D027EE3227FB5464004BBA61 /* pull_down.gif in Resources */,
				D020CE1F280D951400E7E82F /* invite_friend.webp in Resources */,
				D07F9DE927F4683B0036372F /* DKColorTable.txt in Resources */,
				D0B5ECB427F2D9E0003EDFE3 /* LaunchScreen.storyboard in Resources */,
				D0B5ECB127F2D9E0003EDFE3 /* Assets.xcassets in Resources */,
				D04B3DBD27F6F8090022F8DF /* Profile.storyboard in Resources */,
				D046FE1628100342000295AC /* TencentOpenApi_IOS_Bundle.bundle in Resources */,
				D046FE1328100342000295AC /* README.txt in Resources */,
				D0C09EDA28007D9100709D4C /* relax_lottie.json in Resources */,
				D0CFD3D027FB3B920002982B /* launcher@3x.png in Resources */,
				D0C09ED928007D9100709D4C /* 478normal_lottie.json in Resources */,
				D0B5ECAF27F2D9DE003EDFE3 /* Main.storyboard in Resources */,
				D0CFD3D127FB3B920002982B /* launcher.png in Resources */,
				D07DACAA2810557D0067A1BF /* RSKImageCropperStrings.bundle in Resources */,
				D0CFD3CF27FB3B920002982B /* launcher@2x.png in Resources */,
				D04B3DB527F6F7430022F8DF /* AISleepCoach.storyboard in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		409ED65E54EAA1876017E6E6 /* [CP] Embed Pods Frameworks */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputFileListPaths = (
				"${PODS_ROOT}/Target Support Files/Pods-DreamSleep/Pods-DreamSleep-frameworks-${CONFIGURATION}-input-files.xcfilelist",
			);
			name = "[CP] Embed Pods Frameworks";
			outputFileListPaths = (
				"${PODS_ROOT}/Target Support Files/Pods-DreamSleep/Pods-DreamSleep-frameworks-${CONFIGURATION}-output-files.xcfilelist",
			);
			runOnlyForDeploymentPostprocessing = 0;
			shellPath = /bin/sh;
			shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-DreamSleep/Pods-DreamSleep-frameworks.sh\"\n";
			showEnvVarsInLog = 0;
		};
		69DB6EF79D8870E84F9DDA37 /* [CP] Check Pods Manifest.lock */ = {
			isa = PBXShellScriptBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			inputFileListPaths = (
			);
			inputPaths = (
				"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
				"${PODS_ROOT}/Manifest.lock",
			);
			name = "[CP] Check Pods Manifest.lock";
			outputFileListPaths = (
			);
			outputPaths = (
				"$(DERIVED_FILE_DIR)/Pods-DreamSleep-checkManifestLockResult.txt",
			);
			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# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
			showEnvVarsInLog = 0;
		};
/* End PBXShellScriptBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		D0B5EC9D27F2D9DE003EDFE3 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D09D0E9D280D73B6008DEDAB /* InviteController.m in Sources */,
				D04B3D9A27F6D4D90022F8DF /* LeadingController.m in Sources */,
				D053BEE9280F9E310028CCFC /* CloseAlertView.m in Sources */,
				D0BB9AA4281626F200DB209E /* ExceptionDefaultView.m in Sources */,
				D0B5ECD827F2F1B0003EDFE3 /* ServerAPIUtil.m in Sources */,
				D0B5ECA627F2D9DE003EDFE3 /* AppDelegate.m in Sources */,
				D07DACA82810557D0067A1BF /* RSKImageCropViewController.m in Sources */,
				D0E65FFB2807A654006562F2 /* NSDictionary+HYBUnicodeReadable.m in Sources */,
				D0E65FFA2807A654006562F2 /* NSArray+HYBUnicodeReadable.m in Sources */,
				D04B3DC027F6F82D0022F8DF /* ProfileController.m in Sources */,
				D01C9D7028168BFC00163567 /* NSDate+Extension.m in Sources */,
				D0C50B3027FD1BEB00DC68F0 /* PrivacyView.m in Sources */,
				D0B5ECD527F2F0B2003EDFE3 /* AdaptationUtil.m in Sources */,
				D0F8090428042A0B0097899F /* SafeSleepCell.m in Sources */,
				D070509A28071BAF006D72E1 /* DSNetworkTool.m in Sources */,
				D01814D127FFCBAF00583D4E /* CWCarousel.m in Sources */,
				D0B5ECB727F2D9E0003EDFE3 /* main.m in Sources */,
				D07DACA62810557D0067A1BF /* RSKTouchView.m in Sources */,
				D09D0E9A280D507F008DEDAB /* ProfileAlertView.m in Sources */,
				D0506B0C280503A800229278 /* UIButton+Extras.m in Sources */,
				D0C50B3F27FD381000DC68F0 /* UIView+Extras.m in Sources */,
				D00291892816CD4500C0573B /* DsCacheUtils.m in Sources */,
				D07DAC902810546A0067A1BF /* DSImagePickerController.m in Sources */,
				D0DF90AE2814390000FC0F64 /* BannerModel.m in Sources */,
				D0E65FFF2807AC5E006562F2 /* DSProgressHUD.m in Sources */,
				D0E660022807B5AE006562F2 /* SafeSleepRequestModel.m in Sources */,
				D0E6600828080F97006562F2 /* SystemSetController.m in Sources */,
				D091BBB72808F9DA00487A50 /* BreathTextView.m in Sources */,
				D04B3DBB27F6F7940022F8DF /* AISleepCoachController.m in Sources */,
				D07A65832815911D00C15AF6 /* DsMaskView.m in Sources */,
				D0BE32E62814D42B006539BE /* HomeRequestModel.m in Sources */,
				D0D3826728124E8A005BB219 /* FeedbackController.m in Sources */,
				D027EE2627FB3DC0004BBA61 /* NetLoadingStateView.m in Sources */,
				D0C09EE028007E5F00709D4C /* BreatheController.m in Sources */,
				D0C50B4627FD66FB00DC68F0 /* DSConstUtil.m in Sources */,
				D01814D227FFCBAF00583D4E /* CWFlowLayout.m in Sources */,
				D07A4B2D280EA73B00BA0EC0 /* UserInfoView.m in Sources */,
				D0878F48280BD18F005F1B7F /* LoginView.m in Sources */,
				D0E660052807D02C006562F2 /* UserRequestModel.m in Sources */,
				D0F82286280C44D10039F586 /* SetTableView.m in Sources */,
				D0930F1B2801874B006B497A /* UINavigationController+Pop.m in Sources */,
				D07DACA52810557D0067A1BF /* RSKInternalUtility.m in Sources */,
				D07DACAB2810557D0067A1BF /* RSKImageScrollView.m in Sources */,
				D0506B1528051ED400229278 /* SafeSleepModel.m in Sources */,
				D07DACA42810557D0067A1BF /* CGGeometry+RSKImageCropper.m in Sources */,
				D01814D527FFCCFA00583D4E /* HomeTableView.m in Sources */,
				D09D0E96280D3FE9008DEDAB /* NSDate+Extras.m in Sources */,
				D0878F4C280BEFF9005F1B7F /* UILabel+YBAttributeTextTapAction.m in Sources */,
				D0F80907280431100097899F /* UILabel+Extras.m in Sources */,
				D04B3DAC27F6EEB50022F8DF /* DSTabBarController.m in Sources */,
				D09BF331280E570D00E5F06C /* UserModel.m in Sources */,
				D0C50B4F27FD832300DC68F0 /* LeadView.m in Sources */,
				D0BE32E9281551EB006539BE /* ShareAlertView.m in Sources */,
				D091BBBB2809079600487A50 /* NSString+Extras.m in Sources */,
				D01814EB28002A8200583D4E /* DsMiddleView.m in Sources */,
				D0C50B4227FD39C800DC68F0 /* UIViewController+FullScreenModal.m in Sources */,
				D09BF337280E605900E5F06C /* NSObject+Extras.m in Sources */,
				D07DACA72810557D0067A1BF /* UIApplication+RSKImageCropper.m in Sources */,
				D027EE2927FB51D0004BBA61 /* DSGifHeader.m in Sources */,
				D01814EE28002DC700583D4E /* HeaderDataModel.m in Sources */,
				D0506B1B2805500E00229278 /* SafeHelperCollectionViewCell.m in Sources */,
				D01814DC27FFD92200583D4E /* DSDataSource.m in Sources */,
				D07DACA92810557D0067A1BF /* UIImage+RSKImageCropper.m in Sources */,
				D0B5ECC827F2E97A003EDFE3 /* MacroFuncUtil.m in Sources */,
				D01814E227FFDBB800583D4E /* HomeHeaderView.m in Sources */,
				D09BF33A280E94E300E5F06C /* LoginUtils.m in Sources */,
				D0F808F52803D4E70097899F /* Track.m in Sources */,
				D0E65FFC2807A654006562F2 /* NSSet+HYBUnicodeReadable.m in Sources */,
				D0C50B3C27FD2EFD00DC68F0 /* PrivacyViewController.m in Sources */,
				D07A4B2A280EA6B600BA0EC0 /* UserInfoTableView.m in Sources */,
				D0930F122801124E006B497A /* BaseNaviController.m in Sources */,
				D0878F4F280C087E005F1B7F /* LoginController.m in Sources */,
				D07A657D28158A1900C15AF6 /* DsWebController.m in Sources */,
				D0930F1A2801874B006B497A /* UIViewController+Swizzling.m in Sources */,
				D01C9D6728167F9D00163567 /* InfoModifyAlertView.m in Sources */,
				D0BB9AA728164DFB00DB209E /* NickNameController.m in Sources */,
				D0F808FE280421C20097899F /* ThreeMinuteController.m in Sources */,
				D07A4B27280E9BAA00BA0EC0 /* AccountController.m in Sources */,
				D01814E8280020F900583D4E /* CWPageControl.m in Sources */,
				D027EE3027FB52DA004BBA61 /* UIImage+Extras.m in Sources */,
				D0506B1828054ECD00229278 /* SafeHelperCollectionView.m in Sources */,
				D04B3DC327F6F9390022F8DF /* HomeViewController.m in Sources */,
				D01C9D6F28168BFC00163567 /* WSDatePickerView.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXVariantGroup section */
		D0B5ECAD27F2D9DE003EDFE3 /* Main.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				D0B5ECAE27F2D9DE003EDFE3 /* Base */,
				D0D7480328118D0B00036379 /* zh-Hans */,
			);
			name = Main.storyboard;
			sourceTree = "<group>";
		};
		D0B5ECB227F2D9E0003EDFE3 /* LaunchScreen.storyboard */ = {
			isa = PBXVariantGroup;
			children = (
				D0B5ECB327F2D9E0003EDFE3 /* Base */,
				D0D7480428118D0B00036379 /* zh-Hans */,
			);
			name = LaunchScreen.storyboard;
			sourceTree = "<group>";
		};
/* End PBXVariantGroup section */

/* Begin XCBuildConfiguration section */
		D0B5ECB827F2D9E0003EDFE3 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = D0B5ECC027F2E217003EDFE3 /* Debug.xcconfig */;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				EXCLUDED_ARCHS = "";
				GCC_C_LANGUAGE_STANDARD = gnu11;
				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 = 11.0;
				MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
				MTL_FAST_MATH = YES;
				ONLY_ACTIVE_ARCH = NO;
				SDKROOT = iphoneos;
			};
			name = Debug;
		};
		D0B5ECB927F2D9E0003EDFE3 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = D0B5ECC427F2E27B003EDFE3 /* Release.xcconfig */;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				EXCLUDED_ARCHS = "";
				GCC_C_LANGUAGE_STANDARD = gnu11;
				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 = 11.0;
				MTL_ENABLE_DEBUG_INFO = NO;
				MTL_FAST_MATH = YES;
				ONLY_ACTIVE_ARCH = NO;
				SDKROOT = iphoneos;
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		D0B5ECBB27F2D9E0003EDFE3 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 72E2054B343085AE9898C560 /* Pods-DreamSleep.debug.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIconDev;
				ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
				ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
				Bundle_Display_Name = "小梦睡眠-Dev";
				CODE_SIGN_ENTITLEMENTS = DreamSleep/DreamSleepDebug.entitlements;
				CODE_SIGN_IDENTITY = "Apple Development";
				CODE_SIGN_STYLE = Automatic;
				CURRENT_PROJECT_VERSION = 1;
				DEVELOPMENT_TEAM = SPH85C3TWU;
				EXCLUDED_ARCHS = "";
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/UMSocialUI",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/QQ/QQSDK",
				);
				GCC_PREFIX_HEADER = "${SRCROOT}/DreamSleep/Utils/PrefixHeader.pch";
				GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
				GENERATE_INFOPLIST_FILE = YES;
				HEADER_SEARCH_PATHS = "$(inherited)/**";
				INFOPLIST_FILE = DreamSleep/DSConfig/Info.plist;
				INFOPLIST_KEY_CFBundleDisplayName = "小梦睡眠-Dev";
				INFOPLIST_KEY_NSCameraUsageDescription = "APP需要访问您的相机。";
				INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
				INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
				INFOPLIST_KEY_UIStatusBarHidden = YES;
				INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
				INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
				INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
				IPHONEOS_DEPLOYMENT_TARGET = 11.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/DreamSleep/Vendors/WechatOpenSDK_1.9.2_NoPay",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/WeChat",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/WeChat/WechatSDK",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/QQ",
				);
				MARKETING_VERSION = 1.1.2;
				ONLY_ACTIVE_ARCH = YES;
				OTHER_LDFLAGS = (
					"$(inherited)",
					"-Objc",
					"-all_load",
					"-l\"c++\"",
				);
				PRODUCT_BUNDLE_IDENTIFIER = com.aolei.sleep.dev;
				PRODUCT_MODULE_NAME = DreamSleepDev;
				PRODUCT_NAME = "$(TARGET_NAME)Dev";
				PROVISIONING_PROFILE_SPECIFIER = "";
				SWIFT_EMIT_LOC_STRINGS = YES;
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = Debug;
		};
		D0B5ECBC27F2D9E0003EDFE3 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = F02C34A5649294F60932630C /* Pods-DreamSleep.release.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
				ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
				ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
				Bundle_Display_Name = "小梦睡眠-冥想解压助眠健康养生";
				CODE_SIGN_ENTITLEMENTS = DreamSleep/DreamSleep.entitlements;
				CODE_SIGN_IDENTITY = "Apple Development";
				CODE_SIGN_STYLE = Automatic;
				CURRENT_PROJECT_VERSION = 1;
				DEVELOPMENT_TEAM = 4NDZ6UX8PW;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/UMSocialUI",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/QQ/QQSDK",
				);
				GCC_PREFIX_HEADER = "${SRCROOT}/DreamSleep/Utils/PrefixHeader.pch";
				GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
				GENERATE_INFOPLIST_FILE = YES;
				HEADER_SEARCH_PATHS = "$(inherited)/**";
				INFOPLIST_FILE = DreamSleep/DSConfig/Info.plist;
				INFOPLIST_KEY_CFBundleDisplayName = "小梦睡眠-Dev";
				INFOPLIST_KEY_NSCameraUsageDescription = "APP需要访问您的相机。";
				INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
				INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
				INFOPLIST_KEY_UIStatusBarHidden = YES;
				INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
				INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
				INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
				IPHONEOS_DEPLOYMENT_TARGET = 11.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/DreamSleep/Vendors/WechatOpenSDK_1.9.2_NoPay",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/WeChat",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/WeChat/WechatSDK",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/QQ",
				);
				MARKETING_VERSION = 1.1.2;
				ONLY_ACTIVE_ARCH = YES;
				OTHER_LDFLAGS = (
					"$(inherited)",
					"-Objc",
					"-all_load",
					"-l\"c++\"",
				);
				PRODUCT_BUNDLE_IDENTIFIER = com.aolei.sleep;
				PRODUCT_MODULE_NAME = DreamSleep;
				PRODUCT_NAME = "$(TARGET_NAME)";
				PROVISIONING_PROFILE_SPECIFIER = "";
				SWIFT_EMIT_LOC_STRINGS = YES;
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = Release;
		};
		D0B5ECBD27F2DFA9003EDFE3 /* Beta */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++17";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_ENABLE_OBJC_WEAK = YES;
				CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_COMMA = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
				CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INFINITE_RECURSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;
				CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;
				CLANG_WARN_OBJC_LITERAL_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
				CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;
				CLANG_WARN_RANGE_LOOP_ANALYSIS = YES;
				CLANG_WARN_STRICT_PROTOTYPES = YES;
				CLANG_WARN_SUSPICIOUS_MOVE = YES;
				CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				EXCLUDED_ARCHS = "";
				GCC_C_LANGUAGE_STANDARD = gnu11;
				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 = 11.0;
				MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
				MTL_FAST_MATH = YES;
				ONLY_ACTIVE_ARCH = NO;
				SDKROOT = iphoneos;
			};
			name = Beta;
		};
		D0B5ECBE27F2DFA9003EDFE3 /* Beta */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = D0B5ECC227F2E25F003EDFE3 /* Beta.xcconfig */;
			buildSettings = {
				ASSETCATALOG_COMPILER_APPICON_NAME = AppIconBeta;
				ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor;
				ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS = NO;
				Bundle_Display_Name = "小梦睡眠-Beta";
				CODE_SIGN_ENTITLEMENTS = DreamSleep/DreamSleepBeta.entitlements;
				CODE_SIGN_IDENTITY = "Apple Development";
				CODE_SIGN_STYLE = Automatic;
				CURRENT_PROJECT_VERSION = 1;
				DEVELOPMENT_TEAM = 4NDZ6UX8PW;
				FRAMEWORK_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/UMSocialUI",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/QQ/QQSDK",
				);
				GCC_PREFIX_HEADER = "${SRCROOT}/DreamSleep/Utils/PrefixHeader.pch";
				GCC_PREPROCESSOR_DEFINITIONS = "$(inherited)";
				GENERATE_INFOPLIST_FILE = YES;
				HEADER_SEARCH_PATHS = "$(inherited)/**";
				INFOPLIST_FILE = DreamSleep/DSConfig/Info.plist;
				INFOPLIST_KEY_CFBundleDisplayName = "小梦睡眠-Dev";
				INFOPLIST_KEY_NSCameraUsageDescription = "APP需要访问您的相机。";
				INFOPLIST_KEY_UIApplicationSupportsIndirectInputEvents = YES;
				INFOPLIST_KEY_UILaunchStoryboardName = LaunchScreen;
				INFOPLIST_KEY_UIStatusBarHidden = YES;
				INFOPLIST_KEY_UISupportedInterfaceOrientations = UIInterfaceOrientationPortrait;
				INFOPLIST_KEY_UISupportedInterfaceOrientations_iPad = "UIInterfaceOrientationPortrait UIInterfaceOrientationPortraitUpsideDown UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
				INFOPLIST_KEY_UISupportedInterfaceOrientations_iPhone = "UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight";
				IPHONEOS_DEPLOYMENT_TARGET = 11.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
				);
				LIBRARY_SEARCH_PATHS = (
					"$(inherited)",
					"$(PROJECT_DIR)/DreamSleep/Vendors/WechatOpenSDK_1.9.2_NoPay",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/WeChat",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/WeChat/WechatSDK",
					"$(PROJECT_DIR)/DreamSleep/Vendors/UMSocial_6.10.4/SocialLibraries/QQ",
				);
				MARKETING_VERSION = 1.1.2;
				ONLY_ACTIVE_ARCH = YES;
				OTHER_LDFLAGS = (
					"$(inherited)",
					"-Objc",
					"-all_load",
					"-l\"c++\"",
				);
				PRODUCT_BUNDLE_IDENTIFIER = com.aolei.sleep;
				PRODUCT_MODULE_NAME = DreamSleepBeta;
				PRODUCT_NAME = "$(TARGET_NAME)Beta";
				PROVISIONING_PROFILE_SPECIFIER = "";
				SWIFT_EMIT_LOC_STRINGS = YES;
				TARGETED_DEVICE_FAMILY = 1;
			};
			name = Beta;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		D0B5EC9C27F2D9DE003EDFE3 /* Build configuration list for PBXProject "DreamSleep" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				D0B5ECB827F2D9E0003EDFE3 /* Debug */,
				D0B5ECBD27F2DFA9003EDFE3 /* Beta */,
				D0B5ECB927F2D9E0003EDFE3 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		D0B5ECBA27F2D9E0003EDFE3 /* Build configuration list for PBXNativeTarget "DreamSleep" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				D0B5ECBB27F2D9E0003EDFE3 /* Debug */,
				D0B5ECBE27F2DFA9003EDFE3 /* Beta */,
				D0B5ECBC27F2D9E0003EDFE3 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = D0B5EC9927F2D9DE003EDFE3 /* Project object */;
}