pygments.rb 1.1.2 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (383) hide show
  1. checksums.yaml +5 -5
  2. data/.github/dependabot.yml +13 -0
  3. data/.github/workflows/ci.yml +28 -0
  4. data/.github/workflows/release.yml +24 -0
  5. data/.gitignore +5 -5
  6. data/CHANGELOG.adoc +128 -0
  7. data/Gemfile +3 -1
  8. data/LICENSE +1 -1
  9. data/README.adoc +160 -0
  10. data/Rakefile +13 -19
  11. data/bench.rb +8 -7
  12. data/cache-lexers.rb +3 -2
  13. data/lexers +0 -0
  14. data/lib/pygments.rb +10 -11
  15. data/lib/pygments/lexer.rb +5 -5
  16. data/lib/pygments/mentos.py +23 -110
  17. data/lib/pygments/popen.rb +148 -229
  18. data/lib/pygments/version.rb +2 -2
  19. data/pygments.rb.gemspec +12 -11
  20. data/test/test_pygments.rb +46 -104
  21. data/vendor/pygments-main/{AUTHORS → Pygments-2.7.3.dist-info/AUTHORS} +23 -3
  22. data/vendor/pygments-main/Pygments-2.7.3.dist-info/INSTALLER +1 -0
  23. data/vendor/pygments-main/{LICENSE → Pygments-2.7.3.dist-info/LICENSE} +1 -1
  24. data/vendor/pygments-main/Pygments-2.7.3.dist-info/METADATA +49 -0
  25. data/vendor/pygments-main/Pygments-2.7.3.dist-info/RECORD +482 -0
  26. data/vendor/pygments-main/Pygments-2.7.3.dist-info/REQUESTED +0 -0
  27. data/vendor/pygments-main/Pygments-2.7.3.dist-info/WHEEL +5 -0
  28. data/vendor/pygments-main/Pygments-2.7.3.dist-info/entry_points.txt +3 -0
  29. data/vendor/pygments-main/Pygments-2.7.3.dist-info/top_level.txt +1 -0
  30. data/vendor/pygments-main/bin/pygmentize +8 -0
  31. data/vendor/pygments-main/pygments/__init__.py +6 -11
  32. data/vendor/pygments-main/pygments/__main__.py +18 -0
  33. data/vendor/pygments-main/pygments/cmdline.py +94 -41
  34. data/vendor/pygments-main/pygments/console.py +6 -9
  35. data/vendor/pygments-main/pygments/filter.py +4 -6
  36. data/vendor/pygments-main/pygments/filters/__init__.py +609 -21
  37. data/vendor/pygments-main/pygments/formatter.py +4 -4
  38. data/vendor/pygments-main/pygments/formatters/__init__.py +42 -6
  39. data/vendor/pygments-main/pygments/formatters/_mapping.py +1 -3
  40. data/vendor/pygments-main/pygments/formatters/bbcode.py +1 -1
  41. data/vendor/pygments-main/pygments/formatters/html.py +223 -135
  42. data/vendor/pygments-main/pygments/formatters/img.py +102 -38
  43. data/vendor/pygments-main/pygments/formatters/irc.py +39 -39
  44. data/vendor/pygments-main/pygments/formatters/latex.py +56 -26
  45. data/vendor/pygments-main/pygments/formatters/other.py +12 -8
  46. data/vendor/pygments-main/pygments/formatters/rtf.py +29 -29
  47. data/vendor/pygments-main/pygments/formatters/svg.py +38 -4
  48. data/vendor/pygments-main/pygments/formatters/terminal.py +25 -31
  49. data/vendor/pygments-main/pygments/formatters/terminal256.py +22 -12
  50. data/vendor/pygments-main/pygments/lexer.py +41 -39
  51. data/vendor/pygments-main/pygments/lexers/__init__.py +62 -15
  52. data/vendor/pygments-main/pygments/lexers/_asy_builtins.py +5 -5
  53. data/vendor/pygments-main/pygments/lexers/_cl_builtins.py +15 -15
  54. data/vendor/pygments-main/pygments/lexers/_cocoa_builtins.py +11 -12
  55. data/vendor/pygments-main/pygments/lexers/_csound_builtins.py +1717 -1338
  56. data/vendor/pygments-main/pygments/lexers/_lasso_builtins.py +8 -1
  57. data/vendor/pygments-main/pygments/lexers/_lua_builtins.py +2 -4
  58. data/vendor/pygments-main/pygments/lexers/_mapping.py +79 -33
  59. data/vendor/pygments-main/pygments/lexers/_mql_builtins.py +2 -2
  60. data/vendor/pygments-main/pygments/lexers/_mysql_builtins.py +1282 -0
  61. data/vendor/pygments-main/pygments/lexers/_openedge_builtins.py +1 -1
  62. data/vendor/pygments-main/pygments/lexers/_php_builtins.py +17 -20
  63. data/vendor/pygments-main/pygments/lexers/_postgres_builtins.py +73 -16
  64. data/vendor/pygments-main/pygments/lexers/_scilab_builtins.py +2 -2
  65. data/vendor/pygments-main/pygments/lexers/_sourcemod_builtins.py +1 -3
  66. data/vendor/pygments-main/pygments/lexers/_stan_builtins.py +151 -125
  67. data/vendor/pygments-main/pygments/lexers/_stata_builtins.py +6 -4
  68. data/vendor/pygments-main/pygments/lexers/_tsql_builtins.py +1 -1
  69. data/vendor/pygments-main/pygments/lexers/_usd_builtins.py +113 -0
  70. data/vendor/pygments-main/pygments/lexers/_vbscript_builtins.py +280 -0
  71. data/vendor/pygments-main/pygments/lexers/_vim_builtins.py +1 -1
  72. data/vendor/pygments-main/pygments/lexers/actionscript.py +8 -3
  73. data/vendor/pygments-main/pygments/lexers/agile.py +1 -1
  74. data/vendor/pygments-main/pygments/lexers/algebra.py +20 -1
  75. data/vendor/pygments-main/pygments/lexers/ambient.py +1 -1
  76. data/vendor/pygments-main/pygments/lexers/ampl.py +3 -3
  77. data/vendor/pygments-main/pygments/lexers/apl.py +15 -15
  78. data/vendor/pygments-main/pygments/lexers/archetype.py +3 -3
  79. data/vendor/pygments-main/pygments/lexers/arrow.py +117 -0
  80. data/vendor/pygments-main/pygments/lexers/asm.py +445 -70
  81. data/vendor/pygments-main/pygments/lexers/automation.py +3 -3
  82. data/vendor/pygments-main/pygments/lexers/bare.py +104 -0
  83. data/vendor/pygments-main/pygments/lexers/basic.py +166 -4
  84. data/vendor/pygments-main/pygments/lexers/bibtex.py +13 -9
  85. data/vendor/pygments-main/pygments/lexers/boa.py +102 -0
  86. data/vendor/pygments-main/pygments/lexers/business.py +69 -36
  87. data/vendor/pygments-main/pygments/lexers/c_cpp.py +137 -45
  88. data/vendor/pygments-main/pygments/lexers/c_like.py +68 -43
  89. data/vendor/pygments-main/pygments/lexers/capnproto.py +20 -21
  90. data/vendor/pygments-main/pygments/lexers/chapel.py +25 -14
  91. data/vendor/pygments-main/pygments/lexers/clean.py +135 -244
  92. data/vendor/pygments-main/pygments/lexers/compiled.py +1 -1
  93. data/vendor/pygments-main/pygments/lexers/configs.py +188 -37
  94. data/vendor/pygments-main/pygments/lexers/console.py +1 -1
  95. data/vendor/pygments-main/pygments/lexers/crystal.py +31 -23
  96. data/vendor/pygments-main/pygments/lexers/csound.py +288 -187
  97. data/vendor/pygments-main/pygments/lexers/css.py +18 -16
  98. data/vendor/pygments-main/pygments/lexers/d.py +10 -5
  99. data/vendor/pygments-main/pygments/lexers/dalvik.py +1 -1
  100. data/vendor/pygments-main/pygments/lexers/data.py +240 -97
  101. data/vendor/pygments-main/pygments/lexers/devicetree.py +109 -0
  102. data/vendor/pygments-main/pygments/lexers/diff.py +4 -4
  103. data/vendor/pygments-main/pygments/lexers/dotnet.py +40 -24
  104. data/vendor/pygments-main/pygments/lexers/dsls.py +147 -65
  105. data/vendor/pygments-main/pygments/lexers/dylan.py +16 -18
  106. data/vendor/pygments-main/pygments/lexers/ecl.py +16 -2
  107. data/vendor/pygments-main/pygments/lexers/eiffel.py +1 -1
  108. data/vendor/pygments-main/pygments/lexers/elm.py +5 -5
  109. data/vendor/pygments-main/pygments/lexers/email.py +151 -0
  110. data/vendor/pygments-main/pygments/lexers/erlang.py +29 -32
  111. data/vendor/pygments-main/pygments/lexers/esoteric.py +54 -25
  112. data/vendor/pygments-main/pygments/lexers/ezhil.py +24 -15
  113. data/vendor/pygments-main/pygments/lexers/factor.py +1 -1
  114. data/vendor/pygments-main/pygments/lexers/fantom.py +1 -1
  115. data/vendor/pygments-main/pygments/lexers/felix.py +1 -1
  116. data/vendor/pygments-main/pygments/lexers/floscript.py +83 -0
  117. data/vendor/pygments-main/pygments/lexers/forth.py +41 -40
  118. data/vendor/pygments-main/pygments/lexers/fortran.py +5 -4
  119. data/vendor/pygments-main/pygments/lexers/foxpro.py +2 -2
  120. data/vendor/pygments-main/pygments/lexers/freefem.py +898 -0
  121. data/vendor/pygments-main/pygments/lexers/functional.py +1 -1
  122. data/vendor/pygments-main/pygments/lexers/gdscript.py +346 -0
  123. data/vendor/pygments-main/pygments/lexers/go.py +1 -1
  124. data/vendor/pygments-main/pygments/lexers/grammar_notation.py +63 -6
  125. data/vendor/pygments-main/pygments/lexers/graph.py +14 -9
  126. data/vendor/pygments-main/pygments/lexers/graphics.py +272 -25
  127. data/vendor/pygments-main/pygments/lexers/haskell.py +52 -22
  128. data/vendor/pygments-main/pygments/lexers/haxe.py +6 -6
  129. data/vendor/pygments-main/pygments/lexers/hdl.py +176 -86
  130. data/vendor/pygments-main/pygments/lexers/hexdump.py +18 -12
  131. data/vendor/pygments-main/pygments/lexers/html.py +31 -19
  132. data/vendor/pygments-main/pygments/lexers/idl.py +20 -9
  133. data/vendor/pygments-main/pygments/lexers/igor.py +244 -112
  134. data/vendor/pygments-main/pygments/lexers/inferno.py +2 -2
  135. data/vendor/pygments-main/pygments/lexers/installers.py +1 -1
  136. data/vendor/pygments-main/pygments/lexers/int_fiction.py +40 -15
  137. data/vendor/pygments-main/pygments/lexers/iolang.py +2 -2
  138. data/vendor/pygments-main/pygments/lexers/j.py +3 -3
  139. data/vendor/pygments-main/pygments/lexers/javascript.py +100 -66
  140. data/vendor/pygments-main/pygments/lexers/julia.py +46 -48
  141. data/vendor/pygments-main/pygments/lexers/jvm.py +265 -165
  142. data/vendor/pygments-main/pygments/lexers/lisp.py +882 -804
  143. data/vendor/pygments-main/pygments/lexers/make.py +10 -6
  144. data/vendor/pygments-main/pygments/lexers/markup.py +213 -43
  145. data/vendor/pygments-main/pygments/lexers/math.py +1 -1
  146. data/vendor/pygments-main/pygments/lexers/matlab.py +98 -41
  147. data/vendor/pygments-main/pygments/lexers/mime.py +226 -0
  148. data/vendor/pygments-main/pygments/lexers/ml.py +198 -9
  149. data/vendor/pygments-main/pygments/lexers/modeling.py +26 -18
  150. data/vendor/pygments-main/pygments/lexers/modula2.py +25 -6
  151. data/vendor/pygments-main/pygments/lexers/monte.py +4 -3
  152. data/vendor/pygments-main/pygments/lexers/mosel.py +448 -0
  153. data/vendor/pygments-main/pygments/lexers/ncl.py +85 -244
  154. data/vendor/pygments-main/pygments/lexers/nimrod.py +4 -4
  155. data/vendor/pygments-main/pygments/lexers/nit.py +1 -1
  156. data/vendor/pygments-main/pygments/lexers/nix.py +1 -1
  157. data/vendor/pygments-main/pygments/lexers/oberon.py +17 -1
  158. data/vendor/pygments-main/pygments/lexers/objective.py +16 -16
  159. data/vendor/pygments-main/pygments/lexers/ooc.py +1 -1
  160. data/vendor/pygments-main/pygments/lexers/other.py +1 -1
  161. data/vendor/pygments-main/pygments/lexers/parasail.py +1 -1
  162. data/vendor/pygments-main/pygments/lexers/parsers.py +23 -58
  163. data/vendor/pygments-main/pygments/lexers/pascal.py +23 -23
  164. data/vendor/pygments-main/pygments/lexers/pawn.py +30 -24
  165. data/vendor/pygments-main/pygments/lexers/perl.py +276 -160
  166. data/vendor/pygments-main/pygments/lexers/php.py +64 -10
  167. data/vendor/pygments-main/pygments/lexers/pointless.py +71 -0
  168. data/vendor/pygments-main/pygments/lexers/pony.py +94 -0
  169. data/vendor/pygments-main/pygments/lexers/praat.py +38 -30
  170. data/vendor/pygments-main/pygments/lexers/prolog.py +36 -36
  171. data/vendor/pygments-main/pygments/lexers/promql.py +183 -0
  172. data/vendor/pygments-main/pygments/lexers/python.py +439 -226
  173. data/vendor/pygments-main/pygments/lexers/qvt.py +6 -6
  174. data/vendor/pygments-main/pygments/lexers/r.py +13 -275
  175. data/vendor/pygments-main/pygments/lexers/rdf.py +232 -39
  176. data/vendor/pygments-main/pygments/lexers/rebol.py +8 -8
  177. data/vendor/pygments-main/pygments/lexers/resource.py +2 -2
  178. data/vendor/pygments-main/pygments/lexers/ride.py +139 -0
  179. data/vendor/pygments-main/pygments/lexers/rnc.py +1 -1
  180. data/vendor/pygments-main/pygments/lexers/roboconf.py +1 -1
  181. data/vendor/pygments-main/pygments/lexers/robotframework.py +23 -31
  182. data/vendor/pygments-main/pygments/lexers/ruby.py +22 -24
  183. data/vendor/pygments-main/pygments/lexers/rust.py +86 -71
  184. data/vendor/pygments-main/pygments/lexers/sas.py +7 -7
  185. data/vendor/pygments-main/pygments/lexers/scdoc.py +83 -0
  186. data/vendor/pygments-main/pygments/lexers/scripting.py +75 -13
  187. data/vendor/pygments-main/pygments/lexers/sgf.py +61 -0
  188. data/vendor/pygments-main/pygments/lexers/shell.py +175 -51
  189. data/vendor/pygments-main/pygments/lexers/sieve.py +69 -0
  190. data/vendor/pygments-main/pygments/lexers/slash.py +185 -0
  191. data/vendor/pygments-main/pygments/lexers/smalltalk.py +2 -2
  192. data/vendor/pygments-main/pygments/lexers/smv.py +30 -26
  193. data/vendor/pygments-main/pygments/lexers/snobol.py +1 -1
  194. data/vendor/pygments-main/pygments/lexers/solidity.py +92 -0
  195. data/vendor/pygments-main/pygments/lexers/special.py +5 -3
  196. data/vendor/pygments-main/pygments/lexers/sql.py +333 -177
  197. data/vendor/pygments-main/pygments/lexers/stata.py +107 -42
  198. data/vendor/pygments-main/pygments/lexers/supercollider.py +6 -1
  199. data/vendor/pygments-main/pygments/lexers/tcl.py +1 -1
  200. data/vendor/pygments-main/pygments/lexers/templates.py +144 -132
  201. data/vendor/pygments-main/pygments/lexers/teraterm.py +335 -0
  202. data/vendor/pygments-main/pygments/lexers/testing.py +6 -6
  203. data/vendor/pygments-main/pygments/lexers/text.py +2 -1
  204. data/vendor/pygments-main/pygments/lexers/textedit.py +4 -4
  205. data/vendor/pygments-main/pygments/lexers/textfmts.py +146 -13
  206. data/vendor/pygments-main/pygments/lexers/theorem.py +69 -53
  207. data/vendor/pygments-main/pygments/lexers/tnt.py +263 -0
  208. data/vendor/pygments-main/pygments/lexers/trafficscript.py +1 -1
  209. data/vendor/pygments-main/pygments/lexers/typoscript.py +8 -14
  210. data/vendor/pygments-main/pygments/lexers/unicon.py +412 -0
  211. data/vendor/pygments-main/pygments/lexers/urbi.py +14 -1
  212. data/vendor/pygments-main/pygments/lexers/usd.py +90 -0
  213. data/vendor/pygments-main/pygments/lexers/varnish.py +5 -5
  214. data/vendor/pygments-main/pygments/lexers/verification.py +15 -12
  215. data/vendor/pygments-main/pygments/lexers/web.py +1 -1
  216. data/vendor/pygments-main/pygments/lexers/webidl.py +299 -0
  217. data/vendor/pygments-main/pygments/lexers/webmisc.py +50 -38
  218. data/vendor/pygments-main/pygments/lexers/whiley.py +11 -12
  219. data/vendor/pygments-main/pygments/lexers/x10.py +1 -1
  220. data/vendor/pygments-main/pygments/lexers/xorg.py +37 -0
  221. data/vendor/pygments-main/pygments/lexers/yang.py +104 -0
  222. data/vendor/pygments-main/pygments/lexers/zig.py +124 -0
  223. data/vendor/pygments-main/pygments/modeline.py +6 -5
  224. data/vendor/pygments-main/pygments/plugin.py +14 -18
  225. data/vendor/pygments-main/pygments/regexopt.py +1 -1
  226. data/vendor/pygments-main/pygments/scanner.py +2 -2
  227. data/vendor/pygments-main/pygments/sphinxext.py +2 -4
  228. data/vendor/pygments-main/pygments/style.py +61 -24
  229. data/vendor/pygments-main/pygments/styles/__init__.py +13 -5
  230. data/vendor/pygments-main/pygments/styles/abap.py +29 -0
  231. data/vendor/pygments-main/pygments/styles/algol.py +1 -1
  232. data/vendor/pygments-main/pygments/styles/algol_nu.py +1 -1
  233. data/vendor/pygments-main/pygments/styles/arduino.py +2 -2
  234. data/vendor/pygments-main/pygments/styles/autumn.py +1 -1
  235. data/vendor/pygments-main/pygments/styles/borland.py +1 -1
  236. data/vendor/pygments-main/pygments/styles/bw.py +1 -1
  237. data/vendor/pygments-main/pygments/styles/colorful.py +1 -1
  238. data/vendor/pygments-main/pygments/styles/default.py +1 -1
  239. data/vendor/pygments-main/pygments/styles/emacs.py +1 -1
  240. data/vendor/pygments-main/pygments/styles/friendly.py +1 -1
  241. data/vendor/pygments-main/pygments/styles/fruity.py +1 -1
  242. data/vendor/pygments-main/pygments/styles/igor.py +1 -1
  243. data/vendor/pygments-main/pygments/styles/inkpot.py +67 -0
  244. data/vendor/pygments-main/pygments/styles/lovelace.py +1 -1
  245. data/vendor/pygments-main/pygments/styles/manni.py +1 -1
  246. data/vendor/pygments-main/pygments/styles/monokai.py +4 -3
  247. data/vendor/pygments-main/pygments/styles/murphy.py +1 -1
  248. data/vendor/pygments-main/pygments/styles/native.py +1 -1
  249. data/vendor/pygments-main/pygments/styles/paraiso_dark.py +1 -1
  250. data/vendor/pygments-main/pygments/styles/paraiso_light.py +1 -1
  251. data/vendor/pygments-main/pygments/styles/pastie.py +1 -1
  252. data/vendor/pygments-main/pygments/styles/perldoc.py +1 -1
  253. data/vendor/pygments-main/pygments/styles/rainbow_dash.py +89 -0
  254. data/vendor/pygments-main/pygments/styles/rrt.py +1 -1
  255. data/vendor/pygments-main/pygments/styles/sas.py +3 -0
  256. data/vendor/pygments-main/pygments/styles/solarized.py +134 -0
  257. data/vendor/pygments-main/pygments/styles/stata_dark.py +41 -0
  258. data/vendor/pygments-main/pygments/styles/stata_light.py +39 -0
  259. data/vendor/pygments-main/pygments/styles/tango.py +1 -1
  260. data/vendor/pygments-main/pygments/styles/trac.py +1 -1
  261. data/vendor/pygments-main/pygments/styles/vim.py +1 -1
  262. data/vendor/pygments-main/pygments/styles/vs.py +1 -1
  263. data/vendor/pygments-main/pygments/styles/xcode.py +1 -1
  264. data/vendor/pygments-main/pygments/token.py +1 -1
  265. data/vendor/pygments-main/pygments/unistring.py +47 -108
  266. data/vendor/pygments-main/pygments/util.py +19 -95
  267. metadata +71 -137
  268. data/CHANGELOG.md +0 -98
  269. data/README.md +0 -121
  270. data/circle.yml +0 -20
  271. data/test/test_data.c +0 -2581
  272. data/test/test_data.py +0 -514
  273. data/test/test_data_generated +0 -2582
  274. data/vendor/custom_lexers/github.py +0 -565
  275. data/vendor/pygments-main/CHANGES +0 -1163
  276. data/vendor/pygments-main/MANIFEST.in +0 -6
  277. data/vendor/pygments-main/Makefile +0 -65
  278. data/vendor/pygments-main/README.rst +0 -39
  279. data/vendor/pygments-main/REVISION +0 -1
  280. data/vendor/pygments-main/TODO +0 -12
  281. data/vendor/pygments-main/doc/Makefile +0 -153
  282. data/vendor/pygments-main/doc/_static/favicon.ico +0 -0
  283. data/vendor/pygments-main/doc/_static/logo_new.png +0 -0
  284. data/vendor/pygments-main/doc/_static/logo_only.png +0 -0
  285. data/vendor/pygments-main/doc/_templates/docssidebar.html +0 -3
  286. data/vendor/pygments-main/doc/_templates/indexsidebar.html +0 -25
  287. data/vendor/pygments-main/doc/_themes/pygments14/layout.html +0 -98
  288. data/vendor/pygments-main/doc/_themes/pygments14/static/bodybg.png +0 -0
  289. data/vendor/pygments-main/doc/_themes/pygments14/static/docbg.png +0 -0
  290. data/vendor/pygments-main/doc/_themes/pygments14/static/listitem.png +0 -0
  291. data/vendor/pygments-main/doc/_themes/pygments14/static/logo.png +0 -0
  292. data/vendor/pygments-main/doc/_themes/pygments14/static/pocoo.png +0 -0
  293. data/vendor/pygments-main/doc/_themes/pygments14/static/pygments14.css_t +0 -401
  294. data/vendor/pygments-main/doc/_themes/pygments14/theme.conf +0 -15
  295. data/vendor/pygments-main/doc/conf.py +0 -241
  296. data/vendor/pygments-main/doc/docs/api.rst +0 -331
  297. data/vendor/pygments-main/doc/docs/authors.rst +0 -4
  298. data/vendor/pygments-main/doc/docs/changelog.rst +0 -1
  299. data/vendor/pygments-main/doc/docs/cmdline.rst +0 -149
  300. data/vendor/pygments-main/doc/docs/filterdevelopment.rst +0 -71
  301. data/vendor/pygments-main/doc/docs/filters.rst +0 -41
  302. data/vendor/pygments-main/doc/docs/formatterdevelopment.rst +0 -169
  303. data/vendor/pygments-main/doc/docs/formatters.rst +0 -48
  304. data/vendor/pygments-main/doc/docs/index.rst +0 -66
  305. data/vendor/pygments-main/doc/docs/integrate.rst +0 -40
  306. data/vendor/pygments-main/doc/docs/java.rst +0 -70
  307. data/vendor/pygments-main/doc/docs/lexerdevelopment.rst +0 -689
  308. data/vendor/pygments-main/doc/docs/lexers.rst +0 -69
  309. data/vendor/pygments-main/doc/docs/moinmoin.rst +0 -39
  310. data/vendor/pygments-main/doc/docs/plugins.rst +0 -93
  311. data/vendor/pygments-main/doc/docs/quickstart.rst +0 -205
  312. data/vendor/pygments-main/doc/docs/rstdirective.rst +0 -22
  313. data/vendor/pygments-main/doc/docs/styles.rst +0 -201
  314. data/vendor/pygments-main/doc/docs/tokens.rst +0 -372
  315. data/vendor/pygments-main/doc/docs/unicode.rst +0 -58
  316. data/vendor/pygments-main/doc/download.rst +0 -41
  317. data/vendor/pygments-main/doc/faq.rst +0 -139
  318. data/vendor/pygments-main/doc/index.rst +0 -54
  319. data/vendor/pygments-main/doc/languages.rst +0 -154
  320. data/vendor/pygments-main/doc/make.bat +0 -190
  321. data/vendor/pygments-main/doc/pygmentize.1 +0 -94
  322. data/vendor/pygments-main/external/autopygmentize +0 -84
  323. data/vendor/pygments-main/external/lasso-builtins-generator-9.lasso +0 -162
  324. data/vendor/pygments-main/external/markdown-processor.py +0 -67
  325. data/vendor/pygments-main/external/moin-parser.py +0 -112
  326. data/vendor/pygments-main/external/pygments.bashcomp +0 -38
  327. data/vendor/pygments-main/external/rst-directive.py +0 -82
  328. data/vendor/pygments-main/pygmentize +0 -8
  329. data/vendor/pygments-main/pygments/lexers/github.py +0 -565
  330. data/vendor/pygments-main/pygments/styles/stata.py +0 -37
  331. data/vendor/pygments-main/requirements.txt +0 -5
  332. data/vendor/pygments-main/scripts/check_sources.py +0 -211
  333. data/vendor/pygments-main/scripts/debug_lexer.py +0 -246
  334. data/vendor/pygments-main/scripts/detect_missing_analyse_text.py +0 -33
  335. data/vendor/pygments-main/scripts/epydoc.css +0 -280
  336. data/vendor/pygments-main/scripts/find_error.py +0 -1
  337. data/vendor/pygments-main/scripts/get_vimkw.py +0 -74
  338. data/vendor/pygments-main/scripts/pylintrc +0 -301
  339. data/vendor/pygments-main/scripts/vim2pygments.py +0 -935
  340. data/vendor/pygments-main/setup.cfg +0 -10
  341. data/vendor/pygments-main/setup.py +0 -77
  342. data/vendor/pygments-main/tox.ini +0 -7
  343. data/vendor/simplejson/.gitignore +0 -10
  344. data/vendor/simplejson/.travis.yml +0 -5
  345. data/vendor/simplejson/CHANGES.txt +0 -291
  346. data/vendor/simplejson/LICENSE.txt +0 -19
  347. data/vendor/simplejson/MANIFEST.in +0 -5
  348. data/vendor/simplejson/README.rst +0 -19
  349. data/vendor/simplejson/conf.py +0 -179
  350. data/vendor/simplejson/index.rst +0 -628
  351. data/vendor/simplejson/scripts/make_docs.py +0 -18
  352. data/vendor/simplejson/setup.py +0 -104
  353. data/vendor/simplejson/simplejson/__init__.py +0 -510
  354. data/vendor/simplejson/simplejson/_speedups.c +0 -2745
  355. data/vendor/simplejson/simplejson/decoder.py +0 -425
  356. data/vendor/simplejson/simplejson/encoder.py +0 -567
  357. data/vendor/simplejson/simplejson/ordered_dict.py +0 -119
  358. data/vendor/simplejson/simplejson/scanner.py +0 -77
  359. data/vendor/simplejson/simplejson/tests/__init__.py +0 -67
  360. data/vendor/simplejson/simplejson/tests/test_bigint_as_string.py +0 -55
  361. data/vendor/simplejson/simplejson/tests/test_check_circular.py +0 -30
  362. data/vendor/simplejson/simplejson/tests/test_decimal.py +0 -66
  363. data/vendor/simplejson/simplejson/tests/test_decode.py +0 -83
  364. data/vendor/simplejson/simplejson/tests/test_default.py +0 -9
  365. data/vendor/simplejson/simplejson/tests/test_dump.py +0 -67
  366. data/vendor/simplejson/simplejson/tests/test_encode_basestring_ascii.py +0 -46
  367. data/vendor/simplejson/simplejson/tests/test_encode_for_html.py +0 -32
  368. data/vendor/simplejson/simplejson/tests/test_errors.py +0 -34
  369. data/vendor/simplejson/simplejson/tests/test_fail.py +0 -91
  370. data/vendor/simplejson/simplejson/tests/test_float.py +0 -19
  371. data/vendor/simplejson/simplejson/tests/test_indent.py +0 -86
  372. data/vendor/simplejson/simplejson/tests/test_item_sort_key.py +0 -20
  373. data/vendor/simplejson/simplejson/tests/test_namedtuple.py +0 -121
  374. data/vendor/simplejson/simplejson/tests/test_pass1.py +0 -76
  375. data/vendor/simplejson/simplejson/tests/test_pass2.py +0 -14
  376. data/vendor/simplejson/simplejson/tests/test_pass3.py +0 -20
  377. data/vendor/simplejson/simplejson/tests/test_recursion.py +0 -67
  378. data/vendor/simplejson/simplejson/tests/test_scanstring.py +0 -117
  379. data/vendor/simplejson/simplejson/tests/test_separators.py +0 -42
  380. data/vendor/simplejson/simplejson/tests/test_speedups.py +0 -20
  381. data/vendor/simplejson/simplejson/tests/test_tuple.py +0 -49
  382. data/vendor/simplejson/simplejson/tests/test_unicode.py +0 -109
  383. data/vendor/simplejson/simplejson/tool.py +0 -39
@@ -5,11 +5,11 @@
5
5
 
6
6
  ANSI Common Lisp builtins.
7
7
 
8
- :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
8
+ :copyright: Copyright 2006-2020 by the Pygments team, see AUTHORS.
9
9
  :license: BSD, see LICENSE for details.
10
10
  """
11
11
 
12
- BUILTIN_FUNCTIONS = set(( # 638 functions
12
+ BUILTIN_FUNCTIONS = { # 638 functions
13
13
  '<', '<=', '=', '>', '>=', '-', '/', '/=', '*', '+', '1-', '1+',
14
14
  'abort', 'abs', 'acons', 'acos', 'acosh', 'add-method', 'adjoin',
15
15
  'adjustable-array-p', 'adjust-array', 'allocate-instance',
@@ -157,17 +157,17 @@ BUILTIN_FUNCTIONS = set(( # 638 functions
157
157
  'wild-pathname-p', 'write', 'write-byte', 'write-char', 'write-line',
158
158
  'write-sequence', 'write-string', 'write-to-string', 'yes-or-no-p',
159
159
  'y-or-n-p', 'zerop',
160
- ))
160
+ }
161
161
 
162
- SPECIAL_FORMS = set((
162
+ SPECIAL_FORMS = {
163
163
  'block', 'catch', 'declare', 'eval-when', 'flet', 'function', 'go', 'if',
164
164
  'labels', 'lambda', 'let', 'let*', 'load-time-value', 'locally', 'macrolet',
165
165
  'multiple-value-call', 'multiple-value-prog1', 'progn', 'progv', 'quote',
166
166
  'return-from', 'setq', 'symbol-macrolet', 'tagbody', 'the', 'throw',
167
167
  'unwind-protect',
168
- ))
168
+ }
169
169
 
170
- MACROS = set((
170
+ MACROS = {
171
171
  'and', 'assert', 'call-method', 'case', 'ccase', 'check-type', 'cond',
172
172
  'ctypecase', 'decf', 'declaim', 'defclass', 'defconstant', 'defgeneric',
173
173
  'define-compiler-macro', 'define-condition', 'define-method-combination',
@@ -188,19 +188,19 @@ MACROS = set((
188
188
  'with-input-from-string', 'with-open-file', 'with-open-stream',
189
189
  'with-output-to-string', 'with-package-iterator', 'with-simple-restart',
190
190
  'with-slots', 'with-standard-io-syntax',
191
- ))
191
+ }
192
192
 
193
- LAMBDA_LIST_KEYWORDS = set((
193
+ LAMBDA_LIST_KEYWORDS = {
194
194
  '&allow-other-keys', '&aux', '&body', '&environment', '&key', '&optional',
195
195
  '&rest', '&whole',
196
- ))
196
+ }
197
197
 
198
- DECLARATIONS = set((
198
+ DECLARATIONS = {
199
199
  'dynamic-extent', 'ignore', 'optimize', 'ftype', 'inline', 'special',
200
200
  'ignorable', 'notinline', 'type',
201
- ))
201
+ }
202
202
 
203
- BUILTIN_TYPES = set((
203
+ BUILTIN_TYPES = {
204
204
  'atom', 'boolean', 'base-char', 'base-string', 'bignum', 'bit',
205
205
  'compiled-function', 'extended-char', 'fixnum', 'keyword', 'nil',
206
206
  'signed-byte', 'short-float', 'single-float', 'double-float', 'long-float',
@@ -217,9 +217,9 @@ BUILTIN_TYPES = set((
217
217
  'simple-type-error', 'simple-warning', 'stream-error', 'storage-condition',
218
218
  'style-warning', 'type-error', 'unbound-variable', 'unbound-slot',
219
219
  'undefined-function', 'warning',
220
- ))
220
+ }
221
221
 
222
- BUILTIN_CLASSES = set((
222
+ BUILTIN_CLASSES = {
223
223
  'array', 'broadcast-stream', 'bit-vector', 'built-in-class', 'character',
224
224
  'class', 'complex', 'concatenated-stream', 'cons', 'echo-stream',
225
225
  'file-stream', 'float', 'function', 'generic-function', 'hash-table',
@@ -229,4 +229,4 @@ BUILTIN_CLASSES = set((
229
229
  'standard-generic-function', 'standard-method', 'standard-object',
230
230
  'string-stream', 'stream', 'string', 'structure-class', 'structure-object',
231
231
  'symbol', 'synonym-stream', 't', 'two-way-stream', 'vector',
232
- ))
232
+ }
@@ -8,15 +8,13 @@
8
8
 
9
9
  File may be also used as standalone generator for aboves.
10
10
 
11
- :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
11
+ :copyright: Copyright 2006-2020 by the Pygments team, see AUTHORS.
12
12
  :license: BSD, see LICENSE for details.
13
13
  """
14
14
 
15
- from __future__ import print_function
16
-
17
- COCOA_INTERFACES = set(['UITableViewCell', 'HKCorrelationQuery', 'NSURLSessionDataTask', 'PHFetchOptions', 'NSLinguisticTagger', 'NSStream', 'AVAudioUnitDelay', 'GCMotion', 'SKPhysicsWorld', 'NSString', 'CMAttitude', 'AVAudioEnvironmentDistanceAttenuationParameters', 'HKStatisticsCollection', 'SCNPlane', 'CBPeer', 'JSContext', 'SCNTransaction', 'SCNTorus', 'AVAudioUnitEffect', 'UICollectionReusableView', 'MTLSamplerDescriptor', 'AVAssetReaderSampleReferenceOutput', 'AVMutableCompositionTrack', 'GKLeaderboard', 'NSFetchedResultsController', 'SKRange', 'MKTileOverlayRenderer', 'MIDINetworkSession', 'UIVisualEffectView', 'CIWarpKernel', 'PKObject', 'MKRoute', 'MPVolumeView', 'UIPrintInfo', 'SCNText', 'ADClient', 'PKPayment', 'AVMutableAudioMix', 'GLKEffectPropertyLight', 'WKScriptMessage', 'AVMIDIPlayer', 'PHCollectionListChangeRequest', 'UICollectionViewLayout', 'NSMutableCharacterSet', 'SKPaymentTransaction', 'NEOnDemandRuleConnect', 'NSShadow', 'SCNView', 'NSURLSessionConfiguration', 'MTLVertexAttributeDescriptor', 'CBCharacteristic', 'HKQuantityType', 'CKLocationSortDescriptor', 'NEVPNIKEv2SecurityAssociationParameters', 'CMStepCounter', 'NSNetService', 'AVAssetWriterInputMetadataAdaptor', 'UICollectionView', 'UIViewPrintFormatter', 'SCNLevelOfDetail', 'CAShapeLayer', 'MCPeerID', 'MPRatingCommand', 'WKNavigation', 'NSDictionary', 'NSFileVersion', 'CMGyroData', 'AVAudioUnitDistortion', 'CKFetchRecordsOperation', 'SKPhysicsJointSpring', 'SCNHitTestResult', 'AVAudioTime', 'CIFilter', 'UIView', 'SCNConstraint', 'CAPropertyAnimation', 'MKMapItem', 'MPRemoteCommandCenter', 'PKPaymentSummaryItem', 'UICollectionViewFlowLayoutInvalidationContext', 'UIInputViewController', 'PKPass', 'SCNPhysicsBehavior', 'MTLRenderPassColorAttachmentDescriptor', 'MKPolygonRenderer', 'CKNotification', 'JSValue', 'PHCollectionList', 'CLGeocoder', 'NSByteCountFormatter', 'AVCaptureScreenInput', 'MPFeedbackCommand', 'CAAnimation', 'MKOverlayPathView', 'UIActionSheet', 'UIMotionEffectGroup', 'NSLengthFormatter', 'UIBarItem', 'SKProduct', 'AVAssetExportSession', 'NSKeyedUnarchiver', 'NSMutableSet', 'SCNPyramid', 'PHAssetCollection', 'MKMapView', 'HMHomeManager', 'CATransition', 'MTLCompileOptions', 'UIVibrancyEffect', 'CLCircularRegion', 'MKTileOverlay', 'SCNShape', 'ACAccountCredential', 'SKPhysicsJointLimit', 'MKMapSnapshotter', 'AVMediaSelectionGroup', 'NSIndexSet', 'CBPeripheralManager', 'CKRecordZone', 'AVAudioRecorder', 'NSURL', 'CBCentral', 'NSNumber', 'AVAudioOutputNode', 'MTLVertexAttributeDescriptorArray', 'MKETAResponse', 'SKTransition', 'SSReadingList', 'HKSourceQuery', 'UITableViewRowAction', 'UITableView', 'SCNParticlePropertyController', 'AVCaptureStillImageOutput', 'GCController', 'AVAudioPlayerNode', 'AVAudioSessionPortDescription', 'NSHTTPURLResponse', 'NEOnDemandRuleEvaluateConnection', 'SKEffectNode', 'HKQuantity', 'GCControllerElement', 'AVPlayerItemAccessLogEvent', 'SCNBox', 'NSExtensionContext', 'MKOverlayRenderer', 'SCNPhysicsVehicle', 'NSDecimalNumber', 'EKReminder', 'MKPolylineView', 'CKQuery', 'AVAudioMixerNode', 'GKAchievementDescription', 'EKParticipant', 'NSBlockOperation', 'UIActivityItemProvider', 'CLLocation', 'NSBatchUpdateRequest', 'PHContentEditingOutput', 'PHObjectChangeDetails', 'HKWorkoutType', 'MPMoviePlayerController', 'AVAudioFormat', 'HMTrigger', 'MTLRenderPassDepthAttachmentDescriptor', 'SCNRenderer', 'GKScore', 'UISplitViewController', 'HKSource', 'NSURLConnection', 'ABUnknownPersonViewController', 'SCNTechnique', 'UIMenuController', 'NSEvent', 'SKTextureAtlas', 'NSKeyedArchiver', 'GKLeaderboardSet', 'NSSimpleCString', 'AVAudioPCMBuffer', 'CBATTRequest', 'GKMatchRequest', 'AVMetadataObject', 'SKProductsRequest', 'UIAlertView', 'NSIncrementalStore', 'MFMailComposeViewController', 'SCNFloor', 'NSSortDescriptor', 'CKFetchNotificationChangesOperation', 'MPMovieAccessLog', 'NSManagedObjectContext', 'AVAudioUnitGenerator', 'WKBackForwardList', 'SKMutableTexture', 'AVCaptureAudioDataOutput', 'ACAccount', 'AVMetadataItem', 'MPRatingCommandEvent', 'AVCaptureDeviceInputSource', 'CLLocationManager', 'MPRemoteCommand', 'AVCaptureSession', 'UIStepper', 'UIRefreshControl', 'NEEvaluateConnectionRule', 'CKModifyRecordsOperation', 'UICollectionViewTransitionLayout', 'CBCentralManager', 'NSPurgeableData', 'PKShippingMethod', 'SLComposeViewController', 'NSHashTable', 'MKUserTrackingBarButtonItem', 'UILexiconEntry', 'CMMotionActivity', 'SKAction', 'SKShader', 'AVPlayerItemOutput', 'MTLRenderPassAttachmentDescriptor', 'UIDocumentInteractionController', 'UIDynamicItemBehavior', 'NSMutableDictionary', 'UILabel', 'AVCaptureInputPort', 'NSExpression', 'CAInterAppAudioTransportView', 'SKMutablePayment', 'UIImage', 'PHCachingImageManager', 'SCNTransformConstraint', 'HKCorrelationType', 'UIColor', 'SCNGeometrySource', 'AVCaptureAutoExposureBracketedStillImageSettings', 'UIPopoverBackgroundView', 'UIToolbar', 'NSNotificationCenter', 'UICollectionViewLayoutAttributes', 'AVAssetReaderOutputMetadataAdaptor', 'NSEntityMigrationPolicy', 'HMUser', 'NSLocale', 'NSURLSession', 'SCNCamera', 'NSTimeZone', 'UIManagedDocument', 'AVMutableVideoCompositionLayerInstruction', 'AVAssetTrackGroup', 'NSInvocationOperation', 'ALAssetRepresentation', 'AVQueuePlayer', 'HMServiceGroup', 'UIPasteboard', 'PHContentEditingInput', 'NSLayoutManager', 'EKCalendarChooser', 'EKObject', 'CATiledLayer', 'GLKReflectionMapEffect', 'NSManagedObjectID', 'NSEnergyFormatter', 'SLRequest', 'HMCharacteristic', 'AVPlayerLayer', 'MTLRenderPassDescriptor', 'SKPayment', 'NSPointerArray', 'AVAudioMix', 'SCNLight', 'MCAdvertiserAssistant', 'MKMapSnapshotOptions', 'HKCategorySample', 'AVAudioEnvironmentReverbParameters', 'SCNMorpher', 'AVTimedMetadataGroup', 'CBMutableCharacteristic', 'NSFetchRequest', 'UIDevice', 'NSManagedObject', 'NKAssetDownload', 'AVOutputSettingsAssistant', 'SKPhysicsJointPin', 'UITabBar', 'UITextInputMode', 'NSFetchRequestExpression', 'HMActionSet', 'CTSubscriber', 'PHAssetChangeRequest', 'NSPersistentStoreRequest', 'UITabBarController', 'HKQuantitySample', 'AVPlayerItem', 'AVSynchronizedLayer', 'MKDirectionsRequest', 'NSMetadataItem', 'UIPresentationController', 'UINavigationItem', 'PHFetchResultChangeDetails', 'PHImageManager', 'AVCaptureManualExposureBracketedStillImageSettings', 'UIStoryboardPopoverSegue', 'SCNLookAtConstraint', 'UIGravityBehavior', 'UIWindow', 'CBMutableDescriptor', 'NEOnDemandRuleDisconnect', 'UIBezierPath', 'UINavigationController', 'ABPeoplePickerNavigationController', 'EKSource', 'AVAssetWriterInput', 'AVPlayerItemTrack', 'GLKEffectPropertyTexture', 'NSHTTPCookie', 'NSURLResponse', 'SKPaymentQueue', 'NSAssertionHandler', 'MKReverseGeocoder', 'GCControllerAxisInput', 'NSArray', 'NSOrthography', 'NSURLSessionUploadTask', 'NSCharacterSet', 'AVMutableVideoCompositionInstruction', 'AVAssetReaderOutput', 'EAGLContext', 'WKFrameInfo', 'CMPedometer', 'MyClass', 'CKModifyBadgeOperation', 'AVCaptureAudioFileOutput', 'SKEmitterNode', 'NSMachPort', 'AVVideoCompositionCoreAnimationTool', 'PHCollection', 'SCNPhysicsWorld', 'NSURLRequest', 'CMAccelerometerData', 'NSNetServiceBrowser', 'CLFloor', 'AVAsynchronousVideoCompositionRequest', 'SCNGeometry', 'SCNIKConstraint', 'CIKernel', 'CAGradientLayer', 'HKCharacteristicType', 'NSFormatter', 'SCNAction', 'CATransaction', 'CBUUID', 'UIStoryboard', 'MPMediaLibrary', 'UITapGestureRecognizer', 'MPMediaItemArtwork', 'NSURLSessionTask', 'AVAudioUnit', 'MCBrowserViewController', 'UIFontDescriptor', 'NSRelationshipDescription', 'HKSample', 'WKWebView', 'NSMutableAttributedString', 'NSPersistentStoreAsynchronousResult', 'MPNowPlayingInfoCenter', 'MKLocalSearch', 'EAAccessory', 'HKCorrelation', 'CATextLayer', 'NSNotificationQueue', 'UINib', 'GLKTextureLoader', 'HKObjectType', 'NSValue', 'NSMutableIndexSet', 'SKPhysicsContact', 'NSProgress', 'AVPlayerViewController', 'CAScrollLayer', 'GKSavedGame', 'NSTextCheckingResult', 'PHObjectPlaceholder', 'SKConstraint', 'EKEventEditViewController', 'NSEntityDescription', 'NSURLCredentialStorage', 'UIApplication', 'SKDownload', 'SCNNode', 'MKLocalSearchRequest', 'SKScene', 'UISearchDisplayController', 'NEOnDemandRule', 'MTLRenderPassStencilAttachmentDescriptor', 'CAReplicatorLayer', 'UIPrintPageRenderer', 'EKCalendarItem', 'NSUUID', 'EAAccessoryManager', 'NEOnDemandRuleIgnore', 'SKRegion', 'AVAssetResourceLoader', 'EAWiFiUnconfiguredAccessoryBrowser', 'NSUserActivity', 'CTCall', 'UIPrinterPickerController', 'CIVector', 'UINavigationBar', 'UIPanGestureRecognizer', 'MPMediaQuery', 'ABNewPersonViewController', 'CKRecordZoneID', 'HKAnchoredObjectQuery', 'CKFetchRecordZonesOperation', 'UIStoryboardSegue', 'ACAccountType', 'GKSession', 'SKVideoNode', 'PHChange', 'SKReceiptRefreshRequest', 'GCExtendedGamepadSnapshot', 'MPSeekCommandEvent', 'GCExtendedGamepad', 'CAValueFunction', 'SCNCylinder', 'NSNotification', 'NSBatchUpdateResult', 'PKPushCredentials', 'SCNPhysicsSliderJoint', 'AVCaptureDeviceFormat', 'AVPlayerItemErrorLog', 'NSMapTable', 'NSSet', 'CMMotionManager', 'GKVoiceChatService', 'UIPageControl', 'UILexicon', 'MTLArrayType', 'AVAudioUnitReverb', 'MKGeodesicPolyline', 'AVMutableComposition', 'NSLayoutConstraint', 'UIPrinter', 'NSOrderedSet', 'CBAttribute', 'PKPushPayload', 'NSIncrementalStoreNode', 'EKEventStore', 'MPRemoteCommandEvent', 'UISlider', 'UIBlurEffect', 'CKAsset', 'AVCaptureInput', 'AVAudioEngine', 'MTLVertexDescriptor', 'SKPhysicsBody', 'NSOperation', 'PKPaymentPass', 'UIImageAsset', 'MKMapCamera', 'SKProductsResponse', 'GLKEffectPropertyMaterial', 'AVCaptureDevice', 'CTCallCenter', 'CABTMIDILocalPeripheralViewController', 'NEVPNManager', 'HKQuery', 'SCNPhysicsContact', 'CBMutableService', 'AVSampleBufferDisplayLayer', 'SCNSceneSource', 'SKLightNode', 'CKDiscoveredUserInfo', 'NSMutableArray', 'MTLDepthStencilDescriptor', 'MTLArgument', 'NSMassFormatter', 'CIRectangleFeature', 'PKPushRegistry', 'NEVPNConnection', 'MCNearbyServiceBrowser', 'NSOperationQueue', 'MKPolylineRenderer', 'HKWorkout', 'NSValueTransformer', 'UICollectionViewFlowLayout', 'MPChangePlaybackRateCommandEvent', 'NSEntityMapping', 'SKTexture', 'NSMergePolicy', 'UITextInputStringTokenizer', 'NSRecursiveLock', 'AVAsset', 'NSUndoManager', 'AVAudioUnitSampler', 'NSItemProvider', 'SKUniform', 'MPMediaPickerController', 'CKOperation', 'MTLRenderPipelineDescriptor', 'EAWiFiUnconfiguredAccessory', 'NSFileCoordinator', 'SKRequest', 'NSFileHandle', 'NSConditionLock', 'UISegmentedControl', 'NSManagedObjectModel', 'UITabBarItem', 'SCNCone', 'MPMediaItem', 'SCNMaterial', 'EKRecurrenceRule', 'UIEvent', 'UITouch', 'UIPrintInteractionController', 'CMDeviceMotion', 'NEVPNProtocol', 'NSCompoundPredicate', 'HKHealthStore', 'MKMultiPoint', 'HKSampleType', 'UIPrintFormatter', 'AVAudioUnitEQFilterParameters', 'SKView', 'NSConstantString', 'UIPopoverController', 'CKDatabase', 'AVMetadataFaceObject', 'UIAccelerometer', 'EKEventViewController', 'CMAltitudeData', 'MTLStencilDescriptor', 'UISwipeGestureRecognizer', 'NSPort', 'MKCircleRenderer', 'AVCompositionTrack', 'NSAsynchronousFetchRequest', 'NSUbiquitousKeyValueStore', 'NSMetadataQueryResultGroup', 'AVAssetResourceLoadingDataRequest', 'UITableViewHeaderFooterView', 'CKNotificationID', 'AVAudioSession', 'HKUnit', 'NSNull', 'NSPersistentStoreResult', 'MKCircleView', 'AVAudioChannelLayout', 'NEVPNProtocolIKEv2', 'WKProcessPool', 'UIAttachmentBehavior', 'CLBeacon', 'NSInputStream', 'NSURLCache', 'GKPlayer', 'NSMappingModel', 'CIQRCodeFeature', 'AVMutableVideoComposition', 'PHFetchResult', 'NSAttributeDescription', 'AVPlayer', 'MKAnnotationView', 'PKPaymentRequest', 'NSTimer', 'CBDescriptor', 'MKOverlayView', 'AVAudioUnitTimePitch', 'NSSaveChangesRequest', 'UIReferenceLibraryViewController', 'SKPhysicsJointFixed', 'UILocalizedIndexedCollation', 'UIInterpolatingMotionEffect', 'UIDocumentPickerViewController', 'AVAssetWriter', 'NSBundle', 'SKStoreProductViewController', 'GLKViewController', 'NSMetadataQueryAttributeValueTuple', 'GKTurnBasedMatch', 'AVAudioFile', 'UIActivity', 'NSPipe', 'MKShape', 'NSMergeConflict', 'CIImage', 'HKObject', 'UIRotationGestureRecognizer', 'AVPlayerItemLegibleOutput', 'AVAssetImageGenerator', 'GCControllerButtonInput', 'CKMarkNotificationsReadOperation', 'CKSubscription', 'MPTimedMetadata', 'NKIssue', 'UIScreenMode', 'HMAccessoryBrowser', 'GKTurnBasedEventHandler', 'UIWebView', 'MKPolyline', 'JSVirtualMachine', 'AVAssetReader', 'NSAttributedString', 'GKMatchmakerViewController', 'NSCountedSet', 'UIButton', 'WKNavigationResponse', 'GKLocalPlayer', 'MPMovieErrorLog', 'AVSpeechUtterance', 'HKStatistics', 'UILocalNotification', 'HKBiologicalSexObject', 'AVURLAsset', 'CBPeripheral', 'NSDateComponentsFormatter', 'SKSpriteNode', 'UIAccessibilityElement', 'AVAssetWriterInputGroup', 'HMZone', 'AVAssetReaderAudioMixOutput', 'NSEnumerator', 'UIDocument', 'MKLocalSearchResponse', 'UISimpleTextPrintFormatter', 'PHPhotoLibrary', 'CBService', 'UIDocumentMenuViewController', 'MCSession', 'QLPreviewController', 'CAMediaTimingFunction', 'UITextPosition', 'ASIdentifierManager', 'AVAssetResourceLoadingRequest', 'SLComposeServiceViewController', 'UIPinchGestureRecognizer', 'PHObject', 'NSExtensionItem', 'HKSampleQuery', 'MTLRenderPipelineColorAttachmentDescriptorArray', 'MKRouteStep', 'SCNCapsule', 'NSMetadataQuery', 'AVAssetResourceLoadingContentInformationRequest', 'UITraitCollection', 'CTCarrier', 'NSFileSecurity', 'UIAcceleration', 'UIMotionEffect', 'MTLRenderPipelineReflection', 'CLHeading', 'CLVisit', 'MKDirectionsResponse', 'HMAccessory', 'MTLStructType', 'UITextView', 'CMMagnetometerData', 'UICollisionBehavior', 'UIProgressView', 'CKServerChangeToken', 'UISearchBar', 'MKPlacemark', 'AVCaptureConnection', 'NSPropertyMapping', 'ALAssetsFilter', 'SK3DNode', 'AVPlayerItemErrorLogEvent', 'NSJSONSerialization', 'AVAssetReaderVideoCompositionOutput', 'ABPersonViewController', 'CIDetector', 'GKTurnBasedMatchmakerViewController', 'MPMediaItemCollection', 'SCNSphere', 'NSCondition', 'NSURLCredential', 'MIDINetworkConnection', 'NSFileProviderExtension', 'NSDecimalNumberHandler', 'NSAtomicStoreCacheNode', 'NSAtomicStore', 'EKAlarm', 'CKNotificationInfo', 'AVAudioUnitEQ', 'UIPercentDrivenInteractiveTransition', 'MKPolygon', 'AVAssetTrackSegment', 'MTLVertexAttribute', 'NSExpressionDescription', 'HKStatisticsCollectionQuery', 'NSURLAuthenticationChallenge', 'NSDirectoryEnumerator', 'MKDistanceFormatter', 'UIAlertAction', 'NSPropertyListSerialization', 'GKPeerPickerController', 'UIUserNotificationSettings', 'UITableViewController', 'GKNotificationBanner', 'MKPointAnnotation', 'MTLRenderPassColorAttachmentDescriptorArray', 'NSCache', 'SKPhysicsJoint', 'NSXMLParser', 'UIViewController', 'PKPaymentToken', 'MFMessageComposeViewController', 'AVAudioInputNode', 'NSDataDetector', 'CABTMIDICentralViewController', 'AVAudioUnitMIDIInstrument', 'AVCaptureVideoPreviewLayer', 'AVAssetWriterInputPassDescription', 'MPChangePlaybackRateCommand', 'NSURLComponents', 'CAMetalLayer', 'UISnapBehavior', 'AVMetadataMachineReadableCodeObject', 'CKDiscoverUserInfosOperation', 'NSTextAttachment', 'NSException', 'UIMenuItem', 'CMMotionActivityManager', 'SCNGeometryElement', 'NCWidgetController', 'CAEmitterLayer', 'MKUserLocation', 'UIImagePickerController', 'CIFeature', 'AVCaptureDeviceInput', 'ALAsset', 'NSURLSessionDownloadTask', 'SCNPhysicsHingeJoint', 'MPMoviePlayerViewController', 'NSMutableOrderedSet', 'SCNMaterialProperty', 'UIFont', 'AVCaptureVideoDataOutput', 'NSCachedURLResponse', 'ALAssetsLibrary', 'NSInvocation', 'UILongPressGestureRecognizer', 'NSTextStorage', 'WKWebViewConfiguration', 'CIFaceFeature', 'MKMapSnapshot', 'GLKEffectPropertyFog', 'AVComposition', 'CKDiscoverAllContactsOperation', 'AVAudioMixInputParameters', 'CAEmitterBehavior', 'PKPassLibrary', 'UIMutableUserNotificationCategory', 'NSLock', 'NEVPNProtocolIPSec', 'ADBannerView', 'UIDocumentPickerExtensionViewController', 'UIActivityIndicatorView', 'AVPlayerMediaSelectionCriteria', 'CALayer', 'UIAccessibilityCustomAction', 'UIBarButtonItem', 'AVAudioSessionRouteDescription', 'CLBeaconRegion', 'HKBloodTypeObject', 'MTLVertexBufferLayoutDescriptorArray', 'CABasicAnimation', 'AVVideoCompositionInstruction', 'AVMutableTimedMetadataGroup', 'EKRecurrenceEnd', 'NSTextContainer', 'TWTweetComposeViewController', 'PKPaymentAuthorizationViewController', 'UIScrollView', 'WKNavigationAction', 'AVPlayerItemMetadataOutput', 'EKRecurrenceDayOfWeek', 'NSNumberFormatter', 'MTLComputePipelineReflection', 'UIScreen', 'CLRegion', 'NSProcessInfo', 'GLKTextureInfo', 'SCNSkinner', 'AVCaptureMetadataOutput', 'SCNAnimationEvent', 'NSTextTab', 'JSManagedValue', 'NSDate', 'UITextChecker', 'WKBackForwardListItem', 'NSData', 'NSParagraphStyle', 'AVMutableMetadataItem', 'EKCalendar', 'HKWorkoutEvent', 'NSMutableURLRequest', 'UIVideoEditorController', 'HMTimerTrigger', 'AVAudioUnitVarispeed', 'UIDynamicAnimator', 'AVCompositionTrackSegment', 'GCGamepadSnapshot', 'MPMediaEntity', 'GLKSkyboxEffect', 'UISwitch', 'EKStructuredLocation', 'UIGestureRecognizer', 'NSProxy', 'GLKBaseEffect', 'UIPushBehavior', 'GKScoreChallenge', 'NSCoder', 'MPMediaPlaylist', 'NSDateComponents', 'WKUserScript', 'EKEvent', 'NSDateFormatter', 'NSAsynchronousFetchResult', 'AVAssetWriterInputPixelBufferAdaptor', 'UIVisualEffect', 'UICollectionViewCell', 'UITextField', 'CLPlacemark', 'MPPlayableContentManager', 'AVCaptureOutput', 'HMCharacteristicWriteAction', 'CKModifySubscriptionsOperation', 'NSPropertyDescription', 'GCGamepad', 'UIMarkupTextPrintFormatter', 'SCNTube', 'NSPersistentStoreCoordinator', 'AVAudioEnvironmentNode', 'GKMatchmaker', 'CIContext', 'NSThread', 'SLComposeSheetConfigurationItem', 'SKPhysicsJointSliding', 'NSPredicate', 'GKVoiceChat', 'SKCropNode', 'AVCaptureAudioPreviewOutput', 'NSStringDrawingContext', 'GKGameCenterViewController', 'UIPrintPaper', 'SCNPhysicsBallSocketJoint', 'UICollectionViewLayoutInvalidationContext', 'GLKEffectPropertyTransform', 'AVAudioIONode', 'UIDatePicker', 'MKDirections', 'ALAssetsGroup', 'CKRecordZoneNotification', 'SCNScene', 'MPMovieAccessLogEvent', 'CKFetchSubscriptionsOperation', 'CAEmitterCell', 'AVAudioUnitTimeEffect', 'HMCharacteristicMetadata', 'MKPinAnnotationView', 'UIPickerView', 'UIImageView', 'UIUserNotificationCategory', 'SCNPhysicsVehicleWheel', 'HKCategoryType', 'MPMediaQuerySection', 'GKFriendRequestComposeViewController', 'NSError', 'MTLRenderPipelineColorAttachmentDescriptor', 'SCNPhysicsShape', 'UISearchController', 'SCNPhysicsBody', 'CTSubscriberInfo', 'AVPlayerItemAccessLog', 'MPMediaPropertyPredicate', 'CMLogItem', 'NSAutoreleasePool', 'NSSocketPort', 'AVAssetReaderTrackOutput', 'SKNode', 'UIMutableUserNotificationAction', 'SCNProgram', 'AVSpeechSynthesisVoice', 'CMAltimeter', 'AVCaptureAudioChannel', 'GKTurnBasedExchangeReply', 'AVVideoCompositionLayerInstruction', 'AVSpeechSynthesizer', 'GKChallengeEventHandler', 'AVCaptureFileOutput', 'UIControl', 'SCNPhysicsField', 'CKReference', 'LAContext', 'CKRecordID', 'ADInterstitialAd', 'AVAudioSessionDataSourceDescription', 'AVAudioBuffer', 'CIColorKernel', 'GCControllerDirectionPad', 'NSFileManager', 'AVMutableAudioMixInputParameters', 'UIScreenEdgePanGestureRecognizer', 'CAKeyframeAnimation', 'CKQueryNotification', 'PHAdjustmentData', 'EASession', 'AVAssetResourceRenewalRequest', 'UIInputView', 'NSFileWrapper', 'UIResponder', 'NSPointerFunctions', 'UIKeyCommand', 'NSHTTPCookieStorage', 'AVMediaSelectionOption', 'NSRunLoop', 'NSFileAccessIntent', 'CAAnimationGroup', 'MKCircle', 'UIAlertController', 'NSMigrationManager', 'NSDateIntervalFormatter', 'UICollectionViewUpdateItem', 'CKDatabaseOperation', 'PHImageRequestOptions', 'SKReachConstraints', 'CKRecord', 'CAInterAppAudioSwitcherView', 'WKWindowFeatures', 'GKInvite', 'NSMutableData', 'PHAssetCollectionChangeRequest', 'NSMutableParagraphStyle', 'UIDynamicBehavior', 'GLKEffectProperty', 'CKFetchRecordChangesOperation', 'SKShapeNode', 'MPMovieErrorLogEvent', 'MKPolygonView', 'MPContentItem', 'HMAction', 'NSScanner', 'GKAchievementChallenge', 'AVAudioPlayer', 'CKContainer', 'AVVideoComposition', 'NKLibrary', 'NSPersistentStore', 'AVCaptureMovieFileOutput', 'HMRoom', 'GKChallenge', 'UITextRange', 'NSURLProtectionSpace', 'ACAccountStore', 'MPSkipIntervalCommand', 'NSComparisonPredicate', 'HMHome', 'PHVideoRequestOptions', 'NSOutputStream', 'MPSkipIntervalCommandEvent', 'PKAddPassesViewController', 'UITextSelectionRect', 'CTTelephonyNetworkInfo', 'AVTextStyleRule', 'NSFetchedPropertyDescription', 'UIPageViewController', 'CATransformLayer', 'UICollectionViewController', 'AVAudioNode', 'MCNearbyServiceAdvertiser', 'NSObject', 'PHAsset', 'GKLeaderboardViewController', 'CKQueryCursor', 'MPMusicPlayerController', 'MKOverlayPathRenderer', 'CMPedometerData', 'HMService', 'SKFieldNode', 'GKAchievement', 'WKUserContentController', 'AVAssetTrack', 'TWRequest', 'SKLabelNode', 'AVCaptureBracketedStillImageSettings', 'MIDINetworkHost', 'MPMediaPredicate', 'AVFrameRateRange', 'MTLTextureDescriptor', 'MTLVertexBufferLayoutDescriptor', 'MPFeedbackCommandEvent', 'UIUserNotificationAction', 'HKStatisticsQuery', 'SCNParticleSystem', 'NSIndexPath', 'AVVideoCompositionRenderContext', 'CADisplayLink', 'HKObserverQuery', 'UIPopoverPresentationController', 'CKQueryOperation', 'CAEAGLLayer', 'NSMutableString', 'NSMessagePort', 'NSURLQueryItem', 'MTLStructMember', 'AVAudioSessionChannelDescription', 'GLKView', 'UIActivityViewController', 'GKAchievementViewController', 'GKTurnBasedParticipant', 'NSURLProtocol', 'NSUserDefaults', 'NSCalendar', 'SKKeyframeSequence', 'AVMetadataItemFilter', 'CKModifyRecordZonesOperation', 'WKPreferences', 'NSMethodSignature', 'NSRegularExpression', 'EAGLSharegroup', 'AVPlayerItemVideoOutput', 'PHContentEditingInputRequestOptions', 'GKMatch', 'CIColor', 'UIDictationPhrase'])
18
- COCOA_PROTOCOLS = set(['SKStoreProductViewControllerDelegate', 'AVVideoCompositionInstruction', 'AVAudioSessionDelegate', 'GKMatchDelegate', 'NSFileManagerDelegate', 'UILayoutSupport', 'NSCopying', 'UIPrintInteractionControllerDelegate', 'QLPreviewControllerDataSource', 'SKProductsRequestDelegate', 'NSTextStorageDelegate', 'MCBrowserViewControllerDelegate', 'MTLComputeCommandEncoder', 'SCNSceneExportDelegate', 'UISearchResultsUpdating', 'MFMailComposeViewControllerDelegate', 'MTLBlitCommandEncoder', 'NSDecimalNumberBehaviors', 'PHContentEditingController', 'NSMutableCopying', 'UIActionSheetDelegate', 'UIViewControllerTransitioningDelegate', 'UIAlertViewDelegate', 'AVAudioPlayerDelegate', 'MKReverseGeocoderDelegate', 'NSCoding', 'UITextInputTokenizer', 'GKFriendRequestComposeViewControllerDelegate', 'UIActivityItemSource', 'NSCacheDelegate', 'UIAdaptivePresentationControllerDelegate', 'GKAchievementViewControllerDelegate', 'UIViewControllerTransitionCoordinator', 'EKEventEditViewDelegate', 'NSURLConnectionDelegate', 'UITableViewDelegate', 'GKPeerPickerControllerDelegate', 'UIGuidedAccessRestrictionDelegate', 'AVSpeechSynthesizerDelegate', 'AVAudio3DMixing', 'AVPlayerItemLegibleOutputPushDelegate', 'ADInterstitialAdDelegate', 'HMAccessoryBrowserDelegate', 'AVAssetResourceLoaderDelegate', 'UITabBarControllerDelegate', 'CKRecordValue', 'SKPaymentTransactionObserver', 'AVCaptureAudioDataOutputSampleBufferDelegate', 'UIInputViewAudioFeedback', 'GKChallengeListener', 'SKSceneDelegate', 'UIPickerViewDelegate', 'UIWebViewDelegate', 'UIApplicationDelegate', 'GKInviteEventListener', 'MPMediaPlayback', 'MyClassJavaScriptMethods', 'AVAsynchronousKeyValueLoading', 'QLPreviewItem', 'SCNBoundingVolume', 'NSPortDelegate', 'UIContentContainer', 'SCNNodeRendererDelegate', 'SKRequestDelegate', 'SKPhysicsContactDelegate', 'HMAccessoryDelegate', 'UIPageViewControllerDataSource', 'SCNSceneRendererDelegate', 'SCNPhysicsContactDelegate', 'MKMapViewDelegate', 'AVPlayerItemOutputPushDelegate', 'UICollectionViewDelegate', 'UIImagePickerControllerDelegate', 'MTLRenderCommandEncoder', 'PKPaymentAuthorizationViewControllerDelegate', 'UIToolbarDelegate', 'WKUIDelegate', 'SCNActionable', 'NSURLConnectionDataDelegate', 'MKOverlay', 'CBCentralManagerDelegate', 'JSExport', 'NSTextLayoutOrientationProvider', 'UIPickerViewDataSource', 'PKPushRegistryDelegate', 'UIViewControllerTransitionCoordinatorContext', 'NSLayoutManagerDelegate', 'MTLLibrary', 'NSFetchedResultsControllerDelegate', 'ABPeoplePickerNavigationControllerDelegate', 'MTLResource', 'NSDiscardableContent', 'UITextFieldDelegate', 'MTLBuffer', 'MTLSamplerState', 'GKGameCenterControllerDelegate', 'MPMediaPickerControllerDelegate', 'UISplitViewControllerDelegate', 'UIAppearance', 'UIPickerViewAccessibilityDelegate', 'UITraitEnvironment', 'UIScrollViewAccessibilityDelegate', 'ADBannerViewDelegate', 'MPPlayableContentDataSource', 'MTLComputePipelineState', 'NSURLSessionDelegate', 'MTLCommandBuffer', 'NSXMLParserDelegate', 'UIViewControllerRestoration', 'UISearchBarDelegate', 'UIBarPositioning', 'CBPeripheralDelegate', 'UISearchDisplayDelegate', 'CAAction', 'PKAddPassesViewControllerDelegate', 'MCNearbyServiceAdvertiserDelegate', 'MTLDepthStencilState', 'GKTurnBasedMatchmakerViewControllerDelegate', 'MPPlayableContentDelegate', 'AVCaptureVideoDataOutputSampleBufferDelegate', 'UIAppearanceContainer', 'UIStateRestoring', 'UITextDocumentProxy', 'MTLDrawable', 'NSURLSessionTaskDelegate', 'NSFilePresenter', 'AVAudioStereoMixing', 'UIViewControllerContextTransitioning', 'UITextInput', 'CBPeripheralManagerDelegate', 'UITextInputDelegate', 'NSFastEnumeration', 'NSURLAuthenticationChallengeSender', 'SCNProgramDelegate', 'AVVideoCompositing', 'SCNAnimatable', 'NSSecureCoding', 'MCAdvertiserAssistantDelegate', 'GKLocalPlayerListener', 'GLKNamedEffect', 'UIPopoverControllerDelegate', 'AVCaptureMetadataOutputObjectsDelegate', 'NSExtensionRequestHandling', 'UITextSelecting', 'UIPrinterPickerControllerDelegate', 'NCWidgetProviding', 'MTLCommandEncoder', 'NSURLProtocolClient', 'MFMessageComposeViewControllerDelegate', 'UIVideoEditorControllerDelegate', 'WKNavigationDelegate', 'GKSavedGameListener', 'UITableViewDataSource', 'MTLFunction', 'EKCalendarChooserDelegate', 'NSUserActivityDelegate', 'UICollisionBehaviorDelegate', 'NSStreamDelegate', 'MCNearbyServiceBrowserDelegate', 'HMHomeDelegate', 'UINavigationControllerDelegate', 'MCSessionDelegate', 'UIDocumentPickerDelegate', 'UIViewControllerInteractiveTransitioning', 'GKTurnBasedEventListener', 'SCNSceneRenderer', 'MTLTexture', 'GLKViewDelegate', 'EAAccessoryDelegate', 'WKScriptMessageHandler', 'PHPhotoLibraryChangeObserver', 'NSKeyedUnarchiverDelegate', 'AVPlayerItemMetadataOutputPushDelegate', 'NSMachPortDelegate', 'SCNShadable', 'UIPopoverBackgroundViewMethods', 'UIDocumentMenuDelegate', 'UIBarPositioningDelegate', 'ABPersonViewControllerDelegate', 'NSNetServiceBrowserDelegate', 'EKEventViewDelegate', 'UIScrollViewDelegate', 'NSURLConnectionDownloadDelegate', 'UIGestureRecognizerDelegate', 'UINavigationBarDelegate', 'AVAudioMixing', 'NSFetchedResultsSectionInfo', 'UIDocumentInteractionControllerDelegate', 'MTLParallelRenderCommandEncoder', 'QLPreviewControllerDelegate', 'UIAccessibilityReadingContent', 'ABUnknownPersonViewControllerDelegate', 'GLKViewControllerDelegate', 'UICollectionViewDelegateFlowLayout', 'UIPopoverPresentationControllerDelegate', 'UIDynamicAnimatorDelegate', 'NSTextAttachmentContainer', 'MKAnnotation', 'UIAccessibilityIdentification', 'UICoordinateSpace', 'ABNewPersonViewControllerDelegate', 'MTLDevice', 'CAMediaTiming', 'AVCaptureFileOutputRecordingDelegate', 'HMHomeManagerDelegate', 'UITextViewDelegate', 'UITabBarDelegate', 'GKLeaderboardViewControllerDelegate', 'UISearchControllerDelegate', 'EAWiFiUnconfiguredAccessoryBrowserDelegate', 'UITextInputTraits', 'MTLRenderPipelineState', 'GKVoiceChatClient', 'UIKeyInput', 'UICollectionViewDataSource', 'SCNTechniqueSupport', 'NSLocking', 'AVCaptureFileOutputDelegate', 'GKChallengeEventHandlerDelegate', 'UIObjectRestoration', 'CIFilterConstructor', 'AVPlayerItemOutputPullDelegate', 'EAGLDrawable', 'AVVideoCompositionValidationHandling', 'UIViewControllerAnimatedTransitioning', 'NSURLSessionDownloadDelegate', 'UIAccelerometerDelegate', 'UIPageViewControllerDelegate', 'MTLCommandQueue', 'UIDataSourceModelAssociation', 'AVAudioRecorderDelegate', 'GKSessionDelegate', 'NSKeyedArchiverDelegate', 'CAMetalDrawable', 'UIDynamicItem', 'CLLocationManagerDelegate', 'NSMetadataQueryDelegate', 'NSNetServiceDelegate', 'GKMatchmakerViewControllerDelegate', 'NSURLSessionDataDelegate'])
19
- COCOA_PRIMITIVES = set(['ROTAHeader', '__CFBundle', 'MortSubtable', 'AudioFilePacketTableInfo', 'CGPDFOperatorTable', 'KerxStateEntry', 'ExtendedTempoEvent', 'CTParagraphStyleSetting', 'OpaqueMIDIPort', '_GLKMatrix3', '_GLKMatrix2', '_GLKMatrix4', 'ExtendedControlEvent', 'CAFAudioDescription', 'OpaqueCMBlockBuffer', 'CGTextDrawingMode', 'EKErrorCode', 'gss_buffer_desc_struct', 'AudioUnitParameterInfo', '__SCPreferences', '__CTFrame', '__CTLine', 'AudioFile_SMPTE_Time', 'gss_krb5_lucid_context_v1', 'OpaqueJSValue', 'TrakTableEntry', 'AudioFramePacketTranslation', 'CGImageSource', 'OpaqueJSPropertyNameAccumulator', 'JustPCGlyphRepeatAddAction', '__CFBinaryHeap', 'OpaqueMIDIThruConnection', 'opaqueCMBufferQueue', 'OpaqueMusicSequence', 'MortRearrangementSubtable', 'MixerDistanceParams', 'MorxSubtable', 'MIDIObjectPropertyChangeNotification', 'SFNTLookupSegment', 'CGImageMetadataErrors', 'CGPath', 'OpaqueMIDIEndpoint', 'AudioComponentPlugInInterface', 'gss_ctx_id_t_desc_struct', 'sfntFontFeatureSetting', 'OpaqueJSContextGroup', '__SCNetworkConnection', 'AudioUnitParameterValueTranslation', 'CGImageMetadataType', 'CGPattern', 'AudioFileTypeAndFormatID', 'CGContext', 'AUNodeInteraction', 'SFNTLookupTable', 'JustPCDecompositionAction', 'KerxControlPointHeader', 'AudioStreamPacketDescription', 'KernSubtableHeader', '__SecCertificate', 'AUMIDIOutputCallbackStruct', 'MIDIMetaEvent', 'AudioQueueChannelAssignment', 'AnchorPoint', 'JustTable', '__CFNetService', 'CF_BRIDGED_TYPE', 'gss_krb5_lucid_key', 'CGPDFDictionary', 'KerxSubtableHeader', 'CAF_UUID_ChunkHeader', 'gss_krb5_cfx_keydata', 'OpaqueJSClass', 'CGGradient', 'OpaqueMIDISetup', 'JustPostcompTable', '__CTParagraphStyle', 'AudioUnitParameterHistoryInfo', 'OpaqueJSContext', 'CGShading', 'MIDIThruConnectionParams', 'BslnFormat0Part', 'SFNTLookupSingle', '__CFHost', '__SecRandom', '__CTFontDescriptor', '_NSRange', 'sfntDirectory', 'AudioQueueLevelMeterState', 'CAFPositionPeak', 'PropLookupSegment', '__CVOpenGLESTextureCache', 'sfntInstance', '_GLKQuaternion', 'AnkrTable', '__SCNetworkProtocol', 'CAFFileHeader', 'KerxOrderedListHeader', 'CGBlendMode', 'STXEntryOne', 'CAFRegion', 'SFNTLookupTrimmedArrayHeader', 'SCNMatrix4', 'KerxControlPointEntry', 'OpaqueMusicTrack', '_GLKVector4', 'gss_OID_set_desc_struct', 'OpaqueMusicPlayer', '_CFHTTPAuthentication', 'CGAffineTransform', 'CAFMarkerChunk', 'AUHostIdentifier', 'ROTAGlyphEntry', 'BslnTable', 'gss_krb5_lucid_context_version', '_GLKMatrixStack', 'CGImage', 'KernStateEntry', 'SFNTLookupSingleHeader', 'MortLigatureSubtable', 'CAFUMIDChunk', 'SMPTETime', 'CAFDataChunk', 'CGPDFStream', 'AudioFileRegionList', 'STEntryTwo', 'SFNTLookupBinarySearchHeader', 'OpbdTable', '__CTGlyphInfo', 'BslnFormat2Part', 'KerxIndexArrayHeader', 'TrakTable', 'KerxKerningPair', '__CFBitVector', 'KernVersion0SubtableHeader', 'OpaqueAudioComponentInstance', 'AudioChannelLayout', '__CFUUID', 'MIDISysexSendRequest', '__CFNumberFormatter', 'CGImageSourceStatus', 'AudioFileMarkerList', 'AUSamplerBankPresetData', 'CGDataProvider', 'AudioFormatInfo', '__SecIdentity', 'sfntCMapExtendedSubHeader', 'MIDIChannelMessage', 'KernOffsetTable', 'CGColorSpaceModel', 'MFMailComposeErrorCode', 'CGFunction', '__SecTrust', 'AVAudio3DAngularOrientation', 'CGFontPostScriptFormat', 'KernStateHeader', 'AudioUnitCocoaViewInfo', 'CGDataConsumer', 'OpaqueMIDIDevice', 'KernVersion0Header', 'AnchorPointTable', 'CGImageDestination', 'CAFInstrumentChunk', 'AudioUnitMeterClipping', 'MorxChain', '__CTFontCollection', 'STEntryOne', 'STXEntryTwo', 'ExtendedNoteOnEvent', 'CGColorRenderingIntent', 'KerxSimpleArrayHeader', 'MorxTable', '_GLKVector3', '_GLKVector2', 'MortTable', 'CGPDFBox', 'AudioUnitParameterValueFromString', '__CFSocket', 'ALCdevice_struct', 'MIDINoteMessage', 'sfntFeatureHeader', 'CGRect', '__SCNetworkInterface', '__CFTree', 'MusicEventUserData', 'TrakTableData', 'GCQuaternion', 'MortContextualSubtable', '__CTRun', 'AudioUnitFrequencyResponseBin', 'MortChain', 'MorxInsertionSubtable', 'CGImageMetadata', 'gss_auth_identity', 'AudioUnitMIDIControlMapping', 'CAFChunkHeader', 'CGImagePropertyOrientation', 'CGPDFScanner', 'OpaqueMusicEventIterator', 'sfntDescriptorHeader', 'AudioUnitNodeConnection', 'OpaqueMIDIDeviceList', 'ExtendedAudioFormatInfo', 'BslnFormat1Part', 'sfntFontDescriptor', 'KernSimpleArrayHeader', '__CFRunLoopObserver', 'CGPatternTiling', 'MIDINotification', 'MorxLigatureSubtable', 'MessageComposeResult', 'MIDIThruConnectionEndpoint', 'MusicDeviceStdNoteParams', 'opaqueCMSimpleQueue', 'ALCcontext_struct', 'OpaqueAudioQueue', 'PropLookupSingle', 'CGInterpolationQuality', 'CGColor', 'AudioOutputUnitStartAtTimeParams', 'gss_name_t_desc_struct', 'CGFunctionCallbacks', 'CAFPacketTableHeader', 'AudioChannelDescription', 'sfntFeatureName', 'MorxContextualSubtable', 'CVSMPTETime', 'AudioValueRange', 'CGTextEncoding', 'AudioStreamBasicDescription', 'AUNodeRenderCallback', 'AudioPanningInfo', 'KerxOrderedListEntry', '__CFAllocator', 'OpaqueJSPropertyNameArray', '__SCDynamicStore', 'OpaqueMIDIEntity', '__CTRubyAnnotation', 'SCNVector4', 'CFHostClientContext', 'CFNetServiceClientContext', 'AudioUnitPresetMAS_SettingData', 'opaqueCMBufferQueueTriggerToken', 'AudioUnitProperty', 'CAFRegionChunk', 'CGPDFString', '__GLsync', '__CFStringTokenizer', 'JustWidthDeltaEntry', 'sfntVariationAxis', '__CFNetDiagnostic', 'CAFOverviewSample', 'sfntCMapEncoding', 'CGVector', '__SCNetworkService', 'opaqueCMSampleBuffer', 'AUHostVersionIdentifier', 'AudioBalanceFade', 'sfntFontRunFeature', 'KerxCoordinateAction', 'sfntCMapSubHeader', 'CVPlanarPixelBufferInfo', 'AUNumVersion', 'AUSamplerInstrumentData', 'AUPreset', '__CTRunDelegate', 'OpaqueAudioQueueProcessingTap', 'KerxTableHeader', '_NSZone', 'OpaqueExtAudioFile', '__CFRunLoopSource', '__CVMetalTextureCache', 'KerxAnchorPointAction', 'OpaqueJSString', 'AudioQueueParameterEvent', '__CFHTTPMessage', 'OpaqueCMClock', 'ScheduledAudioFileRegion', 'STEntryZero', 'AVAudio3DPoint', 'gss_channel_bindings_struct', 'sfntVariationHeader', 'AUChannelInfo', 'UIOffset', 'GLKEffectPropertyPrv', 'KerxStateHeader', 'CGLineJoin', 'CGPDFDocument', '__CFBag', 'KernOrderedListHeader', '__SCNetworkSet', '__SecKey', 'MIDIObjectAddRemoveNotification', 'AudioUnitParameter', 'JustPCActionSubrecord', 'AudioComponentDescription', 'AudioUnitParameterValueName', 'AudioUnitParameterEvent', 'KerxControlPointAction', 'AudioTimeStamp', 'KernKerningPair', 'gss_buffer_set_desc_struct', 'MortFeatureEntry', 'FontVariation', 'CAFStringID', 'LcarCaretClassEntry', 'AudioUnitParameterStringFromValue', 'ACErrorCode', 'ALMXGlyphEntry', 'LtagTable', '__CTTypesetter', 'AuthorizationOpaqueRef', 'UIEdgeInsets', 'CGPathElement', 'CAFMarker', 'KernTableHeader', 'NoteParamsControlValue', 'SSLContext', 'gss_cred_id_t_desc_struct', 'AudioUnitParameterNameInfo', 'CGDataConsumerCallbacks', 'ALMXHeader', 'CGLineCap', 'MIDIControlTransform', 'CGPDFArray', '__SecPolicy', 'AudioConverterPrimeInfo', '__CTTextTab', '__CFNetServiceMonitor', 'AUInputSamplesInOutputCallbackStruct', '__CTFramesetter', 'CGPDFDataFormat', 'STHeader', 'CVPlanarPixelBufferInfo_YCbCrPlanar', 'MIDIValueMap', 'JustDirectionTable', '__SCBondStatus', 'SFNTLookupSegmentHeader', 'OpaqueCMMemoryPool', 'CGPathDrawingMode', 'CGFont', '__SCNetworkReachability', 'AudioClassDescription', 'CGPoint', 'AVAudio3DVectorOrientation', 'CAFStrings', '__CFNetServiceBrowser', 'opaqueMTAudioProcessingTap', 'sfntNameRecord', 'CGPDFPage', 'CGLayer', 'ComponentInstanceRecord', 'CAFInfoStrings', 'HostCallbackInfo', 'MusicDeviceNoteParams', 'OpaqueVTCompressionSession', 'KernIndexArrayHeader', 'CVPlanarPixelBufferInfo_YCbCrBiPlanar', 'MusicTrackLoopInfo', 'opaqueCMFormatDescription', 'STClassTable', 'sfntDirectoryEntry', 'OpaqueCMTimebase', 'CGDataProviderDirectCallbacks', 'MIDIPacketList', 'CAFOverviewChunk', 'MIDIPacket', 'ScheduledAudioSlice', 'CGDataProviderSequentialCallbacks', 'AudioBuffer', 'MorxRearrangementSubtable', 'CGPatternCallbacks', 'AUDistanceAttenuationData', 'MIDIIOErrorNotification', 'CGPDFContentStream', 'IUnknownVTbl', 'MIDITransform', 'MortInsertionSubtable', 'CABarBeatTime', 'AudioBufferList', '__CVBuffer', 'AURenderCallbackStruct', 'STXEntryZero', 'JustPCDuctilityAction', 'OpaqueAudioQueueTimeline', 'VTDecompressionOutputCallbackRecord', 'OpaqueMIDIClient', '__CFPlugInInstance', 'AudioQueueBuffer', '__CFFileDescriptor', 'AudioUnitConnection', '_GKTurnBasedExchangeStatus', 'LcarCaretTable', 'CVPlanarComponentInfo', 'JustWidthDeltaGroup', 'OpaqueAudioComponent', 'ParameterEvent', '__CVPixelBufferPool', '__CTFont', 'CGColorSpace', 'CGSize', 'AUDependentParameter', 'MIDIDriverInterface', 'gss_krb5_rfc1964_keydata', '__CFDateFormatter', 'LtagStringRange', 'OpaqueVTDecompressionSession', 'gss_iov_buffer_desc_struct', 'AUPresetEvent', 'PropTable', 'KernOrderedListEntry', 'CF_BRIDGED_MUTABLE_TYPE', 'gss_OID_desc_struct', 'AudioUnitPresetMAS_Settings', 'AudioFileMarker', 'JustPCConditionalAddAction', 'BslnFormat3Part', '__CFNotificationCenter', 'MortSwashSubtable', 'AUParameterMIDIMapping', 'SCNVector3', 'OpaqueAudioConverter', 'MIDIRawData', 'sfntNameHeader', '__CFRunLoop', 'MFMailComposeResult', 'CATransform3D', 'OpbdSideValues', 'CAF_SMPTE_Time', '__SecAccessControl', 'JustPCAction', 'OpaqueVTFrameSilo', 'OpaqueVTMultiPassStorage', 'CGPathElementType', 'AudioFormatListItem', 'AudioUnitExternalBuffer', 'AudioFileRegion', 'AudioValueTranslation', 'CGImageMetadataTag', 'CAFPeakChunk', 'AudioBytePacketTranslation', 'sfntCMapHeader', '__CFURLEnumerator', 'STXHeader', 'CGPDFObjectType', 'SFNTLookupArrayHeader'])
15
+ COCOA_INTERFACES = {'UITableViewCell', 'HKCorrelationQuery', 'NSURLSessionDataTask', 'PHFetchOptions', 'NSLinguisticTagger', 'NSStream', 'AVAudioUnitDelay', 'GCMotion', 'SKPhysicsWorld', 'NSString', 'CMAttitude', 'AVAudioEnvironmentDistanceAttenuationParameters', 'HKStatisticsCollection', 'SCNPlane', 'CBPeer', 'JSContext', 'SCNTransaction', 'SCNTorus', 'AVAudioUnitEffect', 'UICollectionReusableView', 'MTLSamplerDescriptor', 'AVAssetReaderSampleReferenceOutput', 'AVMutableCompositionTrack', 'GKLeaderboard', 'NSFetchedResultsController', 'SKRange', 'MKTileOverlayRenderer', 'MIDINetworkSession', 'UIVisualEffectView', 'CIWarpKernel', 'PKObject', 'MKRoute', 'MPVolumeView', 'UIPrintInfo', 'SCNText', 'ADClient', 'PKPayment', 'AVMutableAudioMix', 'GLKEffectPropertyLight', 'WKScriptMessage', 'AVMIDIPlayer', 'PHCollectionListChangeRequest', 'UICollectionViewLayout', 'NSMutableCharacterSet', 'SKPaymentTransaction', 'NEOnDemandRuleConnect', 'NSShadow', 'SCNView', 'NSURLSessionConfiguration', 'MTLVertexAttributeDescriptor', 'CBCharacteristic', 'HKQuantityType', 'CKLocationSortDescriptor', 'NEVPNIKEv2SecurityAssociationParameters', 'CMStepCounter', 'NSNetService', 'AVAssetWriterInputMetadataAdaptor', 'UICollectionView', 'UIViewPrintFormatter', 'SCNLevelOfDetail', 'CAShapeLayer', 'MCPeerID', 'MPRatingCommand', 'WKNavigation', 'NSDictionary', 'NSFileVersion', 'CMGyroData', 'AVAudioUnitDistortion', 'CKFetchRecordsOperation', 'SKPhysicsJointSpring', 'SCNHitTestResult', 'AVAudioTime', 'CIFilter', 'UIView', 'SCNConstraint', 'CAPropertyAnimation', 'MKMapItem', 'MPRemoteCommandCenter', 'PKPaymentSummaryItem', 'UICollectionViewFlowLayoutInvalidationContext', 'UIInputViewController', 'PKPass', 'SCNPhysicsBehavior', 'MTLRenderPassColorAttachmentDescriptor', 'MKPolygonRenderer', 'CKNotification', 'JSValue', 'PHCollectionList', 'CLGeocoder', 'NSByteCountFormatter', 'AVCaptureScreenInput', 'MPFeedbackCommand', 'CAAnimation', 'MKOverlayPathView', 'UIActionSheet', 'UIMotionEffectGroup', 'NSLengthFormatter', 'UIBarItem', 'SKProduct', 'AVAssetExportSession', 'NSKeyedUnarchiver', 'NSMutableSet', 'SCNPyramid', 'PHAssetCollection', 'MKMapView', 'HMHomeManager', 'CATransition', 'MTLCompileOptions', 'UIVibrancyEffect', 'CLCircularRegion', 'MKTileOverlay', 'SCNShape', 'ACAccountCredential', 'SKPhysicsJointLimit', 'MKMapSnapshotter', 'AVMediaSelectionGroup', 'NSIndexSet', 'CBPeripheralManager', 'CKRecordZone', 'AVAudioRecorder', 'NSURL', 'CBCentral', 'NSNumber', 'AVAudioOutputNode', 'MTLVertexAttributeDescriptorArray', 'MKETAResponse', 'SKTransition', 'SSReadingList', 'HKSourceQuery', 'UITableViewRowAction', 'UITableView', 'SCNParticlePropertyController', 'AVCaptureStillImageOutput', 'GCController', 'AVAudioPlayerNode', 'AVAudioSessionPortDescription', 'NSHTTPURLResponse', 'NEOnDemandRuleEvaluateConnection', 'SKEffectNode', 'HKQuantity', 'GCControllerElement', 'AVPlayerItemAccessLogEvent', 'SCNBox', 'NSExtensionContext', 'MKOverlayRenderer', 'SCNPhysicsVehicle', 'NSDecimalNumber', 'EKReminder', 'MKPolylineView', 'CKQuery', 'AVAudioMixerNode', 'GKAchievementDescription', 'EKParticipant', 'NSBlockOperation', 'UIActivityItemProvider', 'CLLocation', 'NSBatchUpdateRequest', 'PHContentEditingOutput', 'PHObjectChangeDetails', 'HKWorkoutType', 'MPMoviePlayerController', 'AVAudioFormat', 'HMTrigger', 'MTLRenderPassDepthAttachmentDescriptor', 'SCNRenderer', 'GKScore', 'UISplitViewController', 'HKSource', 'NSURLConnection', 'ABUnknownPersonViewController', 'SCNTechnique', 'UIMenuController', 'NSEvent', 'SKTextureAtlas', 'NSKeyedArchiver', 'GKLeaderboardSet', 'NSSimpleCString', 'AVAudioPCMBuffer', 'CBATTRequest', 'GKMatchRequest', 'AVMetadataObject', 'SKProductsRequest', 'UIAlertView', 'NSIncrementalStore', 'MFMailComposeViewController', 'SCNFloor', 'NSSortDescriptor', 'CKFetchNotificationChangesOperation', 'MPMovieAccessLog', 'NSManagedObjectContext', 'AVAudioUnitGenerator', 'WKBackForwardList', 'SKMutableTexture', 'AVCaptureAudioDataOutput', 'ACAccount', 'AVMetadataItem', 'MPRatingCommandEvent', 'AVCaptureDeviceInputSource', 'CLLocationManager', 'MPRemoteCommand', 'AVCaptureSession', 'UIStepper', 'UIRefreshControl', 'NEEvaluateConnectionRule', 'CKModifyRecordsOperation', 'UICollectionViewTransitionLayout', 'CBCentralManager', 'NSPurgeableData', 'PKShippingMethod', 'SLComposeViewController', 'NSHashTable', 'MKUserTrackingBarButtonItem', 'UILexiconEntry', 'CMMotionActivity', 'SKAction', 'SKShader', 'AVPlayerItemOutput', 'MTLRenderPassAttachmentDescriptor', 'UIDocumentInteractionController', 'UIDynamicItemBehavior', 'NSMutableDictionary', 'UILabel', 'AVCaptureInputPort', 'NSExpression', 'CAInterAppAudioTransportView', 'SKMutablePayment', 'UIImage', 'PHCachingImageManager', 'SCNTransformConstraint', 'HKCorrelationType', 'UIColor', 'SCNGeometrySource', 'AVCaptureAutoExposureBracketedStillImageSettings', 'UIPopoverBackgroundView', 'UIToolbar', 'NSNotificationCenter', 'UICollectionViewLayoutAttributes', 'AVAssetReaderOutputMetadataAdaptor', 'NSEntityMigrationPolicy', 'HMUser', 'NSLocale', 'NSURLSession', 'SCNCamera', 'NSTimeZone', 'UIManagedDocument', 'AVMutableVideoCompositionLayerInstruction', 'AVAssetTrackGroup', 'NSInvocationOperation', 'ALAssetRepresentation', 'AVQueuePlayer', 'HMServiceGroup', 'UIPasteboard', 'PHContentEditingInput', 'NSLayoutManager', 'EKCalendarChooser', 'EKObject', 'CATiledLayer', 'GLKReflectionMapEffect', 'NSManagedObjectID', 'NSEnergyFormatter', 'SLRequest', 'HMCharacteristic', 'AVPlayerLayer', 'MTLRenderPassDescriptor', 'SKPayment', 'NSPointerArray', 'AVAudioMix', 'SCNLight', 'MCAdvertiserAssistant', 'MKMapSnapshotOptions', 'HKCategorySample', 'AVAudioEnvironmentReverbParameters', 'SCNMorpher', 'AVTimedMetadataGroup', 'CBMutableCharacteristic', 'NSFetchRequest', 'UIDevice', 'NSManagedObject', 'NKAssetDownload', 'AVOutputSettingsAssistant', 'SKPhysicsJointPin', 'UITabBar', 'UITextInputMode', 'NSFetchRequestExpression', 'HMActionSet', 'CTSubscriber', 'PHAssetChangeRequest', 'NSPersistentStoreRequest', 'UITabBarController', 'HKQuantitySample', 'AVPlayerItem', 'AVSynchronizedLayer', 'MKDirectionsRequest', 'NSMetadataItem', 'UIPresentationController', 'UINavigationItem', 'PHFetchResultChangeDetails', 'PHImageManager', 'AVCaptureManualExposureBracketedStillImageSettings', 'UIStoryboardPopoverSegue', 'SCNLookAtConstraint', 'UIGravityBehavior', 'UIWindow', 'CBMutableDescriptor', 'NEOnDemandRuleDisconnect', 'UIBezierPath', 'UINavigationController', 'ABPeoplePickerNavigationController', 'EKSource', 'AVAssetWriterInput', 'AVPlayerItemTrack', 'GLKEffectPropertyTexture', 'NSHTTPCookie', 'NSURLResponse', 'SKPaymentQueue', 'NSAssertionHandler', 'MKReverseGeocoder', 'GCControllerAxisInput', 'NSArray', 'NSOrthography', 'NSURLSessionUploadTask', 'NSCharacterSet', 'AVMutableVideoCompositionInstruction', 'AVAssetReaderOutput', 'EAGLContext', 'WKFrameInfo', 'CMPedometer', 'MyClass', 'CKModifyBadgeOperation', 'AVCaptureAudioFileOutput', 'SKEmitterNode', 'NSMachPort', 'AVVideoCompositionCoreAnimationTool', 'PHCollection', 'SCNPhysicsWorld', 'NSURLRequest', 'CMAccelerometerData', 'NSNetServiceBrowser', 'CLFloor', 'AVAsynchronousVideoCompositionRequest', 'SCNGeometry', 'SCNIKConstraint', 'CIKernel', 'CAGradientLayer', 'HKCharacteristicType', 'NSFormatter', 'SCNAction', 'CATransaction', 'CBUUID', 'UIStoryboard', 'MPMediaLibrary', 'UITapGestureRecognizer', 'MPMediaItemArtwork', 'NSURLSessionTask', 'AVAudioUnit', 'MCBrowserViewController', 'UIFontDescriptor', 'NSRelationshipDescription', 'HKSample', 'WKWebView', 'NSMutableAttributedString', 'NSPersistentStoreAsynchronousResult', 'MPNowPlayingInfoCenter', 'MKLocalSearch', 'EAAccessory', 'HKCorrelation', 'CATextLayer', 'NSNotificationQueue', 'UINib', 'GLKTextureLoader', 'HKObjectType', 'NSValue', 'NSMutableIndexSet', 'SKPhysicsContact', 'NSProgress', 'AVPlayerViewController', 'CAScrollLayer', 'GKSavedGame', 'NSTextCheckingResult', 'PHObjectPlaceholder', 'SKConstraint', 'EKEventEditViewController', 'NSEntityDescription', 'NSURLCredentialStorage', 'UIApplication', 'SKDownload', 'SCNNode', 'MKLocalSearchRequest', 'SKScene', 'UISearchDisplayController', 'NEOnDemandRule', 'MTLRenderPassStencilAttachmentDescriptor', 'CAReplicatorLayer', 'UIPrintPageRenderer', 'EKCalendarItem', 'NSUUID', 'EAAccessoryManager', 'NEOnDemandRuleIgnore', 'SKRegion', 'AVAssetResourceLoader', 'EAWiFiUnconfiguredAccessoryBrowser', 'NSUserActivity', 'CTCall', 'UIPrinterPickerController', 'CIVector', 'UINavigationBar', 'UIPanGestureRecognizer', 'MPMediaQuery', 'ABNewPersonViewController', 'CKRecordZoneID', 'HKAnchoredObjectQuery', 'CKFetchRecordZonesOperation', 'UIStoryboardSegue', 'ACAccountType', 'GKSession', 'SKVideoNode', 'PHChange', 'SKReceiptRefreshRequest', 'GCExtendedGamepadSnapshot', 'MPSeekCommandEvent', 'GCExtendedGamepad', 'CAValueFunction', 'SCNCylinder', 'NSNotification', 'NSBatchUpdateResult', 'PKPushCredentials', 'SCNPhysicsSliderJoint', 'AVCaptureDeviceFormat', 'AVPlayerItemErrorLog', 'NSMapTable', 'NSSet', 'CMMotionManager', 'GKVoiceChatService', 'UIPageControl', 'UILexicon', 'MTLArrayType', 'AVAudioUnitReverb', 'MKGeodesicPolyline', 'AVMutableComposition', 'NSLayoutConstraint', 'UIPrinter', 'NSOrderedSet', 'CBAttribute', 'PKPushPayload', 'NSIncrementalStoreNode', 'EKEventStore', 'MPRemoteCommandEvent', 'UISlider', 'UIBlurEffect', 'CKAsset', 'AVCaptureInput', 'AVAudioEngine', 'MTLVertexDescriptor', 'SKPhysicsBody', 'NSOperation', 'PKPaymentPass', 'UIImageAsset', 'MKMapCamera', 'SKProductsResponse', 'GLKEffectPropertyMaterial', 'AVCaptureDevice', 'CTCallCenter', 'CABTMIDILocalPeripheralViewController', 'NEVPNManager', 'HKQuery', 'SCNPhysicsContact', 'CBMutableService', 'AVSampleBufferDisplayLayer', 'SCNSceneSource', 'SKLightNode', 'CKDiscoveredUserInfo', 'NSMutableArray', 'MTLDepthStencilDescriptor', 'MTLArgument', 'NSMassFormatter', 'CIRectangleFeature', 'PKPushRegistry', 'NEVPNConnection', 'MCNearbyServiceBrowser', 'NSOperationQueue', 'MKPolylineRenderer', 'HKWorkout', 'NSValueTransformer', 'UICollectionViewFlowLayout', 'MPChangePlaybackRateCommandEvent', 'NSEntityMapping', 'SKTexture', 'NSMergePolicy', 'UITextInputStringTokenizer', 'NSRecursiveLock', 'AVAsset', 'NSUndoManager', 'AVAudioUnitSampler', 'NSItemProvider', 'SKUniform', 'MPMediaPickerController', 'CKOperation', 'MTLRenderPipelineDescriptor', 'EAWiFiUnconfiguredAccessory', 'NSFileCoordinator', 'SKRequest', 'NSFileHandle', 'NSConditionLock', 'UISegmentedControl', 'NSManagedObjectModel', 'UITabBarItem', 'SCNCone', 'MPMediaItem', 'SCNMaterial', 'EKRecurrenceRule', 'UIEvent', 'UITouch', 'UIPrintInteractionController', 'CMDeviceMotion', 'NEVPNProtocol', 'NSCompoundPredicate', 'HKHealthStore', 'MKMultiPoint', 'HKSampleType', 'UIPrintFormatter', 'AVAudioUnitEQFilterParameters', 'SKView', 'NSConstantString', 'UIPopoverController', 'CKDatabase', 'AVMetadataFaceObject', 'UIAccelerometer', 'EKEventViewController', 'CMAltitudeData', 'MTLStencilDescriptor', 'UISwipeGestureRecognizer', 'NSPort', 'MKCircleRenderer', 'AVCompositionTrack', 'NSAsynchronousFetchRequest', 'NSUbiquitousKeyValueStore', 'NSMetadataQueryResultGroup', 'AVAssetResourceLoadingDataRequest', 'UITableViewHeaderFooterView', 'CKNotificationID', 'AVAudioSession', 'HKUnit', 'NSNull', 'NSPersistentStoreResult', 'MKCircleView', 'AVAudioChannelLayout', 'NEVPNProtocolIKEv2', 'WKProcessPool', 'UIAttachmentBehavior', 'CLBeacon', 'NSInputStream', 'NSURLCache', 'GKPlayer', 'NSMappingModel', 'CIQRCodeFeature', 'AVMutableVideoComposition', 'PHFetchResult', 'NSAttributeDescription', 'AVPlayer', 'MKAnnotationView', 'PKPaymentRequest', 'NSTimer', 'CBDescriptor', 'MKOverlayView', 'AVAudioUnitTimePitch', 'NSSaveChangesRequest', 'UIReferenceLibraryViewController', 'SKPhysicsJointFixed', 'UILocalizedIndexedCollation', 'UIInterpolatingMotionEffect', 'UIDocumentPickerViewController', 'AVAssetWriter', 'NSBundle', 'SKStoreProductViewController', 'GLKViewController', 'NSMetadataQueryAttributeValueTuple', 'GKTurnBasedMatch', 'AVAudioFile', 'UIActivity', 'NSPipe', 'MKShape', 'NSMergeConflict', 'CIImage', 'HKObject', 'UIRotationGestureRecognizer', 'AVPlayerItemLegibleOutput', 'AVAssetImageGenerator', 'GCControllerButtonInput', 'CKMarkNotificationsReadOperation', 'CKSubscription', 'MPTimedMetadata', 'NKIssue', 'UIScreenMode', 'HMAccessoryBrowser', 'GKTurnBasedEventHandler', 'UIWebView', 'MKPolyline', 'JSVirtualMachine', 'AVAssetReader', 'NSAttributedString', 'GKMatchmakerViewController', 'NSCountedSet', 'UIButton', 'WKNavigationResponse', 'GKLocalPlayer', 'MPMovieErrorLog', 'AVSpeechUtterance', 'HKStatistics', 'UILocalNotification', 'HKBiologicalSexObject', 'AVURLAsset', 'CBPeripheral', 'NSDateComponentsFormatter', 'SKSpriteNode', 'UIAccessibilityElement', 'AVAssetWriterInputGroup', 'HMZone', 'AVAssetReaderAudioMixOutput', 'NSEnumerator', 'UIDocument', 'MKLocalSearchResponse', 'UISimpleTextPrintFormatter', 'PHPhotoLibrary', 'CBService', 'UIDocumentMenuViewController', 'MCSession', 'QLPreviewController', 'CAMediaTimingFunction', 'UITextPosition', 'ASIdentifierManager', 'AVAssetResourceLoadingRequest', 'SLComposeServiceViewController', 'UIPinchGestureRecognizer', 'PHObject', 'NSExtensionItem', 'HKSampleQuery', 'MTLRenderPipelineColorAttachmentDescriptorArray', 'MKRouteStep', 'SCNCapsule', 'NSMetadataQuery', 'AVAssetResourceLoadingContentInformationRequest', 'UITraitCollection', 'CTCarrier', 'NSFileSecurity', 'UIAcceleration', 'UIMotionEffect', 'MTLRenderPipelineReflection', 'CLHeading', 'CLVisit', 'MKDirectionsResponse', 'HMAccessory', 'MTLStructType', 'UITextView', 'CMMagnetometerData', 'UICollisionBehavior', 'UIProgressView', 'CKServerChangeToken', 'UISearchBar', 'MKPlacemark', 'AVCaptureConnection', 'NSPropertyMapping', 'ALAssetsFilter', 'SK3DNode', 'AVPlayerItemErrorLogEvent', 'NSJSONSerialization', 'AVAssetReaderVideoCompositionOutput', 'ABPersonViewController', 'CIDetector', 'GKTurnBasedMatchmakerViewController', 'MPMediaItemCollection', 'SCNSphere', 'NSCondition', 'NSURLCredential', 'MIDINetworkConnection', 'NSFileProviderExtension', 'NSDecimalNumberHandler', 'NSAtomicStoreCacheNode', 'NSAtomicStore', 'EKAlarm', 'CKNotificationInfo', 'AVAudioUnitEQ', 'UIPercentDrivenInteractiveTransition', 'MKPolygon', 'AVAssetTrackSegment', 'MTLVertexAttribute', 'NSExpressionDescription', 'HKStatisticsCollectionQuery', 'NSURLAuthenticationChallenge', 'NSDirectoryEnumerator', 'MKDistanceFormatter', 'UIAlertAction', 'NSPropertyListSerialization', 'GKPeerPickerController', 'UIUserNotificationSettings', 'UITableViewController', 'GKNotificationBanner', 'MKPointAnnotation', 'MTLRenderPassColorAttachmentDescriptorArray', 'NSCache', 'SKPhysicsJoint', 'NSXMLParser', 'UIViewController', 'PKPaymentToken', 'MFMessageComposeViewController', 'AVAudioInputNode', 'NSDataDetector', 'CABTMIDICentralViewController', 'AVAudioUnitMIDIInstrument', 'AVCaptureVideoPreviewLayer', 'AVAssetWriterInputPassDescription', 'MPChangePlaybackRateCommand', 'NSURLComponents', 'CAMetalLayer', 'UISnapBehavior', 'AVMetadataMachineReadableCodeObject', 'CKDiscoverUserInfosOperation', 'NSTextAttachment', 'NSException', 'UIMenuItem', 'CMMotionActivityManager', 'SCNGeometryElement', 'NCWidgetController', 'CAEmitterLayer', 'MKUserLocation', 'UIImagePickerController', 'CIFeature', 'AVCaptureDeviceInput', 'ALAsset', 'NSURLSessionDownloadTask', 'SCNPhysicsHingeJoint', 'MPMoviePlayerViewController', 'NSMutableOrderedSet', 'SCNMaterialProperty', 'UIFont', 'AVCaptureVideoDataOutput', 'NSCachedURLResponse', 'ALAssetsLibrary', 'NSInvocation', 'UILongPressGestureRecognizer', 'NSTextStorage', 'WKWebViewConfiguration', 'CIFaceFeature', 'MKMapSnapshot', 'GLKEffectPropertyFog', 'AVComposition', 'CKDiscoverAllContactsOperation', 'AVAudioMixInputParameters', 'CAEmitterBehavior', 'PKPassLibrary', 'UIMutableUserNotificationCategory', 'NSLock', 'NEVPNProtocolIPSec', 'ADBannerView', 'UIDocumentPickerExtensionViewController', 'UIActivityIndicatorView', 'AVPlayerMediaSelectionCriteria', 'CALayer', 'UIAccessibilityCustomAction', 'UIBarButtonItem', 'AVAudioSessionRouteDescription', 'CLBeaconRegion', 'HKBloodTypeObject', 'MTLVertexBufferLayoutDescriptorArray', 'CABasicAnimation', 'AVVideoCompositionInstruction', 'AVMutableTimedMetadataGroup', 'EKRecurrenceEnd', 'NSTextContainer', 'TWTweetComposeViewController', 'PKPaymentAuthorizationViewController', 'UIScrollView', 'WKNavigationAction', 'AVPlayerItemMetadataOutput', 'EKRecurrenceDayOfWeek', 'NSNumberFormatter', 'MTLComputePipelineReflection', 'UIScreen', 'CLRegion', 'NSProcessInfo', 'GLKTextureInfo', 'SCNSkinner', 'AVCaptureMetadataOutput', 'SCNAnimationEvent', 'NSTextTab', 'JSManagedValue', 'NSDate', 'UITextChecker', 'WKBackForwardListItem', 'NSData', 'NSParagraphStyle', 'AVMutableMetadataItem', 'EKCalendar', 'HKWorkoutEvent', 'NSMutableURLRequest', 'UIVideoEditorController', 'HMTimerTrigger', 'AVAudioUnitVarispeed', 'UIDynamicAnimator', 'AVCompositionTrackSegment', 'GCGamepadSnapshot', 'MPMediaEntity', 'GLKSkyboxEffect', 'UISwitch', 'EKStructuredLocation', 'UIGestureRecognizer', 'NSProxy', 'GLKBaseEffect', 'UIPushBehavior', 'GKScoreChallenge', 'NSCoder', 'MPMediaPlaylist', 'NSDateComponents', 'WKUserScript', 'EKEvent', 'NSDateFormatter', 'NSAsynchronousFetchResult', 'AVAssetWriterInputPixelBufferAdaptor', 'UIVisualEffect', 'UICollectionViewCell', 'UITextField', 'CLPlacemark', 'MPPlayableContentManager', 'AVCaptureOutput', 'HMCharacteristicWriteAction', 'CKModifySubscriptionsOperation', 'NSPropertyDescription', 'GCGamepad', 'UIMarkupTextPrintFormatter', 'SCNTube', 'NSPersistentStoreCoordinator', 'AVAudioEnvironmentNode', 'GKMatchmaker', 'CIContext', 'NSThread', 'SLComposeSheetConfigurationItem', 'SKPhysicsJointSliding', 'NSPredicate', 'GKVoiceChat', 'SKCropNode', 'AVCaptureAudioPreviewOutput', 'NSStringDrawingContext', 'GKGameCenterViewController', 'UIPrintPaper', 'SCNPhysicsBallSocketJoint', 'UICollectionViewLayoutInvalidationContext', 'GLKEffectPropertyTransform', 'AVAudioIONode', 'UIDatePicker', 'MKDirections', 'ALAssetsGroup', 'CKRecordZoneNotification', 'SCNScene', 'MPMovieAccessLogEvent', 'CKFetchSubscriptionsOperation', 'CAEmitterCell', 'AVAudioUnitTimeEffect', 'HMCharacteristicMetadata', 'MKPinAnnotationView', 'UIPickerView', 'UIImageView', 'UIUserNotificationCategory', 'SCNPhysicsVehicleWheel', 'HKCategoryType', 'MPMediaQuerySection', 'GKFriendRequestComposeViewController', 'NSError', 'MTLRenderPipelineColorAttachmentDescriptor', 'SCNPhysicsShape', 'UISearchController', 'SCNPhysicsBody', 'CTSubscriberInfo', 'AVPlayerItemAccessLog', 'MPMediaPropertyPredicate', 'CMLogItem', 'NSAutoreleasePool', 'NSSocketPort', 'AVAssetReaderTrackOutput', 'SKNode', 'UIMutableUserNotificationAction', 'SCNProgram', 'AVSpeechSynthesisVoice', 'CMAltimeter', 'AVCaptureAudioChannel', 'GKTurnBasedExchangeReply', 'AVVideoCompositionLayerInstruction', 'AVSpeechSynthesizer', 'GKChallengeEventHandler', 'AVCaptureFileOutput', 'UIControl', 'SCNPhysicsField', 'CKReference', 'LAContext', 'CKRecordID', 'ADInterstitialAd', 'AVAudioSessionDataSourceDescription', 'AVAudioBuffer', 'CIColorKernel', 'GCControllerDirectionPad', 'NSFileManager', 'AVMutableAudioMixInputParameters', 'UIScreenEdgePanGestureRecognizer', 'CAKeyframeAnimation', 'CKQueryNotification', 'PHAdjustmentData', 'EASession', 'AVAssetResourceRenewalRequest', 'UIInputView', 'NSFileWrapper', 'UIResponder', 'NSPointerFunctions', 'UIKeyCommand', 'NSHTTPCookieStorage', 'AVMediaSelectionOption', 'NSRunLoop', 'NSFileAccessIntent', 'CAAnimationGroup', 'MKCircle', 'UIAlertController', 'NSMigrationManager', 'NSDateIntervalFormatter', 'UICollectionViewUpdateItem', 'CKDatabaseOperation', 'PHImageRequestOptions', 'SKReachConstraints', 'CKRecord', 'CAInterAppAudioSwitcherView', 'WKWindowFeatures', 'GKInvite', 'NSMutableData', 'PHAssetCollectionChangeRequest', 'NSMutableParagraphStyle', 'UIDynamicBehavior', 'GLKEffectProperty', 'CKFetchRecordChangesOperation', 'SKShapeNode', 'MPMovieErrorLogEvent', 'MKPolygonView', 'MPContentItem', 'HMAction', 'NSScanner', 'GKAchievementChallenge', 'AVAudioPlayer', 'CKContainer', 'AVVideoComposition', 'NKLibrary', 'NSPersistentStore', 'AVCaptureMovieFileOutput', 'HMRoom', 'GKChallenge', 'UITextRange', 'NSURLProtectionSpace', 'ACAccountStore', 'MPSkipIntervalCommand', 'NSComparisonPredicate', 'HMHome', 'PHVideoRequestOptions', 'NSOutputStream', 'MPSkipIntervalCommandEvent', 'PKAddPassesViewController', 'UITextSelectionRect', 'CTTelephonyNetworkInfo', 'AVTextStyleRule', 'NSFetchedPropertyDescription', 'UIPageViewController', 'CATransformLayer', 'UICollectionViewController', 'AVAudioNode', 'MCNearbyServiceAdvertiser', 'NSObject', 'PHAsset', 'GKLeaderboardViewController', 'CKQueryCursor', 'MPMusicPlayerController', 'MKOverlayPathRenderer', 'CMPedometerData', 'HMService', 'SKFieldNode', 'GKAchievement', 'WKUserContentController', 'AVAssetTrack', 'TWRequest', 'SKLabelNode', 'AVCaptureBracketedStillImageSettings', 'MIDINetworkHost', 'MPMediaPredicate', 'AVFrameRateRange', 'MTLTextureDescriptor', 'MTLVertexBufferLayoutDescriptor', 'MPFeedbackCommandEvent', 'UIUserNotificationAction', 'HKStatisticsQuery', 'SCNParticleSystem', 'NSIndexPath', 'AVVideoCompositionRenderContext', 'CADisplayLink', 'HKObserverQuery', 'UIPopoverPresentationController', 'CKQueryOperation', 'CAEAGLLayer', 'NSMutableString', 'NSMessagePort', 'NSURLQueryItem', 'MTLStructMember', 'AVAudioSessionChannelDescription', 'GLKView', 'UIActivityViewController', 'GKAchievementViewController', 'GKTurnBasedParticipant', 'NSURLProtocol', 'NSUserDefaults', 'NSCalendar', 'SKKeyframeSequence', 'AVMetadataItemFilter', 'CKModifyRecordZonesOperation', 'WKPreferences', 'NSMethodSignature', 'NSRegularExpression', 'EAGLSharegroup', 'AVPlayerItemVideoOutput', 'PHContentEditingInputRequestOptions', 'GKMatch', 'CIColor', 'UIDictationPhrase'}
16
+ COCOA_PROTOCOLS = {'SKStoreProductViewControllerDelegate', 'AVVideoCompositionInstruction', 'AVAudioSessionDelegate', 'GKMatchDelegate', 'NSFileManagerDelegate', 'UILayoutSupport', 'NSCopying', 'UIPrintInteractionControllerDelegate', 'QLPreviewControllerDataSource', 'SKProductsRequestDelegate', 'NSTextStorageDelegate', 'MCBrowserViewControllerDelegate', 'MTLComputeCommandEncoder', 'SCNSceneExportDelegate', 'UISearchResultsUpdating', 'MFMailComposeViewControllerDelegate', 'MTLBlitCommandEncoder', 'NSDecimalNumberBehaviors', 'PHContentEditingController', 'NSMutableCopying', 'UIActionSheetDelegate', 'UIViewControllerTransitioningDelegate', 'UIAlertViewDelegate', 'AVAudioPlayerDelegate', 'MKReverseGeocoderDelegate', 'NSCoding', 'UITextInputTokenizer', 'GKFriendRequestComposeViewControllerDelegate', 'UIActivityItemSource', 'NSCacheDelegate', 'UIAdaptivePresentationControllerDelegate', 'GKAchievementViewControllerDelegate', 'UIViewControllerTransitionCoordinator', 'EKEventEditViewDelegate', 'NSURLConnectionDelegate', 'UITableViewDelegate', 'GKPeerPickerControllerDelegate', 'UIGuidedAccessRestrictionDelegate', 'AVSpeechSynthesizerDelegate', 'AVAudio3DMixing', 'AVPlayerItemLegibleOutputPushDelegate', 'ADInterstitialAdDelegate', 'HMAccessoryBrowserDelegate', 'AVAssetResourceLoaderDelegate', 'UITabBarControllerDelegate', 'CKRecordValue', 'SKPaymentTransactionObserver', 'AVCaptureAudioDataOutputSampleBufferDelegate', 'UIInputViewAudioFeedback', 'GKChallengeListener', 'SKSceneDelegate', 'UIPickerViewDelegate', 'UIWebViewDelegate', 'UIApplicationDelegate', 'GKInviteEventListener', 'MPMediaPlayback', 'MyClassJavaScriptMethods', 'AVAsynchronousKeyValueLoading', 'QLPreviewItem', 'SCNBoundingVolume', 'NSPortDelegate', 'UIContentContainer', 'SCNNodeRendererDelegate', 'SKRequestDelegate', 'SKPhysicsContactDelegate', 'HMAccessoryDelegate', 'UIPageViewControllerDataSource', 'SCNSceneRendererDelegate', 'SCNPhysicsContactDelegate', 'MKMapViewDelegate', 'AVPlayerItemOutputPushDelegate', 'UICollectionViewDelegate', 'UIImagePickerControllerDelegate', 'MTLRenderCommandEncoder', 'PKPaymentAuthorizationViewControllerDelegate', 'UIToolbarDelegate', 'WKUIDelegate', 'SCNActionable', 'NSURLConnectionDataDelegate', 'MKOverlay', 'CBCentralManagerDelegate', 'JSExport', 'NSTextLayoutOrientationProvider', 'UIPickerViewDataSource', 'PKPushRegistryDelegate', 'UIViewControllerTransitionCoordinatorContext', 'NSLayoutManagerDelegate', 'MTLLibrary', 'NSFetchedResultsControllerDelegate', 'ABPeoplePickerNavigationControllerDelegate', 'MTLResource', 'NSDiscardableContent', 'UITextFieldDelegate', 'MTLBuffer', 'MTLSamplerState', 'GKGameCenterControllerDelegate', 'MPMediaPickerControllerDelegate', 'UISplitViewControllerDelegate', 'UIAppearance', 'UIPickerViewAccessibilityDelegate', 'UITraitEnvironment', 'UIScrollViewAccessibilityDelegate', 'ADBannerViewDelegate', 'MPPlayableContentDataSource', 'MTLComputePipelineState', 'NSURLSessionDelegate', 'MTLCommandBuffer', 'NSXMLParserDelegate', 'UIViewControllerRestoration', 'UISearchBarDelegate', 'UIBarPositioning', 'CBPeripheralDelegate', 'UISearchDisplayDelegate', 'CAAction', 'PKAddPassesViewControllerDelegate', 'MCNearbyServiceAdvertiserDelegate', 'MTLDepthStencilState', 'GKTurnBasedMatchmakerViewControllerDelegate', 'MPPlayableContentDelegate', 'AVCaptureVideoDataOutputSampleBufferDelegate', 'UIAppearanceContainer', 'UIStateRestoring', 'UITextDocumentProxy', 'MTLDrawable', 'NSURLSessionTaskDelegate', 'NSFilePresenter', 'AVAudioStereoMixing', 'UIViewControllerContextTransitioning', 'UITextInput', 'CBPeripheralManagerDelegate', 'UITextInputDelegate', 'NSFastEnumeration', 'NSURLAuthenticationChallengeSender', 'SCNProgramDelegate', 'AVVideoCompositing', 'SCNAnimatable', 'NSSecureCoding', 'MCAdvertiserAssistantDelegate', 'GKLocalPlayerListener', 'GLKNamedEffect', 'UIPopoverControllerDelegate', 'AVCaptureMetadataOutputObjectsDelegate', 'NSExtensionRequestHandling', 'UITextSelecting', 'UIPrinterPickerControllerDelegate', 'NCWidgetProviding', 'MTLCommandEncoder', 'NSURLProtocolClient', 'MFMessageComposeViewControllerDelegate', 'UIVideoEditorControllerDelegate', 'WKNavigationDelegate', 'GKSavedGameListener', 'UITableViewDataSource', 'MTLFunction', 'EKCalendarChooserDelegate', 'NSUserActivityDelegate', 'UICollisionBehaviorDelegate', 'NSStreamDelegate', 'MCNearbyServiceBrowserDelegate', 'HMHomeDelegate', 'UINavigationControllerDelegate', 'MCSessionDelegate', 'UIDocumentPickerDelegate', 'UIViewControllerInteractiveTransitioning', 'GKTurnBasedEventListener', 'SCNSceneRenderer', 'MTLTexture', 'GLKViewDelegate', 'EAAccessoryDelegate', 'WKScriptMessageHandler', 'PHPhotoLibraryChangeObserver', 'NSKeyedUnarchiverDelegate', 'AVPlayerItemMetadataOutputPushDelegate', 'NSMachPortDelegate', 'SCNShadable', 'UIPopoverBackgroundViewMethods', 'UIDocumentMenuDelegate', 'UIBarPositioningDelegate', 'ABPersonViewControllerDelegate', 'NSNetServiceBrowserDelegate', 'EKEventViewDelegate', 'UIScrollViewDelegate', 'NSURLConnectionDownloadDelegate', 'UIGestureRecognizerDelegate', 'UINavigationBarDelegate', 'AVAudioMixing', 'NSFetchedResultsSectionInfo', 'UIDocumentInteractionControllerDelegate', 'MTLParallelRenderCommandEncoder', 'QLPreviewControllerDelegate', 'UIAccessibilityReadingContent', 'ABUnknownPersonViewControllerDelegate', 'GLKViewControllerDelegate', 'UICollectionViewDelegateFlowLayout', 'UIPopoverPresentationControllerDelegate', 'UIDynamicAnimatorDelegate', 'NSTextAttachmentContainer', 'MKAnnotation', 'UIAccessibilityIdentification', 'UICoordinateSpace', 'ABNewPersonViewControllerDelegate', 'MTLDevice', 'CAMediaTiming', 'AVCaptureFileOutputRecordingDelegate', 'HMHomeManagerDelegate', 'UITextViewDelegate', 'UITabBarDelegate', 'GKLeaderboardViewControllerDelegate', 'UISearchControllerDelegate', 'EAWiFiUnconfiguredAccessoryBrowserDelegate', 'UITextInputTraits', 'MTLRenderPipelineState', 'GKVoiceChatClient', 'UIKeyInput', 'UICollectionViewDataSource', 'SCNTechniqueSupport', 'NSLocking', 'AVCaptureFileOutputDelegate', 'GKChallengeEventHandlerDelegate', 'UIObjectRestoration', 'CIFilterConstructor', 'AVPlayerItemOutputPullDelegate', 'EAGLDrawable', 'AVVideoCompositionValidationHandling', 'UIViewControllerAnimatedTransitioning', 'NSURLSessionDownloadDelegate', 'UIAccelerometerDelegate', 'UIPageViewControllerDelegate', 'MTLCommandQueue', 'UIDataSourceModelAssociation', 'AVAudioRecorderDelegate', 'GKSessionDelegate', 'NSKeyedArchiverDelegate', 'CAMetalDrawable', 'UIDynamicItem', 'CLLocationManagerDelegate', 'NSMetadataQueryDelegate', 'NSNetServiceDelegate', 'GKMatchmakerViewControllerDelegate', 'NSURLSessionDataDelegate'}
17
+ COCOA_PRIMITIVES = {'ROTAHeader', '__CFBundle', 'MortSubtable', 'AudioFilePacketTableInfo', 'CGPDFOperatorTable', 'KerxStateEntry', 'ExtendedTempoEvent', 'CTParagraphStyleSetting', 'OpaqueMIDIPort', '_GLKMatrix3', '_GLKMatrix2', '_GLKMatrix4', 'ExtendedControlEvent', 'CAFAudioDescription', 'OpaqueCMBlockBuffer', 'CGTextDrawingMode', 'EKErrorCode', 'gss_buffer_desc_struct', 'AudioUnitParameterInfo', '__SCPreferences', '__CTFrame', '__CTLine', 'AudioFile_SMPTE_Time', 'gss_krb5_lucid_context_v1', 'OpaqueJSValue', 'TrakTableEntry', 'AudioFramePacketTranslation', 'CGImageSource', 'OpaqueJSPropertyNameAccumulator', 'JustPCGlyphRepeatAddAction', '__CFBinaryHeap', 'OpaqueMIDIThruConnection', 'opaqueCMBufferQueue', 'OpaqueMusicSequence', 'MortRearrangementSubtable', 'MixerDistanceParams', 'MorxSubtable', 'MIDIObjectPropertyChangeNotification', 'SFNTLookupSegment', 'CGImageMetadataErrors', 'CGPath', 'OpaqueMIDIEndpoint', 'AudioComponentPlugInInterface', 'gss_ctx_id_t_desc_struct', 'sfntFontFeatureSetting', 'OpaqueJSContextGroup', '__SCNetworkConnection', 'AudioUnitParameterValueTranslation', 'CGImageMetadataType', 'CGPattern', 'AudioFileTypeAndFormatID', 'CGContext', 'AUNodeInteraction', 'SFNTLookupTable', 'JustPCDecompositionAction', 'KerxControlPointHeader', 'AudioStreamPacketDescription', 'KernSubtableHeader', '__SecCertificate', 'AUMIDIOutputCallbackStruct', 'MIDIMetaEvent', 'AudioQueueChannelAssignment', 'AnchorPoint', 'JustTable', '__CFNetService', 'CF_BRIDGED_TYPE', 'gss_krb5_lucid_key', 'CGPDFDictionary', 'KerxSubtableHeader', 'CAF_UUID_ChunkHeader', 'gss_krb5_cfx_keydata', 'OpaqueJSClass', 'CGGradient', 'OpaqueMIDISetup', 'JustPostcompTable', '__CTParagraphStyle', 'AudioUnitParameterHistoryInfo', 'OpaqueJSContext', 'CGShading', 'MIDIThruConnectionParams', 'BslnFormat0Part', 'SFNTLookupSingle', '__CFHost', '__SecRandom', '__CTFontDescriptor', '_NSRange', 'sfntDirectory', 'AudioQueueLevelMeterState', 'CAFPositionPeak', 'PropLookupSegment', '__CVOpenGLESTextureCache', 'sfntInstance', '_GLKQuaternion', 'AnkrTable', '__SCNetworkProtocol', 'CAFFileHeader', 'KerxOrderedListHeader', 'CGBlendMode', 'STXEntryOne', 'CAFRegion', 'SFNTLookupTrimmedArrayHeader', 'SCNMatrix4', 'KerxControlPointEntry', 'OpaqueMusicTrack', '_GLKVector4', 'gss_OID_set_desc_struct', 'OpaqueMusicPlayer', '_CFHTTPAuthentication', 'CGAffineTransform', 'CAFMarkerChunk', 'AUHostIdentifier', 'ROTAGlyphEntry', 'BslnTable', 'gss_krb5_lucid_context_version', '_GLKMatrixStack', 'CGImage', 'KernStateEntry', 'SFNTLookupSingleHeader', 'MortLigatureSubtable', 'CAFUMIDChunk', 'SMPTETime', 'CAFDataChunk', 'CGPDFStream', 'AudioFileRegionList', 'STEntryTwo', 'SFNTLookupBinarySearchHeader', 'OpbdTable', '__CTGlyphInfo', 'BslnFormat2Part', 'KerxIndexArrayHeader', 'TrakTable', 'KerxKerningPair', '__CFBitVector', 'KernVersion0SubtableHeader', 'OpaqueAudioComponentInstance', 'AudioChannelLayout', '__CFUUID', 'MIDISysexSendRequest', '__CFNumberFormatter', 'CGImageSourceStatus', 'AudioFileMarkerList', 'AUSamplerBankPresetData', 'CGDataProvider', 'AudioFormatInfo', '__SecIdentity', 'sfntCMapExtendedSubHeader', 'MIDIChannelMessage', 'KernOffsetTable', 'CGColorSpaceModel', 'MFMailComposeErrorCode', 'CGFunction', '__SecTrust', 'AVAudio3DAngularOrientation', 'CGFontPostScriptFormat', 'KernStateHeader', 'AudioUnitCocoaViewInfo', 'CGDataConsumer', 'OpaqueMIDIDevice', 'KernVersion0Header', 'AnchorPointTable', 'CGImageDestination', 'CAFInstrumentChunk', 'AudioUnitMeterClipping', 'MorxChain', '__CTFontCollection', 'STEntryOne', 'STXEntryTwo', 'ExtendedNoteOnEvent', 'CGColorRenderingIntent', 'KerxSimpleArrayHeader', 'MorxTable', '_GLKVector3', '_GLKVector2', 'MortTable', 'CGPDFBox', 'AudioUnitParameterValueFromString', '__CFSocket', 'ALCdevice_struct', 'MIDINoteMessage', 'sfntFeatureHeader', 'CGRect', '__SCNetworkInterface', '__CFTree', 'MusicEventUserData', 'TrakTableData', 'GCQuaternion', 'MortContextualSubtable', '__CTRun', 'AudioUnitFrequencyResponseBin', 'MortChain', 'MorxInsertionSubtable', 'CGImageMetadata', 'gss_auth_identity', 'AudioUnitMIDIControlMapping', 'CAFChunkHeader', 'CGImagePropertyOrientation', 'CGPDFScanner', 'OpaqueMusicEventIterator', 'sfntDescriptorHeader', 'AudioUnitNodeConnection', 'OpaqueMIDIDeviceList', 'ExtendedAudioFormatInfo', 'BslnFormat1Part', 'sfntFontDescriptor', 'KernSimpleArrayHeader', '__CFRunLoopObserver', 'CGPatternTiling', 'MIDINotification', 'MorxLigatureSubtable', 'MessageComposeResult', 'MIDIThruConnectionEndpoint', 'MusicDeviceStdNoteParams', 'opaqueCMSimpleQueue', 'ALCcontext_struct', 'OpaqueAudioQueue', 'PropLookupSingle', 'CGInterpolationQuality', 'CGColor', 'AudioOutputUnitStartAtTimeParams', 'gss_name_t_desc_struct', 'CGFunctionCallbacks', 'CAFPacketTableHeader', 'AudioChannelDescription', 'sfntFeatureName', 'MorxContextualSubtable', 'CVSMPTETime', 'AudioValueRange', 'CGTextEncoding', 'AudioStreamBasicDescription', 'AUNodeRenderCallback', 'AudioPanningInfo', 'KerxOrderedListEntry', '__CFAllocator', 'OpaqueJSPropertyNameArray', '__SCDynamicStore', 'OpaqueMIDIEntity', '__CTRubyAnnotation', 'SCNVector4', 'CFHostClientContext', 'CFNetServiceClientContext', 'AudioUnitPresetMAS_SettingData', 'opaqueCMBufferQueueTriggerToken', 'AudioUnitProperty', 'CAFRegionChunk', 'CGPDFString', '__GLsync', '__CFStringTokenizer', 'JustWidthDeltaEntry', 'sfntVariationAxis', '__CFNetDiagnostic', 'CAFOverviewSample', 'sfntCMapEncoding', 'CGVector', '__SCNetworkService', 'opaqueCMSampleBuffer', 'AUHostVersionIdentifier', 'AudioBalanceFade', 'sfntFontRunFeature', 'KerxCoordinateAction', 'sfntCMapSubHeader', 'CVPlanarPixelBufferInfo', 'AUNumVersion', 'AUSamplerInstrumentData', 'AUPreset', '__CTRunDelegate', 'OpaqueAudioQueueProcessingTap', 'KerxTableHeader', '_NSZone', 'OpaqueExtAudioFile', '__CFRunLoopSource', '__CVMetalTextureCache', 'KerxAnchorPointAction', 'OpaqueJSString', 'AudioQueueParameterEvent', '__CFHTTPMessage', 'OpaqueCMClock', 'ScheduledAudioFileRegion', 'STEntryZero', 'AVAudio3DPoint', 'gss_channel_bindings_struct', 'sfntVariationHeader', 'AUChannelInfo', 'UIOffset', 'GLKEffectPropertyPrv', 'KerxStateHeader', 'CGLineJoin', 'CGPDFDocument', '__CFBag', 'KernOrderedListHeader', '__SCNetworkSet', '__SecKey', 'MIDIObjectAddRemoveNotification', 'AudioUnitParameter', 'JustPCActionSubrecord', 'AudioComponentDescription', 'AudioUnitParameterValueName', 'AudioUnitParameterEvent', 'KerxControlPointAction', 'AudioTimeStamp', 'KernKerningPair', 'gss_buffer_set_desc_struct', 'MortFeatureEntry', 'FontVariation', 'CAFStringID', 'LcarCaretClassEntry', 'AudioUnitParameterStringFromValue', 'ACErrorCode', 'ALMXGlyphEntry', 'LtagTable', '__CTTypesetter', 'AuthorizationOpaqueRef', 'UIEdgeInsets', 'CGPathElement', 'CAFMarker', 'KernTableHeader', 'NoteParamsControlValue', 'SSLContext', 'gss_cred_id_t_desc_struct', 'AudioUnitParameterNameInfo', 'CGDataConsumerCallbacks', 'ALMXHeader', 'CGLineCap', 'MIDIControlTransform', 'CGPDFArray', '__SecPolicy', 'AudioConverterPrimeInfo', '__CTTextTab', '__CFNetServiceMonitor', 'AUInputSamplesInOutputCallbackStruct', '__CTFramesetter', 'CGPDFDataFormat', 'STHeader', 'CVPlanarPixelBufferInfo_YCbCrPlanar', 'MIDIValueMap', 'JustDirectionTable', '__SCBondStatus', 'SFNTLookupSegmentHeader', 'OpaqueCMMemoryPool', 'CGPathDrawingMode', 'CGFont', '__SCNetworkReachability', 'AudioClassDescription', 'CGPoint', 'AVAudio3DVectorOrientation', 'CAFStrings', '__CFNetServiceBrowser', 'opaqueMTAudioProcessingTap', 'sfntNameRecord', 'CGPDFPage', 'CGLayer', 'ComponentInstanceRecord', 'CAFInfoStrings', 'HostCallbackInfo', 'MusicDeviceNoteParams', 'OpaqueVTCompressionSession', 'KernIndexArrayHeader', 'CVPlanarPixelBufferInfo_YCbCrBiPlanar', 'MusicTrackLoopInfo', 'opaqueCMFormatDescription', 'STClassTable', 'sfntDirectoryEntry', 'OpaqueCMTimebase', 'CGDataProviderDirectCallbacks', 'MIDIPacketList', 'CAFOverviewChunk', 'MIDIPacket', 'ScheduledAudioSlice', 'CGDataProviderSequentialCallbacks', 'AudioBuffer', 'MorxRearrangementSubtable', 'CGPatternCallbacks', 'AUDistanceAttenuationData', 'MIDIIOErrorNotification', 'CGPDFContentStream', 'IUnknownVTbl', 'MIDITransform', 'MortInsertionSubtable', 'CABarBeatTime', 'AudioBufferList', '__CVBuffer', 'AURenderCallbackStruct', 'STXEntryZero', 'JustPCDuctilityAction', 'OpaqueAudioQueueTimeline', 'VTDecompressionOutputCallbackRecord', 'OpaqueMIDIClient', '__CFPlugInInstance', 'AudioQueueBuffer', '__CFFileDescriptor', 'AudioUnitConnection', '_GKTurnBasedExchangeStatus', 'LcarCaretTable', 'CVPlanarComponentInfo', 'JustWidthDeltaGroup', 'OpaqueAudioComponent', 'ParameterEvent', '__CVPixelBufferPool', '__CTFont', 'CGColorSpace', 'CGSize', 'AUDependentParameter', 'MIDIDriverInterface', 'gss_krb5_rfc1964_keydata', '__CFDateFormatter', 'LtagStringRange', 'OpaqueVTDecompressionSession', 'gss_iov_buffer_desc_struct', 'AUPresetEvent', 'PropTable', 'KernOrderedListEntry', 'CF_BRIDGED_MUTABLE_TYPE', 'gss_OID_desc_struct', 'AudioUnitPresetMAS_Settings', 'AudioFileMarker', 'JustPCConditionalAddAction', 'BslnFormat3Part', '__CFNotificationCenter', 'MortSwashSubtable', 'AUParameterMIDIMapping', 'SCNVector3', 'OpaqueAudioConverter', 'MIDIRawData', 'sfntNameHeader', '__CFRunLoop', 'MFMailComposeResult', 'CATransform3D', 'OpbdSideValues', 'CAF_SMPTE_Time', '__SecAccessControl', 'JustPCAction', 'OpaqueVTFrameSilo', 'OpaqueVTMultiPassStorage', 'CGPathElementType', 'AudioFormatListItem', 'AudioUnitExternalBuffer', 'AudioFileRegion', 'AudioValueTranslation', 'CGImageMetadataTag', 'CAFPeakChunk', 'AudioBytePacketTranslation', 'sfntCMapHeader', '__CFURLEnumerator', 'STXHeader', 'CGPDFObjectType', 'SFNTLookupArrayHeader'}
20
18
 
21
19
  if __name__ == '__main__': # pragma: no cover
22
20
  import os
@@ -40,24 +38,25 @@ if __name__ == '__main__': # pragma: no cover
40
38
  continue
41
39
 
42
40
  headerFilePath = frameworkHeadersDir + f
43
- content = open(headerFilePath).read()
44
- res = re.findall('(?<=@interface )\w+', content)
41
+ with open(headerFilePath) as f:
42
+ content = f.read()
43
+ res = re.findall(r'(?<=@interface )\w+', content)
45
44
  for r in res:
46
45
  all_interfaces.add(r)
47
46
 
48
- res = re.findall('(?<=@protocol )\w+', content)
47
+ res = re.findall(r'(?<=@protocol )\w+', content)
49
48
  for r in res:
50
49
  all_protocols.add(r)
51
50
 
52
- res = re.findall('(?<=typedef enum )\w+', content)
51
+ res = re.findall(r'(?<=typedef enum )\w+', content)
53
52
  for r in res:
54
53
  all_primitives.add(r)
55
54
 
56
- res = re.findall('(?<=typedef struct )\w+', content)
55
+ res = re.findall(r'(?<=typedef struct )\w+', content)
57
56
  for r in res:
58
57
  all_primitives.add(r)
59
58
 
60
- res = re.findall('(?<=typedef const struct )\w+', content)
59
+ res = re.findall(r'(?<=typedef const struct )\w+', content)
61
60
  for r in res:
62
61
  all_primitives.add(r)
63
62
 
@@ -3,1344 +3,1723 @@
3
3
  pygments.lexers._csound_builtins
4
4
  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
5
5
 
6
- :copyright: Copyright 2006-2015 by the Pygments team, see AUTHORS.
6
+ :copyright: Copyright 2006-2020 by the Pygments team, see AUTHORS.
7
7
  :license: BSD, see LICENSE for details.
8
8
  """
9
9
 
10
- # Opcodes in Csound 6.05 from
11
- # csound --list-opcodes
12
- # except
13
- # cggoto <http://www.csounds.com/manual/html/cggoto.html>
14
- # cigoto <http://www.csounds.com/manual/html/cigoto.html>
15
- # cingoto (undocumented)
16
- # ckgoto <http://www.csounds.com/manual/html/ckgoto.html>
17
- # cngoto <http://www.csounds.com/manual/html/cngoto.html>
18
- # endin <http://www.csounds.com/manual/html/endin.html
19
- # endop <http://www.csounds.com/manual/html/endop.html
20
- # goto <http://www.csounds.com/manual/html/goto.html>
21
- # igoto <http://www.csounds.com/manual/html/igoto.html>
22
- # instr <http://www.csounds.com/manual/html/instr.html>
23
- # kgoto <http://www.csounds.com/manual/html/kgoto.html>
24
- # loop_ge <http://www.csounds.com/manual/html/loop_ge.html>
25
- # loop_gt <http://www.csounds.com/manual/html/loop_gt.html>
26
- # loop_le <http://www.csounds.com/manual/html/loop_le.html>
27
- # loop_lt <http://www.csounds.com/manual/html/loop_lt.html>
28
- # opcode <http://www.csounds.com/manual/html/opcode.html>
29
- # return <http://www.csounds.com/manual/html/return.html>
30
- # rigoto <http://www.csounds.com/manual/html/rigoto.html>
31
- # tigoto <http://www.csounds.com/manual/html/tigoto.html>
32
- # timout <http://www.csounds.com/manual/html/timout.html>
33
- # which are treated as keywords; the scoreline opcodes
34
- # scoreline <http://www.csounds.com/manual/html/scoreline.html>
35
- # scoreline_i <http://www.csounds.com/manual/html/scoreline_i.html>
36
- # which allow Csound Score highlighting; the pyrun opcodes
37
- # <http://www.csounds.com/manual/html/pyrun.html>
38
- # pylrun
39
- # pylruni
40
- # pylrunt
41
- # pyrun
42
- # pyruni
43
- # pyrunt
44
- # which allow Python highlighting; and the Lua opcodes
45
- # lua_exec <http://www.csounds.com/manual/html/lua_exec.html>
46
- # lua_opdef <http://www.csounds.com/manual/html/lua_opdef.html>
47
- # which allow Lua highlighting.
48
- OPCODES = set((
49
- 'ATSadd',
50
- 'ATSaddnz',
51
- 'ATSbufread',
52
- 'ATScross',
53
- 'ATSinfo',
54
- 'ATSinterpread',
55
- 'ATSpartialtap',
56
- 'ATSread',
57
- 'ATSreadnz',
58
- 'ATSsinnoi',
59
- 'FLbox',
60
- 'FLbutBank',
61
- 'FLbutton',
62
- 'FLcloseButton',
63
- 'FLcolor',
64
- 'FLcolor2',
65
- 'FLcount',
66
- 'FLexecButton',
67
- 'FLgetsnap',
68
- 'FLgroup',
69
- 'FLgroupEnd',
70
- 'FLgroup_end',
71
- 'FLhide',
72
- 'FLhvsBox',
73
- 'FLhvsBoxSetValue',
74
- 'FLjoy',
75
- 'FLkeyIn',
76
- 'FLknob',
77
- 'FLlabel',
78
- 'FLloadsnap',
79
- 'FLmouse',
80
- 'FLpack',
81
- 'FLpackEnd',
82
- 'FLpack_end',
83
- 'FLpanel',
84
- 'FLpanelEnd',
85
- 'FLpanel_end',
86
- 'FLprintk',
87
- 'FLprintk2',
88
- 'FLroller',
89
- 'FLrun',
90
- 'FLsavesnap',
91
- 'FLscroll',
92
- 'FLscrollEnd',
93
- 'FLscroll_end',
94
- 'FLsetAlign',
95
- 'FLsetBox',
96
- 'FLsetColor',
97
- 'FLsetColor2',
98
- 'FLsetFont',
99
- 'FLsetPosition',
100
- 'FLsetSize',
101
- 'FLsetSnapGroup',
102
- 'FLsetText',
103
- 'FLsetTextColor',
104
- 'FLsetTextSize',
105
- 'FLsetTextType',
106
- 'FLsetVal',
107
- 'FLsetVal_i',
108
- 'FLsetVali',
109
- 'FLsetsnap',
110
- 'FLshow',
111
- 'FLslidBnk',
112
- 'FLslidBnk2',
113
- 'FLslidBnk2Set',
114
- 'FLslidBnk2Setk',
115
- 'FLslidBnkGetHandle',
116
- 'FLslidBnkSet',
117
- 'FLslidBnkSetk',
118
- 'FLslider',
119
- 'FLtabs',
120
- 'FLtabsEnd',
121
- 'FLtabs_end',
122
- 'FLtext',
123
- 'FLupdate',
124
- 'FLvalue',
125
- 'FLvkeybd',
126
- 'FLvslidBnk',
127
- 'FLvslidBnk2',
128
- 'FLxyin',
129
- 'MixerClear',
130
- 'MixerGetLevel',
131
- 'MixerReceive',
132
- 'MixerSend',
133
- 'MixerSetLevel',
134
- 'MixerSetLevel_i',
135
- 'OSCinit',
136
- 'OSClisten',
137
- 'OSCsend',
138
- 'a',
139
- 'abs',
140
- 'active',
141
- 'adsr',
142
- 'adsyn',
143
- 'adsynt',
144
- 'adsynt2',
145
- 'aftouch',
146
- 'alpass',
147
- 'alwayson',
148
- 'ampdb',
149
- 'ampdbfs',
150
- 'ampmidi',
151
- 'ampmidid',
152
- 'areson',
153
- 'aresonk',
154
- 'array',
155
- 'atone',
156
- 'atonek',
157
- 'atonex',
158
- 'babo',
159
- 'balance',
160
- 'bamboo',
161
- 'barmodel',
162
- 'bbcutm',
163
- 'bbcuts',
164
- 'betarand',
165
- 'bexprnd',
166
- 'bformdec',
167
- 'bformdec1',
168
- 'bformenc',
169
- 'bformenc1',
170
- 'binit',
171
- 'biquad',
172
- 'biquada',
173
- 'birnd',
174
- 'bqrez',
175
- 'buchla',
176
- 'butbp',
177
- 'butbr',
178
- 'buthp',
179
- 'butlp',
180
- 'butterbp',
181
- 'butterbr',
182
- 'butterhp',
183
- 'butterlp',
184
- 'button',
185
- 'buzz',
186
- 'c2r',
187
- 'cabasa',
188
- 'cauchy',
189
- 'cauchyi',
190
- 'ceil',
191
- 'cell',
192
- 'cent',
193
- 'centroid',
194
- 'ceps',
195
- #'cggoto',
196
- 'chanctrl',
197
- 'changed',
198
- 'chani',
199
- 'chano',
200
- 'chebyshevpoly',
201
- 'checkbox',
202
- 'chn_S',
203
- 'chn_a',
204
- 'chn_k',
205
- 'chnclear',
206
- 'chnexport',
207
- 'chnget',
208
- 'chnmix',
209
- 'chnparams',
210
- 'chnset',
211
- 'chuap',
212
- #'cigoto',
213
- #'cingoto',
214
- #'ckgoto',
215
- 'clear',
216
- 'clfilt',
217
- 'clip',
218
- 'clockoff',
219
- 'clockon',
220
- 'cmplxprod',
221
- #'cngoto',
222
- 'comb',
223
- 'combinv',
224
- 'compilecsd',
225
- 'compileorc',
226
- 'compilestr',
227
- 'compress',
228
- 'connect',
229
- 'control',
230
- 'convle',
231
- 'convolve',
232
- 'copy2ftab',
233
- 'copy2ttab',
234
- 'copya2ftab',
235
- 'copyf2array',
236
- 'cos',
237
- 'cosh',
238
- 'cosinv',
239
- 'cosseg',
240
- 'cossegb',
241
- 'cossegr',
242
- 'cps2pch',
243
- 'cpsmidi',
244
- 'cpsmidib',
245
- 'cpsmidinn',
246
- 'cpsoct',
247
- 'cpspch',
248
- 'cpstmid',
249
- 'cpstun',
250
- 'cpstuni',
251
- 'cpsxpch',
252
- 'cpuprc',
253
- 'cross2',
254
- 'crossfm',
255
- 'crossfmi',
256
- 'crossfmpm',
257
- 'crossfmpmi',
258
- 'crosspm',
259
- 'crosspmi',
260
- 'crunch',
261
- 'ctlchn',
262
- 'ctrl14',
263
- 'ctrl21',
264
- 'ctrl7',
265
- 'ctrlinit',
266
- 'cuserrnd',
267
- 'dam',
268
- 'date',
269
- 'dates',
270
- 'db',
271
- 'dbamp',
272
- 'dbfsamp',
273
- 'dcblock',
274
- 'dcblock2',
275
- 'dconv',
276
- 'delay',
277
- 'delay1',
278
- 'delayk',
279
- 'delayr',
280
- 'delayw',
281
- 'deltap',
282
- 'deltap3',
283
- 'deltapi',
284
- 'deltapn',
285
- 'deltapx',
286
- 'deltapxw',
287
- 'denorm',
288
- 'diff',
289
- 'diskgrain',
290
- 'diskin',
291
- 'diskin2',
292
- 'dispfft',
293
- 'display',
294
- 'distort',
295
- 'distort1',
296
- 'divz',
297
- 'doppler',
298
- 'downsamp',
299
- 'dripwater',
300
- 'dumpk',
301
- 'dumpk2',
302
- 'dumpk3',
303
- 'dumpk4',
304
- 'duserrnd',
305
- 'dust',
306
- 'dust2',
307
- #'endin',
308
- #'endop',
309
- 'envlpx',
310
- 'envlpxr',
311
- 'ephasor',
312
- 'eqfil',
313
- 'evalstr',
314
- 'event',
315
- 'event_i',
316
- 'exciter',
317
- 'exitnow',
318
- 'exp',
319
- 'expcurve',
320
- 'expon',
321
- 'exprand',
322
- 'exprandi',
323
- 'expseg',
324
- 'expsega',
325
- 'expsegb',
326
- 'expsegba',
327
- 'expsegr',
328
- 'fareylen',
329
- 'fareyleni',
330
- 'faustaudio',
331
- 'faustcompile',
332
- 'faustctl',
333
- 'faustgen',
334
- 'fft',
335
- 'fftinv',
336
- 'ficlose',
337
- 'filebit',
338
- 'filelen',
339
- 'filenchnls',
340
- 'filepeak',
341
- 'filesr',
342
- 'filevalid',
343
- 'fillarray',
344
- 'filter2',
345
- 'fin',
346
- 'fini',
347
- 'fink',
348
- 'fiopen',
349
- 'flanger',
350
- 'flashtxt',
351
- 'flooper',
352
- 'flooper2',
353
- 'floor',
354
- 'fluidAllOut',
355
- 'fluidCCi',
356
- 'fluidCCk',
357
- 'fluidControl',
358
- 'fluidEngine',
359
- 'fluidLoad',
360
- 'fluidNote',
361
- 'fluidOut',
362
- 'fluidProgramSelect',
363
- 'fluidSetInterpMethod',
364
- 'fmb3',
365
- 'fmbell',
366
- 'fmmetal',
367
- 'fmpercfl',
368
- 'fmrhode',
369
- 'fmvoice',
370
- 'fmwurlie',
371
- 'fof',
372
- 'fof2',
373
- 'fofilter',
374
- 'fog',
375
- 'fold',
376
- 'follow',
377
- 'follow2',
378
- 'foscil',
379
- 'foscili',
380
- 'fout',
381
- 'fouti',
382
- 'foutir',
383
- 'foutk',
384
- 'fprintks',
385
- 'fprints',
386
- 'frac',
387
- 'fractalnoise',
388
- 'freeverb',
389
- 'ftchnls',
390
- 'ftconv',
391
- 'ftcps',
392
- 'ftfree',
393
- 'ftgen',
394
- 'ftgenonce',
395
- 'ftgentmp',
396
- 'ftlen',
397
- 'ftload',
398
- 'ftloadk',
399
- 'ftlptim',
400
- 'ftmorf',
401
- 'ftresize',
402
- 'ftresizei',
403
- 'ftsave',
404
- 'ftsavek',
405
- 'ftsr',
406
- 'gain',
407
- 'gainslider',
408
- 'gauss',
409
- 'gaussi',
410
- 'gausstrig',
411
- 'gbuzz',
412
- 'genarray',
413
- 'genarray_i',
414
- 'gendy',
415
- 'gendyc',
416
- 'gendyx',
417
- 'getcfg',
418
- 'getcol',
419
- 'getrow',
420
- 'gogobel',
421
- #'goto',
422
- 'grain',
423
- 'grain2',
424
- 'grain3',
425
- 'granule',
426
- 'guiro',
427
- 'harmon',
428
- 'harmon2',
429
- 'harmon3',
430
- 'harmon4',
431
- 'hdf5read',
432
- 'hdf5write',
433
- 'hilbert',
434
- 'hrtfearly',
435
- 'hrtfer',
436
- 'hrtfmove',
437
- 'hrtfmove2',
438
- 'hrtfreverb',
439
- 'hrtfstat',
440
- 'hsboscil',
441
- 'hvs1',
442
- 'hvs2',
443
- 'hvs3',
444
- 'i',
445
- 'iceps',
446
- #'igoto',
447
- 'ihold',
448
- 'imagecreate',
449
- 'imagefree',
450
- 'imagegetpixel',
451
- 'imageload',
452
- 'imagesave',
453
- 'imagesetpixel',
454
- 'imagesize',
455
- 'in',
456
- 'in32',
457
- 'inch',
458
- 'inh',
459
- 'init',
460
- 'initc14',
461
- 'initc21',
462
- 'initc7',
463
- 'inleta',
464
- 'inletf',
465
- 'inletk',
466
- 'inletkid',
467
- 'inletv',
468
- 'ino',
469
- 'inq',
470
- 'inrg',
471
- 'ins',
472
- 'insglobal',
473
- 'insremot',
474
- #'instr',
475
- 'int',
476
- 'integ',
477
- 'interp',
478
- 'invalue',
479
- 'inx',
480
- 'inz',
481
- 'jitter',
482
- 'jitter2',
483
- 'jspline',
484
- 'k',
485
- #'kgoto',
486
- 'ktableseg',
487
- 'lenarray',
488
- 'lentab',
489
- 'lfo',
490
- 'limit',
491
- 'line',
492
- 'linen',
493
- 'linenr',
494
- 'lineto',
495
- 'linrand',
496
- 'linseg',
497
- 'linsegb',
498
- 'linsegr',
499
- 'locsend',
500
- 'locsig',
501
- 'log',
502
- 'log10',
503
- 'log2',
504
- 'logbtwo',
505
- 'logcurve',
506
- #'loop_ge',
507
- #'loop_gt',
508
- #'loop_le',
509
- #'loop_lt',
510
- 'loopseg',
511
- 'loopsegp',
512
- 'looptseg',
513
- 'loopxseg',
514
- 'lorenz',
515
- 'loscil',
516
- 'loscil3',
517
- 'loscilx',
518
- 'lowpass2',
519
- 'lowres',
520
- 'lowresx',
521
- 'lpf18',
522
- 'lpform',
523
- 'lpfreson',
524
- 'lphasor',
525
- 'lpinterp',
526
- 'lposcil',
527
- 'lposcil3',
528
- 'lposcila',
529
- 'lposcilsa',
530
- 'lposcilsa2',
531
- 'lpread',
532
- 'lpreson',
533
- 'lpshold',
534
- 'lpsholdp',
535
- 'lpslot',
536
- #'lua_exec',
537
- 'lua_ikopcall',
538
- #'lua_opdef',
539
- 'mac',
540
- 'maca',
541
- 'madsr',
542
- 'mags',
543
- 'mandel',
544
- 'mandol',
545
- 'maparray',
546
- 'maparray_i',
547
- 'marimba',
548
- 'massign',
549
- 'max',
550
- 'max_k',
551
- 'maxabs',
552
- 'maxabsaccum',
553
- 'maxaccum',
554
- 'maxalloc',
555
- 'maxarray',
556
- 'maxtab',
557
- 'mclock',
558
- 'mdelay',
559
- 'median',
560
- 'mediank',
561
- 'metro',
562
- 'midglobal',
563
- 'midic14',
564
- 'midic21',
565
- 'midic7',
566
- 'midichannelaftertouch',
567
- 'midichn',
568
- 'midicontrolchange',
569
- 'midictrl',
570
- 'mididefault',
571
- 'midifilestatus',
572
- 'midiin',
573
- 'midinoteoff',
574
- 'midinoteoncps',
575
- 'midinoteonkey',
576
- 'midinoteonoct',
577
- 'midinoteonpch',
578
- 'midion',
579
- 'midion2',
580
- 'midiout',
581
- 'midipgm',
582
- 'midipitchbend',
583
- 'midipolyaftertouch',
584
- 'midiprogramchange',
585
- 'miditempo',
586
- 'midremot',
587
- 'min',
588
- 'minabs',
589
- 'minabsaccum',
590
- 'minaccum',
591
- 'minarray',
592
- 'mincer',
593
- 'mintab',
594
- 'mirror',
595
- 'mode',
596
- 'modmatrix',
597
- 'monitor',
598
- 'moog',
599
- 'moogladder',
600
- 'moogvcf',
601
- 'moogvcf2',
602
- 'moscil',
603
- 'mp3bitrate',
604
- 'mp3in',
605
- 'mp3len',
606
- 'mp3nchnls',
607
- 'mp3sr',
608
- 'mpulse',
609
- 'mrtmsg',
610
- 'multitap',
611
- 'mute',
612
- 'mxadsr',
613
- 'nestedap',
614
- 'nlalp',
615
- 'nlfilt',
616
- 'nlfilt2',
617
- 'noise',
618
- 'noteoff',
619
- 'noteon',
620
- 'noteondur',
621
- 'noteondur2',
622
- 'notnum',
623
- 'nreverb',
624
- 'nrpn',
625
- 'nsamp',
626
- 'nstance',
627
- 'nstrnum',
628
- 'ntrpol',
629
- 'octave',
630
- 'octcps',
631
- 'octmidi',
632
- 'octmidib',
633
- 'octmidinn',
634
- 'octpch',
635
- #'opcode',
636
- 'oscbnk',
637
- 'oscil',
638
- 'oscil1',
639
- 'oscil1i',
640
- 'oscil3',
641
- 'oscili',
642
- 'oscilikt',
643
- 'osciliktp',
644
- 'oscilikts',
645
- 'osciln',
646
- 'oscils',
647
- 'oscilx',
648
- 'out',
649
- 'out32',
650
- 'outc',
651
- 'outch',
652
- 'outh',
653
- 'outiat',
654
- 'outic',
655
- 'outic14',
656
- 'outipat',
657
- 'outipb',
658
- 'outipc',
659
- 'outkat',
660
- 'outkc',
661
- 'outkc14',
662
- 'outkpat',
663
- 'outkpb',
664
- 'outkpc',
665
- 'outleta',
666
- 'outletf',
667
- 'outletk',
668
- 'outletkid',
669
- 'outletv',
670
- 'outo',
671
- 'outq',
672
- 'outq1',
673
- 'outq2',
674
- 'outq3',
675
- 'outq4',
676
- 'outrg',
677
- 'outs',
678
- 'outs1',
679
- 'outs2',
680
- 'outvalue',
681
- 'outx',
682
- 'outz',
683
- 'p',
684
- 'pan',
685
- 'pan2',
686
- 'pareq',
687
- 'partials',
688
- 'partikkel',
689
- 'partikkelget',
690
- 'partikkelset',
691
- 'partikkelsync',
692
- 'passign',
693
- 'pcauchy',
694
- 'pchbend',
695
- 'pchmidi',
696
- 'pchmidib',
697
- 'pchmidinn',
698
- 'pchoct',
699
- 'pconvolve',
700
- 'pcount',
701
- 'pdclip',
702
- 'pdhalf',
703
- 'pdhalfy',
704
- 'peak',
705
- 'pgmassign',
706
- 'pgmchn',
707
- 'phaser1',
708
- 'phaser2',
709
- 'phasor',
710
- 'phasorbnk',
711
- 'phs',
712
- 'pindex',
713
- 'pinker',
714
- 'pinkish',
715
- 'pitch',
716
- 'pitchac',
717
- 'pitchamdf',
718
- 'planet',
719
- 'platerev',
720
- 'plltrack',
721
- 'pluck',
722
- 'poisson',
723
- 'pol2rect',
724
- 'polyaft',
725
- 'polynomial',
726
- 'pop',
727
- 'pop_f',
728
- 'port',
729
- 'portk',
730
- 'poscil',
731
- 'poscil3',
732
- 'pow',
733
- 'powershape',
734
- 'powoftwo',
735
- 'prealloc',
736
- 'prepiano',
737
- 'print',
738
- 'print_type',
739
- 'printf',
740
- 'printf_i',
741
- 'printk',
742
- 'printk2',
743
- 'printks',
744
- 'printks2',
745
- 'prints',
746
- 'product',
747
- 'pset',
748
- 'ptable',
749
- 'ptable3',
750
- 'ptablei',
751
- 'ptableiw',
752
- 'ptablew',
753
- 'ptrack',
754
- 'push',
755
- 'push_f',
756
- 'puts',
757
- 'pvadd',
758
- 'pvbufread',
759
- 'pvcross',
760
- 'pvinterp',
761
- 'pvoc',
762
- 'pvread',
763
- 'pvs2array',
764
- 'pvs2tab',
765
- 'pvsadsyn',
766
- 'pvsanal',
767
- 'pvsarp',
768
- 'pvsbandp',
769
- 'pvsbandr',
770
- 'pvsbin',
771
- 'pvsblur',
772
- 'pvsbuffer',
773
- 'pvsbufread',
774
- 'pvsbufread2',
775
- 'pvscale',
776
- 'pvscent',
777
- 'pvsceps',
778
- 'pvscross',
779
- 'pvsdemix',
780
- 'pvsdiskin',
781
- 'pvsdisp',
782
- 'pvsenvftw',
783
- 'pvsfilter',
784
- 'pvsfread',
785
- 'pvsfreeze',
786
- 'pvsfromarray',
787
- 'pvsftr',
788
- 'pvsftw',
789
- 'pvsfwrite',
790
- 'pvsgain',
791
- 'pvsgendy',
792
- 'pvshift',
793
- 'pvsifd',
794
- 'pvsin',
795
- 'pvsinfo',
796
- 'pvsinit',
797
- 'pvslock',
798
- 'pvsmaska',
799
- 'pvsmix',
800
- 'pvsmooth',
801
- 'pvsmorph',
802
- 'pvsosc',
803
- 'pvsout',
804
- 'pvspitch',
805
- 'pvstanal',
806
- 'pvstencil',
807
- 'pvsvoc',
808
- 'pvswarp',
809
- 'pvsynth',
810
- 'pwd',
811
- 'pyassign',
812
- 'pyassigni',
813
- 'pyassignt',
814
- 'pycall',
815
- 'pycall1',
816
- 'pycall1i',
817
- 'pycall1t',
818
- 'pycall2',
819
- 'pycall2i',
820
- 'pycall2t',
821
- 'pycall3',
822
- 'pycall3i',
823
- 'pycall3t',
824
- 'pycall4',
825
- 'pycall4i',
826
- 'pycall4t',
827
- 'pycall5',
828
- 'pycall5i',
829
- 'pycall5t',
830
- 'pycall6',
831
- 'pycall6i',
832
- 'pycall6t',
833
- 'pycall7',
834
- 'pycall7i',
835
- 'pycall7t',
836
- 'pycall8',
837
- 'pycall8i',
838
- 'pycall8t',
839
- 'pycalli',
840
- 'pycalln',
841
- 'pycallni',
842
- 'pycallt',
843
- 'pyeval',
844
- 'pyevali',
845
- 'pyevalt',
846
- 'pyexec',
847
- 'pyexeci',
848
- 'pyexect',
849
- 'pyinit',
850
- 'pylassign',
851
- 'pylassigni',
852
- 'pylassignt',
853
- 'pylcall',
854
- 'pylcall1',
855
- 'pylcall1i',
856
- 'pylcall1t',
857
- 'pylcall2',
858
- 'pylcall2i',
859
- 'pylcall2t',
860
- 'pylcall3',
861
- 'pylcall3i',
862
- 'pylcall3t',
863
- 'pylcall4',
864
- 'pylcall4i',
865
- 'pylcall4t',
866
- 'pylcall5',
867
- 'pylcall5i',
868
- 'pylcall5t',
869
- 'pylcall6',
870
- 'pylcall6i',
871
- 'pylcall6t',
872
- 'pylcall7',
873
- 'pylcall7i',
874
- 'pylcall7t',
875
- 'pylcall8',
876
- 'pylcall8i',
877
- 'pylcall8t',
878
- 'pylcalli',
879
- 'pylcalln',
880
- 'pylcallni',
881
- 'pylcallt',
882
- 'pyleval',
883
- 'pylevali',
884
- 'pylevalt',
885
- 'pylexec',
886
- 'pylexeci',
887
- 'pylexect',
888
- #'pylrun',
889
- #'pylruni',
890
- #'pylrunt',
891
- #'pyrun',
892
- #'pyruni',
893
- #'pyrunt',
894
- 'qinf',
895
- 'qnan',
896
- 'r2c',
897
- 'rand',
898
- 'randh',
899
- 'randi',
900
- 'random',
901
- 'randomh',
902
- 'randomi',
903
- 'rbjeq',
904
- 'readclock',
905
- 'readf',
906
- 'readfi',
907
- 'readk',
908
- 'readk2',
909
- 'readk3',
910
- 'readk4',
911
- 'readks',
912
- 'readscore',
913
- 'readscratch',
914
- 'rect2pol',
915
- 'reinit',
916
- 'release',
917
- 'remoteport',
918
- 'remove',
919
- 'repluck',
920
- 'reson',
921
- 'resonk',
922
- 'resonr',
923
- 'resonx',
924
- 'resonxk',
925
- 'resony',
926
- 'resonz',
927
- 'resyn',
928
- #'return',
929
- 'reverb',
930
- 'reverb2',
931
- 'reverbsc',
932
- 'rewindscore',
933
- 'rezzy',
934
- 'rfft',
935
- 'rifft',
936
- #'rigoto',
937
- 'rireturn',
938
- 'rms',
939
- 'rnd',
940
- 'rnd31',
941
- 'round',
942
- 'rspline',
943
- 'rtclock',
944
- 's16b14',
945
- 's32b14',
946
- 'samphold',
947
- 'sandpaper',
948
- 'scale',
949
- 'scalearray',
950
- 'scalet',
951
- 'scanhammer',
952
- 'scans',
953
- 'scantable',
954
- 'scanu',
955
- 'schedkwhen',
956
- 'schedkwhennamed',
957
- 'schedule',
958
- 'schedwhen',
959
- #'scoreline',
960
- #'scoreline_i',
961
- 'seed',
962
- 'sekere',
963
- 'semitone',
964
- 'sense',
965
- 'sensekey',
966
- 'seqtime',
967
- 'seqtime2',
968
- 'serialBegin',
969
- 'serialEnd',
970
- 'serialFlush',
971
- 'serialPrint',
972
- 'serialRead',
973
- 'serialWrite',
974
- 'serialWrite_i',
975
- 'setcol',
976
- 'setctrl',
977
- 'setksmps',
978
- 'setrow',
979
- 'setscorepos',
980
- 'sfilist',
981
- 'sfinstr',
982
- 'sfinstr3',
983
- 'sfinstr3m',
984
- 'sfinstrm',
985
- 'sfload',
986
- 'sflooper',
987
- 'sfpassign',
988
- 'sfplay',
989
- 'sfplay3',
990
- 'sfplay3m',
991
- 'sfplaym',
992
- 'sfplist',
993
- 'sfpreset',
994
- 'shaker',
995
- 'shiftin',
996
- 'shiftout',
997
- 'signalflowgraph',
998
- 'signum',
999
- 'sin',
1000
- 'sinh',
1001
- 'sininv',
1002
- 'sinsyn',
1003
- 'sleighbells',
1004
- 'slicearray',
1005
- 'slider16',
1006
- 'slider16f',
1007
- 'slider16table',
1008
- 'slider16tablef',
1009
- 'slider32',
1010
- 'slider32f',
1011
- 'slider32table',
1012
- 'slider32tablef',
1013
- 'slider64',
1014
- 'slider64f',
1015
- 'slider64table',
1016
- 'slider64tablef',
1017
- 'slider8',
1018
- 'slider8f',
1019
- 'slider8table',
1020
- 'slider8tablef',
1021
- 'sliderKawai',
1022
- 'sndload',
1023
- 'sndloop',
1024
- 'sndwarp',
1025
- 'sndwarpst',
1026
- 'sockrecv',
1027
- 'sockrecvs',
1028
- 'socksend',
1029
- 'socksends',
1030
- 'soundin',
1031
- 'soundout',
1032
- 'soundouts',
1033
- 'space',
1034
- 'spat3d',
1035
- 'spat3di',
1036
- 'spat3dt',
1037
- 'spdist',
1038
- 'specaddm',
1039
- 'specdiff',
1040
- 'specdisp',
1041
- 'specfilt',
1042
- 'spechist',
1043
- 'specptrk',
1044
- 'specscal',
1045
- 'specsum',
1046
- 'spectrum',
1047
- 'splitrig',
1048
- 'sprintf',
1049
- 'sprintfk',
1050
- 'spsend',
1051
- 'sqrt',
1052
- 'stack',
1053
- 'statevar',
1054
- 'stix',
1055
- 'strcat',
1056
- 'strcatk',
1057
- 'strchar',
1058
- 'strchark',
1059
- 'strcmp',
1060
- 'strcmpk',
1061
- 'strcpy',
1062
- 'strcpyk',
1063
- 'strecv',
1064
- 'streson',
1065
- 'strfromurl',
1066
- 'strget',
1067
- 'strindex',
1068
- 'strindexk',
1069
- 'strlen',
1070
- 'strlenk',
1071
- 'strlower',
1072
- 'strlowerk',
1073
- 'strrindex',
1074
- 'strrindexk',
1075
- 'strset',
1076
- 'strsub',
1077
- 'strsubk',
1078
- 'strtod',
1079
- 'strtodk',
1080
- 'strtol',
1081
- 'strtolk',
1082
- 'strupper',
1083
- 'strupperk',
1084
- 'stsend',
1085
- 'subinstr',
1086
- 'subinstrinit',
1087
- 'sum',
1088
- 'sumarray',
1089
- 'sumtab',
1090
- 'svfilter',
1091
- 'syncgrain',
1092
- 'syncloop',
1093
- 'syncphasor',
1094
- 'system',
1095
- 'system_i',
1096
- 'tab',
1097
- 'tab2pvs',
1098
- 'tab_i',
1099
- 'tabgen',
1100
- 'table',
1101
- 'table3',
1102
- 'table3kt',
1103
- 'tablecopy',
1104
- 'tablefilter',
1105
- 'tablefilteri',
1106
- 'tablegpw',
1107
- 'tablei',
1108
- 'tableicopy',
1109
- 'tableigpw',
1110
- 'tableikt',
1111
- 'tableimix',
1112
- 'tableiw',
1113
- 'tablekt',
1114
- 'tablemix',
1115
- 'tableng',
1116
- 'tablera',
1117
- 'tableseg',
1118
- 'tableshuffle',
1119
- 'tableshufflei',
1120
- 'tablew',
1121
- 'tablewa',
1122
- 'tablewkt',
1123
- 'tablexkt',
1124
- 'tablexseg',
1125
- 'tabmap',
1126
- 'tabmap_i',
1127
- 'tabmorph',
1128
- 'tabmorpha',
1129
- 'tabmorphak',
1130
- 'tabmorphi',
1131
- 'tabplay',
1132
- 'tabrec',
1133
- 'tabslice',
1134
- 'tabsum',
1135
- 'tabw',
1136
- 'tabw_i',
1137
- 'tambourine',
1138
- 'tan',
1139
- 'tanh',
1140
- 'taninv',
1141
- 'taninv2',
1142
- 'tb0',
1143
- 'tb0_init',
1144
- 'tb1',
1145
- 'tb10',
1146
- 'tb10_init',
1147
- 'tb11',
1148
- 'tb11_init',
1149
- 'tb12',
1150
- 'tb12_init',
1151
- 'tb13',
1152
- 'tb13_init',
1153
- 'tb14',
1154
- 'tb14_init',
1155
- 'tb15',
1156
- 'tb15_init',
1157
- 'tb1_init',
1158
- 'tb2',
1159
- 'tb2_init',
1160
- 'tb3',
1161
- 'tb3_init',
1162
- 'tb4',
1163
- 'tb4_init',
1164
- 'tb5',
1165
- 'tb5_init',
1166
- 'tb6',
1167
- 'tb6_init',
1168
- 'tb7',
1169
- 'tb7_init',
1170
- 'tb8',
1171
- 'tb8_init',
1172
- 'tb9',
1173
- 'tb9_init',
1174
- 'tbvcf',
1175
- 'tempest',
1176
- 'tempo',
1177
- 'temposcal',
1178
- 'tempoval',
1179
- #'tigoto',
1180
- 'timedseq',
1181
- 'timeinstk',
1182
- 'timeinsts',
1183
- 'timek',
1184
- 'times',
1185
- #'timout',
1186
- 'tival',
1187
- 'tlineto',
1188
- 'tone',
1189
- 'tonek',
1190
- 'tonex',
1191
- 'tradsyn',
1192
- 'trandom',
1193
- 'transeg',
1194
- 'transegb',
1195
- 'transegr',
1196
- 'trcross',
1197
- 'trfilter',
1198
- 'trhighest',
1199
- 'trigger',
1200
- 'trigseq',
1201
- 'trirand',
1202
- 'trlowest',
1203
- 'trmix',
1204
- 'trscale',
1205
- 'trshift',
1206
- 'trsplit',
1207
- 'turnoff',
1208
- 'turnoff2',
1209
- 'turnon',
1210
- 'unirand',
1211
- 'unwrap',
1212
- 'upsamp',
1213
- 'urd',
1214
- 'vactrol',
1215
- 'vadd',
1216
- 'vadd_i',
1217
- 'vaddv',
1218
- 'vaddv_i',
1219
- 'vaget',
1220
- 'valpass',
1221
- 'vaset',
1222
- 'vbap',
1223
- 'vbap16',
1224
- 'vbap4',
1225
- 'vbap4move',
1226
- 'vbap8',
1227
- 'vbap8move',
1228
- 'vbapg',
1229
- 'vbapgmove',
1230
- 'vbaplsinit',
1231
- 'vbapmove',
1232
- 'vbapz',
1233
- 'vbapzmove',
1234
- 'vcella',
1235
- 'vco',
1236
- 'vco2',
1237
- 'vco2ft',
1238
- 'vco2ift',
1239
- 'vco2init',
1240
- 'vcomb',
1241
- 'vcopy',
1242
- 'vcopy_i',
1243
- 'vdel_k',
1244
- 'vdelay',
1245
- 'vdelay3',
1246
- 'vdelayk',
1247
- 'vdelayx',
1248
- 'vdelayxq',
1249
- 'vdelayxs',
1250
- 'vdelayxw',
1251
- 'vdelayxwq',
1252
- 'vdelayxws',
1253
- 'vdivv',
1254
- 'vdivv_i',
1255
- 'vecdelay',
1256
- 'veloc',
1257
- 'vexp',
1258
- 'vexp_i',
1259
- 'vexpseg',
1260
- 'vexpv',
1261
- 'vexpv_i',
1262
- 'vibes',
1263
- 'vibr',
1264
- 'vibrato',
1265
- 'vincr',
1266
- 'vlimit',
1267
- 'vlinseg',
1268
- 'vlowres',
1269
- 'vmap',
1270
- 'vmirror',
1271
- 'vmult',
1272
- 'vmult_i',
1273
- 'vmultv',
1274
- 'vmultv_i',
1275
- 'voice',
1276
- 'vosim',
1277
- 'vphaseseg',
1278
- 'vport',
1279
- 'vpow',
1280
- 'vpow_i',
1281
- 'vpowv',
1282
- 'vpowv_i',
1283
- 'vpvoc',
1284
- 'vrandh',
1285
- 'vrandi',
1286
- 'vsubv',
1287
- 'vsubv_i',
1288
- 'vtaba',
1289
- 'vtabi',
1290
- 'vtabk',
1291
- 'vtable1k',
1292
- 'vtablea',
1293
- 'vtablei',
1294
- 'vtablek',
1295
- 'vtablewa',
1296
- 'vtablewi',
1297
- 'vtablewk',
1298
- 'vtabwa',
1299
- 'vtabwi',
1300
- 'vtabwk',
1301
- 'vwrap',
1302
- 'waveset',
1303
- 'weibull',
1304
- 'wgbow',
1305
- 'wgbowedbar',
1306
- 'wgbrass',
1307
- 'wgclar',
1308
- 'wgflute',
1309
- 'wgpluck',
1310
- 'wgpluck2',
1311
- 'wguide1',
1312
- 'wguide2',
1313
- 'wiiconnect',
1314
- 'wiidata',
1315
- 'wiirange',
1316
- 'wiisend',
1317
- 'window',
1318
- 'wrap',
1319
- 'writescratch',
1320
- 'wterrain',
1321
- 'xadsr',
1322
- 'xin',
1323
- 'xout',
1324
- 'xscanmap',
1325
- 'xscans',
1326
- 'xscansmap',
1327
- 'xscanu',
1328
- 'xtratim',
1329
- 'xyin',
1330
- 'zacl',
1331
- 'zakinit',
1332
- 'zamod',
1333
- 'zar',
1334
- 'zarg',
1335
- 'zaw',
1336
- 'zawm',
1337
- 'zfilter2',
1338
- 'zir',
1339
- 'ziw',
1340
- 'ziwm',
1341
- 'zkcl',
1342
- 'zkmod',
1343
- 'zkr',
1344
- 'zkw',
1345
- 'zkwm'
1346
- ))
10
+ # Opcodes in Csound 6.14.0 using:
11
+ # python3 -c "
12
+ # import re
13
+ # from subprocess import Popen, PIPE
14
+ # output = Popen(['csound', '--list-opcodes0'], stderr=PIPE, text=True).communicate()[1]
15
+ # opcodes = output[re.search(r'^\$', output, re.M).end() : re.search(r'^\d+ opcodes\$', output, re.M).start()].split()
16
+ # output = Popen(['csound', '--list-opcodes2'], stderr=PIPE, text=True).communicate()[1]
17
+ # all_opcodes = output[re.search(r'^\$', output, re.M).end() : re.search(r'^\d+ opcodes\$', output, re.M).start()].split()
18
+ # deprecated_opcodes = [opcode for opcode in all_opcodes if opcode not in opcodes]
19
+ # # Remove opcodes that csound.py treats as keywords.
20
+ # keyword_opcodes = [
21
+ # 'cggoto', # https://csound.com/docs/manual/cggoto.html
22
+ # 'cigoto', # https://csound.com/docs/manual/cigoto.html
23
+ # 'cingoto', # (undocumented)
24
+ # 'ckgoto', # https://csound.com/docs/manual/ckgoto.html
25
+ # 'cngoto', # https://csound.com/docs/manual/cngoto.html
26
+ # 'cnkgoto', # (undocumented)
27
+ # 'endin', # https://csound.com/docs/manual/endin.html
28
+ # 'endop', # https://csound.com/docs/manual/endop.html
29
+ # 'goto', # https://csound.com/docs/manual/goto.html
30
+ # 'igoto', # https://csound.com/docs/manual/igoto.html
31
+ # 'instr', # https://csound.com/docs/manual/instr.html
32
+ # 'kgoto', # https://csound.com/docs/manual/kgoto.html
33
+ # 'loop_ge', # https://csound.com/docs/manual/loop_ge.html
34
+ # 'loop_gt', # https://csound.com/docs/manual/loop_gt.html
35
+ # 'loop_le', # https://csound.com/docs/manual/loop_le.html
36
+ # 'loop_lt', # https://csound.com/docs/manual/loop_lt.html
37
+ # 'opcode', # https://csound.com/docs/manual/opcode.html
38
+ # 'reinit', # https://csound.com/docs/manual/reinit.html
39
+ # 'return', # https://csound.com/docs/manual/return.html
40
+ # 'rireturn', # https://csound.com/docs/manual/rireturn.html
41
+ # 'rigoto', # https://csound.com/docs/manual/rigoto.html
42
+ # 'tigoto', # https://csound.com/docs/manual/tigoto.html
43
+ # 'timout' # https://csound.com/docs/manual/timout.html
44
+ # ]
45
+ # opcodes = [opcode for opcode in opcodes if opcode not in keyword_opcodes]
46
+ # newline = '\n'
47
+ # print(f'''OPCODES = set(\'''
48
+ # {newline.join(opcodes)}
49
+ # \'''.split())
50
+ #
51
+ # DEPRECATED_OPCODES = set(\'''
52
+ # {newline.join(deprecated_opcodes)}
53
+ # \'''.split())
54
+ # ''')
55
+ # "
56
+
57
+ OPCODES = set('''
58
+ ATSadd
59
+ ATSaddnz
60
+ ATSbufread
61
+ ATScross
62
+ ATSinfo
63
+ ATSinterpread
64
+ ATSpartialtap
65
+ ATSread
66
+ ATSreadnz
67
+ ATSsinnoi
68
+ FLbox
69
+ FLbutBank
70
+ FLbutton
71
+ FLcloseButton
72
+ FLcolor
73
+ FLcolor2
74
+ FLcount
75
+ FLexecButton
76
+ FLgetsnap
77
+ FLgroup
78
+ FLgroupEnd
79
+ FLgroup_end
80
+ FLhide
81
+ FLhvsBox
82
+ FLhvsBoxSetValue
83
+ FLjoy
84
+ FLkeyIn
85
+ FLknob
86
+ FLlabel
87
+ FLloadsnap
88
+ FLmouse
89
+ FLpack
90
+ FLpackEnd
91
+ FLpack_end
92
+ FLpanel
93
+ FLpanelEnd
94
+ FLpanel_end
95
+ FLprintk
96
+ FLprintk2
97
+ FLroller
98
+ FLrun
99
+ FLsavesnap
100
+ FLscroll
101
+ FLscrollEnd
102
+ FLscroll_end
103
+ FLsetAlign
104
+ FLsetBox
105
+ FLsetColor
106
+ FLsetColor2
107
+ FLsetFont
108
+ FLsetPosition
109
+ FLsetSize
110
+ FLsetSnapGroup
111
+ FLsetText
112
+ FLsetTextColor
113
+ FLsetTextSize
114
+ FLsetTextType
115
+ FLsetVal
116
+ FLsetVal_i
117
+ FLsetVali
118
+ FLsetsnap
119
+ FLshow
120
+ FLslidBnk
121
+ FLslidBnk2
122
+ FLslidBnk2Set
123
+ FLslidBnk2Setk
124
+ FLslidBnkGetHandle
125
+ FLslidBnkSet
126
+ FLslidBnkSetk
127
+ FLslider
128
+ FLtabs
129
+ FLtabsEnd
130
+ FLtabs_end
131
+ FLtext
132
+ FLupdate
133
+ FLvalue
134
+ FLvkeybd
135
+ FLvslidBnk
136
+ FLvslidBnk2
137
+ FLxyin
138
+ JackoAudioIn
139
+ JackoAudioInConnect
140
+ JackoAudioOut
141
+ JackoAudioOutConnect
142
+ JackoFreewheel
143
+ JackoInfo
144
+ JackoInit
145
+ JackoMidiInConnect
146
+ JackoMidiOut
147
+ JackoMidiOutConnect
148
+ JackoNoteOut
149
+ JackoOn
150
+ JackoTransport
151
+ K35_hpf
152
+ K35_lpf
153
+ MixerClear
154
+ MixerGetLevel
155
+ MixerReceive
156
+ MixerSend
157
+ MixerSetLevel
158
+ MixerSetLevel_i
159
+ OSCbundle
160
+ OSCcount
161
+ OSCinit
162
+ OSCinitM
163
+ OSClisten
164
+ OSCraw
165
+ OSCsend
166
+ OSCsend_lo
167
+ S
168
+ STKBandedWG
169
+ STKBeeThree
170
+ STKBlowBotl
171
+ STKBlowHole
172
+ STKBowed
173
+ STKBrass
174
+ STKClarinet
175
+ STKDrummer
176
+ STKFMVoices
177
+ STKFlute
178
+ STKHevyMetl
179
+ STKMandolin
180
+ STKModalBar
181
+ STKMoog
182
+ STKPercFlut
183
+ STKPlucked
184
+ STKResonate
185
+ STKRhodey
186
+ STKSaxofony
187
+ STKShakers
188
+ STKSimple
189
+ STKSitar
190
+ STKStifKarp
191
+ STKTubeBell
192
+ STKVoicForm
193
+ STKWhistle
194
+ STKWurley
195
+ a
196
+ abs
197
+ active
198
+ adsr
199
+ adsyn
200
+ adsynt
201
+ adsynt2
202
+ aftouch
203
+ allpole
204
+ alpass
205
+ alwayson
206
+ ampdb
207
+ ampdbfs
208
+ ampmidi
209
+ ampmidicurve
210
+ ampmidid
211
+ apoleparams
212
+ arduinoRead
213
+ arduinoStart
214
+ arduinoStop
215
+ areson
216
+ aresonk
217
+ atone
218
+ atonek
219
+ atonex
220
+ babo
221
+ balance
222
+ balance2
223
+ bamboo
224
+ barmodel
225
+ bbcutm
226
+ bbcuts
227
+ beadsynt
228
+ beosc
229
+ betarand
230
+ bexprnd
231
+ bformdec1
232
+ bformenc1
233
+ binit
234
+ biquad
235
+ biquada
236
+ birnd
237
+ bob
238
+ bpf
239
+ bpfcos
240
+ bqrez
241
+ butbp
242
+ butbr
243
+ buthp
244
+ butlp
245
+ butterbp
246
+ butterbr
247
+ butterhp
248
+ butterlp
249
+ button
250
+ buzz
251
+ c2r
252
+ cabasa
253
+ cauchy
254
+ cauchyi
255
+ cbrt
256
+ ceil
257
+ cell
258
+ cent
259
+ centroid
260
+ ceps
261
+ cepsinv
262
+ chanctrl
263
+ changed2
264
+ chani
265
+ chano
266
+ chebyshevpoly
267
+ checkbox
268
+ chn_S
269
+ chn_a
270
+ chn_k
271
+ chnclear
272
+ chnexport
273
+ chnget
274
+ chngeta
275
+ chngeti
276
+ chngetk
277
+ chngetks
278
+ chngets
279
+ chnmix
280
+ chnparams
281
+ chnset
282
+ chnseta
283
+ chnseti
284
+ chnsetk
285
+ chnsetks
286
+ chnsets
287
+ chuap
288
+ clear
289
+ clfilt
290
+ clip
291
+ clockoff
292
+ clockon
293
+ cmp
294
+ cmplxprod
295
+ cntCreate
296
+ cntCycles
297
+ cntRead
298
+ cntReset
299
+ cntState
300
+ comb
301
+ combinv
302
+ compilecsd
303
+ compileorc
304
+ compilestr
305
+ compress
306
+ compress2
307
+ connect
308
+ control
309
+ convle
310
+ convolve
311
+ copya2ftab
312
+ copyf2array
313
+ cos
314
+ cosh
315
+ cosinv
316
+ cosseg
317
+ cossegb
318
+ cossegr
319
+ count
320
+ count_i
321
+ cps2pch
322
+ cpsmidi
323
+ cpsmidib
324
+ cpsmidinn
325
+ cpsoct
326
+ cpspch
327
+ cpstmid
328
+ cpstun
329
+ cpstuni
330
+ cpsxpch
331
+ cpumeter
332
+ cpuprc
333
+ cross2
334
+ crossfm
335
+ crossfmi
336
+ crossfmpm
337
+ crossfmpmi
338
+ crosspm
339
+ crosspmi
340
+ crunch
341
+ ctlchn
342
+ ctrl14
343
+ ctrl21
344
+ ctrl7
345
+ ctrlinit
346
+ cuserrnd
347
+ dam
348
+ date
349
+ dates
350
+ db
351
+ dbamp
352
+ dbfsamp
353
+ dcblock
354
+ dcblock2
355
+ dconv
356
+ dct
357
+ dctinv
358
+ deinterleave
359
+ delay
360
+ delay1
361
+ delayk
362
+ delayr
363
+ delayw
364
+ deltap
365
+ deltap3
366
+ deltapi
367
+ deltapn
368
+ deltapx
369
+ deltapxw
370
+ denorm
371
+ diff
372
+ diode_ladder
373
+ directory
374
+ diskgrain
375
+ diskin
376
+ diskin2
377
+ dispfft
378
+ display
379
+ distort
380
+ distort1
381
+ divz
382
+ doppler
383
+ dot
384
+ downsamp
385
+ dripwater
386
+ dssiactivate
387
+ dssiaudio
388
+ dssictls
389
+ dssiinit
390
+ dssilist
391
+ dumpk
392
+ dumpk2
393
+ dumpk3
394
+ dumpk4
395
+ duserrnd
396
+ dust
397
+ dust2
398
+ envlpx
399
+ envlpxr
400
+ ephasor
401
+ eqfil
402
+ evalstr
403
+ event
404
+ event_i
405
+ exciter
406
+ exitnow
407
+ exp
408
+ expcurve
409
+ expon
410
+ exprand
411
+ exprandi
412
+ expseg
413
+ expsega
414
+ expsegb
415
+ expsegba
416
+ expsegr
417
+ fareylen
418
+ fareyleni
419
+ faustaudio
420
+ faustcompile
421
+ faustctl
422
+ faustdsp
423
+ faustgen
424
+ faustplay
425
+ fft
426
+ fftinv
427
+ ficlose
428
+ filebit
429
+ filelen
430
+ filenchnls
431
+ filepeak
432
+ filescal
433
+ filesr
434
+ filevalid
435
+ fillarray
436
+ filter2
437
+ fin
438
+ fini
439
+ fink
440
+ fiopen
441
+ flanger
442
+ flashtxt
443
+ flooper
444
+ flooper2
445
+ floor
446
+ fluidAllOut
447
+ fluidCCi
448
+ fluidCCk
449
+ fluidControl
450
+ fluidEngine
451
+ fluidInfo
452
+ fluidLoad
453
+ fluidNote
454
+ fluidOut
455
+ fluidProgramSelect
456
+ fluidSetInterpMethod
457
+ fmanal
458
+ fmax
459
+ fmb3
460
+ fmbell
461
+ fmin
462
+ fmmetal
463
+ fmod
464
+ fmpercfl
465
+ fmrhode
466
+ fmvoice
467
+ fmwurlie
468
+ fof
469
+ fof2
470
+ fofilter
471
+ fog
472
+ fold
473
+ follow
474
+ follow2
475
+ foscil
476
+ foscili
477
+ fout
478
+ fouti
479
+ foutir
480
+ foutk
481
+ fprintks
482
+ fprints
483
+ frac
484
+ fractalnoise
485
+ framebuffer
486
+ freeverb
487
+ ftaudio
488
+ ftchnls
489
+ ftconv
490
+ ftcps
491
+ ftexists
492
+ ftfree
493
+ ftgen
494
+ ftgenonce
495
+ ftgentmp
496
+ ftlen
497
+ ftload
498
+ ftloadk
499
+ ftlptim
500
+ ftmorf
501
+ ftom
502
+ ftprint
503
+ ftresize
504
+ ftresizei
505
+ ftsamplebank
506
+ ftsave
507
+ ftsavek
508
+ ftset
509
+ ftslice
510
+ ftslicei
511
+ ftsr
512
+ gain
513
+ gainslider
514
+ gauss
515
+ gaussi
516
+ gausstrig
517
+ gbuzz
518
+ genarray
519
+ genarray_i
520
+ gendy
521
+ gendyc
522
+ gendyx
523
+ getcfg
524
+ getcol
525
+ getftargs
526
+ getrow
527
+ getrowlin
528
+ getseed
529
+ gogobel
530
+ grain
531
+ grain2
532
+ grain3
533
+ granule
534
+ gtf
535
+ guiro
536
+ harmon
537
+ harmon2
538
+ harmon3
539
+ harmon4
540
+ hdf5read
541
+ hdf5write
542
+ hilbert
543
+ hilbert2
544
+ hrtfearly
545
+ hrtfmove
546
+ hrtfmove2
547
+ hrtfreverb
548
+ hrtfstat
549
+ hsboscil
550
+ hvs1
551
+ hvs2
552
+ hvs3
553
+ hypot
554
+ i
555
+ ihold
556
+ imagecreate
557
+ imagefree
558
+ imagegetpixel
559
+ imageload
560
+ imagesave
561
+ imagesetpixel
562
+ imagesize
563
+ in
564
+ in32
565
+ inch
566
+ inh
567
+ init
568
+ initc14
569
+ initc21
570
+ initc7
571
+ inleta
572
+ inletf
573
+ inletk
574
+ inletkid
575
+ inletv
576
+ ino
577
+ inq
578
+ inrg
579
+ ins
580
+ insglobal
581
+ insremot
582
+ int
583
+ integ
584
+ interleave
585
+ interp
586
+ invalue
587
+ inx
588
+ inz
589
+ jacktransport
590
+ jitter
591
+ jitter2
592
+ joystick
593
+ jspline
594
+ k
595
+ la_i_add_mc
596
+ la_i_add_mr
597
+ la_i_add_vc
598
+ la_i_add_vr
599
+ la_i_assign_mc
600
+ la_i_assign_mr
601
+ la_i_assign_t
602
+ la_i_assign_vc
603
+ la_i_assign_vr
604
+ la_i_conjugate_mc
605
+ la_i_conjugate_mr
606
+ la_i_conjugate_vc
607
+ la_i_conjugate_vr
608
+ la_i_distance_vc
609
+ la_i_distance_vr
610
+ la_i_divide_mc
611
+ la_i_divide_mr
612
+ la_i_divide_vc
613
+ la_i_divide_vr
614
+ la_i_dot_mc
615
+ la_i_dot_mc_vc
616
+ la_i_dot_mr
617
+ la_i_dot_mr_vr
618
+ la_i_dot_vc
619
+ la_i_dot_vr
620
+ la_i_get_mc
621
+ la_i_get_mr
622
+ la_i_get_vc
623
+ la_i_get_vr
624
+ la_i_invert_mc
625
+ la_i_invert_mr
626
+ la_i_lower_solve_mc
627
+ la_i_lower_solve_mr
628
+ la_i_lu_det_mc
629
+ la_i_lu_det_mr
630
+ la_i_lu_factor_mc
631
+ la_i_lu_factor_mr
632
+ la_i_lu_solve_mc
633
+ la_i_lu_solve_mr
634
+ la_i_mc_create
635
+ la_i_mc_set
636
+ la_i_mr_create
637
+ la_i_mr_set
638
+ la_i_multiply_mc
639
+ la_i_multiply_mr
640
+ la_i_multiply_vc
641
+ la_i_multiply_vr
642
+ la_i_norm1_mc
643
+ la_i_norm1_mr
644
+ la_i_norm1_vc
645
+ la_i_norm1_vr
646
+ la_i_norm_euclid_mc
647
+ la_i_norm_euclid_mr
648
+ la_i_norm_euclid_vc
649
+ la_i_norm_euclid_vr
650
+ la_i_norm_inf_mc
651
+ la_i_norm_inf_mr
652
+ la_i_norm_inf_vc
653
+ la_i_norm_inf_vr
654
+ la_i_norm_max_mc
655
+ la_i_norm_max_mr
656
+ la_i_print_mc
657
+ la_i_print_mr
658
+ la_i_print_vc
659
+ la_i_print_vr
660
+ la_i_qr_eigen_mc
661
+ la_i_qr_eigen_mr
662
+ la_i_qr_factor_mc
663
+ la_i_qr_factor_mr
664
+ la_i_qr_sym_eigen_mc
665
+ la_i_qr_sym_eigen_mr
666
+ la_i_random_mc
667
+ la_i_random_mr
668
+ la_i_random_vc
669
+ la_i_random_vr
670
+ la_i_size_mc
671
+ la_i_size_mr
672
+ la_i_size_vc
673
+ la_i_size_vr
674
+ la_i_subtract_mc
675
+ la_i_subtract_mr
676
+ la_i_subtract_vc
677
+ la_i_subtract_vr
678
+ la_i_t_assign
679
+ la_i_trace_mc
680
+ la_i_trace_mr
681
+ la_i_transpose_mc
682
+ la_i_transpose_mr
683
+ la_i_upper_solve_mc
684
+ la_i_upper_solve_mr
685
+ la_i_vc_create
686
+ la_i_vc_set
687
+ la_i_vr_create
688
+ la_i_vr_set
689
+ la_k_a_assign
690
+ la_k_add_mc
691
+ la_k_add_mr
692
+ la_k_add_vc
693
+ la_k_add_vr
694
+ la_k_assign_a
695
+ la_k_assign_f
696
+ la_k_assign_mc
697
+ la_k_assign_mr
698
+ la_k_assign_t
699
+ la_k_assign_vc
700
+ la_k_assign_vr
701
+ la_k_conjugate_mc
702
+ la_k_conjugate_mr
703
+ la_k_conjugate_vc
704
+ la_k_conjugate_vr
705
+ la_k_current_f
706
+ la_k_current_vr
707
+ la_k_distance_vc
708
+ la_k_distance_vr
709
+ la_k_divide_mc
710
+ la_k_divide_mr
711
+ la_k_divide_vc
712
+ la_k_divide_vr
713
+ la_k_dot_mc
714
+ la_k_dot_mc_vc
715
+ la_k_dot_mr
716
+ la_k_dot_mr_vr
717
+ la_k_dot_vc
718
+ la_k_dot_vr
719
+ la_k_f_assign
720
+ la_k_get_mc
721
+ la_k_get_mr
722
+ la_k_get_vc
723
+ la_k_get_vr
724
+ la_k_invert_mc
725
+ la_k_invert_mr
726
+ la_k_lower_solve_mc
727
+ la_k_lower_solve_mr
728
+ la_k_lu_det_mc
729
+ la_k_lu_det_mr
730
+ la_k_lu_factor_mc
731
+ la_k_lu_factor_mr
732
+ la_k_lu_solve_mc
733
+ la_k_lu_solve_mr
734
+ la_k_mc_set
735
+ la_k_mr_set
736
+ la_k_multiply_mc
737
+ la_k_multiply_mr
738
+ la_k_multiply_vc
739
+ la_k_multiply_vr
740
+ la_k_norm1_mc
741
+ la_k_norm1_mr
742
+ la_k_norm1_vc
743
+ la_k_norm1_vr
744
+ la_k_norm_euclid_mc
745
+ la_k_norm_euclid_mr
746
+ la_k_norm_euclid_vc
747
+ la_k_norm_euclid_vr
748
+ la_k_norm_inf_mc
749
+ la_k_norm_inf_mr
750
+ la_k_norm_inf_vc
751
+ la_k_norm_inf_vr
752
+ la_k_norm_max_mc
753
+ la_k_norm_max_mr
754
+ la_k_qr_eigen_mc
755
+ la_k_qr_eigen_mr
756
+ la_k_qr_factor_mc
757
+ la_k_qr_factor_mr
758
+ la_k_qr_sym_eigen_mc
759
+ la_k_qr_sym_eigen_mr
760
+ la_k_random_mc
761
+ la_k_random_mr
762
+ la_k_random_vc
763
+ la_k_random_vr
764
+ la_k_subtract_mc
765
+ la_k_subtract_mr
766
+ la_k_subtract_vc
767
+ la_k_subtract_vr
768
+ la_k_t_assign
769
+ la_k_trace_mc
770
+ la_k_trace_mr
771
+ la_k_upper_solve_mc
772
+ la_k_upper_solve_mr
773
+ la_k_vc_set
774
+ la_k_vr_set
775
+ lag
776
+ lagud
777
+ lastcycle
778
+ lenarray
779
+ lfo
780
+ limit
781
+ limit1
782
+ lincos
783
+ line
784
+ linen
785
+ linenr
786
+ lineto
787
+ link_beat_force
788
+ link_beat_get
789
+ link_beat_request
790
+ link_create
791
+ link_enable
792
+ link_is_enabled
793
+ link_metro
794
+ link_peers
795
+ link_tempo_get
796
+ link_tempo_set
797
+ linlin
798
+ linrand
799
+ linseg
800
+ linsegb
801
+ linsegr
802
+ liveconv
803
+ locsend
804
+ locsig
805
+ log
806
+ log10
807
+ log2
808
+ logbtwo
809
+ logcurve
810
+ loopseg
811
+ loopsegp
812
+ looptseg
813
+ loopxseg
814
+ lorenz
815
+ loscil
816
+ loscil3
817
+ loscil3phs
818
+ loscilphs
819
+ loscilx
820
+ lowpass2
821
+ lowres
822
+ lowresx
823
+ lpcanal
824
+ lpcfilter
825
+ lpf18
826
+ lpform
827
+ lpfreson
828
+ lphasor
829
+ lpinterp
830
+ lposcil
831
+ lposcil3
832
+ lposcila
833
+ lposcilsa
834
+ lposcilsa2
835
+ lpread
836
+ lpreson
837
+ lpshold
838
+ lpsholdp
839
+ lpslot
840
+ lua_exec
841
+ lua_iaopcall
842
+ lua_iaopcall_off
843
+ lua_ikopcall
844
+ lua_ikopcall_off
845
+ lua_iopcall
846
+ lua_iopcall_off
847
+ lua_opdef
848
+ lufs
849
+ mac
850
+ maca
851
+ madsr
852
+ mags
853
+ mandel
854
+ mandol
855
+ maparray
856
+ maparray_i
857
+ marimba
858
+ massign
859
+ max
860
+ max_k
861
+ maxabs
862
+ maxabsaccum
863
+ maxaccum
864
+ maxalloc
865
+ maxarray
866
+ mclock
867
+ mdelay
868
+ median
869
+ mediank
870
+ metro
871
+ metro2
872
+ mfb
873
+ midglobal
874
+ midiarp
875
+ midic14
876
+ midic21
877
+ midic7
878
+ midichannelaftertouch
879
+ midichn
880
+ midicontrolchange
881
+ midictrl
882
+ mididefault
883
+ midifilestatus
884
+ midiin
885
+ midinoteoff
886
+ midinoteoncps
887
+ midinoteonkey
888
+ midinoteonoct
889
+ midinoteonpch
890
+ midion
891
+ midion2
892
+ midiout
893
+ midiout_i
894
+ midipgm
895
+ midipitchbend
896
+ midipolyaftertouch
897
+ midiprogramchange
898
+ miditempo
899
+ midremot
900
+ min
901
+ minabs
902
+ minabsaccum
903
+ minaccum
904
+ minarray
905
+ mincer
906
+ mirror
907
+ mode
908
+ modmatrix
909
+ monitor
910
+ moog
911
+ moogladder
912
+ moogladder2
913
+ moogvcf
914
+ moogvcf2
915
+ moscil
916
+ mp3bitrate
917
+ mp3in
918
+ mp3len
919
+ mp3nchnls
920
+ mp3scal
921
+ mp3sr
922
+ mpulse
923
+ mrtmsg
924
+ mtof
925
+ mton
926
+ multitap
927
+ mute
928
+ mvchpf
929
+ mvclpf1
930
+ mvclpf2
931
+ mvclpf3
932
+ mvclpf4
933
+ mxadsr
934
+ nchnls_hw
935
+ nestedap
936
+ nlalp
937
+ nlfilt
938
+ nlfilt2
939
+ noise
940
+ noteoff
941
+ noteon
942
+ noteondur
943
+ noteondur2
944
+ notnum
945
+ nreverb
946
+ nrpn
947
+ nsamp
948
+ nstance
949
+ nstrnum
950
+ nstrstr
951
+ ntof
952
+ ntom
953
+ ntrpol
954
+ nxtpow2
955
+ octave
956
+ octcps
957
+ octmidi
958
+ octmidib
959
+ octmidinn
960
+ octpch
961
+ olabuffer
962
+ oscbnk
963
+ oscil
964
+ oscil1
965
+ oscil1i
966
+ oscil3
967
+ oscili
968
+ oscilikt
969
+ osciliktp
970
+ oscilikts
971
+ osciln
972
+ oscils
973
+ oscilx
974
+ out
975
+ out32
976
+ outc
977
+ outch
978
+ outh
979
+ outiat
980
+ outic
981
+ outic14
982
+ outipat
983
+ outipb
984
+ outipc
985
+ outkat
986
+ outkc
987
+ outkc14
988
+ outkpat
989
+ outkpb
990
+ outkpc
991
+ outleta
992
+ outletf
993
+ outletk
994
+ outletkid
995
+ outletv
996
+ outo
997
+ outq
998
+ outq1
999
+ outq2
1000
+ outq3
1001
+ outq4
1002
+ outrg
1003
+ outs
1004
+ outs1
1005
+ outs2
1006
+ outvalue
1007
+ outx
1008
+ outz
1009
+ p
1010
+ p5gconnect
1011
+ p5gdata
1012
+ pan
1013
+ pan2
1014
+ pareq
1015
+ part2txt
1016
+ partials
1017
+ partikkel
1018
+ partikkelget
1019
+ partikkelset
1020
+ partikkelsync
1021
+ passign
1022
+ paulstretch
1023
+ pcauchy
1024
+ pchbend
1025
+ pchmidi
1026
+ pchmidib
1027
+ pchmidinn
1028
+ pchoct
1029
+ pchtom
1030
+ pconvolve
1031
+ pcount
1032
+ pdclip
1033
+ pdhalf
1034
+ pdhalfy
1035
+ peak
1036
+ pgmassign
1037
+ pgmchn
1038
+ phaser1
1039
+ phaser2
1040
+ phasor
1041
+ phasorbnk
1042
+ phs
1043
+ pindex
1044
+ pinker
1045
+ pinkish
1046
+ pitch
1047
+ pitchac
1048
+ pitchamdf
1049
+ planet
1050
+ platerev
1051
+ plltrack
1052
+ pluck
1053
+ poisson
1054
+ pol2rect
1055
+ polyaft
1056
+ polynomial
1057
+ port
1058
+ portk
1059
+ poscil
1060
+ poscil3
1061
+ pow
1062
+ powershape
1063
+ powoftwo
1064
+ pows
1065
+ prealloc
1066
+ prepiano
1067
+ print
1068
+ print_type
1069
+ printarray
1070
+ printf
1071
+ printf_i
1072
+ printk
1073
+ printk2
1074
+ printks
1075
+ printks2
1076
+ println
1077
+ prints
1078
+ printsk
1079
+ product
1080
+ pset
1081
+ ptablew
1082
+ ptrack
1083
+ puts
1084
+ pvadd
1085
+ pvbufread
1086
+ pvcross
1087
+ pvinterp
1088
+ pvoc
1089
+ pvread
1090
+ pvs2array
1091
+ pvs2tab
1092
+ pvsadsyn
1093
+ pvsanal
1094
+ pvsarp
1095
+ pvsbandp
1096
+ pvsbandr
1097
+ pvsbandwidth
1098
+ pvsbin
1099
+ pvsblur
1100
+ pvsbuffer
1101
+ pvsbufread
1102
+ pvsbufread2
1103
+ pvscale
1104
+ pvscent
1105
+ pvsceps
1106
+ pvscfs
1107
+ pvscross
1108
+ pvsdemix
1109
+ pvsdiskin
1110
+ pvsdisp
1111
+ pvsenvftw
1112
+ pvsfilter
1113
+ pvsfread
1114
+ pvsfreeze
1115
+ pvsfromarray
1116
+ pvsftr
1117
+ pvsftw
1118
+ pvsfwrite
1119
+ pvsgain
1120
+ pvshift
1121
+ pvsifd
1122
+ pvsin
1123
+ pvsinfo
1124
+ pvsinit
1125
+ pvslock
1126
+ pvslpc
1127
+ pvsmaska
1128
+ pvsmix
1129
+ pvsmooth
1130
+ pvsmorph
1131
+ pvsosc
1132
+ pvsout
1133
+ pvspitch
1134
+ pvstanal
1135
+ pvstencil
1136
+ pvstrace
1137
+ pvsvoc
1138
+ pvswarp
1139
+ pvsynth
1140
+ pwd
1141
+ pyassign
1142
+ pyassigni
1143
+ pyassignt
1144
+ pycall
1145
+ pycall1
1146
+ pycall1i
1147
+ pycall1t
1148
+ pycall2
1149
+ pycall2i
1150
+ pycall2t
1151
+ pycall3
1152
+ pycall3i
1153
+ pycall3t
1154
+ pycall4
1155
+ pycall4i
1156
+ pycall4t
1157
+ pycall5
1158
+ pycall5i
1159
+ pycall5t
1160
+ pycall6
1161
+ pycall6i
1162
+ pycall6t
1163
+ pycall7
1164
+ pycall7i
1165
+ pycall7t
1166
+ pycall8
1167
+ pycall8i
1168
+ pycall8t
1169
+ pycalli
1170
+ pycalln
1171
+ pycallni
1172
+ pycallt
1173
+ pyeval
1174
+ pyevali
1175
+ pyevalt
1176
+ pyexec
1177
+ pyexeci
1178
+ pyexect
1179
+ pyinit
1180
+ pylassign
1181
+ pylassigni
1182
+ pylassignt
1183
+ pylcall
1184
+ pylcall1
1185
+ pylcall1i
1186
+ pylcall1t
1187
+ pylcall2
1188
+ pylcall2i
1189
+ pylcall2t
1190
+ pylcall3
1191
+ pylcall3i
1192
+ pylcall3t
1193
+ pylcall4
1194
+ pylcall4i
1195
+ pylcall4t
1196
+ pylcall5
1197
+ pylcall5i
1198
+ pylcall5t
1199
+ pylcall6
1200
+ pylcall6i
1201
+ pylcall6t
1202
+ pylcall7
1203
+ pylcall7i
1204
+ pylcall7t
1205
+ pylcall8
1206
+ pylcall8i
1207
+ pylcall8t
1208
+ pylcalli
1209
+ pylcalln
1210
+ pylcallni
1211
+ pylcallt
1212
+ pyleval
1213
+ pylevali
1214
+ pylevalt
1215
+ pylexec
1216
+ pylexeci
1217
+ pylexect
1218
+ pylrun
1219
+ pylruni
1220
+ pylrunt
1221
+ pyrun
1222
+ pyruni
1223
+ pyrunt
1224
+ qinf
1225
+ qnan
1226
+ r2c
1227
+ rand
1228
+ randc
1229
+ randh
1230
+ randi
1231
+ random
1232
+ randomh
1233
+ randomi
1234
+ rbjeq
1235
+ readclock
1236
+ readf
1237
+ readfi
1238
+ readk
1239
+ readk2
1240
+ readk3
1241
+ readk4
1242
+ readks
1243
+ readscore
1244
+ readscratch
1245
+ rect2pol
1246
+ release
1247
+ remoteport
1248
+ remove
1249
+ repluck
1250
+ reshapearray
1251
+ reson
1252
+ resonbnk
1253
+ resonk
1254
+ resonr
1255
+ resonx
1256
+ resonxk
1257
+ resony
1258
+ resonz
1259
+ resyn
1260
+ reverb
1261
+ reverb2
1262
+ reverbsc
1263
+ rewindscore
1264
+ rezzy
1265
+ rfft
1266
+ rifft
1267
+ rms
1268
+ rnd
1269
+ rnd31
1270
+ rndseed
1271
+ round
1272
+ rspline
1273
+ rtclock
1274
+ s16b14
1275
+ s32b14
1276
+ samphold
1277
+ sandpaper
1278
+ sc_lag
1279
+ sc_lagud
1280
+ sc_phasor
1281
+ sc_trig
1282
+ scale
1283
+ scalearray
1284
+ scanhammer
1285
+ scans
1286
+ scantable
1287
+ scanu
1288
+ schedkwhen
1289
+ schedkwhennamed
1290
+ schedule
1291
+ schedulek
1292
+ schedwhen
1293
+ scoreline
1294
+ scoreline_i
1295
+ seed
1296
+ sekere
1297
+ select
1298
+ semitone
1299
+ sense
1300
+ sensekey
1301
+ seqtime
1302
+ seqtime2
1303
+ serialBegin
1304
+ serialEnd
1305
+ serialFlush
1306
+ serialPrint
1307
+ serialRead
1308
+ serialWrite
1309
+ serialWrite_i
1310
+ setcol
1311
+ setctrl
1312
+ setksmps
1313
+ setrow
1314
+ setscorepos
1315
+ sfilist
1316
+ sfinstr
1317
+ sfinstr3
1318
+ sfinstr3m
1319
+ sfinstrm
1320
+ sfload
1321
+ sflooper
1322
+ sfpassign
1323
+ sfplay
1324
+ sfplay3
1325
+ sfplay3m
1326
+ sfplaym
1327
+ sfplist
1328
+ sfpreset
1329
+ shaker
1330
+ shiftin
1331
+ shiftout
1332
+ signum
1333
+ sin
1334
+ sinh
1335
+ sininv
1336
+ sinsyn
1337
+ sleighbells
1338
+ slicearray
1339
+ slicearray_i
1340
+ slider16
1341
+ slider16f
1342
+ slider16table
1343
+ slider16tablef
1344
+ slider32
1345
+ slider32f
1346
+ slider32table
1347
+ slider32tablef
1348
+ slider64
1349
+ slider64f
1350
+ slider64table
1351
+ slider64tablef
1352
+ slider8
1353
+ slider8f
1354
+ slider8table
1355
+ slider8tablef
1356
+ sliderKawai
1357
+ sndloop
1358
+ sndwarp
1359
+ sndwarpst
1360
+ sockrecv
1361
+ sockrecvs
1362
+ socksend
1363
+ socksends
1364
+ sorta
1365
+ sortd
1366
+ soundin
1367
+ space
1368
+ spat3d
1369
+ spat3di
1370
+ spat3dt
1371
+ spdist
1372
+ splitrig
1373
+ sprintf
1374
+ sprintfk
1375
+ spsend
1376
+ sqrt
1377
+ squinewave
1378
+ statevar
1379
+ sterrain
1380
+ stix
1381
+ strcat
1382
+ strcatk
1383
+ strchar
1384
+ strchark
1385
+ strcmp
1386
+ strcmpk
1387
+ strcpy
1388
+ strcpyk
1389
+ strecv
1390
+ streson
1391
+ strfromurl
1392
+ strget
1393
+ strindex
1394
+ strindexk
1395
+ string2array
1396
+ strlen
1397
+ strlenk
1398
+ strlower
1399
+ strlowerk
1400
+ strrindex
1401
+ strrindexk
1402
+ strset
1403
+ strstrip
1404
+ strsub
1405
+ strsubk
1406
+ strtod
1407
+ strtodk
1408
+ strtol
1409
+ strtolk
1410
+ strupper
1411
+ strupperk
1412
+ stsend
1413
+ subinstr
1414
+ subinstrinit
1415
+ sum
1416
+ sumarray
1417
+ svfilter
1418
+ syncgrain
1419
+ syncloop
1420
+ syncphasor
1421
+ system
1422
+ system_i
1423
+ tab
1424
+ tab2array
1425
+ tab2pvs
1426
+ tab_i
1427
+ tabifd
1428
+ table
1429
+ table3
1430
+ table3kt
1431
+ tablecopy
1432
+ tablefilter
1433
+ tablefilteri
1434
+ tablegpw
1435
+ tablei
1436
+ tableicopy
1437
+ tableigpw
1438
+ tableikt
1439
+ tableimix
1440
+ tablekt
1441
+ tablemix
1442
+ tableng
1443
+ tablera
1444
+ tableseg
1445
+ tableshuffle
1446
+ tableshufflei
1447
+ tablew
1448
+ tablewa
1449
+ tablewkt
1450
+ tablexkt
1451
+ tablexseg
1452
+ tabmorph
1453
+ tabmorpha
1454
+ tabmorphak
1455
+ tabmorphi
1456
+ tabplay
1457
+ tabrec
1458
+ tabrowlin
1459
+ tabsum
1460
+ tabw
1461
+ tabw_i
1462
+ tambourine
1463
+ tan
1464
+ tanh
1465
+ taninv
1466
+ taninv2
1467
+ tbvcf
1468
+ tempest
1469
+ tempo
1470
+ temposcal
1471
+ tempoval
1472
+ timedseq
1473
+ timeinstk
1474
+ timeinsts
1475
+ timek
1476
+ times
1477
+ tival
1478
+ tlineto
1479
+ tone
1480
+ tonek
1481
+ tonex
1482
+ tradsyn
1483
+ trandom
1484
+ transeg
1485
+ transegb
1486
+ transegr
1487
+ trcross
1488
+ trfilter
1489
+ trhighest
1490
+ trigger
1491
+ trighold
1492
+ trigphasor
1493
+ trigseq
1494
+ trim
1495
+ trim_i
1496
+ trirand
1497
+ trlowest
1498
+ trmix
1499
+ trscale
1500
+ trshift
1501
+ trsplit
1502
+ turnoff
1503
+ turnoff2
1504
+ turnon
1505
+ tvconv
1506
+ unirand
1507
+ unwrap
1508
+ upsamp
1509
+ urandom
1510
+ urd
1511
+ vactrol
1512
+ vadd
1513
+ vadd_i
1514
+ vaddv
1515
+ vaddv_i
1516
+ vaget
1517
+ valpass
1518
+ vaset
1519
+ vbap
1520
+ vbapg
1521
+ vbapgmove
1522
+ vbaplsinit
1523
+ vbapmove
1524
+ vbapz
1525
+ vbapzmove
1526
+ vcella
1527
+ vco
1528
+ vco2
1529
+ vco2ft
1530
+ vco2ift
1531
+ vco2init
1532
+ vcomb
1533
+ vcopy
1534
+ vcopy_i
1535
+ vdel_k
1536
+ vdelay
1537
+ vdelay3
1538
+ vdelayk
1539
+ vdelayx
1540
+ vdelayxq
1541
+ vdelayxs
1542
+ vdelayxw
1543
+ vdelayxwq
1544
+ vdelayxws
1545
+ vdivv
1546
+ vdivv_i
1547
+ vecdelay
1548
+ veloc
1549
+ vexp
1550
+ vexp_i
1551
+ vexpseg
1552
+ vexpv
1553
+ vexpv_i
1554
+ vibes
1555
+ vibr
1556
+ vibrato
1557
+ vincr
1558
+ vlimit
1559
+ vlinseg
1560
+ vlowres
1561
+ vmap
1562
+ vmirror
1563
+ vmult
1564
+ vmult_i
1565
+ vmultv
1566
+ vmultv_i
1567
+ voice
1568
+ vosim
1569
+ vphaseseg
1570
+ vport
1571
+ vpow
1572
+ vpow_i
1573
+ vpowv
1574
+ vpowv_i
1575
+ vps
1576
+ vpvoc
1577
+ vrandh
1578
+ vrandi
1579
+ vsubv
1580
+ vsubv_i
1581
+ vtaba
1582
+ vtabi
1583
+ vtabk
1584
+ vtable1k
1585
+ vtablea
1586
+ vtablei
1587
+ vtablek
1588
+ vtablewa
1589
+ vtablewi
1590
+ vtablewk
1591
+ vtabwa
1592
+ vtabwi
1593
+ vtabwk
1594
+ vwrap
1595
+ waveset
1596
+ websocket
1597
+ weibull
1598
+ wgbow
1599
+ wgbowedbar
1600
+ wgbrass
1601
+ wgclar
1602
+ wgflute
1603
+ wgpluck
1604
+ wgpluck2
1605
+ wguide1
1606
+ wguide2
1607
+ wiiconnect
1608
+ wiidata
1609
+ wiirange
1610
+ wiisend
1611
+ window
1612
+ wrap
1613
+ writescratch
1614
+ wterrain
1615
+ xadsr
1616
+ xin
1617
+ xout
1618
+ xscanmap
1619
+ xscans
1620
+ xscansmap
1621
+ xscanu
1622
+ xtratim
1623
+ xyscale
1624
+ zacl
1625
+ zakinit
1626
+ zamod
1627
+ zar
1628
+ zarg
1629
+ zaw
1630
+ zawm
1631
+ zdf_1pole
1632
+ zdf_1pole_mode
1633
+ zdf_2pole
1634
+ zdf_2pole_mode
1635
+ zdf_ladder
1636
+ zfilter2
1637
+ zir
1638
+ ziw
1639
+ ziwm
1640
+ zkcl
1641
+ zkmod
1642
+ zkr
1643
+ zkw
1644
+ zkwm
1645
+ '''.split())
1646
+
1647
+ DEPRECATED_OPCODES = set('''
1648
+ array
1649
+ bformdec
1650
+ bformenc
1651
+ changed
1652
+ copy2ftab
1653
+ copy2ttab
1654
+ hrtfer
1655
+ ktableseg
1656
+ lentab
1657
+ maxtab
1658
+ mintab
1659
+ pop
1660
+ pop_f
1661
+ ptable
1662
+ ptable3
1663
+ ptablei
1664
+ ptableiw
1665
+ push
1666
+ push_f
1667
+ scalet
1668
+ sndload
1669
+ soundout
1670
+ soundouts
1671
+ specaddm
1672
+ specdiff
1673
+ specdisp
1674
+ specfilt
1675
+ spechist
1676
+ specptrk
1677
+ specscal
1678
+ specsum
1679
+ spectrum
1680
+ stack
1681
+ sumtab
1682
+ tabgen
1683
+ tableiw
1684
+ tabmap
1685
+ tabmap_i
1686
+ tabslice
1687
+ tb0
1688
+ tb0_init
1689
+ tb1
1690
+ tb10
1691
+ tb10_init
1692
+ tb11
1693
+ tb11_init
1694
+ tb12
1695
+ tb12_init
1696
+ tb13
1697
+ tb13_init
1698
+ tb14
1699
+ tb14_init
1700
+ tb15
1701
+ tb15_init
1702
+ tb1_init
1703
+ tb2
1704
+ tb2_init
1705
+ tb3
1706
+ tb3_init
1707
+ tb4
1708
+ tb4_init
1709
+ tb5
1710
+ tb5_init
1711
+ tb6
1712
+ tb6_init
1713
+ tb7
1714
+ tb7_init
1715
+ tb8
1716
+ tb8_init
1717
+ tb9
1718
+ tb9_init
1719
+ vbap16
1720
+ vbap4
1721
+ vbap4move
1722
+ vbap8
1723
+ vbap8move
1724
+ xyin
1725
+ '''.split())