gitextract_v8cb9u9o/ ├── .gitignore ├── .gitmodules ├── DispatcherSample/ │ ├── DispatcherSample/ │ │ ├── DispatcherSample-Info.plist │ │ ├── DispatcherSample-Prefix.pch │ │ ├── DispatcherSampleAppDelegate.h │ │ ├── DispatcherSampleAppDelegate.m │ │ ├── DispatcherSampleViewController.h │ │ ├── DispatcherSampleViewController.m │ │ ├── SampleListener.h │ │ ├── SampleListener.m │ │ ├── en.lproj/ │ │ │ ├── DispatcherSampleViewController.xib │ │ │ ├── InfoPlist.strings │ │ │ └── MainWindow.xib │ │ └── main.m │ ├── DispatcherSample.xcodeproj/ │ │ └── project.pbxproj │ ├── DispatcherSampleTests/ │ │ ├── DispatcherSampleTests-Info.plist │ │ ├── DispatcherSampleTests-Prefix.pch │ │ ├── DispatcherSampleTests.h │ │ ├── DispatcherSampleTests.m │ │ └── en.lproj/ │ │ └── InfoPlist.strings │ └── patch/ │ └── sample.pd ├── LICENSE.txt ├── PdLinkSample/ │ ├── PdLinkSample/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Assets.xcassets/ │ │ │ └── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ ├── ViewController.h │ │ ├── ViewController.m │ │ ├── main.m │ │ └── ping.pd │ └── PdLinkSample.xcodeproj/ │ └── project.pbxproj ├── PdSettings/ │ ├── PdSettings/ │ │ ├── PdSettings-Info.plist │ │ ├── PdSettings-Prefix.pch │ │ ├── PdSettingsAppDelegate.h │ │ ├── PdSettingsAppDelegate.m │ │ ├── PdSettingsViewController.h │ │ ├── PdSettingsViewController.m │ │ ├── RDebug.h │ │ ├── en.lproj/ │ │ │ └── InfoPlist.strings │ │ └── main.m │ ├── PdSettings.xcodeproj/ │ │ └── project.pbxproj │ ├── ReadMe.txt │ └── Resources/ │ ├── testinput.pd │ └── testoutput.pd ├── PdTest01/ │ ├── Classes/ │ │ ├── PdTest01AppDelegate.h │ │ ├── PdTest01AppDelegate.m │ │ ├── PdTest01ViewController.h │ │ └── PdTest01ViewController.m │ ├── PdTest01-Info.plist │ ├── PdTest01.xcodeproj/ │ │ └── project.pbxproj │ ├── PdTest01_Prefix.pch │ ├── ReadMe.txt │ ├── Resources/ │ │ └── test.pd │ └── main.m ├── PdTest02/ │ ├── Classes/ │ │ ├── PdTestAppDelegate.h │ │ ├── PdTestAppDelegate.m │ │ ├── PdTestViewController.h │ │ └── PdTestViewController.m │ ├── LoopWithExtern.pd │ ├── MainWindow.xib │ ├── PdTest02-Info.plist │ ├── PdTest02.xcodeproj/ │ │ └── project.pbxproj │ ├── PdTest02_Prefix.pch │ ├── PdTestViewController.xib │ ├── ReadMe.txt │ ├── Storyboard.storyboard │ └── main.m ├── PolyPatch/ │ ├── Classes/ │ │ ├── PatchTableViewCell.h │ │ ├── PatchTableViewCell.m │ │ ├── PolyPatchAppDelegate.h │ │ ├── PolyPatchAppDelegate.m │ │ ├── PolyPatchViewController.h │ │ └── PolyPatchViewController.m │ ├── PolyPatch-Info.plist │ ├── PolyPatch.xcodeproj/ │ │ └── project.pbxproj │ ├── PolyPatch_Prefix.pch │ ├── RCommon.h │ ├── ReadMe.txt │ ├── Resources/ │ │ ├── synctest.pd │ │ ├── test.pd │ │ └── test2.pd │ └── main.m ├── README.md ├── SlidePad/ │ ├── Classes/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Controllers/ │ │ │ ├── PolyPatchController.h │ │ │ ├── PolyPatchController.m │ │ │ ├── SlidePadViewController.h │ │ │ └── SlidePadViewController.m │ │ └── Views/ │ │ ├── Fingerboard.h │ │ ├── Fingerboard.m │ │ ├── QControl.h │ │ ├── QControl.m │ │ ├── QRadioDial.h │ │ ├── QRadioDial.m │ │ ├── QSlider.h │ │ ├── QSlider.m │ │ ├── TouchDiamond.h │ │ └── TouchDiamond.m │ ├── OtherSources/ │ │ ├── Common.h │ │ ├── Prefix.pch │ │ └── main.m │ ├── ReadMe.txt │ ├── Resources/ │ │ └── Info.plist │ ├── SlidePad.xcodeproj/ │ │ └── project.pbxproj │ └── pd/ │ ├── classicsub-voice.pd │ ├── load-meter.pd │ ├── main.pd │ └── wavetabler-voice.pd ├── SlidePadBasic/ │ ├── Classes/ │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Controllers/ │ │ │ ├── SlidePadBasicViewController.h │ │ │ └── SlidePadBasicViewController.m │ │ └── Views/ │ │ ├── Fingerboard.h │ │ ├── Fingerboard.m │ │ ├── TouchDiamond.h │ │ └── TouchDiamond.m │ ├── OtherSources/ │ │ ├── Common.h │ │ ├── Prefix.pch │ │ └── main.m │ ├── ReadMe.txt │ ├── Resources/ │ │ └── Info.plist │ ├── SlidePadBasic.xcodeproj/ │ │ └── project.pbxproj │ └── pd/ │ ├── load-meter.pd │ └── wavetabler.pd ├── WaveTables/ │ ├── Classes/ │ │ ├── PdArray.h │ │ ├── PdArray.m │ │ ├── RootViewController.h │ │ ├── RootViewController.m │ │ ├── WaveTableView.h │ │ ├── WaveTableView.m │ │ ├── WaveTablesAppDelegate.h │ │ └── WaveTablesAppDelegate.m │ ├── OtherSources/ │ │ ├── Common.h │ │ ├── Prefix.pch │ │ └── main.m │ ├── ReadMe.txt │ ├── Resources/ │ │ ├── Info.plist │ │ ├── resynthesis.pd │ │ ├── util/ │ │ │ ├── for.pd │ │ │ └── print-array.pd │ │ └── wavetable.pd │ └── WaveTables.xcodeproj/ │ └── project.pbxproj └── abl_link/ ├── README.md └── ios/ ├── PdLinkAudioUnit.h ├── PdLinkAudioUnit.m ├── abl_link.c └── abl_link.h