-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.pbxproj
More file actions
1645 lines (1632 loc) · 130 KB
/
project.pbxproj
File metadata and controls
1645 lines (1632 loc) · 130 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// !$*UTF8*$!
{
archiveVersion = 1;
classes = {
};
objectVersion = 46;
objects = {
/* Begin PBXBuildFile section */
00E9EC3B875421F3EC275B3F2639D961 /* NodeProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = 113BC040D1BDF2A2B9CDBD32C1BB594B /* NodeProperty.swift */; };
01D22E51190DA45F02722AB376A5617B /* AnimationCacheProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 38E3BF862F7F1BBA9E45BB4351D95E0F /* AnimationCacheProvider.swift */; };
0220BC5B3018A120AB867B3572D42088 /* StringExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B169607690C971D3430F00B7CEC5DCF /* StringExtensions.swift */; };
052CC7BCA5D2E6778264DFE09217161A /* FilepathImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = B66B780E4287D285B7030B767E618A0D /* FilepathImageProvider.swift */; };
060EB1FA3F21F4CE2737E9430CC84327 /* AwesomeLoading-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = CE2AF17BC1E6BC0AAD0676302B30C904 /* AwesomeLoading-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
075EBFF45F132D9F7C1CA69CF1845E33 /* TrimPathNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6D230E834F0BC73FF8375D149987121E /* TrimPathNode.swift */; };
082D30791B0845EDC06B94C50A9CA119 /* AnyNodeProperty.swift in Sources */ = {isa = PBXBuildFile; fileRef = C85DCF70930DEEFA6AB4D2CFEEDD8B7D /* AnyNodeProperty.swift */; };
0B4A3922ECDD6FBED25E337EA93D03A5 /* Rectangle.swift in Sources */ = {isa = PBXBuildFile; fileRef = EFD7C5028687AD191501064527BD7C7C /* Rectangle.swift */; };
11BAFB56EFBCCF513E0F3581380DFDB8 /* Animation.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA4B522EAFD924C013A6BE7B40090E6B /* Animation.swift */; };
12B6287AF6A8B8F05C621BBFC8289A18 /* SolidCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = A68302F76B14EA1CEB29DE3A6E72AB91 /* SolidCompositionLayer.swift */; };
13A4643F21D7F6F0AEAD8C2C688FBD8D /* AwesomeLoading.swift in Sources */ = {isa = PBXBuildFile; fileRef = 598A92FC4D1BF3526A8D2339C78D0B22 /* AwesomeLoading.swift */; };
13C68B0463FD004CC73F6E8C7C165166 /* AnimationKeypathExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D46B1088F1FC02A4B88712E976D415E /* AnimationKeypathExtension.swift */; };
16D9BCC71DB18E896EBC3C2FA1B1E8FB /* CompoundBezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = F25904A1E0E1EBD22C38C3AFE9F22D53 /* CompoundBezierPath.swift */; };
181608BABFB97A93F096DD327C1E4F0E /* Lottie.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 43624CA35B392D5E285E33BDCD385376 /* Lottie.framework */; };
1B7844801DEB8D17ECD082C78D1495DC /* GradientFillNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2C37787F6CEEF9B2E5A809DD7E63DC1 /* GradientFillNode.swift */; };
1C3602BD8AEC6664B0284E01632628C3 /* KeyframeExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = C1A9269826C77F01DED4B6B6D828DEE4 /* KeyframeExtensions.swift */; };
1E926B41EF66B64167AF0A310CCBF221 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 768E3F8155606458067367D2ADAAA69C /* Foundation.framework */; };
222E6C77EDBF56D67EF8C520454E4690 /* Font.swift in Sources */ = {isa = PBXBuildFile; fileRef = B134C82D1D61BCB7C8FFCC27336AEEFA /* Font.swift */; };
23AFABC45389A8B1249D0C31E931651E /* AnimationViewInitializers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7BE794849CF69B523DF5631C269DEAC9 /* AnimationViewInitializers.swift */; };
2485C2D82D6339F3F7C71F49AE0BCF6B /* ImageCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 969C71364B721F409509832326BD1095 /* ImageCompositionLayer.swift */; };
251132E0792DB2DD0B7EEF7E164AE978 /* ShadowLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = C665F8CA02F18297AE2846F9DCCD8F77 /* ShadowLayer.swift */; };
28EA855027C500FFFBF47E0355E7164E /* AnimationSubview.swift in Sources */ = {isa = PBXBuildFile; fileRef = B46D5F0C87F8324EEB3A7BBE32AE5BB7 /* AnimationSubview.swift */; };
29D4A8A19E18147D7203F3C00096CF32 /* GradientStrokeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = A7E3A1B141BC3BBA7CE52589FFA9B5E3 /* GradientStrokeNode.swift */; };
2AC5906FCCDD1EF75441630EEB0A1506 /* GradientFill.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D2F1B2D7FE00CEE50AD10C9B447BB74 /* GradientFill.swift */; };
2B07AF36F6687C0D25FD3AEBEB9FC3A1 /* Asset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 63B7C5BB00071EC700BAE7DA646E921C /* Asset.swift */; };
2CEA587C12530E74975889483927DBED /* AnimatedSwitch.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6DB80DE12C004C06C0A0D9C0F761A75 /* AnimatedSwitch.swift */; };
2D37C131B9213BB2E047371D4AA589A9 /* Pods-AwesomeLoading_Tests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 24A5D88F5FE09DFF3024CF1F01398FB1 /* Pods-AwesomeLoading_Tests-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
2DF5D2D47CEF8CCEF08436E53BBD5298 /* PolygonNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2E07136016B3759AAA479447E9862E0A /* PolygonNode.swift */; };
2EA4DB8BB4CE6B81CA896595A8368D4E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 384BF256C567F8C67B9A09AE6C0A3E17 /* UIKit.framework */; };
2EA7D0153F3F2BF524038109C25BCA05 /* LottieView.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDC730B7F84EC308F5EF1EF1D7C6F4DB /* LottieView.swift */; };
2FDF76746E594A9AABA452F0B8C494AF /* BezierPath.swift in Sources */ = {isa = PBXBuildFile; fileRef = AE528B71269969FEAB9ED8848D749DFC /* BezierPath.swift */; };
3031E3F60D51986EF5377C00DC7FF102 /* KeyframeGroup.swift in Sources */ = {isa = PBXBuildFile; fileRef = D5FE2C6261FEC415822BE4C9C284A9BD /* KeyframeGroup.swift */; };
311586EB4C45254ACB3F4DE2023276DF /* NodePropertyMap.swift in Sources */ = {isa = PBXBuildFile; fileRef = 17E63208E7E42EFC1F924C1068C91DD7 /* NodePropertyMap.swift */; };
3202B6D3DF168305318E42581028B633 /* AnyValueContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BDBC57CBDEEC0BE770BA03676CCDE42 /* AnyValueContainer.swift */; };
345B29A33382BB63C1028953E0B581D2 /* Color.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2A2E36C56FF2E096F3DCCB1796CB641D /* Color.swift */; };
370E6FED427782762C1CECA1A4C97D6A /* TextDocument.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BDD72927C5CEC0253E34016087ED7B4 /* TextDocument.swift */; };
3720350C495DFB66B094752EE10ADE71 /* CompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4F5A6EE0E55858E07E7B2B22FD668002 /* CompositionLayer.swift */; };
39A2A4255AF3BEA9C34A2C6C2BD82F12 /* AnimatorNodeDebugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = D7BCB553C5347051E2D7C2F14E75D3E1 /* AnimatorNodeDebugging.swift */; };
3A1EC3BFD5D2FF9B9E976267E31A1FE7 /* ShapeLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4884844C0D73F735E1A3B800DB87F756 /* ShapeLayerModel.swift */; };
3C4EB8F5C2BA23EE60214E0A4C0744C6 /* LayerDebugging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 677EF4349FF9D9234210EA32BE832786 /* LayerDebugging.swift */; };
3DD05DDD142125D6D56DE4122BB78782 /* RenderNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5C82B2C9EC3AFC39FB89758620C61E84 /* RenderNode.swift */; };
3F80C07CBD739F54CC406150EE4D1BEE /* VectorsExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = F7CF16E366B02A425F50B23061AE5588 /* VectorsExtensions.swift */; };
40653A1691A6C50FFD6F18CA1485F98A /* Pods-AwesomeLoading_Example-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D98982558ACC5704CDFF6DACFE83C79D /* Pods-AwesomeLoading_Example-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
409C985C01E194584930210F2D7E0870 /* PreCompLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1906C49B1EA5CB43E4CF33C692BEF713 /* PreCompLayerModel.swift */; };
422A26FE8B1F746099D9CCED6EF85CDA /* AwesomeLoading-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = FEF591F4F59401493AFC5DE6733F8178 /* AwesomeLoading-dummy.m */; };
43011C346024B6FD9249649C5A208756 /* InterpolatableExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6F48C8F20F6847F9723FA5D0D3200E6 /* InterpolatableExtensions.swift */; };
431397408256DD8A4401D270965D1C40 /* StrokeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 20ADA99D8C01319D12ED7740015EA9C4 /* StrokeRenderer.swift */; };
43FD935EADEDF32EDD44AD294BD14274 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 768E3F8155606458067367D2ADAAA69C /* Foundation.framework */; };
4738A0ED66FF24B1758628CB1D74CAA4 /* PointValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3882180B8CF8195D0D1009AEE44756B6 /* PointValueProvider.swift */; };
4A0FDE0788F01496DA588E0D6F43EF0D /* PassThroughOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = D568E97BBCB52A50F97204F925C16DB4 /* PassThroughOutputNode.swift */; };
4B718657F24358388C354D6F267D11B2 /* ImageLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 976BBC272AE924E2DB409B6BE7FAFC43 /* ImageLayerModel.swift */; };
4E32C4AA3B391B9FBBAFA54FF575029E /* AnimationKeypath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5963181A1D4D4ADFB014AF33DB566330 /* AnimationKeypath.swift */; };
4F4D017D047381CF0D81CCF0A87E2CE9 /* AwesomeLoadingAnimation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 070812E76A6ED49B121445AD71210F98 /* AwesomeLoadingAnimation.swift */; };
51B364B315B27EBB0F3593CB0B87C3DC /* ObjectAssociation.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8504AA8A71CA4C6F8EFF68D7111A20D5 /* ObjectAssociation.swift */; };
5375379E9F059F2ECBCDEC2765814DBD /* Repeater.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1112E44D1F5A45AA606BCF0AD73F3595 /* Repeater.swift */; };
567AB9F77AAAF3A6D0AB262117E89FC4 /* AnyValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 64B2E3EDF7351316B3E20ABE324E5BA9 /* AnyValueProvider.swift */; };
571FE16EBE028A383DF6DD096D617FBC /* Star.swift in Sources */ = {isa = PBXBuildFile; fileRef = F42B4F08AEA24F875CB1C06A02A1E7E4 /* Star.swift */; };
5BFC64844E63EF29BFC17810B3D3E6A4 /* TextAnimatorNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7011EE35C7788B3EA94A24AD9A32E37E /* TextAnimatorNode.swift */; };
5EDC38CA3F9496DBF3824B1E46C7666B /* PathOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF09704759342343F8451FC4861EFEDD /* PathOutputNode.swift */; };
5FA6B1F6361D8AF5939B72FAF5615B34 /* Pods-AwesomeLoading_Example-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BAADF589504630CFCBD522A2C191B785 /* Pods-AwesomeLoading_Example-dummy.m */; };
636309AF4C039C60B96DAEE62677FE67 /* SolidLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8BA0EB14FBD268F1F7842E88447CA048 /* SolidLayerModel.swift */; };
65015CDB7A6CFF910C2BC685E880744F /* Mask.swift in Sources */ = {isa = PBXBuildFile; fileRef = 691EFB49A0F5DA8611E943A70E80254E /* Mask.swift */; };
655416313B09322A31CEE82540484901 /* AwesomeLoading.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CDC84C090F1A79BD1371976D090779B6 /* AwesomeLoading.bundle */; };
6605617FFA506EC9DA3070009B00ACA8 /* AwesomeLoadingView.xib in Resources */ = {isa = PBXBuildFile; fileRef = D5DC27206C950514730524AA276DB00E /* AwesomeLoadingView.xib */; };
664BB2DB19EB663F9AFA49DD79B78D2D /* GradientFillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E7F589F99FCE15F3D10A1D2BD4F166F /* GradientFillRenderer.swift */; };
670D6DDB9F34F31071C97C1BE044A3FA /* ImageAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51C65C3E60CC229C57E83A5E67AFF89F /* ImageAsset.swift */; };
671BBC30539093CFAE6AD2D53FCAA20C /* LayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CB658DE269687703B82AE8737353C175 /* LayerModel.swift */; };
6A570D8B1D604BC939477110AD7E1FB1 /* InvertedMatteLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA55955E3D2C3026971D3B2E8E188250 /* InvertedMatteLayer.swift */; };
6FCBC0C36BDC29058F2B9005D4D6FA98 /* GroupInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = D686EF711D4B3811A748E0F43BDBEE76 /* GroupInterpolator.swift */; };
72CBAF3280D1469A751A38CD44170515 /* CompositionLayersInitializer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 379BACA9A37099ED26563343480BD0A5 /* CompositionLayersInitializer.swift */; };
72F1D25144548FE467834A01C41C02AA /* AssetLibrary.swift in Sources */ = {isa = PBXBuildFile; fileRef = B2510DCBDE031E97BF548D7FF1EC2652 /* AssetLibrary.swift */; };
7330B92E16196FA136EFF74AE23B6114 /* FloatValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B1EFF929E52B867A24FA32FA8C3D80E /* FloatValueProvider.swift */; };
73E9D197DD29598451920CC8EBFF682D /* AnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE480F9745CCC05C05495DCC76CCA8B6 /* AnimationView.swift */; };
76B542AD80DE425314971F442FAD3AA8 /* PrecompAsset.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4A94D08F148FCBEB1CE885A9AE23E22 /* PrecompAsset.swift */; };
781875E068E8CFE6F4C106A18FB01FFE /* GradientStroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = DABC5166A30B6CCBE50A2A83304B5163 /* GradientStroke.swift */; };
78D4F1A5B0EAD33166522F6852509FAD /* ColorValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = A4F7A56AB530D672C57D43702230381B /* ColorValueProvider.swift */; };
7AED96E40DFD25BFB551A389E095AD7A /* AwesomeLoadingView.xib in Resources */ = {isa = PBXBuildFile; fileRef = D5DC27206C950514730524AA276DB00E /* AwesomeLoadingView.xib */; };
7E847AAF8AD08631DD5022BA78388C66 /* AnimatedControl.swift in Sources */ = {isa = PBXBuildFile; fileRef = 46D3CC8D42A2E65A4C7AD307C43970A2 /* AnimatedControl.swift */; };
7F579005602926BC9B1B76AAACA8AB6F /* EllipseNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D6B09E1BD9CA10F3423B9F791E8B2F2 /* EllipseNode.swift */; };
813A2C2658CBBA13DEF39EE98BB35ECB /* SizeValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B772DD5F0ACCE59C966BAEF82A8A7F6 /* SizeValueProvider.swift */; };
8392EDDAC42733AC065BCA10477B3345 /* MathKit.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0ECCFD0269302C8512EACB7714E848FB /* MathKit.swift */; };
8623C1EE2850EE3F90B56E58A8519DC1 /* TextLayerModel.swift in Sources */ = {isa = PBXBuildFile; fileRef = CDD99C5205396DA8E48DCB98FD77EC9D /* TextLayerModel.swift */; };
8D1EE1D6FE87145B1768E503B87A4387 /* CompatibleAnimationKeypath.swift in Sources */ = {isa = PBXBuildFile; fileRef = 649D26F2E1FC976850B4538CA386BBE7 /* CompatibleAnimationKeypath.swift */; };
92BA42C103FE87640A4E145AD766C929 /* Vectors.swift in Sources */ = {isa = PBXBuildFile; fileRef = E2E7D146EB09FD9F3905A835515AA038 /* Vectors.swift */; };
92D7EAD1B13DC0C18606D265E5F7F3CF /* ShapeCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9ECAE6E59F27CF43B80F9A0627F077FD /* ShapeCompositionLayer.swift */; };
94950E35FAED58947701DE088859CC38 /* ColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = 143807E349DF7D827E19EC9B515EA0BD /* ColorExtension.swift */; };
95D98EAF6415779FE1494C05BD2B2010 /* NullCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7DAD6E0789C6D5DA137D81840D172DD5 /* NullCompositionLayer.swift */; };
970378985122A8D311A6011389A6302F /* Shape.swift in Sources */ = {isa = PBXBuildFile; fileRef = C0A762E90D8CEFB4BCCF53276785E578 /* Shape.swift */; };
9968F741A6D30DCB9542C581AFDFB896 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0B049C44D8E0C702FEA060FC52FDC9A5 /* QuartzCore.framework */; };
99AC483656F67A60594AB6992711BD87 /* CurveVertex.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1D8942F9DF7D57414344620550C5F804 /* CurveVertex.swift */; };
9E09EB0AF3795E76B41F88A4B11037F0 /* Keyframe.swift in Sources */ = {isa = PBXBuildFile; fileRef = A6911C292A328DD8E63ADD9D93F34255 /* Keyframe.swift */; };
9EEEEADD49D84D1207FC987AB7846602 /* AnimationPublic.swift in Sources */ = {isa = PBXBuildFile; fileRef = 774A63871AF8CAC551609409ED29646E /* AnimationPublic.swift */; };
A07582D33D200059F45EE2DDEC1B6612 /* AnimatorNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7D4E1050F32A5A1C8A0A4DD41DE833A2 /* AnimatorNode.swift */; };
A0CBCD25077786390C1337337DBF373D /* ShimmerEffect.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0B31857710C22CD58CD02C91599C686E /* ShimmerEffect.swift */; };
A35FC5309470D4B4AE8C65BD3FA3C27B /* GradientStrokeRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8C9625FEE11783744DB1900B875271B5 /* GradientStrokeRenderer.swift */; };
A3DBB8DFFA136D2AE2F545C62241B923 /* AnimationTime.swift in Sources */ = {isa = PBXBuildFile; fileRef = 7047D24A27E2CB305F154D4765D0F557 /* AnimationTime.swift */; };
A64753F56C2D66FF1D7D16FC0B34C296 /* UIColorExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = CFBD08B5203851E9921002E89142E451 /* UIColorExtension.swift */; };
A688563D394BA067AA4641EE14120A80 /* KeypathSearchable.swift in Sources */ = {isa = PBXBuildFile; fileRef = DB77D87F44B5C62ACD7215DB01F245EA /* KeypathSearchable.swift */; };
AA66C2BFE00F299EE8238BC15AB2361E /* AnimationContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = EA4BC2F3F9AE7636C6F7444C6624503B /* AnimationContainer.swift */; };
AAEB31870E45392F30148C1CBFCB15F8 /* LRUAnimationCache.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3E5BFB726D853359D941955A131996EB /* LRUAnimationCache.swift */; };
AB5B3F9EBA34FC733B5836576CB12D88 /* SingleValueProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0240CA4FDCEFFB06813AB6925462FFB6 /* SingleValueProvider.swift */; };
AC2B38451A342719FF925373E7247025 /* Ellipse.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8FC11A4E4A12D3BBF682BE768A9B9F61 /* Ellipse.swift */; };
AC960F5A20F2F6DA06B28C94750375A5 /* Transform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3B4A963FEFAE6B91EE7F379B2E9FFA8C /* Transform.swift */; };
B04F8BDAA66CA95A1FD9B04DC0C218B6 /* Interpolatable.swift in Sources */ = {isa = PBXBuildFile; fileRef = 505B57414CBC8281BC96562936EC4556 /* Interpolatable.swift */; };
B0CDDB169DB32D2D865F042D080CA063 /* TextAnimator.swift in Sources */ = {isa = PBXBuildFile; fileRef = 22F7AC4D4DEA072C8299496DF3E82C2B /* TextAnimator.swift */; };
B17E6E6ADFC0C29872A49BD0C28AE5E5 /* ShapeTransform.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6AD8EA8B404D268B705906B87C4C0803 /* ShapeTransform.swift */; };
B1ADF8F01075DAAF1E8828760752EE89 /* StrokeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = BB966BEB7798F759B90B129D6927BD9C /* StrokeNode.swift */; };
B2D57F6C88F5DF5EE3FE40C4BD7D0E17 /* RectNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = FDD3F8D0B3A5498657DFBC996806DED6 /* RectNode.swift */; };
B38BC3A5F6E7218D5EE4A1B7EDC96F77 /* FillI.swift in Sources */ = {isa = PBXBuildFile; fileRef = FAB29EDC631E97DAA14BF33C222C4D70 /* FillI.swift */; };
B4DB783021E7904B9D90CB7333055401 /* Stroke.swift in Sources */ = {isa = PBXBuildFile; fileRef = 266DB9F0334C06512C843A78EE0D6D42 /* Stroke.swift */; };
B7D7D114CFEFD0F7C3FC3E579BBF52DE /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 768E3F8155606458067367D2ADAAA69C /* Foundation.framework */; };
BB58E5643258BEE232615D71C0EFBFA9 /* TextCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 72FAB23EB8AE884D5DCAE4D1574E6C08 /* TextCompositionLayer.swift */; };
BC4FCBBCB894292A1FB89C69B4EBC58B /* Pods-AwesomeLoading_Tests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 216703EA9FA74CF78EDF5216AA622492 /* Pods-AwesomeLoading_Tests-dummy.m */; };
BE6A5E62C1303B1AEFA6F807ABAFD6BD /* ItemsExtension.swift in Sources */ = {isa = PBXBuildFile; fileRef = A3E7CB15D174A87781226FB75DB17BD7 /* ItemsExtension.swift */; };
BF7DA4831CDD8FE9BA570A7BF94810C9 /* Marker.swift in Sources */ = {isa = PBXBuildFile; fileRef = 103AE592D064F658DDE91B61620F1682 /* Marker.swift */; };
C06C10102D8814364912CDD9DD7879C1 /* ShapeContainerLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2D70A2DAF288EA9EFD66CFB0DF8AFC10 /* ShapeContainerLayer.swift */; };
C48DFA4D8C185063623061B9775F533B /* FileLoader.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE238AAD1E60CCFB6C17333C53D90F50 /* FileLoader.swift */; };
C514313632B1F2588FC22B9DD8FB5D11 /* PreCompositionLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2619E19530887FD35E364A320FE7E12C /* PreCompositionLayer.swift */; };
C660A77F0C08650790CD4192D5D54B17 /* GroupNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 588EFEC6DBC5AAA1C436C13C4A578B4B /* GroupNode.swift */; };
C69CA10A06691FA9CF12F52010817AD6 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 768E3F8155606458067367D2ADAAA69C /* Foundation.framework */; };
C899E7AF3D511CC97C87DD4BC4D41715 /* lottie-ios-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B7CBDDBBE4421D8789A657B6263ECB4F /* lottie-ios-dummy.m */; };
C905705ABA095721202C77B44BA8F5DD /* CompatibleAnimationView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8499829C96E10154A2D6EF1751AA09FF /* CompatibleAnimationView.swift */; };
CA4645EFFFA44E52F1DEB42E9A115C1D /* ShimmerUIViewExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0FDD791EE77F5EAB0BF38F3C4927487F /* ShimmerUIViewExtensions.swift */; };
CA78D8858F530A28117B6CDE9386CE98 /* PathElement.swift in Sources */ = {isa = PBXBuildFile; fileRef = 221813731D6146CFF20052220F33E64D /* PathElement.swift */; };
CF627FB8F656E3ABA6917D94EF034D3F /* AnimationImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 2B42F58CD08BDE66437A1C3B1B21FDA0 /* AnimationImageProvider.swift */; };
D17E16A4FBA20B605C8AE361F2E8E0CA /* AwesomeLoadingView.swift in Sources */ = {isa = PBXBuildFile; fileRef = DBD435624981F6B00CF89A9A728708F0 /* AwesomeLoadingView.swift */; };
D402F16B911A360DED6727087FA9E000 /* Merge.swift in Sources */ = {isa = PBXBuildFile; fileRef = 240D430FC219C26CCE92FD8757BCD00B /* Merge.swift */; };
D51831329E988B8FEF81BF315D1FC309 /* KeyedDecodingContainerExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = E565B039E466803F8180FB722BF753DA /* KeyedDecodingContainerExtensions.swift */; };
D920BAD11115A4BBA61DB5A12E026711 /* KeyframeInterpolator.swift in Sources */ = {isa = PBXBuildFile; fileRef = FF206308090C44BDD6F289A9EC095078 /* KeyframeInterpolator.swift */; };
DA42BF8B1CA0ACDA20BFDAE8D291A92B /* Glyph.swift in Sources */ = {isa = PBXBuildFile; fileRef = F2499A2C62AD41676ADA3DAE75C9D97E /* Glyph.swift */; };
DD808869E0EBF35B566DC95D29BE85AE /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8BA4F28981098D330A5CE5540CE3C463 /* CoreGraphics.framework */; };
E07BCFF1EB19B9D25DB32FC5253C1F20 /* MaskContainerLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9E7D45E0989FF6F792F2F7767324E004 /* MaskContainerLayer.swift */; };
E4C8FC21049FAB1384C8D936A6AFE2FC /* ShapeRenderLayer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 86B27A9CE42FE585257D6E63AD0FEE48 /* ShapeRenderLayer.swift */; };
E68AE60BD98DCA0973553A87FFAE3C6A /* AnimationContext.swift in Sources */ = {isa = PBXBuildFile; fileRef = C7062271C9CDA64A12688F56687B4EAD /* AnimationContext.swift */; };
E838D5FBF91E19C26A8798398F38E66C /* AnimatedButton.swift in Sources */ = {isa = PBXBuildFile; fileRef = 69528DF43F5B9DB406CEB8DFB7DCFC3B /* AnimatedButton.swift */; };
E87F4F5F608C814D27904583067AD4A6 /* FillRenderer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6BB6E3987984006E1F94C70F3FD54475 /* FillRenderer.swift */; };
E9394AC459935486B46E4A6F85387B49 /* StarNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5A69343B5EB4D507997610289E02376 /* StarNode.swift */; };
EBD847A87AAD162413B1CBDD0F491226 /* Group.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9103D26574E3FEE167EA6BDD2A3A8BDE /* Group.swift */; };
EF9BBD1D7FF60D3790F422FAE542A7C1 /* PathNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 8A5BD2AC0BBDF942FE2E1A001FF59867 /* PathNode.swift */; };
F013F06733C57B6A9EF318A0851D7D7D /* ShapeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 612110B541F8BC16B0B53ABE36D5677B /* ShapeNode.swift */; };
F06AE3CA580D4D95E8793CD94DB32676 /* LayerImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 335ED5AFC74F916CB179B23F9358822F /* LayerImageProvider.swift */; };
F091AA33875C8179A71BF283BED48716 /* ShimmerView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 19888154D4A175F628B5367580F1FD28 /* ShimmerView.swift */; };
F2E1E14123A83FB7E3D58DDCBB24A431 /* DashPattern.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9349F51439DCC96EB0E5FBBE34020962 /* DashPattern.swift */; };
F56989227CD56CA3BE02FC94950F87A9 /* ShapeItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 23036A7E78F6FC5DE342D141C2FD5CB3 /* ShapeItem.swift */; };
F64C6ABD6BB24FFC26955873D24B39AB /* CGFloatExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = A257556D187B6A904F9B4706929AEDEF /* CGFloatExtensions.swift */; };
F65337836222A8E0705133A98731B8A9 /* BundleImageProvider.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3A99FCE2944B364B457756A4EEEAA591 /* BundleImageProvider.swift */; };
F7929F400A18F6D4CE363628B6BA4002 /* GroupOutputNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9F64899A19DEACAA386A46EBEBB58B18 /* GroupOutputNode.swift */; };
F87EBB184F988DF6F01E296476AD3327 /* ValueContainer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1E0D23A6C3F68C261CE9B279C6F3CE4B /* ValueContainer.swift */; };
F9AC7F4E084BE3C4EBE97FA1D09C8980 /* LayerTransformNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = CA7D9335247A80C457C5E90749FE09DA /* LayerTransformNode.swift */; };
FA05A385F7BAC75E1E42B65513092A2C /* FillNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 6FDEA20AEC4434627AF4A148F04129FF /* FillNode.swift */; };
FA9D2551A839C4926F2842E6E15A8A3F /* Trim.swift in Sources */ = {isa = PBXBuildFile; fileRef = 13B1D76DB1BC61898FAE0232E7CB357F /* Trim.swift */; };
FD81B4FD7E00BD3322AA5809E43F8044 /* lottie-ios-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 60D4492E06752CBD9786947C70EC8AD0 /* lottie-ios-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
/* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */
3977B4D88EE83EB39E346C3267BB6438 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = D1CEB304742402D4B7B4FE64787F85F2;
remoteInfo = "lottie-ios";
};
5BD533276DA5E37D15CD5A350DD4DF63 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = B9181E470AF2AC56E5E07E5B3117AB17;
remoteInfo = "AwesomeLoading-AwesomeLoading";
};
C02824B98AF35486C5AA33CC8D7E2843 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 9C0BC41BC2467310900E1C5ED9FD8518;
remoteInfo = "Pods-AwesomeLoading_Example";
};
D2A9D2D3A77C271698A3F5344012041B /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = D1CEB304742402D4B7B4FE64787F85F2;
remoteInfo = "lottie-ios";
};
F27B674F004156EF2BF3AA3C5CE1D753 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1;
remoteGlobalIDString = 09AA638C928AE4F623F1BB5A1BDD769C;
remoteInfo = AwesomeLoading;
};
/* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */
0240CA4FDCEFFB06813AB6925462FFB6 /* SingleValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SingleValueProvider.swift; path = "lottie-swift/src/Private/NodeRenderSystem/NodeProperties/ValueProviders/SingleValueProvider.swift"; sourceTree = "<group>"; };
05908AC0F5146D6B6B53D5A4855D41F3 /* AwesomeLoading.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = AwesomeLoading.xcconfig; sourceTree = "<group>"; };
070812E76A6ED49B121445AD71210F98 /* AwesomeLoadingAnimation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AwesomeLoadingAnimation.swift; sourceTree = "<group>"; };
0AE1E6EB3377CE16B6CE69D683C646A9 /* Pods-AwesomeLoading_Example-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AwesomeLoading_Example-acknowledgements.plist"; sourceTree = "<group>"; };
0B049C44D8E0C702FEA060FC52FDC9A5 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
0B169607690C971D3430F00B7CEC5DCF /* StringExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StringExtensions.swift; path = "lottie-swift/src/Private/Utility/Extensions/StringExtensions.swift"; sourceTree = "<group>"; };
0B1EFF929E52B867A24FA32FA8C3D80E /* FloatValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FloatValueProvider.swift; path = "lottie-swift/src/Public/DynamicProperties/ValueProviders/FloatValueProvider.swift"; sourceTree = "<group>"; };
0B31857710C22CD58CD02C91599C686E /* ShimmerEffect.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ShimmerEffect.swift; sourceTree = "<group>"; };
0ECCFD0269302C8512EACB7714E848FB /* MathKit.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MathKit.swift; path = "lottie-swift/src/Private/Utility/Extensions/MathKit.swift"; sourceTree = "<group>"; };
0FDD791EE77F5EAB0BF38F3C4927487F /* ShimmerUIViewExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ShimmerUIViewExtensions.swift; sourceTree = "<group>"; };
103AE592D064F658DDE91B61620F1682 /* Marker.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Marker.swift; path = "lottie-swift/src/Private/Model/Objects/Marker.swift"; sourceTree = "<group>"; };
1112E44D1F5A45AA606BCF0AD73F3595 /* Repeater.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Repeater.swift; path = "lottie-swift/src/Private/Model/ShapeItems/Repeater.swift"; sourceTree = "<group>"; };
113BC040D1BDF2A2B9CDBD32C1BB594B /* NodeProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NodeProperty.swift; path = "lottie-swift/src/Private/NodeRenderSystem/NodeProperties/NodeProperty.swift"; sourceTree = "<group>"; };
116E5FF7F8E61FA6CDD3C9BA1F41C824 /* Pods-AwesomeLoading_Tests.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AwesomeLoading_Tests.modulemap"; sourceTree = "<group>"; };
13B1D76DB1BC61898FAE0232E7CB357F /* Trim.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Trim.swift; path = "lottie-swift/src/Private/Model/ShapeItems/Trim.swift"; sourceTree = "<group>"; };
143807E349DF7D827E19EC9B515EA0BD /* ColorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorExtension.swift; path = "lottie-swift/src/Private/Utility/Primitives/ColorExtension.swift"; sourceTree = "<group>"; };
17E63208E7E42EFC1F924C1068C91DD7 /* NodePropertyMap.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NodePropertyMap.swift; path = "lottie-swift/src/Private/NodeRenderSystem/NodeProperties/Protocols/NodePropertyMap.swift"; sourceTree = "<group>"; };
1906C49B1EA5CB43E4CF33C692BEF713 /* PreCompLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompLayerModel.swift; path = "lottie-swift/src/Private/Model/Layers/PreCompLayerModel.swift"; sourceTree = "<group>"; };
196FEB11B7340EC87D3486FE8E33676B /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; };
19888154D4A175F628B5367580F1FD28 /* ShimmerView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ShimmerView.swift; sourceTree = "<group>"; };
19FD03749BFD63B0D92D06FADE9853E0 /* ResourceBundle-AwesomeLoading-AwesomeLoading-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "ResourceBundle-AwesomeLoading-AwesomeLoading-Info.plist"; sourceTree = "<group>"; };
1C5320D865C9A9BD3D77992CE2E6EFDD /* AwesomeLoading.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = AwesomeLoading.framework; sourceTree = BUILT_PRODUCTS_DIR; };
1D6B09E1BD9CA10F3423B9F791E8B2F2 /* EllipseNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = EllipseNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/EllipseNode.swift"; sourceTree = "<group>"; };
1D8942F9DF7D57414344620550C5F804 /* CurveVertex.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CurveVertex.swift; path = "lottie-swift/src/Private/Utility/Primitives/CurveVertex.swift"; sourceTree = "<group>"; };
1E0D23A6C3F68C261CE9B279C6F3CE4B /* ValueContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ValueContainer.swift; path = "lottie-swift/src/Private/NodeRenderSystem/NodeProperties/ValueContainer.swift"; sourceTree = "<group>"; };
20ADA99D8C01319D12ED7740015EA9C4 /* StrokeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeRenderer.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/StrokeRenderer.swift"; sourceTree = "<group>"; };
216703EA9FA74CF78EDF5216AA622492 /* Pods-AwesomeLoading_Tests-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AwesomeLoading_Tests-dummy.m"; sourceTree = "<group>"; };
221813731D6146CFF20052220F33E64D /* PathElement.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathElement.swift; path = "lottie-swift/src/Private/Utility/Primitives/PathElement.swift"; sourceTree = "<group>"; };
22F7AC4D4DEA072C8299496DF3E82C2B /* TextAnimator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextAnimator.swift; path = "lottie-swift/src/Private/Model/Text/TextAnimator.swift"; sourceTree = "<group>"; };
23036A7E78F6FC5DE342D141C2FD5CB3 /* ShapeItem.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeItem.swift; path = "lottie-swift/src/Private/Model/ShapeItems/ShapeItem.swift"; sourceTree = "<group>"; };
240D430FC219C26CCE92FD8757BCD00B /* Merge.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Merge.swift; path = "lottie-swift/src/Private/Model/ShapeItems/Merge.swift"; sourceTree = "<group>"; };
24A5D88F5FE09DFF3024CF1F01398FB1 /* Pods-AwesomeLoading_Tests-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AwesomeLoading_Tests-umbrella.h"; sourceTree = "<group>"; };
2619E19530887FD35E364A320FE7E12C /* PreCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PreCompositionLayer.swift; path = "lottie-swift/src/Private/LayerContainers/CompLayers/PreCompositionLayer.swift"; sourceTree = "<group>"; };
266DB9F0334C06512C843A78EE0D6D42 /* Stroke.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Stroke.swift; path = "lottie-swift/src/Private/Model/ShapeItems/Stroke.swift"; sourceTree = "<group>"; };
2A2E36C56FF2E096F3DCCB1796CB641D /* Color.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Color.swift; path = "lottie-swift/src/Public/Primitives/Color.swift"; sourceTree = "<group>"; };
2B42F58CD08BDE66437A1C3B1B21FDA0 /* AnimationImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationImageProvider.swift; path = "lottie-swift/src/Public/ImageProvider/AnimationImageProvider.swift"; sourceTree = "<group>"; };
2B772DD5F0ACCE59C966BAEF82A8A7F6 /* SizeValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SizeValueProvider.swift; path = "lottie-swift/src/Public/DynamicProperties/ValueProviders/SizeValueProvider.swift"; sourceTree = "<group>"; };
2D2F1B2D7FE00CEE50AD10C9B447BB74 /* GradientFill.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFill.swift; path = "lottie-swift/src/Private/Model/ShapeItems/GradientFill.swift"; sourceTree = "<group>"; };
2D46B1088F1FC02A4B88712E976D415E /* AnimationKeypathExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationKeypathExtension.swift; path = "lottie-swift/src/Private/Utility/Extensions/AnimationKeypathExtension.swift"; sourceTree = "<group>"; };
2D70A2DAF288EA9EFD66CFB0DF8AFC10 /* ShapeContainerLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeContainerLayer.swift; path = "lottie-swift/src/Private/NodeRenderSystem/RenderLayers/ShapeContainerLayer.swift"; sourceTree = "<group>"; };
2E07136016B3759AAA479447E9862E0A /* PolygonNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PolygonNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/PolygonNode.swift"; sourceTree = "<group>"; };
2E4700746946B4C835C3DED66539A7F0 /* AwesomeLoading-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AwesomeLoading-prefix.pch"; sourceTree = "<group>"; };
335ED5AFC74F916CB179B23F9358822F /* LayerImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerImageProvider.swift; path = "lottie-swift/src/Private/LayerContainers/Utility/LayerImageProvider.swift"; sourceTree = "<group>"; };
3568FD01E5988EBA822A0DE9E5642226 /* lottie-ios-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-prefix.pch"; sourceTree = "<group>"; };
379BACA9A37099ED26563343480BD0A5 /* CompositionLayersInitializer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositionLayersInitializer.swift; path = "lottie-swift/src/Private/LayerContainers/Utility/CompositionLayersInitializer.swift"; sourceTree = "<group>"; };
384BF256C567F8C67B9A09AE6C0A3E17 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
3882180B8CF8195D0D1009AEE44756B6 /* PointValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PointValueProvider.swift; path = "lottie-swift/src/Public/DynamicProperties/ValueProviders/PointValueProvider.swift"; sourceTree = "<group>"; };
38E3BF862F7F1BBA9E45BB4351D95E0F /* AnimationCacheProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationCacheProvider.swift; path = "lottie-swift/src/Public/AnimationCache/AnimationCacheProvider.swift"; sourceTree = "<group>"; };
3A99FCE2944B364B457756A4EEEAA591 /* BundleImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BundleImageProvider.swift; path = "lottie-swift/src/Public/iOS/BundleImageProvider.swift"; sourceTree = "<group>"; };
3B4A963FEFAE6B91EE7F379B2E9FFA8C /* Transform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Transform.swift; path = "lottie-swift/src/Private/Model/Objects/Transform.swift"; sourceTree = "<group>"; };
3E5BFB726D853359D941955A131996EB /* LRUAnimationCache.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LRUAnimationCache.swift; path = "lottie-swift/src/Public/AnimationCache/LRUAnimationCache.swift"; sourceTree = "<group>"; };
3E7F589F99FCE15F3D10A1D2BD4F166F /* GradientFillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFillRenderer.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientFillRenderer.swift"; sourceTree = "<group>"; };
419CDBBF5C45C5B26EDE619B39892E88 /* Pods-AwesomeLoading_Example-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AwesomeLoading_Example-Info.plist"; sourceTree = "<group>"; };
43624CA35B392D5E285E33BDCD385376 /* Lottie.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Lottie.framework; sourceTree = BUILT_PRODUCTS_DIR; };
438748BF8DC8EA894B83C6B2E39AFF36 /* lottie-ios.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "lottie-ios.xcconfig"; sourceTree = "<group>"; };
43FD417B1746695ABF3631C0853A7FB3 /* Pods-AwesomeLoading_Example-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-AwesomeLoading_Example-frameworks.sh"; sourceTree = "<group>"; };
46D3CC8D42A2E65A4C7AD307C43970A2 /* AnimatedControl.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedControl.swift; path = "lottie-swift/src/Public/iOS/AnimatedControl.swift"; sourceTree = "<group>"; };
4884844C0D73F735E1A3B800DB87F756 /* ShapeLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeLayerModel.swift; path = "lottie-swift/src/Private/Model/Layers/ShapeLayerModel.swift"; sourceTree = "<group>"; };
4F5A6EE0E55858E07E7B2B22FD668002 /* CompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompositionLayer.swift; path = "lottie-swift/src/Private/LayerContainers/CompLayers/CompositionLayer.swift"; sourceTree = "<group>"; };
505B57414CBC8281BC96562936EC4556 /* Interpolatable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Interpolatable.swift; path = "lottie-swift/src/Private/Utility/Interpolatable/Interpolatable.swift"; sourceTree = "<group>"; };
51C65C3E60CC229C57E83A5E67AFF89F /* ImageAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageAsset.swift; path = "lottie-swift/src/Private/Model/Assets/ImageAsset.swift"; sourceTree = "<group>"; };
588EFEC6DBC5AAA1C436C13C4A578B4B /* GroupNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderContainers/GroupNode.swift"; sourceTree = "<group>"; };
5904990B807C3704A205A54EA575CE60 /* Pods-AwesomeLoading_Tests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AwesomeLoading_Tests.debug.xcconfig"; sourceTree = "<group>"; };
5963181A1D4D4ADFB014AF33DB566330 /* AnimationKeypath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationKeypath.swift; path = "lottie-swift/src/Public/DynamicProperties/AnimationKeypath.swift"; sourceTree = "<group>"; };
598A92FC4D1BF3526A8D2339C78D0B22 /* AwesomeLoading.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AwesomeLoading.swift; path = AwesomeLoading/Classes/AwesomeLoading.swift; sourceTree = "<group>"; };
5C82B2C9EC3AFC39FB89758620C61E84 /* RenderNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RenderNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Protocols/RenderNode.swift"; sourceTree = "<group>"; };
5DEA3848DE891B65008DBB21261A0F7A /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = net.daringfireball.markdown; path = README.md; sourceTree = "<group>"; };
60D4492E06752CBD9786947C70EC8AD0 /* lottie-ios-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "lottie-ios-umbrella.h"; sourceTree = "<group>"; };
612110B541F8BC16B0B53ABE36D5677B /* ShapeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/ShapeNode.swift"; sourceTree = "<group>"; };
635A1D277C5E6BC364CDB77860B5BF16 /* Pods-AwesomeLoading_Example.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-AwesomeLoading_Example.modulemap"; sourceTree = "<group>"; };
63B7C5BB00071EC700BAE7DA646E921C /* Asset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Asset.swift; path = "lottie-swift/src/Private/Model/Assets/Asset.swift"; sourceTree = "<group>"; };
649D26F2E1FC976850B4538CA386BBE7 /* CompatibleAnimationKeypath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibleAnimationKeypath.swift; path = "lottie-swift/src/Public/iOS/Compatibility/CompatibleAnimationKeypath.swift"; sourceTree = "<group>"; };
64B2E3EDF7351316B3E20ABE324E5BA9 /* AnyValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyValueProvider.swift; path = "lottie-swift/src/Public/DynamicProperties/AnyValueProvider.swift"; sourceTree = "<group>"; };
677EF4349FF9D9234210EA32BE832786 /* LayerDebugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerDebugging.swift; path = "lottie-swift/src/Private/Utility/Debugging/LayerDebugging.swift"; sourceTree = "<group>"; };
679660B1449BC9E8D1A8AC6AF8E2264C /* Pods-AwesomeLoading_Tests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AwesomeLoading_Tests.release.xcconfig"; sourceTree = "<group>"; };
691EFB49A0F5DA8611E943A70E80254E /* Mask.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Mask.swift; path = "lottie-swift/src/Private/Model/Objects/Mask.swift"; sourceTree = "<group>"; };
69528DF43F5B9DB406CEB8DFB7DCFC3B /* AnimatedButton.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedButton.swift; path = "lottie-swift/src/Public/iOS/AnimatedButton.swift"; sourceTree = "<group>"; };
6AD8EA8B404D268B705906B87C4C0803 /* ShapeTransform.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeTransform.swift; path = "lottie-swift/src/Private/Model/ShapeItems/ShapeTransform.swift"; sourceTree = "<group>"; };
6BB6E3987984006E1F94C70F3FD54475 /* FillRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillRenderer.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/FillRenderer.swift"; sourceTree = "<group>"; };
6D230E834F0BC73FF8375D149987121E /* TrimPathNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TrimPathNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/ModifierNodes/TrimPathNode.swift"; sourceTree = "<group>"; };
6FDEA20AEC4434627AF4A148F04129FF /* FillNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/FillNode.swift"; sourceTree = "<group>"; };
7011EE35C7788B3EA94A24AD9A32E37E /* TextAnimatorNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextAnimatorNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/Text/TextAnimatorNode.swift"; sourceTree = "<group>"; };
7047D24A27E2CB305F154D4765D0F557 /* AnimationTime.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationTime.swift; path = "lottie-swift/src/Public/Primitives/AnimationTime.swift"; sourceTree = "<group>"; };
72FAB23EB8AE884D5DCAE4D1574E6C08 /* TextCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextCompositionLayer.swift; path = "lottie-swift/src/Private/LayerContainers/CompLayers/TextCompositionLayer.swift"; sourceTree = "<group>"; };
768E3F8155606458067367D2ADAAA69C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
774A63871AF8CAC551609409ED29646E /* AnimationPublic.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationPublic.swift; path = "lottie-swift/src/Public/Animation/AnimationPublic.swift"; sourceTree = "<group>"; };
7BE794849CF69B523DF5631C269DEAC9 /* AnimationViewInitializers.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationViewInitializers.swift; path = "lottie-swift/src/Public/Animation/AnimationViewInitializers.swift"; sourceTree = "<group>"; };
7D4E1050F32A5A1C8A0A4DD41DE833A2 /* AnimatorNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatorNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Protocols/AnimatorNode.swift"; sourceTree = "<group>"; };
7DAD6E0789C6D5DA137D81840D172DD5 /* NullCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = NullCompositionLayer.swift; path = "lottie-swift/src/Private/LayerContainers/CompLayers/NullCompositionLayer.swift"; sourceTree = "<group>"; };
8457BAB441B596F7A4394006C57B0C9E /* Pods-AwesomeLoading_Example.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AwesomeLoading_Example.debug.xcconfig"; sourceTree = "<group>"; };
8499829C96E10154A2D6EF1751AA09FF /* CompatibleAnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompatibleAnimationView.swift; path = "lottie-swift/src/Public/iOS/Compatibility/CompatibleAnimationView.swift"; sourceTree = "<group>"; };
8504AA8A71CA4C6F8EFF68D7111A20D5 /* ObjectAssociation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ObjectAssociation.swift; path = AwesomeLoading/Classes/ObjectAssociation.swift; sourceTree = "<group>"; };
86B27A9CE42FE585257D6E63AD0FEE48 /* ShapeRenderLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeRenderLayer.swift; path = "lottie-swift/src/Private/NodeRenderSystem/RenderLayers/ShapeRenderLayer.swift"; sourceTree = "<group>"; };
8A5BD2AC0BBDF942FE2E1A001FF59867 /* PathNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Protocols/PathNode.swift"; sourceTree = "<group>"; };
8BA0EB14FBD268F1F7842E88447CA048 /* SolidLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidLayerModel.swift; path = "lottie-swift/src/Private/Model/Layers/SolidLayerModel.swift"; sourceTree = "<group>"; };
8BA4F28981098D330A5CE5540CE3C463 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk/System/Library/Frameworks/CoreGraphics.framework; sourceTree = DEVELOPER_DIR; };
8BDBC57CBDEEC0BE770BA03676CCDE42 /* AnyValueContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyValueContainer.swift; path = "lottie-swift/src/Private/NodeRenderSystem/NodeProperties/Protocols/AnyValueContainer.swift"; sourceTree = "<group>"; };
8BDD72927C5CEC0253E34016087ED7B4 /* TextDocument.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextDocument.swift; path = "lottie-swift/src/Private/Model/Text/TextDocument.swift"; sourceTree = "<group>"; };
8C9625FEE11783744DB1900B875271B5 /* GradientStrokeRenderer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStrokeRenderer.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/Renderables/GradientStrokeRenderer.swift"; sourceTree = "<group>"; };
8FC11A4E4A12D3BBF682BE768A9B9F61 /* Ellipse.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Ellipse.swift; path = "lottie-swift/src/Private/Model/ShapeItems/Ellipse.swift"; sourceTree = "<group>"; };
9103D26574E3FEE167EA6BDD2A3A8BDE /* Group.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Group.swift; path = "lottie-swift/src/Private/Model/ShapeItems/Group.swift"; sourceTree = "<group>"; };
9349F51439DCC96EB0E5FBBE34020962 /* DashPattern.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = DashPattern.swift; path = "lottie-swift/src/Private/Model/Objects/DashPattern.swift"; sourceTree = "<group>"; };
94534BDBBFBCE17ED1742085BEC7D31F /* AwesomeLoading.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = AwesomeLoading.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
969C71364B721F409509832326BD1095 /* ImageCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageCompositionLayer.swift; path = "lottie-swift/src/Private/LayerContainers/CompLayers/ImageCompositionLayer.swift"; sourceTree = "<group>"; };
976BBC272AE924E2DB409B6BE7FAFC43 /* ImageLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ImageLayerModel.swift; path = "lottie-swift/src/Private/Model/Layers/ImageLayerModel.swift"; sourceTree = "<group>"; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9E7D45E0989FF6F792F2F7767324E004 /* MaskContainerLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = MaskContainerLayer.swift; path = "lottie-swift/src/Private/LayerContainers/CompLayers/MaskContainerLayer.swift"; sourceTree = "<group>"; };
9ECAE6E59F27CF43B80F9A0627F077FD /* ShapeCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ShapeCompositionLayer.swift; path = "lottie-swift/src/Private/LayerContainers/CompLayers/ShapeCompositionLayer.swift"; sourceTree = "<group>"; };
9F64899A19DEACAA386A46EBEBB58B18 /* GroupOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupOutputNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/GroupOutputNode.swift"; sourceTree = "<group>"; };
A0792E3BADA9158ACC0DDB9BB5E6D3FF /* Pods-AwesomeLoading_Example.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-AwesomeLoading_Example.release.xcconfig"; sourceTree = "<group>"; };
A257556D187B6A904F9B4706929AEDEF /* CGFloatExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CGFloatExtensions.swift; path = "lottie-swift/src/Private/Utility/Extensions/CGFloatExtensions.swift"; sourceTree = "<group>"; };
A3E7CB15D174A87781226FB75DB17BD7 /* ItemsExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ItemsExtension.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Extensions/ItemsExtension.swift"; sourceTree = "<group>"; };
A4A94D08F148FCBEB1CE885A9AE23E22 /* PrecompAsset.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PrecompAsset.swift; path = "lottie-swift/src/Private/Model/Assets/PrecompAsset.swift"; sourceTree = "<group>"; };
A4F7A56AB530D672C57D43702230381B /* ColorValueProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = ColorValueProvider.swift; path = "lottie-swift/src/Public/DynamicProperties/ValueProviders/ColorValueProvider.swift"; sourceTree = "<group>"; };
A5C2FB965049742ACCD9A7679CB9C665 /* Pods-AwesomeLoading_Tests-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AwesomeLoading_Tests-acknowledgements.plist"; sourceTree = "<group>"; };
A68302F76B14EA1CEB29DE3A6E72AB91 /* SolidCompositionLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = SolidCompositionLayer.swift; path = "lottie-swift/src/Private/LayerContainers/CompLayers/SolidCompositionLayer.swift"; sourceTree = "<group>"; };
A6911C292A328DD8E63ADD9D93F34255 /* Keyframe.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Keyframe.swift; path = "lottie-swift/src/Private/Model/Keyframes/Keyframe.swift"; sourceTree = "<group>"; };
A6A033A1621F95E6E3F2621DA4BB4802 /* lottie-ios.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "lottie-ios.modulemap"; sourceTree = "<group>"; };
A6DB80DE12C004C06C0A0D9C0F761A75 /* AnimatedSwitch.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatedSwitch.swift; path = "lottie-swift/src/Public/iOS/AnimatedSwitch.swift"; sourceTree = "<group>"; };
A6F48C8F20F6847F9723FA5D0D3200E6 /* InterpolatableExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InterpolatableExtensions.swift; path = "lottie-swift/src/Private/Utility/Interpolatable/InterpolatableExtensions.swift"; sourceTree = "<group>"; };
A7E3A1B141BC3BBA7CE52589FFA9B5E3 /* GradientStrokeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStrokeNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/GradientStrokeNode.swift"; sourceTree = "<group>"; };
AE528B71269969FEAB9ED8848D749DFC /* BezierPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = BezierPath.swift; path = "lottie-swift/src/Private/Utility/Primitives/BezierPath.swift"; sourceTree = "<group>"; };
B134C82D1D61BCB7C8FFCC27336AEEFA /* Font.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Font.swift; path = "lottie-swift/src/Private/Model/Text/Font.swift"; sourceTree = "<group>"; };
B2510DCBDE031E97BF548D7FF1EC2652 /* AssetLibrary.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AssetLibrary.swift; path = "lottie-swift/src/Private/Model/Assets/AssetLibrary.swift"; sourceTree = "<group>"; };
B46D5F0C87F8324EEB3A7BBE32AE5BB7 /* AnimationSubview.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationSubview.swift; path = "lottie-swift/src/Public/iOS/AnimationSubview.swift"; sourceTree = "<group>"; };
B66B780E4287D285B7030B767E618A0D /* FilepathImageProvider.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FilepathImageProvider.swift; path = "lottie-swift/src/Public/iOS/FilepathImageProvider.swift"; sourceTree = "<group>"; };
B7CBDDBBE4421D8789A657B6263ECB4F /* lottie-ios-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "lottie-ios-dummy.m"; sourceTree = "<group>"; };
BAADF589504630CFCBD522A2C191B785 /* Pods-AwesomeLoading_Example-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-AwesomeLoading_Example-dummy.m"; sourceTree = "<group>"; };
BB966BEB7798F759B90B129D6927BD9C /* StrokeNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StrokeNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/StrokeNode.swift"; sourceTree = "<group>"; };
BE238AAD1E60CCFB6C17333C53D90F50 /* FileLoader.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FileLoader.swift; path = AwesomeLoading/Classes/FileLoader.swift; sourceTree = "<group>"; };
BE480F9745CCC05C05495DCC76CCA8B6 /* AnimationView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationView.swift; path = "lottie-swift/src/Public/Animation/AnimationView.swift"; sourceTree = "<group>"; };
C0A762E90D8CEFB4BCCF53276785E578 /* Shape.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Shape.swift; path = "lottie-swift/src/Private/Model/ShapeItems/Shape.swift"; sourceTree = "<group>"; };
C1A9269826C77F01DED4B6B6D828DEE4 /* KeyframeExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeExtensions.swift; path = "lottie-swift/src/Private/Utility/Interpolatable/KeyframeExtensions.swift"; sourceTree = "<group>"; };
C5F09588570D1C5B499A0048E1EE5DD8 /* Pods_AwesomeLoading_Example.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AwesomeLoading_Example.framework; sourceTree = BUILT_PRODUCTS_DIR; };
C665F8CA02F18297AE2846F9DCCD8F77 /* ShadowLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ShadowLayer.swift; sourceTree = "<group>"; };
C7062271C9CDA64A12688F56687B4EAD /* AnimationContext.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationContext.swift; path = "lottie-swift/src/Private/Utility/Helpers/AnimationContext.swift"; sourceTree = "<group>"; };
C85DCF70930DEEFA6AB4D2CFEEDD8B7D /* AnyNodeProperty.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnyNodeProperty.swift; path = "lottie-swift/src/Private/NodeRenderSystem/NodeProperties/Protocols/AnyNodeProperty.swift"; sourceTree = "<group>"; };
CA4B522EAFD924C013A6BE7B40090E6B /* Animation.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Animation.swift; path = "lottie-swift/src/Private/Model/Animation.swift"; sourceTree = "<group>"; };
CA55955E3D2C3026971D3B2E8E188250 /* InvertedMatteLayer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = InvertedMatteLayer.swift; path = "lottie-swift/src/Private/LayerContainers/Utility/InvertedMatteLayer.swift"; sourceTree = "<group>"; };
CA7D9335247A80C457C5E90749FE09DA /* LayerTransformNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerTransformNode.swift; path = "lottie-swift/src/Private/LayerContainers/Utility/LayerTransformNode.swift"; sourceTree = "<group>"; };
CB658DE269687703B82AE8737353C175 /* LayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LayerModel.swift; path = "lottie-swift/src/Private/Model/Layers/LayerModel.swift"; sourceTree = "<group>"; };
CD162D66DFB04F93A60BE984502CE951 /* Pods-AwesomeLoading_Tests-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-AwesomeLoading_Tests-Info.plist"; sourceTree = "<group>"; };
CDC730B7F84EC308F5EF1EF1D7C6F4DB /* LottieView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = LottieView.swift; path = "lottie-swift/src/Public/iOS/LottieView.swift"; sourceTree = "<group>"; };
CDC84C090F1A79BD1371976D090779B6 /* AwesomeLoading.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = AwesomeLoading.bundle; sourceTree = BUILT_PRODUCTS_DIR; };
CDD99C5205396DA8E48DCB98FD77EC9D /* TextLayerModel.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = TextLayerModel.swift; path = "lottie-swift/src/Private/Model/Layers/TextLayerModel.swift"; sourceTree = "<group>"; };
CE2AF17BC1E6BC0AAD0676302B30C904 /* AwesomeLoading-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "AwesomeLoading-umbrella.h"; sourceTree = "<group>"; };
CFBD08B5203851E9921002E89142E451 /* UIColorExtension.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = UIColorExtension.swift; path = "lottie-swift/src/Public/iOS/UIColorExtension.swift"; sourceTree = "<group>"; };
D568E97BBCB52A50F97204F925C16DB4 /* PassThroughOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PassThroughOutputNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/PassThroughOutputNode.swift"; sourceTree = "<group>"; };
D5DC27206C950514730524AA276DB00E /* AwesomeLoadingView.xib */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.xib; name = AwesomeLoadingView.xib; path = AwesomeLoading/Classes/Resources/AwesomeLoadingView.xib; sourceTree = "<group>"; };
D5ED1765FDBA96EA616CD4FCFD38CB3F /* LICENSE */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
D5FE2C6261FEC415822BE4C9C284A9BD /* KeyframeGroup.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeGroup.swift; path = "lottie-swift/src/Private/Model/Keyframes/KeyframeGroup.swift"; sourceTree = "<group>"; };
D686EF711D4B3811A748E0F43BDBEE76 /* GroupInterpolator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GroupInterpolator.swift; path = "lottie-swift/src/Private/NodeRenderSystem/NodeProperties/ValueProviders/GroupInterpolator.swift"; sourceTree = "<group>"; };
D7BCB553C5347051E2D7C2F14E75D3E1 /* AnimatorNodeDebugging.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimatorNodeDebugging.swift; path = "lottie-swift/src/Private/Utility/Debugging/AnimatorNodeDebugging.swift"; sourceTree = "<group>"; };
D98982558ACC5704CDFF6DACFE83C79D /* Pods-AwesomeLoading_Example-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-AwesomeLoading_Example-umbrella.h"; sourceTree = "<group>"; };
DABC5166A30B6CCBE50A2A83304B5163 /* GradientStroke.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientStroke.swift; path = "lottie-swift/src/Private/Model/ShapeItems/GradientStroke.swift"; sourceTree = "<group>"; };
DB77D87F44B5C62ACD7215DB01F245EA /* KeypathSearchable.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeypathSearchable.swift; path = "lottie-swift/src/Private/NodeRenderSystem/NodeProperties/Protocols/KeypathSearchable.swift"; sourceTree = "<group>"; };
DBD435624981F6B00CF89A9A728708F0 /* AwesomeLoadingView.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AwesomeLoadingView.swift; sourceTree = "<group>"; };
DD86440851D332CC25175AB7DC2D661A /* Pods_AwesomeLoading_Tests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_AwesomeLoading_Tests.framework; sourceTree = BUILT_PRODUCTS_DIR; };
DF3293563E2120E8EB6722AFCFBD0B52 /* lottie-ios-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "lottie-ios-Info.plist"; sourceTree = "<group>"; };
E1215D92B3A8C0BA879BF0C212720E55 /* Pods-AwesomeLoading_Tests-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AwesomeLoading_Tests-acknowledgements.markdown"; sourceTree = "<group>"; };
E16A01EA2FAFB849B0E62BC572499159 /* AwesomeLoading.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = AwesomeLoading.modulemap; sourceTree = "<group>"; };
E2E7D146EB09FD9F3905A835515AA038 /* Vectors.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Vectors.swift; path = "lottie-swift/src/Public/Primitives/Vectors.swift"; sourceTree = "<group>"; };
E565B039E466803F8180FB722BF753DA /* KeyedDecodingContainerExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyedDecodingContainerExtensions.swift; path = "lottie-swift/src/Private/Model/Extensions/KeyedDecodingContainerExtensions.swift"; sourceTree = "<group>"; };
E6DE2914153D6CDA17BB8859D277AA76 /* AwesomeLoading-Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "AwesomeLoading-Info.plist"; sourceTree = "<group>"; };
EA4BC2F3F9AE7636C6F7444C6624503B /* AnimationContainer.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = AnimationContainer.swift; path = "lottie-swift/src/Private/LayerContainers/AnimationContainer.swift"; sourceTree = "<group>"; };
EFD7C5028687AD191501064527BD7C7C /* Rectangle.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Rectangle.swift; path = "lottie-swift/src/Private/Model/ShapeItems/Rectangle.swift"; sourceTree = "<group>"; };
F2499A2C62AD41676ADA3DAE75C9D97E /* Glyph.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Glyph.swift; path = "lottie-swift/src/Private/Model/Text/Glyph.swift"; sourceTree = "<group>"; };
F25904A1E0E1EBD22C38C3AFE9F22D53 /* CompoundBezierPath.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = CompoundBezierPath.swift; path = "lottie-swift/src/Private/Utility/Primitives/CompoundBezierPath.swift"; sourceTree = "<group>"; };
F2C37787F6CEEF9B2E5A809DD7E63DC1 /* GradientFillNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = GradientFillNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/RenderNodes/GradientFillNode.swift"; sourceTree = "<group>"; };
F42B4F08AEA24F875CB1C06A02A1E7E4 /* Star.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = Star.swift; path = "lottie-swift/src/Private/Model/ShapeItems/Star.swift"; sourceTree = "<group>"; };
F5A69343B5EB4D507997610289E02376 /* StarNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = StarNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/StarNode.swift"; sourceTree = "<group>"; };
F7CF16E366B02A425F50B23061AE5588 /* VectorsExtensions.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = VectorsExtensions.swift; path = "lottie-swift/src/Private/Utility/Primitives/VectorsExtensions.swift"; sourceTree = "<group>"; };
FAB29EDC631E97DAA14BF33C222C4D70 /* FillI.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = FillI.swift; path = "lottie-swift/src/Private/Model/ShapeItems/FillI.swift"; sourceTree = "<group>"; };
FDD3F8D0B3A5498657DFBC996806DED6 /* RectNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = RectNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/PathNodes/RectNode.swift"; sourceTree = "<group>"; };
FE391980AC515376773D304097E76DD8 /* Pods-AwesomeLoading_Example-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-AwesomeLoading_Example-acknowledgements.markdown"; sourceTree = "<group>"; };
FEF591F4F59401493AFC5DE6733F8178 /* AwesomeLoading-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "AwesomeLoading-dummy.m"; sourceTree = "<group>"; };
FF09704759342343F8451FC4861EFEDD /* PathOutputNode.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = PathOutputNode.swift; path = "lottie-swift/src/Private/NodeRenderSystem/Nodes/OutputNodes/PathOutputNode.swift"; sourceTree = "<group>"; };
FF206308090C44BDD6F289A9EC095078 /* KeyframeInterpolator.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; name = KeyframeInterpolator.swift; path = "lottie-swift/src/Private/NodeRenderSystem/NodeProperties/ValueProviders/KeyframeInterpolator.swift"; sourceTree = "<group>"; };
/* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */
696F465D9EB2728236D8B6CE8411F8DE /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
DD808869E0EBF35B566DC95D29BE85AE /* CoreGraphics.framework in Frameworks */,
C69CA10A06691FA9CF12F52010817AD6 /* Foundation.framework in Frameworks */,
9968F741A6D30DCB9542C581AFDFB896 /* QuartzCore.framework in Frameworks */,
2EA4DB8BB4CE6B81CA896595A8368D4E /* UIKit.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
78EB95DF5AA596C31636CA5C2EE80B00 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
B7D7D114CFEFD0F7C3FC3E579BBF52DE /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7DFF0110CF438C8BD967BC23F9BCF9FC /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C05AE626E47819958DACF8792F0A218B /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
43FD935EADEDF32EDD44AD294BD14274 /* Foundation.framework in Frameworks */,
181608BABFB97A93F096DD327C1E4F0E /* Lottie.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
C564258E0BC30756085E125311D29E5C /* Frameworks */ = {
isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647;
files = (
1E926B41EF66B64167AF0A310CCBF221 /* Foundation.framework in Frameworks */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */
09712A11CB32873F0FE0A600E10B9A22 /* Frameworks */ = {
isa = PBXGroup;
children = (
43624CA35B392D5E285E33BDCD385376 /* Lottie.framework */,
0A557F0709197687919F71A17750DED0 /* iOS */,
);
name = Frameworks;
sourceTree = "<group>";
};
0A557F0709197687919F71A17750DED0 /* iOS */ = {
isa = PBXGroup;
children = (
8BA4F28981098D330A5CE5540CE3C463 /* CoreGraphics.framework */,
768E3F8155606458067367D2ADAAA69C /* Foundation.framework */,
0B049C44D8E0C702FEA060FC52FDC9A5 /* QuartzCore.framework */,
384BF256C567F8C67B9A09AE6C0A3E17 /* UIKit.framework */,
);
name = iOS;
sourceTree = "<group>";
};
1DC86FFD7397794F6CC6F43A91AC3C87 /* Products */ = {
isa = PBXGroup;
children = (
CDC84C090F1A79BD1371976D090779B6 /* AwesomeLoading.bundle */,
1C5320D865C9A9BD3D77992CE2E6EFDD /* AwesomeLoading.framework */,
196FEB11B7340EC87D3486FE8E33676B /* Lottie.framework */,
C5F09588570D1C5B499A0048E1EE5DD8 /* Pods_AwesomeLoading_Example.framework */,
DD86440851D332CC25175AB7DC2D661A /* Pods_AwesomeLoading_Tests.framework */,
);
name = Products;
sourceTree = "<group>";
};
28BE5BDCE89036E8EF6E63656FC775DC /* View */ = {
isa = PBXGroup;
children = (
070812E76A6ED49B121445AD71210F98 /* AwesomeLoadingAnimation.swift */,
DBD435624981F6B00CF89A9A728708F0 /* AwesomeLoadingView.swift */,
C665F8CA02F18297AE2846F9DCCD8F77 /* ShadowLayer.swift */,
);
name = View;
path = AwesomeLoading/Classes/View;
sourceTree = "<group>";
};
41BD3D6A80AE04A871F03E8CD21000AC /* Pods */ = {
isa = PBXGroup;
children = (
BBE33E80921140B083D610787559A0F8 /* lottie-ios */,
);
name = Pods;
sourceTree = "<group>";
};
5828F17CD907D70FCA47725D15600BE6 /* Support Files */ = {
isa = PBXGroup;
children = (
E16A01EA2FAFB849B0E62BC572499159 /* AwesomeLoading.modulemap */,
05908AC0F5146D6B6B53D5A4855D41F3 /* AwesomeLoading.xcconfig */,
FEF591F4F59401493AFC5DE6733F8178 /* AwesomeLoading-dummy.m */,
E6DE2914153D6CDA17BB8859D277AA76 /* AwesomeLoading-Info.plist */,
2E4700746946B4C835C3DED66539A7F0 /* AwesomeLoading-prefix.pch */,
CE2AF17BC1E6BC0AAD0676302B30C904 /* AwesomeLoading-umbrella.h */,
19FD03749BFD63B0D92D06FADE9853E0 /* ResourceBundle-AwesomeLoading-AwesomeLoading-Info.plist */,
);
name = "Support Files";
path = "Example/Pods/Target Support Files/AwesomeLoading";
sourceTree = "<group>";
};
7C67C027E2D7800D3A5A5F3E785944E5 /* Pods-AwesomeLoading_Example */ = {
isa = PBXGroup;
children = (
635A1D277C5E6BC364CDB77860B5BF16 /* Pods-AwesomeLoading_Example.modulemap */,
FE391980AC515376773D304097E76DD8 /* Pods-AwesomeLoading_Example-acknowledgements.markdown */,
0AE1E6EB3377CE16B6CE69D683C646A9 /* Pods-AwesomeLoading_Example-acknowledgements.plist */,
BAADF589504630CFCBD522A2C191B785 /* Pods-AwesomeLoading_Example-dummy.m */,
43FD417B1746695ABF3631C0853A7FB3 /* Pods-AwesomeLoading_Example-frameworks.sh */,
419CDBBF5C45C5B26EDE619B39892E88 /* Pods-AwesomeLoading_Example-Info.plist */,
D98982558ACC5704CDFF6DACFE83C79D /* Pods-AwesomeLoading_Example-umbrella.h */,
8457BAB441B596F7A4394006C57B0C9E /* Pods-AwesomeLoading_Example.debug.xcconfig */,
A0792E3BADA9158ACC0DDB9BB5E6D3FF /* Pods-AwesomeLoading_Example.release.xcconfig */,
);
name = "Pods-AwesomeLoading_Example";
path = "Target Support Files/Pods-AwesomeLoading_Example";
sourceTree = "<group>";
};
8FA1DB457AC90A103243374E16125E8F /* Pod */ = {
isa = PBXGroup;
children = (
94534BDBBFBCE17ED1742085BEC7D31F /* AwesomeLoading.podspec */,
D5ED1765FDBA96EA616CD4FCFD38CB3F /* LICENSE */,
5DEA3848DE891B65008DBB21261A0F7A /* README.md */,
);
name = Pod;
sourceTree = "<group>";
};
979DC6EACAA0BA396C264019D26FD2E7 /* Targets Support Files */ = {
isa = PBXGroup;
children = (
7C67C027E2D7800D3A5A5F3E785944E5 /* Pods-AwesomeLoading_Example */,
EAEA86E89E6FDC75E43EB59902F6F3B6 /* Pods-AwesomeLoading_Tests */,
);
name = "Targets Support Files";
sourceTree = "<group>";
};
AD2BACF3931904EA4E7C959CC49961E1 /* Development Pods */ = {
isa = PBXGroup;
children = (
B0E048A26F224600E5B499BDA3255836 /* AwesomeLoading */,
);
name = "Development Pods";
sourceTree = "<group>";
};
B0E048A26F224600E5B499BDA3255836 /* AwesomeLoading */ = {
isa = PBXGroup;
children = (
598A92FC4D1BF3526A8D2339C78D0B22 /* AwesomeLoading.swift */,
BE238AAD1E60CCFB6C17333C53D90F50 /* FileLoader.swift */,
8504AA8A71CA4C6F8EFF68D7111A20D5 /* ObjectAssociation.swift */,
8FA1DB457AC90A103243374E16125E8F /* Pod */,
FAD3A983EA59518223A1AB235ED404AD /* Resources */,
FC343627C42FD75F4017CB676C348C07 /* Shimmer */,
5828F17CD907D70FCA47725D15600BE6 /* Support Files */,
28BE5BDCE89036E8EF6E63656FC775DC /* View */,
);
name = AwesomeLoading;
path = ../..;
sourceTree = "<group>";
};
BBE33E80921140B083D610787559A0F8 /* lottie-ios */ = {
isa = PBXGroup;
children = (
69528DF43F5B9DB406CEB8DFB7DCFC3B /* AnimatedButton.swift */,
46D3CC8D42A2E65A4C7AD307C43970A2 /* AnimatedControl.swift */,
A6DB80DE12C004C06C0A0D9C0F761A75 /* AnimatedSwitch.swift */,
CA4B522EAFD924C013A6BE7B40090E6B /* Animation.swift */,
38E3BF862F7F1BBA9E45BB4351D95E0F /* AnimationCacheProvider.swift */,
EA4BC2F3F9AE7636C6F7444C6624503B /* AnimationContainer.swift */,
C7062271C9CDA64A12688F56687B4EAD /* AnimationContext.swift */,
2B42F58CD08BDE66437A1C3B1B21FDA0 /* AnimationImageProvider.swift */,
5963181A1D4D4ADFB014AF33DB566330 /* AnimationKeypath.swift */,
2D46B1088F1FC02A4B88712E976D415E /* AnimationKeypathExtension.swift */,
774A63871AF8CAC551609409ED29646E /* AnimationPublic.swift */,
B46D5F0C87F8324EEB3A7BBE32AE5BB7 /* AnimationSubview.swift */,
7047D24A27E2CB305F154D4765D0F557 /* AnimationTime.swift */,
BE480F9745CCC05C05495DCC76CCA8B6 /* AnimationView.swift */,
7BE794849CF69B523DF5631C269DEAC9 /* AnimationViewInitializers.swift */,
7D4E1050F32A5A1C8A0A4DD41DE833A2 /* AnimatorNode.swift */,
D7BCB553C5347051E2D7C2F14E75D3E1 /* AnimatorNodeDebugging.swift */,
C85DCF70930DEEFA6AB4D2CFEEDD8B7D /* AnyNodeProperty.swift */,
8BDBC57CBDEEC0BE770BA03676CCDE42 /* AnyValueContainer.swift */,
64B2E3EDF7351316B3E20ABE324E5BA9 /* AnyValueProvider.swift */,
63B7C5BB00071EC700BAE7DA646E921C /* Asset.swift */,
B2510DCBDE031E97BF548D7FF1EC2652 /* AssetLibrary.swift */,
AE528B71269969FEAB9ED8848D749DFC /* BezierPath.swift */,
3A99FCE2944B364B457756A4EEEAA591 /* BundleImageProvider.swift */,
A257556D187B6A904F9B4706929AEDEF /* CGFloatExtensions.swift */,
2A2E36C56FF2E096F3DCCB1796CB641D /* Color.swift */,
143807E349DF7D827E19EC9B515EA0BD /* ColorExtension.swift */,
A4F7A56AB530D672C57D43702230381B /* ColorValueProvider.swift */,
649D26F2E1FC976850B4538CA386BBE7 /* CompatibleAnimationKeypath.swift */,
8499829C96E10154A2D6EF1751AA09FF /* CompatibleAnimationView.swift */,
4F5A6EE0E55858E07E7B2B22FD668002 /* CompositionLayer.swift */,
379BACA9A37099ED26563343480BD0A5 /* CompositionLayersInitializer.swift */,
F25904A1E0E1EBD22C38C3AFE9F22D53 /* CompoundBezierPath.swift */,
1D8942F9DF7D57414344620550C5F804 /* CurveVertex.swift */,
9349F51439DCC96EB0E5FBBE34020962 /* DashPattern.swift */,
8FC11A4E4A12D3BBF682BE768A9B9F61 /* Ellipse.swift */,
1D6B09E1BD9CA10F3423B9F791E8B2F2 /* EllipseNode.swift */,
B66B780E4287D285B7030B767E618A0D /* FilepathImageProvider.swift */,
FAB29EDC631E97DAA14BF33C222C4D70 /* FillI.swift */,
6FDEA20AEC4434627AF4A148F04129FF /* FillNode.swift */,
6BB6E3987984006E1F94C70F3FD54475 /* FillRenderer.swift */,
0B1EFF929E52B867A24FA32FA8C3D80E /* FloatValueProvider.swift */,
B134C82D1D61BCB7C8FFCC27336AEEFA /* Font.swift */,
F2499A2C62AD41676ADA3DAE75C9D97E /* Glyph.swift */,
2D2F1B2D7FE00CEE50AD10C9B447BB74 /* GradientFill.swift */,
F2C37787F6CEEF9B2E5A809DD7E63DC1 /* GradientFillNode.swift */,
3E7F589F99FCE15F3D10A1D2BD4F166F /* GradientFillRenderer.swift */,
DABC5166A30B6CCBE50A2A83304B5163 /* GradientStroke.swift */,
A7E3A1B141BC3BBA7CE52589FFA9B5E3 /* GradientStrokeNode.swift */,
8C9625FEE11783744DB1900B875271B5 /* GradientStrokeRenderer.swift */,
9103D26574E3FEE167EA6BDD2A3A8BDE /* Group.swift */,
D686EF711D4B3811A748E0F43BDBEE76 /* GroupInterpolator.swift */,
588EFEC6DBC5AAA1C436C13C4A578B4B /* GroupNode.swift */,
9F64899A19DEACAA386A46EBEBB58B18 /* GroupOutputNode.swift */,
51C65C3E60CC229C57E83A5E67AFF89F /* ImageAsset.swift */,
969C71364B721F409509832326BD1095 /* ImageCompositionLayer.swift */,
976BBC272AE924E2DB409B6BE7FAFC43 /* ImageLayerModel.swift */,
505B57414CBC8281BC96562936EC4556 /* Interpolatable.swift */,
A6F48C8F20F6847F9723FA5D0D3200E6 /* InterpolatableExtensions.swift */,
CA55955E3D2C3026971D3B2E8E188250 /* InvertedMatteLayer.swift */,
A3E7CB15D174A87781226FB75DB17BD7 /* ItemsExtension.swift */,
E565B039E466803F8180FB722BF753DA /* KeyedDecodingContainerExtensions.swift */,
A6911C292A328DD8E63ADD9D93F34255 /* Keyframe.swift */,
C1A9269826C77F01DED4B6B6D828DEE4 /* KeyframeExtensions.swift */,
D5FE2C6261FEC415822BE4C9C284A9BD /* KeyframeGroup.swift */,
FF206308090C44BDD6F289A9EC095078 /* KeyframeInterpolator.swift */,
DB77D87F44B5C62ACD7215DB01F245EA /* KeypathSearchable.swift */,
677EF4349FF9D9234210EA32BE832786 /* LayerDebugging.swift */,
335ED5AFC74F916CB179B23F9358822F /* LayerImageProvider.swift */,
CB658DE269687703B82AE8737353C175 /* LayerModel.swift */,
CA7D9335247A80C457C5E90749FE09DA /* LayerTransformNode.swift */,
CDC730B7F84EC308F5EF1EF1D7C6F4DB /* LottieView.swift */,
3E5BFB726D853359D941955A131996EB /* LRUAnimationCache.swift */,
103AE592D064F658DDE91B61620F1682 /* Marker.swift */,
691EFB49A0F5DA8611E943A70E80254E /* Mask.swift */,
9E7D45E0989FF6F792F2F7767324E004 /* MaskContainerLayer.swift */,
0ECCFD0269302C8512EACB7714E848FB /* MathKit.swift */,
240D430FC219C26CCE92FD8757BCD00B /* Merge.swift */,
113BC040D1BDF2A2B9CDBD32C1BB594B /* NodeProperty.swift */,
17E63208E7E42EFC1F924C1068C91DD7 /* NodePropertyMap.swift */,
7DAD6E0789C6D5DA137D81840D172DD5 /* NullCompositionLayer.swift */,
D568E97BBCB52A50F97204F925C16DB4 /* PassThroughOutputNode.swift */,
221813731D6146CFF20052220F33E64D /* PathElement.swift */,
8A5BD2AC0BBDF942FE2E1A001FF59867 /* PathNode.swift */,
FF09704759342343F8451FC4861EFEDD /* PathOutputNode.swift */,
3882180B8CF8195D0D1009AEE44756B6 /* PointValueProvider.swift */,
2E07136016B3759AAA479447E9862E0A /* PolygonNode.swift */,
A4A94D08F148FCBEB1CE885A9AE23E22 /* PrecompAsset.swift */,
1906C49B1EA5CB43E4CF33C692BEF713 /* PreCompLayerModel.swift */,
2619E19530887FD35E364A320FE7E12C /* PreCompositionLayer.swift */,
EFD7C5028687AD191501064527BD7C7C /* Rectangle.swift */,
FDD3F8D0B3A5498657DFBC996806DED6 /* RectNode.swift */,
5C82B2C9EC3AFC39FB89758620C61E84 /* RenderNode.swift */,
1112E44D1F5A45AA606BCF0AD73F3595 /* Repeater.swift */,
C0A762E90D8CEFB4BCCF53276785E578 /* Shape.swift */,
9ECAE6E59F27CF43B80F9A0627F077FD /* ShapeCompositionLayer.swift */,
2D70A2DAF288EA9EFD66CFB0DF8AFC10 /* ShapeContainerLayer.swift */,
23036A7E78F6FC5DE342D141C2FD5CB3 /* ShapeItem.swift */,
4884844C0D73F735E1A3B800DB87F756 /* ShapeLayerModel.swift */,
612110B541F8BC16B0B53ABE36D5677B /* ShapeNode.swift */,
86B27A9CE42FE585257D6E63AD0FEE48 /* ShapeRenderLayer.swift */,
6AD8EA8B404D268B705906B87C4C0803 /* ShapeTransform.swift */,
0240CA4FDCEFFB06813AB6925462FFB6 /* SingleValueProvider.swift */,
2B772DD5F0ACCE59C966BAEF82A8A7F6 /* SizeValueProvider.swift */,
A68302F76B14EA1CEB29DE3A6E72AB91 /* SolidCompositionLayer.swift */,
8BA0EB14FBD268F1F7842E88447CA048 /* SolidLayerModel.swift */,
F42B4F08AEA24F875CB1C06A02A1E7E4 /* Star.swift */,
F5A69343B5EB4D507997610289E02376 /* StarNode.swift */,
0B169607690C971D3430F00B7CEC5DCF /* StringExtensions.swift */,
266DB9F0334C06512C843A78EE0D6D42 /* Stroke.swift */,
BB966BEB7798F759B90B129D6927BD9C /* StrokeNode.swift */,
20ADA99D8C01319D12ED7740015EA9C4 /* StrokeRenderer.swift */,
22F7AC4D4DEA072C8299496DF3E82C2B /* TextAnimator.swift */,
7011EE35C7788B3EA94A24AD9A32E37E /* TextAnimatorNode.swift */,
72FAB23EB8AE884D5DCAE4D1574E6C08 /* TextCompositionLayer.swift */,
8BDD72927C5CEC0253E34016087ED7B4 /* TextDocument.swift */,
CDD99C5205396DA8E48DCB98FD77EC9D /* TextLayerModel.swift */,
3B4A963FEFAE6B91EE7F379B2E9FFA8C /* Transform.swift */,
13B1D76DB1BC61898FAE0232E7CB357F /* Trim.swift */,
6D230E834F0BC73FF8375D149987121E /* TrimPathNode.swift */,
CFBD08B5203851E9921002E89142E451 /* UIColorExtension.swift */,
1E0D23A6C3F68C261CE9B279C6F3CE4B /* ValueContainer.swift */,
E2E7D146EB09FD9F3905A835515AA038 /* Vectors.swift */,
F7CF16E366B02A425F50B23061AE5588 /* VectorsExtensions.swift */,
CD01E7D05E1D5920DED0FC9CA7A5B03D /* Support Files */,
);
path = "lottie-ios";
sourceTree = "<group>";
};
CD01E7D05E1D5920DED0FC9CA7A5B03D /* Support Files */ = {
isa = PBXGroup;
children = (
A6A033A1621F95E6E3F2621DA4BB4802 /* lottie-ios.modulemap */,
438748BF8DC8EA894B83C6B2E39AFF36 /* lottie-ios.xcconfig */,
B7CBDDBBE4421D8789A657B6263ECB4F /* lottie-ios-dummy.m */,
DF3293563E2120E8EB6722AFCFBD0B52 /* lottie-ios-Info.plist */,
3568FD01E5988EBA822A0DE9E5642226 /* lottie-ios-prefix.pch */,
60D4492E06752CBD9786947C70EC8AD0 /* lottie-ios-umbrella.h */,
);
name = "Support Files";
path = "../Target Support Files/lottie-ios";
sourceTree = "<group>";
};
CF1408CF629C7361332E53B88F7BD30C = {
isa = PBXGroup;
children = (
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */,
AD2BACF3931904EA4E7C959CC49961E1 /* Development Pods */,
09712A11CB32873F0FE0A600E10B9A22 /* Frameworks */,
41BD3D6A80AE04A871F03E8CD21000AC /* Pods */,
1DC86FFD7397794F6CC6F43A91AC3C87 /* Products */,
979DC6EACAA0BA396C264019D26FD2E7 /* Targets Support Files */,
);
sourceTree = "<group>";
};
EAEA86E89E6FDC75E43EB59902F6F3B6 /* Pods-AwesomeLoading_Tests */ = {
isa = PBXGroup;
children = (
116E5FF7F8E61FA6CDD3C9BA1F41C824 /* Pods-AwesomeLoading_Tests.modulemap */,
E1215D92B3A8C0BA879BF0C212720E55 /* Pods-AwesomeLoading_Tests-acknowledgements.markdown */,
A5C2FB965049742ACCD9A7679CB9C665 /* Pods-AwesomeLoading_Tests-acknowledgements.plist */,
216703EA9FA74CF78EDF5216AA622492 /* Pods-AwesomeLoading_Tests-dummy.m */,
CD162D66DFB04F93A60BE984502CE951 /* Pods-AwesomeLoading_Tests-Info.plist */,
24A5D88F5FE09DFF3024CF1F01398FB1 /* Pods-AwesomeLoading_Tests-umbrella.h */,
5904990B807C3704A205A54EA575CE60 /* Pods-AwesomeLoading_Tests.debug.xcconfig */,
679660B1449BC9E8D1A8AC6AF8E2264C /* Pods-AwesomeLoading_Tests.release.xcconfig */,
);
name = "Pods-AwesomeLoading_Tests";
path = "Target Support Files/Pods-AwesomeLoading_Tests";
sourceTree = "<group>";
};
FAD3A983EA59518223A1AB235ED404AD /* Resources */ = {
isa = PBXGroup;
children = (
D5DC27206C950514730524AA276DB00E /* AwesomeLoadingView.xib */,
);
name = Resources;
sourceTree = "<group>";
};
FC343627C42FD75F4017CB676C348C07 /* Shimmer */ = {
isa = PBXGroup;
children = (
0B31857710C22CD58CD02C91599C686E /* ShimmerEffect.swift */,
0FDD791EE77F5EAB0BF38F3C4927487F /* ShimmerUIViewExtensions.swift */,
19888154D4A175F628B5367580F1FD28 /* ShimmerView.swift */,
);
name = Shimmer;
path = AwesomeLoading/Classes/Shimmer;
sourceTree = "<group>";
};
/* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */
5DB3485D6B69596744776AA04D38E80B /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
40653A1691A6C50FFD6F18CA1485F98A /* Pods-AwesomeLoading_Example-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
85217B7FD208CCCD7AB5DFB96D48098F /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
2D37C131B9213BB2E047371D4AA589A9 /* Pods-AwesomeLoading_Tests-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E76F3A2BA0EA59B5D86846FE3AE60FF1 /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
060EB1FA3F21F4CE2737E9430CC84327 /* AwesomeLoading-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
E902169DEB12DC9229510598FDFFAD4E /* Headers */ = {
isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647;
files = (
FD81B4FD7E00BD3322AA5809E43F8044 /* lottie-ios-umbrella.h in Headers */,
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXHeadersBuildPhase section */
/* Begin PBXNativeTarget section */
09AA638C928AE4F623F1BB5A1BDD769C /* AwesomeLoading */ = {
isa = PBXNativeTarget;
buildConfigurationList = 49E79A87913D104DBA74E025652F151B /* Build configuration list for PBXNativeTarget "AwesomeLoading" */;
buildPhases = (
E76F3A2BA0EA59B5D86846FE3AE60FF1 /* Headers */,
827477F6F53766293334C91CB05DD8FF /* Sources */,
C05AE626E47819958DACF8792F0A218B /* Frameworks */,
C196DC8DAC542C66D713AF74C507F3A2 /* Resources */,
);
buildRules = (
);
dependencies = (
6AB46D7FCFF03B279306184C21DC6C14 /* PBXTargetDependency */,
40D2B2B3D23E46BC70EA1096500205D6 /* PBXTargetDependency */,
);
name = AwesomeLoading;
productName = AwesomeLoading;
productReference = 1C5320D865C9A9BD3D77992CE2E6EFDD /* AwesomeLoading.framework */;
productType = "com.apple.product-type.framework";
};
6C122FF4B7E06222FB2D41C4F3D76FD0 /* Pods-AwesomeLoading_Tests */ = {
isa = PBXNativeTarget;
buildConfigurationList = F387672F20680C6AC81B374F0054EA8D /* Build configuration list for PBXNativeTarget "Pods-AwesomeLoading_Tests" */;
buildPhases = (
85217B7FD208CCCD7AB5DFB96D48098F /* Headers */,
1C5C1BBB13830BC7A3176465420EDAE3 /* Sources */,
78EB95DF5AA596C31636CA5C2EE80B00 /* Frameworks */,
7CCA296D64769C86194EE795AEED5601 /* Resources */,
);
buildRules = (
);
dependencies = (
619E821AE6DE5D21DD8CA9118FE83F6E /* PBXTargetDependency */,
);
name = "Pods-AwesomeLoading_Tests";
productName = "Pods-AwesomeLoading_Tests";
productReference = DD86440851D332CC25175AB7DC2D661A /* Pods_AwesomeLoading_Tests.framework */;
productType = "com.apple.product-type.framework";
};
9C0BC41BC2467310900E1C5ED9FD8518 /* Pods-AwesomeLoading_Example */ = {
isa = PBXNativeTarget;
buildConfigurationList = C5E049791C601FDC2A196398DAFFD07C /* Build configuration list for PBXNativeTarget "Pods-AwesomeLoading_Example" */;
buildPhases = (
5DB3485D6B69596744776AA04D38E80B /* Headers */,
EE36A0A3E90ECD25236D3676BEFAFC02 /* Sources */,
C564258E0BC30756085E125311D29E5C /* Frameworks */,
CB531010C998F93E8D4DAA236B50FB38 /* Resources */,
);
buildRules = (
);
dependencies = (
E959D5E1B5596BDB0E789BB0CF3FB7D3 /* PBXTargetDependency */,
DFD544878EA4F3BCB0D7BBFC7CD48952 /* PBXTargetDependency */,
);
name = "Pods-AwesomeLoading_Example";
productName = "Pods-AwesomeLoading_Example";
productReference = C5F09588570D1C5B499A0048E1EE5DD8 /* Pods_AwesomeLoading_Example.framework */;
productType = "com.apple.product-type.framework";
};
B9181E470AF2AC56E5E07E5B3117AB17 /* AwesomeLoading-AwesomeLoading */ = {
isa = PBXNativeTarget;
buildConfigurationList = 9C6F841A9E0088E767DCFD01C38FA9E5 /* Build configuration list for PBXNativeTarget "AwesomeLoading-AwesomeLoading" */;
buildPhases = (
95D987291B6609CF23615781D4C5904B /* Sources */,
7DFF0110CF438C8BD967BC23F9BCF9FC /* Frameworks */,
19C913EAEFB030EEEB5DE3F3F4B7EA32 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "AwesomeLoading-AwesomeLoading";
productName = "AwesomeLoading-AwesomeLoading";
productReference = CDC84C090F1A79BD1371976D090779B6 /* AwesomeLoading.bundle */;
productType = "com.apple.product-type.bundle";
};
D1CEB304742402D4B7B4FE64787F85F2 /* lottie-ios */ = {
isa = PBXNativeTarget;
buildConfigurationList = 2ABD5317F713E6C92489460FBD5B3568 /* Build configuration list for PBXNativeTarget "lottie-ios" */;
buildPhases = (
E902169DEB12DC9229510598FDFFAD4E /* Headers */,
AE15099343F6048175DDEC3B932A7E46 /* Sources */,
696F465D9EB2728236D8B6CE8411F8DE /* Frameworks */,
97549948788F453742AA9520BE31D2A3 /* Resources */,
);
buildRules = (
);
dependencies = (
);
name = "lottie-ios";
productName = "lottie-ios";
productReference = 196FEB11B7340EC87D3486FE8E33676B /* Lottie.framework */;
productType = "com.apple.product-type.framework";
};
/* End PBXNativeTarget section */
/* Begin PBXProject section */
BFDFE7DC352907FC980B868725387E98 /* Project object */ = {
isa = PBXProject;
attributes = {
LastSwiftUpdateCheck = 0930;
LastUpgradeCheck = 1020;
};
buildConfigurationList = 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */;
compatibilityVersion = "Xcode 3.2";
developmentRegion = English;
hasScannedForEncodings = 0;
knownRegions = (
English,
en,
);
mainGroup = CF1408CF629C7361332E53B88F7BD30C;
productRefGroup = 1DC86FFD7397794F6CC6F43A91AC3C87 /* Products */;
projectDirPath = "";
projectRoot = "";
targets = (
09AA638C928AE4F623F1BB5A1BDD769C /* AwesomeLoading */,
B9181E470AF2AC56E5E07E5B3117AB17 /* AwesomeLoading-AwesomeLoading */,
D1CEB304742402D4B7B4FE64787F85F2 /* lottie-ios */,
9C0BC41BC2467310900E1C5ED9FD8518 /* Pods-AwesomeLoading_Example */,
6C122FF4B7E06222FB2D41C4F3D76FD0 /* Pods-AwesomeLoading_Tests */,
);
};
/* End PBXProject section */
/* Begin PBXResourcesBuildPhase section */
19C913EAEFB030EEEB5DE3F3F4B7EA32 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
6605617FFA506EC9DA3070009B00ACA8 /* AwesomeLoadingView.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
7CCA296D64769C86194EE795AEED5601 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
97549948788F453742AA9520BE31D2A3 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
C196DC8DAC542C66D713AF74C507F3A2 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
655416313B09322A31CEE82540484901 /* AwesomeLoading.bundle in Resources */,
7AED96E40DFD25BFB551A389E095AD7A /* AwesomeLoadingView.xib in Resources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
CB531010C998F93E8D4DAA236B50FB38 /* Resources */ = {
isa = PBXResourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
/* End PBXResourcesBuildPhase section */
/* Begin PBXSourcesBuildPhase section */
1C5C1BBB13830BC7A3176465420EDAE3 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
BC4FCBBCB894292A1FB89C69B4EBC58B /* Pods-AwesomeLoading_Tests-dummy.m in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
827477F6F53766293334C91CB05DD8FF /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
422A26FE8B1F746099D9CCED6EF85CDA /* AwesomeLoading-dummy.m in Sources */,
13A4643F21D7F6F0AEAD8C2C688FBD8D /* AwesomeLoading.swift in Sources */,
4F4D017D047381CF0D81CCF0A87E2CE9 /* AwesomeLoadingAnimation.swift in Sources */,
D17E16A4FBA20B605C8AE361F2E8E0CA /* AwesomeLoadingView.swift in Sources */,
C48DFA4D8C185063623061B9775F533B /* FileLoader.swift in Sources */,
51B364B315B27EBB0F3593CB0B87C3DC /* ObjectAssociation.swift in Sources */,
251132E0792DB2DD0B7EEF7E164AE978 /* ShadowLayer.swift in Sources */,
A0CBCD25077786390C1337337DBF373D /* ShimmerEffect.swift in Sources */,
CA4645EFFFA44E52F1DEB42E9A115C1D /* ShimmerUIViewExtensions.swift in Sources */,
F091AA33875C8179A71BF283BED48716 /* ShimmerView.swift in Sources */,
);
runOnlyForDeploymentPostprocessing = 0;
};
95D987291B6609CF23615781D4C5904B /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
);
runOnlyForDeploymentPostprocessing = 0;
};
AE15099343F6048175DDEC3B932A7E46 /* Sources */ = {
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
E838D5FBF91E19C26A8798398F38E66C /* AnimatedButton.swift in Sources */,
7E847AAF8AD08631DD5022BA78388C66 /* AnimatedControl.swift in Sources */,
2CEA587C12530E74975889483927DBED /* AnimatedSwitch.swift in Sources */,
11BAFB56EFBCCF513E0F3581380DFDB8 /* Animation.swift in Sources */,
01D22E51190DA45F02722AB376A5617B /* AnimationCacheProvider.swift in Sources */,
AA66C2BFE00F299EE8238BC15AB2361E /* AnimationContainer.swift in Sources */,
E68AE60BD98DCA0973553A87FFAE3C6A /* AnimationContext.swift in Sources */,
CF627FB8F656E3ABA6917D94EF034D3F /* AnimationImageProvider.swift in Sources */,
4E32C4AA3B391B9FBBAFA54FF575029E /* AnimationKeypath.swift in Sources */,
13C68B0463FD004CC73F6E8C7C165166 /* AnimationKeypathExtension.swift in Sources */,
9EEEEADD49D84D1207FC987AB7846602 /* AnimationPublic.swift in Sources */,