gitextract_0i4r22d7/ ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── Configuration/ │ ├── Compiler.xcconfig │ ├── Product/ │ │ ├── ApplicationTests.xcconfig │ │ ├── Framework.xcconfig │ │ ├── LogicTests.xcconfig │ │ └── StaticLibrary.xcconfig │ └── Project/ │ ├── Project-Debug.xcconfig │ ├── Project-Profile.xcconfig │ ├── Project-Release.xcconfig │ └── Project.xcconfig ├── LICENSE ├── PATENTS ├── Podfile ├── README.md ├── codecov.yml ├── pop/ │ ├── POP.h │ ├── POPAction.h │ ├── POPAnimatableProperty.h │ ├── POPAnimatableProperty.mm │ ├── POPAnimatablePropertyTypes.h │ ├── POPAnimation.h │ ├── POPAnimation.mm │ ├── POPAnimationEvent.h │ ├── POPAnimationEvent.mm │ ├── POPAnimationEventInternal.h │ ├── POPAnimationExtras.h │ ├── POPAnimationExtras.mm │ ├── POPAnimationInternal.h │ ├── POPAnimationPrivate.h │ ├── POPAnimationRuntime.h │ ├── POPAnimationRuntime.mm │ ├── POPAnimationTracer.h │ ├── POPAnimationTracer.mm │ ├── POPAnimationTracerInternal.h │ ├── POPAnimator.h │ ├── POPAnimator.mm │ ├── POPAnimatorPrivate.h │ ├── POPBasicAnimation.h │ ├── POPBasicAnimation.mm │ ├── POPBasicAnimationInternal.h │ ├── POPCGUtils.h │ ├── POPCGUtils.mm │ ├── POPCustomAnimation.h │ ├── POPCustomAnimation.mm │ ├── POPDecayAnimation.h │ ├── POPDecayAnimation.mm │ ├── POPDecayAnimationInternal.h │ ├── POPDefines.h │ ├── POPGeometry.h │ ├── POPGeometry.mm │ ├── POPLayerExtras.h │ ├── POPLayerExtras.mm │ ├── POPMath.h │ ├── POPMath.mm │ ├── POPPropertyAnimation.h │ ├── POPPropertyAnimation.mm │ ├── POPPropertyAnimationInternal.h │ ├── POPSpringAnimation.h │ ├── POPSpringAnimation.mm │ ├── POPSpringAnimationInternal.h │ ├── POPSpringSolver.h │ ├── POPVector.h │ ├── POPVector.mm │ ├── WebCore/ │ │ ├── FloatConversion.h │ │ ├── TransformationMatrix.cpp │ │ ├── TransformationMatrix.h │ │ └── UnitBezier.h │ ├── module.modulemap │ ├── pop-ios-Info.plist │ ├── pop-osx-Info.plist │ └── pop-tvos-Info.plist ├── pop-tests/ │ ├── POPAnimatable.h │ ├── POPAnimatable.mm │ ├── POPAnimatablePropertyTests.mm │ ├── POPAnimationMRRTests.mm │ ├── POPAnimationTests.mm │ ├── POPAnimationTestsExtras.h │ ├── POPAnimationTestsExtras.mm │ ├── POPBaseAnimationTests.h │ ├── POPBaseAnimationTests.mm │ ├── POPBasicAnimationTests.mm │ ├── POPCustomAnimationTests.mm │ ├── POPDecayAnimationTests.mm │ ├── POPEaseInEaseOutAnimationTests.mm │ ├── POPSpringAnimationTests.mm │ ├── pop-tests-ios-Info.plist │ ├── pop-tests-osx-Info.plist │ └── pop-tests-tvos-Info.plist ├── pop.podspec ├── pop.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ ├── pop-ios-framework.xcscheme │ ├── pop-ios-static.xcscheme │ ├── pop-osx-framework.xcscheme │ └── pop-tvos-framework.xcscheme └── pop.xcworkspace/ ├── contents.xcworkspacedata └── xcshareddata/ └── IDEWorkspaceChecks.plist