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

/* Begin PBXBuildFile section */
		1E029A4129E002CF00CC7447 /* UnifiedCouponBCHeaderTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E029A4029E002CF00CC7447 /* UnifiedCouponBCHeaderTableViewCell.swift */; };
		1E029A4329E0031600CC7447 /* UnifiedCouponBCFooterTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E029A4229E0031600CC7447 /* UnifiedCouponBCFooterTableViewCell.swift */; };
		1E108A9228A3F9280008B8E7 /* pf_square_sans_pro_regular.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1E108A8D28A3F9270008B8E7 /* pf_square_sans_pro_regular.ttf */; };
		1E108A9328A3F9280008B8E7 /* pf_square_sans_pro_medium.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1E108A8E28A3F9280008B8E7 /* pf_square_sans_pro_medium.ttf */; };
		1E108A9428A3F9280008B8E7 /* pf_square_sans_pro_extra_black.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1E108A8F28A3F9280008B8E7 /* pf_square_sans_pro_extra_black.ttf */; };
		1E108A9528A3F9280008B8E7 /* pf_square_sans_pro_bold_italic.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1E108A9028A3F9280008B8E7 /* pf_square_sans_pro_bold_italic.ttf */; };
		1E108A9628A3F9280008B8E7 /* pf_square_sans_pro_bold.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 1E108A9128A3F9280008B8E7 /* pf_square_sans_pro_bold.ttf */; };
		1E151F1829DAE48500951FA0 /* UnifiedCouponsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E151F1729DAE48500951FA0 /* UnifiedCouponsTableViewCell.swift */; };
		1E151F1A29DAE4D500951FA0 /* ActiveCodeTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E151F1929DAE4D500951FA0 /* ActiveCodeTableViewCell.swift */; };
		1E15B9A229DDCF02000A408D /* MarketSharingHistoryViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E15B9A129DDCF02000A408D /* MarketSharingHistoryViewController.swift */; };
		1E15B9A429DDD211000A408D /* MarketHistoryViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E15B9A329DDD211000A408D /* MarketHistoryViewController.swift */; };
		1E2966EA2837A21D00F83FAC /* RSBarcodes_Swift in Frameworks */ = {isa = PBXBuildFile; productRef = 1E2966E92837A21D00F83FAC /* RSBarcodes_Swift */; };
		1E4410B128F5855000859F92 /* CampaignCategory.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E4410B028F5855000859F92 /* CampaignCategory.swift */; };
		1E479FB329DD948B00C38193 /* WalletBadgesTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E479FB229DD948B00C38193 /* WalletBadgesTableViewCell.swift */; };
		1E74838D28378AF40042A589 /* CouponBarcodeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E74838C28378AF40042A589 /* CouponBarcodeViewController.swift */; };
		1E87A9EF28C2021200C79F90 /* ContextualViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E87A9EE28C2021200C79F90 /* ContextualViewController.swift */; };
		1EA1AF0A2835346A008998AA /* CouponsTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EA1AF092835346A008998AA /* CouponsTableViewCell.swift */; };
		1EA2BB792865BFE8003F2AB0 /* InboxTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EA2BB782865BFE8003F2AB0 /* InboxTableViewCell.swift */; };
		1EA771AC290977CA0030924C /* CopyableLabel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EA771AB290977CA0030924C /* CopyableLabel.swift */; };
		1EAEFC7A29DDCAF500114A1C /* MarketLoyaltyAnalysisViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EAEFC7929DDCAF500114A1C /* MarketLoyaltyAnalysisViewController.swift */; };
		1EB236AB28816B680063777A /* ShareViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EB236AA28816B680063777A /* ShareViewController.swift */; };
		1EB236AD28816C560063777A /* NumberPopupViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EB236AC28816C560063777A /* NumberPopupViewController.swift */; };
		1EB236AF28816CAC0063777A /* NumbersTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EB236AE28816CAB0063777A /* NumbersTableViewCell.swift */; };
		1EB5F4C828536FD60016F36E /* StepsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EB5F4C728536FD60016F36E /* StepsViewController.swift */; };
		1EB5F4CA285370C90016F36E /* LoyaltyAnalysisViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EB5F4C9285370C90016F36E /* LoyaltyAnalysisViewController.swift */; };
		1EBC75432922829D004FBE75 /* SpinnerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EBC75422922829D004FBE75 /* SpinnerViewController.swift */; };
		1EBE97212865EE460080EFF7 /* MFYInboxTableViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EBE97202865EE460080EFF7 /* MFYInboxTableViewCell.swift */; };
		1EBF5F072840E13F00B8B17F /* SwiftEventBus in Frameworks */ = {isa = PBXBuildFile; productRef = 1EBF5F062840E13F00B8B17F /* SwiftEventBus */; };
		1ECA079128D9E3BA00D2BDE0 /* CSMButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ECA079028D9E3BA00D2BDE0 /* CSMButton.swift */; };
		1ECA079428D9E53F00D2BDE0 /* MapsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ECA079228D9E53F00D2BDE0 /* MapsViewController.swift */; };
		1ECA079528D9E53F00D2BDE0 /* MapsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1ECA079328D9E53F00D2BDE0 /* MapsViewController.xib */; };
		1ECA079728D9E66200D2BDE0 /* MerchantAnnotation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ECA079628D9E66200D2BDE0 /* MerchantAnnotation.swift */; };
		1EDCB47A29DEEC2E00DF218B /* UnifiedCouponBarcodeViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EDCB47929DEEC2E00DF218B /* UnifiedCouponBarcodeViewController.swift */; };
		1EDCDFAC28DB29E8002ED8F0 /* AnalysisMoreViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1EDCDFAB28DB29E8002ED8F0 /* AnalysisMoreViewCell.swift */; };
		7630AD9A6242D60846D6750C /* Pods_SwiftWarplyFramework.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0D5F56DD4E5371A50AD2D87 /* Pods_SwiftWarplyFramework.framework */; };
		A02F34052882B6E60086465F /* TelcoViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A02F34042882B6E60086465F /* TelcoViewController.swift */; };
		A04D31DE288FF670000E43B5 /* HistoryViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A04D31DD288FF670000E43B5 /* HistoryViewController.swift */; };
		A079366E2885D07700064122 /* AnalysisChildViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A079366D2885D07700064122 /* AnalysisChildViewController.swift */; };
		A07936702885D95600064122 /* AnalysisItemViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A079366F2885D95600064122 /* AnalysisItemViewCell.swift */; };
		A07936732885E67400064122 /* AnalysisItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = A07936722885E67400064122 /* AnalysisItem.swift */; };
		A07936762885E9CC00064122 /* UIColorExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A07936752885E9CC00064122 /* UIColorExtensions.swift */; };
		A079367C2885F2F500064122 /* AnalysisHeaderViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A079367B2885F2F500064122 /* AnalysisHeaderViewCell.swift */; };
		A079367E2885F60A00064122 /* AnalysisHeaderMessageViewCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = A079367D2885F60A00064122 /* AnalysisHeaderMessageViewCell.swift */; };
		A09DBCAE2888BA8100DD50B0 /* SharingHistoryViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = A09DBCAD2888BA8100DD50B0 /* SharingHistoryViewController.swift */; };
		E6A77853282933340045BBA8 /* SwiftWarplyFramework.docc in Sources */ = {isa = PBXBuildFile; fileRef = E6A77852282933340045BBA8 /* SwiftWarplyFramework.docc */; };
		E6A77854282933340045BBA8 /* SwiftWarplyFramework.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77851282933340045BBA8 /* SwiftWarplyFramework.h */; settings = {ATTRIBUTES = (Public, ); }; };
		E6A778DF282933E60045BBA8 /* WarplyReactMethods.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7785B282933E40045BBA8 /* WarplyReactMethods.m */; };
		E6A778E0282933E60045BBA8 /* WarplyReactMethods.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7785C282933E40045BBA8 /* WarplyReactMethods.h */; };
		E6A778E1282933E60045BBA8 /* CouponViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A7785D282933E40045BBA8 /* CouponViewController.swift */; };
		E6A778E2282933E60045BBA8 /* CouponsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A7785E282933E40045BBA8 /* CouponsViewController.swift */; };
		E6A778E3282933E60045BBA8 /* WalletViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A7785F282933E40045BBA8 /* WalletViewController.swift */; };
		E6A778E4282933E60045BBA8 /* MyApi.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77860282933E40045BBA8 /* MyApi.h */; settings = {ATTRIBUTES = (Public, ); }; };
		E6A778E5282933E60045BBA8 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E6A77861282933E50045BBA8 /* Main.storyboard */; };
		E6A778E6282933E60045BBA8 /* MyEmptyClass.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A77862282933E50045BBA8 /* MyEmptyClass.swift */; };
		E6A778E7282933E60045BBA8 /* DetailsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A77863282933E50045BBA8 /* DetailsViewController.swift */; };
		E6A778E9282933E60045BBA8 /* WLNativeAdCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77867282933E50045BBA8 /* WLNativeAdCollectionViewCell.h */; };
		E6A778EA282933E60045BBA8 /* WLNativeVideoTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E6A77868282933E50045BBA8 /* WLNativeVideoTableViewCell.xib */; };
		E6A778EB282933E60045BBA8 /* WLNativeAdTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77869282933E50045BBA8 /* WLNativeAdTableViewCell.h */; };
		E6A778EC282933E60045BBA8 /* WLNativeVideoTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7786A282933E50045BBA8 /* WLNativeVideoTableViewCell.m */; };
		E6A778ED282933E60045BBA8 /* WLCustomNativeCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7786B282933E50045BBA8 /* WLCustomNativeCollectionViewCell.m */; };
		E6A778EE282933E60045BBA8 /* WLNativeAdsTableMode.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7786C282933E50045BBA8 /* WLNativeAdsTableMode.m */; };
		E6A778EF282933E60045BBA8 /* WLCustomNativeAdTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7786D282933E50045BBA8 /* WLCustomNativeAdTableViewCell.h */; };
		E6A778F0282933E60045BBA8 /* WLNativeAdsCollectionMode.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7786E282933E50045BBA8 /* WLNativeAdsCollectionMode.m */; };
		E6A778F1282933E60045BBA8 /* WLNativeAdTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7786F282933E50045BBA8 /* WLNativeAdTableViewCell.m */; };
		E6A778F2282933E60045BBA8 /* WLNativeAdCollectionViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A77870282933E50045BBA8 /* WLNativeAdCollectionViewCell.m */; };
		E6A778F3282933E60045BBA8 /* WLNativeAdTableViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E6A77871282933E50045BBA8 /* WLNativeAdTableViewCell.xib */; };
		E6A778F4282933E60045BBA8 /* WLNativeAdCollectionViewCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = E6A77872282933E50045BBA8 /* WLNativeAdCollectionViewCell.xib */; };
		E6A778F5282933E60045BBA8 /* WLCustomNativeAdTableViewCell.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A77873282933E50045BBA8 /* WLCustomNativeAdTableViewCell.m */; };
		E6A778F6282933E60045BBA8 /* WLNativeAdsTableMode.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77874282933E50045BBA8 /* WLNativeAdsTableMode.h */; };
		E6A778F7282933E60045BBA8 /* WLCustomNativeCollectionViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77875282933E50045BBA8 /* WLCustomNativeCollectionViewCell.h */; };
		E6A778F8282933E60045BBA8 /* WLNativeVideoTableViewCell.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77876282933E50045BBA8 /* WLNativeVideoTableViewCell.h */; };
		E6A778F9282933E60045BBA8 /* WLNativeAdsCollectionMode.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77877282933E50045BBA8 /* WLNativeAdsCollectionMode.h */; };
		E6A778FA282933E60045BBA8 /* WLBeacon.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77879282933E50045BBA8 /* WLBeacon.h */; };
		E6A778FB282933E60045BBA8 /* WLBaseItem.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7787A282933E50045BBA8 /* WLBaseItem.h */; };
		E6A778FC282933E60045BBA8 /* WLInboxItemViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7787B282933E50045BBA8 /* WLInboxItemViewController.h */; };
		E6A778FD282933E60045BBA8 /* WLInboxItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7787C282933E50045BBA8 /* WLInboxItem.m */; };
		E6A778FE282933E60045BBA8 /* WLAPSItem.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7787D282933E50045BBA8 /* WLAPSItem.h */; };
		E6A778FF282933E60045BBA8 /* WLBeacon.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7787E282933E50045BBA8 /* WLBeacon.m */; };
		E6A77900282933E60045BBA8 /* WLInboxItemViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7787F282933E50045BBA8 /* WLInboxItemViewController.m */; };
		E6A77901282933E60045BBA8 /* WLBaseItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A77880282933E50045BBA8 /* WLBaseItem.m */; };
		E6A77902282933E60045BBA8 /* WLInboxItem.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77881282933E50045BBA8 /* WLInboxItem.h */; };
		E6A77903282933E60045BBA8 /* WLAPSItem.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A77882282933E50045BBA8 /* WLAPSItem.m */; };
		E6A77904282933E60045BBA8 /* WLEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A77883282933E50045BBA8 /* WLEvent.m */; };
		E6A77905282933E60045BBA8 /* warp_white_back_button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E6A77885282933E50045BBA8 /* warp_white_back_button@2x.png */; };
		E6A77906282933E60045BBA8 /* warp_white_forward_button.png in Resources */ = {isa = PBXBuildFile; fileRef = E6A77886282933E50045BBA8 /* warp_white_forward_button.png */; };
		E6A77907282933E60045BBA8 /* warp_white_back_button.png in Resources */ = {isa = PBXBuildFile; fileRef = E6A77887282933E50045BBA8 /* warp_white_back_button.png */; };
		E6A77908282933E60045BBA8 /* warp_white_close_button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E6A77888282933E50045BBA8 /* warp_white_close_button@2x.png */; };
		E6A77909282933E60045BBA8 /* warp_white_forward_button@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E6A77889282933E50045BBA8 /* warp_white_forward_button@2x.png */; };
		E6A7790A282933E60045BBA8 /* warp_white_close_button.png in Resources */ = {isa = PBXBuildFile; fileRef = E6A7788A282933E50045BBA8 /* warp_white_close_button.png */; };
		E6A7790B282933E60045BBA8 /* WLPushManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7788C282933E50045BBA8 /* WLPushManager.m */; };
		E6A7790C282933E60045BBA8 /* WLBeaconManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7788D282933E50045BBA8 /* WLBeaconManager.m */; };
		E6A7790D282933E60045BBA8 /* WLLocationManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7788E282933E50045BBA8 /* WLLocationManager.m */; };
		E6A7790E282933E60045BBA8 /* WLAnalyticsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7788F282933E50045BBA8 /* WLAnalyticsManager.h */; };
		E6A7790F282933E60045BBA8 /* WLUserManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77890282933E50045BBA8 /* WLUserManager.h */; };
		E6A77910282933E60045BBA8 /* WLBeaconManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77891282933E50045BBA8 /* WLBeaconManager.h */; };
		E6A77911282933E60045BBA8 /* WLPushManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77892282933E50045BBA8 /* WLPushManager.h */; };
		E6A77912282933E60045BBA8 /* WLAnalyticsManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A77893282933E50045BBA8 /* WLAnalyticsManager.m */; };
		E6A77913282933E60045BBA8 /* WLLocationManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77894282933E50045BBA8 /* WLLocationManager.h */; };
		E6A77914282933E60045BBA8 /* WLUserManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A77895282933E50045BBA8 /* WLUserManager.m */; };
		E6A77915282933E60045BBA8 /* WLUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A77897282933E50045BBA8 /* WLUtils.m */; };
		E6A77916282933E60045BBA8 /* UIViewController+WLAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A77898282933E50045BBA8 /* UIViewController+WLAdditions.h */; };
		E6A77917282933E60045BBA8 /* UIViewController+WLAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A77899282933E50045BBA8 /* UIViewController+WLAdditions.m */; };
		E6A77918282933E60045BBA8 /* WLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7789A282933E50045BBA8 /* WLUtils.h */; };
		E6A77919282933E60045BBA8 /* Warply.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7789B282933E50045BBA8 /* Warply.m */; };
		E6A7791A282933E60045BBA8 /* WLAPPActionHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7789D282933E50045BBA8 /* WLAPPActionHandler.m */; };
		E6A7791B282933E60045BBA8 /* WLSMSActionHanlder.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A7789E282933E50045BBA8 /* WLSMSActionHanlder.h */; };
		E6A7791C282933E60045BBA8 /* WLSMSActionHandlerDeprecated.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A7789F282933E50045BBA8 /* WLSMSActionHandlerDeprecated.m */; };
		E6A7791D282933E60045BBA8 /* WLSMSActionHandlerDeprecated.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778A0282933E50045BBA8 /* WLSMSActionHandlerDeprecated.h */; };
		E6A7791E282933E60045BBA8 /* WLSMSActionHanlder.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778A1282933E50045BBA8 /* WLSMSActionHanlder.m */; };
		E6A7791F282933E60045BBA8 /* WLAPPActionHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778A2282933E50045BBA8 /* WLAPPActionHandler.h */; };
		E6A77920282933E60045BBA8 /* WLGlobals.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778A3282933E50045BBA8 /* WLGlobals.h */; };
		E6A77921282933E60045BBA8 /* NSString+SSToolkitAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778A6282933E50045BBA8 /* NSString+SSToolkitAdditions.h */; };
		E6A77922282933E60045BBA8 /* NSData+SSToolkitAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778A7282933E50045BBA8 /* NSData+SSToolkitAdditions.m */; };
		E6A77923282933E70045BBA8 /* NSData+SSToolkitAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778A8282933E50045BBA8 /* NSData+SSToolkitAdditions.h */; };
		E6A77924282933E70045BBA8 /* NSString+SSToolkitAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778A9282933E50045BBA8 /* NSString+SSToolkitAdditions.m */; };
		E6A77925282933E70045BBA8 /* UIProgressView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778AB282933E50045BBA8 /* UIProgressView+AFNetworking.m */; };
		E6A77926282933E70045BBA8 /* UIButton+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778AC282933E50045BBA8 /* UIButton+AFNetworking.h */; };
		E6A77927282933E70045BBA8 /* UIRefreshControl+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778AD282933E50045BBA8 /* UIRefreshControl+AFNetworking.m */; };
		E6A77928282933E70045BBA8 /* UIImageView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778AE282933E50045BBA8 /* UIImageView+AFNetworking.h */; };
		E6A77929282933E70045BBA8 /* AFImageDownloader.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778AF282933E50045BBA8 /* AFImageDownloader.h */; };
		E6A7792A282933E70045BBA8 /* AFNetworkActivityIndicatorManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778B0282933E60045BBA8 /* AFNetworkActivityIndicatorManager.m */; };
		E6A7792B282933E70045BBA8 /* AFAutoPurgingImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778B1282933E60045BBA8 /* AFAutoPurgingImageCache.h */; };
		E6A7792C282933E70045BBA8 /* UIWebView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778B2282933E60045BBA8 /* UIWebView+AFNetworking.h */; };
		E6A7792D282933E70045BBA8 /* UIActivityIndicatorView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778B3282933E60045BBA8 /* UIActivityIndicatorView+AFNetworking.h */; };
		E6A7792E282933E70045BBA8 /* UIImage+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778B4282933E60045BBA8 /* UIImage+AFNetworking.h */; };
		E6A7792F282933E70045BBA8 /* UIProgressView+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778B5282933E60045BBA8 /* UIProgressView+AFNetworking.h */; };
		E6A77930282933E70045BBA8 /* UIImageView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778B6282933E60045BBA8 /* UIImageView+AFNetworking.m */; };
		E6A77931282933E70045BBA8 /* UIKit+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778B7282933E60045BBA8 /* UIKit+AFNetworking.h */; };
		E6A77932282933E70045BBA8 /* UIRefreshControl+AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778B8282933E60045BBA8 /* UIRefreshControl+AFNetworking.h */; };
		E6A77933282933E70045BBA8 /* UIButton+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778B9282933E60045BBA8 /* UIButton+AFNetworking.m */; };
		E6A77934282933E70045BBA8 /* UIActivityIndicatorView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778BA282933E60045BBA8 /* UIActivityIndicatorView+AFNetworking.m */; };
		E6A77935282933E70045BBA8 /* UIWebView+AFNetworking.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778BB282933E60045BBA8 /* UIWebView+AFNetworking.m */; };
		E6A77936282933E70045BBA8 /* AFAutoPurgingImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778BC282933E60045BBA8 /* AFAutoPurgingImageCache.m */; };
		E6A77937282933E70045BBA8 /* AFNetworkActivityIndicatorManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778BD282933E60045BBA8 /* AFNetworkActivityIndicatorManager.h */; };
		E6A77938282933E70045BBA8 /* AFImageDownloader.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778BE282933E60045BBA8 /* AFImageDownloader.m */; };
		E6A77939282933E70045BBA8 /* AFSecurityPolicy.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778C0282933E60045BBA8 /* AFSecurityPolicy.h */; };
		E6A7793A282933E70045BBA8 /* AFNetworkReachabilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778C1282933E60045BBA8 /* AFNetworkReachabilityManager.h */; };
		E6A7793B282933E70045BBA8 /* AFURLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778C2282933E60045BBA8 /* AFURLSessionManager.h */; };
		E6A7793C282933E70045BBA8 /* AFURLRequestSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778C3282933E60045BBA8 /* AFURLRequestSerialization.h */; };
		E6A7793D282933E70045BBA8 /* AFURLResponseSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778C4282933E60045BBA8 /* AFURLResponseSerialization.m */; };
		E6A7793E282933E70045BBA8 /* AFHTTPSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778C5282933E60045BBA8 /* AFHTTPSessionManager.m */; };
		E6A7793F282933E70045BBA8 /* AFURLResponseSerialization.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778C6282933E60045BBA8 /* AFURLResponseSerialization.h */; };
		E6A77940282933E70045BBA8 /* AFURLSessionManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778C7282933E60045BBA8 /* AFURLSessionManager.m */; };
		E6A77941282933E70045BBA8 /* AFURLRequestSerialization.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778C8282933E60045BBA8 /* AFURLRequestSerialization.m */; };
		E6A77942282933E70045BBA8 /* AFNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778C9282933E60045BBA8 /* AFNetworking.h */; };
		E6A77943282933E70045BBA8 /* AFNetworkReachabilityManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778CA282933E60045BBA8 /* AFNetworkReachabilityManager.m */; };
		E6A77944282933E70045BBA8 /* AFSecurityPolicy.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778CB282933E60045BBA8 /* AFSecurityPolicy.m */; };
		E6A77945282933E70045BBA8 /* AFHTTPSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778CC282933E60045BBA8 /* AFHTTPSessionManager.h */; };
		E6A77946282933E70045BBA8 /* FMDatabase.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778CE282933E60045BBA8 /* FMDatabase.h */; };
		E6A77947282933E70045BBA8 /* FMDatabaseQueue.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778CF282933E60045BBA8 /* FMDatabaseQueue.m */; };
		E6A77948282933E70045BBA8 /* FMResultSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778D0282933E60045BBA8 /* FMResultSet.h */; };
		E6A77949282933E70045BBA8 /* FMDatabasePool.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778D1282933E60045BBA8 /* FMDatabasePool.h */; };
		E6A7794A282933E70045BBA8 /* FMDatabaseAdditions.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778D2282933E60045BBA8 /* FMDatabaseAdditions.m */; };
		E6A7794B282933E70045BBA8 /* FMDatabase.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778D3282933E60045BBA8 /* FMDatabase.m */; };
		E6A7794C282933E70045BBA8 /* FMDatabaseQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778D4282933E60045BBA8 /* FMDatabaseQueue.h */; };
		E6A7794D282933E70045BBA8 /* FMDB.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778D5282933E60045BBA8 /* FMDB.h */; };
		E6A7794E282933E70045BBA8 /* FMDatabaseAdditions.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778D6282933E60045BBA8 /* FMDatabaseAdditions.h */; };
		E6A7794F282933E70045BBA8 /* FMDatabasePool.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778D7282933E60045BBA8 /* FMDatabasePool.m */; };
		E6A77950282933E70045BBA8 /* FMResultSet.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778D8282933E60045BBA8 /* FMResultSet.m */; };
		E6A77951282933E70045BBA8 /* WLEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778D9282933E60045BBA8 /* WLEvent.h */; };
		E6A77952282933E70045BBA8 /* Warply.h in Headers */ = {isa = PBXBuildFile; fileRef = E6A778DA282933E60045BBA8 /* Warply.h */; };
		E6A77953282933E70045BBA8 /* MFYViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A778DB282933E60045BBA8 /* MFYViewController.swift */; };
		E6A77954282933E70045BBA8 /* MyApi.m in Sources */ = {isa = PBXBuildFile; fileRef = E6A778DC282933E60045BBA8 /* MyApi.m */; };
		E6A77955282933E70045BBA8 /* ViewControllerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A778DD282933E60045BBA8 /* ViewControllerExtensions.swift */; };
		E6A77956282933E70045BBA8 /* GiftsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A778DE282933E60045BBA8 /* GiftsViewController.swift */; };
		E6A7795A28293D390045BBA8 /* swiftApi.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A77864282933E50045BBA8 /* swiftApi.swift */; };
		E6A77A32282BA9C60045BBA8 /* CampaignViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A77A31282BA9C60045BBA8 /* CampaignViewController.swift */; };
		E6A77A34282BB3BB0045BBA8 /* ActiveGiftsViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A77A33282BB3BB0045BBA8 /* ActiveGiftsViewController.swift */; };
		E6A77A36282BB4CB0045BBA8 /* MakeItAPresentViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E6A77A35282BB4CB0045BBA8 /* MakeItAPresentViewController.swift */; };
		E6A77A38282BC3530045BBA8 /* Media.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E6A77A37282BC3530045BBA8 /* Media.xcassets */; };
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
		1E029A4029E002CF00CC7447 /* UnifiedCouponBCHeaderTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnifiedCouponBCHeaderTableViewCell.swift; sourceTree = "<group>"; };
		1E029A4229E0031600CC7447 /* UnifiedCouponBCFooterTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnifiedCouponBCFooterTableViewCell.swift; sourceTree = "<group>"; };
		1E108A8D28A3F9270008B8E7 /* pf_square_sans_pro_regular.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = pf_square_sans_pro_regular.ttf; sourceTree = "<group>"; };
		1E108A8E28A3F9280008B8E7 /* pf_square_sans_pro_medium.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = pf_square_sans_pro_medium.ttf; sourceTree = "<group>"; };
		1E108A8F28A3F9280008B8E7 /* pf_square_sans_pro_extra_black.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = pf_square_sans_pro_extra_black.ttf; sourceTree = "<group>"; };
		1E108A9028A3F9280008B8E7 /* pf_square_sans_pro_bold_italic.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = pf_square_sans_pro_bold_italic.ttf; sourceTree = "<group>"; };
		1E108A9128A3F9280008B8E7 /* pf_square_sans_pro_bold.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; path = pf_square_sans_pro_bold.ttf; sourceTree = "<group>"; };
		1E108A9728A3FA9B0008B8E7 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
		1E151F1729DAE48500951FA0 /* UnifiedCouponsTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnifiedCouponsTableViewCell.swift; sourceTree = "<group>"; };
		1E151F1929DAE4D500951FA0 /* ActiveCodeTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActiveCodeTableViewCell.swift; sourceTree = "<group>"; };
		1E15B9A129DDCF02000A408D /* MarketSharingHistoryViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarketSharingHistoryViewController.swift; sourceTree = "<group>"; };
		1E15B9A329DDD211000A408D /* MarketHistoryViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarketHistoryViewController.swift; sourceTree = "<group>"; };
		1E4410B028F5855000859F92 /* CampaignCategory.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CampaignCategory.swift; sourceTree = "<group>"; };
		1E479FB229DD948B00C38193 /* WalletBadgesTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = WalletBadgesTableViewCell.swift; sourceTree = "<group>"; };
		1E74838C28378AF40042A589 /* CouponBarcodeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CouponBarcodeViewController.swift; sourceTree = "<group>"; };
		1E87A9EE28C2021200C79F90 /* ContextualViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ContextualViewController.swift; sourceTree = "<group>"; };
		1EA1AF092835346A008998AA /* CouponsTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CouponsTableViewCell.swift; sourceTree = "<group>"; };
		1EA2BB782865BFE8003F2AB0 /* InboxTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = InboxTableViewCell.swift; sourceTree = "<group>"; };
		1EA771AB290977CA0030924C /* CopyableLabel.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CopyableLabel.swift; sourceTree = "<group>"; };
		1EAEFC7929DDCAF500114A1C /* MarketLoyaltyAnalysisViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MarketLoyaltyAnalysisViewController.swift; sourceTree = "<group>"; };
		1EB236AA28816B680063777A /* ShareViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ShareViewController.swift; sourceTree = "<group>"; };
		1EB236AC28816C560063777A /* NumberPopupViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NumberPopupViewController.swift; sourceTree = "<group>"; };
		1EB236AE28816CAB0063777A /* NumbersTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = NumbersTableViewCell.swift; sourceTree = "<group>"; };
		1EB5F4C728536FD60016F36E /* StepsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = StepsViewController.swift; sourceTree = "<group>"; };
		1EB5F4C9285370C90016F36E /* LoyaltyAnalysisViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = LoyaltyAnalysisViewController.swift; sourceTree = "<group>"; };
		1EBC75422922829D004FBE75 /* SpinnerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SpinnerViewController.swift; sourceTree = "<group>"; };
		1EBE97202865EE460080EFF7 /* MFYInboxTableViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MFYInboxTableViewCell.swift; sourceTree = "<group>"; };
		1ECA079028D9E3BA00D2BDE0 /* CSMButton.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CSMButton.swift; sourceTree = "<group>"; };
		1ECA079228D9E53F00D2BDE0 /* MapsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MapsViewController.swift; sourceTree = "<group>"; };
		1ECA079328D9E53F00D2BDE0 /* MapsViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MapsViewController.xib; sourceTree = "<group>"; };
		1ECA079628D9E66200D2BDE0 /* MerchantAnnotation.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MerchantAnnotation.swift; sourceTree = "<group>"; };
		1EDCB47929DEEC2E00DF218B /* UnifiedCouponBarcodeViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UnifiedCouponBarcodeViewController.swift; sourceTree = "<group>"; };
		1EDCDFAB28DB29E8002ED8F0 /* AnalysisMoreViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnalysisMoreViewCell.swift; sourceTree = "<group>"; };
		A02F34042882B6E60086465F /* TelcoViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TelcoViewController.swift; sourceTree = "<group>"; };
		A04D31DD288FF670000E43B5 /* HistoryViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = HistoryViewController.swift; sourceTree = "<group>"; };
		A079366D2885D07700064122 /* AnalysisChildViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnalysisChildViewController.swift; sourceTree = "<group>"; };
		A079366F2885D95600064122 /* AnalysisItemViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnalysisItemViewCell.swift; sourceTree = "<group>"; };
		A07936722885E67400064122 /* AnalysisItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnalysisItem.swift; sourceTree = "<group>"; };
		A07936752885E9CC00064122 /* UIColorExtensions.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = UIColorExtensions.swift; sourceTree = "<group>"; };
		A079367B2885F2F500064122 /* AnalysisHeaderViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnalysisHeaderViewCell.swift; sourceTree = "<group>"; };
		A079367D2885F60A00064122 /* AnalysisHeaderMessageViewCell.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnalysisHeaderMessageViewCell.swift; sourceTree = "<group>"; };
		A09DBCAD2888BA8100DD50B0 /* SharingHistoryViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = SharingHistoryViewController.swift; sourceTree = "<group>"; };
		A9B7BE01A4E812DE49866EF8 /* Pods-SwiftWarplyFramework.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftWarplyFramework.debug.xcconfig"; path = "Target Support Files/Pods-SwiftWarplyFramework/Pods-SwiftWarplyFramework.debug.xcconfig"; sourceTree = "<group>"; };
		B9EB8A451EF0C5AD75094EEE /* Pods-SwiftWarplyFramework.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-SwiftWarplyFramework.release.xcconfig"; path = "Target Support Files/Pods-SwiftWarplyFramework/Pods-SwiftWarplyFramework.release.xcconfig"; sourceTree = "<group>"; };
		C0D5F56DD4E5371A50AD2D87 /* Pods_SwiftWarplyFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_SwiftWarplyFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		E6A7784E282933340045BBA8 /* SwiftWarplyFramework.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = SwiftWarplyFramework.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		E6A77851282933340045BBA8 /* SwiftWarplyFramework.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = SwiftWarplyFramework.h; sourceTree = "<group>"; };
		E6A77852282933340045BBA8 /* SwiftWarplyFramework.docc */ = {isa = PBXFileReference; lastKnownFileType = folder.documentationcatalog; path = SwiftWarplyFramework.docc; sourceTree = "<group>"; };
		E6A7785B282933E40045BBA8 /* WarplyReactMethods.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WarplyReactMethods.m; sourceTree = "<group>"; };
		E6A7785C282933E40045BBA8 /* WarplyReactMethods.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WarplyReactMethods.h; sourceTree = "<group>"; };
		E6A7785D282933E40045BBA8 /* CouponViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CouponViewController.swift; sourceTree = "<group>"; };
		E6A7785E282933E40045BBA8 /* CouponsViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CouponsViewController.swift; sourceTree = "<group>"; };
		E6A7785F282933E40045BBA8 /* WalletViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = WalletViewController.swift; sourceTree = "<group>"; };
		E6A77860282933E40045BBA8 /* MyApi.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MyApi.h; sourceTree = "<group>"; };
		E6A77861282933E50045BBA8 /* Main.storyboard */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.storyboard; path = Main.storyboard; sourceTree = "<group>"; };
		E6A77862282933E50045BBA8 /* MyEmptyClass.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MyEmptyClass.swift; sourceTree = "<group>"; };
		E6A77863282933E50045BBA8 /* DetailsViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DetailsViewController.swift; sourceTree = "<group>"; };
		E6A77864282933E50045BBA8 /* swiftApi.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = swiftApi.swift; sourceTree = "<group>"; };
		E6A77867282933E50045BBA8 /* WLNativeAdCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLNativeAdCollectionViewCell.h; sourceTree = "<group>"; };
		E6A77868282933E50045BBA8 /* WLNativeVideoTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WLNativeVideoTableViewCell.xib; sourceTree = "<group>"; };
		E6A77869282933E50045BBA8 /* WLNativeAdTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLNativeAdTableViewCell.h; sourceTree = "<group>"; };
		E6A7786A282933E50045BBA8 /* WLNativeVideoTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLNativeVideoTableViewCell.m; sourceTree = "<group>"; };
		E6A7786B282933E50045BBA8 /* WLCustomNativeCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLCustomNativeCollectionViewCell.m; sourceTree = "<group>"; };
		E6A7786C282933E50045BBA8 /* WLNativeAdsTableMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLNativeAdsTableMode.m; sourceTree = "<group>"; };
		E6A7786D282933E50045BBA8 /* WLCustomNativeAdTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLCustomNativeAdTableViewCell.h; sourceTree = "<group>"; };
		E6A7786E282933E50045BBA8 /* WLNativeAdsCollectionMode.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLNativeAdsCollectionMode.m; sourceTree = "<group>"; };
		E6A7786F282933E50045BBA8 /* WLNativeAdTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLNativeAdTableViewCell.m; sourceTree = "<group>"; };
		E6A77870282933E50045BBA8 /* WLNativeAdCollectionViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLNativeAdCollectionViewCell.m; sourceTree = "<group>"; };
		E6A77871282933E50045BBA8 /* WLNativeAdTableViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WLNativeAdTableViewCell.xib; sourceTree = "<group>"; };
		E6A77872282933E50045BBA8 /* WLNativeAdCollectionViewCell.xib */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = file.xib; path = WLNativeAdCollectionViewCell.xib; sourceTree = "<group>"; };
		E6A77873282933E50045BBA8 /* WLCustomNativeAdTableViewCell.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLCustomNativeAdTableViewCell.m; sourceTree = "<group>"; };
		E6A77874282933E50045BBA8 /* WLNativeAdsTableMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLNativeAdsTableMode.h; sourceTree = "<group>"; };
		E6A77875282933E50045BBA8 /* WLCustomNativeCollectionViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLCustomNativeCollectionViewCell.h; sourceTree = "<group>"; };
		E6A77876282933E50045BBA8 /* WLNativeVideoTableViewCell.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLNativeVideoTableViewCell.h; sourceTree = "<group>"; };
		E6A77877282933E50045BBA8 /* WLNativeAdsCollectionMode.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLNativeAdsCollectionMode.h; sourceTree = "<group>"; };
		E6A77879282933E50045BBA8 /* WLBeacon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLBeacon.h; sourceTree = "<group>"; };
		E6A7787A282933E50045BBA8 /* WLBaseItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLBaseItem.h; sourceTree = "<group>"; };
		E6A7787B282933E50045BBA8 /* WLInboxItemViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLInboxItemViewController.h; sourceTree = "<group>"; };
		E6A7787C282933E50045BBA8 /* WLInboxItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLInboxItem.m; sourceTree = "<group>"; };
		E6A7787D282933E50045BBA8 /* WLAPSItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLAPSItem.h; sourceTree = "<group>"; };
		E6A7787E282933E50045BBA8 /* WLBeacon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLBeacon.m; sourceTree = "<group>"; };
		E6A7787F282933E50045BBA8 /* WLInboxItemViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLInboxItemViewController.m; sourceTree = "<group>"; };
		E6A77880282933E50045BBA8 /* WLBaseItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLBaseItem.m; sourceTree = "<group>"; };
		E6A77881282933E50045BBA8 /* WLInboxItem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLInboxItem.h; sourceTree = "<group>"; };
		E6A77882282933E50045BBA8 /* WLAPSItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLAPSItem.m; sourceTree = "<group>"; };
		E6A77883282933E50045BBA8 /* WLEvent.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLEvent.m; sourceTree = "<group>"; };
		E6A77885282933E50045BBA8 /* warp_white_back_button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "warp_white_back_button@2x.png"; sourceTree = "<group>"; };
		E6A77886282933E50045BBA8 /* warp_white_forward_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = warp_white_forward_button.png; sourceTree = "<group>"; };
		E6A77887282933E50045BBA8 /* warp_white_back_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = warp_white_back_button.png; sourceTree = "<group>"; };
		E6A77888282933E50045BBA8 /* warp_white_close_button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "warp_white_close_button@2x.png"; sourceTree = "<group>"; };
		E6A77889282933E50045BBA8 /* warp_white_forward_button@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = "warp_white_forward_button@2x.png"; sourceTree = "<group>"; };
		E6A7788A282933E50045BBA8 /* warp_white_close_button.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = warp_white_close_button.png; sourceTree = "<group>"; };
		E6A7788C282933E50045BBA8 /* WLPushManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLPushManager.m; sourceTree = "<group>"; };
		E6A7788D282933E50045BBA8 /* WLBeaconManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLBeaconManager.m; sourceTree = "<group>"; };
		E6A7788E282933E50045BBA8 /* WLLocationManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLLocationManager.m; sourceTree = "<group>"; };
		E6A7788F282933E50045BBA8 /* WLAnalyticsManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLAnalyticsManager.h; sourceTree = "<group>"; };
		E6A77890282933E50045BBA8 /* WLUserManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLUserManager.h; sourceTree = "<group>"; };
		E6A77891282933E50045BBA8 /* WLBeaconManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLBeaconManager.h; sourceTree = "<group>"; };
		E6A77892282933E50045BBA8 /* WLPushManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLPushManager.h; sourceTree = "<group>"; };
		E6A77893282933E50045BBA8 /* WLAnalyticsManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLAnalyticsManager.m; sourceTree = "<group>"; };
		E6A77894282933E50045BBA8 /* WLLocationManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLLocationManager.h; sourceTree = "<group>"; };
		E6A77895282933E50045BBA8 /* WLUserManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLUserManager.m; sourceTree = "<group>"; };
		E6A77897282933E50045BBA8 /* WLUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLUtils.m; sourceTree = "<group>"; };
		E6A77898282933E50045BBA8 /* UIViewController+WLAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIViewController+WLAdditions.h"; sourceTree = "<group>"; };
		E6A77899282933E50045BBA8 /* UIViewController+WLAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIViewController+WLAdditions.m"; sourceTree = "<group>"; };
		E6A7789A282933E50045BBA8 /* WLUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLUtils.h; sourceTree = "<group>"; };
		E6A7789B282933E50045BBA8 /* Warply.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = Warply.m; sourceTree = "<group>"; };
		E6A7789D282933E50045BBA8 /* WLAPPActionHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLAPPActionHandler.m; sourceTree = "<group>"; };
		E6A7789E282933E50045BBA8 /* WLSMSActionHanlder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLSMSActionHanlder.h; sourceTree = "<group>"; };
		E6A7789F282933E50045BBA8 /* WLSMSActionHandlerDeprecated.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLSMSActionHandlerDeprecated.m; sourceTree = "<group>"; };
		E6A778A0282933E50045BBA8 /* WLSMSActionHandlerDeprecated.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLSMSActionHandlerDeprecated.h; sourceTree = "<group>"; };
		E6A778A1282933E50045BBA8 /* WLSMSActionHanlder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = WLSMSActionHanlder.m; sourceTree = "<group>"; };
		E6A778A2282933E50045BBA8 /* WLAPPActionHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLAPPActionHandler.h; sourceTree = "<group>"; };
		E6A778A3282933E50045BBA8 /* WLGlobals.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLGlobals.h; sourceTree = "<group>"; };
		E6A778A6282933E50045BBA8 /* NSString+SSToolkitAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSString+SSToolkitAdditions.h"; sourceTree = "<group>"; };
		E6A778A7282933E50045BBA8 /* NSData+SSToolkitAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSData+SSToolkitAdditions.m"; sourceTree = "<group>"; };
		E6A778A8282933E50045BBA8 /* NSData+SSToolkitAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "NSData+SSToolkitAdditions.h"; sourceTree = "<group>"; };
		E6A778A9282933E50045BBA8 /* NSString+SSToolkitAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "NSString+SSToolkitAdditions.m"; sourceTree = "<group>"; };
		E6A778AB282933E50045BBA8 /* UIProgressView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIProgressView+AFNetworking.m"; sourceTree = "<group>"; };
		E6A778AC282933E50045BBA8 /* UIButton+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIButton+AFNetworking.h"; sourceTree = "<group>"; };
		E6A778AD282933E50045BBA8 /* UIRefreshControl+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIRefreshControl+AFNetworking.m"; sourceTree = "<group>"; };
		E6A778AE282933E50045BBA8 /* UIImageView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImageView+AFNetworking.h"; sourceTree = "<group>"; };
		E6A778AF282933E50045BBA8 /* AFImageDownloader.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFImageDownloader.h; sourceTree = "<group>"; };
		E6A778B0282933E60045BBA8 /* AFNetworkActivityIndicatorManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkActivityIndicatorManager.m; sourceTree = "<group>"; };
		E6A778B1282933E60045BBA8 /* AFAutoPurgingImageCache.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFAutoPurgingImageCache.h; sourceTree = "<group>"; };
		E6A778B2282933E60045BBA8 /* UIWebView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIWebView+AFNetworking.h"; sourceTree = "<group>"; };
		E6A778B3282933E60045BBA8 /* UIActivityIndicatorView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIActivityIndicatorView+AFNetworking.h"; sourceTree = "<group>"; };
		E6A778B4282933E60045BBA8 /* UIImage+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIImage+AFNetworking.h"; sourceTree = "<group>"; };
		E6A778B5282933E60045BBA8 /* UIProgressView+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIProgressView+AFNetworking.h"; sourceTree = "<group>"; };
		E6A778B6282933E60045BBA8 /* UIImageView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIImageView+AFNetworking.m"; sourceTree = "<group>"; };
		E6A778B7282933E60045BBA8 /* UIKit+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIKit+AFNetworking.h"; sourceTree = "<group>"; };
		E6A778B8282933E60045BBA8 /* UIRefreshControl+AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "UIRefreshControl+AFNetworking.h"; sourceTree = "<group>"; };
		E6A778B9282933E60045BBA8 /* UIButton+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIButton+AFNetworking.m"; sourceTree = "<group>"; };
		E6A778BA282933E60045BBA8 /* UIActivityIndicatorView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIActivityIndicatorView+AFNetworking.m"; sourceTree = "<group>"; };
		E6A778BB282933E60045BBA8 /* UIWebView+AFNetworking.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "UIWebView+AFNetworking.m"; sourceTree = "<group>"; };
		E6A778BC282933E60045BBA8 /* AFAutoPurgingImageCache.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFAutoPurgingImageCache.m; sourceTree = "<group>"; };
		E6A778BD282933E60045BBA8 /* AFNetworkActivityIndicatorManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkActivityIndicatorManager.h; sourceTree = "<group>"; };
		E6A778BE282933E60045BBA8 /* AFImageDownloader.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFImageDownloader.m; sourceTree = "<group>"; };
		E6A778C0282933E60045BBA8 /* AFSecurityPolicy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFSecurityPolicy.h; sourceTree = "<group>"; };
		E6A778C1282933E60045BBA8 /* AFNetworkReachabilityManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworkReachabilityManager.h; sourceTree = "<group>"; };
		E6A778C2282933E60045BBA8 /* AFURLSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLSessionManager.h; sourceTree = "<group>"; };
		E6A778C3282933E60045BBA8 /* AFURLRequestSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLRequestSerialization.h; sourceTree = "<group>"; };
		E6A778C4282933E60045BBA8 /* AFURLResponseSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLResponseSerialization.m; sourceTree = "<group>"; };
		E6A778C5282933E60045BBA8 /* AFHTTPSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFHTTPSessionManager.m; sourceTree = "<group>"; };
		E6A778C6282933E60045BBA8 /* AFURLResponseSerialization.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFURLResponseSerialization.h; sourceTree = "<group>"; };
		E6A778C7282933E60045BBA8 /* AFURLSessionManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLSessionManager.m; sourceTree = "<group>"; };
		E6A778C8282933E60045BBA8 /* AFURLRequestSerialization.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFURLRequestSerialization.m; sourceTree = "<group>"; };
		E6A778C9282933E60045BBA8 /* AFNetworking.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFNetworking.h; sourceTree = "<group>"; };
		E6A778CA282933E60045BBA8 /* AFNetworkReachabilityManager.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFNetworkReachabilityManager.m; sourceTree = "<group>"; };
		E6A778CB282933E60045BBA8 /* AFSecurityPolicy.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AFSecurityPolicy.m; sourceTree = "<group>"; };
		E6A778CC282933E60045BBA8 /* AFHTTPSessionManager.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AFHTTPSessionManager.h; sourceTree = "<group>"; };
		E6A778CE282933E60045BBA8 /* FMDatabase.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabase.h; sourceTree = "<group>"; };
		E6A778CF282933E60045BBA8 /* FMDatabaseQueue.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabaseQueue.m; sourceTree = "<group>"; };
		E6A778D0282933E60045BBA8 /* FMResultSet.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMResultSet.h; sourceTree = "<group>"; };
		E6A778D1282933E60045BBA8 /* FMDatabasePool.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabasePool.h; sourceTree = "<group>"; };
		E6A778D2282933E60045BBA8 /* FMDatabaseAdditions.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabaseAdditions.m; sourceTree = "<group>"; };
		E6A778D3282933E60045BBA8 /* FMDatabase.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabase.m; sourceTree = "<group>"; };
		E6A778D4282933E60045BBA8 /* FMDatabaseQueue.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabaseQueue.h; sourceTree = "<group>"; };
		E6A778D5282933E60045BBA8 /* FMDB.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDB.h; sourceTree = "<group>"; };
		E6A778D6282933E60045BBA8 /* FMDatabaseAdditions.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = FMDatabaseAdditions.h; sourceTree = "<group>"; };
		E6A778D7282933E60045BBA8 /* FMDatabasePool.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMDatabasePool.m; sourceTree = "<group>"; };
		E6A778D8282933E60045BBA8 /* FMResultSet.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = FMResultSet.m; sourceTree = "<group>"; };
		E6A778D9282933E60045BBA8 /* WLEvent.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = WLEvent.h; sourceTree = "<group>"; };
		E6A778DA282933E60045BBA8 /* Warply.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Warply.h; sourceTree = "<group>"; };
		E6A778DB282933E60045BBA8 /* MFYViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MFYViewController.swift; sourceTree = "<group>"; };
		E6A778DC282933E60045BBA8 /* MyApi.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MyApi.m; sourceTree = "<group>"; };
		E6A778DD282933E60045BBA8 /* ViewControllerExtensions.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewControllerExtensions.swift; sourceTree = "<group>"; };
		E6A778DE282933E60045BBA8 /* GiftsViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = GiftsViewController.swift; sourceTree = "<group>"; };
		E6A77A31282BA9C60045BBA8 /* CampaignViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CampaignViewController.swift; sourceTree = "<group>"; };
		E6A77A33282BB3BB0045BBA8 /* ActiveGiftsViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ActiveGiftsViewController.swift; sourceTree = "<group>"; };
		E6A77A35282BB4CB0045BBA8 /* MakeItAPresentViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MakeItAPresentViewController.swift; sourceTree = "<group>"; };
		E6A77A37282BC3530045BBA8 /* Media.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Media.xcassets; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		E6A7784B282933340045BBA8 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1E2966EA2837A21D00F83FAC /* RSBarcodes_Swift in Frameworks */,
				7630AD9A6242D60846D6750C /* Pods_SwiftWarplyFramework.framework in Frameworks */,
				1EBF5F072840E13F00B8B17F /* SwiftEventBus in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		1E108A8B28A3F8FF0008B8E7 /* Resources */ = {
			isa = PBXGroup;
			children = (
				1E108A8C28A3F9090008B8E7 /* Fonts */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		1E108A8C28A3F9090008B8E7 /* Fonts */ = {
			isa = PBXGroup;
			children = (
				1E108A9028A3F9280008B8E7 /* pf_square_sans_pro_bold_italic.ttf */,
				1E108A9128A3F9280008B8E7 /* pf_square_sans_pro_bold.ttf */,
				1E108A8F28A3F9280008B8E7 /* pf_square_sans_pro_extra_black.ttf */,
				1E108A8E28A3F9280008B8E7 /* pf_square_sans_pro_medium.ttf */,
				1E108A8D28A3F9270008B8E7 /* pf_square_sans_pro_regular.ttf */,
			);
			name = Fonts;
			sourceTree = "<group>";
		};
		98AD36FA62350CEABCD961A7 /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				C0D5F56DD4E5371A50AD2D87 /* Pods_SwiftWarplyFramework.framework */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
		A079366A2885CDDC00064122 /* analysis */ = {
			isa = PBXGroup;
			children = (
				A079367A2885F2D100064122 /* cells */,
				1EB5F4C9285370C90016F36E /* LoyaltyAnalysisViewController.swift */,
				A079366D2885D07700064122 /* AnalysisChildViewController.swift */,
				A04D31DD288FF670000E43B5 /* HistoryViewController.swift */,
				A09DBCAD2888BA8100DD50B0 /* SharingHistoryViewController.swift */,
			);
			name = analysis;
			sourceTree = "<group>";
		};
		A07936712885E65C00064122 /* models */ = {
			isa = PBXGroup;
			children = (
				A07936722885E67400064122 /* AnalysisItem.swift */,
			);
			name = models;
			sourceTree = "<group>";
		};
		A07936742885E96A00064122 /* utilities */ = {
			isa = PBXGroup;
			children = (
				A07936752885E9CC00064122 /* UIColorExtensions.swift */,
			);
			name = utilities;
			sourceTree = "<group>";
		};
		A079367A2885F2D100064122 /* cells */ = {
			isa = PBXGroup;
			children = (
				A079366F2885D95600064122 /* AnalysisItemViewCell.swift */,
				A079367B2885F2F500064122 /* AnalysisHeaderViewCell.swift */,
				A079367D2885F60A00064122 /* AnalysisHeaderMessageViewCell.swift */,
			);
			name = cells;
			sourceTree = "<group>";
		};
		C049E0423E2B72D796B777A3 /* Pods */ = {
			isa = PBXGroup;
			children = (
				A9B7BE01A4E812DE49866EF8 /* Pods-SwiftWarplyFramework.debug.xcconfig */,
				B9EB8A451EF0C5AD75094EEE /* Pods-SwiftWarplyFramework.release.xcconfig */,
			);
			path = Pods;
			sourceTree = "<group>";
		};
		E6A77844282933340045BBA8 = {
			isa = PBXGroup;
			children = (
				E6A77850282933340045BBA8 /* SwiftWarplyFramework */,
				E6A7784F282933340045BBA8 /* Products */,
				C049E0423E2B72D796B777A3 /* Pods */,
				98AD36FA62350CEABCD961A7 /* Frameworks */,
			);
			sourceTree = "<group>";
		};
		E6A7784F282933340045BBA8 /* Products */ = {
			isa = PBXGroup;
			children = (
				E6A7784E282933340045BBA8 /* SwiftWarplyFramework.framework */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		E6A77850282933340045BBA8 /* SwiftWarplyFramework */ = {
			isa = PBXGroup;
			children = (
				1EDCB47929DEEC2E00DF218B /* UnifiedCouponBarcodeViewController.swift */,
				1E029A4029E002CF00CC7447 /* UnifiedCouponBCHeaderTableViewCell.swift */,
				1E029A4229E0031600CC7447 /* UnifiedCouponBCFooterTableViewCell.swift */,
				1E15B9A329DDD211000A408D /* MarketHistoryViewController.swift */,
				1EBC75422922829D004FBE75 /* SpinnerViewController.swift */,
				1ECA079028D9E3BA00D2BDE0 /* CSMButton.swift */,
				1E108A9728A3FA9B0008B8E7 /* Info.plist */,
				1E108A8B28A3F8FF0008B8E7 /* Resources */,
				A02F34042882B6E60086465F /* TelcoViewController.swift */,
				A07936712885E65C00064122 /* models */,
				A079366A2885CDDC00064122 /* analysis */,
				A07936742885E96A00064122 /* utilities */,
				E6A7785E282933E40045BBA8 /* CouponsViewController.swift */,
				1EA1AF092835346A008998AA /* CouponsTableViewCell.swift */,
				E6A7785D282933E40045BBA8 /* CouponViewController.swift */,
				1E151F1729DAE48500951FA0 /* UnifiedCouponsTableViewCell.swift */,
				1E151F1929DAE4D500951FA0 /* ActiveCodeTableViewCell.swift */,
				1E74838C28378AF40042A589 /* CouponBarcodeViewController.swift */,
				E6A77863282933E50045BBA8 /* DetailsViewController.swift */,
				E6A778DE282933E60045BBA8 /* GiftsViewController.swift */,
				1EA2BB782865BFE8003F2AB0 /* InboxTableViewCell.swift */,
				1EBE97202865EE460080EFF7 /* MFYInboxTableViewCell.swift */,
				E6A778DB282933E60045BBA8 /* MFYViewController.swift */,
				E6A7785F282933E40045BBA8 /* WalletViewController.swift */,
				E6A77A31282BA9C60045BBA8 /* CampaignViewController.swift */,
				E6A77A33282BB3BB0045BBA8 /* ActiveGiftsViewController.swift */,
				E6A77A35282BB4CB0045BBA8 /* MakeItAPresentViewController.swift */,
				E6A7785A282933E40045BBA8 /* Helpers */,
				E6A77861282933E50045BBA8 /* Main.storyboard */,
				1E15B9A129DDCF02000A408D /* MarketSharingHistoryViewController.swift */,
				1EAEFC7929DDCAF500114A1C /* MarketLoyaltyAnalysisViewController.swift */,
				1E479FB229DD948B00C38193 /* WalletBadgesTableViewCell.swift */,
				1EA771AB290977CA0030924C /* CopyableLabel.swift */,
				1E4410B028F5855000859F92 /* CampaignCategory.swift */,
				1EDCDFAB28DB29E8002ED8F0 /* AnalysisMoreViewCell.swift */,
				1E87A9EE28C2021200C79F90 /* ContextualViewController.swift */,
				1EB236AA28816B680063777A /* ShareViewController.swift */,
				1EB236AC28816C560063777A /* NumberPopupViewController.swift */,
				1EB236AE28816CAB0063777A /* NumbersTableViewCell.swift */,
				1EB5F4C728536FD60016F36E /* StepsViewController.swift */,
				E6A77860282933E40045BBA8 /* MyApi.h */,
				E6A778DC282933E60045BBA8 /* MyApi.m */,
				E6A77862282933E50045BBA8 /* MyEmptyClass.swift */,
				E6A77864282933E50045BBA8 /* swiftApi.swift */,
				E6A778DD282933E60045BBA8 /* ViewControllerExtensions.swift */,
				E6A77865282933E50045BBA8 /* Warply */,
				E6A77851282933340045BBA8 /* SwiftWarplyFramework.h */,
				E6A77852282933340045BBA8 /* SwiftWarplyFramework.docc */,
				E6A77A37282BC3530045BBA8 /* Media.xcassets */,
				1ECA079228D9E53F00D2BDE0 /* MapsViewController.swift */,
				1ECA079628D9E66200D2BDE0 /* MerchantAnnotation.swift */,
				1ECA079328D9E53F00D2BDE0 /* MapsViewController.xib */,
			);
			path = SwiftWarplyFramework;
			sourceTree = "<group>";
		};
		E6A7785A282933E40045BBA8 /* Helpers */ = {
			isa = PBXGroup;
			children = (
				E6A7785B282933E40045BBA8 /* WarplyReactMethods.m */,
				E6A7785C282933E40045BBA8 /* WarplyReactMethods.h */,
			);
			path = Helpers;
			sourceTree = "<group>";
		};
		E6A77865282933E50045BBA8 /* Warply */ = {
			isa = PBXGroup;
			children = (
				E6A77866282933E50045BBA8 /* nativeAds */,
				E6A77878282933E50045BBA8 /* inbox */,
				E6A77883282933E50045BBA8 /* WLEvent.m */,
				E6A77884282933E50045BBA8 /* resources */,
				E6A7788B282933E50045BBA8 /* managers */,
				E6A77896282933E50045BBA8 /* foundation */,
				E6A7789B282933E50045BBA8 /* Warply.m */,
				E6A7789C282933E50045BBA8 /* actions */,
				E6A778A3282933E50045BBA8 /* WLGlobals.h */,
				E6A778A4282933E50045BBA8 /* external */,
				E6A778D9282933E60045BBA8 /* WLEvent.h */,
				E6A778DA282933E60045BBA8 /* Warply.h */,
			);
			path = Warply;
			sourceTree = "<group>";
		};
		E6A77866282933E50045BBA8 /* nativeAds */ = {
			isa = PBXGroup;
			children = (
				E6A77867282933E50045BBA8 /* WLNativeAdCollectionViewCell.h */,
				E6A77868282933E50045BBA8 /* WLNativeVideoTableViewCell.xib */,
				E6A77869282933E50045BBA8 /* WLNativeAdTableViewCell.h */,
				E6A7786A282933E50045BBA8 /* WLNativeVideoTableViewCell.m */,
				E6A7786B282933E50045BBA8 /* WLCustomNativeCollectionViewCell.m */,
				E6A7786C282933E50045BBA8 /* WLNativeAdsTableMode.m */,
				E6A7786D282933E50045BBA8 /* WLCustomNativeAdTableViewCell.h */,
				E6A7786E282933E50045BBA8 /* WLNativeAdsCollectionMode.m */,
				E6A7786F282933E50045BBA8 /* WLNativeAdTableViewCell.m */,
				E6A77870282933E50045BBA8 /* WLNativeAdCollectionViewCell.m */,
				E6A77871282933E50045BBA8 /* WLNativeAdTableViewCell.xib */,
				E6A77872282933E50045BBA8 /* WLNativeAdCollectionViewCell.xib */,
				E6A77873282933E50045BBA8 /* WLCustomNativeAdTableViewCell.m */,
				E6A77874282933E50045BBA8 /* WLNativeAdsTableMode.h */,
				E6A77875282933E50045BBA8 /* WLCustomNativeCollectionViewCell.h */,
				E6A77876282933E50045BBA8 /* WLNativeVideoTableViewCell.h */,
				E6A77877282933E50045BBA8 /* WLNativeAdsCollectionMode.h */,
			);
			path = nativeAds;
			sourceTree = "<group>";
		};
		E6A77878282933E50045BBA8 /* inbox */ = {
			isa = PBXGroup;
			children = (
				E6A77879282933E50045BBA8 /* WLBeacon.h */,
				E6A7787A282933E50045BBA8 /* WLBaseItem.h */,
				E6A7787B282933E50045BBA8 /* WLInboxItemViewController.h */,
				E6A7787C282933E50045BBA8 /* WLInboxItem.m */,
				E6A7787D282933E50045BBA8 /* WLAPSItem.h */,
				E6A7787E282933E50045BBA8 /* WLBeacon.m */,
				E6A7787F282933E50045BBA8 /* WLInboxItemViewController.m */,
				E6A77880282933E50045BBA8 /* WLBaseItem.m */,
				E6A77881282933E50045BBA8 /* WLInboxItem.h */,
				E6A77882282933E50045BBA8 /* WLAPSItem.m */,
			);
			path = inbox;
			sourceTree = "<group>";
		};
		E6A77884282933E50045BBA8 /* resources */ = {
			isa = PBXGroup;
			children = (
				E6A77885282933E50045BBA8 /* warp_white_back_button@2x.png */,
				E6A77886282933E50045BBA8 /* warp_white_forward_button.png */,
				E6A77887282933E50045BBA8 /* warp_white_back_button.png */,
				E6A77888282933E50045BBA8 /* warp_white_close_button@2x.png */,
				E6A77889282933E50045BBA8 /* warp_white_forward_button@2x.png */,
				E6A7788A282933E50045BBA8 /* warp_white_close_button.png */,
			);
			path = resources;
			sourceTree = "<group>";
		};
		E6A7788B282933E50045BBA8 /* managers */ = {
			isa = PBXGroup;
			children = (
				E6A7788C282933E50045BBA8 /* WLPushManager.m */,
				E6A7788D282933E50045BBA8 /* WLBeaconManager.m */,
				E6A7788E282933E50045BBA8 /* WLLocationManager.m */,
				E6A7788F282933E50045BBA8 /* WLAnalyticsManager.h */,
				E6A77890282933E50045BBA8 /* WLUserManager.h */,
				E6A77891282933E50045BBA8 /* WLBeaconManager.h */,
				E6A77892282933E50045BBA8 /* WLPushManager.h */,
				E6A77893282933E50045BBA8 /* WLAnalyticsManager.m */,
				E6A77894282933E50045BBA8 /* WLLocationManager.h */,
				E6A77895282933E50045BBA8 /* WLUserManager.m */,
			);
			path = managers;
			sourceTree = "<group>";
		};
		E6A77896282933E50045BBA8 /* foundation */ = {
			isa = PBXGroup;
			children = (
				E6A77897282933E50045BBA8 /* WLUtils.m */,
				E6A77898282933E50045BBA8 /* UIViewController+WLAdditions.h */,
				E6A77899282933E50045BBA8 /* UIViewController+WLAdditions.m */,
				E6A7789A282933E50045BBA8 /* WLUtils.h */,
			);
			path = foundation;
			sourceTree = "<group>";
		};
		E6A7789C282933E50045BBA8 /* actions */ = {
			isa = PBXGroup;
			children = (
				E6A7789D282933E50045BBA8 /* WLAPPActionHandler.m */,
				E6A7789E282933E50045BBA8 /* WLSMSActionHanlder.h */,
				E6A7789F282933E50045BBA8 /* WLSMSActionHandlerDeprecated.m */,
				E6A778A0282933E50045BBA8 /* WLSMSActionHandlerDeprecated.h */,
				E6A778A1282933E50045BBA8 /* WLSMSActionHanlder.m */,
				E6A778A2282933E50045BBA8 /* WLAPPActionHandler.h */,
			);
			path = actions;
			sourceTree = "<group>";
		};
		E6A778A4282933E50045BBA8 /* external */ = {
			isa = PBXGroup;
			children = (
				E6A778A5282933E50045BBA8 /* sstoolkit */,
				E6A778AA282933E50045BBA8 /* UIKit+AFNetworking */,
				E6A778BF282933E60045BBA8 /* AFNetworking */,
				E6A778CD282933E60045BBA8 /* fmdb */,
			);
			path = external;
			sourceTree = "<group>";
		};
		E6A778A5282933E50045BBA8 /* sstoolkit */ = {
			isa = PBXGroup;
			children = (
				E6A778A6282933E50045BBA8 /* NSString+SSToolkitAdditions.h */,
				E6A778A7282933E50045BBA8 /* NSData+SSToolkitAdditions.m */,
				E6A778A8282933E50045BBA8 /* NSData+SSToolkitAdditions.h */,
				E6A778A9282933E50045BBA8 /* NSString+SSToolkitAdditions.m */,
			);
			path = sstoolkit;
			sourceTree = "<group>";
		};
		E6A778AA282933E50045BBA8 /* UIKit+AFNetworking */ = {
			isa = PBXGroup;
			children = (
				E6A778AB282933E50045BBA8 /* UIProgressView+AFNetworking.m */,
				E6A778AC282933E50045BBA8 /* UIButton+AFNetworking.h */,
				E6A778AD282933E50045BBA8 /* UIRefreshControl+AFNetworking.m */,
				E6A778AE282933E50045BBA8 /* UIImageView+AFNetworking.h */,
				E6A778AF282933E50045BBA8 /* AFImageDownloader.h */,
				E6A778B0282933E60045BBA8 /* AFNetworkActivityIndicatorManager.m */,
				E6A778B1282933E60045BBA8 /* AFAutoPurgingImageCache.h */,
				E6A778B2282933E60045BBA8 /* UIWebView+AFNetworking.h */,
				E6A778B3282933E60045BBA8 /* UIActivityIndicatorView+AFNetworking.h */,
				E6A778B4282933E60045BBA8 /* UIImage+AFNetworking.h */,
				E6A778B5282933E60045BBA8 /* UIProgressView+AFNetworking.h */,
				E6A778B6282933E60045BBA8 /* UIImageView+AFNetworking.m */,
				E6A778B7282933E60045BBA8 /* UIKit+AFNetworking.h */,
				E6A778B8282933E60045BBA8 /* UIRefreshControl+AFNetworking.h */,
				E6A778B9282933E60045BBA8 /* UIButton+AFNetworking.m */,
				E6A778BA282933E60045BBA8 /* UIActivityIndicatorView+AFNetworking.m */,
				E6A778BB282933E60045BBA8 /* UIWebView+AFNetworking.m */,
				E6A778BC282933E60045BBA8 /* AFAutoPurgingImageCache.m */,
				E6A778BD282933E60045BBA8 /* AFNetworkActivityIndicatorManager.h */,
				E6A778BE282933E60045BBA8 /* AFImageDownloader.m */,
			);
			path = "UIKit+AFNetworking";
			sourceTree = "<group>";
		};
		E6A778BF282933E60045BBA8 /* AFNetworking */ = {
			isa = PBXGroup;
			children = (
				E6A778C0282933E60045BBA8 /* AFSecurityPolicy.h */,
				E6A778C1282933E60045BBA8 /* AFNetworkReachabilityManager.h */,
				E6A778C2282933E60045BBA8 /* AFURLSessionManager.h */,
				E6A778C3282933E60045BBA8 /* AFURLRequestSerialization.h */,
				E6A778C4282933E60045BBA8 /* AFURLResponseSerialization.m */,
				E6A778C5282933E60045BBA8 /* AFHTTPSessionManager.m */,
				E6A778C6282933E60045BBA8 /* AFURLResponseSerialization.h */,
				E6A778C7282933E60045BBA8 /* AFURLSessionManager.m */,
				E6A778C8282933E60045BBA8 /* AFURLRequestSerialization.m */,
				E6A778C9282933E60045BBA8 /* AFNetworking.h */,
				E6A778CA282933E60045BBA8 /* AFNetworkReachabilityManager.m */,
				E6A778CB282933E60045BBA8 /* AFSecurityPolicy.m */,
				E6A778CC282933E60045BBA8 /* AFHTTPSessionManager.h */,
			);
			path = AFNetworking;
			sourceTree = "<group>";
		};
		E6A778CD282933E60045BBA8 /* fmdb */ = {
			isa = PBXGroup;
			children = (
				E6A778CE282933E60045BBA8 /* FMDatabase.h */,
				E6A778CF282933E60045BBA8 /* FMDatabaseQueue.m */,
				E6A778D0282933E60045BBA8 /* FMResultSet.h */,
				E6A778D1282933E60045BBA8 /* FMDatabasePool.h */,
				E6A778D2282933E60045BBA8 /* FMDatabaseAdditions.m */,
				E6A778D3282933E60045BBA8 /* FMDatabase.m */,
				E6A778D4282933E60045BBA8 /* FMDatabaseQueue.h */,
				E6A778D5282933E60045BBA8 /* FMDB.h */,
				E6A778D6282933E60045BBA8 /* FMDatabaseAdditions.h */,
				E6A778D7282933E60045BBA8 /* FMDatabasePool.m */,
				E6A778D8282933E60045BBA8 /* FMResultSet.m */,
			);
			path = fmdb;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		E6A77849282933340045BBA8 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E6A7793B282933E70045BBA8 /* AFURLSessionManager.h in Headers */,
				E6A7790E282933E60045BBA8 /* WLAnalyticsManager.h in Headers */,
				E6A778EB282933E60045BBA8 /* WLNativeAdTableViewCell.h in Headers */,
				E6A77952282933E70045BBA8 /* Warply.h in Headers */,
				E6A7792B282933E70045BBA8 /* AFAutoPurgingImageCache.h in Headers */,
				E6A778E4282933E60045BBA8 /* MyApi.h in Headers */,
				E6A7791B282933E60045BBA8 /* WLSMSActionHanlder.h in Headers */,
				E6A778FA282933E60045BBA8 /* WLBeacon.h in Headers */,
				E6A778E0282933E60045BBA8 /* WarplyReactMethods.h in Headers */,
				E6A77928282933E70045BBA8 /* UIImageView+AFNetworking.h in Headers */,
				E6A778E9282933E60045BBA8 /* WLNativeAdCollectionViewCell.h in Headers */,
				E6A778F7282933E60045BBA8 /* WLCustomNativeCollectionViewCell.h in Headers */,
				E6A77910282933E60045BBA8 /* WLBeaconManager.h in Headers */,
				E6A77913282933E60045BBA8 /* WLLocationManager.h in Headers */,
				E6A77923282933E70045BBA8 /* NSData+SSToolkitAdditions.h in Headers */,
				E6A77918282933E60045BBA8 /* WLUtils.h in Headers */,
				E6A778EF282933E60045BBA8 /* WLCustomNativeAdTableViewCell.h in Headers */,
				E6A778FE282933E60045BBA8 /* WLAPSItem.h in Headers */,
				E6A7793F282933E70045BBA8 /* AFURLResponseSerialization.h in Headers */,
				E6A77926282933E70045BBA8 /* UIButton+AFNetworking.h in Headers */,
				E6A77921282933E60045BBA8 /* NSString+SSToolkitAdditions.h in Headers */,
				E6A7794C282933E70045BBA8 /* FMDatabaseQueue.h in Headers */,
				E6A778FC282933E60045BBA8 /* WLInboxItemViewController.h in Headers */,
				E6A7792F282933E70045BBA8 /* UIProgressView+AFNetworking.h in Headers */,
				E6A7792C282933E70045BBA8 /* UIWebView+AFNetworking.h in Headers */,
				E6A778FB282933E60045BBA8 /* WLBaseItem.h in Headers */,
				E6A7791F282933E60045BBA8 /* WLAPPActionHandler.h in Headers */,
				E6A778F6282933E60045BBA8 /* WLNativeAdsTableMode.h in Headers */,
				E6A7794D282933E70045BBA8 /* FMDB.h in Headers */,
				E6A77945282933E70045BBA8 /* AFHTTPSessionManager.h in Headers */,
				E6A77854282933340045BBA8 /* SwiftWarplyFramework.h in Headers */,
				E6A7794E282933E70045BBA8 /* FMDatabaseAdditions.h in Headers */,
				E6A77931282933E70045BBA8 /* UIKit+AFNetworking.h in Headers */,
				E6A77916282933E60045BBA8 /* UIViewController+WLAdditions.h in Headers */,
				E6A77911282933E60045BBA8 /* WLPushManager.h in Headers */,
				E6A77920282933E60045BBA8 /* WLGlobals.h in Headers */,
				E6A77937282933E70045BBA8 /* AFNetworkActivityIndicatorManager.h in Headers */,
				E6A77948282933E70045BBA8 /* FMResultSet.h in Headers */,
				E6A77932282933E70045BBA8 /* UIRefreshControl+AFNetworking.h in Headers */,
				E6A77946282933E70045BBA8 /* FMDatabase.h in Headers */,
				E6A77939282933E70045BBA8 /* AFSecurityPolicy.h in Headers */,
				E6A7792D282933E70045BBA8 /* UIActivityIndicatorView+AFNetworking.h in Headers */,
				E6A77949282933E70045BBA8 /* FMDatabasePool.h in Headers */,
				E6A7793A282933E70045BBA8 /* AFNetworkReachabilityManager.h in Headers */,
				E6A77902282933E60045BBA8 /* WLInboxItem.h in Headers */,
				E6A7792E282933E70045BBA8 /* UIImage+AFNetworking.h in Headers */,
				E6A77929282933E70045BBA8 /* AFImageDownloader.h in Headers */,
				E6A77951282933E70045BBA8 /* WLEvent.h in Headers */,
				E6A7793C282933E70045BBA8 /* AFURLRequestSerialization.h in Headers */,
				E6A7790F282933E60045BBA8 /* WLUserManager.h in Headers */,
				E6A778F9282933E60045BBA8 /* WLNativeAdsCollectionMode.h in Headers */,
				E6A778F8282933E60045BBA8 /* WLNativeVideoTableViewCell.h in Headers */,
				E6A7791D282933E60045BBA8 /* WLSMSActionHandlerDeprecated.h in Headers */,
				E6A77942282933E70045BBA8 /* AFNetworking.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		E6A7784D282933340045BBA8 /* SwiftWarplyFramework */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = E6A77857282933340045BBA8 /* Build configuration list for PBXNativeTarget "SwiftWarplyFramework" */;
			buildPhases = (
				30C064E49E4E7AFFB7A52D4A /* [CP] Check Pods Manifest.lock */,
				E6A77849282933340045BBA8 /* Headers */,
				E6A7784A282933340045BBA8 /* Sources */,
				E6A7784B282933340045BBA8 /* Frameworks */,
				E6A7784C282933340045BBA8 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = SwiftWarplyFramework;
			packageProductDependencies = (
				1E2966E92837A21D00F83FAC /* RSBarcodes_Swift */,
				1EBF5F062840E13F00B8B17F /* SwiftEventBus */,
			);
			productName = SwiftWarplyFramework;
			productReference = E6A7784E282933340045BBA8 /* SwiftWarplyFramework.framework */;
			productType = "com.apple.product-type.framework";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		E6A77845282933340045BBA8 /* Project object */ = {
			isa = PBXProject;
			attributes = {
				BuildIndependentTargetsInParallel = 1;
				LastUpgradeCheck = 1330;
				TargetAttributes = {
					E6A7784D282933340045BBA8 = {
						CreatedOnToolsVersion = 13.3.1;
						LastSwiftMigration = 1330;
					};
				};
			};
			buildConfigurationList = E6A77848282933340045BBA8 /* Build configuration list for PBXProject "SwiftWarplyFramework" */;
			compatibilityVersion = "Xcode 13.0";
			developmentRegion = en;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
				Base,
			);
			mainGroup = E6A77844282933340045BBA8;
			packageReferences = (
				1E2966E82837A21D00F83FAC /* XCRemoteSwiftPackageReference "RSBarcodes_Swift" */,
				1EBF5F052840E13F00B8B17F /* XCRemoteSwiftPackageReference "SwiftEventBus" */,
			);
			productRefGroup = E6A7784F282933340045BBA8 /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				E6A7784D282933340045BBA8 /* SwiftWarplyFramework */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		E6A7784C282933340045BBA8 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E6A778E5282933E60045BBA8 /* Main.storyboard in Resources */,
				1E108A9628A3F9280008B8E7 /* pf_square_sans_pro_bold.ttf in Resources */,
				1E108A9228A3F9280008B8E7 /* pf_square_sans_pro_regular.ttf in Resources */,
				1ECA079528D9E53F00D2BDE0 /* MapsViewController.xib in Resources */,
				E6A778EA282933E60045BBA8 /* WLNativeVideoTableViewCell.xib in Resources */,
				1E108A9528A3F9280008B8E7 /* pf_square_sans_pro_bold_italic.ttf in Resources */,
				E6A7790A282933E60045BBA8 /* warp_white_close_button.png in Resources */,
				E6A778F4282933E60045BBA8 /* WLNativeAdCollectionViewCell.xib in Resources */,
				E6A778F3282933E60045BBA8 /* WLNativeAdTableViewCell.xib in Resources */,
				E6A77A38282BC3530045BBA8 /* Media.xcassets in Resources */,
				E6A77905282933E60045BBA8 /* warp_white_back_button@2x.png in Resources */,
				E6A77908282933E60045BBA8 /* warp_white_close_button@2x.png in Resources */,
				E6A77909282933E60045BBA8 /* warp_white_forward_button@2x.png in Resources */,
				E6A77906282933E60045BBA8 /* warp_white_forward_button.png in Resources */,
				1E108A9328A3F9280008B8E7 /* pf_square_sans_pro_medium.ttf in Resources */,
				E6A77907282933E60045BBA8 /* warp_white_back_button.png in Resources */,
				1E108A9428A3F9280008B8E7 /* pf_square_sans_pro_extra_black.ttf in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
		30C064E49E4E7AFFB7A52D4A /* [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-SwiftWarplyFramework-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 */
		E6A7784A282933340045BBA8 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E6A7791E282933E60045BBA8 /* WLSMSActionHanlder.m in Sources */,
				E6A778F5282933E60045BBA8 /* WLCustomNativeAdTableViewCell.m in Sources */,
				1EB5F4C828536FD60016F36E /* StepsViewController.swift in Sources */,
				A02F34052882B6E60086465F /* TelcoViewController.swift in Sources */,
				E6A77901282933E60045BBA8 /* WLBaseItem.m in Sources */,
				1E74838D28378AF40042A589 /* CouponBarcodeViewController.swift in Sources */,
				1E479FB329DD948B00C38193 /* WalletBadgesTableViewCell.swift in Sources */,
				1E151F1829DAE48500951FA0 /* UnifiedCouponsTableViewCell.swift in Sources */,
				E6A778F0282933E60045BBA8 /* WLNativeAdsCollectionMode.m in Sources */,
				E6A7791C282933E60045BBA8 /* WLSMSActionHandlerDeprecated.m in Sources */,
				E6A77934282933E70045BBA8 /* UIActivityIndicatorView+AFNetworking.m in Sources */,
				E6A77A34282BB3BB0045BBA8 /* ActiveGiftsViewController.swift in Sources */,
				E6A778E6282933E60045BBA8 /* MyEmptyClass.swift in Sources */,
				E6A77912282933E60045BBA8 /* WLAnalyticsManager.m in Sources */,
				E6A778E2282933E60045BBA8 /* CouponsViewController.swift in Sources */,
				E6A77930282933E70045BBA8 /* UIImageView+AFNetworking.m in Sources */,
				E6A77900282933E60045BBA8 /* WLInboxItemViewController.m in Sources */,
				1E87A9EF28C2021200C79F90 /* ContextualViewController.swift in Sources */,
				E6A7793E282933E70045BBA8 /* AFHTTPSessionManager.m in Sources */,
				E6A77933282933E70045BBA8 /* UIButton+AFNetworking.m in Sources */,
				E6A77919282933E60045BBA8 /* Warply.m in Sources */,
				1E15B9A429DDD211000A408D /* MarketHistoryViewController.swift in Sources */,
				E6A77953282933E70045BBA8 /* MFYViewController.swift in Sources */,
				E6A7794B282933E70045BBA8 /* FMDatabase.m in Sources */,
				E6A778EC282933E60045BBA8 /* WLNativeVideoTableViewCell.m in Sources */,
				E6A77954282933E70045BBA8 /* MyApi.m in Sources */,
				A09DBCAE2888BA8100DD50B0 /* SharingHistoryViewController.swift in Sources */,
				E6A778F2282933E60045BBA8 /* WLNativeAdCollectionViewCell.m in Sources */,
				E6A77904282933E60045BBA8 /* WLEvent.m in Sources */,
				E6A77927282933E70045BBA8 /* UIRefreshControl+AFNetworking.m in Sources */,
				E6A77955282933E70045BBA8 /* ViewControllerExtensions.swift in Sources */,
				A07936762885E9CC00064122 /* UIColorExtensions.swift in Sources */,
				A079367C2885F2F500064122 /* AnalysisHeaderViewCell.swift in Sources */,
				E6A7795A28293D390045BBA8 /* swiftApi.swift in Sources */,
				E6A77935282933E70045BBA8 /* UIWebView+AFNetworking.m in Sources */,
				E6A77925282933E70045BBA8 /* UIProgressView+AFNetworking.m in Sources */,
				E6A77944282933E70045BBA8 /* AFSecurityPolicy.m in Sources */,
				1EA1AF0A2835346A008998AA /* CouponsTableViewCell.swift in Sources */,
				1EAEFC7A29DDCAF500114A1C /* MarketLoyaltyAnalysisViewController.swift in Sources */,
				E6A77A32282BA9C60045BBA8 /* CampaignViewController.swift in Sources */,
				E6A77917282933E60045BBA8 /* UIViewController+WLAdditions.m in Sources */,
				1EA2BB792865BFE8003F2AB0 /* InboxTableViewCell.swift in Sources */,
				E6A77943282933E70045BBA8 /* AFNetworkReachabilityManager.m in Sources */,
				1ECA079428D9E53F00D2BDE0 /* MapsViewController.swift in Sources */,
				A07936702885D95600064122 /* AnalysisItemViewCell.swift in Sources */,
				E6A77956282933E70045BBA8 /* GiftsViewController.swift in Sources */,
				1ECA079728D9E66200D2BDE0 /* MerchantAnnotation.swift in Sources */,
				1EBC75432922829D004FBE75 /* SpinnerViewController.swift in Sources */,
				E6A778F1282933E60045BBA8 /* WLNativeAdTableViewCell.m in Sources */,
				E6A77853282933340045BBA8 /* SwiftWarplyFramework.docc in Sources */,
				E6A77938282933E70045BBA8 /* AFImageDownloader.m in Sources */,
				E6A778ED282933E60045BBA8 /* WLCustomNativeCollectionViewCell.m in Sources */,
				E6A7790D282933E60045BBA8 /* WLLocationManager.m in Sources */,
				E6A7793D282933E70045BBA8 /* AFURLResponseSerialization.m in Sources */,
				1EBE97212865EE460080EFF7 /* MFYInboxTableViewCell.swift in Sources */,
				E6A778FD282933E60045BBA8 /* WLInboxItem.m in Sources */,
				E6A778EE282933E60045BBA8 /* WLNativeAdsTableMode.m in Sources */,
				A07936732885E67400064122 /* AnalysisItem.swift in Sources */,
				1EDCB47A29DEEC2E00DF218B /* UnifiedCouponBarcodeViewController.swift in Sources */,
				E6A778DF282933E60045BBA8 /* WarplyReactMethods.m in Sources */,
				E6A77941282933E70045BBA8 /* AFURLRequestSerialization.m in Sources */,
				E6A77915282933E60045BBA8 /* WLUtils.m in Sources */,
				E6A77A36282BB4CB0045BBA8 /* MakeItAPresentViewController.swift in Sources */,
				E6A77947282933E70045BBA8 /* FMDatabaseQueue.m in Sources */,
				E6A77922282933E60045BBA8 /* NSData+SSToolkitAdditions.m in Sources */,
				1EA771AC290977CA0030924C /* CopyableLabel.swift in Sources */,
				1EB236AB28816B680063777A /* ShareViewController.swift in Sources */,
				E6A778E7282933E60045BBA8 /* DetailsViewController.swift in Sources */,
				1EB5F4CA285370C90016F36E /* LoyaltyAnalysisViewController.swift in Sources */,
				E6A7794A282933E70045BBA8 /* FMDatabaseAdditions.m in Sources */,
				E6A77903282933E60045BBA8 /* WLAPSItem.m in Sources */,
				1E029A4129E002CF00CC7447 /* UnifiedCouponBCHeaderTableViewCell.swift in Sources */,
				1ECA079128D9E3BA00D2BDE0 /* CSMButton.swift in Sources */,
				1E4410B128F5855000859F92 /* CampaignCategory.swift in Sources */,
				E6A7790B282933E60045BBA8 /* WLPushManager.m in Sources */,
				1E15B9A229DDCF02000A408D /* MarketSharingHistoryViewController.swift in Sources */,
				A079366E2885D07700064122 /* AnalysisChildViewController.swift in Sources */,
				E6A77950282933E70045BBA8 /* FMResultSet.m in Sources */,
				1E151F1A29DAE4D500951FA0 /* ActiveCodeTableViewCell.swift in Sources */,
				E6A77936282933E70045BBA8 /* AFAutoPurgingImageCache.m in Sources */,
				A079367E2885F60A00064122 /* AnalysisHeaderMessageViewCell.swift in Sources */,
				E6A778FF282933E60045BBA8 /* WLBeacon.m in Sources */,
				1E029A4329E0031600CC7447 /* UnifiedCouponBCFooterTableViewCell.swift in Sources */,
				E6A7791A282933E60045BBA8 /* WLAPPActionHandler.m in Sources */,
				E6A778E1282933E60045BBA8 /* CouponViewController.swift in Sources */,
				E6A77924282933E70045BBA8 /* NSString+SSToolkitAdditions.m in Sources */,
				A04D31DE288FF670000E43B5 /* HistoryViewController.swift in Sources */,
				E6A7792A282933E70045BBA8 /* AFNetworkActivityIndicatorManager.m in Sources */,
				E6A77914282933E60045BBA8 /* WLUserManager.m in Sources */,
				1EB236AF28816CAC0063777A /* NumbersTableViewCell.swift in Sources */,
				E6A7794F282933E70045BBA8 /* FMDatabasePool.m in Sources */,
				1EB236AD28816C560063777A /* NumberPopupViewController.swift in Sources */,
				E6A778E3282933E60045BBA8 /* WalletViewController.swift in Sources */,
				E6A7790C282933E60045BBA8 /* WLBeaconManager.m in Sources */,
				E6A77940282933E70045BBA8 /* AFURLSessionManager.m in Sources */,
				1EDCDFAC28DB29E8002ED8F0 /* AnalysisMoreViewCell.swift in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin XCBuildConfiguration section */
		E6A77855282933340045BBA8 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++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;
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = dwarf;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				ENABLE_TESTABILITY = YES;
				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 = 15.4;
				MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
				MTL_FAST_MATH = YES;
				ONLY_ACTIVE_ARCH = YES;
				SDKROOT = iphoneos;
				SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
		E6A77856282933340045BBA8 /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++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;
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				ENABLE_NS_ASSERTIONS = NO;
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				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 = 15.4;
				MTL_ENABLE_DEBUG_INFO = NO;
				MTL_FAST_MATH = YES;
				SDKROOT = iphoneos;
				SWIFT_COMPILATION_MODE = wholemodule;
				SWIFT_OPTIMIZATION_LEVEL = "-O";
				VALIDATE_PRODUCT = YES;
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
		E6A77858282933340045BBA8 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = A9B7BE01A4E812DE49866EF8 /* Pods-SwiftWarplyFramework.debug.xcconfig */;
			buildSettings = {
				CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
				CLANG_ENABLE_MODULES = YES;
				CODE_SIGN_STYLE = Automatic;
				CURRENT_PROJECT_VERSION = 1;
				DEFINES_MODULE = YES;
				DEVELOPMENT_TEAM = VW5AF53FLP;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				GENERATE_INFOPLIST_FILE = YES;
				INFOPLIST_FILE = SwiftWarplyFramework/Info.plist;
				INFOPLIST_KEY_NSHumanReadableCopyright = "";
				INFOPLIST_KEY_NSMotionUsageDescription = "We are using motion usage in order to track your step count.";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 11.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
					"@loader_path/Frameworks",
				);
				MARKETING_VERSION = 1.0;
				OTHER_CODE_SIGN_FLAGS = "";
				"OTHER_CODE_SIGN_FLAGS[sdk=*]" = "--generate-entitlement-der";
				PRODUCT_BUNDLE_IDENTIFIER = framework.warp.ly.SwiftWarplyFramework;
				PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
				SKIP_INSTALL = YES;
				SUPPORTS_MACCATALYST = NO;
				SWIFT_EMIT_LOC_STRINGS = YES;
				SWIFT_OPTIMIZATION_LEVEL = "-Onone";
				SWIFT_VERSION = 5.0;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Debug;
		};
		E6A77859282933340045BBA8 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = B9EB8A451EF0C5AD75094EEE /* Pods-SwiftWarplyFramework.release.xcconfig */;
			buildSettings = {
				CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES;
				CLANG_ENABLE_MODULES = YES;
				CODE_SIGN_STYLE = Automatic;
				CURRENT_PROJECT_VERSION = 1;
				DEFINES_MODULE = YES;
				DEVELOPMENT_TEAM = VW5AF53FLP;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				GENERATE_INFOPLIST_FILE = YES;
				INFOPLIST_FILE = SwiftWarplyFramework/Info.plist;
				INFOPLIST_KEY_NSHumanReadableCopyright = "";
				INFOPLIST_KEY_NSMotionUsageDescription = "We are using motion usage in order to track your step count.";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 11.0;
				LD_RUNPATH_SEARCH_PATHS = (
					"$(inherited)",
					"@executable_path/Frameworks",
					"@loader_path/Frameworks",
				);
				MARKETING_VERSION = 1.0;
				OTHER_CODE_SIGN_FLAGS = "";
				"OTHER_CODE_SIGN_FLAGS[sdk=*]" = "--generate-entitlement-der";
				PRODUCT_BUNDLE_IDENTIFIER = framework.warp.ly.SwiftWarplyFramework;
				PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)";
				SKIP_INSTALL = YES;
				SUPPORTS_MACCATALYST = NO;
				SWIFT_EMIT_LOC_STRINGS = YES;
				SWIFT_VERSION = 5.0;
				TARGETED_DEVICE_FAMILY = "1,2";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		E6A77848282933340045BBA8 /* Build configuration list for PBXProject "SwiftWarplyFramework" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E6A77855282933340045BBA8 /* Debug */,
				E6A77856282933340045BBA8 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		E6A77857282933340045BBA8 /* Build configuration list for PBXNativeTarget "SwiftWarplyFramework" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E6A77858282933340045BBA8 /* Debug */,
				E6A77859282933340045BBA8 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */

/* Begin XCRemoteSwiftPackageReference section */
		1E2966E82837A21D00F83FAC /* XCRemoteSwiftPackageReference "RSBarcodes_Swift" */ = {
			isa = XCRemoteSwiftPackageReference;
			repositoryURL = "https://github.com/yeahdongcn/RSBarcodes_Swift";
			requirement = {
				kind = upToNextMajorVersion;
				minimumVersion = 5.0.0;
			};
		};
		1EBF5F052840E13F00B8B17F /* XCRemoteSwiftPackageReference "SwiftEventBus" */ = {
			isa = XCRemoteSwiftPackageReference;
			repositoryURL = "https://github.com/cesarferreira/SwiftEventBus";
			requirement = {
				kind = upToNextMajorVersion;
				minimumVersion = 5.0.0;
			};
		};
/* End XCRemoteSwiftPackageReference section */

/* Begin XCSwiftPackageProductDependency section */
		1E2966E92837A21D00F83FAC /* RSBarcodes_Swift */ = {
			isa = XCSwiftPackageProductDependency;
			package = 1E2966E82837A21D00F83FAC /* XCRemoteSwiftPackageReference "RSBarcodes_Swift" */;
			productName = RSBarcodes_Swift;
		};
		1EBF5F062840E13F00B8B17F /* SwiftEventBus */ = {
			isa = XCSwiftPackageProductDependency;
			package = 1EBF5F052840E13F00B8B17F /* XCRemoteSwiftPackageReference "SwiftEventBus" */;
			productName = SwiftEventBus;
		};
/* End XCSwiftPackageProductDependency section */
	};
	rootObject = E6A77845282933340045BBA8 /* Project object */;
}