├── 1.gif ├── Asset ├── CI Test.qtz ├── CIFilterAsset │ ├── t1.png │ ├── t2.png │ ├── t3.png │ ├── t4.png │ └── t5.png ├── Image Asset │ ├── BBtn.png │ ├── L1.png │ ├── L2.png │ ├── L3.png │ ├── L4.png │ ├── L5.png │ ├── L6.png │ ├── LNew.png │ ├── Launchscreen.png │ ├── Magnify.png │ ├── Section.png │ ├── Text BG.png │ ├── i.png │ ├── m1.png │ ├── m2.png │ ├── m3.png │ ├── plane.png │ ├── t1.png │ ├── t2.png │ ├── t3.png │ ├── t4.png │ ├── t5.png │ └── topbg.png ├── PC1.pcvd ├── Parallax.qtz ├── QC Effect.gif └── Sketch Asset.sketch ├── Filterbugfix.m ├── Icon ├── Icon-29.png ├── Icon-29@2x.png ├── Icon-29@3x.png ├── Icon-40.png ├── Icon-40@2x.png ├── Icon-40@3x.png ├── Icon-60@2x.png ├── Icon-60@3x.png ├── Icon-76.png ├── Icon-76@2x.png └── iTunesArtwork@2x.png ├── MSender.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── MartinRGB.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── MartinRGB.xcuserdatad │ └── xcschemes │ ├── MSender.xcscheme │ └── xcschememanagement.plist ├── MSender.xcworkspace ├── contents.xcworkspacedata ├── xcshareddata │ └── MSender.xccheckout └── xcuserdata │ └── MartinRGB.xcuserdatad │ └── UserInterfaceState.xcuserstate ├── MSender ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── BeizierPath.h ├── BeizierPath.m ├── FilterViewController.h ├── FilteredImageView.h ├── FilteredImageView.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-29@2x.png │ │ ├── Icon-29@3x.png │ │ ├── Icon-40@2x.png │ │ ├── Icon-40@3x.png │ │ ├── Icon-60@2x.png │ │ └── Icon-60@3x.png │ ├── Image Asset │ │ ├── BBtn.imageset │ │ │ ├── BBtn.png │ │ │ └── Contents.json │ │ ├── L1.imageset │ │ │ ├── Contents.json │ │ │ └── L1.png │ │ ├── L2.imageset │ │ │ ├── Contents.json │ │ │ └── L2.png │ │ ├── L3.imageset │ │ │ ├── Contents.json │ │ │ └── L3.png │ │ ├── L4.imageset │ │ │ ├── Contents.json │ │ │ └── L4.png │ │ ├── L5.imageset │ │ │ ├── Contents.json │ │ │ └── L5.png │ │ ├── L6.imageset │ │ │ ├── Contents.json │ │ │ └── L6.png │ │ ├── LNew.imageset │ │ │ ├── Contents.json │ │ │ └── LNew.png │ │ ├── Launchscreen.imageset │ │ │ ├── Contents.json │ │ │ └── Launchscreen.png │ │ ├── Magnify.imageset │ │ │ ├── Contents.json │ │ │ └── Magnify.png │ │ ├── Section.imageset │ │ │ ├── Contents.json │ │ │ └── Section.png │ │ ├── Text BG.imageset │ │ │ ├── Contents.json │ │ │ └── Text BG.png │ │ ├── i.imageset │ │ │ ├── Contents.json │ │ │ └── i.png │ │ ├── m1.imageset │ │ │ ├── Contents.json │ │ │ └── m1.png │ │ ├── m2.imageset │ │ │ ├── Contents.json │ │ │ └── m2.png │ │ ├── m3.imageset │ │ │ ├── Contents.json │ │ │ └── m3.png │ │ ├── plane.imageset │ │ │ ├── Contents.json │ │ │ └── plane.png │ │ ├── t1.imageset │ │ │ ├── Contents.json │ │ │ └── t1.png │ │ ├── t2.imageset │ │ │ ├── Contents.json │ │ │ └── t2.png │ │ ├── t3.imageset │ │ │ ├── Contents.json │ │ │ └── t3.png │ │ ├── t4.imageset │ │ │ └── Contents.json │ │ ├── t5.imageset │ │ │ ├── Contents.json │ │ │ └── t5.png │ │ └── topbg.imageset │ │ │ ├── Contents.json │ │ │ └── topbg.png │ └── LaunchImage.launchimage │ │ ├── Contents.json │ │ ├── Launchscreen-1.png │ │ └── Launchscreen.png ├── Info.plist ├── ViewController.h ├── ViewController.m └── main.m ├── MSenderTests ├── Info.plist └── MSenderTests.m ├── Podfile.lock ├── Pods ├── Headers │ ├── Private │ │ └── pop │ │ │ ├── FloatConversion.h │ │ │ ├── POP.h │ │ │ ├── POPAction.h │ │ │ ├── POPAnimatableProperty.h │ │ │ ├── POPAnimation.h │ │ │ ├── POPAnimationEvent.h │ │ │ ├── POPAnimationEventInternal.h │ │ │ ├── POPAnimationExtras.h │ │ │ ├── POPAnimationInternal.h │ │ │ ├── POPAnimationPrivate.h │ │ │ ├── POPAnimationRuntime.h │ │ │ ├── POPAnimationTracer.h │ │ │ ├── POPAnimationTracerInternal.h │ │ │ ├── POPAnimator.h │ │ │ ├── POPAnimatorPrivate.h │ │ │ ├── POPBasicAnimation.h │ │ │ ├── POPBasicAnimationInternal.h │ │ │ ├── POPCGUtils.h │ │ │ ├── POPCustomAnimation.h │ │ │ ├── POPDecayAnimation.h │ │ │ ├── POPDecayAnimationInternal.h │ │ │ ├── POPDefines.h │ │ │ ├── POPGeometry.h │ │ │ ├── POPLayerExtras.h │ │ │ ├── POPMath.h │ │ │ ├── POPPropertyAnimation.h │ │ │ ├── POPPropertyAnimationInternal.h │ │ │ ├── POPSpringAnimation.h │ │ │ ├── POPSpringAnimationInternal.h │ │ │ ├── POPSpringSolver.h │ │ │ ├── POPVector.h │ │ │ ├── TransformationMatrix.h │ │ │ └── UnitBezier.h │ └── Public │ │ └── pop │ │ ├── POP.h │ │ ├── POPAnimatableProperty.h │ │ ├── POPAnimation.h │ │ ├── POPAnimationEvent.h │ │ ├── POPAnimationExtras.h │ │ ├── POPAnimationTracer.h │ │ ├── POPAnimator.h │ │ ├── POPBasicAnimation.h │ │ ├── POPCustomAnimation.h │ │ ├── POPDecayAnimation.h │ │ ├── POPDefines.h │ │ ├── POPGeometry.h │ │ ├── POPLayerExtras.h │ │ ├── POPPropertyAnimation.h │ │ └── POPSpringAnimation.h ├── Manifest.lock ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── MartinRGB.xcuserdatad │ │ └── xcschemes │ │ ├── Pods-pop.xcscheme │ │ ├── Pods.xcscheme │ │ └── xcschememanagement.plist ├── Target Support Files │ ├── Pods-pop │ │ ├── Pods-pop-Private.xcconfig │ │ ├── Pods-pop-dummy.m │ │ ├── Pods-pop-prefix.pch │ │ └── Pods-pop.xcconfig │ └── Pods │ │ ├── Pods-acknowledgements.markdown │ │ ├── Pods-acknowledgements.plist │ │ ├── Pods-dummy.m │ │ ├── Pods-environment.h │ │ ├── Pods-resources.sh │ │ ├── Pods.debug.xcconfig │ │ └── Pods.release.xcconfig └── pop │ ├── LICENSE │ ├── README.md │ └── pop │ ├── POP.h │ ├── POPAction.h │ ├── POPAnimatableProperty.h │ ├── POPAnimatableProperty.mm │ ├── 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 ├── README.md └── podfile /1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/1.gif -------------------------------------------------------------------------------- /Asset/CI Test.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/CI Test.qtz -------------------------------------------------------------------------------- /Asset/CIFilterAsset/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/CIFilterAsset/t1.png -------------------------------------------------------------------------------- /Asset/CIFilterAsset/t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/CIFilterAsset/t2.png -------------------------------------------------------------------------------- /Asset/CIFilterAsset/t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/CIFilterAsset/t3.png -------------------------------------------------------------------------------- /Asset/CIFilterAsset/t4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/CIFilterAsset/t4.png -------------------------------------------------------------------------------- /Asset/CIFilterAsset/t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/CIFilterAsset/t5.png -------------------------------------------------------------------------------- /Asset/Image Asset/BBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/BBtn.png -------------------------------------------------------------------------------- /Asset/Image Asset/L1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/L1.png -------------------------------------------------------------------------------- /Asset/Image Asset/L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/L2.png -------------------------------------------------------------------------------- /Asset/Image Asset/L3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/L3.png -------------------------------------------------------------------------------- /Asset/Image Asset/L4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/L4.png -------------------------------------------------------------------------------- /Asset/Image Asset/L5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/L5.png -------------------------------------------------------------------------------- /Asset/Image Asset/L6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/L6.png -------------------------------------------------------------------------------- /Asset/Image Asset/LNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/LNew.png -------------------------------------------------------------------------------- /Asset/Image Asset/Launchscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/Launchscreen.png -------------------------------------------------------------------------------- /Asset/Image Asset/Magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/Magnify.png -------------------------------------------------------------------------------- /Asset/Image Asset/Section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/Section.png -------------------------------------------------------------------------------- /Asset/Image Asset/Text BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/Text BG.png -------------------------------------------------------------------------------- /Asset/Image Asset/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/i.png -------------------------------------------------------------------------------- /Asset/Image Asset/m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/m1.png -------------------------------------------------------------------------------- /Asset/Image Asset/m2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/m2.png -------------------------------------------------------------------------------- /Asset/Image Asset/m3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/m3.png -------------------------------------------------------------------------------- /Asset/Image Asset/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/plane.png -------------------------------------------------------------------------------- /Asset/Image Asset/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/t1.png -------------------------------------------------------------------------------- /Asset/Image Asset/t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/t2.png -------------------------------------------------------------------------------- /Asset/Image Asset/t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/t3.png -------------------------------------------------------------------------------- /Asset/Image Asset/t4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/t4.png -------------------------------------------------------------------------------- /Asset/Image Asset/t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/t5.png -------------------------------------------------------------------------------- /Asset/Image Asset/topbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Image Asset/topbg.png -------------------------------------------------------------------------------- /Asset/PC1.pcvd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/PC1.pcvd -------------------------------------------------------------------------------- /Asset/Parallax.qtz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Parallax.qtz -------------------------------------------------------------------------------- /Asset/QC Effect.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/QC Effect.gif -------------------------------------------------------------------------------- /Asset/Sketch Asset.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Asset/Sketch Asset.sketch -------------------------------------------------------------------------------- /Filterbugfix.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Filterbugfix.m -------------------------------------------------------------------------------- /Icon/Icon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/Icon-29.png -------------------------------------------------------------------------------- /Icon/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/Icon-29@2x.png -------------------------------------------------------------------------------- /Icon/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/Icon-29@3x.png -------------------------------------------------------------------------------- /Icon/Icon-40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/Icon-40.png -------------------------------------------------------------------------------- /Icon/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/Icon-40@2x.png -------------------------------------------------------------------------------- /Icon/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/Icon-40@3x.png -------------------------------------------------------------------------------- /Icon/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/Icon-60@2x.png -------------------------------------------------------------------------------- /Icon/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/Icon-60@3x.png -------------------------------------------------------------------------------- /Icon/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/Icon-76.png -------------------------------------------------------------------------------- /Icon/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/Icon-76@2x.png -------------------------------------------------------------------------------- /Icon/iTunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Icon/iTunesArtwork@2x.png -------------------------------------------------------------------------------- /MSender.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MSender.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MSender.xcodeproj/project.xcworkspace/xcuserdata/MartinRGB.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender.xcodeproj/project.xcworkspace/xcuserdata/MartinRGB.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MSender.xcodeproj/xcuserdata/MartinRGB.xcuserdatad/xcschemes/MSender.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender.xcodeproj/xcuserdata/MartinRGB.xcuserdatad/xcschemes/MSender.xcscheme -------------------------------------------------------------------------------- /MSender.xcodeproj/xcuserdata/MartinRGB.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender.xcodeproj/xcuserdata/MartinRGB.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MSender.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MSender.xcworkspace/xcshareddata/MSender.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender.xcworkspace/xcshareddata/MSender.xccheckout -------------------------------------------------------------------------------- /MSender.xcworkspace/xcuserdata/MartinRGB.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender.xcworkspace/xcuserdata/MartinRGB.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /MSender/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/AppDelegate.h -------------------------------------------------------------------------------- /MSender/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/AppDelegate.m -------------------------------------------------------------------------------- /MSender/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /MSender/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MSender/BeizierPath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/BeizierPath.h -------------------------------------------------------------------------------- /MSender/BeizierPath.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/BeizierPath.m -------------------------------------------------------------------------------- /MSender/FilterViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/FilterViewController.h -------------------------------------------------------------------------------- /MSender/FilteredImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/FilteredImageView.h -------------------------------------------------------------------------------- /MSender/FilteredImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/FilteredImageView.m -------------------------------------------------------------------------------- /MSender/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/AppIcon.appiconset/Icon-29@2x.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/AppIcon.appiconset/Icon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/AppIcon.appiconset/Icon-29@3x.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/AppIcon.appiconset/Icon-40@2x.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/AppIcon.appiconset/Icon-40@3x.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/BBtn.imageset/BBtn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/BBtn.imageset/BBtn.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/BBtn.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/BBtn.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L1.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L1.imageset/L1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L1.imageset/L1.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L2.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L2.imageset/L2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L2.imageset/L2.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L3.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L3.imageset/L3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L3.imageset/L3.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L4.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L4.imageset/L4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L4.imageset/L4.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L5.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L5.imageset/L5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L5.imageset/L5.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L6.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/L6.imageset/L6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/L6.imageset/L6.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/LNew.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/LNew.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/LNew.imageset/LNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/LNew.imageset/LNew.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/Launchscreen.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/Launchscreen.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/Launchscreen.imageset/Launchscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/Launchscreen.imageset/Launchscreen.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/Magnify.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/Magnify.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/Magnify.imageset/Magnify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/Magnify.imageset/Magnify.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/Section.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/Section.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/Section.imageset/Section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/Section.imageset/Section.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/Text BG.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/Text BG.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/Text BG.imageset/Text BG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/Text BG.imageset/Text BG.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/i.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/i.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/i.imageset/i.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/i.imageset/i.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/m1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/m1.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/m1.imageset/m1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/m1.imageset/m1.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/m2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/m2.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/m2.imageset/m2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/m2.imageset/m2.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/m3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/m3.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/m3.imageset/m3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/m3.imageset/m3.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/plane.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/plane.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/plane.imageset/plane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/plane.imageset/plane.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/t1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/t1.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/t1.imageset/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/t1.imageset/t1.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/t2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/t2.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/t2.imageset/t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/t2.imageset/t2.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/t3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/t3.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/t3.imageset/t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/t3.imageset/t3.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/t4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/t4.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/t5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/t5.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/t5.imageset/t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/t5.imageset/t5.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/topbg.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/topbg.imageset/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/Image Asset/topbg.imageset/topbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/Image Asset/topbg.imageset/topbg.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /MSender/Images.xcassets/LaunchImage.launchimage/Launchscreen-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/LaunchImage.launchimage/Launchscreen-1.png -------------------------------------------------------------------------------- /MSender/Images.xcassets/LaunchImage.launchimage/Launchscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Images.xcassets/LaunchImage.launchimage/Launchscreen.png -------------------------------------------------------------------------------- /MSender/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/Info.plist -------------------------------------------------------------------------------- /MSender/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/ViewController.h -------------------------------------------------------------------------------- /MSender/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/ViewController.m -------------------------------------------------------------------------------- /MSender/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSender/main.m -------------------------------------------------------------------------------- /MSenderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSenderTests/Info.plist -------------------------------------------------------------------------------- /MSenderTests/MSenderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/MSenderTests/MSenderTests.m -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/Headers/Private/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MartinRGB.xcuserdatad/xcschemes/Pods-pop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/MartinRGB.xcuserdatad/xcschemes/Pods-pop.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MartinRGB.xcuserdatad/xcschemes/Pods.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/MartinRGB.xcuserdatad/xcschemes/Pods.xcscheme -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/xcuserdata/MartinRGB.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Pods.xcodeproj/xcuserdata/MartinRGB.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-pop/Pods-pop-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods-pop/Pods-pop-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-pop/Pods-pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods-pop/Pods-pop-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-pop/Pods-pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods-pop/Pods-pop-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-pop/Pods-pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods-pop/Pods-pop.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods/Pods-environment.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/LICENSE -------------------------------------------------------------------------------- /Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/README.md -------------------------------------------------------------------------------- /Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/Pods/pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MartinRGB/Replace-iOS/HEAD/README.md -------------------------------------------------------------------------------- /podfile: -------------------------------------------------------------------------------- 1 | pod 'pop', '~> 1.0' --------------------------------------------------------------------------------