diff --git a/README b/README
--- a/README
+++ b/README
@@ -9,7 +9,7 @@
 
     $ sclang -l mk/config.yaml mk/mk.scd
 
-© [rohan drape][rd], 2006-2012, [gpl][gpl].
+© [rohan drape][rd], 2006-2013, [gpl][gpl].
 
 [hs]: http://haskell.org/
 [sc3]: http://audiosynth.com/
diff --git a/Sound/SC3/UGen/DB/Bindings.hs b/Sound/SC3/UGen/DB/Bindings.hs
--- a/Sound/SC3/UGen/DB/Bindings.hs
+++ b/Sound/SC3/UGen/DB/Bindings.hs
@@ -50,19 +50,29 @@
 brckt :: String -> String
 brckt = about ('[',']')
 
+quote :: [Char] -> [Char]
+quote = about ('"','"')
+
 -- > ppl_space ["freq","phase"] == "freq phase"
 ppl_space :: [String] -> String
-ppl_space = unwords
+ppl_space = unwords'
 
 -- > ppl_list ["freq","phase"] == "[freq,phase]"
 ppl_list :: [String] -> String
 ppl_list = brckt . intercalate ","
 
+-- | Variant that 'delete's empty inputs, useful for pretty printing.
+--
+-- > unwords ["a","","b"] == "a  b"
+-- > unwords' ["a","","b"] == "a b"
+unwords' :: [String] -> String
+unwords' = unwords . filter (not . null)
+
 -- > fmap u_gen_type_sig (uLookup "Blip")
 -- > fmap u_gen_type_sig (uLookup "BufRd")
 -- > fmap u_gen_type_sig (uLookup "Resonz")
 -- > fmap u_gen_type_sig (uLookup "BrownNoise")
-u_gen_type_sig :: U -> String
+u_gen_type_sig :: U -> [String]
 u_gen_type_sig u =
     let i = ugen_inputs u
         i_sig = map (fromMaybe "UGen" . input_enumeration) i
@@ -75,7 +85,7 @@
             else "" -- "{- filter -}"
         i_sig' = intercalate " -> " i_sig
         arr = if null i then "" else "->"
-    in printf "%s :: %s %s %s %s UGen" nm_h o r i_sig' arr
+    in [nm_h,"::",o,r,i_sig',arr,"UGen"]
 
 -- > fmap u_outputs (uLookup "BufRd") == Just ("numChannels","numChannels")
 -- > fmap u_outputs (uLookup "SinOsc") == Just ("","1")
@@ -87,7 +97,7 @@
 
 -- > fmap u_gen_osc_f (uLookup "Blip")
 -- > fmap u_gen_osc_f (uLookup "BufRd")
-u_gen_osc_f :: U -> String
+u_gen_osc_f :: U -> [String]
 u_gen_osc_f u =
     let nm_h = ugen_name u
         nm = toSC3Name nm_h
@@ -95,11 +105,10 @@
         i_l = ppl_list (u_input_names_proc u)
         r = ppl_list (map show (ugen_operating_rates u))
         (o_lhs,o_rhs) = u_outputs u
-        tpl = "%s %s rate %s = mkOscR %s rate \"%s\" %s %s"
-    in printf tpl nm_h o_lhs i_s r nm i_l o_rhs
+    in [nm_h,o_lhs,"rate",i_s,"= mkOscR",r,"rate",quote nm,i_l,o_rhs]
 
 -- > fmap u_gen_filter_f (uLookup "Resonz")
-u_gen_filter_f :: U -> String
+u_gen_filter_f :: U -> [String]
 u_gen_filter_f u =
     let nm_h = ugen_name u
         nm = toSC3Name nm_h
@@ -107,17 +116,17 @@
         i_s = ppl_space i
         i_l = ppl_list i
         (o_lhs,o_rhs) = u_outputs u
-        tpl = "%s %s %s = mkFilter \"%s\" %s %s"
-     in printf tpl nm_h o_lhs i_s nm i_l o_rhs
+     in [nm_h,o_lhs,i_s,"= mkFilter",quote nm,i_l,o_rhs]
 
 -- > fmap u_gen_binding (uLookup "LFGauss")
 -- > fmap (u_gen_binding . u_rename) (uLookup "In")
--- > mapM_ (putStrLn . unlines . u_gen_binding . u_rename_db ugenDB) ugenDB
+-- > let b = map (u_gen_binding . u_rename_db ugenDB) ugenDB
+-- > writeFile "/tmp/bind-sc3.hs" (unlines (intercalate [""] b))
 u_gen_binding :: U -> [String]
 u_gen_binding u =
-    let c = "-- | " ++ ugen_summary u
+    let c = ["-- |",ugen_summary u]
         s = u_gen_type_sig u
         b = case ugen_filter u of
               Just _ -> u_gen_filter_f u
               _ -> u_gen_osc_f u
-    in [c,s,b]
+    in map unwords' [c,s,b]
diff --git a/Sound/SC3/UGen/DB/Data.hs b/Sound/SC3/UGen/DB/Data.hs
--- a/Sound/SC3/UGen/DB/Data.hs
+++ b/Sound/SC3/UGen/DB/Data.hs
@@ -1,4 +1,4 @@
--- AUTOGENERATED: 2012-07-24-15h10
+-- AUTOGENERATED: 2013-04-24-10h09
 module Sound.SC3.UGen.DB.Data where
 import Sound.SC3.UGen.DB.Record
 import Sound.SC3.UGen.Rate
@@ -6,7 +6,8 @@
 ugenDB = [U "A2B" [ AR ] AR Nothing [ I (0,0) "a" (0) Nothing,I (1,1) "b" (0) Nothing,I (2,2) "c" (0) Nothing,I (3,3) "d" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
          ,U "A2K" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "Audio to control rate converter."
          ,U "APF" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "radius" (0.8) Nothing ] Nothing (Left 1) "FIXME: APF purpose."
-         ,U "AY" [ AR ] AR Nothing [ I (0,0) "tonea" (1777) Nothing,I (1,1) "toneb" (1666) Nothing,I (2,2) "tonec" (1555) Nothing,I (3,3) "noise" (1) Nothing,I (4,4) "control" (7) Nothing,I (5,5) "vola" (15) Nothing,I (6,6) "volb" (15) Nothing,I (7,7) "volc" (15) Nothing,I (8,8) "envfreq" (4) Nothing,I (9,9) "envstyle" (1) Nothing,I (10,10) "chiptype" (0) Nothing ] Nothing (Left 1) "Emulator of the AY (aka YM) soundchip, used in Spectrum/Atari"
+         ,U "AY" [ AR ] AR Nothing [ I (0,0) "tonea" (1777) Nothing,I (1,1) "toneb" (1666) Nothing,I (2,2) "tonec" (1555) Nothing,I (3,3) "noise" (1) Nothing,I (4,4) "control" (7) Nothing,I (5,5) "vola" (15) Nothing,I (6,6) "volb" (15) Nothing,I (7,7) "volc" (15) Nothing,I (8,8) "envfreq" (4) Nothing,I (9,9) "envstyle" (1) Nothing,I (10,10) "chiptype" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "AY8910" [ AR ] AR Nothing [ I (0,0) "r0" (0) Nothing,I (1,1) "r1" (0) Nothing,I (2,2) "r2" (0) Nothing,I (3,3) "r3" (0) Nothing,I (4,4) "r4" (0) Nothing,I (5,5) "r5" (0) Nothing,I (6,6) "r6" (0) Nothing,I (7,7) "r7" (0) Nothing,I (8,8) "r8" (0) Nothing,I (9,9) "r9" (0) Nothing,I (10,10) "rA" (0) Nothing,I (11,11) "rB" (0) Nothing,I (12,12) "rC" (0) Nothing,I (13,13) "rD" (0) Nothing,I (14,14) "rate" (1) Nothing ] Nothing (Left 3) "(Undocumented class)"
          ,U "AbstractIn" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "Abstract class for in ugens"
          ,U "AbstractOut" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "Abstract class for out ugens"
          ,U "Allpass1" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (1200) Nothing ] Nothing (Left 1) "(Undocumented class)"
@@ -17,10 +18,12 @@
          ,U "AmpComp" [ AR, KR, IR ] AR Nothing [ I (0,0) "freq" (0) Nothing,I (1,1) "root" (0) Nothing,I (2,2) "exp" (0.3333) Nothing ] Nothing (Left 1) "Basic psychoacoustic amplitude compensation."
          ,U "AmpCompA" [ AR, KR, IR ] AR Nothing [ I (0,0) "freq" (1000) Nothing,I (1,1) "root" (0) Nothing,I (2,2) "minAmp" (0.32) Nothing,I (3,3) "rootAmp" (1) Nothing ] Nothing (Left 1) "Basic psychoacoustic amplitude compensation (ANSI A-weighting curve)."
          ,U "Amplitude" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "attackTime" (0.01) Nothing,I (2,2) "releaseTime" (0.01) Nothing ] Nothing (Left 1) "Amplitude follower"
-         ,U "AmplitudeMod" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "attackTime" (0.01) Nothing,I (2,2) "releaseTime" (0.01) Nothing ] Nothing (Left 1) "amplitude follower"
-         ,U "AnalyseEvents2" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "threshold" (0.34) Nothing,I (3,3) "triggerid" (101) Nothing,I (4,4) "circular" (0) Nothing,I (5,5) "pitch" (0) Nothing ] Nothing (Left 1) "event analyser (BBCut)"
-         ,U "ArrayMax" [ AR, KR ] AR Nothing [ I (0,0) "array" (0) Nothing ] Nothing (Left 2) "detect the largest value (and its position) in an array of UGens"
-         ,U "ArrayMin" [ AR, KR ] AR Nothing [ I (0,0) "array" (0) Nothing ] Nothing (Left 2) "detect the smallest value (and its position) in an array of UGens"
+         ,U "AmplitudeMod" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "attackTime" (0.01) Nothing,I (2,2) "releaseTime" (0.01) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "AnalyseEvents2" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "threshold" (0.34) Nothing,I (3,3) "triggerid" (101) Nothing,I (4,4) "circular" (0) Nothing,I (5,5) "pitch" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "ArrayMax" [ AR, KR ] AR Nothing [ I (0,0) "array" (0) Nothing ] Nothing (Left 2) "(Undocumented class)"
+         ,U "ArrayMin" [ AR, KR ] AR Nothing [ I (0,0) "array" (0) Nothing ] Nothing (Left 2) "(Undocumented class)"
+         ,U "Astrocade" [ AR ] AR Nothing [ I (0,0) "reg0" (0) Nothing,I (1,1) "reg1" (127) Nothing,I (2,2) "reg2" (0) Nothing,I (3,3) "reg3" (0) Nothing,I (4,4) "reg4" (0) Nothing,I (5,5) "reg5" (0) Nothing,I (6,6) "reg6" (15) Nothing,I (7,7) "reg7" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Atari2600" [ AR ] AR Nothing [ I (0,0) "audc0" (1) Nothing,I (1,1) "audc1" (2) Nothing,I (2,2) "audf0" (3) Nothing,I (3,3) "audf1" (4) Nothing,I (4,4) "audv0" (5) Nothing,I (5,5) "audv1" (5) Nothing,I (6,6) "rate" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "AtsAmp" [ AR, KR ] AR Nothing [ I (0,0) "atsbuffer" (0) Nothing,I (1,1) "partialNum" (0) Nothing,I (2,2) "filePointer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "AtsBand" [ AR ] AR Nothing [ I (0,0) "atsbuffer" (0) Nothing,I (1,1) "band" (0) Nothing,I (2,2) "filePointer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "AtsFreq" [ AR, KR ] AR Nothing [ I (0,0) "atsbuffer" (0) Nothing,I (1,1) "partialNum" (0) Nothing,I (2,2) "filePointer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
@@ -32,7 +35,7 @@
          ,U "AtsUGen" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "AudioControl" [ AR ] AR Nothing [ I (0,0) "values" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "AudioMSG" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "index" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "AverageOutput" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing ] Nothing (Left 1) "calculates mean average of audio or control rate signal"
+         ,U "AverageOutput" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "B2A" [ AR ] AR Nothing [ I (0,0) "w" (0) Nothing,I (1,1) "x" (0) Nothing,I (2,2) "y" (0) Nothing,I (3,3) "z" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
          ,U "B2Ster" [ AR ] AR Nothing [ I (0,0) "w" (0) Nothing,I (1,1) "x" (0) Nothing,I (2,2) "y" (0) Nothing ] Nothing (Left 2) "(Undocumented class)"
          ,U "B2UHJ" [ AR ] AR Nothing [ I (0,0) "w" (0) Nothing,I (1,1) "x" (0) Nothing,I (2,2) "y" (0) Nothing ] Nothing (Left 2) "(Undocumented class)"
@@ -53,7 +56,7 @@
          ,U "BLBufRd" [ AR, KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "phase" (0) Nothing,I (2,2) "ratio" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "BLowPass" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (1200) Nothing,I (2,2) "rq" (1) Nothing ] Nothing (Left 1) "12db/oct rolloff - 2nd order resonant Low Pass Filter"
          ,U "BLowShelf" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (1200) Nothing,I (2,2) "rs" (1) Nothing,I (3,3) "db" (0) Nothing ] Nothing (Left 1) "Low Shelf"
-         ,U "BMoog" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "q" (0.2) Nothing,I (3,3) "mode" (0) Nothing,I (4,4) "saturation" (0.95) Nothing ] Nothing (Left 1) "24db/oct rolloff - 4nd order resonant Low/High/Band Pass Filter"
+         ,U "BMoog" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "q" (0.2) Nothing,I (3,3) "mode" (0) Nothing,I (4,4) "saturation" (0.95) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "BPF" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (1) Nothing ] Nothing (Left 1) "2nd order Butterworth bandpass filter."
          ,U "BPZ2" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "Two zero fixed midpass."
          ,U "BPeakEQ" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (1200) Nothing,I (2,2) "rq" (1) Nothing,I (3,3) "db" (0) Nothing ] Nothing (Left 1) "Parametric equalizer"
@@ -64,9 +67,15 @@
          ,U "Ball" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "g" (1) Nothing,I (2,2) "damp" (0) Nothing,I (3,3) "friction" (0.01) Nothing ] Nothing (Left 1) "physical model of bouncing object"
          ,U "BeatTrack" [ KR ] AR Nothing [ I (0,0) "chain" (0) Nothing,I (1,1) "lock" (0) Nothing ] Nothing (Left 4) "Autocorrelation beat tracker"
          ,U "BeatTrack2" [ KR ] AR Nothing [ I (0,0) "busindex" (0) Nothing,I (1,1) "numfeatures" (0) Nothing,I (2,2) "windowsize" (2) Nothing,I (3,3) "phaseaccuracy" (0.02) Nothing,I (4,4) "lock" (0) Nothing,I (5,5) "weightingscheme" (0) Nothing ] Nothing (Left 6) "Template matching beat tracker"
+         ,U "Beep" [ AR ] AR Nothing [ I (0,0) "freq" (3250) Nothing,I (1,1) "vol" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "BeepU" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "BiPanB2" [ AR, KR ] AR Nothing [ I (0,0) "inA" (0) Nothing,I (1,1) "inB" (0) Nothing,I (2,2) "azimuth" (0) Nothing,I (3,3) "gain" (1) Nothing ] Nothing (Left 3) "2D Ambisonic B-format panner."
          ,U "BinData" [ AR, KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "bin" (0) Nothing,I (2,2) "overlaps" (0.5) Nothing ] Nothing (Left 2) "(Undocumented class)"
          ,U "Blip" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "numharm" (200) Nothing ] Nothing (Left 1) "Band limited impulse oscillator."
+         ,U "BlitB3" [ AR ] AR Nothing [ I (0,0) "freq" (440) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "BlitB3Saw" [ AR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "leak" (0.99) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "BlitB3Square" [ AR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "leak" (0.99) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "BlitB3Tri" [ AR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "leak" (0.99) Nothing,I (2,2) "leak2" (0.99) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Breakcore" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "capturein" (0) Nothing,I (2,2) "capturetrigger" (0) Nothing,I (3,3) "duration" (0.1) Nothing,I (4,4) "ampdropout" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "BrownNoise" [ AR, KR ] AR Nothing [  ] Nothing (Left 1) "Brown Noise."
          ,U "Brusselator" [ AR ] AR Nothing [ I (0,0) "reset" (0) Nothing,I (1,1) "rate" (0.01) Nothing,I (2,2) "mu" (1) Nothing,I (3,3) "gamma" (1) Nothing,I (4,4) "initx" (0.5) Nothing,I (5,5) "inity" (0.5) Nothing ] Nothing (Left 2) "(Undocumented class)"
@@ -89,8 +98,8 @@
          ,U "BufGrainI" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "dur" (1) Nothing,I (2,2) "sndbuf" (0) Nothing,I (3,3) "rate" (1) Nothing,I (4,4) "pos" (0) Nothing,I (5,5) "envbuf1" (0) Nothing,I (6,6) "envbuf2" (0) Nothing,I (7,7) "ifac" (0.5) Nothing,I (8,8) "interp" (2) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "BufGrainIBF" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "dur" (1) Nothing,I (2,2) "sndbuf" (0) Nothing,I (3,3) "rate" (1) Nothing,I (4,4) "pos" (0) Nothing,I (5,5) "envbuf1" (0) Nothing,I (6,6) "envbuf2" (0) Nothing,I (7,7) "ifac" (0.5) Nothing,I (8,8) "azimuth" (0) Nothing,I (9,9) "elevation" (0) Nothing,I (10,10) "rho" (1) Nothing,I (11,11) "interp" (2) Nothing,I (12,12) "wComp" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
          ,U "BufInfoUGenBase" [ KR, IR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing ] Nothing (Left 1) "Base class for buffer info ugens"
-         ,U "BufMax" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "gate" (1) Nothing ] Nothing (Left 2) "detect the largest value (and its position) in an array of UGens"
-         ,U "BufMin" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "gate" (1) Nothing ] Nothing (Left 2) "detect the largest value (and its position) in an array of UGens"
+         ,U "BufMax" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "gate" (1) Nothing ] Nothing (Left 2) "(Undocumented class)"
+         ,U "BufMin" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "gate" (1) Nothing ] Nothing (Left 2) "(Undocumented class)"
          ,U "BufRateScale" [ KR, IR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing ] Nothing (Left 1) "Buffer rate scaling in respect to server samplerate."
          ,U "BufRd" [ AR, KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "phase" (0) Nothing,I (2,2) "loop" (1) (Just "Loop"),I (3,3) "interpolation" (2) (Just "Interpolation") ] Nothing (Right 0) "Buffer reading oscillator."
          ,U "BufSampleRate" [ KR, IR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing ] Nothing (Left 1) "Buffer sample rate."
@@ -98,12 +107,13 @@
          ,U "BufWr" [ AR, KR ] AR Nothing [ I (0,3) "inputArray" (0) Nothing,I (1,0) "bufnum" (0) Nothing,I (2,1) "phase" (0) (Just "Loop"),I (3,2) "loop" (1) Nothing ] (Just 3) (Left 1) "Buffer writing oscillator."
          ,U "COsc" [ AR, KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "beats" (0.5) Nothing ] Nothing (Left 1) "Chorusing wavetable oscillator."
          ,U "CQ_Diff" [ KR ] AR Nothing [ I (0,0) "in1" (0) Nothing,I (1,1) "in2" (0) Nothing,I (2,2) "databufnum" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "Cepstrum" [  ] KR Nothing [ I (0,0) "cepbuf" (0) Nothing,I (1,1) "fftchain" (0) Nothing ] Nothing (Left 1) "Quefrency analysis and liftering"
+         ,U "Cepstrum" [  ] KR Nothing [ I (0,0) "cepbuf" (0) Nothing,I (1,1) "fftchain" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Changed" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "threshold" (0) Nothing ] Nothing (Left 1) "Triggers when a value changes"
          ,U "ChaosGen" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "UGens that cause chaos"
          ,U "CheckBadValues" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "id" (0) Nothing,I (2,2) "post" (2) Nothing ] Nothing (Left 1) "Test for infinity, not-a-number, and denormals"
+         ,U "Chromagram" [ KR ] AR Nothing [ I (0,0) "fft" (0) Nothing,I (1,1) "fftsize" (2048) Nothing,I (2,2) "n" (12) Nothing,I (3,3) "tuningbase" (32.703195662575) Nothing,I (4,4) "octaves" (8) Nothing,I (5,5) "integrationflag" (0) Nothing,I (6,6) "coeff" (0.9) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "ChuaL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (0.3286) Nothing,I (2,2) "b" (0.9336) Nothing,I (3,3) "c" (-0.8126) Nothing,I (4,4) "d" (0.399) Nothing,I (5,5) "rr" (0) Nothing,I (6,6) "h" (0.05) Nothing,I (7,7) "xi" (0.1) Nothing,I (8,8) "yi" (0) Nothing,I (9,9) "zi" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "CircleRamp" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "lagTime" (0.1) Nothing,I (2,2) "circmin" (-180) Nothing,I (3,3) "circmax" (180) Nothing ] Nothing (Left 1) "circular linear lag"
+         ,U "CircleRamp" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "lagTime" (0.1) Nothing,I (2,2) "circmin" (-180) Nothing,I (3,3) "circmax" (180) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "ClearBuf" [  ] IR Nothing [ I (0,0) "buf" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Clip" [ AR, KR, IR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "lo" (0) Nothing,I (2,2) "hi" (1) Nothing ] Nothing (Left 1) "Clip a signal outside given thresholds."
          ,U "ClipNoise" [ AR, KR ] AR Nothing [  ] Nothing (Left 1) "Clip Noise."
@@ -118,8 +128,8 @@
          ,U "CombN" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelaytime" (0.2) Nothing,I (2,2) "delaytime" (0.2) Nothing,I (3,3) "decaytime" (1) Nothing ] Nothing (Left 1) "Comb delay line with no interpolation."
          ,U "Compander" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "control" (0) Nothing,I (2,2) "thresh" (0.5) Nothing,I (3,3) "slopeBelow" (1) Nothing,I (4,4) "slopeAbove" (1) Nothing,I (5,5) "clampTime" (0.01) Nothing,I (6,6) "relaxTime" (0.1) Nothing ] Nothing (Left 1) "Compressor, expander, limiter, gate, ducker"
          ,U "CompanderD" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "thresh" (0.5) Nothing,I (2,2) "slopeBelow" (1) Nothing,I (3,3) "slopeAbove" (1) Nothing,I (4,4) "clampTime" (0.01) Nothing,I (5,5) "relaxTime" (0.01) Nothing ] Nothing (Left 1) "Compressor, expander, limiter, gate, ducker."
-         ,U "Concat" [ AR ] AR Nothing [ I (0,0) "control" (0) Nothing,I (1,1) "source" (0) Nothing,I (2,2) "storesize" (1) Nothing,I (3,3) "seektime" (1) Nothing,I (4,4) "seekdur" (1) Nothing,I (5,5) "matchlength" (0.05) Nothing,I (6,6) "freezestore" (0) Nothing,I (7,7) "zcr" (1) Nothing,I (8,8) "lms" (1) Nothing,I (9,9) "sc" (1) Nothing,I (10,10) "st" (0) Nothing,I (11,11) "randscore" (0) Nothing ] Nothing (Left 1) "Concatenative Cross-Synthesis on Live Streams"
-         ,U "Concat2" [ AR ] AR Nothing [ I (0,0) "control" (0) Nothing,I (1,1) "source" (0) Nothing,I (2,2) "storesize" (1) Nothing,I (3,3) "seektime" (1) Nothing,I (4,4) "seekdur" (1) Nothing,I (5,5) "matchlength" (0.05) Nothing,I (6,6) "freezestore" (0) Nothing,I (7,7) "zcr" (1) Nothing,I (8,8) "lms" (1) Nothing,I (9,9) "sc" (1) Nothing,I (10,10) "st" (0) Nothing,I (11,11) "randscore" (0) Nothing,I (12,12) "threshold" (0.01) Nothing ] Nothing (Left 1) "Concatenative Cross-Synthesis on Live Streams"
+         ,U "Concat" [ AR ] AR Nothing [ I (0,0) "control" (0) Nothing,I (1,1) "source" (0) Nothing,I (2,2) "storesize" (1) Nothing,I (3,3) "seektime" (1) Nothing,I (4,4) "seekdur" (1) Nothing,I (5,5) "matchlength" (0.05) Nothing,I (6,6) "freezestore" (0) Nothing,I (7,7) "zcr" (1) Nothing,I (8,8) "lms" (1) Nothing,I (9,9) "sc" (1) Nothing,I (10,10) "st" (0) Nothing,I (11,11) "randscore" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Concat2" [ AR ] AR Nothing [ I (0,0) "control" (0) Nothing,I (1,1) "source" (0) Nothing,I (2,2) "storesize" (1) Nothing,I (3,3) "seektime" (1) Nothing,I (4,4) "seekdur" (1) Nothing,I (5,5) "matchlength" (0.05) Nothing,I (6,6) "freezestore" (0) Nothing,I (7,7) "zcr" (1) Nothing,I (8,8) "lms" (1) Nothing,I (9,9) "sc" (1) Nothing,I (10,10) "st" (0) Nothing,I (11,11) "randscore" (0) Nothing,I (12,12) "threshold" (0.01) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Control" [ KR, IR ] AR Nothing [ I (0,0) "values" (0) Nothing ] Nothing (Left 1) "Bring signals and floats into the ugenGraph function of a SynthDef."
          ,U "ControlDur" [ IR ] AR Nothing [  ] Nothing (Left 1) "Duration of one block"
          ,U "ControlRate" [ IR ] AR Nothing [  ] Nothing (Left 1) "Server control rate."
@@ -127,22 +137,24 @@
          ,U "Convolution2" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "kernel" (0) Nothing,I (2,2) "trigger" (0) Nothing,I (3,3) "framesize" (2048) Nothing ] Nothing (Left 1) "Real-time fixed kernel convolver."
          ,U "Convolution2L" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "kernel" (0) Nothing,I (2,2) "trigger" (0) Nothing,I (3,3) "framesize" (2048) Nothing,I (4,4) "crossfade" (1) Nothing ] Nothing (Left 1) "Real-time convolver with linear interpolation"
          ,U "Convolution3" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "kernel" (0) Nothing,I (2,2) "trigger" (0) Nothing,I (3,3) "framesize" (2048) Nothing ] Nothing (Left 1) "Time based convolver."
-         ,U "Coyote" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "trackFall" (0.2) Nothing,I (2,2) "slowLag" (0.2) Nothing,I (3,3) "fastLag" (0.01) Nothing,I (4,4) "fastMul" (0.5) Nothing,I (5,5) "thresh" (0.05) Nothing,I (6,6) "minDur" (0.1) Nothing ] Nothing (Left 1) "an amplitude tracking based onset detector"
+         ,U "Coyote" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "trackFall" (0.2) Nothing,I (2,2) "slowLag" (0.2) Nothing,I (3,3) "fastLag" (0.01) Nothing,I (4,4) "fastMul" (0.5) Nothing,I (5,5) "thresh" (0.05) Nothing,I (6,6) "minDur" (0.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Crackle" [ AR, KR ] AR Nothing [ I (0,0) "chaosParam" (1.5) Nothing ] Nothing (Left 1) "Chaotic noise function."
-         ,U "Crest" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "numsamps" (400) Nothing,I (2,2) "gate" (1) Nothing ] Nothing (Left 1) "Measure the temporal crest factor of a signal"
-         ,U "CrossoverDistortion" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "amp" (0.5) Nothing,I (2,2) "smooth" (0.5) Nothing ] Nothing (Left 1) "port of some ladspa plugins"
+         ,U "Crest" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "numsamps" (400) Nothing,I (2,2) "gate" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "CrossoverDistortion" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "amp" (0.5) Nothing,I (2,2) "smooth" (0.5) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "CuspL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1) Nothing,I (2,2) "b" (1.9) Nothing,I (3,3) "xi" (0) Nothing ] Nothing (Left 1) "Cusp map chaotic generator"
          ,U "CuspN" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1) Nothing,I (2,2) "b" (1.9) Nothing,I (3,3) "xi" (0) Nothing ] Nothing (Left 1) "Cusp map chaotic generator"
          ,U "DC" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "Create a constant amplitude signal"
-         ,U "DFM1" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (1000) Nothing,I (2,2) "res" (0.1) Nothing,I (3,3) "inputgain" (1) Nothing,I (4,4) "type" (0) Nothing,I (5,5) "noiselevel" (0.0003) Nothing ] Nothing (Left 1) "Digitally modelled analog filter"
+         ,U "DFM1" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (1000) Nothing,I (2,2) "res" (0.1) Nothing,I (3,3) "inputgain" (1) Nothing,I (4,4) "type" (0) Nothing,I (5,5) "noiselevel" (0.0003) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "DPW3Tri" [ AR ] AR Nothing [ I (0,0) "freq" (440) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "DPW4Saw" [ AR ] AR Nothing [ I (0,0) "freq" (440) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "DUGen" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Dbrown" [  ] DR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "step" (0.01) Nothing,I (3,3) "length" (inf) Nothing ] Nothing (Left 1) "Demand rate brownian movement generator."
-         ,U "Dbrown2" [  ] DR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (0) Nothing,I (2,2) "step" (0) Nothing,I (3,3) "dist" (0) Nothing,I (4,4) "length" (inf) Nothing ] Nothing (Left 1) "demand rate brownian movement with Gendyn distributions"
+         ,U "Dbrown2" [  ] DR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (0) Nothing,I (2,2) "step" (0) Nothing,I (3,3) "dist" (0) Nothing,I (4,4) "length" (inf) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Dbufrd" [  ] DR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "phase" (0) Nothing,I (2,2) "loop" (1) (Just "Loop") ] Nothing (Left 1) "Buffer read demand ugen"
          ,U "Dbufwr" [  ] DR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "phase" (0) Nothing,I (3,3) "loop" (1) (Just "Loop") ] Nothing (Left 1) "Buffer write demand ugen"
          ,U "Decay" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "decayTime" (1) Nothing ] Nothing (Left 1) "Exponential decay"
          ,U "Decay2" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "attackTime" (0.01) Nothing,I (2,2) "decayTime" (1) Nothing ] Nothing (Left 1) "Exponential decay"
-         ,U "Decimator" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "rate" (44100) Nothing,I (2,2) "bits" (24) Nothing ] Nothing (Left 1) "port of some ladspa plugins"
+         ,U "Decimator" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "rate" (44100) Nothing,I (2,2) "bits" (24) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "DecodeB2" [ AR, KR ] AR Nothing [ I (0,0) "w" (0) Nothing,I (1,1) "x" (0) Nothing,I (2,2) "y" (0) Nothing,I (3,3) "orientation" (0.5) Nothing ] Nothing (Right 0) "2D Ambisonic B-format decoder."
          ,U "DegreeToKey" [ AR, KR ] AR (Just [ 1 ]) [ I (0,0) "bufnum" (0) Nothing,I (1,1) "in" (0) Nothing,I (2,2) "octave" (12) Nothing ] Nothing (Left 1) "Convert signal to modal pitch."
          ,U "DelTapRd" [ AR, KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "phase" (0) Nothing,I (2,2) "delTime" (0) Nothing,I (3,3) "interp" (1) Nothing ] Nothing (Left 1) "Tap a delay line from a DelTapWr UGen"
@@ -154,21 +166,21 @@
          ,U "DelayN" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelaytime" (0.2) Nothing,I (2,2) "delaytime" (0.2) Nothing ] Nothing (Left 1) "Simple delay line with no interpolation."
          ,U "Demand" [ AR, KR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "reset" (0) Nothing,I (2,2) "demandUGens" (0) Nothing ] Nothing (Left 1) "Demand results from demand rate UGens."
          ,U "DemandEnvGen" [ AR, KR ] AR Nothing [ I (0,0) "level" (0) Nothing,I (1,1) "dur" (0) Nothing,I (2,2) "shape" (1) Nothing,I (3,3) "curve" (0) Nothing,I (4,4) "gate" (1) Nothing,I (5,5) "reset" (1) Nothing,I (6,6) "levelScale" (1) Nothing,I (7,7) "levelBias" (0) Nothing,I (8,8) "timeScale" (1) Nothing,I (9,9) "doneAction" (0) (Just "DoneAction") ] Nothing (Left 1) "Demand rate envelope generator"
-         ,U "DetaBlockerBuf" [  ] DR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "startpoint" (0) Nothing ] Nothing (Left 1) "A Demand UGen running an adapted BetaBlocker VChip"
+         ,U "DetaBlockerBuf" [  ] DR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "startpoint" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "DetectIndex" [ AR, KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "in" (0) Nothing ] Nothing (Left 1) "Search a buffer for a value"
          ,U "DetectSilence" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "amp" (0.0001) Nothing,I (2,2) "time" (0.1) Nothing,I (3,3) "doneAction" (0) (Just "DoneAction") ] Nothing (Left 1) "When input falls below a threshhold, evaluate doneAction."
          ,U "Dgauss" [  ] DR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (0) Nothing,I (2,2) "length" (inf) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Dgeom" [  ] DR Nothing [ I (0,0) "start" (1) Nothing,I (1,1) "grow" (2) Nothing,I (2,2) "length" (inf) Nothing ] Nothing (Left 1) "Demand rate geometric series UGen."
          ,U "Dibrown" [  ] DR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "step" (0.01) Nothing,I (3,3) "length" (inf) Nothing ] Nothing (Left 1) "Demand rate brownian movement generator."
-         ,U "Disintegrator" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "probability" (0.5) Nothing,I (2,2) "multiplier" (0) Nothing ] Nothing (Left 1) "port of some ladspa plugins"
+         ,U "Disintegrator" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "probability" (0.5) Nothing,I (2,2) "multiplier" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "DiskIn" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "loop" (0) (Just "Loop") ] Nothing (Right 0) "Stream in audio from a file."
          ,U "DiskOut" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "channelsArray" (0) Nothing ] (Just 1) (Left 1) "Record to a soundfile to disk."
          ,U "Diwhite" [  ] DR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "length" (inf) Nothing ] Nothing (Left 1) "Demand rate white noise random generator."
          ,U "Donce" [  ] DR Nothing [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Done" [ KR ] AR Nothing [ I (0,0) "src" (0) Nothing ] Nothing (Left 1) "Monitors another UGen to see when it is finished"
-         ,U "DoubleNestedAllpassC" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.0047) Nothing,I (2,2) "delay1" (0.0047) Nothing,I (3,3) "gain1" (0.15) Nothing,I (4,4) "maxdelay2" (0.022) Nothing,I (5,5) "delay2" (0.022) Nothing,I (6,6) "gain2" (0.25) Nothing,I (7,7) "maxdelay3" (0.0083) Nothing,I (8,8) "delay3" (0.0083) Nothing,I (9,9) "gain3" (0.3) Nothing ] Nothing (Left 1) "Nested Allpass filters as proposed by Vercoe and Pluckett"
-         ,U "DoubleNestedAllpassL" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.0047) Nothing,I (2,2) "delay1" (0.0047) Nothing,I (3,3) "gain1" (0.15) Nothing,I (4,4) "maxdelay2" (0.022) Nothing,I (5,5) "delay2" (0.022) Nothing,I (6,6) "gain2" (0.25) Nothing,I (7,7) "maxdelay3" (0.0083) Nothing,I (8,8) "delay3" (0.0083) Nothing,I (9,9) "gain3" (0.3) Nothing ] Nothing (Left 1) "Nested Allpass filters as proposed by Vercoe and Pluckett"
-         ,U "DoubleNestedAllpassN" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.0047) Nothing,I (2,2) "delay1" (0.0047) Nothing,I (3,3) "gain1" (0.15) Nothing,I (4,4) "maxdelay2" (0.022) Nothing,I (5,5) "delay2" (0.022) Nothing,I (6,6) "gain2" (0.25) Nothing,I (7,7) "maxdelay3" (0.0083) Nothing,I (8,8) "delay3" (0.0083) Nothing,I (9,9) "gain3" (0.3) Nothing ] Nothing (Left 1) "Nested Allpass filters as proposed by Vercoe and Pluckett"
+         ,U "DoubleNestedAllpassC" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.0047) Nothing,I (2,2) "delay1" (0.0047) Nothing,I (3,3) "gain1" (0.15) Nothing,I (4,4) "maxdelay2" (0.022) Nothing,I (5,5) "delay2" (0.022) Nothing,I (6,6) "gain2" (0.25) Nothing,I (7,7) "maxdelay3" (0.0083) Nothing,I (8,8) "delay3" (0.0083) Nothing,I (9,9) "gain3" (0.3) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "DoubleNestedAllpassL" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.0047) Nothing,I (2,2) "delay1" (0.0047) Nothing,I (3,3) "gain1" (0.15) Nothing,I (4,4) "maxdelay2" (0.022) Nothing,I (5,5) "delay2" (0.022) Nothing,I (6,6) "gain2" (0.25) Nothing,I (7,7) "maxdelay3" (0.0083) Nothing,I (8,8) "delay3" (0.0083) Nothing,I (9,9) "gain3" (0.3) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "DoubleNestedAllpassN" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.0047) Nothing,I (2,2) "delay1" (0.0047) Nothing,I (3,3) "gain1" (0.15) Nothing,I (4,4) "maxdelay2" (0.022) Nothing,I (5,5) "delay2" (0.022) Nothing,I (6,6) "gain2" (0.25) Nothing,I (7,7) "maxdelay3" (0.0083) Nothing,I (8,8) "delay3" (0.0083) Nothing,I (9,9) "gain3" (0.3) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "DoubleWell" [ AR ] AR Nothing [ I (0,0) "reset" (0) Nothing,I (1,1) "ratex" (0.01) Nothing,I (2,2) "ratey" (0.01) Nothing,I (3,3) "f" (1) Nothing,I (4,4) "w" (0.001) Nothing,I (5,5) "delta" (1) Nothing,I (6,6) "initx" (0) Nothing,I (7,7) "inity" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "DoubleWell2" [ AR ] AR Nothing [ I (0,0) "reset" (0) Nothing,I (1,1) "ratex" (0.01) Nothing,I (2,2) "ratey" (0.01) Nothing,I (3,3) "f" (1) Nothing,I (4,4) "w" (0.001) Nothing,I (5,5) "delta" (1) Nothing,I (6,6) "initx" (0) Nothing,I (7,7) "inity" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "DoubleWell3" [ AR ] AR Nothing [ I (0,0) "reset" (0) Nothing,I (1,1) "rate" (0.01) Nothing,I (2,2) "f" (0) Nothing,I (3,3) "delta" (0.25) Nothing,I (4,4) "initx" (0) Nothing,I (5,5) "inity" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
@@ -201,19 +213,18 @@
          ,U "FFT" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "in" (0) Nothing,I (2,2) "hop" (0.5) Nothing,I (3,3) "wintype" (0) Nothing,I (4,4) "active" (1) Nothing,I (5,5) "winsize" (0) Nothing ] Nothing (Left 1) "Fast Fourier Transform"
          ,U "FFTCentroid" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "FFTComplexDev" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "rectify" (0) Nothing,I (2,2) "powthresh" (0.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "FFTCrest" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "freqlo" (0) Nothing,I (2,2) "freqhi" (50000) Nothing ] Nothing (Left 1) "Spectral crest measure"
+         ,U "FFTCrest" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "freqlo" (0) Nothing,I (2,2) "freqhi" (50000) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "FFTDiffMags" [ KR ] AR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "FFTFlux" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "normalise" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "FFTFluxPos" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "normalise" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "FFTInterleave" [  ] KR Nothing [ I (0,0) "chain1" (0) Nothing,I (1,1) "chain2" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "FFTMKL" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "epsilon" (1e-06) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "FFTPeak" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "freqlo" (0) Nothing,I (2,2) "freqhi" (50000) Nothing ] Nothing (Left 2) "Find peak value in an FFT frame"
+         ,U "FFTPeak" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "freqlo" (0) Nothing,I (2,2) "freqhi" (50000) Nothing ] Nothing (Left 2) "(Undocumented class)"
          ,U "FFTPhaseDev" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "weight" (0) Nothing,I (2,2) "powthresh" (0.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "FFTPower" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "square" (true) Nothing ] Nothing (Left 1) "Instantaneous spectral power"
-         ,U "FFTSlope" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "Spectral slope"
-         ,U "FFTSpread" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "centroid" (0) Nothing ] Nothing (Left 1) "Spectral spread"
+         ,U "FFTPower" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "square" (true) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "FFTSlope" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "FFTSpread" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "centroid" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "FFTTrigger" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "hop" (0.5) Nothing,I (2,2) "polar" (0) Nothing ] Nothing (Left 1) "Outputs the necessary signal for FFT chains, without doing an FFT on a signal"
-         ,U "FFTTriggered" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "in" (0) Nothing,I (2,2) "trig" (0) Nothing,I (3,3) "overlaplimit" (0.5) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "FM7" [ AR ] AR Nothing [ I (0,0) "ctlMatrix" (0) Nothing,I (1,1) "modMatrix" (0) Nothing ] Nothing (Left 6) "(Undocumented class)"
          ,U "FMGrain" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "dur" (1) Nothing,I (2,2) "carfreq" (440) Nothing,I (3,3) "modfreq" (200) Nothing,I (4,4) "index" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "FMGrainB" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "dur" (1) Nothing,I (2,2) "carfreq" (440) Nothing,I (3,3) "modfreq" (200) Nothing,I (4,4) "index" (1) Nothing,I (5,5) "envbuf" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "FMGrainBBF" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "dur" (1) Nothing,I (2,2) "carfreq" (440) Nothing,I (3,3) "modfreq" (200) Nothing,I (4,4) "index" (1) Nothing,I (5,5) "envbuf" (0) Nothing,I (6,6) "azimuth" (0) Nothing,I (7,7) "elevation" (0) Nothing,I (8,8) "rho" (1) Nothing,I (9,9) "wComp" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
@@ -226,72 +237,76 @@
          ,U "FMHEncode2" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "point_x" (0) Nothing,I (2,2) "point_y" (0) Nothing,I (3,3) "elevation" (0) Nothing,I (4,4) "gain" (1) Nothing,I (5,5) "wComp" (0) Nothing ] Nothing (Left 9) "(Undocumented class)"
          ,U "FOS" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "a0" (0) Nothing,I (2,2) "a1" (0) Nothing,I (3,3) "b1" (0) Nothing ] Nothing (Left 1) "First order filter section."
          ,U "FSinOsc" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "iphase" (0) Nothing ] Nothing (Left 1) "Fast sine oscillator."
-         ,U "Fhn2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "urate" (0.1) Nothing,I (3,3) "wrate" (0.1) Nothing,I (4,4) "b0" (0.6) Nothing,I (5,5) "b1" (0.8) Nothing,I (6,6) "i" (0) Nothing,I (7,7) "u0" (0) Nothing,I (8,8) "w0" (0) Nothing ] Nothing (Left 1) "FitzHughNagumo Neuron Firing Oscillator"
-         ,U "Fhn2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "urate" (0.1) Nothing,I (3,3) "wrate" (0.1) Nothing,I (4,4) "b0" (0.6) Nothing,I (5,5) "b1" (0.8) Nothing,I (6,6) "i" (0) Nothing,I (7,7) "u0" (0) Nothing,I (8,8) "w0" (0) Nothing ] Nothing (Left 1) "FitzHughNagumo Neuron Firing Oscillator"
-         ,U "Fhn2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "urate" (0.1) Nothing,I (3,3) "wrate" (0.1) Nothing,I (4,4) "b0" (0.6) Nothing,I (5,5) "b1" (0.8) Nothing,I (6,6) "i" (0) Nothing,I (7,7) "u0" (0) Nothing,I (8,8) "w0" (0) Nothing ] Nothing (Left 1) "FitzHughNagumo Neuron Firing Oscillator"
+         ,U "FeatureSave" [ KR ] AR Nothing [ I (0,0) "features" (0) Nothing,I (1,1) "trig" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Fhn2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "urate" (0.1) Nothing,I (3,3) "wrate" (0.1) Nothing,I (4,4) "b0" (0.6) Nothing,I (5,5) "b1" (0.8) Nothing,I (6,6) "i" (0) Nothing,I (7,7) "u0" (0) Nothing,I (8,8) "w0" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Fhn2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "urate" (0.1) Nothing,I (3,3) "wrate" (0.1) Nothing,I (4,4) "b0" (0.6) Nothing,I (5,5) "b1" (0.8) Nothing,I (6,6) "i" (0) Nothing,I (7,7) "u0" (0) Nothing,I (8,8) "w0" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Fhn2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "urate" (0.1) Nothing,I (3,3) "wrate" (0.1) Nothing,I (4,4) "b0" (0.6) Nothing,I (5,5) "b1" (0.8) Nothing,I (6,6) "i" (0) Nothing,I (7,7) "u0" (0) Nothing,I (8,8) "w0" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "FhnTrig" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (4) Nothing,I (1,1) "maxfreq" (10) Nothing,I (2,2) "urate" (0.1) Nothing,I (3,3) "wrate" (0.1) Nothing,I (4,4) "b0" (0.6) Nothing,I (5,5) "b1" (0.8) Nothing,I (6,6) "i" (0) Nothing,I (7,7) "u0" (0) Nothing,I (8,8) "w0" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Filter" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "Base class for filter UGens"
          ,U "FincoSprottL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (2.45) Nothing,I (2,2) "h" (0.05) Nothing,I (3,3) "xi" (0) Nothing,I (4,4) "yi" (0) Nothing,I (5,5) "zi" (0) Nothing ] Nothing (Left 3) "(Undocumented class)"
          ,U "FincoSprottM" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (-7) Nothing,I (2,2) "b" (4) Nothing,I (3,3) "h" (0.05) Nothing,I (4,4) "xi" (0) Nothing,I (5,5) "yi" (0) Nothing,I (6,6) "zi" (0) Nothing ] Nothing (Left 3) "(Undocumented class)"
          ,U "FincoSprottS" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (8) Nothing,I (2,2) "b" (2) Nothing,I (3,3) "h" (0.05) Nothing,I (4,4) "xi" (0) Nothing,I (5,5) "yi" (0) Nothing,I (6,6) "zi" (0) Nothing ] Nothing (Left 3) "(Undocumented class)"
          ,U "FitzHughNagumo" [ AR ] AR Nothing [ I (0,0) "reset" (0) Nothing,I (1,1) "rateu" (0.01) Nothing,I (2,2) "ratew" (0.01) Nothing,I (3,3) "b0" (1) Nothing,I (4,4) "b1" (1) Nothing,I (5,5) "initu" (0) Nothing,I (6,6) "initw" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "FoaAsymmetry" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) asymmetry transformer"
-         ,U "FoaDirectO" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) directivity transformer"
-         ,U "FoaDirectX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) directivity transformer"
-         ,U "FoaDirectY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) directivity transformer"
-         ,U "FoaDirectZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) directivity transformer"
-         ,U "FoaDominateX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "gain" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) dominance transformer"
-         ,U "FoaDominateY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "gain" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) dominance transformer"
-         ,U "FoaDominateZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "gain" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) dominance transformer"
-         ,U "FoaFocusX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) focus transformer"
-         ,U "FoaFocusY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) focus transformer"
-         ,U "FoaFocusZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) focus transformer"
-         ,U "FoaNFC" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "distance" (1) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) nearfield compensation filter"
-         ,U "FoaPanB" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "azimuth" (0) Nothing,I (2,2) "elevation" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) panner"
-         ,U "FoaPressX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) press transformer"
-         ,U "FoaPressY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) press transformer"
-         ,U "FoaPressZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) press transformer"
-         ,U "FoaProximity" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "distance" (1) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) proximity effect filter"
-         ,U "FoaPsychoShelf" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (400) Nothing,I (2,2) "k0" (0) Nothing,I (3,3) "k1" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) psychoacoustic shelf filter"
-         ,U "FoaPushX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) push transformer"
-         ,U "FoaPushY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) push transformer"
-         ,U "FoaPushZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) push transformer"
-         ,U "FoaRotate" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) rotation transformer"
-         ,U "FoaTilt" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) rotation transformer"
-         ,U "FoaTumble" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) rotation transformer"
-         ,U "FoaZoomX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) zoom transformer"
-         ,U "FoaZoomY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) zoom transformer"
-         ,U "FoaZoomZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "First Order Ambisonic (FOA) zoom transformer"
+         ,U "FoaAsymmetry" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaDirectO" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaDirectX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaDirectY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaDirectZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaDominateX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "gain" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaDominateY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "gain" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaDominateZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "gain" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaFocusX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaFocusY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaFocusZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaNFC" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "distance" (1) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaPanB" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "azimuth" (0) Nothing,I (2,2) "elevation" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaPressX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaPressY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaPressZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaProximity" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "distance" (1) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaPsychoShelf" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (400) Nothing,I (2,2) "k0" (0) Nothing,I (3,3) "k1" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaPushX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaPushY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaPushZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaRotate" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaTilt" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaTumble" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaZoomX" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaZoomY" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
+         ,U "FoaZoomZ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "angle" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
          ,U "Fold" [ AR, KR, IR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "lo" (0) Nothing,I (2,2) "hi" (1) Nothing ] Nothing (Left 1) "Fold a signal outside given thresholds."
          ,U "Formant" [ AR ] AR Nothing [ I (0,0) "fundfreq" (440) Nothing,I (1,1) "formfreq" (1760) Nothing,I (2,2) "bwfreq" (880) Nothing ] Nothing (Left 1) "Formant oscillator"
          ,U "Formlet" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "attacktime" (1) Nothing,I (3,3) "decaytime" (1) Nothing ] Nothing (Left 1) "FOF-like filter."
-         ,U "FrameCompare" [ KR ] AR Nothing [ I (0,0) "buffer1" (0) Nothing,I (1,1) "buffer2" (0) Nothing,I (2,2) "wAmount" (0.5) Nothing ] Nothing (Left 1) "calculates spectral MSE distance of two fft chains"
+         ,U "FrameCompare" [ KR ] AR Nothing [ I (0,0) "buffer1" (0) Nothing,I (1,1) "buffer2" (0) Nothing,I (2,2) "wAmount" (0.5) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Free" [ KR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "id" (0) Nothing ] Nothing (Left 1) "When triggered, frees a node."
          ,U "FreeSelf" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "When triggered, free enclosing synth."
          ,U "FreeSelfWhenDone" [ KR ] AR Nothing [ I (0,0) "src" (0) Nothing ] Nothing (Left 1) "Free the enclosing synth when a UGen is finished"
          ,U "FreeVerb" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "mix" (0.33) Nothing,I (2,2) "room" (0.5) Nothing,I (3,3) "damp" (0.5) Nothing ] Nothing (Left 1) "A reverb"
          ,U "FreeVerb2" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "in2" (0) Nothing,I (2,2) "mix" (0.33) Nothing,I (3,3) "room" (0.5) Nothing,I (4,4) "damp" (0.5) Nothing ] Nothing (Left 2) "A two-channel reverb"
          ,U "FreqShift" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (0) Nothing,I (2,2) "phase" (0) Nothing ] Nothing (Left 1) "Frequency Shifter."
-         ,U "Friction" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "friction" (0.5) Nothing,I (2,2) "spring" (0.414) Nothing,I (3,3) "damp" (0.313) Nothing,I (4,4) "mass" (0.1) Nothing,I (5,5) "beltmass" (1) Nothing ] Nothing (Left 1) "A physical model of a system with dry-friction. A chaotic filter."
+         ,U "Friction" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "friction" (0.5) Nothing,I (2,2) "spring" (0.414) Nothing,I (3,3) "damp" (0.313) Nothing,I (4,4) "mass" (0.1) Nothing,I (5,5) "beltmass" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "GVerb" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "roomsize" (10) Nothing,I (2,2) "revtime" (3) Nothing,I (3,3) "damping" (0.5) Nothing,I (4,4) "inputbw" (0.5) Nothing,I (5,5) "spread" (15) Nothing,I (6,6) "drylevel" (1) Nothing,I (7,7) "earlyreflevel" (0.7) Nothing,I (8,8) "taillevel" (0.5) Nothing,I (9,9) "maxroomsize" (300) Nothing ] Nothing (Left 2) "A two-channel reverb"
+         ,U "Gammatone" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "centrefrequency" (440) Nothing,I (2,2) "bandwidth" (200) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Gate" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing ] Nothing (Left 1) "Gate or hold."
-         ,U "GaussClass" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "gate" (0) Nothing ] Nothing (Left 1) "Gaussian classifier"
-         ,U "GaussTrig" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "dev" (0.3) Nothing ] Nothing (Left 1) "impulses around a certain frequency"
-         ,U "Gbman2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "x0" (1.2) Nothing,I (3,3) "y0" (2.1) Nothing ] Nothing (Left 1) "gingerbreadman map 2D chaotic generator"
-         ,U "Gbman2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "x0" (1.2) Nothing,I (3,3) "y0" (2.1) Nothing ] Nothing (Left 1) "gingerbreadman map 2D chaotic generator"
-         ,U "Gbman2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "x0" (1.2) Nothing,I (3,3) "y0" (2.1) Nothing ] Nothing (Left 1) "gingerbreadman map 2D chaotic generator"
+         ,U "GaussClass" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "gate" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "GaussTrig" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "dev" (0.3) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Gbman2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "x0" (1.2) Nothing,I (3,3) "y0" (2.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Gbman2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "x0" (1.2) Nothing,I (3,3) "y0" (2.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Gbman2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "x0" (1.2) Nothing,I (3,3) "y0" (2.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "GbmanL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "xi" (1.2) Nothing,I (2,2) "yi" (2.1) Nothing ] Nothing (Left 1) "Gingerbreadman map chaotic generator"
          ,U "GbmanN" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "xi" (1.2) Nothing,I (2,2) "yi" (2.1) Nothing ] Nothing (Left 1) "Gingerbreadman map chaotic generator"
          ,U "GbmanTrig" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (5) Nothing,I (1,1) "maxfreq" (10) Nothing,I (2,2) "x0" (1.2) Nothing,I (3,3) "y0" (2.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Gendy1" [ AR, KR ] AR Nothing [ I (0,0) "ampdist" (1) Nothing,I (1,1) "durdist" (1) Nothing,I (2,2) "adparam" (1) Nothing,I (3,3) "ddparam" (1) Nothing,I (4,4) "minfreq" (440) Nothing,I (5,5) "maxfreq" (660) Nothing,I (6,6) "ampscale" (0.5) Nothing,I (7,7) "durscale" (0.5) Nothing,I (8,8) "initCPs" (12) Nothing,I (9,9) "knum" (0) Nothing ] Nothing (Left 1) "Dynamic stochastic synthesis generator."
          ,U "Gendy2" [ AR, KR ] AR Nothing [ I (0,0) "ampdist" (1) Nothing,I (1,1) "durdist" (1) Nothing,I (2,2) "adparam" (1) Nothing,I (3,3) "ddparam" (1) Nothing,I (4,4) "minfreq" (440) Nothing,I (5,5) "maxfreq" (660) Nothing,I (6,6) "ampscale" (0.5) Nothing,I (7,7) "durscale" (0.5) Nothing,I (8,8) "initCPs" (12) Nothing,I (9,9) "knum" (0) Nothing,I (10,10) "a" (1.17) Nothing,I (11,11) "c" (0.31) Nothing ] Nothing (Left 1) "Dynamic stochastic synthesis generator."
          ,U "Gendy3" [ AR, KR ] AR Nothing [ I (0,0) "ampdist" (1) Nothing,I (1,1) "durdist" (1) Nothing,I (2,2) "adparam" (1) Nothing,I (3,3) "ddparam" (1) Nothing,I (4,4) "freq" (440) Nothing,I (5,5) "ampscale" (0.5) Nothing,I (6,6) "durscale" (0.5) Nothing,I (7,7) "initCPs" (12) Nothing,I (8,8) "knum" (0) Nothing ] Nothing (Left 1) "Dynamic stochastic synthesis generator."
-         ,U "Gendy4" [ AR, KR ] AR Nothing [ I (0,0) "ampdist" (1) Nothing,I (1,1) "durdist" (1) Nothing,I (2,2) "adparam" (1) Nothing,I (3,3) "ddparam" (1) Nothing,I (4,4) "minfreq" (440) Nothing,I (5,5) "maxfreq" (660) Nothing,I (6,6) "ampscale" (0.5) Nothing,I (7,7) "durscale" (0.5) Nothing,I (8,8) "initCPs" (12) Nothing,I (9,9) "knum" (0) Nothing ] Nothing (Left 1) "Dynamic stochastic synthesis generator"
-         ,U "Gendy5" [ AR, KR ] AR Nothing [ I (0,0) "ampdist" (1) Nothing,I (1,1) "durdist" (1) Nothing,I (2,2) "adparam" (1) Nothing,I (3,3) "ddparam" (1) Nothing,I (4,4) "minfreq" (440) Nothing,I (5,5) "maxfreq" (660) Nothing,I (6,6) "ampscale" (0.5) Nothing,I (7,7) "durscale" (0.5) Nothing,I (8,8) "initCPs" (12) Nothing,I (9,9) "knum" (0) Nothing ] Nothing (Left 1) "Dynamic stochastic synthesis generator"
-         ,U "Getenv" [  ] IR Nothing [ I (0,0) "key" (0) Nothing,I (1,1) "defaultval" (0) Nothing ] Nothing (Left 1) "Read (numeric) shell environment variables into a synth"
-         ,U "GlitchHPF" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing ] Nothing (Left 1) "backward compatibility"
-         ,U "GlitchRHPF" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (1) Nothing ] Nothing (Left 1) "backward compatibility"
-         ,U "Goertzel" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "bufsize" (1024) Nothing,I (2,2) "freq" (0) Nothing,I (3,3) "hop" (1) Nothing ] Nothing (Left 2) "Calculate a single DFT bin, to detect presence of a frequency"
+         ,U "Gendy4" [ AR, KR ] AR Nothing [ I (0,0) "ampdist" (1) Nothing,I (1,1) "durdist" (1) Nothing,I (2,2) "adparam" (1) Nothing,I (3,3) "ddparam" (1) Nothing,I (4,4) "minfreq" (440) Nothing,I (5,5) "maxfreq" (660) Nothing,I (6,6) "ampscale" (0.5) Nothing,I (7,7) "durscale" (0.5) Nothing,I (8,8) "initCPs" (12) Nothing,I (9,9) "knum" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Gendy5" [ AR, KR ] AR Nothing [ I (0,0) "ampdist" (1) Nothing,I (1,1) "durdist" (1) Nothing,I (2,2) "adparam" (1) Nothing,I (3,3) "ddparam" (1) Nothing,I (4,4) "minfreq" (440) Nothing,I (5,5) "maxfreq" (660) Nothing,I (6,6) "ampscale" (0.5) Nothing,I (7,7) "durscale" (0.5) Nothing,I (8,8) "initCPs" (12) Nothing,I (9,9) "knum" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Getenv" [  ] IR Nothing [ I (0,0) "key" (0) Nothing,I (1,1) "defaultval" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "GlitchBPF" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "GlitchBRF" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "GlitchHPF" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "GlitchRHPF" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Goertzel" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "bufsize" (1024) Nothing,I (2,2) "freq" (0) Nothing,I (3,3) "hop" (1) Nothing ] Nothing (Left 2) "(Undocumented class)"
          ,U "GrainBuf" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "dur" (1) Nothing,I (2,2) "sndbuf" (0) Nothing,I (3,3) "rate" (1) Nothing,I (4,4) "pos" (0) Nothing,I (5,5) "interp" (2) Nothing,I (6,6) "pan" (0) Nothing,I (7,7) "envbufnum" (-1) Nothing,I (8,8) "maxGrains" (512) Nothing ] Nothing (Right 0) "Granular synthesis with sound stored in a buffer"
          ,U "GrainFM" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "dur" (1) Nothing,I (2,2) "carfreq" (440) Nothing,I (3,3) "modfreq" (200) Nothing,I (4,4) "index" (1) Nothing,I (5,5) "pan" (0) Nothing,I (6,6) "envbufnum" (-1) Nothing,I (7,7) "maxGrains" (512) Nothing ] Nothing (Right 0) "Granular synthesis with frequency modulated sine tones"
          ,U "GrainIn" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "dur" (1) Nothing,I (2,2) "in" (0) Nothing,I (3,3) "pan" (0) Nothing,I (4,4) "envbufnum" (-1) Nothing,I (5,5) "maxGrains" (512) Nothing ] Nothing (Right 0) "Granulate an input signal"
@@ -302,20 +317,21 @@
          ,U "HPF" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing ] Nothing (Left 1) "2nd order Butterworth highpass filter."
          ,U "HPZ1" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "Two point difference filter"
          ,U "HPZ2" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "Two zero fixed midcut."
+         ,U "HairCell" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "spontaneousrate" (0) Nothing,I (2,2) "boostrate" (200) Nothing,I (3,3) "restorerate" (1000) Nothing,I (4,4) "loss" (0.99) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Hasher" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "Randomized value."
-         ,U "Henon2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1.4) Nothing,I (3,3) "b" (0.3) Nothing,I (4,4) "x0" (0.30501993062401) Nothing,I (5,5) "y0" (0.20938865431933) Nothing ] Nothing (Left 1) "henon map 2D chaotic generator"
-         ,U "Henon2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1.4) Nothing,I (3,3) "b" (0.3) Nothing,I (4,4) "x0" (0.30501993062401) Nothing,I (5,5) "y0" (0.20938865431933) Nothing ] Nothing (Left 1) "henon map 2D chaotic generator"
-         ,U "Henon2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1.4) Nothing,I (3,3) "b" (0.3) Nothing,I (4,4) "x0" (0.30501993062401) Nothing,I (5,5) "y0" (0.20938865431933) Nothing ] Nothing (Left 1) "henon map 2D chaotic generator"
+         ,U "Henon2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1.4) Nothing,I (3,3) "b" (0.3) Nothing,I (4,4) "x0" (0.30501993062401) Nothing,I (5,5) "y0" (0.20938865431933) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Henon2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1.4) Nothing,I (3,3) "b" (0.3) Nothing,I (4,4) "x0" (0.30501993062401) Nothing,I (5,5) "y0" (0.20938865431933) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Henon2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1.4) Nothing,I (3,3) "b" (0.3) Nothing,I (4,4) "x0" (0.30501993062401) Nothing,I (5,5) "y0" (0.20938865431933) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "HenonC" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1.4) Nothing,I (2,2) "b" (0.3) Nothing,I (3,3) "x0" (0) Nothing,I (4,4) "x1" (0) Nothing ] Nothing (Left 1) "Henon map chaotic generator"
          ,U "HenonL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1.4) Nothing,I (2,2) "b" (0.3) Nothing,I (3,3) "x0" (0) Nothing,I (4,4) "x1" (0) Nothing ] Nothing (Left 1) "Henon map chaotic generator"
          ,U "HenonN" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1.4) Nothing,I (2,2) "b" (0.3) Nothing,I (3,3) "x0" (0) Nothing,I (4,4) "x1" (0) Nothing ] Nothing (Left 1) "Henon map chaotic generator"
          ,U "HenonTrig" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (5) Nothing,I (1,1) "maxfreq" (10) Nothing,I (2,2) "a" (1.4) Nothing,I (3,3) "b" (0.3) Nothing,I (4,4) "x0" (0.30501993062401) Nothing,I (5,5) "y0" (0.20938865431933) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Hilbert" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing ] Nothing (Left 2) "Applies the Hilbert transform to an input signal."
          ,U "HilbertFIR" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "buffer" (0) Nothing ] Nothing (Left 1) "Applies the Hilbert transform to an input signal."
-         ,U "ICepstrum" [  ] KR Nothing [ I (0,0) "cepchain" (0) Nothing,I (1,1) "fftbuf" (0) Nothing ] Nothing (Left 1) "Transform a cepstrum back to a spectrum"
+         ,U "ICepstrum" [  ] KR Nothing [ I (0,0) "cepchain" (0) Nothing,I (1,1) "fftbuf" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "IEnvGen" [ AR, KR ] AR Nothing [ I (0,0) "envelope" (0) Nothing,I (1,1) "index" (0) Nothing ] Nothing (Left 1) "Envelope generator for polling values from an Env"
          ,U "IFFT" [ AR, KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "wintype" (0) Nothing,I (2,2) "winsize" (0) Nothing ] Nothing (Left 1) "Inverse Fast Fourier Transform"
-         ,U "IIRFilter" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (1) Nothing ] Nothing (Left 1) "24db/oct rolloff, 4nd order resonant Low Pass Filter"
+         ,U "IIRFilter" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "IRand" [  ] IR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (127) Nothing ] Nothing (Left 1) "Single integer random number generator."
          ,U "Impulse" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "phase" (0) Nothing ] Nothing (Left 1) "Impulse oscillator."
          ,U "In" [ AR, KR ] AR Nothing [ I (0,0) "bus" (0) Nothing ] Nothing (Right 1) "Read a signal from a bus."
@@ -333,20 +349,21 @@
          ,U "IndexInBetween" [ AR, KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "in" (0) Nothing ] Nothing (Left 1) "Finds the (lowest) point in the Buffer at which the input signal lies in-between the two values"
          ,U "IndexL" [ AR, KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "in" (0) Nothing ] Nothing (Left 1) "Index into a table with a signal, linear interpolated"
          ,U "InfoUGenBase" [ IR ] AR Nothing [  ] Nothing (Left 1) "Base class for info ugens"
-         ,U "InsideOut" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "Distortion by subtracting magnitude from 1"
+         ,U "InsideOut" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Instruction" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Integrator" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "coef" (1) Nothing ] Nothing (Left 1) "A leaky integrator."
          ,U "JoshGrain" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "JoshMultiOutGrain" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "K2A" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "Control to audio rate converter."
+         ,U "KMeansRT" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "inputdata" (0) Nothing,I (2,2) "k" (5) Nothing,I (3,3) "gate" (1) Nothing,I (4,4) "reset" (0) Nothing,I (5,5) "learn" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "KeyState" [ KR ] AR Nothing [ I (0,0) "keycode" (0) Nothing,I (1,1) "minval" (0) Nothing,I (2,2) "maxval" (1) Nothing,I (3,3) "lag" (0.2) Nothing ] Nothing (Left 1) "Respond to the state of a key"
          ,U "KeyTrack" [ KR ] AR Nothing [ I (0,0) "chain" (0) Nothing,I (1,1) "keydecay" (2) Nothing,I (2,2) "chromaleak" (0.5) Nothing ] Nothing (Left 1) "Key tracker"
          ,U "Klang" [ AR ] AR Nothing [ I (0,0) "specificationsArrayRef" (0) Nothing,I (1,1) "freqscale" (1) Nothing,I (2,2) "freqoffset" (0) Nothing ] Nothing (Left 1) "Sine oscillator bank"
          ,U "Klank" [ AR ] AR (Just [ 0 ]) [ I (0,4) "specificationsArrayRef" (0) Nothing,I (1,0) "input" (0) Nothing,I (2,1) "freqscale" (1) Nothing,I (3,2) "freqoffset" (0) Nothing,I (4,3) "decayscale" (1) Nothing ] (Just 4) (Left 1) "Bank of resonators"
          ,U "KmeansToBPSet1" [ AR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "numdatapoints" (20) Nothing,I (2,2) "maxnummeans" (4) Nothing,I (3,3) "nummeans" (4) Nothing,I (4,4) "tnewdata" (1) Nothing,I (5,5) "tnewmeans" (1) Nothing,I (6,6) "soft" (1) Nothing,I (7,7) "bufnum" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "LFBrownNoise0" [ AR, KR ] AR Nothing [ I (0,0) "freq" (20) Nothing,I (1,1) "dev" (1) Nothing,I (2,2) "dist" (0) Nothing ] Nothing (Left 1) "random walk step"
-         ,U "LFBrownNoise1" [ AR, KR ] AR Nothing [ I (0,0) "freq" (20) Nothing,I (1,1) "dev" (1) Nothing,I (2,2) "dist" (0) Nothing ] Nothing (Left 1) "random walk linear interp"
-         ,U "LFBrownNoise2" [ AR, KR ] AR Nothing [ I (0,0) "freq" (20) Nothing,I (1,1) "dev" (1) Nothing,I (2,2) "dist" (0) Nothing ] Nothing (Left 1) "random walk cubic interp"
+         ,U "LFBrownNoise0" [ AR, KR ] AR Nothing [ I (0,0) "freq" (20) Nothing,I (1,1) "dev" (1) Nothing,I (2,2) "dist" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "LFBrownNoise1" [ AR, KR ] AR Nothing [ I (0,0) "freq" (20) Nothing,I (1,1) "dev" (1) Nothing,I (2,2) "dist" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "LFBrownNoise2" [ AR, KR ] AR Nothing [ I (0,0) "freq" (20) Nothing,I (1,1) "dev" (1) Nothing,I (2,2) "dist" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "LFClipNoise" [ AR, KR ] AR Nothing [ I (0,0) "freq" (500) Nothing ] Nothing (Left 1) "Clipped noise"
          ,U "LFCub" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "iphase" (0) Nothing ] Nothing (Left 1) "A sine like shape made of two cubic pieces"
          ,U "LFDClipNoise" [ AR, KR ] AR Nothing [ I (0,0) "freq" (500) Nothing ] Nothing (Left 1) "Dynamic clipped noise"
@@ -361,7 +378,7 @@
          ,U "LFPulse" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "iphase" (0) Nothing,I (2,2) "width" (0.5) Nothing ] Nothing (Left 1) "pulse oscillator"
          ,U "LFSaw" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "iphase" (0) Nothing ] Nothing (Left 1) "Sawtooth oscillator"
          ,U "LFTri" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "iphase" (0) Nothing ] Nothing (Left 1) "Triangle oscillator"
-         ,U "LPCAnalyzer" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "source" (0.01) Nothing,I (2,2) "n" (256) Nothing,I (3,3) "p" (10) Nothing,I (4,4) "testE" (0) Nothing,I (5,5) "delta" (0.999) Nothing,I (6,6) "windowtype" (0) Nothing ] Nothing (Left 1) "Live Linear Predictive Coding Analysis and Resynthesis"
+         ,U "LPCAnalyzer" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "source" (0.01) Nothing,I (2,2) "n" (256) Nothing,I (3,3) "p" (10) Nothing,I (4,4) "testE" (0) Nothing,I (5,5) "delta" (0.999) Nothing,I (6,6) "windowtype" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "LPCError" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "p" (10) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "LPCSynth" [ AR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "signal" (0) Nothing,I (2,2) "pointer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "LPCVals" [ AR, KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "pointer" (0) Nothing ] Nothing (Left 3) "(Undocumented class)"
@@ -382,9 +399,9 @@
          ,U "LagUD" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "lagTimeU" (0.1) Nothing,I (2,2) "lagTimeD" (0.1) Nothing ] Nothing (Left 1) "Exponential lag"
          ,U "LastValue" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "diff" (0.01) Nothing ] Nothing (Left 1) "Output the last value before the input changed"
          ,U "Latch" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing ] Nothing (Left 1) "Sample and hold"
-         ,U "Latoocarfian2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1) Nothing,I (3,3) "b" (3) Nothing,I (4,4) "c" (0.5) Nothing,I (5,5) "d" (0.5) Nothing,I (6,6) "x0" (0.34082301375036) Nothing,I (7,7) "y0" (-0.38270086971332) Nothing ] Nothing (Left 1) "latoocarfian 2D chaotic generator"
-         ,U "Latoocarfian2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1) Nothing,I (3,3) "b" (3) Nothing,I (4,4) "c" (0.5) Nothing,I (5,5) "d" (0.5) Nothing,I (6,6) "x0" (0.34082301375036) Nothing,I (7,7) "y0" (-0.38270086971332) Nothing ] Nothing (Left 1) "latoocarfian 2D chaotic generator"
-         ,U "Latoocarfian2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1) Nothing,I (3,3) "b" (3) Nothing,I (4,4) "c" (0.5) Nothing,I (5,5) "d" (0.5) Nothing,I (6,6) "x0" (0.34082301375036) Nothing,I (7,7) "y0" (-0.38270086971332) Nothing ] Nothing (Left 1) "latoocarfian 2D chaotic generator"
+         ,U "Latoocarfian2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1) Nothing,I (3,3) "b" (3) Nothing,I (4,4) "c" (0.5) Nothing,I (5,5) "d" (0.5) Nothing,I (6,6) "x0" (0.34082301375036) Nothing,I (7,7) "y0" (-0.38270086971332) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Latoocarfian2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1) Nothing,I (3,3) "b" (3) Nothing,I (4,4) "c" (0.5) Nothing,I (5,5) "d" (0.5) Nothing,I (6,6) "x0" (0.34082301375036) Nothing,I (7,7) "y0" (-0.38270086971332) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Latoocarfian2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "a" (1) Nothing,I (3,3) "b" (3) Nothing,I (4,4) "c" (0.5) Nothing,I (5,5) "d" (0.5) Nothing,I (6,6) "x0" (0.34082301375036) Nothing,I (7,7) "y0" (-0.38270086971332) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "LatoocarfianC" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1) Nothing,I (2,2) "b" (3) Nothing,I (3,3) "c" (0.5) Nothing,I (4,4) "d" (0.5) Nothing,I (5,5) "xi" (0.5) Nothing,I (6,6) "yi" (0.5) Nothing ] Nothing (Left 1) "Latoocarfian chaotic generator"
          ,U "LatoocarfianL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1) Nothing,I (2,2) "b" (3) Nothing,I (3,3) "c" (0.5) Nothing,I (4,4) "d" (0.5) Nothing,I (5,5) "xi" (0.5) Nothing,I (6,6) "yi" (0.5) Nothing ] Nothing (Left 1) "Latoocarfian chaotic generator"
          ,U "LatoocarfianN" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1) Nothing,I (2,2) "b" (3) Nothing,I (3,3) "c" (0.5) Nothing,I (4,4) "d" (0.5) Nothing,I (5,5) "xi" (0.5) Nothing,I (6,6) "yi" (0.5) Nothing ] Nothing (Left 1) "Latoocarfian chaotic generator"
@@ -402,37 +419,39 @@
          ,U "Line" [ AR, KR ] AR Nothing [ I (0,0) "start" (0) Nothing,I (1,1) "end" (1) Nothing,I (2,2) "dur" (1) Nothing,I (3,3) "doneAction" (0) (Just "DoneAction") ] Nothing (Left 1) "Line generator."
          ,U "Linen" [ KR ] AR Nothing [ I (0,0) "gate" (1) Nothing,I (1,1) "attackTime" (0.01) Nothing,I (2,2) "susLevel" (1) Nothing,I (3,3) "releaseTime" (1) Nothing,I (4,4) "doneAction" (0) (Just "DoneAction") ] Nothing (Left 1) "Simple linear envelope generator."
          ,U "ListDUGen" [  ] DR Nothing [ I (0,0) "list" (0) Nothing,I (1,1) "repeats" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "ListTrig" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "reset" (0) Nothing,I (2,2) "offset" (0) Nothing,I (3,3) "numframes" (0) Nothing ] Nothing (Left 1) "Emit a sequence of triggers at specified time offsets"
-         ,U "ListTrig2" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "reset" (0) Nothing,I (2,2) "numframes" (0) Nothing ] Nothing (Left 1) "Emit a sequence of triggers at specified time offsets"
+         ,U "ListTrig" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "reset" (0) Nothing,I (2,2) "offset" (0) Nothing,I (3,3) "numframes" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "ListTrig2" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "reset" (0) Nothing,I (2,2) "numframes" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "LocalOut" [ AR, KR ] AR Nothing [ I (0,0) "channelsArray" (0) Nothing ] (Just 0) (Left 1) "Write to buses local to a synth."
-         ,U "Logger" [ KR ] AR Nothing [ I (0,0) "inputArray" (0) Nothing,I (1,1) "trig" (0) Nothing,I (2,2) "bufnum" (0) Nothing,I (3,3) "reset" (0) Nothing ] Nothing (Left 1) "Store values to a buffer, whenever triggered"
+         ,U "Logger" [ KR ] AR Nothing [ I (0,0) "inputArray" (0) Nothing,I (1,1) "trig" (0) Nothing,I (2,2) "bufnum" (0) Nothing,I (3,3) "reset" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Logistic" [ AR, KR ] AR Nothing [ I (0,0) "chaosParam" (3) Nothing,I (1,1) "freq" (1000) Nothing,I (2,2) "init" (0.5) Nothing ] Nothing (Left 1) "Chaotic noise function"
-         ,U "LoopBuf" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "rate" (1) Nothing,I (2,2) "gate" (1) Nothing,I (3,3) "startPos" (0) Nothing,I (4,4) "startLoop" (0) Nothing,I (5,5) "endLoop" (0) Nothing,I (6,6) "interpolation" (2) Nothing ] Nothing (Right 0) "sample looping oscillator"
-         ,U "Lorenz2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "s" (10) Nothing,I (3,3) "r" (28) Nothing,I (4,4) "b" (2.6666667) Nothing,I (5,5) "h" (0.02) Nothing,I (6,6) "x0" (0.090879182417163) Nothing,I (7,7) "y0" (2.97077458055) Nothing,I (8,8) "z0" (24.282041054363) Nothing ] Nothing (Left 1) "lorenz 2D chaotic generator"
-         ,U "Lorenz2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "s" (10) Nothing,I (3,3) "r" (28) Nothing,I (4,4) "b" (2.6666667) Nothing,I (5,5) "h" (0.02) Nothing,I (6,6) "x0" (0.090879182417163) Nothing,I (7,7) "y0" (2.97077458055) Nothing,I (8,8) "z0" (24.282041054363) Nothing ] Nothing (Left 1) "lorenz 2D chaotic generator"
-         ,U "Lorenz2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "s" (10) Nothing,I (3,3) "r" (28) Nothing,I (4,4) "b" (2.6666667) Nothing,I (5,5) "h" (0.02) Nothing,I (6,6) "x0" (0.090879182417163) Nothing,I (7,7) "y0" (2.97077458055) Nothing,I (8,8) "z0" (24.282041054363) Nothing ] Nothing (Left 1) "lorenz 2D chaotic generator"
+         ,U "LoopBuf" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "rate" (1) Nothing,I (2,2) "gate" (1) Nothing,I (3,3) "startPos" (0) Nothing,I (4,4) "startLoop" (0) Nothing,I (5,5) "endLoop" (0) Nothing,I (6,6) "interpolation" (2) Nothing ] Nothing (Right 0) "(Undocumented class)"
+         ,U "Lorenz2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "s" (10) Nothing,I (3,3) "r" (28) Nothing,I (4,4) "b" (2.6666667) Nothing,I (5,5) "h" (0.02) Nothing,I (6,6) "x0" (0.090879182417163) Nothing,I (7,7) "y0" (2.97077458055) Nothing,I (8,8) "z0" (24.282041054363) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Lorenz2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "s" (10) Nothing,I (3,3) "r" (28) Nothing,I (4,4) "b" (2.6666667) Nothing,I (5,5) "h" (0.02) Nothing,I (6,6) "x0" (0.090879182417163) Nothing,I (7,7) "y0" (2.97077458055) Nothing,I (8,8) "z0" (24.282041054363) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Lorenz2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "s" (10) Nothing,I (3,3) "r" (28) Nothing,I (4,4) "b" (2.6666667) Nothing,I (5,5) "h" (0.02) Nothing,I (6,6) "x0" (0.090879182417163) Nothing,I (7,7) "y0" (2.97077458055) Nothing,I (8,8) "z0" (24.282041054363) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "LorenzL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "s" (10) Nothing,I (2,2) "r" (28) Nothing,I (3,3) "b" (2.667) Nothing,I (4,4) "h" (0.05) Nothing,I (5,5) "xi" (0.1) Nothing,I (6,6) "yi" (0) Nothing,I (7,7) "zi" (0) Nothing ] Nothing (Left 1) "Lorenz chaotic generator"
-         ,U "LorenzTrig" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "s" (10) Nothing,I (3,3) "r" (28) Nothing,I (4,4) "b" (2.6666667) Nothing,I (5,5) "h" (0.02) Nothing,I (6,6) "x0" (0.090879182417163) Nothing,I (7,7) "y0" (2.97077458055) Nothing,I (8,8) "z0" (24.282041054363) Nothing ] Nothing (Left 1) "lorenz chaotic trigger generator"
+         ,U "LorenzTrig" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "s" (10) Nothing,I (3,3) "r" (28) Nothing,I (4,4) "b" (2.6666667) Nothing,I (5,5) "h" (0.02) Nothing,I (6,6) "x0" (0.090879182417163) Nothing,I (7,7) "y0" (2.97077458055) Nothing,I (8,8) "z0" (24.282041054363) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Loudness" [ KR ] AR Nothing [ I (0,0) "chain" (0) Nothing,I (1,1) "smask" (0.25) Nothing,I (2,2) "tmask" (1) Nothing ] Nothing (Left 1) "Extraction of instantaneous loudness in sones"
          ,U "MCLDChaosGen" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "MFCC" [ KR ] AR Nothing [ I (0,0) "chain" (0) Nothing,I (1,1) "numcoeff" (13) Nothing ] Nothing (Left 1) "Mel frequency cepstral coefficients"
+         ,U "MZPokey" [ AR ] AR Nothing [ I (0,0) "audf1" (0) Nothing,I (1,1) "audc1" (0) Nothing,I (2,2) "audf2" (0) Nothing,I (3,3) "audc2" (0) Nothing,I (4,4) "audf3" (0) Nothing,I (5,5) "audc3" (0) Nothing,I (6,6) "audf4" (0) Nothing,I (7,7) "audc4" (0) Nothing,I (8,8) "audctl" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "MantissaMask" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "bits" (3) Nothing ] Nothing (Left 1) "Reduce precision."
-         ,U "MarkovSynth" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "isRecording" (1) Nothing,I (2,2) "waitTime" (2) Nothing,I (3,3) "tableSize" (10) Nothing ] Nothing (Left 1) "First order Markov Chain implementation for audio signals"
+         ,U "MarkovSynth" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "isRecording" (1) Nothing,I (2,2) "waitTime" (2) Nothing,I (3,3) "tableSize" (10) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Max" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "numsamp" (64) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "MaxLocalBufs" [  ] IR Nothing [  ] Nothing (Left 1) "Set the maximum number of local buffers in a synth"
          ,U "Maxamp" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "numSamps" (1000) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "MdaPiano" [ AR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "gate" (1) Nothing,I (2,2) "vel" (100) Nothing,I (3,3) "decay" (0.8) Nothing,I (4,4) "release" (0.8) Nothing,I (5,5) "hard" (0.8) Nothing,I (6,6) "velhard" (0.8) Nothing,I (7,7) "muffle" (0.8) Nothing,I (8,8) "velmuff" (0.8) Nothing,I (9,9) "velcurve" (0.8) Nothing,I (10,10) "stereo" (0.2) Nothing,I (11,11) "tune" (0.5) Nothing,I (12,12) "random" (0.1) Nothing,I (13,13) "stretch" (0.1) Nothing,I (14,14) "sustain" (0) Nothing ] Nothing (Left 2) "Piano synthesiser"
-         ,U "MeanTriggered" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing,I (2,2) "length" (10) Nothing ] Nothing (Left 1) "Mean of recent values, triggered"
+         ,U "MdaPiano" [ AR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "gate" (1) Nothing,I (2,2) "vel" (100) Nothing,I (3,3) "decay" (0.8) Nothing,I (4,4) "release" (0.8) Nothing,I (5,5) "hard" (0.8) Nothing,I (6,6) "velhard" (0.8) Nothing,I (7,7) "muffle" (0.8) Nothing,I (8,8) "velmuff" (0.8) Nothing,I (9,9) "velcurve" (0.8) Nothing,I (10,10) "stereo" (0.2) Nothing,I (11,11) "tune" (0.5) Nothing,I (12,12) "random" (0.1) Nothing,I (13,13) "stretch" (0.1) Nothing,I (14,14) "sustain" (0) Nothing ] Nothing (Left 2) "(Undocumented class)"
+         ,U "MeanTriggered" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing,I (2,2) "length" (10) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Meddis" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Median" [ AR, KR ] AR (Just [ 1 ]) [ I (0,0) "length" (3) Nothing,I (1,1) "in" (0) Nothing ] Nothing (Left 1) "Median filter."
-         ,U "MedianTriggered" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing,I (2,2) "length" (10) Nothing ] Nothing (Left 1) "Median of recent values, triggered"
-         ,U "MembraneCircle" [ AR ] AR Nothing [ I (0,0) "excitation" (0) Nothing,I (1,1) "tension" (0.05) Nothing,I (2,2) "loss" (0.99999) Nothing ] Nothing (Left 1) "Waveguide mesh physical models of drum membranes"
-         ,U "MembraneHexagon" [ AR ] AR Nothing [ I (0,0) "excitation" (0) Nothing,I (1,1) "tension" (0.05) Nothing,I (2,2) "loss" (0.99999) Nothing ] Nothing (Left 1) "Waveguide mesh physical models of drum membranes"
+         ,U "MedianTriggered" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing,I (2,2) "length" (10) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "MembraneCircle" [ AR ] AR Nothing [ I (0,0) "excitation" (0) Nothing,I (1,1) "tension" (0.05) Nothing,I (2,2) "loss" (0.99999) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "MembraneHexagon" [ AR ] AR Nothing [ I (0,0) "excitation" (0) Nothing,I (1,1) "tension" (0.05) Nothing,I (2,2) "loss" (0.99999) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Metro" [ AR, KR ] AR Nothing [ I (0,0) "bpm" (0) Nothing,I (1,1) "numBeats" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "MidEQ" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (1) Nothing,I (3,3) "db" (0) Nothing ] Nothing (Left 1) "Parametric filter."
          ,U "MonoGrain" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "winsize" (0.1) Nothing,I (2,2) "grainrate" (10) Nothing,I (3,3) "winrandpct" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "MonoGrainBF" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "winsize" (0.1) Nothing,I (2,2) "grainrate" (10) Nothing,I (3,3) "winrandpct" (0) Nothing,I (4,4) "azimuth" (0) Nothing,I (5,5) "azrand" (0) Nothing,I (6,6) "elevation" (0) Nothing,I (7,7) "elrand" (0) Nothing,I (8,8) "rho" (1) Nothing ] Nothing (Left 4) "(Undocumented class)"
          ,U "MoogFF" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (100) Nothing,I (2,2) "gain" (2) Nothing,I (3,3) "reset" (0) Nothing ] Nothing (Left 1) "Moog VCF implementation, designed by Federico Fontana"
-         ,U "MoogLadder" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "ffreq" (440) Nothing,I (2,2) "res" (0) Nothing ] Nothing (Left 1) "Moog Filter Emulation"
+         ,U "MoogLadder" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "ffreq" (440) Nothing,I (2,2) "res" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "MoogVCF" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "fco" (0) Nothing,I (2,2) "res" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "MostChange" [ AR, KR ] AR (Just [ 0, 1 ]) [ I (0,0) "a" (0) Nothing,I (1,1) "b" (0) Nothing ] Nothing (Left 1) "Output most changed."
          ,U "MouseButton" [ KR ] AR Nothing [ I (0,0) "minval" (0) Nothing,I (1,1) "maxval" (1) Nothing,I (2,2) "lag" (0.2) Nothing ] Nothing (Left 1) "Mouse button UGen."
@@ -441,15 +460,16 @@
          ,U "MultiOutUGen" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "Superclass for all UGens with multiple outputs"
          ,U "NL" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "bufnuma" (0) Nothing,I (2,2) "bufnumb" (1) Nothing,I (3,3) "guard1" (1000) Nothing,I (4,4) "guard2" (100) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "NL2" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "maxsizea" (10) Nothing,I (3,3) "maxsizeb" (10) Nothing,I (4,4) "guard1" (1000) Nothing,I (5,5) "guard2" (100) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "NLFiltC" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "a" (0) Nothing,I (2,2) "b" (0) Nothing,I (3,3) "d" (0) Nothing,I (4,4) "c" (0) Nothing,I (5,5) "l" (0) Nothing ] Nothing (Left 1) "Non-linear Filter"
-         ,U "NLFiltL" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "a" (0) Nothing,I (2,2) "b" (0) Nothing,I (3,3) "d" (0) Nothing,I (4,4) "c" (0) Nothing,I (5,5) "l" (0) Nothing ] Nothing (Left 1) "Non-linear Filter"
-         ,U "NLFiltN" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "a" (0) Nothing,I (2,2) "b" (0) Nothing,I (3,3) "d" (0) Nothing,I (4,4) "c" (0) Nothing,I (5,5) "l" (0) Nothing ] Nothing (Left 1) "Non-linear Filter"
+         ,U "NLFiltC" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "a" (0) Nothing,I (2,2) "b" (0) Nothing,I (3,3) "d" (0) Nothing,I (4,4) "c" (0) Nothing,I (5,5) "l" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "NLFiltL" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "a" (0) Nothing,I (2,2) "b" (0) Nothing,I (3,3) "d" (0) Nothing,I (4,4) "c" (0) Nothing,I (5,5) "l" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "NLFiltN" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "a" (0) Nothing,I (2,2) "b" (0) Nothing,I (3,3) "d" (0) Nothing,I (4,4) "c" (0) Nothing,I (5,5) "l" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "NRand" [  ] IR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "n" (0) Nothing ] Nothing (Left 1) "Sum of uniform distributions."
          ,U "NTube" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "lossarray" (1) Nothing,I (2,2) "karray" (0) Nothing,I (3,3) "delaylengtharray" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "NeedleRect" [ AR ] AR Nothing [ I (0,0) "rate" (1) Nothing,I (1,1) "imgWidth" (100) Nothing,I (2,2) "imgHeight" (100) Nothing,I (3,3) "rectX" (0) Nothing,I (4,4) "rectY" (0) Nothing,I (5,5) "rectW" (100) Nothing,I (6,6) "rectH" (100) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "NestedAllpassC" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.036) Nothing,I (2,2) "delay1" (0.036) Nothing,I (3,3) "gain1" (0.08) Nothing,I (4,4) "maxdelay2" (0.03) Nothing,I (5,5) "delay2" (0.03) Nothing,I (6,6) "gain2" (0.3) Nothing ] Nothing (Left 1) "Nested Allpass filters as proposed by Vercoe and Pluckett"
-         ,U "NestedAllpassL" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.036) Nothing,I (2,2) "delay1" (0.036) Nothing,I (3,3) "gain1" (0.08) Nothing,I (4,4) "maxdelay2" (0.03) Nothing,I (5,5) "delay2" (0.03) Nothing,I (6,6) "gain2" (0.3) Nothing ] Nothing (Left 1) "Nested Allpass filters as proposed by Vercoe and Pluckett"
-         ,U "NestedAllpassN" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.036) Nothing,I (2,2) "delay1" (0.036) Nothing,I (3,3) "gain1" (0.08) Nothing,I (4,4) "maxdelay2" (0.03) Nothing,I (5,5) "delay2" (0.03) Nothing,I (6,6) "gain2" (0.3) Nothing ] Nothing (Left 1) "Nested Allpass filters as proposed by Vercoe and Pluckett"
+         ,U "Nes2" [ AR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "a0" (0) Nothing,I (2,2) "a1" (0) Nothing,I (3,3) "a2" (0) Nothing,I (4,4) "a3" (0) Nothing,I (5,5) "b0" (0) Nothing,I (6,6) "b1" (0) Nothing,I (7,7) "b2" (0) Nothing,I (8,8) "b3" (0) Nothing,I (9,9) "c0" (0) Nothing,I (10,10) "c2" (0) Nothing,I (11,11) "c3" (0) Nothing,I (12,12) "d0" (0) Nothing,I (13,13) "d2" (0) Nothing,I (14,14) "d3" (0) Nothing,I (15,15) "e0" (0) Nothing,I (16,16) "e1" (0) Nothing,I (17,17) "e2" (0) Nothing,I (18,18) "e3" (0) Nothing,I (19,19) "smask" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "NestedAllpassC" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.036) Nothing,I (2,2) "delay1" (0.036) Nothing,I (3,3) "gain1" (0.08) Nothing,I (4,4) "maxdelay2" (0.03) Nothing,I (5,5) "delay2" (0.03) Nothing,I (6,6) "gain2" (0.3) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "NestedAllpassL" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.036) Nothing,I (2,2) "delay1" (0.036) Nothing,I (3,3) "gain1" (0.08) Nothing,I (4,4) "maxdelay2" (0.03) Nothing,I (5,5) "delay2" (0.03) Nothing,I (6,6) "gain2" (0.3) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "NestedAllpassN" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "maxdelay1" (0.036) Nothing,I (2,2) "delay1" (0.036) Nothing,I (3,3) "gain1" (0.08) Nothing,I (4,4) "maxdelay2" (0.03) Nothing,I (5,5) "delay2" (0.03) Nothing,I (6,6) "gain2" (0.3) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Normalizer" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "level" (1) Nothing,I (2,2) "dur" (0.01) Nothing ] Nothing (Left 1) "Flattens dynamics."
          ,U "NumAudioBuses" [ IR ] AR Nothing [  ] Nothing (Left 1) "Number of audio busses."
          ,U "NumBuffers" [ IR ] AR Nothing [  ] Nothing (Left 1) "Number of open buffers."
@@ -485,19 +505,19 @@
          ,U "PV_BrickWall" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "wipe" (0) Nothing ] Nothing (Left 1) "Zero bins."
          ,U "PV_BufRd" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "playbuf" (0) Nothing,I (2,2) "point" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_ChainUGen" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "Base class for UGens that alter FFT chains"
-         ,U "PV_CommonMag" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "tolerance" (0) Nothing,I (3,3) "remove" (0) Nothing ] Nothing (Left 1) "returns common magnitudes"
-         ,U "PV_CommonMul" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "tolerance" (0) Nothing,I (3,3) "remove" (0) Nothing ] Nothing (Left 1) "multiplies common magnitudes"
-         ,U "PV_Compander" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "thresh" (50) Nothing,I (2,2) "slopeBelow" (1) Nothing,I (3,3) "slopeAbove" (1) Nothing ] Nothing (Left 1) "simple spectral compression/expansion"
+         ,U "PV_CommonMag" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "tolerance" (0) Nothing,I (3,3) "remove" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "PV_CommonMul" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "tolerance" (0) Nothing,I (3,3) "remove" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "PV_Compander" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "thresh" (50) Nothing,I (2,2) "slopeBelow" (1) Nothing,I (3,3) "slopeAbove" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_ConformalMap" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "areal" (0) Nothing,I (2,2) "aimag" (0) Nothing ] Nothing (Left 1) "Complex plane attack."
          ,U "PV_Conj" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "Complex conjugate"
          ,U "PV_Copy" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing ] Nothing (Left 1) "Copy an FFT buffer"
          ,U "PV_CopyPhase" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing ] Nothing (Left 1) "Copy magnitudes and phases."
-         ,U "PV_Cutoff" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "wipe" (0) Nothing ] Nothing (Left 1) "zero bins with interpolation"
+         ,U "PV_Cutoff" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "wipe" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_DiffMags" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_Diffuser" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "trig" (0) Nothing ] Nothing (Left 1) "Random phase shifting."
          ,U "PV_Div" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing ] Nothing (Left 1) "Complex division"
          ,U "PV_EvenBin" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "PV_ExtractRepeat" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "loopbuf" (0) Nothing,I (2,2) "loopdur" (0) Nothing,I (3,3) "memorytime" (30) Nothing,I (4,4) "which" (0) Nothing,I (5,5) "ffthop" (0.5) Nothing,I (6,6) "thresh" (1) Nothing ] Nothing (Left 1) "extract a repeating loop out from audio"
+         ,U "PV_ExtractRepeat" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "loopbuf" (0) Nothing,I (2,2) "loopdur" (0) Nothing,I (3,3) "memorytime" (30) Nothing,I (4,4) "which" (0) Nothing,I (5,5) "ffthop" (0.5) Nothing,I (6,6) "thresh" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_Freeze" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "freeze" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_FreqBuffer" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "databuffer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_HainsworthFoote" [ AR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "proph" (0) Nothing,I (2,2) "propf" (0) Nothing,I (3,3) "threshold" (1) Nothing,I (4,4) "waittime" (0.04) Nothing ] Nothing (Left 1) "FFT onset detector."
@@ -511,10 +531,10 @@
          ,U "PV_MagDiv" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "zeroed" (0.0001) Nothing ] Nothing (Left 1) "Division of magnitudes"
          ,U "PV_MagExp" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_MagFreeze" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "freeze" (0) Nothing ] Nothing (Left 1) "Freeze magnitudes."
-         ,U "PV_MagGate" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "thresh" (1) Nothing,I (2,2) "remove" (0) Nothing ] Nothing (Left 1) "reduces magnitudes above or below thresh"
+         ,U "PV_MagGate" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "thresh" (1) Nothing,I (2,2) "remove" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_MagLog" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_MagMap" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "mapbuf" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "PV_MagMinus" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "remove" (1) Nothing ] Nothing (Left 1) "subtract spectral energy"
+         ,U "PV_MagMinus" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "remove" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_MagMul" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing ] Nothing (Left 1) "Multiply magnitudes."
          ,U "PV_MagMulAdd" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_MagNoise" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "Multiply magnitudes by noise."
@@ -528,7 +548,7 @@
          ,U "PV_MaxMagN" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "numbins" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_Min" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing ] Nothing (Left 1) "Minimum magnitude."
          ,U "PV_MinMagN" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "numbins" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "PV_Morph" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "morph" (0) Nothing ] Nothing (Left 1) "one kind of spectral morphing"
+         ,U "PV_Morph" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "morph" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_Mul" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing ] Nothing (Left 1) "Complex multiply."
          ,U "PV_NoiseSynthF" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "threshold" (0.1) Nothing,I (2,2) "numFrames" (2) Nothing,I (3,3) "initflag" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_NoiseSynthP" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "threshold" (0.1) Nothing,I (2,2) "numFrames" (2) Nothing,I (3,3) "initflag" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
@@ -545,11 +565,11 @@
          ,U "PV_RecordBuf" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "recbuf" (0) Nothing,I (2,2) "offset" (0) Nothing,I (3,3) "run" (0) Nothing,I (4,4) "loop" (0) Nothing,I (5,5) "hop" (0.5) Nothing,I (6,6) "wintype" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_RectComb" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "numTeeth" (0) Nothing,I (2,2) "phase" (0) Nothing,I (3,3) "width" (0.5) Nothing ] Nothing (Left 1) "Make gaps in spectrum."
          ,U "PV_RectComb2" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "numTeeth" (0) Nothing,I (3,3) "phase" (0) Nothing,I (4,4) "width" (0.5) Nothing ] Nothing (Left 1) "Make gaps in spectrum."
-         ,U "PV_SoftWipe" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "wipe" (0) Nothing ] Nothing (Left 1) "combine low and high bins from two inputs with interpolation"
+         ,U "PV_SoftWipe" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "wipe" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_SpectralEnhance" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "numPartials" (8) Nothing,I (2,2) "ratio" (2) Nothing,I (3,3) "strength" (0.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_SpectralMap" [  ] KR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "specBuffer" (0) Nothing,I (2,2) "floor" (0) Nothing,I (3,3) "freeze" (0) Nothing,I (4,4) "mode" (0) Nothing,I (5,5) "norm" (0) Nothing,I (6,6) "window" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PV_Whiten" [  ] KR Nothing [ I (0,0) "chain" (0) Nothing,I (1,1) "trackbufnum" (0) Nothing,I (2,2) "relaxtime" (2) Nothing,I (3,3) "floor" (0.1) Nothing,I (4,4) "smear" (0) Nothing,I (5,5) "bindownsample" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "PV_XFade" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "fade" (0) Nothing ] Nothing (Left 1) "one kind of spectral morphing"
+         ,U "PV_XFade" [  ] KR Nothing [ I (0,0) "bufferA" (0) Nothing,I (1,1) "bufferB" (0) Nothing,I (2,2) "fade" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Pan2" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "pos" (0) Nothing,I (2,2) "level" (1) Nothing ] Nothing (Left 2) "Two channel equal power pan."
          ,U "Pan4" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "xpos" (0) Nothing,I (2,2) "ypos" (0) Nothing,I (3,3) "level" (1) Nothing ] Nothing (Left 4) "Four channel equal power pan."
          ,U "PanAz" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "pos" (0) Nothing,I (2,2) "level" (1) Nothing,I (3,3) "width" (2) Nothing,I (4,4) "orientation" (0.5) Nothing ] Nothing (Right 0) "Azimuth panner"
@@ -565,21 +585,22 @@
          ,U "PeakEQ2" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (1200) Nothing,I (2,2) "rs" (1) Nothing,I (3,3) "db" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PeakEQ4" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (1200) Nothing,I (2,2) "rs" (1) Nothing,I (3,3) "db" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PeakFollower" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "decay" (0.999) Nothing ] Nothing (Left 1) "Track peak signal amplitude."
-         ,U "Perlin3" [ AR, KR ] AR Nothing [ I (0,0) "x" (0) Nothing,I (1,1) "y" (0) Nothing,I (2,2) "z" (0) Nothing ] Nothing (Left 1) "3D Perlin Noise"
+         ,U "Perlin3" [ AR, KR ] AR Nothing [ I (0,0) "x" (0) Nothing,I (1,1) "y" (0) Nothing,I (2,2) "z" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Phasor" [ AR, KR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "rate" (1) Nothing,I (2,2) "start" (0) Nothing,I (3,3) "end" (1) Nothing,I (4,4) "resetPos" (0) Nothing ] Nothing (Left 1) "A resettable linear ramp between two levels."
          ,U "PinkNoise" [ AR, KR ] AR Nothing [  ] Nothing (Left 1) "Pink Noise."
          ,U "Pitch" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "initFreq" (440) Nothing,I (2,2) "minFreq" (60) Nothing,I (3,3) "maxFreq" (4000) Nothing,I (4,4) "execFreq" (100) Nothing,I (5,5) "maxBinsPerOctave" (16) Nothing,I (6,6) "median" (1) Nothing,I (7,7) "ampThreshold" (0.01) Nothing,I (8,8) "peakThreshold" (0.5) Nothing,I (9,9) "downSample" (1) Nothing,I (10,10) "clar" (0) Nothing ] Nothing (Left 2) "Autocorrelation pitch follower"
          ,U "PitchShift" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "windowSize" (0.2) Nothing,I (2,2) "pitchRatio" (1) Nothing,I (3,3) "pitchDispersion" (0) Nothing,I (4,4) "timeDispersion" (0) Nothing ] Nothing (Left 1) "Time domain pitch shifter."
-         ,U "PlaneTree" [ KR ] AR Nothing [ I (0,0) "treebuf" (0) Nothing,I (1,1) "in" (0) Nothing,I (2,2) "gate" (1) Nothing ] Nothing (Left 1) "Tree classifier using (hyper)planes – UGen or language-side"
+         ,U "PlaneTree" [ KR ] AR Nothing [ I (0,0) "treebuf" (0) Nothing,I (1,1) "in" (0) Nothing,I (2,2) "gate" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PlayBuf" [ AR, KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "rate" (1) Nothing,I (2,2) "trigger" (1) Nothing,I (3,3) "startPos" (0) Nothing,I (4,4) "loop" (0) (Just "Loop"),I (5,5) "doneAction" (0) (Just "DoneAction") ] Nothing (Left 1) "Sample playback oscillator."
          ,U "Pluck" [ AR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (1) Nothing,I (2,2) "maxdelaytime" (0.2) Nothing,I (3,3) "delaytime" (0.2) Nothing,I (4,4) "decaytime" (1) Nothing,I (5,5) "coef" (0.5) Nothing ] Nothing (Left 1) "A Karplus-Strong UGen"
+         ,U "Pokey" [ AR ] AR Nothing [ I (0,0) "audf1" (0) Nothing,I (1,1) "audc1" (0) Nothing,I (2,2) "audf2" (0) Nothing,I (3,3) "audc2" (0) Nothing,I (4,4) "audf3" (0) Nothing,I (5,5) "audc3" (0) Nothing,I (6,6) "audf4" (0) Nothing,I (7,7) "audc4" (0) Nothing,I (8,8) "audctl" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PosRatio" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "period" (100) Nothing,I (2,2) "thresh" (0.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "PrintVal" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "numblocks" (100) Nothing,I (2,2) "id" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Pulse" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "width" (0.5) Nothing ] Nothing (Left 1) "Band limited pulse wave."
          ,U "PulseCount" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "trig" (0) Nothing,I (1,1) "reset" (0) Nothing ] Nothing (Left 1) "Pulse counter."
          ,U "PulseDivider" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "trig" (0) Nothing,I (1,1) "div" (2) Nothing,I (2,2) "start" (0) Nothing ] Nothing (Left 1) "Pulse divider."
          ,U "PureUGen" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "Pure UGen"
-         ,U "Qitch" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "databufnum" (0) Nothing,I (2,2) "ampThreshold" (0.01) Nothing,I (3,3) "algoflag" (1) Nothing,I (4,4) "ampbufnum" (0) Nothing,I (5,5) "minfreq" (0) Nothing,I (6,6) "maxfreq" (2500) Nothing ] Nothing (Left 2) "constant Q transform pitch follower"
+         ,U "Qitch" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "databufnum" (0) Nothing,I (2,2) "ampThreshold" (0.01) Nothing,I (3,3) "algoflag" (1) Nothing,I (4,4) "ampbufnum" (0) Nothing,I (5,5) "minfreq" (0) Nothing,I (6,6) "maxfreq" (2500) Nothing ] Nothing (Left 2) "(Undocumented class)"
          ,U "QuadC" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1) Nothing,I (2,2) "b" (-1) Nothing,I (3,3) "c" (-0.75) Nothing,I (4,4) "xi" (0) Nothing ] Nothing (Left 1) "General quadratic map chaotic generator"
          ,U "QuadL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1) Nothing,I (2,2) "b" (-1) Nothing,I (3,3) "c" (-0.75) Nothing,I (4,4) "xi" (0) Nothing ] Nothing (Left 1) "General quadratic map chaotic generator"
          ,U "QuadN" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (1) Nothing,I (2,2) "b" (-1) Nothing,I (3,3) "c" (-0.75) Nothing,I (4,4) "xi" (0) Nothing ] Nothing (Left 1) "General quadratic map chaotic generator"
@@ -589,7 +610,7 @@
          ,U "RFreezer" [ AR, KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "left" (0) Nothing,I (2,2) "right" (1) Nothing,I (3,3) "gain" (1) Nothing,I (4,4) "increment" (1) Nothing,I (5,5) "incrementOffset" (0) Nothing,I (6,6) "incrementRandom" (0) Nothing,I (7,7) "rightRandom" (0) Nothing,I (8,8) "syncPhaseTrigger" (0) Nothing,I (9,9) "randomizePhaseTrigger" (0) Nothing,I (10,10) "numberOfLoops" (4) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "RHPF" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (1) Nothing ] Nothing (Left 1) "A resonant high pass filter."
          ,U "RLPF" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (1) Nothing ] Nothing (Left 1) "A resonant low pass filter."
-         ,U "RLPFD" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "ffreq" (440) Nothing,I (2,2) "res" (0) Nothing,I (3,3) "dist" (0) Nothing ] Nothing (Left 1) "TB303 Filter Emulation"
+         ,U "RLPFD" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "ffreq" (440) Nothing,I (2,2) "res" (0) Nothing,I (3,3) "dist" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "RLoopSet" [ AR, KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "left" (0) Nothing,I (2,2) "right" (1) Nothing,I (3,3) "gain" (1) Nothing,I (4,4) "increment" (1) Nothing,I (5,5) "spec" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "RMAFoodChainL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a1" (5) Nothing,I (2,2) "b1" (3) Nothing,I (3,3) "d1" (0.4) Nothing,I (4,4) "a2" (0.1) Nothing,I (5,5) "b2" (2) Nothing,I (6,6) "d2" (0.01) Nothing,I (7,7) "k" (1.0943) Nothing,I (8,8) "r" (0.8904) Nothing,I (9,9) "h" (0.05) Nothing,I (10,10) "xi" (0.1) Nothing,I (11,11) "yi" (0) Nothing,I (12,12) "zi" (0) Nothing ] Nothing (Left 3) "(Undocumented class)"
          ,U "RMEQ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (0.1) Nothing,I (3,3) "k" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
@@ -609,33 +630,42 @@
          ,U "RandID" [ KR, IR ] AR Nothing [ I (0,0) "id" (0) Nothing ] Nothing (Left 1) "Set the synth's random generator ID."
          ,U "RandSeed" [ AR, KR, IR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "seed" (56789) Nothing ] Nothing (Left 1) "Sets the synth's random generator seed."
          ,U "RecordBuf" [ AR, KR ] AR Nothing [ I (0,8) "inputArray" (0) Nothing,I (1,0) "bufnum" (0) Nothing,I (2,1) "offset" (0) Nothing,I (3,2) "recLevel" (1) Nothing,I (4,3) "preLevel" (0) Nothing,I (5,4) "run" (1) (Just "Loop"),I (6,5) "loop" (1) Nothing,I (7,6) "trigger" (1) (Just "DoneAction"),I (8,7) "doneAction" (0) Nothing ] (Just 8) (Left 1) "Record or overdub into a Buffer."
+         ,U "RedDPCMdecode" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "RedDPCMencode" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "round" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "RedLbyl" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "thresh" (0.5) Nothing,I (2,2) "samples" (2) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "RedNoise" [ AR, KR ] AR Nothing [ I (0,0) "clock" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "RedPhasor" [ AR, KR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "rate" (1) Nothing,I (2,2) "start" (0) Nothing,I (3,3) "end" (1) Nothing,I (4,4) "loop" (0) Nothing,I (5,5) "loopstart" (0) Nothing,I (6,6) "loopend" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "RedPhasor2" [ AR, KR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "rate" (1) Nothing,I (2,2) "start" (0) Nothing,I (3,3) "end" (1) Nothing,I (4,4) "loop" (0) Nothing,I (5,5) "loopstart" (0) Nothing,I (6,6) "loopend" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "RegaliaMitraEQ" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "rq" (0.1) Nothing,I (3,3) "k" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "ReplaceOut" [ AR, KR ] AR Nothing [ I (0,0) "bus" (0) Nothing,I (1,1) "channelsArray" (0) Nothing ] (Just 1) (Left 1) "Send signal to a bus, overwriting previous contents."
          ,U "Resonz" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "bwr" (1) Nothing ] Nothing (Left 1) "Resonant filter."
          ,U "Ringz" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "decaytime" (1) Nothing ] Nothing (Left 1) "Ringing filter."
-         ,U "RosslerL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (0.2) Nothing,I (2,2) "b" (0.2) Nothing,I (3,3) "c" (5.7) Nothing,I (4,4) "h" (0.05) Nothing,I (5,5) "xi" (0.1) Nothing,I (6,6) "yi" (0) Nothing,I (7,7) "zi" (0) Nothing ] Nothing (Left 3) "Rossler chaotic generator"
+         ,U "RosslerL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "a" (0.2) Nothing,I (2,2) "b" (0.2) Nothing,I (3,3) "c" (5.7) Nothing,I (4,4) "h" (0.05) Nothing,I (5,5) "xi" (0.1) Nothing,I (6,6) "yi" (0) Nothing,I (7,7) "zi" (0) Nothing ] Nothing (Left 3) "(Undocumented class)"
          ,U "RosslerResL" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "stiff" (1) Nothing,I (2,2) "freq" (22050) Nothing,I (3,3) "a" (0.2) Nothing,I (4,4) "b" (0.2) Nothing,I (5,5) "c" (5.7) Nothing,I (6,6) "h" (0.05) Nothing,I (7,7) "xi" (0.1) Nothing,I (8,8) "yi" (0) Nothing,I (9,9) "zi" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Rotate" [ AR ] AR Nothing [ I (0,0) "w" (0) Nothing,I (1,1) "x" (0) Nothing,I (2,2) "y" (0) Nothing,I (3,3) "z" (0) Nothing,I (4,4) "rotate" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
          ,U "Rotate2" [ AR, KR ] AR Nothing [ I (0,0) "x" (0) Nothing,I (1,1) "y" (0) Nothing,I (2,2) "pos" (0) Nothing ] Nothing (Left 2) "Rotate a sound field."
          ,U "RunningMax" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing ] Nothing (Left 1) "Track maximum level."
          ,U "RunningMin" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing ] Nothing (Left 1) "Track minimum level."
          ,U "RunningSum" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "numsamp" (40) Nothing ] Nothing (Left 1) "Running sum over n frames"
+         ,U "SID6581f" [ AR ] AR Nothing [ I (0,0) "freqLo0" (0) Nothing,I (1,1) "freqHi0" (0) Nothing,I (2,2) "pwLo0" (0) Nothing,I (3,3) "pwHi0" (0) Nothing,I (4,4) "ctrl0" (0) Nothing,I (5,5) "atkDcy0" (0) Nothing,I (6,6) "susRel0" (0) Nothing,I (7,7) "freqLo1" (0) Nothing,I (8,8) "freqHi1" (0) Nothing,I (9,9) "pwLo1" (0) Nothing,I (10,10) "pwHi1" (0) Nothing,I (11,11) "ctrl1" (0) Nothing,I (12,12) "atkDcy1" (0) Nothing,I (13,13) "susRel1" (0) Nothing,I (14,14) "freqLo2" (0) Nothing,I (15,15) "freqHi2" (0) Nothing,I (16,16) "pwLo2" (0) Nothing,I (17,17) "pwHi2" (0) Nothing,I (18,18) "ctrl2" (0) Nothing,I (19,19) "atkDcy2" (0) Nothing,I (20,20) "susRel2" (0) Nothing,I (21,21) "fcLo" (0) Nothing,I (22,22) "fcHi" (0) Nothing,I (23,23) "resFilt" (0) Nothing,I (24,24) "modeVol" (0) Nothing,I (25,25) "rate" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SLOnset" [ KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "memorysize1" (20) Nothing,I (2,2) "before" (5) Nothing,I (3,3) "after" (5) Nothing,I (4,4) "threshold" (10) Nothing,I (5,5) "hysteresis" (10) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "SMS" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "maxpeaks" (80) Nothing,I (2,2) "currentpeaks" (80) Nothing,I (3,3) "tolerance" (4) Nothing,I (4,4) "noisefloor" (0.2) Nothing,I (5,5) "freqmult" (1) Nothing,I (6,6) "freqadd" (0) Nothing,I (7,7) "formantpreserve" (0) Nothing,I (8,8) "useifft" (0) Nothing,I (9,9) "ampmult" (1) Nothing,I (10,10) "graphicsbufnum" (0) Nothing ] Nothing (Left 2) "Spectral Modeling Synthesis"
+         ,U "SMS" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "maxpeaks" (80) Nothing,I (2,2) "currentpeaks" (80) Nothing,I (3,3) "tolerance" (4) Nothing,I (4,4) "noisefloor" (0.2) Nothing,I (5,5) "freqmult" (1) Nothing,I (6,6) "freqadd" (0) Nothing,I (7,7) "formantpreserve" (0) Nothing,I (8,8) "useifft" (0) Nothing,I (9,9) "ampmult" (1) Nothing,I (10,10) "graphicsbufnum" (0) Nothing ] Nothing (Left 2) "(Undocumented class)"
+         ,U "SN76489" [ AR ] AR Nothing [ I (0,0) "tone0" (512) Nothing,I (1,1) "tone1" (0) Nothing,I (2,2) "tone2" (0) Nothing,I (3,3) "noise" (0) Nothing,I (4,4) "vol0" (15) Nothing,I (5,5) "vol1" (0) Nothing,I (6,6) "vol2" (0) Nothing,I (7,7) "vol3" (0) Nothing,I (8,8) "rate" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SOMAreaWr" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "inputdata" (0) Nothing,I (2,2) "coords" (0) Nothing,I (3,3) "netsize" (10) Nothing,I (4,4) "numdims" (2) Nothing,I (5,5) "nhood" (0.5) Nothing,I (6,6) "gate" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SOMRd" [ AR, KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "inputdata" (0) Nothing,I (2,2) "netsize" (10) Nothing,I (3,3) "numdims" (2) Nothing,I (4,4) "gate" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SOMTrain" [ KR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "inputdata" (0) Nothing,I (2,2) "netsize" (10) Nothing,I (3,3) "numdims" (2) Nothing,I (4,4) "traindur" (5000) Nothing,I (5,5) "nhood" (0.5) Nothing,I (6,6) "gate" (1) Nothing,I (7,7) "initweight" (1) Nothing ] Nothing (Left 3) "(Undocumented class)"
          ,U "SOS" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "a0" (0) Nothing,I (2,2) "a1" (0) Nothing,I (3,3) "a2" (0) Nothing,I (4,4) "b1" (0) Nothing,I (5,5) "b2" (0) Nothing ] Nothing (Left 1) "Second order filter section (biquad)."
-         ,U "SVF" [ AR, KR ] AR Nothing [ I (0,0) "signal" (0) Nothing,I (1,1) "cutoff" (2200) Nothing,I (2,2) "res" (0.1) Nothing,I (3,3) "lowpass" (1) Nothing,I (4,4) "bandpass" (0) Nothing,I (5,5) "highpass" (0) Nothing,I (6,6) "notch" (0) Nothing,I (7,7) "peak" (0) Nothing ] Nothing (Left 1) "12db/Oct State Variable Filter"
+         ,U "SVF" [ AR, KR ] AR Nothing [ I (0,0) "signal" (0) Nothing,I (1,1) "cutoff" (2200) Nothing,I (2,2) "res" (0.1) Nothing,I (3,3) "lowpass" (1) Nothing,I (4,4) "bandpass" (0) Nothing,I (5,5) "highpass" (0) Nothing,I (6,6) "notch" (0) Nothing,I (7,7) "peak" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SampleDur" [ IR ] AR Nothing [  ] Nothing (Left 1) "Duration of one sample."
          ,U "SampleRate" [ IR ] AR Nothing [  ] Nothing (Left 1) "Server sample rate."
          ,U "Saw" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing ] Nothing (Left 1) "Band limited sawtooth."
-         ,U "SawDPW" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "iphase" (0) Nothing ] Nothing (Left 1) "super-efficient sawtooth oscillator with low aliasing"
+         ,U "SawDPW" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "iphase" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Schmidt" [ AR, KR, IR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "lo" (0) Nothing,I (2,2) "hi" (1) Nothing ] Nothing (Left 1) "Schmidt trigger."
          ,U "ScopeOut" [ AR, KR ] AR Nothing [ I (0,0) "inputArray" (0) Nothing,I (1,1) "bufnum" (0) Nothing ] Nothing (Left 1) "FIXME: ScopeOut purpose."
          ,U "ScopeOut2" [ AR, KR ] AR Nothing [ I (0,0) "inputArray" (0) Nothing,I (1,1) "scopeNum" (0) Nothing,I (2,2) "maxFrames" (4096) Nothing,I (3,3) "scopeFrames" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Select" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "which" (0) Nothing,I (1,1) "array" (0) Nothing ] (Just 1) (Left 1) "Select output from an array of inputs."
          ,U "SendTrig" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "id" (0) Nothing,I (2,2) "value" (0) Nothing ] Nothing (Left 1) "Send a trigger message from the server back to the client."
+         ,U "SensoryDissonance" [ KR ] AR Nothing [ I (0,0) "fft" (0) Nothing,I (1,1) "maxpeaks" (100) Nothing,I (2,2) "peakthreshold" (0.1) Nothing,I (3,3) "norm" (0) Nothing,I (4,4) "clamp" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SetBuf" [  ] IR Nothing [ I (0,0) "buf" (0) Nothing,I (1,1) "values" (0) Nothing,I (2,2) "offset" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SetResetFF" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "trig" (0) Nothing,I (1,1) "reset" (0) Nothing ] Nothing (Left 1) "Set-reset flip flop."
          ,U "Shaper" [ AR, KR ] AR (Just [ 1 ]) [ I (0,0) "bufnum" (0) Nothing,I (1,1) "in" (0) Nothing ] Nothing (Left 1) "Wave shaper."
@@ -649,11 +679,12 @@
          ,U "SinOsc" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "phase" (0) Nothing ] Nothing (Left 1) "Interpolating sine wavetable oscillator."
          ,U "SinOscFB" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "feedback" (0) Nothing ] Nothing (Left 1) "Feedback FM oscillator"
          ,U "SinTone" [ AR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "phase" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "SineShaper" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "limit" (1) Nothing ] Nothing (Left 1) "port of some ladspa plugins"
+         ,U "SineShaper" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "limit" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SkipNeedle" [ AR ] AR Nothing [ I (0,0) "range" (44100) Nothing,I (1,1) "rate" (10) Nothing,I (2,2) "offset" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Slew" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "up" (1) Nothing,I (2,2) "dn" (1) Nothing ] Nothing (Left 1) "Slew rate limiter."
          ,U "Slope" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "Slope of signal"
-         ,U "SmoothDecimator" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "rate" (44100) Nothing,I (2,2) "smoothing" (0.5) Nothing ] Nothing (Left 1) "port of some ladspa plugins"
+         ,U "Slub" [ AR, KR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "spike" (4.04) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "SmoothDecimator" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "rate" (44100) Nothing,I (2,2) "smoothing" (0.5) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SoftClipAmp" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "pregain" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SoftClipAmp4" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "pregain" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SoftClipAmp8" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "pregain" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
@@ -663,15 +694,16 @@
          ,U "SpecCentroid" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "Spectral centroid"
          ,U "SpecFlatness" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing ] Nothing (Left 1) "Spectral Flatness measure"
          ,U "SpecPcile" [ KR ] AR Nothing [ I (0,0) "buffer" (0) Nothing,I (1,1) "fraction" (0.5) Nothing,I (2,2) "interpolate" (0) Nothing ] Nothing (Left 1) "Find a percentile of FFT magnitude spectrum"
+         ,U "SpectralEntropy" [ KR ] AR Nothing [ I (0,0) "fft" (0) Nothing,I (1,1) "fftsize" (2048) Nothing,I (2,2) "numbands" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Splay" [ AR, KR ] AR Nothing [ I (0,0) "inArray" (0) Nothing,I (1,1) "spread" (1) Nothing,I (2,2) "level" (1) Nothing,I (3,3) "center" (0) Nothing,I (4,4) "levelComp" (true) Nothing ] Nothing (Left 1) "Splay spreads an array of channels across the stereo field"
          ,U "SplayAz" [ AR, KR ] AR Nothing [ I (0,0) "inArray" (0) Nothing,I (1,1) "spread" (1) Nothing,I (2,2) "level" (1) Nothing,I (3,3) "width" (2) Nothing,I (4,4) "center" (0) Nothing,I (5,5) "orientation" (0.5) Nothing,I (6,6) "levelComp" (true) Nothing ] Nothing (Left 1) "Spreads an array of channels across a ring of channels"
          ,U "Spreader" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "theta" (1.5707963267949) Nothing,I (2,2) "filtsPerOctave" (8) Nothing ] Nothing (Left 2) "(Undocumented class)"
          ,U "Spring" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "spring" (1) Nothing,I (2,2) "damp" (0) Nothing ] Nothing (Left 1) "physical model of resonating spring"
          ,U "SpruceBudworm" [ AR ] AR Nothing [ I (0,0) "reset" (0) Nothing,I (1,1) "rate" (0.1) Nothing,I (2,2) "k1" (27.9) Nothing,I (3,3) "k2" (1.5) Nothing,I (4,4) "alpha" (0.1) Nothing,I (5,5) "beta" (10.1) Nothing,I (6,6) "mu" (0.3) Nothing,I (7,7) "rho" (10.1) Nothing,I (8,8) "initx" (0.9) Nothing,I (9,9) "inity" (0.1) Nothing ] Nothing (Left 2) "(Undocumented class)"
-         ,U "Squiz" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "pitchratio" (2) Nothing,I (2,2) "zcperchunk" (1) Nothing,I (3,3) "memlen" (0.1) Nothing ] Nothing (Left 1) "Wave squeezer. Maybe a kind of pitch shifter."
-         ,U "Standard2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "k" (1.4) Nothing,I (3,3) "x0" (4.9789799812499) Nothing,I (4,4) "y0" (5.7473416156381) Nothing ] Nothing (Left 1) "standard map 2D chaotic generator"
-         ,U "Standard2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "k" (1.4) Nothing,I (3,3) "x0" (4.9789799812499) Nothing,I (4,4) "y0" (5.7473416156381) Nothing ] Nothing (Left 1) "standard map 2D chaotic generator"
-         ,U "Standard2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "k" (1.4) Nothing,I (3,3) "x0" (4.9789799812499) Nothing,I (4,4) "y0" (5.7473416156381) Nothing ] Nothing (Left 1) "standard map 2D chaotic generator"
+         ,U "Squiz" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "pitchratio" (2) Nothing,I (2,2) "zcperchunk" (1) Nothing,I (3,3) "memlen" (0.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Standard2DC" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "k" (1.4) Nothing,I (3,3) "x0" (4.9789799812499) Nothing,I (4,4) "y0" (5.7473416156381) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Standard2DL" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "k" (1.4) Nothing,I (3,3) "x0" (4.9789799812499) Nothing,I (4,4) "y0" (5.7473416156381) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "Standard2DN" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (11025) Nothing,I (1,1) "maxfreq" (22050) Nothing,I (2,2) "k" (1.4) Nothing,I (3,3) "x0" (4.9789799812499) Nothing,I (4,4) "y0" (5.7473416156381) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "StandardL" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "k" (1) Nothing,I (2,2) "xi" (0.5) Nothing,I (3,3) "yi" (0) Nothing ] Nothing (Left 1) "Standard map chaotic generator"
          ,U "StandardN" [ AR ] AR Nothing [ I (0,0) "freq" (22050) Nothing,I (1,1) "k" (1) Nothing,I (2,2) "xi" (0.5) Nothing,I (3,3) "yi" (0) Nothing ] Nothing (Left 1) "Standard map chaotic generator"
          ,U "StandardTrig" [ AR, KR ] AR Nothing [ I (0,0) "minfreq" (5) Nothing,I (1,1) "maxfreq" (10) Nothing,I (2,2) "k" (1.4) Nothing,I (3,3) "x0" (4.9789799812499) Nothing,I (4,4) "y0" (5.7473416156381) Nothing ] Nothing (Left 1) "(Undocumented class)"
@@ -690,38 +722,38 @@
          ,U "StkSaxofony" [ AR, KR ] AR Nothing [ I (0,0) "freq" (220) Nothing,I (1,1) "reedstiffness" (64) Nothing,I (2,2) "reedaperture" (64) Nothing,I (3,3) "noisegain" (20) Nothing,I (4,4) "blowposition" (26) Nothing,I (5,5) "vibratofrequency" (20) Nothing,I (6,6) "vibratogain" (20) Nothing,I (7,7) "breathpressure" (128) Nothing,I (8,8) "trig" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "StkShakers" [ AR, KR ] AR Nothing [ I (0,0) "instr" (0) Nothing,I (1,1) "energy" (64) Nothing,I (2,2) "decay" (64) Nothing,I (3,3) "objects" (64) Nothing,I (4,4) "resfreq" (64) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "StkVoicForm" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "vuvmix" (64) Nothing,I (2,2) "vowelphon" (64) Nothing,I (3,3) "vibfreq" (64) Nothing,I (4,4) "vibgain" (20) Nothing,I (5,5) "loudness" (64) Nothing,I (6,6) "trig" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "Streson" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "delayTime" (0.003) Nothing,I (2,2) "res" (0.9) Nothing ] Nothing (Left 1) "String resonance filter"
+         ,U "Streson" [ AR, KR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "delayTime" (0.003) Nothing,I (2,2) "res" (0.9) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SubsampleOffset" [ IR ] AR Nothing [  ] Nothing (Left 1) "Offset from synth start within one sample."
-         ,U "Summer" [ AR, KR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "step" (1) Nothing,I (2,2) "reset" (0) Nothing,I (3,3) "resetval" (0) Nothing ] Nothing (Left 1) "Pulse counter with floating point steps"
+         ,U "Summer" [ AR, KR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "step" (1) Nothing,I (2,2) "reset" (0) Nothing,I (3,3) "resetval" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Sweep" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "trig" (0) Nothing,I (1,1) "rate" (1) Nothing ] Nothing (Left 1) "Triggered linear ramp"
-         ,U "SwitchDelay" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "drylevel" (1) Nothing,I (2,2) "wetlevel" (1) Nothing,I (3,3) "delaytime" (1) Nothing,I (4,4) "delayfactor" (0.7) Nothing,I (5,5) "maxdelaytime" (20) Nothing ] Nothing (Left 1) "feedback delay line implementing switch-and-ramp buffer jumping"
+         ,U "SwitchDelay" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "drylevel" (1) Nothing,I (2,2) "wetlevel" (1) Nothing,I (3,3) "delaytime" (1) Nothing,I (4,4) "delayfactor" (0.7) Nothing,I (5,5) "maxdelaytime" (20) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "SyncSaw" [ AR, KR ] AR Nothing [ I (0,0) "syncFreq" (440) Nothing,I (1,1) "sawFreq" (440) Nothing ] Nothing (Left 1) "Hard sync sawtooth wave."
          ,U "T2A" [ AR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "offset" (0) Nothing ] Nothing (Left 1) "Control rate trigger to audio rate trigger converter"
          ,U "T2K" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing ] Nothing (Left 1) "Audio rate trigger to control rate trigger converter"
          ,U "TBall" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "g" (10) Nothing,I (2,2) "damp" (0) Nothing,I (3,3) "friction" (0.01) Nothing ] Nothing (Left 1) "physical model of bouncing object"
-         ,U "TBetaRand" [ AR, KR ] AR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "prob1" (0) Nothing,I (3,3) "prob2" (0) Nothing,I (4,4) "trig" (0) Nothing ] Nothing (Left 1) "triggered beta random distribution"
-         ,U "TBrownRand" [ AR, KR ] AR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "dev" (1) Nothing,I (3,3) "dist" (0) Nothing,I (4,4) "trig" (0) Nothing ] Nothing (Left 1) "triggered random walk generator"
+         ,U "TBetaRand" [ AR, KR ] AR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "prob1" (0) Nothing,I (3,3) "prob2" (0) Nothing,I (4,4) "trig" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "TBrownRand" [ AR, KR ] AR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "dev" (1) Nothing,I (3,3) "dist" (0) Nothing,I (4,4) "trig" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "TDelay" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "dur" (0.1) Nothing ] Nothing (Left 1) "Trigger delay."
          ,U "TDuty" [ AR, KR ] AR Nothing [ I (0,0) "dur" (1) Nothing,I (1,1) "reset" (0) Nothing,I (2,2) "level" (1) (Just "DoneAction"),I (3,3) "doneAction" (0) Nothing,I (4,4) "gapFirst" (0) Nothing ] Nothing (Left 1) "Demand results as trigger from demand rate UGens."
          ,U "TExpRand" [ AR, KR ] AR Nothing [ I (0,0) "lo" (0.01) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "trig" (0) Nothing ] Nothing (Left 1) "Triggered exponential random number generator."
-         ,U "TGaussRand" [ AR, KR ] AR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "trig" (0) Nothing ] Nothing (Left 1) "triggered gaussian random distribution"
+         ,U "TGaussRand" [ AR, KR ] AR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "trig" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "TGrains" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "rate" (1) Nothing,I (3,3) "centerPos" (0) Nothing,I (4,4) "dur" (0.1) Nothing,I (5,5) "pan" (0) Nothing,I (6,6) "amp" (0.1) Nothing,I (7,7) "interp" (4) Nothing ] Nothing (Right 0) "Buffer granulator."
-         ,U "TGrains2" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "rate" (1) Nothing,I (3,3) "centerPos" (0) Nothing,I (4,4) "dur" (0.1) Nothing,I (5,5) "pan" (0) Nothing,I (6,6) "amp" (0.1) Nothing,I (7,7) "att" (0.5) Nothing,I (8,8) "dec" (0.5) Nothing,I (9,9) "interp" (4) Nothing ] Nothing (Right 0) "buffer granulator with linear att/dec"
-         ,U "TGrains3" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "rate" (1) Nothing,I (3,3) "centerPos" (0) Nothing,I (4,4) "dur" (0.1) Nothing,I (5,5) "pan" (0) Nothing,I (6,6) "amp" (0.1) Nothing,I (7,7) "att" (0.5) Nothing,I (8,8) "dec" (0.5) Nothing,I (9,9) "window" (1) Nothing,I (10,10) "interp" (4) Nothing ] Nothing (Right 0) "buffer granulator with user envelope"
+         ,U "TGrains2" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "rate" (1) Nothing,I (3,3) "centerPos" (0) Nothing,I (4,4) "dur" (0.1) Nothing,I (5,5) "pan" (0) Nothing,I (6,6) "amp" (0.1) Nothing,I (7,7) "att" (0.5) Nothing,I (8,8) "dec" (0.5) Nothing,I (9,9) "interp" (4) Nothing ] Nothing (Right 0) "(Undocumented class)"
+         ,U "TGrains3" [ AR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "rate" (1) Nothing,I (3,3) "centerPos" (0) Nothing,I (4,4) "dur" (0.1) Nothing,I (5,5) "pan" (0) Nothing,I (6,6) "amp" (0.1) Nothing,I (7,7) "att" (0.5) Nothing,I (8,8) "dec" (0.5) Nothing,I (9,9) "window" (1) Nothing,I (10,10) "interp" (4) Nothing ] Nothing (Right 0) "(Undocumented class)"
          ,U "TIRand" [ AR, KR ] AR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (127) Nothing,I (2,2) "trig" (0) Nothing ] Nothing (Left 1) "Triggered integer random number generator."
-         ,U "TPV" [ AR ] AR Nothing [ I (0,0) "chain" (0) Nothing,I (1,1) "windowsize" (1024) Nothing,I (2,2) "hopsize" (512) Nothing,I (3,3) "maxpeaks" (80) Nothing,I (4,4) "currentpeaks" (0) Nothing,I (5,5) "freqmult" (1) Nothing,I (6,6) "tolerance" (4) Nothing,I (7,7) "noisefloor" (0.2) Nothing ] Nothing (Left 1) "Tracking Phase Vocoder"
+         ,U "TPV" [ AR ] AR Nothing [ I (0,0) "chain" (0) Nothing,I (1,1) "windowsize" (1024) Nothing,I (2,2) "hopsize" (512) Nothing,I (3,3) "maxpeaks" (80) Nothing,I (4,4) "currentpeaks" (0) Nothing,I (5,5) "freqmult" (1) Nothing,I (6,6) "tolerance" (4) Nothing,I (7,7) "noisefloor" (0.2) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "TRand" [ AR, KR ] AR Nothing [ I (0,0) "lo" (0) Nothing,I (1,1) "hi" (1) Nothing,I (2,2) "trig" (0) Nothing ] Nothing (Left 1) "Triggered random number generator."
          ,U "TTendency" [ AR, KR ] AR Nothing [ I (0,0) "trigger" (0) Nothing,I (1,1) "dist" (0) Nothing,I (2,2) "parX" (0) Nothing,I (3,3) "parY" (1) Nothing,I (4,4) "parA" (0) Nothing,I (5,5) "parB" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "TWindex" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,2) "array" (0) Nothing,I (2,1) "normalize" (0) Nothing ] (Just 2) (Left 1) "Triggered windex."
          ,U "Tap" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "delaytime" (0.2) Nothing ] Nothing (Right 0) "Single tap into a delayline"
-         ,U "Tartini" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "threshold" (0.93) Nothing,I (2,2) "n" (2048) Nothing,I (3,3) "k" (0) Nothing,I (4,4) "overlap" (1024) Nothing,I (5,5) "smallCutoff" (0.5) Nothing ] Nothing (Left 2) "pitch tracker"
+         ,U "Tartini" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "threshold" (0.93) Nothing,I (2,2) "n" (2048) Nothing,I (3,3) "k" (0) Nothing,I (4,4) "overlap" (1024) Nothing,I (5,5) "smallCutoff" (0.5) Nothing ] Nothing (Left 2) "(Undocumented class)"
          ,U "TermanWang" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "reset" (0) Nothing,I (2,2) "ratex" (0.01) Nothing,I (3,3) "ratey" (0.01) Nothing,I (4,4) "alpha" (1) Nothing,I (5,5) "beta" (1) Nothing,I (6,6) "eta" (1) Nothing,I (7,7) "initx" (0) Nothing,I (8,8) "inity" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Tilt" [ AR ] AR Nothing [ I (0,0) "w" (0) Nothing,I (1,1) "x" (0) Nothing,I (2,2) "y" (0) Nothing,I (3,3) "z" (0) Nothing,I (4,4) "tilt" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
          ,U "Timer" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "trig" (0) Nothing ] Nothing (Left 1) "Returns time since last triggered."
          ,U "ToggleFF" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "trig" (0) Nothing ] Nothing (Left 1) "Toggle flip flop."
          ,U "Trig" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "dur" (0.1) Nothing ] Nothing (Left 1) "Timed trigger."
          ,U "Trig1" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "dur" (0.1) Nothing ] Nothing (Left 1) "Timed trigger."
-         ,U "TrigAvg" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing ] Nothing (Left 1) "triggered signal averager"
+         ,U "TrigAvg" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "trig" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "TrigControl" [ KR, IR ] AR Nothing [ I (0,0) "values" (0) Nothing ] Nothing (Left 1) "FIXME: TrigControl purpose."
          ,U "Tumble" [ AR ] AR Nothing [ I (0,0) "w" (0) Nothing,I (1,1) "x" (0) Nothing,I (2,2) "y" (0) Nothing,I (3,3) "z" (0) Nothing,I (4,4) "tilt" (0) Nothing ] Nothing (Left 4) "(Undocumented class)"
          ,U "TwoPole" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "radius" (0.8) Nothing ] Nothing (Left 1) "Two pole filter."
@@ -729,29 +761,29 @@
          ,U "TwoZero" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "radius" (0.8) Nothing ] Nothing (Left 1) "Two zero filter."
          ,U "UHJ2B" [ AR ] AR Nothing [ I (0,0) "ls" (0) Nothing,I (1,1) "rs" (0) Nothing ] Nothing (Left 3) "(Undocumented class)"
          ,U "Unpack1FFT" [  ] DR Nothing [ I (0,0) "chain" (0) Nothing,I (1,1) "bufsize" (0) Nothing,I (2,2) "binindex" (0) Nothing,I (3,3) "whichmeasure" (0) Nothing ] Nothing (Left 1) "Unpack a single value (magnitude or phase) from an FFT chain"
-         ,U "VBAP" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "azimuth" (0) Nothing,I (3,3) "elevation" (1) Nothing,I (4,4) "spread" (0) Nothing ] Nothing (Right 0) "Vector Base Amplitude Panner"
+         ,U "VBAP" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "bufnum" (0) Nothing,I (2,2) "azimuth" (0) Nothing,I (3,3) "elevation" (1) Nothing,I (4,4) "spread" (0) Nothing ] Nothing (Right 0) "(Undocumented class)"
          ,U "VDiskIn" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "rate" (1) Nothing,I (2,2) "loop" (0) (Just "Loop"),I (3,3) "sendID" (0) Nothing ] Nothing (Right 0) "Stream in audio from a file, with variable rate"
          ,U "VMScan2D" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing ] Nothing (Left 2) "(Undocumented class)"
-         ,U "VOSIM" [ AR ] AR Nothing [ I (0,0) "trig" (0.1) Nothing,I (1,1) "freq" (400) Nothing,I (2,2) "nCycles" (1) Nothing,I (3,3) "decay" (0.9) Nothing ] Nothing (Left 1) "vosim pulse generator"
+         ,U "VOSIM" [ AR ] AR Nothing [ I (0,0) "trig" (0.1) Nothing,I (1,1) "freq" (400) Nothing,I (2,2) "nCycles" (1) Nothing,I (3,3) "decay" (0.9) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "VOsc" [ AR, KR ] AR Nothing [ I (0,0) "bufpos" (0) Nothing,I (1,1) "freq" (440) Nothing,I (2,2) "phase" (0) Nothing ] Nothing (Left 1) "Variable wavetable oscillator."
          ,U "VOsc3" [ AR, KR ] AR Nothing [ I (0,0) "bufpos" (0) Nothing,I (1,1) "freq1" (110) Nothing,I (2,2) "freq2" (220) Nothing,I (3,3) "freq3" (440) Nothing ] Nothing (Left 1) "Three variable wavetable oscillators."
          ,U "VarLag" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "time" (0.1) Nothing,I (2,2) "curvature" (0) Nothing,I (3,3) "warp" (5) Nothing,I (4,4) "start" (0) Nothing ] Nothing (Left 1) "Variable shaped lag"
          ,U "VarSaw" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "iphase" (0) Nothing,I (2,2) "width" (0.5) Nothing ] Nothing (Left 1) "Variable duty saw"
          ,U "Vibrato" [ AR, KR ] AR Nothing [ I (0,0) "freq" (440) Nothing,I (1,1) "rate" (6) Nothing,I (2,2) "depth" (0.02) Nothing,I (3,3) "delay" (0) Nothing,I (4,4) "onset" (0) Nothing,I (5,5) "rateVariation" (0.04) Nothing,I (6,6) "depthVariation" (0.1) Nothing,I (7,7) "iphase" (0) Nothing ] Nothing (Left 1) "The Vibrato oscillator models a slow frequency modulation."
-         ,U "WAmp" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "winSize" (0.1) Nothing ] Nothing (Left 1) "windowed amplitude follower"
-         ,U "WalshHadamard" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "which" (0) Nothing ] Nothing (Left 1) "decomposition into square waves, and reconstruction"
+         ,U "WAmp" [ KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "winSize" (0.1) Nothing ] Nothing (Left 1) "(Undocumented class)"
+         ,U "WalshHadamard" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "which" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Warp1" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "pointer" (0) Nothing,I (2,2) "freqScale" (1) Nothing,I (3,3) "windowSize" (0.2) Nothing,I (4,4) "envbufnum" (-1) Nothing,I (5,5) "overlaps" (8) Nothing,I (6,6) "windowRandRatio" (0) Nothing,I (7,7) "interp" (1) Nothing ] Nothing (Right 0) "Warp a buffer with a time pointer"
          ,U "WarpZ" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "pointer" (0) Nothing,I (2,2) "freqScale" (1) Nothing,I (3,3) "windowSize" (0.2) Nothing,I (4,4) "envbufnum" (-1) Nothing,I (5,5) "overlaps" (8) Nothing,I (6,6) "windowRandRatio" (0) Nothing,I (7,7) "interp" (1) Nothing,I (8,8) "zeroSearch" (0) Nothing,I (9,9) "zeroStart" (0) Nothing ] Nothing (Right 0) "(Undocumented class)"
-         ,U "WaveLoss" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "drop" (20) Nothing,I (2,2) "outof" (40) Nothing,I (3,3) "mode" (1) Nothing ] Nothing (Left 1) "Lose bits of your waves"
+         ,U "WaveLoss" [ AR, KR ] AR Nothing [ I (0,0) "in" (0) Nothing,I (1,1) "drop" (20) Nothing,I (2,2) "outof" (40) Nothing,I (3,3) "mode" (1) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "WaveTerrain" [ AR ] AR Nothing [ I (0,0) "bufnum" (0) Nothing,I (1,1) "x" (0) Nothing,I (2,2) "y" (0) Nothing,I (3,3) "xsize" (100) Nothing,I (4,4) "ysize" (100) Nothing ] Nothing (Left 1) "(Undocumented class)"
-         ,U "WaveletDaub" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "n" (64) Nothing,I (2,2) "which" (0) Nothing ] Nothing (Left 1) "decomposition into Daub4 wavelets, and reconstruction"
+         ,U "WaveletDaub" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "n" (64) Nothing,I (2,2) "which" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "WeaklyNonlinear" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "reset" (0) Nothing,I (2,2) "ratex" (1) Nothing,I (3,3) "ratey" (1) Nothing,I (4,4) "freq" (440) Nothing,I (5,5) "initx" (0) Nothing,I (6,6) "inity" (0) Nothing,I (7,7) "alpha" (0) Nothing,I (8,8) "xexponent" (0) Nothing,I (9,9) "beta" (0) Nothing,I (10,10) "yexponent" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "WeaklyNonlinear2" [ AR ] AR Nothing [ I (0,0) "input" (0) Nothing,I (1,1) "reset" (0) Nothing,I (2,2) "ratex" (1) Nothing,I (3,3) "ratey" (1) Nothing,I (4,4) "freq" (440) Nothing,I (5,5) "initx" (0) Nothing,I (6,6) "inity" (0) Nothing,I (7,7) "alpha" (0) Nothing,I (8,8) "xexponent" (0) Nothing,I (9,9) "beta" (0) Nothing,I (10,10) "yexponent" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "WhiteNoise" [ AR, KR ] AR Nothing [  ] Nothing (Left 1) "White noise."
          ,U "WidthFirstUGen" [  ] AR Nothing [ I (0,0) "maxSize" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "Wrap" [ AR, KR, IR ] AR (Just [ 0 ]) [ I (0,0) "in" (0) Nothing,I (1,1) "lo" (0) Nothing,I (2,2) "hi" (1) Nothing ] Nothing (Left 1) "Wrap a signal outside given thresholds."
          ,U "WrapIndex" [ AR, KR ] AR (Just [ 0 ]) [ I (0,0) "bufnum" (0) Nothing,I (1,1) "in" (0) Nothing ] Nothing (Left 1) "Index into a table with a signal."
-         ,U "WrapSummer" [ AR, KR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "step" (1) Nothing,I (2,2) "min" (0) Nothing,I (3,3) "max" (1) Nothing,I (4,4) "reset" (0) Nothing,I (5,5) "resetval" (0) Nothing ] Nothing (Left 1) "Pulse counter with floating point steps"
+         ,U "WrapSummer" [ AR, KR ] AR Nothing [ I (0,0) "trig" (0) Nothing,I (1,1) "step" (1) Nothing,I (2,2) "min" (0) Nothing,I (3,3) "max" (1) Nothing,I (4,4) "reset" (0) Nothing,I (5,5) "resetval" (0) Nothing ] Nothing (Left 1) "(Undocumented class)"
          ,U "XFade2" [ AR, KR ] AR Nothing [ I (0,0) "inA" (0) Nothing,I (1,1) "inB" (0) Nothing,I (2,2) "pan" (0) Nothing,I (3,3) "level" (1) Nothing ] Nothing (Left 1) "Equal power two channel cross fade."
          ,U "XLine" [ AR, KR ] AR Nothing [ I (0,0) "start" (1) Nothing,I (1,1) "end" (2) Nothing,I (2,2) "dur" (1) Nothing,I (3,3) "doneAction" (0) (Just "DoneAction") ] Nothing (Left 1) "Exponential line generator."
          ,U "XOut" [ AR, KR ] AR Nothing [ I (0,0) "bus" (0) Nothing,I (1,1) "xfade" (0) Nothing,I (2,2) "channelsArray" (0) Nothing ] (Just 2) (Left 1) "Send signal to a bus, crossfading with previous contents."
diff --git a/hsc3-db.cabal b/hsc3-db.cabal
--- a/hsc3-db.cabal
+++ b/hsc3-db.cabal
@@ -1,10 +1,10 @@
 Name:              hsc3-db
-Version:           0.13
+Version:           0.14
 Synopsis:          Haskell SuperCollider Unit Generator Database
 Description:       Database of SuperCollider Unit Generators
 License:           GPL
 Category:          Sound
-Copyright:         (c) Rohan Drape, 2006-2012
+Copyright:         (c) Rohan Drape, 2006-2013
 Author:            Rohan Drape
 Maintainer:        rd@slavepianos.org
 Stability:         Experimental
@@ -20,7 +20,7 @@
 
 Library
   Build-Depends:   base == 4.*,
-                   hsc3 == 0.13.*
+                   hsc3 == 0.14.*
   GHC-Options:     -Wall -fwarn-tabs
   Exposed-modules: Sound.SC3.UGen.DB
                    Sound.SC3.UGen.DB.Bindings
diff --git a/sclang/UGenDB.sc b/sclang/UGenDB.sc
--- a/sclang/UGenDB.sc
+++ b/sclang/UGenDB.sc
@@ -6,7 +6,7 @@
 			,'FFTSubbandFlatness','FFTSubbandFlux','FFTSubbandPower','Foa'
 			,'JoshMultiChannelGrain'
 			,'LADSPA','LocalBuf','LocalIn'
-			,'MulAdd'
+			,'MatchingP','MatchingPResynth','MulAdd'
 			,'NearestN'
 			,'OnsetsDS','OutputProxy'
 			,'PackFFT','Panner','Poll'
