gitextract__150jprk/ ├── .appveyor.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── LICENSE.md ├── Makefile ├── PackageApp.bat ├── README.md ├── Run.bat ├── Swivel.hxml ├── Swivel.hxproj ├── SwivelHuey.xml ├── application.xml ├── assets/ │ ├── SwivelFonts.fla │ ├── SwivelFonts.swf │ └── inject_swfs/ │ ├── AS2Basics.fla │ ├── AS2Basics.swf │ ├── AS2SoundLogger.fla │ ├── AS2SoundLogger.swf │ ├── AS3Basics.swc │ ├── AS3Core.fla │ ├── AS3Core.swf │ ├── __Swivel.as │ ├── __SwivelSound.as │ └── __SwivelSoundChannel.as ├── bat/ │ ├── CreateCertificate.bat │ ├── Packager.bat │ ├── SetupApplication.bat │ ├── SetupSDK.bat │ └── Swivel.p12 ├── ffmpeg/ │ ├── licenses/ │ │ ├── bzip2.txt │ │ ├── ffmpeg.txt │ │ ├── fontconfig.txt │ │ ├── freetype.txt │ │ ├── frei0r.txt │ │ ├── gnutls.txt │ │ ├── lame.txt │ │ ├── libass.txt │ │ ├── libbluray.txt │ │ ├── libcaca.txt │ │ ├── libgsm.txt │ │ ├── libtheora.txt │ │ ├── libvorbis.txt │ │ ├── libvpx.txt │ │ ├── opencore-amr.txt │ │ ├── openjpeg.txt │ │ ├── opus.txt │ │ ├── rtmpdump.txt │ │ ├── schroedinger.txt │ │ ├── speex.txt │ │ ├── twolame.txt │ │ ├── vo-aacenc.txt │ │ ├── vo-amrwbenc.txt │ │ ├── x264.txt │ │ ├── xavs.txt │ │ ├── xvid.txt │ │ └── zlib.txt │ └── mac64/ │ └── ffmpeg ├── huey/ │ ├── src/ │ │ └── com/ │ │ └── huey/ │ │ ├── Main.hx │ │ ├── assets/ │ │ │ ├── Asset.hx │ │ │ ├── AssetManager.hx │ │ │ └── AssetSource.hx │ │ ├── binding/ │ │ │ ├── BindableArray.hx │ │ │ └── Binding.hx │ │ ├── core/ │ │ │ ├── Application.hx │ │ │ └── ApplicationMacros.hx │ │ ├── events/ │ │ │ └── Dispatcher.hx │ │ ├── macros/ │ │ │ ├── ClassBuilder.hx │ │ │ ├── FieldInfo.hx │ │ │ ├── MacroTools.hx │ │ │ └── Macros.hx │ │ ├── tests/ │ │ │ ├── AsyncTestCase.hx │ │ │ ├── AsyncTestVisitor.hx │ │ │ ├── ITest.hx │ │ │ ├── ITestVisitor.hx │ │ │ ├── TestBuilder.hx │ │ │ ├── TestCase.hx │ │ │ ├── TestRunner.hx │ │ │ ├── TestStatus.hx │ │ │ └── TestSuite.hx │ │ ├── ui/ │ │ │ ├── Button.hx │ │ │ ├── CheckBox.hx │ │ │ ├── Component.hx │ │ │ ├── Container.hx │ │ │ ├── Image.hx │ │ │ ├── Label.hx │ │ │ ├── ListBox.hx │ │ │ ├── NumericStepper.hx │ │ │ ├── ProgressBar.hx │ │ │ ├── RadioButton.hx │ │ │ ├── RadioGroup.hx │ │ │ ├── Rectangle.hx │ │ │ ├── ScaledImage.hx │ │ │ ├── SelectBox.hx │ │ │ ├── Slider.hx │ │ │ ├── StateContainer.hx │ │ │ ├── TextAlign.hx │ │ │ ├── TextBox.hx │ │ │ ├── UIEvent.hx │ │ │ └── UIMacros.hx │ │ └── utils/ │ │ ├── Assert.hx │ │ ├── Logger.hx │ │ ├── Thread.hx │ │ └── WeakRef.hx │ └── test/ │ └── com/ │ └── huey/ │ ├── assets/ │ │ └── AssetTests.hx │ ├── binding/ │ │ └── BindingTests.hx │ ├── core/ │ │ └── ApplicationTests.hx │ ├── events/ │ │ └── EventTests.hx │ ├── macros/ │ │ └── MacroTests.hx │ ├── ui/ │ │ └── UITests.hx │ └── utils/ │ ├── AssertTests.hx │ └── WeakRefTest.hx ├── mac-installer.json ├── redirecter/ │ ├── redirecter/ │ │ ├── main.cpp │ │ ├── redirecter.vcxproj │ │ └── redirecter.vcxproj.filters │ └── redirecter.sln ├── src/ │ └── com/ │ └── newgrounds/ │ └── swivel/ │ ├── PreviewGenerator.hx │ ├── SplashScreen.hx │ ├── Swivel.hx │ ├── SwivelController.hx │ ├── SwivelJob.hx │ ├── audio/ │ │ ├── ActionScriptSoundInstance.hx │ │ ├── AudioTracker.hx │ │ ├── Decoder.hx │ │ ├── EventSoundInstance.hx │ │ ├── SoundClip.hx │ │ ├── SoundInstance.hx │ │ └── SoundSample.hx │ ├── ffmpeg/ │ │ ├── AudioCodec.hx │ │ ├── FfmpegProcess.hx │ │ └── VideoPreset.hx │ └── swf/ │ ├── AS3SoundConnectionMutator.hx │ ├── AS3SwivelConnection.hx │ ├── AbcUtils.hx │ ├── BitmapSmoothingMutator.hx │ ├── ISWFMutator.hx │ ├── RenderQuality.hx │ ├── SWFRecorder.hx │ ├── ScaleFilterMutator.hx │ ├── SilenceSoundMutator.hx │ ├── SoundConnectionMutator.hx │ ├── SwfUtils.hx │ ├── SwivelAbcContext.hx │ ├── SwivelConnection.hx │ ├── SwivelMutator.hx │ ├── SwivelSwf.hx │ ├── SwivelSwfReader.hx │ └── Watermark.hx └── win-installer.nsi