~brian-sidebotham/wxwidgets-cmake/wxpython-2.9.4

« back to all changes in this revision

Viewing changes to wxPython/wx/tools/Editra/src/extern/pygments/lexers/_asybuiltins.py

  • Committer: Brian Sidebotham
  • Date: 2013-08-03 14:30:08 UTC
  • Revision ID: brian.sidebotham@gmail.com-20130803143008-c7806tkych1tp6fc
Initial import into Bazaar

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
"""
 
3
    pygments.lexers._asybuiltins
 
4
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
 
5
 
 
6
    This file contains the asy-function names and asy-variable names of
 
7
    Asymptote.
 
8
 
 
9
    Do not edit the ASYFUNCNAME and ASYVARNAME sets by hand.
 
10
    TODO: perl/python script in Asymptote SVN similar to asy-list.pl but only
 
11
    for function and variable names.
 
12
 
 
13
    :copyright: Copyright 2006-2010 by the Pygments team, see AUTHORS.
 
14
    :license: BSD, see LICENSE for details.
 
15
"""
 
16
 
 
17
ASYFUNCNAME = set([
 
18
    'AND',
 
19
    'Arc',
 
20
    'ArcArrow',
 
21
    'ArcArrows',
 
22
    'Arrow',
 
23
    'Arrows',
 
24
    'Automatic',
 
25
    'AvantGarde',
 
26
    'BBox',
 
27
    'BWRainbow',
 
28
    'BWRainbow2',
 
29
    'Bar',
 
30
    'Bars',
 
31
    'BeginArcArrow',
 
32
    'BeginArrow',
 
33
    'BeginBar',
 
34
    'BeginDotMargin',
 
35
    'BeginMargin',
 
36
    'BeginPenMargin',
 
37
    'Blank',
 
38
    'Bookman',
 
39
    'Bottom',
 
40
    'BottomTop',
 
41
    'Bounds',
 
42
    'Break',
 
43
    'Broken',
 
44
    'BrokenLog',
 
45
    'Ceil',
 
46
    'Circle',
 
47
    'CircleBarIntervalMarker',
 
48
    'Cos',
 
49
    'Courier',
 
50
    'CrossIntervalMarker',
 
51
    'DefaultFormat',
 
52
    'DefaultLogFormat',
 
53
    'Degrees',
 
54
    'Dir',
 
55
    'DotMargin',
 
56
    'DotMargins',
 
57
    'Dotted',
 
58
    'Draw',
 
59
    'Drawline',
 
60
    'Embed',
 
61
    'EndArcArrow',
 
62
    'EndArrow',
 
63
    'EndBar',
 
64
    'EndDotMargin',
 
65
    'EndMargin',
 
66
    'EndPenMargin',
 
67
    'Fill',
 
68
    'FillDraw',
 
69
    'Floor',
 
70
    'Format',
 
71
    'Full',
 
72
    'Gaussian',
 
73
    'Gaussrand',
 
74
    'Gaussrandpair',
 
75
    'Gradient',
 
76
    'Grayscale',
 
77
    'Helvetica',
 
78
    'Hermite',
 
79
    'HookHead',
 
80
    'InOutTicks',
 
81
    'InTicks',
 
82
    'J',
 
83
    'Label',
 
84
    'Landscape',
 
85
    'Left',
 
86
    'LeftRight',
 
87
    'LeftTicks',
 
88
    'Legend',
 
89
    'Linear',
 
90
    'Link',
 
91
    'Log',
 
92
    'LogFormat',
 
93
    'Margin',
 
94
    'Margins',
 
95
    'Mark',
 
96
    'MidArcArrow',
 
97
    'MidArrow',
 
98
    'NOT',
 
99
    'NewCenturySchoolBook',
 
100
    'NoBox',
 
101
    'NoMargin',
 
102
    'NoModifier',
 
103
    'NoTicks',
 
104
    'NoTicks3',
 
105
    'NoZero',
 
106
    'NoZeroFormat',
 
107
    'None',
 
108
    'OR',
 
109
    'OmitFormat',
 
110
    'OmitTick',
 
111
    'OutTicks',
 
112
    'Ox',
 
113
    'Oy',
 
114
    'Palatino',
 
115
    'PaletteTicks',
 
116
    'Pen',
 
117
    'PenMargin',
 
118
    'PenMargins',
 
119
    'Pentype',
 
120
    'Portrait',
 
121
    'RadialShade',
 
122
    'Rainbow',
 
123
    'Range',
 
124
    'Relative',
 
125
    'Right',
 
126
    'RightTicks',
 
127
    'Rotate',
 
128
    'Round',
 
129
    'SQR',
 
130
    'Scale',
 
131
    'ScaleX',
 
132
    'ScaleY',
 
133
    'ScaleZ',
 
134
    'Seascape',
 
135
    'Shift',
 
136
    'Sin',
 
137
    'Slant',
 
138
    'Spline',
 
139
    'StickIntervalMarker',
 
140
    'Straight',
 
141
    'Symbol',
 
142
    'Tan',
 
143
    'TeXify',
 
144
    'Ticks',
 
145
    'Ticks3',
 
146
    'TildeIntervalMarker',
 
147
    'TimesRoman',
 
148
    'Top',
 
149
    'TrueMargin',
 
150
    'UnFill',
 
151
    'UpsideDown',
 
152
    'Wheel',
 
153
    'X',
 
154
    'XEquals',
 
155
    'XOR',
 
156
    'XY',
 
157
    'XYEquals',
 
158
    'XYZero',
 
159
    'XYgrid',
 
160
    'XZEquals',
 
161
    'XZZero',
 
162
    'XZero',
 
163
    'XZgrid',
 
164
    'Y',
 
165
    'YEquals',
 
166
    'YXgrid',
 
167
    'YZ',
 
168
    'YZEquals',
 
169
    'YZZero',
 
170
    'YZero',
 
171
    'YZgrid',
 
172
    'Z',
 
173
    'ZX',
 
174
    'ZXgrid',
 
175
    'ZYgrid',
 
176
    'ZapfChancery',
 
177
    'ZapfDingbats',
 
178
    '_cputime',
 
179
    '_draw',
 
180
    '_eval',
 
181
    '_image',
 
182
    '_labelpath',
 
183
    '_projection',
 
184
    '_strokepath',
 
185
    '_texpath',
 
186
    'aCos',
 
187
    'aSin',
 
188
    'aTan',
 
189
    'abort',
 
190
    'abs',
 
191
    'accel',
 
192
    'acos',
 
193
    'acosh',
 
194
    'acot',
 
195
    'acsc',
 
196
    'add',
 
197
    'addArrow',
 
198
    'addMargins',
 
199
    'addSaveFunction',
 
200
    'addnode',
 
201
    'addnodes',
 
202
    'addpenarc',
 
203
    'addpenline',
 
204
    'addseg',
 
205
    'adjust',
 
206
    'alias',
 
207
    'align',
 
208
    'all',
 
209
    'altitude',
 
210
    'angabscissa',
 
211
    'angle',
 
212
    'angpoint',
 
213
    'animate',
 
214
    'annotate',
 
215
    'anticomplementary',
 
216
    'antipedal',
 
217
    'apply',
 
218
    'approximate',
 
219
    'arc',
 
220
    'arcarrowsize',
 
221
    'arccircle',
 
222
    'arcdir',
 
223
    'arcfromcenter',
 
224
    'arcfromfocus',
 
225
    'arclength',
 
226
    'arcnodesnumber',
 
227
    'arcpoint',
 
228
    'arcsubtended',
 
229
    'arcsubtendedcenter',
 
230
    'arctime',
 
231
    'arctopath',
 
232
    'array',
 
233
    'arrow',
 
234
    'arrow2',
 
235
    'arrowbase',
 
236
    'arrowbasepoints',
 
237
    'arrowsize',
 
238
    'asec',
 
239
    'asin',
 
240
    'asinh',
 
241
    'ask',
 
242
    'assert',
 
243
    'asy',
 
244
    'asycode',
 
245
    'asydir',
 
246
    'asyfigure',
 
247
    'asyfilecode',
 
248
    'asyinclude',
 
249
    'asywrite',
 
250
    'atan',
 
251
    'atan2',
 
252
    'atanh',
 
253
    'atbreakpoint',
 
254
    'atexit',
 
255
    'atime',
 
256
    'attach',
 
257
    'attract',
 
258
    'atupdate',
 
259
    'autoformat',
 
260
    'autoscale',
 
261
    'autoscale3',
 
262
    'axes',
 
263
    'axes3',
 
264
    'axialshade',
 
265
    'axis',
 
266
    'axiscoverage',
 
267
    'azimuth',
 
268
    'babel',
 
269
    'background',
 
270
    'bangles',
 
271
    'bar',
 
272
    'barmarksize',
 
273
    'barsize',
 
274
    'basealign',
 
275
    'baseline',
 
276
    'bbox',
 
277
    'beep',
 
278
    'begin',
 
279
    'beginclip',
 
280
    'begingroup',
 
281
    'beginpoint',
 
282
    'between',
 
283
    'bevel',
 
284
    'bezier',
 
285
    'bezierP',
 
286
    'bezierPP',
 
287
    'bezierPPP',
 
288
    'bezulate',
 
289
    'bibliography',
 
290
    'bibliographystyle',
 
291
    'binarytree',
 
292
    'binarytreeNode',
 
293
    'binomial',
 
294
    'binput',
 
295
    'bins',
 
296
    'bisector',
 
297
    'bisectorpoint',
 
298
    'blend',
 
299
    'boutput',
 
300
    'box',
 
301
    'bqe',
 
302
    'breakpoint',
 
303
    'breakpoints',
 
304
    'brick',
 
305
    'buildRestoreDefaults',
 
306
    'buildRestoreThunk',
 
307
    'buildcycle',
 
308
    'bulletcolor',
 
309
    'canonical',
 
310
    'canonicalcartesiansystem',
 
311
    'cartesiansystem',
 
312
    'case1',
 
313
    'case2',
 
314
    'case3',
 
315
    'cbrt',
 
316
    'cd',
 
317
    'ceil',
 
318
    'center',
 
319
    'centerToFocus',
 
320
    'centroid',
 
321
    'cevian',
 
322
    'change2',
 
323
    'changecoordsys',
 
324
    'checkSegment',
 
325
    'checkconditionlength',
 
326
    'checker',
 
327
    'checklengths',
 
328
    'checkposition',
 
329
    'checktriangle',
 
330
    'choose',
 
331
    'circle',
 
332
    'circlebarframe',
 
333
    'circlemarkradius',
 
334
    'circlenodesnumber',
 
335
    'circumcenter',
 
336
    'circumcircle',
 
337
    'clamped',
 
338
    'clear',
 
339
    'clip',
 
340
    'clipdraw',
 
341
    'close',
 
342
    'cmyk',
 
343
    'code',
 
344
    'colatitude',
 
345
    'collect',
 
346
    'collinear',
 
347
    'color',
 
348
    'colorless',
 
349
    'colors',
 
350
    'colorspace',
 
351
    'comma',
 
352
    'compassmark',
 
353
    'complement',
 
354
    'complementary',
 
355
    'concat',
 
356
    'concurrent',
 
357
    'cone',
 
358
    'conic',
 
359
    'conicnodesnumber',
 
360
    'conictype',
 
361
    'conj',
 
362
    'connect',
 
363
    'containmentTree',
 
364
    'contains',
 
365
    'contour',
 
366
    'contour3',
 
367
    'controlSpecifier',
 
368
    'convert',
 
369
    'coordinates',
 
370
    'coordsys',
 
371
    'copy',
 
372
    'cos',
 
373
    'cosh',
 
374
    'cot',
 
375
    'countIntersections',
 
376
    'cputime',
 
377
    'crop',
 
378
    'cropcode',
 
379
    'cross',
 
380
    'crossframe',
 
381
    'crosshatch',
 
382
    'crossmarksize',
 
383
    'csc',
 
384
    'cubicroots',
 
385
    'curabscissa',
 
386
    'curlSpecifier',
 
387
    'curpoint',
 
388
    'currentarrow',
 
389
    'currentexitfunction',
 
390
    'currentmomarrow',
 
391
    'currentpolarconicroutine',
 
392
    'curve',
 
393
    'cut',
 
394
    'cutafter',
 
395
    'cutbefore',
 
396
    'cyclic',
 
397
    'cylinder',
 
398
    'debugger',
 
399
    'deconstruct',
 
400
    'defaultdir',
 
401
    'defaultformat',
 
402
    'defaultpen',
 
403
    'defined',
 
404
    'degenerate',
 
405
    'degrees',
 
406
    'delete',
 
407
    'deletepreamble',
 
408
    'determinant',
 
409
    'diagonal',
 
410
    'diamond',
 
411
    'diffdiv',
 
412
    'dir',
 
413
    'dirSpecifier',
 
414
    'dirtime',
 
415
    'display',
 
416
    'distance',
 
417
    'divisors',
 
418
    'do_overpaint',
 
419
    'dot',
 
420
    'dotframe',
 
421
    'dotsize',
 
422
    'downcase',
 
423
    'draw',
 
424
    'drawAll',
 
425
    'drawDoubleLine',
 
426
    'drawFermion',
 
427
    'drawGhost',
 
428
    'drawGluon',
 
429
    'drawMomArrow',
 
430
    'drawPhoton',
 
431
    'drawScalar',
 
432
    'drawVertex',
 
433
    'drawVertexBox',
 
434
    'drawVertexBoxO',
 
435
    'drawVertexBoxX',
 
436
    'drawVertexO',
 
437
    'drawVertexOX',
 
438
    'drawVertexTriangle',
 
439
    'drawVertexTriangleO',
 
440
    'drawVertexX',
 
441
    'drawarrow',
 
442
    'drawarrow2',
 
443
    'drawline',
 
444
    'drawtick',
 
445
    'duplicate',
 
446
    'elle',
 
447
    'ellipse',
 
448
    'ellipsenodesnumber',
 
449
    'embed',
 
450
    'embed3',
 
451
    'empty',
 
452
    'enclose',
 
453
    'end',
 
454
    'endScript',
 
455
    'endclip',
 
456
    'endgroup',
 
457
    'endl',
 
458
    'endpoint',
 
459
    'endpoints',
 
460
    'eof',
 
461
    'eol',
 
462
    'equation',
 
463
    'equations',
 
464
    'erase',
 
465
    'erasestep',
 
466
    'erf',
 
467
    'erfc',
 
468
    'error',
 
469
    'errorbar',
 
470
    'errorbars',
 
471
    'eval',
 
472
    'excenter',
 
473
    'excircle',
 
474
    'exit',
 
475
    'exitXasyMode',
 
476
    'exitfunction',
 
477
    'exp',
 
478
    'expfactors',
 
479
    'expi',
 
480
    'expm1',
 
481
    'exradius',
 
482
    'extend',
 
483
    'extension',
 
484
    'extouch',
 
485
    'fabs',
 
486
    'factorial',
 
487
    'fermat',
 
488
    'fft',
 
489
    'fhorner',
 
490
    'figure',
 
491
    'file',
 
492
    'filecode',
 
493
    'fill',
 
494
    'filldraw',
 
495
    'filloutside',
 
496
    'fillrule',
 
497
    'filltype',
 
498
    'find',
 
499
    'finite',
 
500
    'finiteDifferenceJacobian',
 
501
    'firstcut',
 
502
    'firstframe',
 
503
    'fit',
 
504
    'fit2',
 
505
    'fixedscaling',
 
506
    'floor',
 
507
    'flush',
 
508
    'fmdefaults',
 
509
    'fmod',
 
510
    'focusToCenter',
 
511
    'font',
 
512
    'fontcommand',
 
513
    'fontsize',
 
514
    'foot',
 
515
    'format',
 
516
    'frac',
 
517
    'frequency',
 
518
    'fromCenter',
 
519
    'fromFocus',
 
520
    'fspline',
 
521
    'functionshade',
 
522
    'gamma',
 
523
    'generate_random_backtrace',
 
524
    'generateticks',
 
525
    'gergonne',
 
526
    'getc',
 
527
    'getint',
 
528
    'getpair',
 
529
    'getreal',
 
530
    'getstring',
 
531
    'gettriple',
 
532
    'gluon',
 
533
    'gouraudshade',
 
534
    'graph',
 
535
    'graphic',
 
536
    'gray',
 
537
    'grestore',
 
538
    'grid',
 
539
    'grid3',
 
540
    'gsave',
 
541
    'halfbox',
 
542
    'hatch',
 
543
    'hdiffdiv',
 
544
    'hermite',
 
545
    'hex',
 
546
    'histogram',
 
547
    'history',
 
548
    'hline',
 
549
    'hprojection',
 
550
    'hsv',
 
551
    'hyperbola',
 
552
    'hyperbolanodesnumber',
 
553
    'hyperlink',
 
554
    'hypot',
 
555
    'identity',
 
556
    'image',
 
557
    'incenter',
 
558
    'incentral',
 
559
    'incircle',
 
560
    'increasing',
 
561
    'incrementposition',
 
562
    'indexedTransform',
 
563
    'indexedfigure',
 
564
    'initXasyMode',
 
565
    'initdefaults',
 
566
    'input',
 
567
    'inradius',
 
568
    'insert',
 
569
    'inside',
 
570
    'integrate',
 
571
    'interactive',
 
572
    'interior',
 
573
    'interp',
 
574
    'interpolate',
 
575
    'intersect',
 
576
    'intersection',
 
577
    'intersectionpoint',
 
578
    'intersectionpoints',
 
579
    'intersections',
 
580
    'intouch',
 
581
    'inverse',
 
582
    'inversion',
 
583
    'invisible',
 
584
    'is3D',
 
585
    'isDuplicate',
 
586
    'isogonal',
 
587
    'isogonalconjugate',
 
588
    'isotomic',
 
589
    'isotomicconjugate',
 
590
    'isparabola',
 
591
    'italic',
 
592
    'item',
 
593
    'key',
 
594
    'kurtosis',
 
595
    'kurtosisexcess',
 
596
    'label',
 
597
    'labelaxis',
 
598
    'labelmargin',
 
599
    'labelpath',
 
600
    'labels',
 
601
    'labeltick',
 
602
    'labelx',
 
603
    'labelx3',
 
604
    'labely',
 
605
    'labely3',
 
606
    'labelz',
 
607
    'labelz3',
 
608
    'lastcut',
 
609
    'latex',
 
610
    'latitude',
 
611
    'latticeshade',
 
612
    'layer',
 
613
    'layout',
 
614
    'ldexp',
 
615
    'leastsquares',
 
616
    'legend',
 
617
    'legenditem',
 
618
    'length',
 
619
    'lift',
 
620
    'light',
 
621
    'limits',
 
622
    'line',
 
623
    'linear',
 
624
    'linecap',
 
625
    'lineinversion',
 
626
    'linejoin',
 
627
    'linemargin',
 
628
    'lineskip',
 
629
    'linetype',
 
630
    'linewidth',
 
631
    'link',
 
632
    'list',
 
633
    'lm_enorm',
 
634
    'lm_evaluate_default',
 
635
    'lm_lmdif',
 
636
    'lm_lmpar',
 
637
    'lm_minimize',
 
638
    'lm_print_default',
 
639
    'lm_print_quiet',
 
640
    'lm_qrfac',
 
641
    'lm_qrsolv',
 
642
    'locale',
 
643
    'locate',
 
644
    'locatefile',
 
645
    'location',
 
646
    'log',
 
647
    'log10',
 
648
    'log1p',
 
649
    'logaxiscoverage',
 
650
    'longitude',
 
651
    'lookup',
 
652
    'magnetize',
 
653
    'makeNode',
 
654
    'makedraw',
 
655
    'makepen',
 
656
    'map',
 
657
    'margin',
 
658
    'markangle',
 
659
    'markangleradius',
 
660
    'markanglespace',
 
661
    'markarc',
 
662
    'marker',
 
663
    'markinterval',
 
664
    'marknodes',
 
665
    'markrightangle',
 
666
    'markuniform',
 
667
    'mass',
 
668
    'masscenter',
 
669
    'massformat',
 
670
    'math',
 
671
    'max',
 
672
    'max3',
 
673
    'maxbezier',
 
674
    'maxbound',
 
675
    'maxcoords',
 
676
    'maxlength',
 
677
    'maxratio',
 
678
    'maxtimes',
 
679
    'mean',
 
680
    'medial',
 
681
    'median',
 
682
    'midpoint',
 
683
    'min',
 
684
    'min3',
 
685
    'minbezier',
 
686
    'minbound',
 
687
    'minipage',
 
688
    'minratio',
 
689
    'mintimes',
 
690
    'miterlimit',
 
691
    'momArrowPath',
 
692
    'momarrowsize',
 
693
    'monotonic',
 
694
    'multifigure',
 
695
    'nativeformat',
 
696
    'natural',
 
697
    'needshipout',
 
698
    'newl',
 
699
    'newpage',
 
700
    'newslide',
 
701
    'newton',
 
702
    'newtree',
 
703
    'nextframe',
 
704
    'nextnormal',
 
705
    'nextpage',
 
706
    'nib',
 
707
    'nodabscissa',
 
708
    'none',
 
709
    'norm',
 
710
    'normalvideo',
 
711
    'notaknot',
 
712
    'nowarn',
 
713
    'numberpage',
 
714
    'nurb',
 
715
    'object',
 
716
    'offset',
 
717
    'onpath',
 
718
    'opacity',
 
719
    'opposite',
 
720
    'orientation',
 
721
    'orig_circlenodesnumber',
 
722
    'orig_circlenodesnumber1',
 
723
    'orig_draw',
 
724
    'orig_ellipsenodesnumber',
 
725
    'orig_ellipsenodesnumber1',
 
726
    'orig_hyperbolanodesnumber',
 
727
    'orig_parabolanodesnumber',
 
728
    'origin',
 
729
    'orthic',
 
730
    'orthocentercenter',
 
731
    'outformat',
 
732
    'outline',
 
733
    'outprefix',
 
734
    'output',
 
735
    'overloadedMessage',
 
736
    'overwrite',
 
737
    'pack',
 
738
    'pad',
 
739
    'pairs',
 
740
    'palette',
 
741
    'parabola',
 
742
    'parabolanodesnumber',
 
743
    'parallel',
 
744
    'partialsum',
 
745
    'path',
 
746
    'path3',
 
747
    'pattern',
 
748
    'pause',
 
749
    'pdf',
 
750
    'pedal',
 
751
    'periodic',
 
752
    'perp',
 
753
    'perpendicular',
 
754
    'perpendicularmark',
 
755
    'phantom',
 
756
    'phi1',
 
757
    'phi2',
 
758
    'phi3',
 
759
    'photon',
 
760
    'piecewisestraight',
 
761
    'point',
 
762
    'polar',
 
763
    'polarconicroutine',
 
764
    'polargraph',
 
765
    'polygon',
 
766
    'postcontrol',
 
767
    'postscript',
 
768
    'pow10',
 
769
    'ppoint',
 
770
    'prc',
 
771
    'prc0',
 
772
    'precision',
 
773
    'precontrol',
 
774
    'prepend',
 
775
    'print_random_addresses',
 
776
    'project',
 
777
    'projection',
 
778
    'purge',
 
779
    'pwhermite',
 
780
    'quadrant',
 
781
    'quadraticroots',
 
782
    'quantize',
 
783
    'quarticroots',
 
784
    'quotient',
 
785
    'radialshade',
 
786
    'radians',
 
787
    'radicalcenter',
 
788
    'radicalline',
 
789
    'radius',
 
790
    'rand',
 
791
    'randompath',
 
792
    'rd',
 
793
    'readline',
 
794
    'realmult',
 
795
    'realquarticroots',
 
796
    'rectangle',
 
797
    'rectangular',
 
798
    'rectify',
 
799
    'reflect',
 
800
    'relabscissa',
 
801
    'relative',
 
802
    'relativedistance',
 
803
    'reldir',
 
804
    'relpoint',
 
805
    'reltime',
 
806
    'remainder',
 
807
    'remark',
 
808
    'removeDuplicates',
 
809
    'rename',
 
810
    'replace',
 
811
    'report',
 
812
    'resetdefaultpen',
 
813
    'restore',
 
814
    'restoredefaults',
 
815
    'reverse',
 
816
    'reversevideo',
 
817
    'rf',
 
818
    'rfind',
 
819
    'rgb',
 
820
    'rgba',
 
821
    'rgbint',
 
822
    'rms',
 
823
    'rotate',
 
824
    'rotateO',
 
825
    'rotation',
 
826
    'round',
 
827
    'roundbox',
 
828
    'roundedpath',
 
829
    'roundrectangle',
 
830
    'samecoordsys',
 
831
    'sameside',
 
832
    'sample',
 
833
    'save',
 
834
    'savedefaults',
 
835
    'saveline',
 
836
    'scale',
 
837
    'scale3',
 
838
    'scaleO',
 
839
    'scaleT',
 
840
    'scaleless',
 
841
    'scientific',
 
842
    'search',
 
843
    'searchtree',
 
844
    'sec',
 
845
    'secondaryX',
 
846
    'secondaryY',
 
847
    'seconds',
 
848
    'section',
 
849
    'sector',
 
850
    'seek',
 
851
    'seekeof',
 
852
    'segment',
 
853
    'sequence',
 
854
    'setpens',
 
855
    'sgn',
 
856
    'sgnd',
 
857
    'sharpangle',
 
858
    'sharpdegrees',
 
859
    'shift',
 
860
    'shiftless',
 
861
    'shipout',
 
862
    'shipout3',
 
863
    'show',
 
864
    'side',
 
865
    'simeq',
 
866
    'simpson',
 
867
    'sin',
 
868
    'single',
 
869
    'sinh',
 
870
    'size',
 
871
    'size3',
 
872
    'skewness',
 
873
    'skip',
 
874
    'slant',
 
875
    'sleep',
 
876
    'slope',
 
877
    'slopefield',
 
878
    'solve',
 
879
    'solveBVP',
 
880
    'sort',
 
881
    'sourceline',
 
882
    'sphere',
 
883
    'split',
 
884
    'sqrt',
 
885
    'square',
 
886
    'srand',
 
887
    'standardizecoordsys',
 
888
    'startScript',
 
889
    'startTrembling',
 
890
    'stdev',
 
891
    'step',
 
892
    'stickframe',
 
893
    'stickmarksize',
 
894
    'stickmarkspace',
 
895
    'stop',
 
896
    'straight',
 
897
    'straightness',
 
898
    'string',
 
899
    'stripdirectory',
 
900
    'stripextension',
 
901
    'stripfile',
 
902
    'strokepath',
 
903
    'subdivide',
 
904
    'subitem',
 
905
    'subpath',
 
906
    'substr',
 
907
    'sum',
 
908
    'surface',
 
909
    'symmedial',
 
910
    'symmedian',
 
911
    'system',
 
912
    'tab',
 
913
    'tableau',
 
914
    'tan',
 
915
    'tangent',
 
916
    'tangential',
 
917
    'tangents',
 
918
    'tanh',
 
919
    'tell',
 
920
    'tensionSpecifier',
 
921
    'tensorshade',
 
922
    'tex',
 
923
    'texcolor',
 
924
    'texify',
 
925
    'texpath',
 
926
    'texpreamble',
 
927
    'texreset',
 
928
    'texshipout',
 
929
    'texsize',
 
930
    'textpath',
 
931
    'thick',
 
932
    'thin',
 
933
    'tick',
 
934
    'tickMax',
 
935
    'tickMax3',
 
936
    'tickMin',
 
937
    'tickMin3',
 
938
    'ticklabelshift',
 
939
    'ticklocate',
 
940
    'tildeframe',
 
941
    'tildemarksize',
 
942
    'tile',
 
943
    'tiling',
 
944
    'time',
 
945
    'times',
 
946
    'title',
 
947
    'titlepage',
 
948
    'topbox',
 
949
    'transform',
 
950
    'transformation',
 
951
    'transpose',
 
952
    'tremble',
 
953
    'trembleFuzz',
 
954
    'tremble_circlenodesnumber',
 
955
    'tremble_circlenodesnumber1',
 
956
    'tremble_draw',
 
957
    'tremble_ellipsenodesnumber',
 
958
    'tremble_ellipsenodesnumber1',
 
959
    'tremble_hyperbolanodesnumber',
 
960
    'tremble_marknodes',
 
961
    'tremble_markuniform',
 
962
    'tremble_parabolanodesnumber',
 
963
    'triangle',
 
964
    'triangleAbc',
 
965
    'triangleabc',
 
966
    'triangulate',
 
967
    'tricoef',
 
968
    'tridiagonal',
 
969
    'trilinear',
 
970
    'trim',
 
971
    'trueMagnetize',
 
972
    'truepoint',
 
973
    'tube',
 
974
    'uncycle',
 
975
    'unfill',
 
976
    'uniform',
 
977
    'unit',
 
978
    'unitrand',
 
979
    'unitsize',
 
980
    'unityroot',
 
981
    'unstraighten',
 
982
    'upcase',
 
983
    'updatefunction',
 
984
    'uperiodic',
 
985
    'upscale',
 
986
    'uptodate',
 
987
    'usepackage',
 
988
    'usersetting',
 
989
    'usetypescript',
 
990
    'usleep',
 
991
    'value',
 
992
    'variance',
 
993
    'variancebiased',
 
994
    'vbox',
 
995
    'vector',
 
996
    'vectorfield',
 
997
    'verbatim',
 
998
    'view',
 
999
    'vline',
 
1000
    'vperiodic',
 
1001
    'vprojection',
 
1002
    'warn',
 
1003
    'warning',
 
1004
    'windingnumber',
 
1005
    'write',
 
1006
    'xaxis',
 
1007
    'xaxis3',
 
1008
    'xaxis3At',
 
1009
    'xaxisAt',
 
1010
    'xequals',
 
1011
    'xinput',
 
1012
    'xlimits',
 
1013
    'xoutput',
 
1014
    'xpart',
 
1015
    'xscale',
 
1016
    'xscaleO',
 
1017
    'xtick',
 
1018
    'xtick3',
 
1019
    'xtrans',
 
1020
    'yaxis',
 
1021
    'yaxis3',
 
1022
    'yaxis3At',
 
1023
    'yaxisAt',
 
1024
    'yequals',
 
1025
    'ylimits',
 
1026
    'ypart',
 
1027
    'yscale',
 
1028
    'yscaleO',
 
1029
    'ytick',
 
1030
    'ytick3',
 
1031
    'ytrans',
 
1032
    'zaxis3',
 
1033
    'zaxis3At',
 
1034
    'zero',
 
1035
    'zero3',
 
1036
    'zlimits',
 
1037
    'zpart',
 
1038
    'ztick',
 
1039
    'ztick3',
 
1040
    'ztrans'
 
1041
])
 
1042
 
 
1043
ASYVARNAME = set([
 
1044
    'AliceBlue',
 
1045
    'Align',
 
1046
    'Allow',
 
1047
    'AntiqueWhite',
 
1048
    'Apricot',
 
1049
    'Aqua',
 
1050
    'Aquamarine',
 
1051
    'Aspect',
 
1052
    'Azure',
 
1053
    'BeginPoint',
 
1054
    'Beige',
 
1055
    'Bisque',
 
1056
    'Bittersweet',
 
1057
    'Black',
 
1058
    'BlanchedAlmond',
 
1059
    'Blue',
 
1060
    'BlueGreen',
 
1061
    'BlueViolet',
 
1062
    'Both',
 
1063
    'Break',
 
1064
    'BrickRed',
 
1065
    'Brown',
 
1066
    'BurlyWood',
 
1067
    'BurntOrange',
 
1068
    'CCW',
 
1069
    'CW',
 
1070
    'CadetBlue',
 
1071
    'CarnationPink',
 
1072
    'Center',
 
1073
    'Centered',
 
1074
    'Cerulean',
 
1075
    'Chartreuse',
 
1076
    'Chocolate',
 
1077
    'Coeff',
 
1078
    'Coral',
 
1079
    'CornflowerBlue',
 
1080
    'Cornsilk',
 
1081
    'Crimson',
 
1082
    'Crop',
 
1083
    'Cyan',
 
1084
    'Dandelion',
 
1085
    'DarkBlue',
 
1086
    'DarkCyan',
 
1087
    'DarkGoldenrod',
 
1088
    'DarkGray',
 
1089
    'DarkGreen',
 
1090
    'DarkKhaki',
 
1091
    'DarkMagenta',
 
1092
    'DarkOliveGreen',
 
1093
    'DarkOrange',
 
1094
    'DarkOrchid',
 
1095
    'DarkRed',
 
1096
    'DarkSalmon',
 
1097
    'DarkSeaGreen',
 
1098
    'DarkSlateBlue',
 
1099
    'DarkSlateGray',
 
1100
    'DarkTurquoise',
 
1101
    'DarkViolet',
 
1102
    'DeepPink',
 
1103
    'DeepSkyBlue',
 
1104
    'DefaultHead',
 
1105
    'DimGray',
 
1106
    'DodgerBlue',
 
1107
    'Dotted',
 
1108
    'Draw',
 
1109
    'E',
 
1110
    'ENE',
 
1111
    'EPS',
 
1112
    'ESE',
 
1113
    'E_Euler',
 
1114
    'E_PC',
 
1115
    'E_RK2',
 
1116
    'E_RK3BS',
 
1117
    'Emerald',
 
1118
    'EndPoint',
 
1119
    'Euler',
 
1120
    'Fill',
 
1121
    'FillDraw',
 
1122
    'FireBrick',
 
1123
    'FloralWhite',
 
1124
    'ForestGreen',
 
1125
    'Fuchsia',
 
1126
    'Gainsboro',
 
1127
    'GhostWhite',
 
1128
    'Gold',
 
1129
    'Goldenrod',
 
1130
    'Gray',
 
1131
    'Green',
 
1132
    'GreenYellow',
 
1133
    'Honeydew',
 
1134
    'HookHead',
 
1135
    'Horizontal',
 
1136
    'HotPink',
 
1137
    'I',
 
1138
    'IgnoreAspect',
 
1139
    'IndianRed',
 
1140
    'Indigo',
 
1141
    'Ivory',
 
1142
    'JOIN_IN',
 
1143
    'JOIN_OUT',
 
1144
    'JungleGreen',
 
1145
    'Khaki',
 
1146
    'LM_DWARF',
 
1147
    'LM_MACHEP',
 
1148
    'LM_SQRT_DWARF',
 
1149
    'LM_SQRT_GIANT',
 
1150
    'LM_USERTOL',
 
1151
    'Label',
 
1152
    'Lavender',
 
1153
    'LavenderBlush',
 
1154
    'LawnGreen',
 
1155
    'LeftJustified',
 
1156
    'LeftSide',
 
1157
    'LemonChiffon',
 
1158
    'LightBlue',
 
1159
    'LightCoral',
 
1160
    'LightCyan',
 
1161
    'LightGoldenrodYellow',
 
1162
    'LightGreen',
 
1163
    'LightGrey',
 
1164
    'LightPink',
 
1165
    'LightSalmon',
 
1166
    'LightSeaGreen',
 
1167
    'LightSkyBlue',
 
1168
    'LightSlateGray',
 
1169
    'LightSteelBlue',
 
1170
    'LightYellow',
 
1171
    'Lime',
 
1172
    'LimeGreen',
 
1173
    'Linear',
 
1174
    'Linen',
 
1175
    'Log',
 
1176
    'Logarithmic',
 
1177
    'Magenta',
 
1178
    'Mahogany',
 
1179
    'Mark',
 
1180
    'MarkFill',
 
1181
    'Maroon',
 
1182
    'Max',
 
1183
    'MediumAquamarine',
 
1184
    'MediumBlue',
 
1185
    'MediumOrchid',
 
1186
    'MediumPurple',
 
1187
    'MediumSeaGreen',
 
1188
    'MediumSlateBlue',
 
1189
    'MediumSpringGreen',
 
1190
    'MediumTurquoise',
 
1191
    'MediumVioletRed',
 
1192
    'Melon',
 
1193
    'MidPoint',
 
1194
    'MidnightBlue',
 
1195
    'Min',
 
1196
    'MintCream',
 
1197
    'MistyRose',
 
1198
    'Moccasin',
 
1199
    'Move',
 
1200
    'MoveQuiet',
 
1201
    'Mulberry',
 
1202
    'N',
 
1203
    'NE',
 
1204
    'NNE',
 
1205
    'NNW',
 
1206
    'NW',
 
1207
    'NavajoWhite',
 
1208
    'Navy',
 
1209
    'NavyBlue',
 
1210
    'NoAlign',
 
1211
    'NoCrop',
 
1212
    'NoFill',
 
1213
    'NoSide',
 
1214
    'OldLace',
 
1215
    'Olive',
 
1216
    'OliveDrab',
 
1217
    'OliveGreen',
 
1218
    'Orange',
 
1219
    'OrangeRed',
 
1220
    'Orchid',
 
1221
    'Ox',
 
1222
    'Oy',
 
1223
    'PC',
 
1224
    'PaleGoldenrod',
 
1225
    'PaleGreen',
 
1226
    'PaleTurquoise',
 
1227
    'PaleVioletRed',
 
1228
    'PapayaWhip',
 
1229
    'Peach',
 
1230
    'PeachPuff',
 
1231
    'Periwinkle',
 
1232
    'Peru',
 
1233
    'PineGreen',
 
1234
    'Pink',
 
1235
    'Plum',
 
1236
    'PowderBlue',
 
1237
    'ProcessBlue',
 
1238
    'Purple',
 
1239
    'RK2',
 
1240
    'RK3',
 
1241
    'RK3BS',
 
1242
    'RK4',
 
1243
    'RK5',
 
1244
    'RK5DP',
 
1245
    'RK5F',
 
1246
    'RawSienna',
 
1247
    'Red',
 
1248
    'RedOrange',
 
1249
    'RedViolet',
 
1250
    'Rhodamine',
 
1251
    'RightJustified',
 
1252
    'RightSide',
 
1253
    'RosyBrown',
 
1254
    'RoyalBlue',
 
1255
    'RoyalPurple',
 
1256
    'RubineRed',
 
1257
    'S',
 
1258
    'SE',
 
1259
    'SSE',
 
1260
    'SSW',
 
1261
    'SW',
 
1262
    'SaddleBrown',
 
1263
    'Salmon',
 
1264
    'SandyBrown',
 
1265
    'SeaGreen',
 
1266
    'Seashell',
 
1267
    'Sepia',
 
1268
    'Sienna',
 
1269
    'Silver',
 
1270
    'SimpleHead',
 
1271
    'SkyBlue',
 
1272
    'SlateBlue',
 
1273
    'SlateGray',
 
1274
    'Snow',
 
1275
    'SpringGreen',
 
1276
    'SteelBlue',
 
1277
    'Suppress',
 
1278
    'SuppressQuiet',
 
1279
    'Tan',
 
1280
    'TeXHead',
 
1281
    'Teal',
 
1282
    'TealBlue',
 
1283
    'Thistle',
 
1284
    'Ticksize',
 
1285
    'Tomato',
 
1286
    'Turquoise',
 
1287
    'UnFill',
 
1288
    'VERSION',
 
1289
    'Value',
 
1290
    'Vertical',
 
1291
    'Violet',
 
1292
    'VioletRed',
 
1293
    'W',
 
1294
    'WNW',
 
1295
    'WSW',
 
1296
    'Wheat',
 
1297
    'White',
 
1298
    'WhiteSmoke',
 
1299
    'WildStrawberry',
 
1300
    'XYAlign',
 
1301
    'YAlign',
 
1302
    'Yellow',
 
1303
    'YellowGreen',
 
1304
    'YellowOrange',
 
1305
    'addpenarc',
 
1306
    'addpenline',
 
1307
    'align',
 
1308
    'allowstepping',
 
1309
    'angularsystem',
 
1310
    'animationdelay',
 
1311
    'appendsuffix',
 
1312
    'arcarrowangle',
 
1313
    'arcarrowfactor',
 
1314
    'arrow2sizelimit',
 
1315
    'arrowangle',
 
1316
    'arrowbarb',
 
1317
    'arrowdir',
 
1318
    'arrowfactor',
 
1319
    'arrowhookfactor',
 
1320
    'arrowlength',
 
1321
    'arrowsizelimit',
 
1322
    'arrowtexfactor',
 
1323
    'authorpen',
 
1324
    'axis',
 
1325
    'axiscoverage',
 
1326
    'axislabelfactor',
 
1327
    'background',
 
1328
    'backgroundcolor',
 
1329
    'backgroundpen',
 
1330
    'barfactor',
 
1331
    'barmarksizefactor',
 
1332
    'basealign',
 
1333
    'baselinetemplate',
 
1334
    'beveljoin',
 
1335
    'bigvertexpen',
 
1336
    'bigvertexsize',
 
1337
    'black',
 
1338
    'blue',
 
1339
    'bm',
 
1340
    'bottom',
 
1341
    'bp',
 
1342
    'brown',
 
1343
    'bullet',
 
1344
    'byfoci',
 
1345
    'byvertices',
 
1346
    'camerafactor',
 
1347
    'chartreuse',
 
1348
    'circlemarkradiusfactor',
 
1349
    'circlenodesnumberfactor',
 
1350
    'circleprecision',
 
1351
    'circlescale',
 
1352
    'cm',
 
1353
    'codefile',
 
1354
    'codepen',
 
1355
    'codeskip',
 
1356
    'colorPen',
 
1357
    'coloredNodes',
 
1358
    'coloredSegments',
 
1359
    'conditionlength',
 
1360
    'conicnodesfactor',
 
1361
    'count',
 
1362
    'cputimeformat',
 
1363
    'crossmarksizefactor',
 
1364
    'currentcoordsys',
 
1365
    'currentlight',
 
1366
    'currentpatterns',
 
1367
    'currentpen',
 
1368
    'currentpicture',
 
1369
    'currentposition',
 
1370
    'currentprojection',
 
1371
    'curvilinearsystem',
 
1372
    'cuttings',
 
1373
    'cyan',
 
1374
    'darkblue',
 
1375
    'darkbrown',
 
1376
    'darkcyan',
 
1377
    'darkgray',
 
1378
    'darkgreen',
 
1379
    'darkgrey',
 
1380
    'darkmagenta',
 
1381
    'darkolive',
 
1382
    'darkred',
 
1383
    'dashdotted',
 
1384
    'dashed',
 
1385
    'datepen',
 
1386
    'dateskip',
 
1387
    'debuggerlines',
 
1388
    'debugging',
 
1389
    'deepblue',
 
1390
    'deepcyan',
 
1391
    'deepgray',
 
1392
    'deepgreen',
 
1393
    'deepgrey',
 
1394
    'deepmagenta',
 
1395
    'deepred',
 
1396
    'default',
 
1397
    'defaultControl',
 
1398
    'defaultS',
 
1399
    'defaultbackpen',
 
1400
    'defaultcoordsys',
 
1401
    'defaultfilename',
 
1402
    'defaultformat',
 
1403
    'defaultmassformat',
 
1404
    'defaultpen',
 
1405
    'diagnostics',
 
1406
    'differentlengths',
 
1407
    'dot',
 
1408
    'dotfactor',
 
1409
    'dotframe',
 
1410
    'dotted',
 
1411
    'doublelinepen',
 
1412
    'doublelinespacing',
 
1413
    'down',
 
1414
    'duplicateFuzz',
 
1415
    'ellipsenodesnumberfactor',
 
1416
    'eps',
 
1417
    'epsgeo',
 
1418
    'epsilon',
 
1419
    'evenodd',
 
1420
    'extendcap',
 
1421
    'fermionpen',
 
1422
    'figureborder',
 
1423
    'figuremattpen',
 
1424
    'firstnode',
 
1425
    'firststep',
 
1426
    'foregroundcolor',
 
1427
    'fuchsia',
 
1428
    'fuzz',
 
1429
    'gapfactor',
 
1430
    'ghostpen',
 
1431
    'gluonamplitude',
 
1432
    'gluonpen',
 
1433
    'gluonratio',
 
1434
    'gray',
 
1435
    'green',
 
1436
    'grey',
 
1437
    'hatchepsilon',
 
1438
    'havepagenumber',
 
1439
    'heavyblue',
 
1440
    'heavycyan',
 
1441
    'heavygray',
 
1442
    'heavygreen',
 
1443
    'heavygrey',
 
1444
    'heavymagenta',
 
1445
    'heavyred',
 
1446
    'hline',
 
1447
    'hwratio',
 
1448
    'hyperbolanodesnumberfactor',
 
1449
    'identity4',
 
1450
    'ignore',
 
1451
    'inXasyMode',
 
1452
    'inch',
 
1453
    'inches',
 
1454
    'includegraphicscommand',
 
1455
    'inf',
 
1456
    'infinity',
 
1457
    'institutionpen',
 
1458
    'intMax',
 
1459
    'intMin',
 
1460
    'invert',
 
1461
    'invisible',
 
1462
    'itempen',
 
1463
    'itemskip',
 
1464
    'itemstep',
 
1465
    'labelmargin',
 
1466
    'landscape',
 
1467
    'lastnode',
 
1468
    'left',
 
1469
    'legendhskip',
 
1470
    'legendlinelength',
 
1471
    'legendmargin',
 
1472
    'legendmarkersize',
 
1473
    'legendmaxrelativewidth',
 
1474
    'legendvskip',
 
1475
    'lightblue',
 
1476
    'lightcyan',
 
1477
    'lightgray',
 
1478
    'lightgreen',
 
1479
    'lightgrey',
 
1480
    'lightmagenta',
 
1481
    'lightolive',
 
1482
    'lightred',
 
1483
    'lightyellow',
 
1484
    'linemargin',
 
1485
    'lm_infmsg',
 
1486
    'lm_shortmsg',
 
1487
    'longdashdotted',
 
1488
    'longdashed',
 
1489
    'magenta',
 
1490
    'magneticPoints',
 
1491
    'magneticRadius',
 
1492
    'mantissaBits',
 
1493
    'markangleradius',
 
1494
    'markangleradiusfactor',
 
1495
    'markanglespace',
 
1496
    'markanglespacefactor',
 
1497
    'mediumblue',
 
1498
    'mediumcyan',
 
1499
    'mediumgray',
 
1500
    'mediumgreen',
 
1501
    'mediumgrey',
 
1502
    'mediummagenta',
 
1503
    'mediumred',
 
1504
    'mediumyellow',
 
1505
    'middle',
 
1506
    'minDistDefault',
 
1507
    'minblockheight',
 
1508
    'minblockwidth',
 
1509
    'mincirclediameter',
 
1510
    'minipagemargin',
 
1511
    'minipagewidth',
 
1512
    'minvertexangle',
 
1513
    'miterjoin',
 
1514
    'mm',
 
1515
    'momarrowfactor',
 
1516
    'momarrowlength',
 
1517
    'momarrowmargin',
 
1518
    'momarrowoffset',
 
1519
    'momarrowpen',
 
1520
    'monoPen',
 
1521
    'morepoints',
 
1522
    'nCircle',
 
1523
    'newbulletcolor',
 
1524
    'ngraph',
 
1525
    'nil',
 
1526
    'nmesh',
 
1527
    'nobasealign',
 
1528
    'nodeMarginDefault',
 
1529
    'nodesystem',
 
1530
    'nomarker',
 
1531
    'nopoint',
 
1532
    'noprimary',
 
1533
    'nullpath',
 
1534
    'nullpen',
 
1535
    'numarray',
 
1536
    'ocgindex',
 
1537
    'oldbulletcolor',
 
1538
    'olive',
 
1539
    'orange',
 
1540
    'origin',
 
1541
    'overpaint',
 
1542
    'page',
 
1543
    'pageheight',
 
1544
    'pagemargin',
 
1545
    'pagenumberalign',
 
1546
    'pagenumberpen',
 
1547
    'pagenumberposition',
 
1548
    'pagewidth',
 
1549
    'paleblue',
 
1550
    'palecyan',
 
1551
    'palegray',
 
1552
    'palegreen',
 
1553
    'palegrey',
 
1554
    'palemagenta',
 
1555
    'palered',
 
1556
    'paleyellow',
 
1557
    'parabolanodesnumberfactor',
 
1558
    'perpfactor',
 
1559
    'phi',
 
1560
    'photonamplitude',
 
1561
    'photonpen',
 
1562
    'photonratio',
 
1563
    'pi',
 
1564
    'pink',
 
1565
    'plain',
 
1566
    'plus',
 
1567
    'preamblenodes',
 
1568
    'pt',
 
1569
    'purple',
 
1570
    'r3',
 
1571
    'r4a',
 
1572
    'r4b',
 
1573
    'randMax',
 
1574
    'realDigits',
 
1575
    'realEpsilon',
 
1576
    'realMax',
 
1577
    'realMin',
 
1578
    'red',
 
1579
    'relativesystem',
 
1580
    'reverse',
 
1581
    'right',
 
1582
    'roundcap',
 
1583
    'roundjoin',
 
1584
    'royalblue',
 
1585
    'salmon',
 
1586
    'saveFunctions',
 
1587
    'scalarpen',
 
1588
    'sequencereal',
 
1589
    'settings',
 
1590
    'shipped',
 
1591
    'signedtrailingzero',
 
1592
    'solid',
 
1593
    'springgreen',
 
1594
    'sqrtEpsilon',
 
1595
    'squarecap',
 
1596
    'squarepen',
 
1597
    'startposition',
 
1598
    'stdin',
 
1599
    'stdout',
 
1600
    'stepfactor',
 
1601
    'stepfraction',
 
1602
    'steppagenumberpen',
 
1603
    'stepping',
 
1604
    'stickframe',
 
1605
    'stickmarksizefactor',
 
1606
    'stickmarkspacefactor',
 
1607
    'textpen',
 
1608
    'ticksize',
 
1609
    'tildeframe',
 
1610
    'tildemarksizefactor',
 
1611
    'tinv',
 
1612
    'titlealign',
 
1613
    'titlepagepen',
 
1614
    'titlepageposition',
 
1615
    'titlepen',
 
1616
    'titleskip',
 
1617
    'top',
 
1618
    'trailingzero',
 
1619
    'treeLevelStep',
 
1620
    'treeMinNodeWidth',
 
1621
    'treeNodeStep',
 
1622
    'trembleAngle',
 
1623
    'trembleFrequency',
 
1624
    'trembleRandom',
 
1625
    'tremblingMode',
 
1626
    'undefined',
 
1627
    'unitcircle',
 
1628
    'unitsquare',
 
1629
    'up',
 
1630
    'urlpen',
 
1631
    'urlskip',
 
1632
    'version',
 
1633
    'vertexpen',
 
1634
    'vertexsize',
 
1635
    'viewportmargin',
 
1636
    'viewportsize',
 
1637
    'vline',
 
1638
    'white',
 
1639
    'wye',
 
1640
    'xformStack',
 
1641
    'yellow',
 
1642
    'ylabelwidth',
 
1643
    'zerotickfuzz',
 
1644
    'zerowinding'
 
1645
])