project.pbxproj 90.8 KB
Newer Older
Thierry's avatar
Thierry committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349
// !$*UTF8*$!
{
	archiveVersion = 1;
	classes = {
	};
	objectVersion = 46;
	objects = {

/* Begin PBXBuildFile section */
		023F241B232818691CBC1FAF192E33A6 /* MJRefreshBackStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 395549386F79EB6FD33EB7CA1A017306 /* MJRefreshBackStateFooter.m */; };
		0F4C4FA17D58E77292088235EB90F462 /* MJRefreshStateHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 85CF3F719C396276EA79BD4A0F0C94F7 /* MJRefreshStateHeader.m */; };
		0FFDAA8C4A3ED50CE5F952C96B1AB9B6 /* pullLoading18@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = D5AAA5ECA575BD194E8E90E319EFB096 /* pullLoading18@2x.png */; };
		128EE63B035BD635D85DA051C639B442 /* pullLoading7@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C2727AA066D7039BF2FFBA3BF00B862F /* pullLoading7@2x.png */; };
		1CF2707C1D737E55698F5264F718A768 /* MJRefreshComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = E873525AA0FB861237C838DA238EFCD2 /* MJRefreshComponent.h */; settings = {ATTRIBUTES = (Public, ); }; };
		1F5F050F3DDBE8CD7D8084309C3AA4C1 /* GMRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 288649ECA7EFDED6AAA1133FB129A198 /* GMRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
		21727EF0E8B8AEEC6B6047BBB724D919 /* MJRefresh-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 62DDF7DD452A6F068492888C8511FE1D /* MJRefresh-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
		21FEF49459C186A9B3018E3387A6FC23 /* pullLoading9@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = A426C6202DFE1C777BE4EAB1FF69090E /* pullLoading9@3x.png */; };
		225F6597697CED4D988A17BB87202938 /* pullLoading20@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F6C210C6125F3FD894144251FC7E5FAD /* pullLoading20@2x.png */; };
		24E33CCFFFF8B80B2725EC935B4A5FDD /* pullLoading3@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 1C2AA92DD72AE2CB80E053D969530BFD /* pullLoading3@2x.png */; };
		2A525C3BE695E8D9121C7D45CDCA9D26 /* pullLoading8@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 1FF8AD485363277C1C02F6AA455C22C0 /* pullLoading8@3x.png */; };
		2E19B48752AE9E63319ABD67EBBF2BE0 /* pullLoading13@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 42E4E62A32738F005A022565D1AFE5DE /* pullLoading13@2x.png */; };
		2FB4BC978985B00E0F890DA91AF4122D /* pullLoading16@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = E0ED9E87EF4214FC4F33251D2A4828EB /* pullLoading16@3x.png */; };
		2FCD07CBFD6AE6015631B2FA47CA4DBD /* MJRefreshAutoNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = AF3AFEA26B0412278EF308461890A6D2 /* MJRefreshAutoNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
		31397700EB4340984A72D6D5469CA8DE /* pullLoading10@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4F5A5B634CA33B1698A2E5CF8D631818 /* pullLoading10@2x.png */; };
		35FB26A3BA1B768CA410E57045732B97 /* GMRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8D7C2452D40999EB5A6CC44820A790D7 /* GMRefresh-dummy.m */; };
		3AD3AEAE022D2F9AB21B42D26C9E62A7 /* Pods-GMRefresh_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 13A8DE10834533B083980286DD34607D /* Pods-GMRefresh_Example-dummy.m */; };
		3AD63E35A63D96E9AE8EBBD23EF9A7E2 /* UIView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = E7464DB0CDE518F947518FA7F249C5D2 /* UIView+MJExtension.m */; };
		3D5AFA7A3E006AFC34E7C7B225CF89EA /* pullLoading13@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = EB99F0939D7EEAD78EAEC85050947FFF /* pullLoading13@3x.png */; };
		3ED24A5CEF9F658913A04DFEF1540927 /* pullLoading8@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F69C93C15F180D64A2909597A017853F /* pullLoading8@2x.png */; };
		3F3B1CBFBD48FB7DE8FC3E40B29E0B93 /* pullLoading10@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4D24951203305358B8BAF7B29607F4D3 /* pullLoading10@3x.png */; };
		3F96CB1BAB131B3A9C2E09646B8D7BA9 /* MJRefreshBackGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = ACD7FA76704BCF87D337793B471C5792 /* MJRefreshBackGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
		402E8ECEECC30B1B25130CC420ECD010 /* MJRefreshGifHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = 871362D3621338D922F3345EFF3BEBF7 /* MJRefreshGifHeader.m */; };
		4711B4ADEF7BF066B46A5CD8A1662965 /* UIView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = AFAEDBF383DDEE31321D2212F61614CE /* UIView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
		49DD1890430A86FA6D7387441387C900 /* GMRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = CF8D03690E3F8241A0C0B7B875F22C1E /* GMRefreshFooter.m */; };
		4A092FC468E9A5880064C2AAAB037B15 /* MJRefreshNormalHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = E9FF982FEAE665E04F9299B972D48C9C /* MJRefreshNormalHeader.m */; };
		4A2CDD76C828AD59230D3C0EACABC96F /* pullLoading1@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = E368356604CF10F8AAD7EE433BD0C827 /* pullLoading1@2x.png */; };
		4B568CCA459EB125E42A26CA942AD518 /* pullLoading15@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = FE61357185D9334BFF0CDD0B07D7E93B /* pullLoading15@3x.png */; };
		4CFBEFAA832D0AB7D0E31485CF75152A /* MJRefreshConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 048976C2EDA0818EFEC9CA01BBB880C6 /* MJRefreshConst.h */; settings = {ATTRIBUTES = (Public, ); }; };
		5009C221C2D07C6F6642E5AC44239DBC /* MJRefreshBackNormalFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = E3150750AF3E7DB5F86EAE6AC7189E5C /* MJRefreshBackNormalFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
		53C361E8E3983255F7302F5A4D02477D /* pullLoading5@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4F4E33AD35470F05875A4D46249821AC /* pullLoading5@2x.png */; };
		551BF0C86E61595CF843CB7FCC99C76E /* MJRefresh.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 82183AC086CC04F7C2B2F83F402DEA80 /* MJRefresh.framework */; };
		57AA38B2746621571F0AD9409AF6B433 /* GMRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = FFE4F7E92C894D18E45BCFAD8F891B4C /* GMRefreshHeader.m */; };
		5C3DA1A336D6C039E6ED9659292897D7 /* MJRefreshBackGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 54D5E66C4CB784F4E5E304401E1580EA /* MJRefreshBackGifFooter.m */; };
		5D31826D5ABFB121E49E26162CA8B3DC /* pullLoading20@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 45BD2B08D2F3B0A8826836729503DD4B /* pullLoading20@3x.png */; };
		5F6C7D923DDB78CF8D051FCE41DBE580 /* MJRefreshComponent.m in Sources */ = {isa = PBXBuildFile; fileRef = 7729C1A343E3D513F79A0DC39B78CCB5 /* MJRefreshComponent.m */; };
		60850F32D5160051EDF6E38E5F8BAC66 /* MJRefreshHeader.m in Sources */ = {isa = PBXBuildFile; fileRef = A08D8BC4A0BF4E0CF529ECE95F92D07B /* MJRefreshHeader.m */; };
		60FBC76762B035B3FCD31B2C04FC7339 /* pullLoading12@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 6B34906F6C59E69783E189EAF8B283EA /* pullLoading12@2x.png */; };
		61D9E900AA0AB8A046642D7E23D616C2 /* pullLoading4@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = F80206AE99E13A1525DF415A60A84125 /* pullLoading4@3x.png */; };
		627B5FC9F7B8FAEE2AD6CB0B53D79A9D /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0EE08DA53E1C73BAB6F07FC89DCF9A36 /* Foundation.framework */; };
		6D4251B1C1D0ACF97D4313EAE8C1EBB9 /* pullLoading6@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 81821DE75DF7C24810847A261D6FEB8F /* pullLoading6@2x.png */; };
		6F638EFCB75C3B0AC0D2BA098C93D532 /* pullLoading14@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4C74133EC32B59B322722897FCCD8EB8 /* pullLoading14@3x.png */; };
		703BF92772BEA0646364DF8F3E7E1F46 /* pullLoading11@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 127B1D0F0701DB4651EC7D0E81301635 /* pullLoading11@3x.png */; };
		7606951AB6AAE0AD806FB19F57C04EEA /* UIScrollView+MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 016240BD7E8C3C8E5FD502EE938216AC /* UIScrollView+MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
		795253A481638D981A1F05B434FFD2D5 /* MJRefreshBackFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = DD11A5CA22C6B46244083F06D982BA43 /* MJRefreshBackFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
		797C683FC1F083780ED4B8C4D8AF9D5D /* MJRefresh-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 59B7A716061F6B9BB6471A49CF0708DB /* MJRefresh-dummy.m */; };
		7E347329E4C04076BC52F123DA0C990D /* GMRefreshConstant.h in Headers */ = {isa = PBXBuildFile; fileRef = D2AC591A3B378D87601D176B5BB26FF8 /* GMRefreshConstant.h */; settings = {ATTRIBUTES = (Public, ); }; };
		8097EA12F1BA7F508BFF2FBB96D44271 /* MJRefreshAutoGifFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = EA084012D090F8DD02E82029C7D2F723 /* MJRefreshAutoGifFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
		80DAF09BD53F9CED16DCF5F3AE302D39 /* pullLoading16@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = C2029A789F562C62DB7B58501323D750 /* pullLoading16@2x.png */; };
		8108D322B3A9C261DD2A45BCE6E9E42E /* MJRefreshAutoFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 643756566ABB3A31D2DD8FA24C9F1175 /* MJRefreshAutoFooter.m */; };
		8187C35C0BDBD268BE1CD1BD7A3B2E82 /* MJRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 6729F43CED6E36C49961CB944299E3A2 /* MJRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
		8CC8C2B0FCEC7EC16E5B55C7F50E604C /* UIScrollView+MJRefresh.m in Sources */ = {isa = PBXBuildFile; fileRef = 9752DC74BC15ECD7809435235E94EEB5 /* UIScrollView+MJRefresh.m */; };
		907CB4B55D245E93E0C541A2BE0293E5 /* MJRefreshAutoStateFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 15837E25585428607CE5AC572836EE5D /* MJRefreshAutoStateFooter.m */; };
		921DFD22FEF7BA53C18D4839FDDB855C /* pullLoading18@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 5DDE8547E589E52BEA89A57C9E23C2B2 /* pullLoading18@3x.png */; };
		9302B9507AA44C007E290A9BE3D9F63E /* pullLoading14@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 97FC1472A0B136834A60A3ECA08212C2 /* pullLoading14@2x.png */; };
		932F77B143BA898328DD8591F2593880 /* Pods-GMRefresh_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EC9A078E363D9EB755D5F4555A94B84 /* Pods-GMRefresh_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
		93CB184422505F167F771B3EA512628A /* pullLoading17@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 074388FFA7261AC4C91045DC07E040FB /* pullLoading17@3x.png */; };
		958F4E479AA1074880BE8BB0D7C010C0 /* MJRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 5F173BEB68548D2B27EC5A2012B3637C /* MJRefresh.bundle */; };
		9755A4AFCE613F91C8A170D307F024DB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0EE08DA53E1C73BAB6F07FC89DCF9A36 /* Foundation.framework */; };
		98D6C2AD90448A3F619A1E87E8511189 /* pullLoading5@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = FC4887E492494F321BB21A501D791E75 /* pullLoading5@3x.png */; };
		9E244A4CB70E9555C699E509BF419493 /* pullLoading2@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = C25F97CF99D16466A1195A66184C1ACA /* pullLoading2@3x.png */; };
		9F3ADE7A1E814EDBC9DF05347B13DC3E /* MJRefreshFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 12D8D2B7DE72D4468D8F1D9160A45CA4 /* MJRefreshFooter.m */; };
		A325DBD9CF363AA93C7B55344C3945A0 /* MJRefreshGifHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 246DE43CB9B220B8A6805010CDDF1A31 /* MJRefreshGifHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
		A49499FFADF3D4C401DBDADF527600FD /* pullLoading9@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = AC53478280ADE2A7DD4422106AA680A1 /* pullLoading9@2x.png */; };
		A71E43FE8150737D7988A49E912F74D1 /* UIScrollView+MJExtension.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B46713227C7FBB5C72F8AEC5E41FE49 /* UIScrollView+MJExtension.m */; };
		A779B3E3F642D6698DD58EAE203D640B /* MJRefreshBackNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = F766F30D149028F931E4B9ADC05B9F34 /* MJRefreshBackNormalFooter.m */; };
		ABF795102525AB5B23CE247A6AF2A321 /* pullLoading3@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 3EE1492D00BFD7872B2CBE267077E57C /* pullLoading3@3x.png */; };
		ACCFA8119B411110ECF3B896E088A4D6 /* pullLoading4@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 1CF92C740883CA1980DD4DB8140101BA /* pullLoading4@2x.png */; };
		AD85207EB0617301A90D35C289CE5901 /* pullLoading12@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 8C1FEB34B7F278365E95E34DEE63E0E3 /* pullLoading12@3x.png */; };
		AEA06CC5B940EF036DCE93BF4886E3A3 /* GMRefresh.bundle in Resources */ = {isa = PBXBuildFile; fileRef = 86A21E24A347B4A063D66C8F7EAC8FAD /* GMRefresh.bundle */; };
		AFD9207194A1040926B464F5BEE37AAB /* MJRefreshNormalHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 328E0EFC5658C0CB74EB1EE23D3CE6C2 /* MJRefreshNormalHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
		B7F67545D15B202C2AC1290D5E66740F /* GMRefreshHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 310B7AD4E2B28A6B31E47B7EEE018CC9 /* GMRefreshHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
		BC4AD1FE1B5E6909658B90F983C2E8C5 /* MJRefreshAutoStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = BBB368BE19FB542443FF89AD24B51D3B /* MJRefreshAutoStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
		BC981395367DE6C3F226E7C68947AD37 /* pullLoading11@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = F53FCF4D1E7876A0344D01B39E3864CD /* pullLoading11@2x.png */; };
		C62411597A2492F04F7DBAD795157BE7 /* pullLoading15@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 4EA0D9E2B2F15B1BE4E3DE095566A398 /* pullLoading15@2x.png */; };
		CA3909260262E0BA9C5DBE916BDDEAD2 /* Pods-GMRefresh_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = F41D2BCAB500EB3824FB321366B3B82D /* Pods-GMRefresh_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
		CC4714EF07F6B2BE1CF66E3286081498 /* UIScrollView+MJExtension.h in Headers */ = {isa = PBXBuildFile; fileRef = 6FED3160E762F08590EB82B82EF5400A /* UIScrollView+MJExtension.h */; settings = {ATTRIBUTES = (Public, ); }; };
		CD3B027F5E3F3690C7ECCCC08F13B6D3 /* pullLoading2@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 2C01BB2218B82D9EB3520A89C01BBA97 /* pullLoading2@2x.png */; };
		CD8214A3EECFE528C4D73B053757DF69 /* pullLoading19@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = 01941CF671ED67515F7EE1C0A1F07C7A /* pullLoading19@2x.png */; };
		CD855137702657E028300FD292F0DD1A /* MJRefreshAutoFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 111692DE01530A8C29FD26231BD49F11 /* MJRefreshAutoFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
		CEF66AE1BB37F4658E17ECDFB8DB8E0C /* MJRefreshConst.m in Sources */ = {isa = PBXBuildFile; fileRef = DC096625EEDED28072BD26DB1BE09598 /* MJRefreshConst.m */; };
		D3714D8D868000E5F1BAAA60DE257338 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0EE08DA53E1C73BAB6F07FC89DCF9A36 /* Foundation.framework */; };
		D8D02C9DC7F7DB935F6E7B82FA04D8FD /* MJRefreshStateHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B59FCE777CCCF7415D10A2087C505DA /* MJRefreshStateHeader.h */; settings = {ATTRIBUTES = (Public, ); }; };
		DA0605BE52D3F34978D85AF921F09B71 /* MJRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E5D85CC23130E87B4C2EE8136642079 /* MJRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
		DFDCF987754D459A9A658F78419380A1 /* pullLoading7@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 3A739740D67CEA9E4E8DE6D9DD341465 /* pullLoading7@3x.png */; };
		E0A2B5F201AFF5ACEB374CCEAF494CBD /* pullLoading19@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 0DD9E540E36CD36B76C86327144B0317 /* pullLoading19@3x.png */; };
		E0D7CB3F95B89A8D8ABF18DD5D57AEB9 /* MJRefreshBackFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 6B8A400588B82BF4960EF4D2EA09623C /* MJRefreshBackFooter.m */; };
		E36EB3BA619A1F99BD7CF7510D8B4CC8 /* pullLoading6@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 21CAB8220984AE62194E76101CDD9A0F /* pullLoading6@3x.png */; };
		E556DC32AA42204DB9718609196BDA75 /* GMRefreshFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = DBEDC954B807ABDC0EB3C3DC5D529F42 /* GMRefreshFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
		E8178D7CF977D481B2C43A312072CBA5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0EE08DA53E1C73BAB6F07FC89DCF9A36 /* Foundation.framework */; };
		EAF32F38497142C44E5D88A2E2E96C8D /* MJRefreshAutoGifFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CDFC130D70F53C367821B55F8F4384A /* MJRefreshAutoGifFooter.m */; };
		ED18891522BF1804F0E420150E8BEF2F /* Pods-GMRefresh_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = E9CF8AE082AAF299E64C89DBA458BD9E /* Pods-GMRefresh_Tests-dummy.m */; };
		EDBD2A98A13386905DE6A6ECD47103E7 /* pullLoading17@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = B61DBE5AEE6420C452C646F7F7370C64 /* pullLoading17@2x.png */; };
		F13C9869A5EE0B2900764D9FFE58E2D9 /* MJRefresh.h in Headers */ = {isa = PBXBuildFile; fileRef = 77DC3F79F06F6843F2309A295230E743 /* MJRefresh.h */; settings = {ATTRIBUTES = (Public, ); }; };
		F4420F78529EA2D3E21B71CDAB85E0BC /* MJRefreshBackStateFooter.h in Headers */ = {isa = PBXBuildFile; fileRef = 31A707E4DAD17CB1922117E26D48BB58 /* MJRefreshBackStateFooter.h */; settings = {ATTRIBUTES = (Public, ); }; };
		F51F668D3934078613DE5969F635609A /* pullLoading1@3x.png in Resources */ = {isa = PBXBuildFile; fileRef = 81015378881A17A5A6827F8DE97C941B /* pullLoading1@3x.png */; };
		FD373F73FF87B880993CC1530F2E2675 /* MJRefreshAutoNormalFooter.m in Sources */ = {isa = PBXBuildFile; fileRef = ECF77FA8854EEBEBEBDDDF91586FB587 /* MJRefreshAutoNormalFooter.m */; };
/* End PBXBuildFile section */

/* Begin PBXContainerItemProxy section */
		7681E02D33A843C59D48005CA951CB94 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 0E32F16885FA60D8E51D44BB1BE4D86F;
			remoteInfo = MJRefresh;
		};
		B02F606DFCF2C28E014CB8B1BBB2B029 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 0E32F16885FA60D8E51D44BB1BE4D86F;
			remoteInfo = MJRefresh;
		};
		EBB7E7110BB65A9149B6C6858F7710D0 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = F63E15CE4036D64AD53C20297A05351F;
			remoteInfo = GMRefresh;
		};
		F54EA3F8B8B40A708AE3EE4FDEB7B339 /* PBXContainerItemProxy */ = {
			isa = PBXContainerItemProxy;
			containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
			proxyType = 1;
			remoteGlobalIDString = 220362B724DC7C2F2C78C53B041C1BA8;
			remoteInfo = "GMRefresh-GMRefresh";
		};
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
		011A819BA5B0469C1FEFE3B4FEE9F8D7 /* Pods-GMRefresh_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-GMRefresh_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
		016240BD7E8C3C8E5FD502EE938216AC /* UIScrollView+MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJRefresh.h"; path = "MJRefresh/UIScrollView+MJRefresh.h"; sourceTree = "<group>"; };
		01941CF671ED67515F7EE1C0A1F07C7A /* pullLoading19@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading19@2x.png"; sourceTree = "<group>"; };
		048976C2EDA0818EFEC9CA01BBB880C6 /* MJRefreshConst.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshConst.h; path = MJRefresh/MJRefreshConst.h; sourceTree = "<group>"; };
		0666A8F7F14C582DEAE4E53297C87184 /* Pods-GMRefresh_Tests-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-GMRefresh_Tests-frameworks.sh"; sourceTree = "<group>"; };
		074388FFA7261AC4C91045DC07E040FB /* pullLoading17@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading17@3x.png"; sourceTree = "<group>"; };
		095F569E4B7D1E3A327AA8CF8D501A5B /* Pods_GMRefresh_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GMRefresh_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		0B59FCE777CCCF7415D10A2087C505DA /* MJRefreshStateHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshStateHeader.h; path = MJRefresh/Custom/Header/MJRefreshStateHeader.h; sourceTree = "<group>"; };
		0CDFC130D70F53C367821B55F8F4384A /* MJRefreshAutoGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoGifFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.m; sourceTree = "<group>"; };
		0DD9E540E36CD36B76C86327144B0317 /* pullLoading19@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading19@3x.png"; sourceTree = "<group>"; };
		0E2E8027F6BF315C3A0DFBF692EFC708 /* Pods-GMRefresh_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-GMRefresh_Tests.modulemap"; sourceTree = "<group>"; };
		0EE08DA53E1C73BAB6F07FC89DCF9A36 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
		1013BB4138A5E96F38483C00B1C31B04 /* GMRefresh.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = GMRefresh.xcconfig; sourceTree = "<group>"; };
		111692DE01530A8C29FD26231BD49F11 /* MJRefreshAutoFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoFooter.h; path = MJRefresh/Base/MJRefreshAutoFooter.h; sourceTree = "<group>"; };
		127B1D0F0701DB4651EC7D0E81301635 /* pullLoading11@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading11@3x.png"; sourceTree = "<group>"; };
		12D8D2B7DE72D4468D8F1D9160A45CA4 /* MJRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshFooter.m; path = MJRefresh/Base/MJRefreshFooter.m; sourceTree = "<group>"; };
		13A8DE10834533B083980286DD34607D /* Pods-GMRefresh_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-GMRefresh_Example-dummy.m"; sourceTree = "<group>"; };
		15837E25585428607CE5AC572836EE5D /* MJRefreshAutoStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoStateFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.m; sourceTree = "<group>"; };
		1966C56FA14151BC1859877D16BE530B /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		1C2AA92DD72AE2CB80E053D969530BFD /* pullLoading3@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading3@2x.png"; sourceTree = "<group>"; };
		1CF92C740883CA1980DD4DB8140101BA /* pullLoading4@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading4@2x.png"; sourceTree = "<group>"; };
		1FF8AD485363277C1C02F6AA455C22C0 /* pullLoading8@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading8@3x.png"; sourceTree = "<group>"; };
		21CAB8220984AE62194E76101CDD9A0F /* pullLoading6@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading6@3x.png"; sourceTree = "<group>"; };
		241C65F7248CA6E283E1AB8C7ECD2D55 /* Pods-GMRefresh_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GMRefresh_Tests.debug.xcconfig"; sourceTree = "<group>"; };
		246DE43CB9B220B8A6805010CDDF1A31 /* MJRefreshGifHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshGifHeader.h; path = MJRefresh/Custom/Header/MJRefreshGifHeader.h; sourceTree = "<group>"; };
		25EAAF0715055AC58CD7E57D4D926311 /* Pods_GMRefresh_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_GMRefresh_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		288649ECA7EFDED6AAA1133FB129A198 /* GMRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GMRefresh-umbrella.h"; sourceTree = "<group>"; };
		2C01BB2218B82D9EB3520A89C01BBA97 /* pullLoading2@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading2@2x.png"; sourceTree = "<group>"; };
		2E5D85CC23130E87B4C2EE8136642079 /* MJRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshFooter.h; path = MJRefresh/Base/MJRefreshFooter.h; sourceTree = "<group>"; };
		310B7AD4E2B28A6B31E47B7EEE018CC9 /* GMRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GMRefreshHeader.h; sourceTree = "<group>"; };
		31A707E4DAD17CB1922117E26D48BB58 /* MJRefreshBackStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackStateFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.h; sourceTree = "<group>"; };
		328E0EFC5658C0CB74EB1EE23D3CE6C2 /* MJRefreshNormalHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshNormalHeader.h; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.h; sourceTree = "<group>"; };
		38C489A3003208318DA5FB0617EC8755 /* MJRefresh.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		395549386F79EB6FD33EB7CA1A017306 /* MJRefreshBackStateFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackStateFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackStateFooter.m; sourceTree = "<group>"; };
		3A739740D67CEA9E4E8DE6D9DD341465 /* pullLoading7@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading7@3x.png"; sourceTree = "<group>"; };
		3B46713227C7FBB5C72F8AEC5E41FE49 /* UIScrollView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJExtension.m"; path = "MJRefresh/UIScrollView+MJExtension.m"; sourceTree = "<group>"; };
		3EE1492D00BFD7872B2CBE267077E57C /* pullLoading3@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading3@3x.png"; sourceTree = "<group>"; };
		42E4E62A32738F005A022565D1AFE5DE /* pullLoading13@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading13@2x.png"; sourceTree = "<group>"; };
		44C686C7976299C4F6594321BD051CFF /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		45BD2B08D2F3B0A8826836729503DD4B /* pullLoading20@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading20@3x.png"; sourceTree = "<group>"; };
		4A2107111278A22DECEDE97B24D9AAA7 /* GMRefresh.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = GMRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		4C74133EC32B59B322722897FCCD8EB8 /* pullLoading14@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading14@3x.png"; sourceTree = "<group>"; };
		4C8CC605C4A12C1C417C38743F3264EE /* Pods-GMRefresh_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GMRefresh_Example.release.xcconfig"; sourceTree = "<group>"; };
		4D24951203305358B8BAF7B29607F4D3 /* pullLoading10@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading10@3x.png"; sourceTree = "<group>"; };
		4DDD2138C9540E945CBBFF75FFAD976B /* Pods-GMRefresh_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-GMRefresh_Example-acknowledgements.plist"; sourceTree = "<group>"; };
		4DDDACFE114A7EA7D4AB7FC2373371C9 /* Pods-GMRefresh_Tests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-GMRefresh_Tests-resources.sh"; sourceTree = "<group>"; };
		4EA0D9E2B2F15B1BE4E3DE095566A398 /* pullLoading15@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading15@2x.png"; sourceTree = "<group>"; };
		4F4E33AD35470F05875A4D46249821AC /* pullLoading5@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading5@2x.png"; sourceTree = "<group>"; };
		4F5A5B634CA33B1698A2E5CF8D631818 /* pullLoading10@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading10@2x.png"; sourceTree = "<group>"; };
		54D5E66C4CB784F4E5E304401E1580EA /* MJRefreshBackGifFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackGifFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.m; sourceTree = "<group>"; };
		59B7A716061F6B9BB6471A49CF0708DB /* MJRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "MJRefresh-dummy.m"; sourceTree = "<group>"; };
		5CAC44144EC7A9A19B0B69376170B510 /* Pods-GMRefresh_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-GMRefresh_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
		5DDE8547E589E52BEA89A57C9E23C2B2 /* pullLoading18@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading18@3x.png"; sourceTree = "<group>"; };
		5F173BEB68548D2B27EC5A2012B3637C /* MJRefresh.bundle */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "wrapper.plug-in"; name = MJRefresh.bundle; path = MJRefresh/MJRefresh.bundle; sourceTree = "<group>"; };
		62DDF7DD452A6F068492888C8511FE1D /* MJRefresh-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-umbrella.h"; sourceTree = "<group>"; };
		643756566ABB3A31D2DD8FA24C9F1175 /* MJRefreshAutoFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoFooter.m; path = MJRefresh/Base/MJRefreshAutoFooter.m; sourceTree = "<group>"; };
		64EFA9BD6905FFEF4CB739EB717F4BA9 /* Pods-GMRefresh_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-GMRefresh_Example-frameworks.sh"; sourceTree = "<group>"; };
		6729F43CED6E36C49961CB944299E3A2 /* MJRefreshHeader.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshHeader.h; path = MJRefresh/Base/MJRefreshHeader.h; sourceTree = "<group>"; };
		6B34906F6C59E69783E189EAF8B283EA /* pullLoading12@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading12@2x.png"; sourceTree = "<group>"; };
		6B8A400588B82BF4960EF4D2EA09623C /* MJRefreshBackFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackFooter.m; path = MJRefresh/Base/MJRefreshBackFooter.m; sourceTree = "<group>"; };
		6EC9A078E363D9EB755D5F4555A94B84 /* Pods-GMRefresh_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-GMRefresh_Tests-umbrella.h"; sourceTree = "<group>"; };
		6FED3160E762F08590EB82B82EF5400A /* UIScrollView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIScrollView+MJExtension.h"; path = "MJRefresh/UIScrollView+MJExtension.h"; sourceTree = "<group>"; };
		7729C1A343E3D513F79A0DC39B78CCB5 /* MJRefreshComponent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshComponent.m; path = MJRefresh/Base/MJRefreshComponent.m; sourceTree = "<group>"; };
		77DC3F79F06F6843F2309A295230E743 /* MJRefresh.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefresh.h; path = MJRefresh/MJRefresh.h; sourceTree = "<group>"; };
		81015378881A17A5A6827F8DE97C941B /* pullLoading1@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading1@3x.png"; sourceTree = "<group>"; };
		81821DE75DF7C24810847A261D6FEB8F /* pullLoading6@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading6@2x.png"; sourceTree = "<group>"; };
		82183AC086CC04F7C2B2F83F402DEA80 /* MJRefresh.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = MJRefresh.framework; sourceTree = BUILT_PRODUCTS_DIR; };
		837A06BFBED76C2A54B3E612E37B4060 /* GMRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "GMRefresh-prefix.pch"; sourceTree = "<group>"; };
		85CF3F719C396276EA79BD4A0F0C94F7 /* MJRefreshStateHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshStateHeader.m; path = MJRefresh/Custom/Header/MJRefreshStateHeader.m; sourceTree = "<group>"; };
		86A21E24A347B4A063D66C8F7EAC8FAD /* GMRefresh.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = GMRefresh.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
		871362D3621338D922F3345EFF3BEBF7 /* MJRefreshGifHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshGifHeader.m; path = MJRefresh/Custom/Header/MJRefreshGifHeader.m; sourceTree = "<group>"; };
		8C1FEB34B7F278365E95E34DEE63E0E3 /* pullLoading12@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading12@3x.png"; sourceTree = "<group>"; };
		8D7C2452D40999EB5A6CC44820A790D7 /* GMRefresh-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "GMRefresh-dummy.m"; sourceTree = "<group>"; };
		8EE47BA282FA9E24B3E1EE4C37E24D4E /* Pods-GMRefresh_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GMRefresh_Tests.release.xcconfig"; sourceTree = "<group>"; };
		93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
		94B696A0ACB262DA3CE60B10710E6707 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		9752DC74BC15ECD7809435235E94EEB5 /* UIScrollView+MJRefresh.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIScrollView+MJRefresh.m"; path = "MJRefresh/UIScrollView+MJRefresh.m"; sourceTree = "<group>"; };
		97FC1472A0B136834A60A3ECA08212C2 /* pullLoading14@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading14@2x.png"; sourceTree = "<group>"; };
		9AA580436E9C99A212342ECAA7466B3A /* GMRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = GMRefresh.modulemap; sourceTree = "<group>"; };
		A08D8BC4A0BF4E0CF529ECE95F92D07B /* MJRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshHeader.m; path = MJRefresh/Base/MJRefreshHeader.m; sourceTree = "<group>"; };
		A426C6202DFE1C777BE4EAB1FF69090E /* pullLoading9@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading9@3x.png"; sourceTree = "<group>"; };
		AC53478280ADE2A7DD4422106AA680A1 /* pullLoading9@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading9@2x.png"; sourceTree = "<group>"; };
		ACD7FA76704BCF87D337793B471C5792 /* MJRefreshBackGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackGifFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackGifFooter.h; sourceTree = "<group>"; };
		AF3AFEA26B0412278EF308461890A6D2 /* MJRefreshAutoNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoNormalFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.h; sourceTree = "<group>"; };
		AFAEDBF383DDEE31321D2212F61614CE /* UIView+MJExtension.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "UIView+MJExtension.h"; path = "MJRefresh/UIView+MJExtension.h"; sourceTree = "<group>"; };
		B087D3C06557250878D8194785BC9B7F /* MJRefresh.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = MJRefresh.xcconfig; sourceTree = "<group>"; };
		B3CDED5015F51C943FC7CD157492997A /* Pods-GMRefresh_Example-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-GMRefresh_Example-resources.sh"; sourceTree = "<group>"; };
		B61DBE5AEE6420C452C646F7F7370C64 /* pullLoading17@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading17@2x.png"; sourceTree = "<group>"; };
		BBB368BE19FB542443FF89AD24B51D3B /* MJRefreshAutoStateFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoStateFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoStateFooter.h; sourceTree = "<group>"; };
		C2029A789F562C62DB7B58501323D750 /* pullLoading16@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading16@2x.png"; sourceTree = "<group>"; };
		C25F97CF99D16466A1195A66184C1ACA /* pullLoading2@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading2@3x.png"; sourceTree = "<group>"; };
		C2727AA066D7039BF2FFBA3BF00B862F /* pullLoading7@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading7@2x.png"; sourceTree = "<group>"; };
		C34B80B2FC80402751DD1441869B5BF0 /* Pods-GMRefresh_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = "Pods-GMRefresh_Example.modulemap"; sourceTree = "<group>"; };
		C42AC3D92B4E2BA1C417DE1E9327DBCA /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
		CD17F04C33560CF2FFC06251F82482E7 /* MJRefresh-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "MJRefresh-prefix.pch"; sourceTree = "<group>"; };
		CF8D03690E3F8241A0C0B7B875F22C1E /* GMRefreshFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = GMRefreshFooter.m; sourceTree = "<group>"; };
		D2AC591A3B378D87601D176B5BB26FF8 /* GMRefreshConstant.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GMRefreshConstant.h; sourceTree = "<group>"; };
		D5AAA5ECA575BD194E8E90E319EFB096 /* pullLoading18@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading18@2x.png"; sourceTree = "<group>"; };
		D639EEFDAC52EA8994D3641E90B8F70A /* Pods-GMRefresh_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-GMRefresh_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
		DBEDC954B807ABDC0EB3C3DC5D529F42 /* GMRefreshFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = GMRefreshFooter.h; sourceTree = "<group>"; };
		DC096625EEDED28072BD26DB1BE09598 /* MJRefreshConst.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshConst.m; path = MJRefresh/MJRefreshConst.m; sourceTree = "<group>"; };
		DD11A5CA22C6B46244083F06D982BA43 /* MJRefreshBackFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackFooter.h; path = MJRefresh/Base/MJRefreshBackFooter.h; sourceTree = "<group>"; };
		E0ED9E87EF4214FC4F33251D2A4828EB /* pullLoading16@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading16@3x.png"; sourceTree = "<group>"; };
		E3150750AF3E7DB5F86EAE6AC7189E5C /* MJRefreshBackNormalFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshBackNormalFooter.h; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.h; sourceTree = "<group>"; };
		E368356604CF10F8AAD7EE433BD0C827 /* pullLoading1@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading1@2x.png"; sourceTree = "<group>"; };
		E41774274D932BA47734F10C61D3FA33 /* ResourceBundle-GMRefresh-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-GMRefresh-Info.plist"; sourceTree = "<group>"; };
		E7464DB0CDE518F947518FA7F249C5D2 /* UIView+MJExtension.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = "UIView+MJExtension.m"; path = "MJRefresh/UIView+MJExtension.m"; sourceTree = "<group>"; };
		E873525AA0FB861237C838DA238EFCD2 /* MJRefreshComponent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshComponent.h; path = MJRefresh/Base/MJRefreshComponent.h; sourceTree = "<group>"; };
		E9A6D70C5EE6A262568383B2C0C4C536 /* MJRefresh.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = MJRefresh.modulemap; sourceTree = "<group>"; };
		E9CF8AE082AAF299E64C89DBA458BD9E /* Pods-GMRefresh_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-GMRefresh_Tests-dummy.m"; sourceTree = "<group>"; };
		E9FF982FEAE665E04F9299B972D48C9C /* MJRefreshNormalHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshNormalHeader.m; path = MJRefresh/Custom/Header/MJRefreshNormalHeader.m; sourceTree = "<group>"; };
		EA084012D090F8DD02E82029C7D2F723 /* MJRefreshAutoGifFooter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MJRefreshAutoGifFooter.h; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoGifFooter.h; sourceTree = "<group>"; };
		EB99F0939D7EEAD78EAEC85050947FFF /* pullLoading13@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading13@3x.png"; sourceTree = "<group>"; };
		ECF77FA8854EEBEBEBDDDF91586FB587 /* MJRefreshAutoNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshAutoNormalFooter.m; path = MJRefresh/Custom/Footer/Auto/MJRefreshAutoNormalFooter.m; sourceTree = "<group>"; };
		F3AE436233E837DCDBC91D84EBD5C51A /* Pods-GMRefresh_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-GMRefresh_Example.debug.xcconfig"; sourceTree = "<group>"; };
		F41D2BCAB500EB3824FB321366B3B82D /* Pods-GMRefresh_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-GMRefresh_Example-umbrella.h"; sourceTree = "<group>"; };
		F53FCF4D1E7876A0344D01B39E3864CD /* pullLoading11@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading11@2x.png"; sourceTree = "<group>"; };
		F69C93C15F180D64A2909597A017853F /* pullLoading8@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading8@2x.png"; sourceTree = "<group>"; };
		F6C210C6125F3FD894144251FC7E5FAD /* pullLoading20@2x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading20@2x.png"; sourceTree = "<group>"; };
		F766F30D149028F931E4B9ADC05B9F34 /* MJRefreshBackNormalFooter.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = MJRefreshBackNormalFooter.m; path = MJRefresh/Custom/Footer/Back/MJRefreshBackNormalFooter.m; sourceTree = "<group>"; };
		F80206AE99E13A1525DF415A60A84125 /* pullLoading4@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading4@3x.png"; sourceTree = "<group>"; };
		FC4887E492494F321BB21A501D791E75 /* pullLoading5@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading5@3x.png"; sourceTree = "<group>"; };
		FE61357185D9334BFF0CDD0B07D7E93B /* pullLoading15@3x.png */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = image.png; path = "pullLoading15@3x.png"; sourceTree = "<group>"; };
		FFE4F7E92C894D18E45BCFAD8F891B4C /* GMRefreshHeader.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = GMRefreshHeader.m; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
		8264C10D7B016D64E544A02F395812F4 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				9755A4AFCE613F91C8A170D307F024DB /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		9D947E892633655DF275CD601AB1EB8E /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A7FF8DB89573A86C5EB421F03F65FB43 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				D3714D8D868000E5F1BAAA60DE257338 /* Foundation.framework in Frameworks */,
				551BF0C86E61595CF843CB7FCC99C76E /* MJRefresh.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A872AB6D375CE5E5CEB9957D1D5B794C /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				627B5FC9F7B8FAEE2AD6CB0B53D79A9D /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		CC60645182D812C2CD31B05445197A12 /* Frameworks */ = {
			isa = PBXFrameworksBuildPhase;
			buildActionMask = 2147483647;
			files = (
				E8178D7CF977D481B2C43A312072CBA5 /* Foundation.framework in Frameworks */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
		03723F43D8D52D181CB50D90DEF139A2 /* iOS */ = {
			isa = PBXGroup;
			children = (
				0EE08DA53E1C73BAB6F07FC89DCF9A36 /* Foundation.framework */,
			);
			name = iOS;
			sourceTree = "<group>";
		};
		0FBDFD9E171EB28DEBD050738E1BC52E /* Pods-GMRefresh_Tests */ = {
			isa = PBXGroup;
			children = (
				C42AC3D92B4E2BA1C417DE1E9327DBCA /* Info.plist */,
				0E2E8027F6BF315C3A0DFBF692EFC708 /* Pods-GMRefresh_Tests.modulemap */,
				D639EEFDAC52EA8994D3641E90B8F70A /* Pods-GMRefresh_Tests-acknowledgements.markdown */,
				5CAC44144EC7A9A19B0B69376170B510 /* Pods-GMRefresh_Tests-acknowledgements.plist */,
				E9CF8AE082AAF299E64C89DBA458BD9E /* Pods-GMRefresh_Tests-dummy.m */,
				0666A8F7F14C582DEAE4E53297C87184 /* Pods-GMRefresh_Tests-frameworks.sh */,
				4DDDACFE114A7EA7D4AB7FC2373371C9 /* Pods-GMRefresh_Tests-resources.sh */,
				6EC9A078E363D9EB755D5F4555A94B84 /* Pods-GMRefresh_Tests-umbrella.h */,
				241C65F7248CA6E283E1AB8C7ECD2D55 /* Pods-GMRefresh_Tests.debug.xcconfig */,
				8EE47BA282FA9E24B3E1EE4C37E24D4E /* Pods-GMRefresh_Tests.release.xcconfig */,
			);
			name = "Pods-GMRefresh_Tests";
			path = "Target Support Files/Pods-GMRefresh_Tests";
			sourceTree = "<group>";
		};
		362DDA671AD3AA8AD22B53D69AA8D640 /* GMRefresh */ = {
			isa = PBXGroup;
			children = (
				9B6E29F9A80EB86354972B0EA1D57D25 /* Assets */,
			);
			path = GMRefresh;
			sourceTree = "<group>";
		};
		393E024D0E87C5AF0155AEA5DBC72FE5 /* Support Files */ = {
			isa = PBXGroup;
			children = (
				9AA580436E9C99A212342ECAA7466B3A /* GMRefresh.modulemap */,
				1013BB4138A5E96F38483C00B1C31B04 /* GMRefresh.xcconfig */,
				8D7C2452D40999EB5A6CC44820A790D7 /* GMRefresh-dummy.m */,
				837A06BFBED76C2A54B3E612E37B4060 /* GMRefresh-prefix.pch */,
				288649ECA7EFDED6AAA1133FB129A198 /* GMRefresh-umbrella.h */,
				1966C56FA14151BC1859877D16BE530B /* Info.plist */,
				E41774274D932BA47734F10C61D3FA33 /* ResourceBundle-GMRefresh-Info.plist */,
			);
			name = "Support Files";
			path = "Example/Pods/Target Support Files/GMRefresh";
			sourceTree = "<group>";
		};
		3A264FDAEEC6B814F1BB6AC43925CC41 /* Resources */ = {
			isa = PBXGroup;
			children = (
				362DDA671AD3AA8AD22B53D69AA8D640 /* GMRefresh */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		720D8BB0CD034302B653CA86024ABFEF /* Products */ = {
			isa = PBXGroup;
			children = (
				86A21E24A347B4A063D66C8F7EAC8FAD /* GMRefresh.bundle */,
				4A2107111278A22DECEDE97B24D9AAA7 /* GMRefresh.framework */,
				38C489A3003208318DA5FB0617EC8755 /* MJRefresh.framework */,
				25EAAF0715055AC58CD7E57D4D926311 /* Pods_GMRefresh_Example.framework */,
				095F569E4B7D1E3A327AA8CF8D501A5B /* Pods_GMRefresh_Tests.framework */,
			);
			name = Products;
			sourceTree = "<group>";
		};
		72A59BE55B6252677AA8404137A40E47 /* Pods-GMRefresh_Example */ = {
			isa = PBXGroup;
			children = (
				44C686C7976299C4F6594321BD051CFF /* Info.plist */,
				C34B80B2FC80402751DD1441869B5BF0 /* Pods-GMRefresh_Example.modulemap */,
				011A819BA5B0469C1FEFE3B4FEE9F8D7 /* Pods-GMRefresh_Example-acknowledgements.markdown */,
				4DDD2138C9540E945CBBFF75FFAD976B /* Pods-GMRefresh_Example-acknowledgements.plist */,
				13A8DE10834533B083980286DD34607D /* Pods-GMRefresh_Example-dummy.m */,
				64EFA9BD6905FFEF4CB739EB717F4BA9 /* Pods-GMRefresh_Example-frameworks.sh */,
				B3CDED5015F51C943FC7CD157492997A /* Pods-GMRefresh_Example-resources.sh */,
				F41D2BCAB500EB3824FB321366B3B82D /* Pods-GMRefresh_Example-umbrella.h */,
				F3AE436233E837DCDBC91D84EBD5C51A /* Pods-GMRefresh_Example.debug.xcconfig */,
				4C8CC605C4A12C1C417C38743F3264EE /* Pods-GMRefresh_Example.release.xcconfig */,
			);
			name = "Pods-GMRefresh_Example";
			path = "Target Support Files/Pods-GMRefresh_Example";
			sourceTree = "<group>";
		};
		7B8BBF182F4345C92377831E9EC27EAD /* Resources */ = {
			isa = PBXGroup;
			children = (
				5F173BEB68548D2B27EC5A2012B3637C /* MJRefresh.bundle */,
			);
			name = Resources;
			sourceTree = "<group>";
		};
		7DB346D0F39D3F0E887471402A8071AB = {
			isa = PBXGroup;
			children = (
				93A4A3777CF96A4AAC1D13BA6DCCEA73 /* Podfile */,
				D938D9BC8D9A38CD90197D3D5251A028 /* Development Pods */,
				FF0EAEB5F9487FB7A4384FBA6D0CC78D /* Frameworks */,
				EFCFE1521BECA05329221DB4879CEF8B /* Pods */,
				720D8BB0CD034302B653CA86024ABFEF /* Products */,
				E1D0C8EB1BF3EB1F04D3DBB7FF4C9C7B /* Targets Support Files */,
			);
			sourceTree = "<group>";
		};
		8588C25B248C56948572F3DD25ECE6BF /* MJRefresh */ = {
			isa = PBXGroup;
			children = (
				77DC3F79F06F6843F2309A295230E743 /* MJRefresh.h */,
				111692DE01530A8C29FD26231BD49F11 /* MJRefreshAutoFooter.h */,
				643756566ABB3A31D2DD8FA24C9F1175 /* MJRefreshAutoFooter.m */,
				EA084012D090F8DD02E82029C7D2F723 /* MJRefreshAutoGifFooter.h */,
				0CDFC130D70F53C367821B55F8F4384A /* MJRefreshAutoGifFooter.m */,
				AF3AFEA26B0412278EF308461890A6D2 /* MJRefreshAutoNormalFooter.h */,
				ECF77FA8854EEBEBEBDDDF91586FB587 /* MJRefreshAutoNormalFooter.m */,
				BBB368BE19FB542443FF89AD24B51D3B /* MJRefreshAutoStateFooter.h */,
				15837E25585428607CE5AC572836EE5D /* MJRefreshAutoStateFooter.m */,
				DD11A5CA22C6B46244083F06D982BA43 /* MJRefreshBackFooter.h */,
				6B8A400588B82BF4960EF4D2EA09623C /* MJRefreshBackFooter.m */,
				ACD7FA76704BCF87D337793B471C5792 /* MJRefreshBackGifFooter.h */,
				54D5E66C4CB784F4E5E304401E1580EA /* MJRefreshBackGifFooter.m */,
				E3150750AF3E7DB5F86EAE6AC7189E5C /* MJRefreshBackNormalFooter.h */,
				F766F30D149028F931E4B9ADC05B9F34 /* MJRefreshBackNormalFooter.m */,
				31A707E4DAD17CB1922117E26D48BB58 /* MJRefreshBackStateFooter.h */,
				395549386F79EB6FD33EB7CA1A017306 /* MJRefreshBackStateFooter.m */,
				E873525AA0FB861237C838DA238EFCD2 /* MJRefreshComponent.h */,
				7729C1A343E3D513F79A0DC39B78CCB5 /* MJRefreshComponent.m */,
				048976C2EDA0818EFEC9CA01BBB880C6 /* MJRefreshConst.h */,
				DC096625EEDED28072BD26DB1BE09598 /* MJRefreshConst.m */,
				2E5D85CC23130E87B4C2EE8136642079 /* MJRefreshFooter.h */,
				12D8D2B7DE72D4468D8F1D9160A45CA4 /* MJRefreshFooter.m */,
				246DE43CB9B220B8A6805010CDDF1A31 /* MJRefreshGifHeader.h */,
				871362D3621338D922F3345EFF3BEBF7 /* MJRefreshGifHeader.m */,
				6729F43CED6E36C49961CB944299E3A2 /* MJRefreshHeader.h */,
				A08D8BC4A0BF4E0CF529ECE95F92D07B /* MJRefreshHeader.m */,
				328E0EFC5658C0CB74EB1EE23D3CE6C2 /* MJRefreshNormalHeader.h */,
				E9FF982FEAE665E04F9299B972D48C9C /* MJRefreshNormalHeader.m */,
				0B59FCE777CCCF7415D10A2087C505DA /* MJRefreshStateHeader.h */,
				85CF3F719C396276EA79BD4A0F0C94F7 /* MJRefreshStateHeader.m */,
				6FED3160E762F08590EB82B82EF5400A /* UIScrollView+MJExtension.h */,
				3B46713227C7FBB5C72F8AEC5E41FE49 /* UIScrollView+MJExtension.m */,
				016240BD7E8C3C8E5FD502EE938216AC /* UIScrollView+MJRefresh.h */,
				9752DC74BC15ECD7809435235E94EEB5 /* UIScrollView+MJRefresh.m */,
				AFAEDBF383DDEE31321D2212F61614CE /* UIView+MJExtension.h */,
				E7464DB0CDE518F947518FA7F249C5D2 /* UIView+MJExtension.m */,
				7B8BBF182F4345C92377831E9EC27EAD /* Resources */,
				8E1657736C71442647767C4BDF0D8234 /* Support Files */,
			);
			path = MJRefresh;
			sourceTree = "<group>";
		};
		8E1657736C71442647767C4BDF0D8234 /* Support Files */ = {
			isa = PBXGroup;
			children = (
				94B696A0ACB262DA3CE60B10710E6707 /* Info.plist */,
				E9A6D70C5EE6A262568383B2C0C4C536 /* MJRefresh.modulemap */,
				B087D3C06557250878D8194785BC9B7F /* MJRefresh.xcconfig */,
				59B7A716061F6B9BB6471A49CF0708DB /* MJRefresh-dummy.m */,
				CD17F04C33560CF2FFC06251F82482E7 /* MJRefresh-prefix.pch */,
				62DDF7DD452A6F068492888C8511FE1D /* MJRefresh-umbrella.h */,
			);
			name = "Support Files";
			path = "../Target Support Files/MJRefresh";
			sourceTree = "<group>";
		};
		906CFACBB6589D3777C17DFEEEF4C4AE /* GMRefresh */ = {
			isa = PBXGroup;
			children = (
				D558EFEA549C87513B787D28CA5B1CDA /* Classes */,
			);
			path = GMRefresh;
			sourceTree = "<group>";
		};
		9B6E29F9A80EB86354972B0EA1D57D25 /* Assets */ = {
			isa = PBXGroup;
			children = (
				4F5A5B634CA33B1698A2E5CF8D631818 /* pullLoading10@2x.png */,
				4D24951203305358B8BAF7B29607F4D3 /* pullLoading10@3x.png */,
				F53FCF4D1E7876A0344D01B39E3864CD /* pullLoading11@2x.png */,
				127B1D0F0701DB4651EC7D0E81301635 /* pullLoading11@3x.png */,
				6B34906F6C59E69783E189EAF8B283EA /* pullLoading12@2x.png */,
				8C1FEB34B7F278365E95E34DEE63E0E3 /* pullLoading12@3x.png */,
				42E4E62A32738F005A022565D1AFE5DE /* pullLoading13@2x.png */,
				EB99F0939D7EEAD78EAEC85050947FFF /* pullLoading13@3x.png */,
				97FC1472A0B136834A60A3ECA08212C2 /* pullLoading14@2x.png */,
				4C74133EC32B59B322722897FCCD8EB8 /* pullLoading14@3x.png */,
				4EA0D9E2B2F15B1BE4E3DE095566A398 /* pullLoading15@2x.png */,
				FE61357185D9334BFF0CDD0B07D7E93B /* pullLoading15@3x.png */,
				C2029A789F562C62DB7B58501323D750 /* pullLoading16@2x.png */,
				E0ED9E87EF4214FC4F33251D2A4828EB /* pullLoading16@3x.png */,
				B61DBE5AEE6420C452C646F7F7370C64 /* pullLoading17@2x.png */,
				074388FFA7261AC4C91045DC07E040FB /* pullLoading17@3x.png */,
				D5AAA5ECA575BD194E8E90E319EFB096 /* pullLoading18@2x.png */,
				5DDE8547E589E52BEA89A57C9E23C2B2 /* pullLoading18@3x.png */,
				01941CF671ED67515F7EE1C0A1F07C7A /* pullLoading19@2x.png */,
				0DD9E540E36CD36B76C86327144B0317 /* pullLoading19@3x.png */,
				E368356604CF10F8AAD7EE433BD0C827 /* pullLoading1@2x.png */,
				81015378881A17A5A6827F8DE97C941B /* pullLoading1@3x.png */,
				F6C210C6125F3FD894144251FC7E5FAD /* pullLoading20@2x.png */,
				45BD2B08D2F3B0A8826836729503DD4B /* pullLoading20@3x.png */,
				2C01BB2218B82D9EB3520A89C01BBA97 /* pullLoading2@2x.png */,
				C25F97CF99D16466A1195A66184C1ACA /* pullLoading2@3x.png */,
				1C2AA92DD72AE2CB80E053D969530BFD /* pullLoading3@2x.png */,
				3EE1492D00BFD7872B2CBE267077E57C /* pullLoading3@3x.png */,
				1CF92C740883CA1980DD4DB8140101BA /* pullLoading4@2x.png */,
				F80206AE99E13A1525DF415A60A84125 /* pullLoading4@3x.png */,
				4F4E33AD35470F05875A4D46249821AC /* pullLoading5@2x.png */,
				FC4887E492494F321BB21A501D791E75 /* pullLoading5@3x.png */,
				81821DE75DF7C24810847A261D6FEB8F /* pullLoading6@2x.png */,
				21CAB8220984AE62194E76101CDD9A0F /* pullLoading6@3x.png */,
				C2727AA066D7039BF2FFBA3BF00B862F /* pullLoading7@2x.png */,
				3A739740D67CEA9E4E8DE6D9DD341465 /* pullLoading7@3x.png */,
				F69C93C15F180D64A2909597A017853F /* pullLoading8@2x.png */,
				1FF8AD485363277C1C02F6AA455C22C0 /* pullLoading8@3x.png */,
				AC53478280ADE2A7DD4422106AA680A1 /* pullLoading9@2x.png */,
				A426C6202DFE1C777BE4EAB1FF69090E /* pullLoading9@3x.png */,
			);
			path = Assets;
			sourceTree = "<group>";
		};
		D558EFEA549C87513B787D28CA5B1CDA /* Classes */ = {
			isa = PBXGroup;
			children = (
				D2AC591A3B378D87601D176B5BB26FF8 /* GMRefreshConstant.h */,
				DBEDC954B807ABDC0EB3C3DC5D529F42 /* GMRefreshFooter.h */,
				CF8D03690E3F8241A0C0B7B875F22C1E /* GMRefreshFooter.m */,
				310B7AD4E2B28A6B31E47B7EEE018CC9 /* GMRefreshHeader.h */,
				FFE4F7E92C894D18E45BCFAD8F891B4C /* GMRefreshHeader.m */,
			);
			path = Classes;
			sourceTree = "<group>";
		};
		D938D9BC8D9A38CD90197D3D5251A028 /* Development Pods */ = {
			isa = PBXGroup;
			children = (
				F7A5A55504407A38A084766AD3A3C0B7 /* GMRefresh */,
			);
			name = "Development Pods";
			sourceTree = "<group>";
		};
		E1D0C8EB1BF3EB1F04D3DBB7FF4C9C7B /* Targets Support Files */ = {
			isa = PBXGroup;
			children = (
				72A59BE55B6252677AA8404137A40E47 /* Pods-GMRefresh_Example */,
				0FBDFD9E171EB28DEBD050738E1BC52E /* Pods-GMRefresh_Tests */,
			);
			name = "Targets Support Files";
			sourceTree = "<group>";
		};
		EFCFE1521BECA05329221DB4879CEF8B /* Pods */ = {
			isa = PBXGroup;
			children = (
				8588C25B248C56948572F3DD25ECE6BF /* MJRefresh */,
			);
			name = Pods;
			sourceTree = "<group>";
		};
		F7A5A55504407A38A084766AD3A3C0B7 /* GMRefresh */ = {
			isa = PBXGroup;
			children = (
				906CFACBB6589D3777C17DFEEEF4C4AE /* GMRefresh */,
				3A264FDAEEC6B814F1BB6AC43925CC41 /* Resources */,
				393E024D0E87C5AF0155AEA5DBC72FE5 /* Support Files */,
			);
			name = GMRefresh;
			path = ../..;
			sourceTree = "<group>";
		};
		FF0EAEB5F9487FB7A4384FBA6D0CC78D /* Frameworks */ = {
			isa = PBXGroup;
			children = (
				82183AC086CC04F7C2B2F83F402DEA80 /* MJRefresh.framework */,
				03723F43D8D52D181CB50D90DEF139A2 /* iOS */,
			);
			name = Frameworks;
			sourceTree = "<group>";
		};
/* End PBXGroup section */

/* Begin PBXHeadersBuildPhase section */
		6D40693F50F7F44C4FF2C4BF2228C28E /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				1F5F050F3DDBE8CD7D8084309C3AA4C1 /* GMRefresh-umbrella.h in Headers */,
				7E347329E4C04076BC52F123DA0C990D /* GMRefreshConstant.h in Headers */,
				E556DC32AA42204DB9718609196BDA75 /* GMRefreshFooter.h in Headers */,
				B7F67545D15B202C2AC1290D5E66740F /* GMRefreshHeader.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		78D0E4C4F2F6DDF501CCE07D1C66499C /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				21727EF0E8B8AEEC6B6047BBB724D919 /* MJRefresh-umbrella.h in Headers */,
				F13C9869A5EE0B2900764D9FFE58E2D9 /* MJRefresh.h in Headers */,
				CD855137702657E028300FD292F0DD1A /* MJRefreshAutoFooter.h in Headers */,
				8097EA12F1BA7F508BFF2FBB96D44271 /* MJRefreshAutoGifFooter.h in Headers */,
				2FCD07CBFD6AE6015631B2FA47CA4DBD /* MJRefreshAutoNormalFooter.h in Headers */,
				BC4AD1FE1B5E6909658B90F983C2E8C5 /* MJRefreshAutoStateFooter.h in Headers */,
				795253A481638D981A1F05B434FFD2D5 /* MJRefreshBackFooter.h in Headers */,
				3F96CB1BAB131B3A9C2E09646B8D7BA9 /* MJRefreshBackGifFooter.h in Headers */,
				5009C221C2D07C6F6642E5AC44239DBC /* MJRefreshBackNormalFooter.h in Headers */,
				F4420F78529EA2D3E21B71CDAB85E0BC /* MJRefreshBackStateFooter.h in Headers */,
				1CF2707C1D737E55698F5264F718A768 /* MJRefreshComponent.h in Headers */,
				4CFBEFAA832D0AB7D0E31485CF75152A /* MJRefreshConst.h in Headers */,
				DA0605BE52D3F34978D85AF921F09B71 /* MJRefreshFooter.h in Headers */,
				A325DBD9CF363AA93C7B55344C3945A0 /* MJRefreshGifHeader.h in Headers */,
				8187C35C0BDBD268BE1CD1BD7A3B2E82 /* MJRefreshHeader.h in Headers */,
				AFD9207194A1040926B464F5BEE37AAB /* MJRefreshNormalHeader.h in Headers */,
				D8D02C9DC7F7DB935F6E7B82FA04D8FD /* MJRefreshStateHeader.h in Headers */,
				CC4714EF07F6B2BE1CF66E3286081498 /* UIScrollView+MJExtension.h in Headers */,
				7606951AB6AAE0AD806FB19F57C04EEA /* UIScrollView+MJRefresh.h in Headers */,
				4711B4ADEF7BF066B46A5CD8A1662965 /* UIView+MJExtension.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		93D6771F9E9ED4E462D69EA0C5E95448 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				932F77B143BA898328DD8591F2593880 /* Pods-GMRefresh_Tests-umbrella.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A0F0633A60A6C95B92C412C85A54CE75 /* Headers */ = {
			isa = PBXHeadersBuildPhase;
			buildActionMask = 2147483647;
			files = (
				CA3909260262E0BA9C5DBE916BDDEAD2 /* Pods-GMRefresh_Example-umbrella.h in Headers */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXHeadersBuildPhase section */

/* Begin PBXNativeTarget section */
		0E32F16885FA60D8E51D44BB1BE4D86F /* MJRefresh */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = EEDEA87BCD096A73344DA34D09ACF675 /* Build configuration list for PBXNativeTarget "MJRefresh" */;
			buildPhases = (
				928A6B9D881EE0F92A9C02FA9ABD4A09 /* Sources */,
				A872AB6D375CE5E5CEB9957D1D5B794C /* Frameworks */,
				78D0E4C4F2F6DDF501CCE07D1C66499C /* Headers */,
				06AF8714102B6903BB3292B6A20A37B3 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = MJRefresh;
			productName = MJRefresh;
			productReference = 38C489A3003208318DA5FB0617EC8755 /* MJRefresh.framework */;
			productType = "com.apple.product-type.framework";
		};
		220362B724DC7C2F2C78C53B041C1BA8 /* GMRefresh-GMRefresh */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = CF20DB6435BCBFFA5AE59FBBFB556339 /* Build configuration list for PBXNativeTarget "GMRefresh-GMRefresh" */;
			buildPhases = (
				0F6E6AD2E75E0AC0D1CA87E0D432E759 /* Sources */,
				9D947E892633655DF275CD601AB1EB8E /* Frameworks */,
				0ED0A14212125CFCDD5D310DC35C7167 /* Resources */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "GMRefresh-GMRefresh";
			productName = "GMRefresh-GMRefresh";
			productReference = 86A21E24A347B4A063D66C8F7EAC8FAD /* GMRefresh.bundle */;
			productType = "com.apple.product-type.bundle";
		};
		6E2B9998F6D9BBD54A7F26A225C5F767 /* Pods-GMRefresh_Tests */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = F4AEFEF38725DC47BCEA99875BE76732 /* Build configuration list for PBXNativeTarget "Pods-GMRefresh_Tests" */;
			buildPhases = (
				D64F6457D789C33B4780CD21FD08C6F1 /* Sources */,
				CC60645182D812C2CD31B05445197A12 /* Frameworks */,
				93D6771F9E9ED4E462D69EA0C5E95448 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
			);
			name = "Pods-GMRefresh_Tests";
			productName = "Pods-GMRefresh_Tests";
			productReference = 095F569E4B7D1E3A327AA8CF8D501A5B /* Pods_GMRefresh_Tests.framework */;
			productType = "com.apple.product-type.framework";
		};
		97386EAC66D084FFB77887550FE7F145 /* Pods-GMRefresh_Example */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = EB45785AFC744BEB1361EBBF6B9247A3 /* Build configuration list for PBXNativeTarget "Pods-GMRefresh_Example" */;
			buildPhases = (
				8252C8342684E539C8DFA97BACEACF13 /* Sources */,
				8264C10D7B016D64E544A02F395812F4 /* Frameworks */,
				A0F0633A60A6C95B92C412C85A54CE75 /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
				1993D75E4F544ED6FD8205DC34A279D1 /* PBXTargetDependency */,
				B5EDCCF82725862B0A1CCE7AE17F6519 /* PBXTargetDependency */,
			);
			name = "Pods-GMRefresh_Example";
			productName = "Pods-GMRefresh_Example";
			productReference = 25EAAF0715055AC58CD7E57D4D926311 /* Pods_GMRefresh_Example.framework */;
			productType = "com.apple.product-type.framework";
		};
		F63E15CE4036D64AD53C20297A05351F /* GMRefresh */ = {
			isa = PBXNativeTarget;
			buildConfigurationList = 41938534BDFF968DE15DD6943877F3C5 /* Build configuration list for PBXNativeTarget "GMRefresh" */;
			buildPhases = (
				A60B4826669759DC58E4DB0DD58006BC /* Sources */,
				A7FF8DB89573A86C5EB421F03F65FB43 /* Frameworks */,
				BE27385728852BFE627245766BFD31E4 /* Resources */,
				6D40693F50F7F44C4FF2C4BF2228C28E /* Headers */,
			);
			buildRules = (
			);
			dependencies = (
				B289202EB957EEA71BD7A31E8D59AE57 /* PBXTargetDependency */,
				33DBA22355ECFC9B3EAA700674F448F4 /* PBXTargetDependency */,
			);
			name = GMRefresh;
			productName = GMRefresh;
			productReference = 4A2107111278A22DECEDE97B24D9AAA7 /* GMRefresh.framework */;
			productType = "com.apple.product-type.framework";
		};
/* End PBXNativeTarget section */

/* Begin PBXProject section */
		D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
			isa = PBXProject;
			attributes = {
				LastSwiftUpdateCheck = 0730;
				LastUpgradeCheck = 0700;
			};
			buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
			compatibilityVersion = "Xcode 3.2";
			developmentRegion = English;
			hasScannedForEncodings = 0;
			knownRegions = (
				en,
			);
			mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
			productRefGroup = 720D8BB0CD034302B653CA86024ABFEF /* Products */;
			projectDirPath = "";
			projectRoot = "";
			targets = (
				F63E15CE4036D64AD53C20297A05351F /* GMRefresh */,
				220362B724DC7C2F2C78C53B041C1BA8 /* GMRefresh-GMRefresh */,
				0E32F16885FA60D8E51D44BB1BE4D86F /* MJRefresh */,
				97386EAC66D084FFB77887550FE7F145 /* Pods-GMRefresh_Example */,
				6E2B9998F6D9BBD54A7F26A225C5F767 /* Pods-GMRefresh_Tests */,
			);
		};
/* End PBXProject section */

/* Begin PBXResourcesBuildPhase section */
		06AF8714102B6903BB3292B6A20A37B3 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				958F4E479AA1074880BE8BB0D7C010C0 /* MJRefresh.bundle in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		0ED0A14212125CFCDD5D310DC35C7167 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				31397700EB4340984A72D6D5469CA8DE /* pullLoading10@2x.png in Resources */,
				3F3B1CBFBD48FB7DE8FC3E40B29E0B93 /* pullLoading10@3x.png in Resources */,
				BC981395367DE6C3F226E7C68947AD37 /* pullLoading11@2x.png in Resources */,
				703BF92772BEA0646364DF8F3E7E1F46 /* pullLoading11@3x.png in Resources */,
				60FBC76762B035B3FCD31B2C04FC7339 /* pullLoading12@2x.png in Resources */,
				AD85207EB0617301A90D35C289CE5901 /* pullLoading12@3x.png in Resources */,
				2E19B48752AE9E63319ABD67EBBF2BE0 /* pullLoading13@2x.png in Resources */,
				3D5AFA7A3E006AFC34E7C7B225CF89EA /* pullLoading13@3x.png in Resources */,
				9302B9507AA44C007E290A9BE3D9F63E /* pullLoading14@2x.png in Resources */,
				6F638EFCB75C3B0AC0D2BA098C93D532 /* pullLoading14@3x.png in Resources */,
				C62411597A2492F04F7DBAD795157BE7 /* pullLoading15@2x.png in Resources */,
				4B568CCA459EB125E42A26CA942AD518 /* pullLoading15@3x.png in Resources */,
				80DAF09BD53F9CED16DCF5F3AE302D39 /* pullLoading16@2x.png in Resources */,
				2FB4BC978985B00E0F890DA91AF4122D /* pullLoading16@3x.png in Resources */,
				EDBD2A98A13386905DE6A6ECD47103E7 /* pullLoading17@2x.png in Resources */,
				93CB184422505F167F771B3EA512628A /* pullLoading17@3x.png in Resources */,
				0FFDAA8C4A3ED50CE5F952C96B1AB9B6 /* pullLoading18@2x.png in Resources */,
				921DFD22FEF7BA53C18D4839FDDB855C /* pullLoading18@3x.png in Resources */,
				CD8214A3EECFE528C4D73B053757DF69 /* pullLoading19@2x.png in Resources */,
				E0A2B5F201AFF5ACEB374CCEAF494CBD /* pullLoading19@3x.png in Resources */,
				4A2CDD76C828AD59230D3C0EACABC96F /* pullLoading1@2x.png in Resources */,
				F51F668D3934078613DE5969F635609A /* pullLoading1@3x.png in Resources */,
				225F6597697CED4D988A17BB87202938 /* pullLoading20@2x.png in Resources */,
				5D31826D5ABFB121E49E26162CA8B3DC /* pullLoading20@3x.png in Resources */,
				CD3B027F5E3F3690C7ECCCC08F13B6D3 /* pullLoading2@2x.png in Resources */,
				9E244A4CB70E9555C699E509BF419493 /* pullLoading2@3x.png in Resources */,
				24E33CCFFFF8B80B2725EC935B4A5FDD /* pullLoading3@2x.png in Resources */,
				ABF795102525AB5B23CE247A6AF2A321 /* pullLoading3@3x.png in Resources */,
				ACCFA8119B411110ECF3B896E088A4D6 /* pullLoading4@2x.png in Resources */,
				61D9E900AA0AB8A046642D7E23D616C2 /* pullLoading4@3x.png in Resources */,
				53C361E8E3983255F7302F5A4D02477D /* pullLoading5@2x.png in Resources */,
				98D6C2AD90448A3F619A1E87E8511189 /* pullLoading5@3x.png in Resources */,
				6D4251B1C1D0ACF97D4313EAE8C1EBB9 /* pullLoading6@2x.png in Resources */,
				E36EB3BA619A1F99BD7CF7510D8B4CC8 /* pullLoading6@3x.png in Resources */,
				128EE63B035BD635D85DA051C639B442 /* pullLoading7@2x.png in Resources */,
				DFDCF987754D459A9A658F78419380A1 /* pullLoading7@3x.png in Resources */,
				3ED24A5CEF9F658913A04DFEF1540927 /* pullLoading8@2x.png in Resources */,
				2A525C3BE695E8D9121C7D45CDCA9D26 /* pullLoading8@3x.png in Resources */,
				A49499FFADF3D4C401DBDADF527600FD /* pullLoading9@2x.png in Resources */,
				21FEF49459C186A9B3018E3387A6FC23 /* pullLoading9@3x.png in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		BE27385728852BFE627245766BFD31E4 /* Resources */ = {
			isa = PBXResourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				AEA06CC5B940EF036DCE93BF4886E3A3 /* GMRefresh.bundle in Resources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXResourcesBuildPhase section */

/* Begin PBXSourcesBuildPhase section */
		0F6E6AD2E75E0AC0D1CA87E0D432E759 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		8252C8342684E539C8DFA97BACEACF13 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				3AD3AEAE022D2F9AB21B42D26C9E62A7 /* Pods-GMRefresh_Example-dummy.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		928A6B9D881EE0F92A9C02FA9ABD4A09 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				797C683FC1F083780ED4B8C4D8AF9D5D /* MJRefresh-dummy.m in Sources */,
				8108D322B3A9C261DD2A45BCE6E9E42E /* MJRefreshAutoFooter.m in Sources */,
				EAF32F38497142C44E5D88A2E2E96C8D /* MJRefreshAutoGifFooter.m in Sources */,
				FD373F73FF87B880993CC1530F2E2675 /* MJRefreshAutoNormalFooter.m in Sources */,
				907CB4B55D245E93E0C541A2BE0293E5 /* MJRefreshAutoStateFooter.m in Sources */,
				E0D7CB3F95B89A8D8ABF18DD5D57AEB9 /* MJRefreshBackFooter.m in Sources */,
				5C3DA1A336D6C039E6ED9659292897D7 /* MJRefreshBackGifFooter.m in Sources */,
				A779B3E3F642D6698DD58EAE203D640B /* MJRefreshBackNormalFooter.m in Sources */,
				023F241B232818691CBC1FAF192E33A6 /* MJRefreshBackStateFooter.m in Sources */,
				5F6C7D923DDB78CF8D051FCE41DBE580 /* MJRefreshComponent.m in Sources */,
				CEF66AE1BB37F4658E17ECDFB8DB8E0C /* MJRefreshConst.m in Sources */,
				9F3ADE7A1E814EDBC9DF05347B13DC3E /* MJRefreshFooter.m in Sources */,
				402E8ECEECC30B1B25130CC420ECD010 /* MJRefreshGifHeader.m in Sources */,
				60850F32D5160051EDF6E38E5F8BAC66 /* MJRefreshHeader.m in Sources */,
				4A092FC468E9A5880064C2AAAB037B15 /* MJRefreshNormalHeader.m in Sources */,
				0F4C4FA17D58E77292088235EB90F462 /* MJRefreshStateHeader.m in Sources */,
				A71E43FE8150737D7988A49E912F74D1 /* UIScrollView+MJExtension.m in Sources */,
				8CC8C2B0FCEC7EC16E5B55C7F50E604C /* UIScrollView+MJRefresh.m in Sources */,
				3AD63E35A63D96E9AE8EBBD23EF9A7E2 /* UIView+MJExtension.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		A60B4826669759DC58E4DB0DD58006BC /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				35FB26A3BA1B768CA410E57045732B97 /* GMRefresh-dummy.m in Sources */,
				49DD1890430A86FA6D7387441387C900 /* GMRefreshFooter.m in Sources */,
				57AA38B2746621571F0AD9409AF6B433 /* GMRefreshHeader.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
		D64F6457D789C33B4780CD21FD08C6F1 /* Sources */ = {
			isa = PBXSourcesBuildPhase;
			buildActionMask = 2147483647;
			files = (
				ED18891522BF1804F0E420150E8BEF2F /* Pods-GMRefresh_Tests-dummy.m in Sources */,
			);
			runOnlyForDeploymentPostprocessing = 0;
		};
/* End PBXSourcesBuildPhase section */

/* Begin PBXTargetDependency section */
		1993D75E4F544ED6FD8205DC34A279D1 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = GMRefresh;
			target = F63E15CE4036D64AD53C20297A05351F /* GMRefresh */;
			targetProxy = EBB7E7110BB65A9149B6C6858F7710D0 /* PBXContainerItemProxy */;
		};
		33DBA22355ECFC9B3EAA700674F448F4 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = MJRefresh;
			target = 0E32F16885FA60D8E51D44BB1BE4D86F /* MJRefresh */;
			targetProxy = 7681E02D33A843C59D48005CA951CB94 /* PBXContainerItemProxy */;
		};
		B289202EB957EEA71BD7A31E8D59AE57 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = "GMRefresh-GMRefresh";
			target = 220362B724DC7C2F2C78C53B041C1BA8 /* GMRefresh-GMRefresh */;
			targetProxy = F54EA3F8B8B40A708AE3EE4FDEB7B339 /* PBXContainerItemProxy */;
		};
		B5EDCCF82725862B0A1CCE7AE17F6519 /* PBXTargetDependency */ = {
			isa = PBXTargetDependency;
			name = MJRefresh;
			target = 0E32F16885FA60D8E51D44BB1BE4D86F /* MJRefresh */;
			targetProxy = B02F606DFCF2C28E014CB8B1BBB2B029 /* PBXContainerItemProxy */;
		};
/* End PBXTargetDependency section */

/* Begin XCBuildConfiguration section */
		03C771511123410DB570210AEBD35E5D /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 8EE47BA282FA9E24B3E1EE4C37E24D4E /* Pods-GMRefresh_Tests.release.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				INFOPLIST_FILE = "Target Support Files/Pods-GMRefresh_Tests/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MACH_O_TYPE = staticlib;
				MODULEMAP_FILE = "Target Support Files/Pods-GMRefresh_Tests/Pods-GMRefresh_Tests.modulemap";
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = Pods_GMRefresh_Tests;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
		042F30EF47927CC01FD33EF8188FE4CC /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = F3AE436233E837DCDBC91D84EBD5C51A /* Pods-GMRefresh_Example.debug.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = dwarf;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				INFOPLIST_FILE = "Target Support Files/Pods-GMRefresh_Example/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MACH_O_TYPE = staticlib;
				MODULEMAP_FILE = "Target Support Files/Pods-GMRefresh_Example/Pods-GMRefresh_Example.modulemap";
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = Pods_GMRefresh_Example;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
		3C3D6C0A58D559B798D0A80B0DF37646 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 1013BB4138A5E96F38483C00B1C31B04 /* GMRefresh.xcconfig */;
			buildSettings = {
				CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GMRefresh";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				INFOPLIST_FILE = "Target Support Files/GMRefresh/ResourceBundle-GMRefresh-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				PRODUCT_NAME = GMRefresh;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				WRAPPER_EXTENSION = bundle;
			};
			name = Debug;
		};
		47BEF9D903506B003EA5C2B249729489 /* Debug */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = NO;
				ENABLE_TESTABILITY = YES;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_DYNAMIC_NO_PIC = NO;
				GCC_OPTIMIZATION_LEVEL = 0;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"POD_CONFIGURATION_DEBUG=1",
					"DEBUG=1",
					"$(inherited)",
				);
				GCC_SYMBOLS_PRIVATE_EXTERN = NO;
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				ONLY_ACTIVE_ARCH = YES;
				STRIP_INSTALLED_PRODUCT = NO;
				SYMROOT = "${SRCROOT}/../build";
			};
			name = Debug;
		};
		95B6BE667792969AFE51FB06D370F2BB /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 241C65F7248CA6E283E1AB8C7ECD2D55 /* Pods-GMRefresh_Tests.debug.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = dwarf;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				INFOPLIST_FILE = "Target Support Files/Pods-GMRefresh_Tests/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MACH_O_TYPE = staticlib;
				MODULEMAP_FILE = "Target Support Files/Pods-GMRefresh_Tests/Pods-GMRefresh_Tests.modulemap";
				MTL_ENABLE_DEBUG_INFO = YES;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = Pods_GMRefresh_Tests;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
		97DD7CD9DF79D068B0CC55289422F740 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 4C8CC605C4A12C1C417C38743F3264EE /* Pods-GMRefresh_Example.release.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				INFOPLIST_FILE = "Target Support Files/Pods-GMRefresh_Example/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MACH_O_TYPE = staticlib;
				MODULEMAP_FILE = "Target Support Files/Pods-GMRefresh_Example/Pods-GMRefresh_Example.modulemap";
				MTL_ENABLE_DEBUG_INFO = NO;
				OTHER_LDFLAGS = "";
				OTHER_LIBTOOLFLAGS = "";
				PODS_ROOT = "$(SRCROOT)";
				PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
				PRODUCT_NAME = Pods_GMRefresh_Example;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
		A8842861097249BF08BBD42F4FA07279 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 1013BB4138A5E96F38483C00B1C31B04 /* GMRefresh.xcconfig */;
			buildSettings = {
				CONFIGURATION_BUILD_DIR = "$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GMRefresh";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				INFOPLIST_FILE = "Target Support Files/GMRefresh/ResourceBundle-GMRefresh-Info.plist";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				PRODUCT_NAME = GMRefresh;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				WRAPPER_EXTENSION = bundle;
			};
			name = Release;
		};
		AAF678CED40D3499169D10F63CA0719E /* Release */ = {
			isa = XCBuildConfiguration;
			buildSettings = {
				ALWAYS_SEARCH_USER_PATHS = NO;
				CLANG_ANALYZER_NONNULL = YES;
				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
				CLANG_CXX_LIBRARY = "libc++";
				CLANG_ENABLE_MODULES = YES;
				CLANG_ENABLE_OBJC_ARC = YES;
				CLANG_WARN_BOOL_CONVERSION = YES;
				CLANG_WARN_CONSTANT_CONVERSION = YES;
				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
				CLANG_WARN_EMPTY_BODY = YES;
				CLANG_WARN_ENUM_CONVERSION = YES;
				CLANG_WARN_INT_CONVERSION = YES;
				CLANG_WARN_OBJC_ROOT_CLASS = YES;
				CLANG_WARN_UNREACHABLE_CODE = YES;
				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
				COPY_PHASE_STRIP = YES;
				ENABLE_NS_ASSERTIONS = NO;
				GCC_C_LANGUAGE_STANDARD = gnu99;
				GCC_PREPROCESSOR_DEFINITIONS = (
					"POD_CONFIGURATION_RELEASE=1",
					"$(inherited)",
				);
				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
				GCC_WARN_ABOUT_RETURN_TYPE = YES;
				GCC_WARN_UNDECLARED_SELECTOR = YES;
				GCC_WARN_UNINITIALIZED_AUTOS = YES;
				GCC_WARN_UNUSED_FUNCTION = YES;
				GCC_WARN_UNUSED_VARIABLE = YES;
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				STRIP_INSTALLED_PRODUCT = NO;
				SYMROOT = "${SRCROOT}/../build";
				VALIDATE_PRODUCT = YES;
			};
			name = Release;
		};
		B3CE6C25AC1760E28FF5682E90F0FFA6 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 1013BB4138A5E96F38483C00B1C31B04 /* GMRefresh.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = dwarf;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/GMRefresh/GMRefresh-prefix.pch";
				INFOPLIST_FILE = "Target Support Files/GMRefresh/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MODULEMAP_FILE = "Target Support Files/GMRefresh/GMRefresh.modulemap";
				MTL_ENABLE_DEBUG_INFO = YES;
				PRODUCT_NAME = GMRefresh;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
		E301C2D566E3A54B614D81709D172503 /* Debug */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = B087D3C06557250878D8194785BC9B7F /* MJRefresh.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = dwarf;
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch";
				INFOPLIST_FILE = "Target Support Files/MJRefresh/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap";
				MTL_ENABLE_DEBUG_INFO = YES;
				PRODUCT_NAME = MJRefresh;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Debug;
		};
		FB2CD07CC8D84D9F7D665E0253E30DE7 /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = B087D3C06557250878D8194785BC9B7F /* MJRefresh.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/MJRefresh/MJRefresh-prefix.pch";
				INFOPLIST_FILE = "Target Support Files/MJRefresh/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MODULEMAP_FILE = "Target Support Files/MJRefresh/MJRefresh.modulemap";
				MTL_ENABLE_DEBUG_INFO = NO;
				PRODUCT_NAME = MJRefresh;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
		FECC374529E299F102178593457B4E1C /* Release */ = {
			isa = XCBuildConfiguration;
			baseConfigurationReference = 1013BB4138A5E96F38483C00B1C31B04 /* GMRefresh.xcconfig */;
			buildSettings = {
				"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
				CURRENT_PROJECT_VERSION = 1;
				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
				DEFINES_MODULE = YES;
				DYLIB_COMPATIBILITY_VERSION = 1;
				DYLIB_CURRENT_VERSION = 1;
				DYLIB_INSTALL_NAME_BASE = "@rpath";
				ENABLE_STRICT_OBJC_MSGSEND = YES;
				GCC_NO_COMMON_BLOCKS = YES;
				GCC_PREFIX_HEADER = "Target Support Files/GMRefresh/GMRefresh-prefix.pch";
				INFOPLIST_FILE = "Target Support Files/GMRefresh/Info.plist";
				INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
				IPHONEOS_DEPLOYMENT_TARGET = 8.0;
				LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
				MODULEMAP_FILE = "Target Support Files/GMRefresh/GMRefresh.modulemap";
				MTL_ENABLE_DEBUG_INFO = NO;
				PRODUCT_NAME = GMRefresh;
				SDKROOT = iphoneos;
				SKIP_INSTALL = YES;
				TARGETED_DEVICE_FAMILY = "1,2";
				VERSIONING_SYSTEM = "apple-generic";
				VERSION_INFO_PREFIX = "";
			};
			name = Release;
		};
/* End XCBuildConfiguration section */

/* Begin XCConfigurationList section */
		2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				47BEF9D903506B003EA5C2B249729489 /* Debug */,
				AAF678CED40D3499169D10F63CA0719E /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		41938534BDFF968DE15DD6943877F3C5 /* Build configuration list for PBXNativeTarget "GMRefresh" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				B3CE6C25AC1760E28FF5682E90F0FFA6 /* Debug */,
				FECC374529E299F102178593457B4E1C /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		CF20DB6435BCBFFA5AE59FBBFB556339 /* Build configuration list for PBXNativeTarget "GMRefresh-GMRefresh" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				3C3D6C0A58D559B798D0A80B0DF37646 /* Debug */,
				A8842861097249BF08BBD42F4FA07279 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		EB45785AFC744BEB1361EBBF6B9247A3 /* Build configuration list for PBXNativeTarget "Pods-GMRefresh_Example" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				042F30EF47927CC01FD33EF8188FE4CC /* Debug */,
				97DD7CD9DF79D068B0CC55289422F740 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		EEDEA87BCD096A73344DA34D09ACF675 /* Build configuration list for PBXNativeTarget "MJRefresh" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				E301C2D566E3A54B614D81709D172503 /* Debug */,
				FB2CD07CC8D84D9F7D665E0253E30DE7 /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
		F4AEFEF38725DC47BCEA99875BE76732 /* Build configuration list for PBXNativeTarget "Pods-GMRefresh_Tests" */ = {
			isa = XCConfigurationList;
			buildConfigurations = (
				95B6BE667792969AFE51FB06D370F2BB /* Debug */,
				03C771511123410DB570210AEBD35E5D /* Release */,
			);
			defaultConfigurationIsVisible = 0;
			defaultConfigurationName = Release;
		};
/* End XCConfigurationList section */
	};
	rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
}