[docs]classCSSStyleSheet(StyleSheet):"""Creates a new CSSStyleSheet object."""
+ def__init__(self):
+ super().__init__()
+ self.rules=[]
+
@propertydefcssRules():# -> 'CSSStyleRuleList':"""Returns a live CSSRuleList which maintains an up-to-date list of the CSSRule objects
@@ -235,7 +239,7 @@
Source code for domonic.style
"""def__init__(self,parent_node=None):
- print("*** MADE A STYLE11 ***")
+ # print("*** MADE A STYLE11 ***")self._members_checked=0
@@ -2863,8 +2867,10 @@
diff --git a/docs/packages/styles.rst b/docs/_build/html/_sources/packages/style.rst.txt
similarity index 93%
rename from docs/packages/styles.rst
rename to docs/_build/html/_sources/packages/style.rst.txt
index b111e68d..38a006ea 100644
--- a/docs/packages/styles.rst
+++ b/docs/_build/html/_sources/packages/style.rst.txt
@@ -20,6 +20,6 @@ Styling gets passed to the style tag on render.
CSSOM is also stubbed out. See the styles.py class. Feel free to make a PR
-.. automodule:: domonic.styles
+.. automodule:: domonic.style
:members:
:noindex:
diff --git a/docs/_build/html/genindex.html b/docs/_build/html/genindex.html
index 6500ff2a..377711fe 100644
--- a/docs/_build/html/genindex.html
+++ b/docs/_build/html/genindex.html
@@ -4377,6 +4377,7 @@
16pt }” or “@import ‘url’”.
+To access or modify parts of the rule (e.g. the value of “font-size” in the example)
+use the properties on the specialized interface for the rule’s type.
+
+
Type
+
Represents the textual representation of the rule, e.g. “h1,h2 { font-size
+
+
+
+
+
+
+propertyparentRule
+
Returns the containing rule, otherwise null. E.g. if this rule is a style rule inside an @media block,
+the parent rule would be that CSSMediaRule.
A CSSRuleList represents an ordered collection of read-only CSSRule objects.
+While the CSSRuleList object is read-only, and cannot be directly modified,
+it is considered a live object, as the content can change over time.
The CSSStyleDeclaration interface represents an object that is a CSS declaration block,
+and exposes style information and various style-related methods and properties.
+
A CSSStyleDeclaration object can be exposed using three different APIs:
+
Via HTMLElement.style, which deals with the inline styles of a single element (e.g., <div style=”…”>).
+Via the CSSStyleSheet API. For example, document.styleSheets[0].cssRules[0].style
+returns a CSSStyleDeclaration object on the first CSS rule in the document’s first stylesheet.
+Via Window.getComputedStyle(), which exposes the CSSStyleDeclaration object as a read-only interface.
+
+
+propertycssText
+
Textual representation of the declaration block, if and only if it is exposed via HTMLElement.style.
+Setting this attribute changes the inline style.
+If you want a text representation of a computed declaration block,
+you can get it with JSON.stringify().
Returns a CSS property name by its index, or the empty string if the index is out-of-bounds.
+An alternative to accessing nodeList[i] (which instead returns undefined when i is out-of-bounds).
+This is mostly useful for non-JavaScript DOM implementations.
+
+
+
+
+propertylength
+
The number of properties. See the item() method below.
Adds a new rule to the stylesheet given the selector to which the style applies and the style block to apply to the matching elements.
+This differs from insertRule(), which takes the textual representation of the entire rule as a single string.
+
+
+
+
+propertycssRules
+
Returns a live CSSRuleList which maintains an up-to-date list of the CSSRule objects
+that comprise the stylesheet.
Inserts a new rule at the specified position in the stylesheet,
+given the textual representation of the rule.
+
+
+
+
+propertyownerRule
+
If this stylesheet is imported into the document using an @import rule,
+the ownerRule property returns the corresponding CSSImportRule; otherwise, this property’s value is null.
Synchronously replaces the content of the stylesheet.
+
+
+
+
+propertyrules
+
The rules property is functionally identical to the standard cssRules property
+it returns a live CSSRuleList which maintains an up-to-date list of all of the rules in the style sheet.
[ js syntax styles ]
+# TODO - just add normal float?
+# TODO - consider camel case for hyphen params?
+# TODO - not json serialisable due to the decorators.
+
+
+propertyalignContent
+
Sets or returns the alignment between the lines inside a flexible container
+when the items do not use all available space
+
+
+
+
+propertyalignItems
+
Sets or returns the alignment for items inside a flexible container
+
+
+
+
+propertyalignSelf
+
Sets or returns the alignment for selected items inside a flexible container
+
+
+
+
+propertyanimation
+
shorthand property for all the animation properties below, except the animationPlayState property
+
+
+
+
+propertyanimationDelay
+
Sets or returns when the animation will start
+
+
+
+
+propertyanimationDirection
+
Sets or returns whether or not the animation should play in reverse on alternate cycles
+
+
+
+
+propertyanimationDuration
+
Sets or returns how many seconds or milliseconds an animation takes to complete one cycle
+
+
+
+
+propertyanimationFillMode
+
Sets or returns what values are applied by the animation outside the time it is executing
+
+
+
+
+propertyanimationIterationCount
+
Sets or returns the number of times an animation should be played
+
+
+
+
+propertyanimationName
+
Sets or returns a name for the @keyframes animation
+
+
+
+
+propertyanimationPlayState
+
Sets or returns whether the animation is running or paused
+
+
+
+
+propertyanimationTimingFunction
+
Sets or returns the speed curve of the animation
+
+
+
+
+propertybackfaceVisibility
+
Sets or returns whether or not an element should be visible when not facing the screen
+
+
+
+
+propertybackground
+
Sets or returns all the background properties in one declaration
+
+
+
+
+propertybackgroundAttachment
+
Sets or returns whether a background-image is fixed or scrolls with the page
+
+
+
+
+propertybackgroundClip
+
Sets or returns the painting area of the background
+
+
+
+
+propertybackgroundColor
+
Sets or returns the background-color of an element
+
+
+
+
+propertybackgroundImage
+
Sets or returns the background-image for an element
+
+
+
+
+propertybackgroundOrigin
+
Sets or returns the positioning area of the background images
+
+
+
+
+propertybackgroundPosition
+
Sets or returns the starting position of a background-image
+
+
+
+
+propertybackgroundRepeat
+
Sets or returns how to repeat (tile) a background-image
+
+
+
+
+propertybackgroundSize
+
Sets or returns the size of the background image
+
+
+
+
+propertyborder
+
Sets or returns borderWidth, borderStyle, and borderColor in one declaration
+
+
+
+
+propertyborderBottom
+
Sets or returns all the borderBottom properties in one declaration
+
+
+
+
+propertyborderBottomColor
+
Sets or returns the color of the bottom border 1
+
+
+
+
+propertyborderBottomLeftRadius
+
Sets or returns the shape of the border of the bottom-left corner
+
+
+
+
+propertyborderBottomRightRadius
+
Sets or returns the shape of the border of the bottom-right corner
+
+
+
+
+propertyborderBottomStyle
+
Sets or returns the style of the bottom border
+
+
+
+
+propertyborderBottomWidth
+
Sets or returns the width of the bottom border
+
+
+
+
+propertyborderCollapse
+
Sets or returns whether the table border should be collapsed into a single border, or not
+
+
+
+
+propertyborderColor
+
Sets or returns the color of an element’s border (can have up to four values)
+
+
+
+
+propertyborderImage
+
horthand property for setting or returning all the borderImage properties
+
+
+
+
+propertyborderImageOutset
+
Sets or returns the amount by which the border image area extends beyond the border box
+
+
+
+
+propertyborderImageRepeat
+
Sets or returns whether the image-border should be repeated, rounded or stretched
+
+
+
+
+propertyborderImageSlice
+
Sets or returns the inward offsets of the image-border
+
+
+
+
+propertyborderImageSource
+
Sets or returns the image to be used as a border
+
+
+
+
+propertyborderImageWidth
+
Sets or returns the widths of the image-border
+
+
+
+
+propertyborderLeft
+
Sets or returns all the borderLeft properties in one declaration
+
+
+
+
+propertyborderLeftColor
+
Sets or returns the color of the left border
+
+
+
+
+propertyborderLeftStyle
+
Sets or returns the style of the left border
+
+
+
+
+propertyborderLeftWidth
+
Sets or returns the width of the left border
+
+
+
+
+propertyborderRadius
+
A shorthand property for setting or returning all the four borderRadius properties
+
+
+
+
+propertyborderRight
+
Sets or returns all the borderRight properties in one declaration
+
+
+
+
+propertyborderRightColor
+
Sets or returns the color of the right border
+
+
+
+
+propertyborderRightStyle
+
Sets or returns the style of the right border
+
+
+
+
+propertyborderRightWidth
+
Sets or returns the width of the right border
+
+
+
+
+propertyborderSpacing
+
Sets or returns the space between cells in a table
+
+
+
+
+propertyborderStyle
+
Sets or returns the style of an element’s border (can have up to four values)
+
+
+
+
+propertyborderTop
+
Sets or returns all the borderTop properties in one declaration
+
+
+
+
+propertyborderTopColor
+
Sets or returns the color of the top border
+
+
+
+
+propertyborderTopLeftRadius
+
Sets or returns the shape of the border of the top-left corner
+
+
+
+
+propertyborderTopRightRadius
+
Sets or returns the shape of the border of the top-right corner
+
+
+
+
+propertyborderTopStyle
+
Sets or returns the style of the top border
+
+
+
+
+propertyborderTopWidth
+
Sets or returns the width of the top border
+
+
+
+
+propertyborderWidth
+
Sets or returns the width of an element’s border (can have up to four values)
+
+
+
+
+propertybottom
+
Sets or returns the bottom position of a positioned element
+
+
+
+
+propertyboxDecorationBreak
+
Sets or returns the behaviour of the background and border of an element at page-break, or,
+for in-line elements, at line-break.
+
+
+
+
+propertyboxShadow
+
ttaches one or more drop-shadows to the box
+
+
+
+
+propertyboxSizing
+
llows you to define certain elements to fit an area in a certain way
+
+
+
+
+propertycaptionSide
+
Sets or returns the position of the table caption
+
+
+
+
+propertyclear
+
Sets or returns the position of the element relative to floating objects
+
+
+
+
+propertyclip
+
Sets or returns which part of a positioned element is visible
+
+
+
+
+propertycolor
+
Sets or returns the color of the text
+
+
+
+
+propertycolumnCount
+
Sets or returns the number of columns an element should be divided into
+
+
+
+
+propertycolumnFill
+
Sets or returns how to fill columns
+
+
+
+
+propertycolumnGap
+
Sets or returns the gap between the columns
+
+
+
+
+propertycolumnRule
+
shorthand property for setting or returning all the columnRule properties
+
+
+
+
+propertycolumnRuleColor
+
Sets or returns the color of the rule between columns
+
+
+
+
+propertycolumnRuleStyle
+
Sets or returns the style of the rule between columns
+
+
+
+
+propertycolumnRuleWidth
+
Sets or returns the width of the rule between columns
+
+
+
+
+propertycolumnSpan
+
Sets or returns how many columns an element should span across
+
+
+
+
+propertycolumnWidth
+
Sets or returns the width of the columns
+
+
+
+
+propertycolumns
+
horthand property for setting or returning columnWidth and columnCount
+
+
+
+
+propertycontent
+
after pseudo-elements, to insert generated content
+
+
Type
+
d with the
+
+
Type
+
before and
+
+
+
+
+
+
+propertycounterIncrement
+
Increments one or more counters
+
+
+
+
+propertycounterReset
+
Creates or resets one or more counters
+
+
+
+
+propertycssFloat
+
Sets or returns the horizontal alignment of an element
+
+
+
+
+propertycursor
+
Sets or returns the type of cursor to display for the mouse pointer
+
+
+
+
+propertydirection
+
Sets or returns the text direction
+
+
+
+
+propertydisplay
+
Sets or returns an element’s display type
+
+
+
+
+propertyemptyCells
+
Sets or returns whether to show the border and background of empty cells, or not
+
+
+
+
+propertyfilter
+
Sets or returns image filters (visual effects, like blur and saturation)
+
+
+
+
+propertyflex
+
Sets or returns the length of the item, relative to the rest
+
+
+
+
+propertyflexBasis
+
Sets or returns the initial length of a flexible item
+
+
+
+
+propertyflexDirection
+
Sets or returns the direction of the flexible items
+
+
+
+
+propertyflexFlow
+
A shorthand property for the flexDirection and the flexWrap properties
+
+
+
+
+propertyflexGrow
+
Sets or returns how much the item will grow relative to the rest
+
+
+
+
+propertyflexShrink
+
Sets or returns how the item will shrink relative to the rest
+
+
+
+
+propertyflexWrap
+
Sets or returns whether the flexible items should wrap or not
+
+
+
+
+propertyfont
+
Sets or returns fontStyle, fontVariant, fontWeight, fontSize, lineHeight, and fontFamily
+in one declaration
+
+
+
+
+propertyfontFamily
+
Sets or returns the font family for text
+
+
+
+
+propertyfontSize
+
Sets or returns the font size of the text
+
+
+
+
+propertyfontSizeAdjust
+
eserves the readability of text when font fallback occurs
+
+
+
+
+propertyfontStretch
+
ects a normal, condensed, or expanded face from a font family
+
+
+
+
+propertyfontStyle
+
Sets or returns whether the style of the font is normal, italic or oblique
+
+
+
+
+propertyfontVariant
+
Sets or returns whether the font should be displayed in small capital letters
+
+
+
+
+propertyfontWeight
+
Sets or returns the boldness of the font
+
+
+
+
+propertyhangingPunctuation
+
ecifies whether a punctuation character may be placed outside the line box
+
+
+
+
+propertyheight
+
Sets or returns the height of an element
+
+
+
+
+propertyhyphens
+
Sets how to split words to improve the layout of paragraphs
+
+
+
+
+propertyicon
+
Provides the author the ability to style an element with an iconic equivalent
+
+
+
+
+propertyimageOrientation
+
Specifies a rotation in the right or clockwise direction that a user agent applies to an image
+
+
+
+
+propertyisolation
+
efines whether an element must create a new stacking content
+
+
+
+
+propertyjustifyContent
+
Sets or returns the alignment between the items inside a flexible container when the items
+do not use all available space.
+
+
+
+
+propertyleft
+
Sets or returns the left position of a positioned element
+
+
+
+
+propertyletterSpacing
+
Sets or returns the space between characters in a text
+
+
+
+
+propertylineHeight
+
Sets or returns the distance between lines in a text
+
+
+
+
+propertylistStyle
+
Sets or returns listStyleImage, listStylePosition, and listStyleType in one declaration
+
+
+
+
+propertylistStyleImage
+
Sets or returns an image as the list-item marker
+
+
+
+
+propertylistStylePosition
+
Sets or returns the position of the list-item marker
+
+
+
+
+propertylistStyleType
+
Sets or returns the list-item marker type
+
+
+
+
+propertymargin
+
Sets or returns the margins of an element (can have up to four values)
+
+
+
+
+propertymarginBottom
+
Sets or returns the bottom margin of an element
+
+
+
+
+propertymarginLeft
+
Sets or returns the left margin of an element
+
+
+
+
+propertymarginRight
+
Sets or returns the right margin of an element
+
+
+
+
+propertymarginTop
+
Sets or returns the top margin of an element
+
+
+
+
+propertymaxHeight
+
Sets or returns the maximum height of an element
+
+
+
+
+propertymaxWidth
+
Sets or returns the maximum width of an element
+
+
+
+
+propertyminHeight
+
Sets or returns the minimum height of an element
+
+
+
+
+propertyminWidth
+
Sets or returns the minimum width of an element
+
+
+
+
+propertynavDown
+
Sets or returns where to navigate when using the arrow-down navigation key
+
+
+
+
+propertynavIndex
+
Sets or returns the tabbing order for an element
+
+
+
+
+propertynavLeft
+
Sets or returns where to navigate when using the arrow-left navigation key
+
+
+
+
+propertynavRight
+
Sets or returns where to navigate when using the arrow-right navigation key
+
+
+
+
+propertynavUp
+
Sets or returns where to navigate when using the arrow-up navigation key
+
+
+
+
+propertyobjectFit
+
pecifies how the contents of a replaced element should be fitted to the box
+established by its used height and width
+
+
+
+
+propertyobjectPosition
+
ecifies the alignment of the replaced element inside its box
+
+
+
+
+propertyopacity
+
Sets or returns the opacity level for an element
+
+
+
+
+propertyorder
+
Sets or returns the order of the flexible item, relative to the rest
+
+
+
+
+propertyorphans
+
Sets or returns the minimum number of lines for an element that must be left at the bottom
+of a page when a page break occurs inside an element
+
+
+
+
+propertyoutline
+
Sets or returns all the outline properties in one declaration
+
+
+
+
+propertyoutlineColor
+
Sets or returns the color of the outline around a element
+
+
+
+
+propertyoutlineOffset
+
ffsets an outline, and draws it beyond the border edge
+
+
+
+
+propertyoutlineStyle
+
Sets or returns the style of the outline around an element
+
+
+
+
+propertyoutlineWidth
+
Sets or returns the width of the outline around an element
+
+
+
+
+propertyoverflow
+
Sets or returns what to do with content that renders outside the element box
+
+
+
+
+propertyoverflowX
+
pecifies what to do with the left/right edges of the content, if it overflows the element’s content area
+
+
+
+
+propertyoverflowY
+
pecifies what to do with the top/bottom edges of the content, if it overflows the element’s content area
+
+
+
+
+propertypadding
+
Sets or returns the padding of an element (can have up to four values)
+
+
+
+
+propertypaddingBottom
+
Sets or returns the bottom padding of an element
+
+
+
+
+propertypaddingLeft
+
Sets or returns the left padding of an element
+
+
+
+
+propertypaddingRight
+
Sets or returns the right padding of an element
+
+
+
+
+propertypaddingTop
+
Sets or returns the top padding of an element
+
+
+
+
+propertypageBreakAfter
+
Sets or returns the page-break behavior after an element
+
+
+
+
+propertypageBreakBefore
+
Sets or returns the page-break behavior before an element
+
+
+
+
+propertypageBreakInside
+
Sets or returns the page-break behavior inside an element
+
+
+
+
+propertyperspective
+
Sets or returns the perspective on how 3D elements are viewed
+
+
+
+
+propertyperspectiveOrigin
+
Sets or returns the bottom position of 3D elements
+
+
+
+
+propertyposition
+
Sets or returns the type of positioning method used for an element (static, relative, absolute or fixed)
+
+
+
+
+propertyquotes
+
Sets or returns the type of quotation marks for embedded quotations
+
+
+
+
+propertyresize
+
Sets or returns whether or not an element is resizable by the user
+
+
+
+
+propertyright
+
Sets or returns the right position of a positioned element
+
+
+
+
+propertytabSize
+
Sets or returns the length of the tab-character
+
+
+
+
+propertytableLayout
+
Sets or returns the way to lay out table cells, rows, and columns
+
+
+
+
+propertytextAlign
+
Sets or returns the horizontal alignment of text
+
+
+
+
+propertytextAlignLast
+
Sets or returns how the last line of a block or a line right before a forced line break
+is aligned when text-align is justify
+
+
+
+
+propertytextDecoration
+
Sets or returns the decoration of a text
+
+
+
+
+propertytextDecorationColor
+
Sets or returns the color of the text-decoration
+
+
+
+
+propertytextDecorationLine
+
Sets or returns the type of line in a text-decoration
+
+
+
+
+propertytextDecorationStyle
+
Sets or returns the style of the line in a text decoration
+
+
+
+
+propertytextIndent
+
Sets or returns the indentation of the first line of text
+
+
+
+
+propertytextJustify
+
Sets or returns the justification method used when text-align is justify
+
+
+
+
+propertytextOverflow
+
Sets or returns what should happen when text overflows the containing element
+
+
+
+
+propertytextShadow
+
Sets or returns the shadow effect of a text
+
+
+
+
+propertytextTransform
+
Sets or returns the capitalization of a text
+
+
+
+
+propertytop
+
Sets or returns the top position of a positioned element
+
+
+
+
+propertytransform
+
pplies a 2D or 3D transformation to an element
+
+
+
+
+propertytransformOrigin
+
Sets or returns the position of transformed elements
+
+
+
+
+propertytransformStyle
+
Sets or returns how nested elements are rendered in 3D space
+
+
+
+
+propertytransition
+
shorthand property for setting or returning the four transition properties
+
+
+
+
+propertytransitionDelay
+
Sets or returns when the transition effect will start
+
+
+
+
+propertytransitionDuration
+
Sets or returns how many seconds or milliseconds a transition effect takes to complete
+
+
+
+
+propertytransitionProperty
+
Sets or returns the CSS property that the transition effect is for
+
+
+
+
+propertytransitionTimingFunction
+
Sets or returns the speed curve of the transition effect
+
+
+
+
+propertyunicodeBidi
+
Sets or returns whether the text should be overridden to support multiple languages in the same document
+
+
+
+
+propertyuserSelect
+
Sets or returns whether the text of an element can be selected or not
+
+
+
+
+propertyverticalAlign
+
Sets or returns the vertical alignment of the content in an element
+
+
+
+
+propertyvisibility
+
Sets or returns whether an element should be visible
+
+
+
+
+propertywhiteSpace
+
Sets or returns how to handle tabs, line breaks and whitespace in a text 1
+
+
+
+
+propertywidows
+
Sets or returns the minimum number of lines for an element that must be visible at the top of a page
+
+
+
+
+propertywidth
+
Sets or returns the width of an element
+
+
+
+
+propertywordBreak
+
Sets or returns line breaking rules for non-CJK scripts
+
+
+
+
+propertywordSpacing
+
Sets or returns the spacing between words in a text
+
+
+
+
+propertywordWrap
+
Allows long, unbreakable words to be broken and wrap to the next line
+
+
+
+
+propertyzIndex
+
Sets or returns the stack order of a positioned element
An object implementing the StyleSheet interface represents a single style sheet.
+CSS style sheets will further implement the more specialized CSSStyleSheet interface.
+
+
+propertyhref
+
Returns a DOMString representing the location of the stylesheet.
+
+
+
+
+propertymedia
+
Returns a MediaList representing the intended destination medium for style information.
+
+
+
+
+propertyownerNode
+
Returns a Node associating this style sheet with the current document.
+
+
+
+
+propertyparentStyleSheet
+
Returns a StyleSheet including this one, if any; returns null if there aren’t any.
+
+
+
+
+propertytitle
+
Returns a DOMString representing the advisory title of the current style sheet.
+
+
+
+
+propertytype
+
Returns a DOMString representing the style sheet language for this style sheet.
An instance of this object can be returned by Document.styleSheets.
+it can be iterated over in a standard for loop over its indices, or converted to an Array.
+ domonic is a library to generate HTML with python 3. There's an evolving DOM API, JavaScript API and many other cool features. Can be used as a fast prototyping tool.
+
diff --git a/docs/_build/html/searchindex.js b/docs/_build/html/searchindex.js
index d527ace8..069dba93 100644
--- a/docs/_build/html/searchindex.js
+++ b/docs/_build/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({docnames:["contribute","index","packages/CDN","packages/JSON","packages/autodocs","packages/cmd","packages/components","packages/constants","packages/d3","packages/dQuery","packages/decorators","packages/dom","packages/events","packages/geom","packages/html","packages/javascript","packages/servers","packages/sitemap","packages/styles","packages/terminal","packages/tween","packages/utils","packages/webapi","packages/x3d"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["contribute.rst","index.rst","packages/CDN.rst","packages/JSON.rst","packages/autodocs.rst","packages/cmd.rst","packages/components.rst","packages/constants.rst","packages/d3.rst","packages/dQuery.rst","packages/decorators.rst","packages/dom.rst","packages/events.rst","packages/geom.rst","packages/html.rst","packages/javascript.rst","packages/servers.rst","packages/sitemap.rst","packages/styles.rst","packages/terminal.rst","packages/tween.rst","packages/utils.rst","packages/webapi.rst","packages/x3d.rst"],objects:{"":{domonic:[4,0,0,"-"]},"domonic.CDN":{CDN_CSS:[4,1,1,""],CDN_IMG:[4,1,1,""],CDN_JS:[4,1,1,""]},"domonic.CDN.CDN_IMG":{PLACEHOLDER:[4,2,1,""]},"domonic.JSON":{JSON:[4,1,1,""],return_json:[4,3,1,""]},"domonic.JSON.JSON":{csv2json:[4,2,1,""],csvify:[4,2,1,""],flatten:[4,2,1,""],tablify:[4,2,1,""]},"domonic.decorators":{called:[4,3,1,""],check:[4,3,1,""],deprecated:[4,3,1,""],el:[4,3,1,""],iife:[4,3,1,""],instead:[4,3,1,""],log:[4,3,1,""],silence:[4,3,1,""]},"domonic.dom":{Attr:[4,1,1,""],CDATASection:[4,1,1,""],CharacterData:[4,1,1,""],ChildNode:[4,1,1,""],Comment:[4,1,1,""],DOMException:[4,4,1,""],DOMPoint:[4,1,1,""],DOMPointReadOnly:[4,1,1,""],DOMQuad:[4,1,1,""],DOMStringMap:[4,1,1,""],DOMTimeStamp:[4,1,1,""],DOMTokenList:[4,1,1,""],Document:[4,1,1,""],DocumentFragment:[4,1,1,""],DocumentType:[4,1,1,""],Element:[4,1,1,""],EventTarget:[4,1,1,""],NamedNodeMap:[4,1,1,""],Node:[4,1,1,""],NodeIterator:[4,1,1,""],NodeList:[4,1,1,""],ParentNode:[4,1,1,""],ProcessingInstruction:[4,1,1,""],RadioNodeList:[4,1,1,""],ShadowRoot:[4,1,1,""],Text:[4,1,1,""],TreeWalker:[4,1,1,""],document:[4,5,1,""]},"domonic.dom.Attr":{getNamedItem:[4,2,1,""],removeNamedItem:[4,2,1,""],setNamedItem:[4,2,1,""]},"domonic.dom.CDATASection":{nodeType:[4,2,1,""]},"domonic.dom.CharacterData":{after:[4,2,1,""],appendData:[4,2,1,""],before:[4,2,1,""],deleteData:[4,2,1,""],insertData:[4,2,1,""],nextElementSibling:[4,2,1,""],previousElementSibling:[4,2,1,""],remove:[4,2,1,""],replaceData:[4,2,1,""],replaceWith:[4,2,1,""],substringData:[4,2,1,""]},"domonic.dom.ChildNode":{after:[4,2,1,""],before:[4,2,1,""],remove:[4,2,1,""],replaceWith:[4,2,1,""]},"domonic.dom.Comment":{nodeType:[4,2,1,""]},"domonic.dom.DOMStringMap":{"delete":[4,2,1,""],get:[4,2,1,""],set:[4,2,1,""]},"domonic.dom.DOMTokenList":{add:[4,2,1,""],contains:[4,2,1,""],item:[4,2,1,""],remove:[4,2,1,""],toString:[4,2,1,""],toggle:[4,2,1,""]},"domonic.dom.Document":{anchors:[4,2,1,""],applets:[4,2,1,""],body:[4,2,1,""],characterSet:[4,2,1,""],charset:[4,2,1,""],createAttribute:[4,2,1,""],createCDATASection:[4,2,1,""],createComment:[4,2,1,""],createDocumentFragment:[4,2,1,""],createElement:[4,2,1,""],createElementNS:[4,2,1,""],createEvent:[4,2,1,""],createNodeIterator:[4,2,1,""],createProcessingInstruction:[4,2,1,""],createRange:[4,2,1,""],createTextNode:[4,2,1,""],createTreeWalker:[4,2,1,""],doctype:[4,2,1,""],domain:[4,2,1,""],embeds:[4,2,1,""],forms:[4,2,1,""],fullscreenElement:[4,2,1,""],fullscreenEnabled:[4,2,1,""],getElementById:[4,2,1,""],getElementsByName:[4,2,1,""],head:[4,2,1,""],images:[4,2,1,""],implementation:[4,2,1,""],importNode:[4,2,1,""],links:[4,2,1,""],nodeType:[4,2,1,""],normalizeDocument:[4,2,1,""],renameNode:[4,2,1,""],scripts:[4,2,1,""],strictErrorChecking:[4,2,1,""],title:[4,2,1,""],write:[4,2,1,""],writeln:[4,2,1,""]},"domonic.dom.DocumentFragment":{attributes:[4,2,1,""],getElementById:[4,2,1,""],getElementsByTagName:[4,2,1,""],nodeType:[4,2,1,""],querySelector:[4,2,1,""],querySelectorAll:[4,2,1,""],replaceChildren:[4,2,1,""]},"domonic.dom.DocumentType":{internalSubset:[4,2,1,""],nodeType:[4,2,1,""],notations:[4,2,1,""]},"domonic.dom.Element":{append:[4,2,1,""],attributes:[4,2,1,""],blur:[4,2,1,""],classList:[4,2,1,""],className:[4,2,1,""],click:[4,2,1,""],clientHeight:[4,2,1,""],clientLeft:[4,2,1,""],clientTop:[4,2,1,""],clientWidth:[4,2,1,""],contentEditable:[4,2,1,""],dataset:[4,2,1,""],dir:[4,2,1,""],exitFullscreen:[4,2,1,""],firstElementChild:[4,2,1,""],focus:[4,2,1,""],getAttribute:[4,2,1,""],getAttributeNS:[4,2,1,""],getAttributeNode:[4,2,1,""],getAttributeNodeNS:[4,2,1,""],getBoundingClientRect:[4,2,1,""],getElementsByClassName:[4,2,1,""],getElementsBySelector:[4,2,1,""],getElementsByTagName:[4,2,1,""],hasAttribute:[4,2,1,""],hasAttributes:[4,2,1,""],id:[4,2,1,""],innerHTML:[4,2,1,""],insertAdjacentElement:[4,2,1,""],insertAdjacentHTML:[4,2,1,""],insertAdjacentText:[4,2,1,""],isContentEditable:[4,2,1,""],lang:[4,2,1,""],lastElementChild:[4,2,1,""],matches:[4,2,1,""],namespaceURI:[4,2,1,""],nextElementSibling:[4,2,1,""],nextSibling:[4,2,1,""],normalize:[4,2,1,""],offsetHeight:[4,2,1,""],offsetLeft:[4,2,1,""],offsetParent:[4,2,1,""],offsetTop:[4,2,1,""],offsetWidth:[4,2,1,""],ownerDocument:[4,2,1,""],parentElement:[4,2,1,""],previousElementSibling:[4,2,1,""],previousSibling:[4,2,1,""],querySelector:[4,2,1,""],querySelectorAll:[4,2,1,""],remove:[4,2,1,""],removeAttribute:[4,2,1,""],removeAttributeNS:[4,2,1,""],removeAttributeNode:[4,2,1,""],requestFullscreen:[4,2,1,""],scrollHeight:[4,2,1,""],scrollIntoView:[4,2,1,""],scrollLeft:[4,2,1,""],scrollTop:[4,2,1,""],scrollWidth:[4,2,1,""],setAttribute:[4,2,1,""],setAttributeNS:[4,2,1,""],setAttributeNode:[4,2,1,""],setAttributeNodeNS:[4,2,1,""],style:[4,2,1,""],title:[4,2,1,""],toString:[4,2,1,""]},"domonic.dom.NamedNodeMap":{getNameItemNS:[4,2,1,""],getNamedItem:[4,2,1,""],item:[4,2,1,""],removeNamedItem:[4,2,1,""],removeNamedItemNS:[4,2,1,""],setNamedItem:[4,2,1,""],setNamedItemNS:[4,2,1,""]},"domonic.dom.Node":{appendChild:[4,2,1,""],childElementCount:[4,2,1,""],childNodes:[4,2,1,""],children:[4,2,1,""],cloneNode:[4,2,1,""],compareDocumentPosition:[4,2,1,""],contains:[4,2,1,""],firstChild:[4,2,1,""],hasChildNodes:[4,2,1,""],insertBefore:[4,2,1,""],isDefaultNamespace:[4,2,1,""],isEqualNode:[4,2,1,""],isSameNode:[4,2,1,""],lastChild:[4,2,1,""],lookupNamespaceURI:[4,2,1,""],lookupPrefix:[4,2,1,""],nextSibling:[4,2,1,""],nodeName:[4,2,1,""],nodeType:[4,2,1,""],nodeValue:[4,2,1,""],normalize:[4,2,1,""],previousSibling:[4,2,1,""],removeChild:[4,2,1,""],replaceChild:[4,2,1,""],rootNode:[4,2,1,""],textContent:[4,2,1,""]},"domonic.dom.NodeIterator":{nextNode:[4,2,1,""],previousNode:[4,2,1,""],referenceNode:[4,2,1,""]},"domonic.dom.NodeList":{entries:[4,2,1,""],forEach:[4,2,1,""],item:[4,2,1,""],keys:[4,2,1,""],values:[4,2,1,""]},"domonic.dom.ProcessingInstruction":{nodeType:[4,2,1,""]},"domonic.dom.RadioNodeList":{value:[4,2,1,""]},"domonic.dom.ShadowRoot":{caretPositionFromPoint:[4,2,1,""],elementFromPoint:[4,2,1,""],elementsFromPoint:[4,2,1,""],getSelection:[4,2,1,""]},"domonic.dom.Text":{assignedSlot:[4,2,1,""],firstChild:[4,2,1,""],nodeType:[4,2,1,""],splitText:[4,2,1,""],wholeText:[4,2,1,""]},"domonic.dom.TreeWalker":{firstChild:[4,2,1,""],lastChild:[4,2,1,""],nextNode:[4,2,1,""],nextSibling:[4,2,1,""],parentNode:[4,2,1,""],previousNode:[4,2,1,""],previousSibling:[4,2,1,""],root:[4,2,1,""],tree:[4,5,1,""],whatToShow:[4,2,1,""]},"domonic.events":{AnimationEvent:[4,1,1,""],BeforeUnloadEvent:[4,1,1,""],ClipboardEvent:[4,1,1,""],CompositionEvent:[4,1,1,""],CustomEvent:[4,1,1,""],DragEvent:[4,1,1,""],ErrorEvent:[4,1,1,""],Event:[4,1,1,""],EventDispatcher:[4,1,1,""],ExtendableEvent:[4,1,1,""],FetchEvent:[4,1,1,""],FocusEvent:[4,1,1,""],GamePadEvent:[4,1,1,""],HashChangeEvent:[4,1,1,""],InputEvent:[4,1,1,""],KeyboardEvent:[4,1,1,""],MouseEvent:[4,1,1,""],PageTransitionEvent:[4,1,1,""],PointerEvent:[4,1,1,""],PopStateEvent:[4,1,1,""],ProgressEvent:[4,1,1,""],PromiseRejectionEvent:[4,1,1,""],SVGEvent:[4,1,1,""],StorageEvent:[4,1,1,""],SubmitEvent:[4,1,1,""],SyncEvent:[4,1,1,""],TimerEvent:[4,1,1,""],TouchEvent:[4,1,1,""],TransitionEvent:[4,1,1,""],TweenEvent:[4,1,1,""],UIEvent:[4,1,1,""],WheelEvent:[4,1,1,""]},"domonic.events.AnimationEvent":{ANIMATIONEND:[4,5,1,""],ANIMATIONITERATION:[4,5,1,""],ANIMATIONSTART:[4,5,1,""],animationName:[4,5,1,""],elapsedTime:[4,5,1,""],pseudoElement:[4,5,1,""]},"domonic.events.BeforeUnloadEvent":{BEFOREUNLOAD:[4,5,1,""]},"domonic.events.ClipboardEvent":{COPY:[4,5,1,""],CUT:[4,5,1,""],PASTE:[4,5,1,""],clipboardData:[4,5,1,""]},"domonic.events.CompositionEvent":{data:[4,5,1,""]},"domonic.events.DragEvent":{DRAG:[4,5,1,""],DROP:[4,5,1,""],END:[4,5,1,""],ENTER:[4,5,1,""],EXIT:[4,5,1,""],LEAVE:[4,5,1,""],OVER:[4,5,1,""],START:[4,5,1,""],dataTransfer:[4,5,1,""]},"domonic.events.ErrorEvent":{ERROR:[4,5,1,""]},"domonic.events.Event":{ABORT:[4,5,1,""],AFTERPRINT:[4,5,1,""],BEFOREPRINT:[4,5,1,""],BEFOREUNLOAD:[4,5,1,""],CANPLAY:[4,5,1,""],CANPLAYTHROUGH:[4,5,1,""],CHANGE:[4,5,1,""],DURATIONCHANGE:[4,5,1,""],EMPTIED:[4,5,1,""],ENDED:[4,5,1,""],ERROR:[4,5,1,""],FULLSCREENCHANGE:[4,5,1,""],FULLSCREENERROR:[4,5,1,""],INPUT:[4,5,1,""],INVALID:[4,5,1,""],LOAD:[4,5,1,""],LOADEDDATA:[4,5,1,""],LOADEDMETADATA:[4,5,1,""],MESSAGE:[4,5,1,""],OFFLINE:[4,5,1,""],ONLINE:[4,5,1,""],OPEN:[4,5,1,""],PAUSE:[4,5,1,""],PLAY:[4,5,1,""],PLAYING:[4,5,1,""],PROGRESS:[4,5,1,""],RATECHANGE:[4,5,1,""],RESET:[4,5,1,""],RESIZE:[4,5,1,""],SCROLL:[4,5,1,""],SEARCH:[4,5,1,""],SEEKED:[4,5,1,""],SEEKING:[4,5,1,""],SELECT:[4,5,1,""],SHOW:[4,5,1,""],STALLED:[4,5,1,""],SUBMIT:[4,5,1,""],SUSPEND:[4,5,1,""],TOGGLE:[4,5,1,""],UNLOAD:[4,5,1,""],VOLUMECHANGE:[4,5,1,""],WAITING:[4,5,1,""],stopPropagation:[4,2,1,""]},"domonic.events.ExtendableEvent":{extendable:[4,5,1,""],timeStamp:[4,5,1,""]},"domonic.events.FetchEvent":{clientId:[4,5,1,""],isReload:[4,2,1,""],request:[4,5,1,""],respondWith:[4,2,1,""],waitUntil:[4,2,1,""]},"domonic.events.FocusEvent":{BLUR:[4,5,1,""],FOCUS:[4,5,1,""],FOCUSIN:[4,5,1,""],FOCUSOUT:[4,5,1,""]},"domonic.events.GamePadEvent":{START:[4,5,1,""],STOP:[4,5,1,""]},"domonic.events.HashChangeEvent":{CHANGE:[4,5,1,""]},"domonic.events.InputEvent":{data:[4,5,1,""],getTargetRanges:[4,2,1,""]},"domonic.events.KeyboardEvent":{DOM_KEY_LOCATION_JOYSTICK:[4,5,1,""],DOM_KEY_LOCATION_LEFT:[4,5,1,""],DOM_KEY_LOCATION_MOBILE:[4,5,1,""],DOM_KEY_LOCATION_NUMPAD:[4,5,1,""],DOM_KEY_LOCATION_RIGHT:[4,5,1,""],DOM_KEY_LOCATION_STANDARD:[4,5,1,""],KEYDOWN:[4,5,1,""],KEYPRESS:[4,5,1,""],KEYUP:[4,5,1,""]},"domonic.events.MouseEvent":{CLICK:[4,5,1,""],CONTEXTMENU:[4,5,1,""],DBLCLICK:[4,5,1,""],MOUSEDOWN:[4,5,1,""],MOUSEENTER:[4,5,1,""],MOUSELEAVE:[4,5,1,""],MOUSEMOVE:[4,5,1,""],MOUSEOUT:[4,5,1,""],MOUSEOVER:[4,5,1,""],MOUSEUP:[4,5,1,""]},"domonic.events.PageTransitionEvent":{PAGEHIDE:[4,5,1,""],PAGESHOW:[4,5,1,""],persisted:[4,5,1,""]},"domonic.events.PointerEvent":{POINTER:[4,5,1,""]},"domonic.events.PopStateEvent":{POPSTATE:[4,5,1,""],state:[4,5,1,""]},"domonic.events.ProgressEvent":{LOADSTART:[4,5,1,""]},"domonic.events.PromiseRejectionEvent":{HANDLED:[4,5,1,""],UNHANDLED:[4,5,1,""],isRejected:[4,5,1,""],promise:[4,5,1,""],reason:[4,5,1,""]},"domonic.events.StorageEvent":{STORAGE:[4,5,1,""],key:[4,5,1,""],newValue:[4,5,1,""],oldValue:[4,5,1,""],storageArea:[4,5,1,""],url:[4,5,1,""]},"domonic.events.SubmitEvent":{SUBMIT:[4,5,1,""]},"domonic.events.SyncEvent":{lastChance:[4,5,1,""],tag:[4,5,1,""]},"domonic.events.TimerEvent":{TIMER:[4,5,1,""]},"domonic.events.TouchEvent":{TOUCHCANCEL:[4,5,1,""],TOUCHEND:[4,5,1,""],TOUCHMOVE:[4,5,1,""],TOUCHSTART:[4,5,1,""]},"domonic.events.TransitionEvent":{TRANSITIONEND:[4,5,1,""],elapsedTime:[4,5,1,""],propertyName:[4,5,1,""],pseudoElement:[4,5,1,""]},"domonic.events.TweenEvent":{COMPLETE:[4,5,1,""],PAUSE:[4,5,1,""],RESET:[4,5,1,""],START:[4,5,1,""],STOP:[4,5,1,""],TIMER:[4,5,1,""],UNPAUSE:[4,5,1,""],UPDATE_END:[4,5,1,""],UPDATE_START:[4,5,1,""]},"domonic.events.WheelEvent":{WHEEL:[4,5,1,""]},"domonic.geom":{matrix:[4,1,1,""]},"domonic.geom.matrix":{rotate:[4,2,1,""],scale:[4,2,1,""],translate:[4,2,1,""]},"domonic.html":{"var":[4,1,1,""],TemplateError:[4,4,1,""],a:[4,1,1,""],abbr:[4,1,1,""],address:[4,1,1,""],applet:[4,1,1,""],area:[4,1,1,""],article:[4,1,1,""],aside:[4,1,1,""],audio:[4,1,1,""],b:[4,1,1,""],base:[4,1,1,""],basefont:[4,1,1,""],bdi:[4,1,1,""],bdo:[4,1,1,""],blockquote:[4,1,1,""],body:[4,1,1,""],br:[4,1,1,""],button:[4,1,1,""],canvas:[4,1,1,""],caption:[4,1,1,""],center:[4,1,1,""],cite:[4,1,1,""],closed_tag:[4,1,1,""],code:[4,1,1,""],col:[4,1,1,""],colgroup:[4,1,1,""],command:[4,1,1,""],create_element:[4,3,1,""],datalist:[4,1,1,""],dd:[4,1,1,""],details:[4,1,1,""],dfn:[4,1,1,""],div:[4,1,1,""],dl:[4,1,1,""],dt:[4,1,1,""],em:[4,1,1,""],embed:[4,1,1,""],fieldset:[4,1,1,""],figcaption:[4,1,1,""],figure:[4,1,1,""],font:[4,1,1,""],footer:[4,1,1,""],form:[4,1,1,""],h1:[4,1,1,""],h2:[4,1,1,""],h3:[4,1,1,""],h4:[4,1,1,""],h5:[4,1,1,""],h6:[4,1,1,""],head:[4,1,1,""],header:[4,1,1,""],hgroup:[4,1,1,""],hr:[4,1,1,""],html:[4,1,1,""],i:[4,1,1,""],iframe:[4,1,1,""],img:[4,1,1,""],input:[4,1,1,""],ins:[4,1,1,""],isindex:[4,1,1,""],kbd:[4,1,1,""],keygen:[4,1,1,""],label:[4,1,1,""],legend:[4,1,1,""],li:[4,1,1,""],link:[4,1,1,""],listing:[4,1,1,""],main:[4,5,1,""],mark:[4,1,1,""],menu:[4,1,1,""],meta:[4,1,1,""],meter:[4,1,1,""],nav:[4,1,1,""],noscript:[4,1,1,""],ol:[4,1,1,""],optgroup:[4,1,1,""],option:[4,1,1,""],output:[4,1,1,""],p:[4,1,1,""],param:[4,1,1,""],picture:[4,1,1,""],plaintext:[4,1,1,""],portal:[4,1,1,""],pre:[4,1,1,""],progress:[4,1,1,""],q:[4,1,1,""],render:[4,3,1,""],rp:[4,1,1,""],rt:[4,1,1,""],ruby:[4,1,1,""],s:[4,1,1,""],samp:[4,1,1,""],script:[4,1,1,""],section:[4,1,1,""],select:[4,1,1,""],small:[4,1,1,""],source:[4,1,1,""],span:[4,1,1,""],strike:[4,1,1,""],strong:[4,1,1,""],style:[4,1,1,""],sub:[4,1,1,""],submit:[4,1,1,""],summary:[4,1,1,""],sup:[4,1,1,""],table:[4,1,1,""],tag:[4,1,1,""],tbody:[4,1,1,""],td:[4,1,1,""],template:[4,1,1,""],textarea:[4,1,1,""],tfoot:[4,1,1,""],th:[4,1,1,""],thead:[4,1,1,""],title:[4,1,1,""],tr:[4,1,1,""],track:[4,1,1,""],u:[4,1,1,""],ul:[4,1,1,""],video:[4,1,1,""],wbr:[4,1,1,""],xmp:[4,1,1,""]},"domonic.javascript":{"function":[4,3,1,""],Array:[4,1,1,""],Boolean:[4,1,1,""],Date:[4,1,1,""],Error:[4,4,1,""],Function:[4,1,1,""],Global:[4,1,1,""],Job:[4,1,1,""],Map:[4,1,1,""],Math:[4,1,1,""],Number:[4,1,1,""],ProgramKilled:[4,4,1,""],Reflect:[4,1,1,""],Screen:[4,1,1,""],String:[4,1,1,""],URL:[4,1,1,""],URLSearchParams:[4,1,1,""],Window:[4,1,1,""],Worker:[4,1,1,""],as_signed:[4,3,1,""],clearTimeout:[4,3,1,""],decodeURI:[4,3,1,""],decodeURIComponent:[4,3,1,""],encodeURI:[4,3,1,""],encodeURIComponent:[4,3,1,""],parseFloat:[4,3,1,""],parseInt:[4,3,1,""],setTimeout:[4,3,1,""],window:[4,5,1,""]},"domonic.javascript.Array":{at:[4,2,1,""],concat:[4,2,1,""],copyWithin:[4,2,1,""],entries:[4,2,1,""],every:[4,2,1,""],fill:[4,2,1,""],filter:[4,2,1,""],find:[4,2,1,""],findIndex:[4,2,1,""],flat:[4,2,1,""],flatMap:[4,2,1,""],forEach:[4,2,1,""],from_:[4,2,1,""],includes:[4,2,1,""],indexOf:[4,2,1,""],isArray:[4,2,1,""],join:[4,2,1,""],keys:[4,2,1,""],lastIndexOf:[4,2,1,""],length:[4,2,1,""],map:[4,2,1,""],of:[4,2,1,""],pop:[4,2,1,""],prototype:[4,5,1,""],push:[4,2,1,""],reduce:[4,2,1,""],reduceRight:[4,2,1,""],reverse:[4,2,1,""],shift:[4,2,1,""],slice:[4,2,1,""],some:[4,2,1,""],sort:[4,2,1,""],splice:[4,2,1,""],toSource:[4,2,1,""],toString:[4,2,1,""],unshift:[4,2,1,""]},"domonic.javascript.Date":{UTC:[4,2,1,""],getDate:[4,2,1,""],getDay:[4,2,1,""],getFullYear:[4,2,1,""],getHours:[4,2,1,""],getMilliseconds:[4,2,1,""],getMinutes:[4,2,1,""],getMonth:[4,2,1,""],getSeconds:[4,2,1,""],getTime:[4,2,1,""],getTimezoneOffset:[4,2,1,""],getUTCDate:[4,2,1,""],getUTCDay:[4,2,1,""],getUTCFullYear:[4,2,1,""],getUTCHours:[4,2,1,""],getUTCMilliseconds:[4,2,1,""],getUTCMinutes:[4,2,1,""],getUTCMonth:[4,2,1,""],getUTCSeconds:[4,2,1,""],getYear:[4,2,1,""],now:[4,2,1,""],parse:[4,2,1,""],setDate:[4,2,1,""],setFullYear:[4,2,1,""],setHours:[4,2,1,""],setMilliseconds:[4,2,1,""],setMinutes:[4,2,1,""],setMonth:[4,2,1,""],setSeconds:[4,2,1,""],setTime:[4,2,1,""],setUTCDate:[4,2,1,""],setUTCFullYear:[4,2,1,""],setUTCHours:[4,2,1,""],setUTCMilliseconds:[4,2,1,""],setUTCMinutes:[4,2,1,""],setUTCMonth:[4,2,1,""],setUTCSeconds:[4,2,1,""],setYear:[4,2,1,""],toDateString:[4,2,1,""],toGMTString:[4,2,1,""],toISOString:[4,2,1,""],toJSON:[4,2,1,""],toLocaleDateString:[4,2,1,""],toLocaleString:[4,2,1,""],toLocaleTimeString:[4,2,1,""],toString:[4,2,1,""],toTimeString:[4,2,1,""],toUTCString:[4,2,1,""]},"domonic.javascript.Function":{apply:[4,2,1,""],bind:[4,2,1,""],call:[4,2,1,""],toString:[4,2,1,""]},"domonic.javascript.Global":{NaN:[4,2,1,""],Number:[4,2,1,""],String:[4,2,1,""],clearTimeout:[4,2,1,""],decodeURI:[4,2,1,""],decodeURIComponent:[4,2,1,""],encodeURI:[4,2,1,""],encodeURIComponent:[4,2,1,""],eval:[4,2,1,""],isFinite:[4,2,1,""],isNaN:[4,2,1,""],parseFloat:[4,2,1,""],parseInt:[4,2,1,""],require:[4,2,1,""],setTimeout:[4,2,1,""],undefined:[4,2,1,""]},"domonic.javascript.Job":{run:[4,2,1,""]},"domonic.javascript.Map":{"delete":[4,2,1,""],clear:[4,2,1,""],entries:[4,2,1,""],get:[4,2,1,""],has:[4,2,1,""],keys:[4,2,1,""],set:[4,2,1,""],values:[4,2,1,""]},"domonic.javascript.Math":{hypot:[4,2,1,""],log2:[4,2,1,""],loglp:[4,2,1,""]},"domonic.javascript.Number":{NEGATIVE_INFINITY:[4,5,1,""],POSITIVE_INFINITY:[4,5,1,""],isInteger:[4,2,1,""],isSafeInteger:[4,2,1,""],toExponential:[4,2,1,""],toFixed:[4,2,1,""],toPrecision:[4,2,1,""],toString:[4,2,1,""]},"domonic.javascript.Reflect":{apply:[4,2,1,""],construct:[4,2,1,""],defineProperty:[4,2,1,""],deleteProperty:[4,2,1,""],get:[4,2,1,""],getOwnPropertyDescriptor:[4,2,1,""],getPrototypeOf:[4,2,1,""],has:[4,2,1,""],ownKeys:[4,2,1,""],preventExtensions:[4,2,1,""],set:[4,2,1,""],setPrototypeOf:[4,2,1,""]},"domonic.javascript.Screen":{availHeight:[4,2,1,""],availWidth:[4,2,1,""],colorDepth:[4,2,1,""],height:[4,2,1,""],pixelDepth:[4,2,1,""],width:[4,2,1,""]},"domonic.javascript.String":{big:[4,2,1,""],blink:[4,2,1,""],bold:[4,2,1,""],charAt:[4,2,1,""],charCodeAt:[4,2,1,""],codePointAt:[4,2,1,""],compile:[4,2,1,""],concat:[4,2,1,""],div:[4,2,1,""],endsWith:[4,2,1,""],fixed:[4,2,1,""],fontcolor:[4,2,1,""],fontsize:[4,2,1,""],fromCharCode:[4,2,1,""],fromCodePoint:[4,2,1,""],includes:[4,2,1,""],indexOf:[4,2,1,""],italics:[4,2,1,""],lastIndexOf:[4,2,1,""],link:[4,2,1,""],localeCompare:[4,2,1,""],match:[4,2,1,""],matchAll:[4,2,1,""],padEnd:[4,2,1,""],padStart:[4,2,1,""],raw:[4,2,1,""],repeat:[4,2,1,""],replace:[4,2,1,""],replaceAll:[4,2,1,""],search:[4,2,1,""],slice:[4,2,1,""],small:[4,2,1,""],split:[4,2,1,""],startsWith:[4,2,1,""],strike:[4,2,1,""],sub:[4,2,1,""],substr:[4,2,1,""],substring:[4,2,1,""],sup:[4,2,1,""],toCharCode:[4,2,1,""],toCodePoint:[4,2,1,""],toLocaleLowerCase:[4,2,1,""],toLocaleUpperCase:[4,2,1,""],toLowerCase:[4,2,1,""],toUpperCase:[4,2,1,""],trim:[4,2,1,""],trimEnd:[4,2,1,""],trimStart:[4,2,1,""],webpage:[4,2,1,""]},"domonic.javascript.URL":{hash:[4,2,1,""]},"domonic.javascript.URLSearchParams":{"delete":[4,2,1,""],append:[4,2,1,""],entries:[4,2,1,""],forEach:[4,2,1,""],get:[4,2,1,""],getAll:[4,2,1,""],has:[4,2,1,""],keys:[4,2,1,""],set:[4,2,1,""],sort:[4,2,1,""],toString:[4,2,1,""],values:[4,2,1,""]},"domonic.javascript.Window":{alert:[4,2,1,""],atob:[4,2,1,""],btoa:[4,2,1,""],clearTimeout:[4,2,1,""],prompt:[4,2,1,""],requestAnimationFrame:[4,2,1,""],setTimeout:[4,2,1,""]},"domonic.javascript.Worker":{postMessage:[4,2,1,""],terminate:[4,2,1,""]},"domonic.lerpy":{easing:[4,0,0,"-"],tween:[4,0,0,"-"]},"domonic.lerpy.tween":{Tween:[4,1,1,""]},"domonic.lerpy.tween.Tween":{pause:[4,2,1,""],unpause:[4,2,1,""]},"domonic.style":{CSSRule:[4,1,1,""],CSSRuleList:[4,1,1,""],CSSStyleDeclaration:[4,1,1,""],CSSStyleSheet:[4,1,1,""],Style:[4,1,1,""],StyleSheet:[4,1,1,""],StyleSheetList:[4,1,1,""]},"domonic.style.CSSRule":{cssText:[4,2,1,""],parentRule:[4,2,1,""],parentStyleSheet:[4,2,1,""],type:[4,2,1,""]},"domonic.style.CSSRuleList":{item:[4,2,1,""],length:[4,2,1,""]},"domonic.style.CSSStyleDeclaration":{cssText:[4,2,1,""],getPropertyCSSValue:[4,2,1,""],getPropertyPriority:[4,2,1,""],getPropertyValue:[4,2,1,""],item:[4,2,1,""],length:[4,2,1,""],parentRule:[4,2,1,""],removeProperty:[4,2,1,""]},"domonic.style.CSSStyleSheet":{addRule:[4,2,1,""],cssRules:[4,2,1,""],deleteRule:[4,2,1,""],insertRule:[4,2,1,""],ownerRule:[4,2,1,""],removeRule:[4,2,1,""],replace:[4,2,1,""],replaceSync:[4,2,1,""],rules:[4,2,1,""]},"domonic.style.Style":{alignContent:[4,2,1,""],alignItems:[4,2,1,""],alignSelf:[4,2,1,""],animation:[4,2,1,""],animationDelay:[4,2,1,""],animationDirection:[4,2,1,""],animationDuration:[4,2,1,""],animationFillMode:[4,2,1,""],animationIterationCount:[4,2,1,""],animationName:[4,2,1,""],animationPlayState:[4,2,1,""],animationTimingFunction:[4,2,1,""],backfaceVisibility:[4,2,1,""],background:[4,2,1,""],backgroundAttachment:[4,2,1,""],backgroundClip:[4,2,1,""],backgroundColor:[4,2,1,""],backgroundImage:[4,2,1,""],backgroundOrigin:[4,2,1,""],backgroundPosition:[4,2,1,""],backgroundRepeat:[4,2,1,""],backgroundSize:[4,2,1,""],border:[4,2,1,""],borderBottom:[4,2,1,""],borderBottomColor:[4,2,1,""],borderBottomLeftRadius:[4,2,1,""],borderBottomRightRadius:[4,2,1,""],borderBottomStyle:[4,2,1,""],borderBottomWidth:[4,2,1,""],borderCollapse:[4,2,1,""],borderColor:[4,2,1,""],borderImage:[4,2,1,""],borderImageOutset:[4,2,1,""],borderImageRepeat:[4,2,1,""],borderImageSlice:[4,2,1,""],borderImageSource:[4,2,1,""],borderImageWidth:[4,2,1,""],borderLeft:[4,2,1,""],borderLeftColor:[4,2,1,""],borderLeftStyle:[4,2,1,""],borderLeftWidth:[4,2,1,""],borderRadius:[4,2,1,""],borderRight:[4,2,1,""],borderRightColor:[4,2,1,""],borderRightStyle:[4,2,1,""],borderRightWidth:[4,2,1,""],borderSpacing:[4,2,1,""],borderStyle:[4,2,1,""],borderTop:[4,2,1,""],borderTopColor:[4,2,1,""],borderTopLeftRadius:[4,2,1,""],borderTopRightRadius:[4,2,1,""],borderTopStyle:[4,2,1,""],borderTopWidth:[4,2,1,""],borderWidth:[4,2,1,""],bottom:[4,2,1,""],boxDecorationBreak:[4,2,1,""],boxShadow:[4,2,1,""],boxSizing:[4,2,1,""],captionSide:[4,2,1,""],clear:[4,2,1,""],clip:[4,2,1,""],color:[4,2,1,""],columnCount:[4,2,1,""],columnFill:[4,2,1,""],columnGap:[4,2,1,""],columnRule:[4,2,1,""],columnRuleColor:[4,2,1,""],columnRuleStyle:[4,2,1,""],columnRuleWidth:[4,2,1,""],columnSpan:[4,2,1,""],columnWidth:[4,2,1,""],columns:[4,2,1,""],content:[4,2,1,""],counterIncrement:[4,2,1,""],counterReset:[4,2,1,""],cssFloat:[4,2,1,""],cursor:[4,2,1,""],direction:[4,2,1,""],display:[4,2,1,""],emptyCells:[4,2,1,""],filter:[4,2,1,""],flex:[4,2,1,""],flexBasis:[4,2,1,""],flexDirection:[4,2,1,""],flexFlow:[4,2,1,""],flexGrow:[4,2,1,""],flexShrink:[4,2,1,""],flexWrap:[4,2,1,""],font:[4,2,1,""],fontFamily:[4,2,1,""],fontSize:[4,2,1,""],fontSizeAdjust:[4,2,1,""],fontStretch:[4,2,1,""],fontStyle:[4,2,1,""],fontVariant:[4,2,1,""],fontWeight:[4,2,1,""],hangingPunctuation:[4,2,1,""],height:[4,2,1,""],hyphens:[4,2,1,""],icon:[4,2,1,""],imageOrientation:[4,2,1,""],isolation:[4,2,1,""],justifyContent:[4,2,1,""],left:[4,2,1,""],letterSpacing:[4,2,1,""],lineHeight:[4,2,1,""],listStyle:[4,2,1,""],listStyleImage:[4,2,1,""],listStylePosition:[4,2,1,""],listStyleType:[4,2,1,""],margin:[4,2,1,""],marginBottom:[4,2,1,""],marginLeft:[4,2,1,""],marginRight:[4,2,1,""],marginTop:[4,2,1,""],maxHeight:[4,2,1,""],maxWidth:[4,2,1,""],minHeight:[4,2,1,""],minWidth:[4,2,1,""],navDown:[4,2,1,""],navIndex:[4,2,1,""],navLeft:[4,2,1,""],navRight:[4,2,1,""],navUp:[4,2,1,""],objectFit:[4,2,1,""],objectPosition:[4,2,1,""],opacity:[4,2,1,""],order:[4,2,1,""],orphans:[4,2,1,""],outline:[4,2,1,""],outlineColor:[4,2,1,""],outlineOffset:[4,2,1,""],outlineStyle:[4,2,1,""],outlineWidth:[4,2,1,""],overflow:[4,2,1,""],overflowX:[4,2,1,""],overflowY:[4,2,1,""],padding:[4,2,1,""],paddingBottom:[4,2,1,""],paddingLeft:[4,2,1,""],paddingRight:[4,2,1,""],paddingTop:[4,2,1,""],pageBreakAfter:[4,2,1,""],pageBreakBefore:[4,2,1,""],pageBreakInside:[4,2,1,""],perspective:[4,2,1,""],perspectiveOrigin:[4,2,1,""],position:[4,2,1,""],quotes:[4,2,1,""],resize:[4,2,1,""],right:[4,2,1,""],tabSize:[4,2,1,""],tableLayout:[4,2,1,""],textAlign:[4,2,1,""],textAlignLast:[4,2,1,""],textDecoration:[4,2,1,""],textDecorationColor:[4,2,1,""],textDecorationLine:[4,2,1,""],textDecorationStyle:[4,2,1,""],textIndent:[4,2,1,""],textJustify:[4,2,1,""],textOverflow:[4,2,1,""],textShadow:[4,2,1,""],textTransform:[4,2,1,""],top:[4,2,1,""],transform:[4,2,1,""],transformOrigin:[4,2,1,""],transformStyle:[4,2,1,""],transition:[4,2,1,""],transitionDelay:[4,2,1,""],transitionDuration:[4,2,1,""],transitionProperty:[4,2,1,""],transitionTimingFunction:[4,2,1,""],unicodeBidi:[4,2,1,""],userSelect:[4,2,1,""],verticalAlign:[4,2,1,""],visibility:[4,2,1,""],whiteSpace:[4,2,1,""],widows:[4,2,1,""],width:[4,2,1,""],wordBreak:[4,2,1,""],wordSpacing:[4,2,1,""],wordWrap:[4,2,1,""],zIndex:[4,2,1,""]},"domonic.style.StyleSheet":{href:[4,2,1,""],media:[4,2,1,""],ownerNode:[4,2,1,""],parentStyleSheet:[4,2,1,""],title:[4,2,1,""],type:[4,2,1,""]},"domonic.style.StyleSheetList":{item:[4,2,1,""],length:[4,2,1,""]},"domonic.svg":{"switch":[4,1,1,""],altGlyph:[4,1,1,""],altGlyphDef:[4,1,1,""],altGlyphItem:[4,1,1,""],animate:[4,1,1,""],animateColor:[4,1,1,""],animateMotion:[4,1,1,""],animateTransform:[4,1,1,""],circle:[4,1,1,""],clipPath:[4,1,1,""],cursor:[4,1,1,""],defs:[4,1,1,""],desc:[4,1,1,""],discard:[4,1,1,""],ellipse:[4,1,1,""],feBlend:[4,1,1,""],feColorMatrix:[4,1,1,""],feComponentTransfer:[4,1,1,""],feComposite:[4,1,1,""],feConvolveMatrix:[4,1,1,""],feDiffuseLighting:[4,1,1,""],feDisplacementMap:[4,1,1,""],feDistantLight:[4,1,1,""],feDropShadow:[4,1,1,""],feFlood:[4,1,1,""],feFuncA:[4,1,1,""],feFuncB:[4,1,1,""],feFuncG:[4,1,1,""],feFuncR:[4,1,1,""],feGaussianBlur:[4,1,1,""],feImage:[4,1,1,""],feMerge:[4,1,1,""],feMergeNode:[4,1,1,""],feMorphology:[4,1,1,""],feOffset:[4,1,1,""],fePointLight:[4,1,1,""],feSpecularLighting:[4,1,1,""],feSpotLight:[4,1,1,""],feTile:[4,1,1,""],feTurbulence:[4,1,1,""],font:[4,1,1,""],foreignObject:[4,1,1,""],g:[4,1,1,""],glyph:[4,1,1,""],glyphRef:[4,1,1,""],hatch:[4,1,1,""],hatchpath:[4,1,1,""],hkern:[4,1,1,""],image:[4,1,1,""],line:[4,1,1,""],linearGradient:[4,1,1,""],marker:[4,1,1,""],mask:[4,1,1,""],mpath:[4,1,1,""],path:[4,1,1,""],pattern:[4,1,1,""],polygon:[4,1,1,""],polyline:[4,1,1,""],radialGradient:[4,1,1,""],rect:[4,1,1,""],solidcolor:[4,1,1,""],stop:[4,1,1,""],svg:[4,1,1,""],symbol:[4,1,1,""],text:[4,1,1,""],textPath:[4,1,1,""],title:[4,1,1,""],tref:[4,1,1,""],tspan:[4,1,1,""],unknown:[4,1,1,""],use:[4,1,1,""],view:[4,1,1,""],vkern:[4,1,1,""]},"domonic.terminal":{"export":[4,1,1,""],"true":[4,1,1,""],TerminalException:[4,4,1,""],alias:[4,1,1,""],apt:[4,1,1,""],ar:[4,1,1,""],asa:[4,1,1,""],at:[4,1,1,""],awk:[4,1,1,""],banner:[4,1,1,""],basename:[4,1,1,""],bash:[4,1,1,""],batch:[4,1,1,""],bc:[4,1,1,""],bg:[4,1,1,""],bind:[4,1,1,""],builtin:[4,1,1,""],cal:[4,1,1,""],caller:[4,1,1,""],cat:[4,1,1,""],cc:[4,1,1,""],cd:[4,1,1,""],cflow:[4,1,1,""],chgrp:[4,1,1,""],chmod:[4,1,1,""],chown:[4,1,1,""],cksum:[4,1,1,""],comm:[4,1,1,""],command:[4,1,1,""],compgen:[4,1,1,""],complete:[4,1,1,""],compopt:[4,1,1,""],compress:[4,1,1,""],convert:[4,1,1,""],cowsay:[4,1,1,""],cp:[4,1,1,""],cron:[4,1,1,""],crontab:[4,1,1,""],csplit:[4,1,1,""],ctags:[4,1,1,""],curl:[4,1,1,""],cut:[4,1,1,""],cxref:[4,1,1,""],date:[4,1,1,""],dd:[4,1,1,""],declare:[4,1,1,""],delta:[4,1,1,""],df:[4,1,1,""],diff:[4,1,1,""],dirname:[4,1,1,""],dirs:[4,1,1,""],disown:[4,1,1,""],du:[4,1,1,""],echo:[4,1,1,""],ed:[4,1,1,""],enable:[4,1,1,""],env:[4,1,1,""],ex:[4,1,1,""],exit:[4,1,1,""],expand:[4,1,1,""],expr:[4,1,1,""],fc:[4,1,1,""],ffmpeg:[4,1,1,""],fg:[4,1,1,""],figlet:[4,1,1,""],file:[4,1,1,""],find:[4,1,1,""],finger:[4,1,1,""],fold:[4,1,1,""],fort77:[4,1,1,""],fuser:[4,1,1,""],gcc:[4,1,1,""],gencat:[4,1,1,""],get:[4,1,1,""],getconf:[4,1,1,""],getopts:[4,1,1,""],git:[4,1,1,""],grep:[4,1,1,""],groupadd:[4,1,1,""],groupdel:[4,1,1,""],groups:[4,1,1,""],gunzip:[4,1,1,""],gzip:[4,1,1,""],head:[4,1,1,""],history:[4,1,1,""],iconv:[4,1,1,""],ifconfig:[4,1,1,""],ipconfig:[4,1,1,""],ipcrm:[4,1,1,""],ipcs:[4,1,1,""],jobs:[4,1,1,""],join:[4,1,1,""],jq:[4,1,1,""],kill:[4,1,1,""],killall:[4,1,1,""],less:[4,1,1,""],let:[4,1,1,""],lex:[4,1,1,""],link:[4,1,1,""],ln:[4,1,1,""],local:[4,1,1,""],locale:[4,1,1,""],localedef:[4,1,1,""],logger:[4,1,1,""],logname:[4,1,1,""],logout:[4,1,1,""],lp:[4,1,1,""],ls:[4,1,1,""],m4:[4,1,1,""],mailx:[4,1,1,""],make:[4,1,1,""],man:[4,1,1,""],mapfile:[4,1,1,""],mesg:[4,1,1,""],mkdir:[4,1,1,""],mkfifo:[4,1,1,""],mkfile:[4,1,1,""],more:[4,1,1,""],mv:[4,1,1,""],nautilus:[4,1,1,""],newgrp:[4,1,1,""],nice:[4,1,1,""],nl:[4,1,1,""],nm:[4,1,1,""],nmap:[4,1,1,""],nohup:[4,1,1,""],npm:[4,1,1,""],od:[4,1,1,""],passwd:[4,1,1,""],paste:[4,1,1,""],patch:[4,1,1,""],pathchk:[4,1,1,""],pax:[4,1,1,""],ping:[4,1,1,""],pip:[4,1,1,""],popd:[4,1,1,""],pr:[4,1,1,""],printf:[4,1,1,""],prs:[4,1,1,""],ps:[4,1,1,""],pushd:[4,1,1,""],pwd:[4,1,1,""],python:[4,1,1,""],qalter:[4,1,1,""],qdel:[4,1,1,""],qhold:[4,1,1,""],qmove:[4,1,1,""],qmsg:[4,1,1,""],qrerun:[4,1,1,""],qrls:[4,1,1,""],qselect:[4,1,1,""],qsig:[4,1,1,""],qstat:[4,1,1,""],qsub:[4,1,1,""],read:[4,1,1,""],readarray:[4,1,1,""],readonly:[4,1,1,""],reboot:[4,1,1,""],renice:[4,1,1,""],rm:[4,1,1,""],rmdel:[4,1,1,""],rmdir:[4,1,1,""],rsync:[4,1,1,""],sact:[4,1,1,""],say:[4,1,1,""],sccs:[4,1,1,""],scp:[4,1,1,""],sed:[4,1,1,""],sh:[4,1,1,""],shift:[4,1,1,""],shopt:[4,1,1,""],shutdown:[4,1,1,""],sleep:[4,1,1,""],sort:[4,1,1,""],source:[4,1,1,""],split:[4,1,1,""],ssh:[4,1,1,""],strings:[4,1,1,""],strip:[4,1,1,""],stty:[4,1,1,""],suspend:[4,1,1,""],tabs:[4,1,1,""],tail:[4,1,1,""],talk:[4,1,1,""],tar:[4,1,1,""],tee:[4,1,1,""],test:[4,1,1,""],time:[4,1,1,""],times:[4,1,1,""],touch:[4,1,1,""],tput:[4,1,1,""],tr:[4,1,1,""],trap:[4,1,1,""],tsort:[4,1,1,""],tty:[4,1,1,""],typeset:[4,1,1,""],ulimit:[4,1,1,""],umask:[4,1,1,""],unalias:[4,1,1,""],uname:[4,1,1,""],uncompress:[4,1,1,""],unexpand:[4,1,1,""],unget:[4,1,1,""],uniq:[4,1,1,""],unlink:[4,1,1,""],unset:[4,1,1,""],uptime:[4,1,1,""],useradd:[4,1,1,""],userdel:[4,1,1,""],users:[4,1,1,""],uucp:[4,1,1,""],uudecode:[4,1,1,""],uuencode:[4,1,1,""],uustat:[4,1,1,""],uux:[4,1,1,""],val:[4,1,1,""],wait:[4,1,1,""],wc:[4,1,1,""],wget:[4,1,1,""],what:[4,1,1,""],who:[4,1,1,""],whoami:[4,1,1,""],write:[4,1,1,""],xargs:[4,1,1,""],yacc:[4,1,1,""],zcat:[4,1,1,""]},"domonic.terminal.command":{run:[4,2,1,""]},"domonic.utils":{Utils:[4,1,1,""]},"domonic.utils.Utils":{acronym:[4,2,1,""],case_camel:[4,2,1,""],case_kebab:[4,2,1,""],case_snake:[4,2,1,""],chunk:[4,2,1,""],chunks:[4,2,1,""],clean:[4,2,1,""],dictify:[4,2,1,""],digits:[4,2,1,""],escape:[4,2,1,""],frequency:[4,2,1,""],get_vowels:[4,2,1,""],has_internet:[4,2,1,""],init_assets:[4,2,1,""],merge_dictionaries:[4,2,1,""],permutations:[4,2,1,""],random_color:[4,2,1,""],replace_between:[4,2,1,""],squash:[4,2,1,""],to_dictionary:[4,2,1,""],truncate:[4,2,1,""],unescape:[4,2,1,""],unique:[4,2,1,""],untitle:[4,2,1,""],url2file:[4,2,1,""]},"domonic.webapi":{url:[4,0,0,"-"]},"domonic.webapi.url":{URL:[4,1,1,""],URLSearchParams:[4,1,1,""]},"domonic.webapi.url.URL":{hash:[4,2,1,""]},"domonic.webapi.url.URLSearchParams":{"delete":[4,2,1,""],append:[4,2,1,""],entries:[4,2,1,""],forEach:[4,2,1,""],get:[4,2,1,""],getAll:[4,2,1,""],has:[4,2,1,""],keys:[4,2,1,""],set:[4,2,1,""],sort:[4,2,1,""],toString:[4,2,1,""],values:[4,2,1,""]},"domonic.xml":{sitemap:[4,0,0,"-"],x3d:[4,0,0,"-"]},"domonic.xml.sitemap":{changefreq:[4,1,1,""],lastmod:[4,1,1,""],loc:[4,1,1,""],priority:[4,1,1,""],sitemap:[4,1,1,""],sitemap_format:[4,3,1,""],sitemap_from_urls:[4,3,1,""],sitemapindex:[4,1,1,""],sitemapindex_from_urls:[4,3,1,""],url:[4,1,1,""],urlset:[4,1,1,""]},"domonic.xml.x3d":{"switch":[4,5,1,""],Anchor:[4,1,1,""],Appearance:[4,5,1,""],Arc2D:[4,1,1,""],ArcClose2D:[4,1,1,""],AudioClip:[4,1,1,""],Background:[4,1,1,""],BallJoint:[4,1,1,""],Billboard:[4,1,1,""],BinaryGeometry:[4,1,1,""],BlendMode:[4,1,1,""],BlendedVolumeStyle:[4,1,1,""],Block:[4,1,1,""],BoundaryEnhancementVolumeStyle:[4,1,1,""],Box:[4,5,1,""],BufferAccessor:[4,1,1,""],BufferGeometry:[4,1,1,""],BufferView:[4,1,1,""],CADAssembly:[4,1,1,""],CADFace:[4,1,1,""],CADLayer:[4,1,1,""],CADPart:[4,1,1,""],CartoonVolumeStyle:[4,1,1,""],Circle2D:[4,1,1,""],ClipPlane:[4,1,1,""],CollidableShape:[4,1,1,""],Collision:[4,1,1,""],CollisionCollection:[4,1,1,""],CollisionSensor:[4,1,1,""],Color:[4,1,1,""],ColorChaser:[4,1,1,""],ColorDamper:[4,1,1,""],ColorInterpolator:[4,1,1,""],ColorMaskMode:[4,1,1,""],ColorRGBA:[4,1,1,""],CommonSurfaceShader:[4,1,1,""],ComposedCubeMapTexture:[4,1,1,""],ComposedShader:[4,1,1,""],ComposedTexture3D:[4,1,1,""],ComposedVolumeStyle:[4,1,1,""],Cone:[4,1,1,""],Coordinate:[4,1,1,""],CoordinateDamper:[4,1,1,""],CoordinateDouble:[4,1,1,""],CoordinateInterpolator:[4,1,1,""],Cylinder:[4,1,1,""],CylinderSensor:[4,1,1,""],DepthMode:[4,1,1,""],DirectionalLight:[4,1,1,""],Dish:[4,1,1,""],Disk2D:[4,1,1,""],DoubleAxisHingeJoint:[4,1,1,""],DynamicLOD:[4,1,1,""],EdgeEnhancementVolumeStyle:[4,1,1,""],ElevationGrid:[4,1,1,""],Environment:[4,1,1,""],Extrusion:[4,1,1,""],Field:[4,1,1,""],FloatVertexAttribute:[4,1,1,""],Fog:[4,1,1,""],FontStyle:[4,1,1,""],GeneratedCubeMapTexture:[4,1,1,""],GeoCoordinate:[4,1,1,""],GeoElevationGrid:[4,1,1,""],GeoLOD:[4,1,1,""],GeoLocation:[4,1,1,""],GeoMetadata:[4,1,1,""],GeoOrigin:[4,1,1,""],GeoPositionInterpolator:[4,1,1,""],GeoTransform:[4,1,1,""],GeoViewpoint:[4,1,1,""],Group:[4,1,1,""],HAnimDisplacer:[4,1,1,""],HAnimHumanoid:[4,1,1,""],HAnimJoint:[4,1,1,""],HAnimSegment:[4,1,1,""],HAnimSite:[4,1,1,""],ImageTexture3D:[4,1,1,""],ImageTexture:[4,1,1,""],ImageTextureAtlas:[4,1,1,""],IndexedFaceSet:[4,1,1,""],IndexedLineSet:[4,1,1,""],IndexedQuadSet:[4,1,1,""],IndexedTriangleSet:[4,1,1,""],IndexedTriangleStripSet:[4,1,1,""],Inline:[4,5,1,""],IsoSurfaceVolumeData:[4,1,1,""],LOD:[4,1,1,""],LineProperties:[4,1,1,""],LineSet:[4,1,1,""],MPRPlane:[4,1,1,""],MPRVolumeStyle:[4,1,1,""],Material:[4,5,1,""],MatrixTextureTransform:[4,1,1,""],MatrixTransform:[4,1,1,""],Mesh:[4,1,1,""],MetadataBoolean:[4,1,1,""],MetadataDouble:[4,1,1,""],MetadataFloat:[4,1,1,""],MetadataInteger:[4,1,1,""],MetadataSet:[4,1,1,""],MetadataString:[4,1,1,""],MotorJoint:[4,1,1,""],MovieTexture:[4,1,1,""],MultiTexture:[4,1,1,""],MultiTextureCoordinate:[4,1,1,""],NavigationInfo:[4,1,1,""],Normal:[4,1,1,""],NormalInterpolator:[4,1,1,""],Nozzle:[4,1,1,""],OpacityMapVolumeStyle:[4,1,1,""],OrientationChaser:[4,1,1,""],OrientationDamper:[4,1,1,""],OrientationInterpolator:[4,1,1,""],OrthoViewpoint:[4,1,1,""],Param:[4,1,1,""],ParticleSet:[4,1,1,""],PhysicalEnvironmentLight:[4,1,1,""],PhysicalMaterial:[4,1,1,""],PixelTexture3D:[4,1,1,""],PixelTexture:[4,1,1,""],Plane:[4,5,1,""],PlaneSensor:[4,1,1,""],PointLight:[4,1,1,""],PointSet:[4,1,1,""],Polyline2D:[4,1,1,""],Polypoint2D:[4,1,1,""],PopGeometry:[4,1,1,""],PopGeometryLevel:[4,1,1,""],PositionChaser2D:[4,1,1,""],PositionChaser:[4,1,1,""],PositionDamper2D:[4,1,1,""],PositionDamper:[4,1,1,""],PositionInterpolator2D:[4,1,1,""],PositionInterpolator:[4,1,1,""],ProjectionVolumeStyle:[4,1,1,""],Pyramid:[4,1,1,""],QuadSet:[4,1,1,""],RadarVolumeStyle:[4,1,1,""],Rectangle2D:[4,1,1,""],RectangularTorus:[4,1,1,""],RefinementTexture:[4,1,1,""],RemoteSelectionGroup:[4,1,1,""],RenderedTexture:[4,1,1,""],RigidBody:[4,1,1,""],RigidBodyCollection:[4,1,1,""],Route:[4,1,1,""],ScalarChaser:[4,1,1,""],ScalarDamper:[4,1,1,""],ScalarInterpolator:[4,1,1,""],Scene:[4,5,1,""],SegmentedVolumeData:[4,1,1,""],ShadedVolumeStyle:[4,1,1,""],ShaderPart:[4,1,1,""],Shape:[4,5,1,""],SilhouetteEnhancementVolumeStyle:[4,1,1,""],SingleAxisHingeJoint:[4,1,1,""],SliderJoint:[4,1,1,""],SlopedCylinder:[4,1,1,""],Snout:[4,1,1,""],SolidOfRevolution:[4,1,1,""],Sound:[4,1,1,""],Sphere:[4,5,1,""],SphereSegment:[4,1,1,""],SphereSensor:[4,1,1,""],SplinePositionInterpolator:[4,1,1,""],SpotLight:[4,1,1,""],StaticGroup:[4,1,1,""],StippleVolumeStyle:[4,1,1,""],SurfaceShaderTexture:[4,1,1,""],Switch:[4,1,1,""],TexCoordDamper2D:[4,1,1,""],Text:[4,1,1,""],Texture:[4,1,1,""],TextureCoordinate3D:[4,1,1,""],TextureCoordinate:[4,1,1,""],TextureCoordinateGenerator:[4,1,1,""],TextureProperties:[4,1,1,""],TextureTransform3D:[4,1,1,""],TextureTransform:[4,1,1,""],TextureTransformMatrix3D:[4,1,1,""],TimeSensor:[4,5,1,""],ToneMappedVolumeStyle:[4,1,1,""],Torus:[4,1,1,""],TouchSensor:[4,1,1,""],Transform:[4,5,1,""],TriangleSet2D:[4,1,1,""],TriangleSet:[4,1,1,""],TwoSidedMaterial:[4,1,1,""],Uniform:[4,1,1,""],UniversalJoint:[4,1,1,""],Viewfrustum:[4,1,1,""],Viewpoint:[4,1,1,""],VolumeData:[4,1,1,""],WorldInfo:[4,1,1,""],X3D:[4,5,1,""],X3DAppearanceChildNode:[4,1,1,""],X3DAppearanceNode:[4,1,1,""],X3DBackgroundNode:[4,1,1,""],X3DBinaryContainerGeometryNode:[4,1,1,""],X3DBindableNode:[4,1,1,""],X3DBoundedObject:[4,1,1,""],X3DChaserNode:[4,1,1,""],X3DChildNode:[4,1,1,""],X3DColorNode:[4,1,1,""],X3DComposableVolumeRenderStyleNode:[4,1,1,""],X3DComposedGeometryNode:[4,1,1,""],X3DCoordinateNode:[4,1,1,""],X3DDamperNode:[4,1,1,""],X3DDragSensorNode:[4,1,1,""],X3DEnvironmentNode:[4,1,1,""],X3DEnvironmentTextureNode:[4,1,1,""],X3DFogNode:[4,1,1,""],X3DFollowerNode:[4,1,1,""],X3DFontStyleNode:[4,1,1,""],X3DGeometricPropertyNode:[4,1,1,""],X3DGeometryNode:[4,1,1,""],X3DGroupingNode:[4,1,1,""],X3DInfoNode:[4,1,1,""],X3DInterpolatorNode:[4,1,1,""],X3DLODNode:[4,1,1,""],X3DLightNode:[4,1,1,""],X3DMaterialNode:[4,1,1,""],X3DMetadataObject:[4,1,1,""],X3DNBodyCollidableNode:[4,1,1,""],X3DNavigationInfoNode:[4,1,1,""],X3DNode:[4,1,1,""],X3DPlanarGeometryNode:[4,1,1,""],X3DPointingDeviceSensorNode:[4,1,1,""],X3DRigidJointNode:[4,1,1,""],X3DSensorNode:[4,1,1,""],X3DShaderNode:[4,1,1,""],X3DShapeNode:[4,1,1,""],X3DSoundNode:[4,1,1,""],X3DSoundSourceNode:[4,1,1,""],X3DSpatialGeometryNode:[4,1,1,""],X3DTexture3DNode:[4,1,1,""],X3DTextureCoordinateNode:[4,1,1,""],X3DTextureNode:[4,1,1,""],X3DTextureTransformNode:[4,1,1,""],X3DTimeDependentNode:[4,1,1,""],X3DTouchSensorNode:[4,1,1,""],X3DTransformNode:[4,1,1,""],X3DVertexAttributeNode:[4,1,1,""],X3DViewpointNode:[4,1,1,""],X3DVolumeDataNode:[4,1,1,""],X3DVolumeRenderStyleNode:[4,1,1,""],anchor:[4,5,1,""],appearance:[4,1,1,""],arc2D:[4,5,1,""],arcClose2D:[4,5,1,""],audioClip:[4,5,1,""],background:[4,5,1,""],ballJoint:[4,5,1,""],billboard:[4,5,1,""],binaryGeometry:[4,5,1,""],blendMode:[4,5,1,""],blendedVolumeStyle:[4,5,1,""],block:[4,5,1,""],boundaryEnhancementVolumeStyle:[4,5,1,""],box:[4,1,1,""],bufferAccessor:[4,5,1,""],bufferGeometry:[4,5,1,""],bufferView:[4,5,1,""],cADAssembly:[4,5,1,""],cADFace:[4,5,1,""],cADLayer:[4,5,1,""],cADPart:[4,5,1,""],cartoonVolumeStyle:[4,5,1,""],circle2D:[4,5,1,""],clipPlane:[4,5,1,""],collidableShape:[4,5,1,""],collision:[4,5,1,""],collisionCollection:[4,5,1,""],collisionSensor:[4,5,1,""],color:[4,5,1,""],colorChaser:[4,5,1,""],colorDamper:[4,5,1,""],colorInterpolator:[4,5,1,""],colorMaskMode:[4,5,1,""],colorRGBA:[4,5,1,""],commonSurfaceShader:[4,5,1,""],composedCubeMapTexture:[4,5,1,""],composedShader:[4,5,1,""],composedTexture3D:[4,5,1,""],composedVolumeStyle:[4,5,1,""],cone:[4,5,1,""],coordinate:[4,5,1,""],coordinateDamper:[4,5,1,""],coordinateDouble:[4,5,1,""],coordinateInterpolator:[4,5,1,""],cylinder:[4,5,1,""],cylinderSensor:[4,5,1,""],depthMode:[4,5,1,""],directionalLight:[4,5,1,""],dish:[4,5,1,""],disk2D:[4,5,1,""],doubleAxisHingeJoint:[4,5,1,""],dynamicLOD:[4,5,1,""],edgeEnhancementVolumeStyle:[4,5,1,""],elevationGrid:[4,5,1,""],environment:[4,5,1,""],extrusion:[4,5,1,""],field:[4,5,1,""],floatVertexAttribute:[4,5,1,""],fog:[4,5,1,""],fontStyle:[4,5,1,""],generatedCubeMapTexture:[4,5,1,""],geoCoordinate:[4,5,1,""],geoElevationGrid:[4,5,1,""],geoLOD:[4,5,1,""],geoLocation:[4,5,1,""],geoMetadata:[4,5,1,""],geoOrigin:[4,5,1,""],geoPositionInterpolator:[4,5,1,""],geoTransform:[4,5,1,""],geoViewpoint:[4,5,1,""],group:[4,5,1,""],hAnimDisplacer:[4,5,1,""],hAnimHumanoid:[4,5,1,""],hAnimJoint:[4,5,1,""],hAnimSegment:[4,5,1,""],hAnimSite:[4,5,1,""],imageTexture3D:[4,5,1,""],imageTexture:[4,5,1,""],imageTextureAtlas:[4,5,1,""],indexedFaceSet:[4,5,1,""],indexedLineSet:[4,5,1,""],indexedQuadSet:[4,5,1,""],indexedTriangleSet:[4,5,1,""],indexedTriangleStripSet:[4,5,1,""],inline:[4,1,1,""],isoSurfaceVolumeData:[4,5,1,""],lOD:[4,5,1,""],lineProperties:[4,5,1,""],lineSet:[4,5,1,""],mPRPlane:[4,5,1,""],mPRVolumeStyle:[4,5,1,""],material:[4,1,1,""],matrixTextureTransform:[4,5,1,""],matrixTransform:[4,5,1,""],mesh:[4,5,1,""],metadataBoolean:[4,5,1,""],metadataDouble:[4,5,1,""],metadataFloat:[4,5,1,""],metadataInteger:[4,5,1,""],metadataSet:[4,5,1,""],metadataString:[4,5,1,""],motorJoint:[4,5,1,""],movieTexture:[4,5,1,""],multiTexture:[4,5,1,""],multiTextureCoordinate:[4,5,1,""],navigationInfo:[4,5,1,""],normal:[4,5,1,""],normalInterpolator:[4,5,1,""],nozzle:[4,5,1,""],opacityMapVolumeStyle:[4,5,1,""],orientationChaser:[4,5,1,""],orientationDamper:[4,5,1,""],orientationInterpolator:[4,5,1,""],orthoViewpoint:[4,5,1,""],param:[4,5,1,""],particleSet:[4,5,1,""],physicalEnvironmentLight:[4,5,1,""],physicalMaterial:[4,5,1,""],pixelTexture3D:[4,5,1,""],pixelTexture:[4,5,1,""],plane:[4,1,1,""],planeSensor:[4,5,1,""],pointLight:[4,5,1,""],pointSet:[4,5,1,""],polyline2D:[4,5,1,""],polypoint2D:[4,5,1,""],popGeometry:[4,5,1,""],popGeometryLevel:[4,5,1,""],positionChaser2D:[4,5,1,""],positionChaser:[4,5,1,""],positionDamper2D:[4,5,1,""],positionDamper:[4,5,1,""],positionInterpolator2D:[4,5,1,""],positionInterpolator:[4,5,1,""],projectionVolumeStyle:[4,5,1,""],pyramid:[4,5,1,""],quadSet:[4,5,1,""],radarVolumeStyle:[4,5,1,""],rectangle2D:[4,5,1,""],rectangularTorus:[4,5,1,""],refinementTexture:[4,5,1,""],remoteSelectionGroup:[4,5,1,""],renderedTexture:[4,5,1,""],rigidBody:[4,5,1,""],rigidBodyCollection:[4,5,1,""],route:[4,5,1,""],scalarChaser:[4,5,1,""],scalarDamper:[4,5,1,""],scalarInterpolator:[4,5,1,""],scene:[4,1,1,""],segmentedVolumeData:[4,5,1,""],shadedVolumeStyle:[4,5,1,""],shaderPart:[4,5,1,""],shape:[4,1,1,""],silhouetteEnhancementVolumeStyle:[4,5,1,""],singleAxisHingeJoint:[4,5,1,""],sliderJoint:[4,5,1,""],slopedCylinder:[4,5,1,""],snout:[4,5,1,""],solidOfRevolution:[4,5,1,""],sound:[4,5,1,""],sphere:[4,1,1,""],sphereSegment:[4,5,1,""],sphereSensor:[4,5,1,""],splinePositionInterpolator:[4,5,1,""],spotLight:[4,5,1,""],staticGroup:[4,5,1,""],stippleVolumeStyle:[4,5,1,""],surfaceShaderTexture:[4,5,1,""],texCoordDamper2D:[4,5,1,""],text:[4,5,1,""],texture:[4,5,1,""],textureCoordinate3D:[4,5,1,""],textureCoordinate:[4,5,1,""],textureCoordinateGenerator:[4,5,1,""],textureProperties:[4,5,1,""],textureTransform3D:[4,5,1,""],textureTransform:[4,5,1,""],textureTransformMatrix3D:[4,5,1,""],timeSensor:[4,1,1,""],toneMappedVolumeStyle:[4,5,1,""],torus:[4,5,1,""],touchSensor:[4,5,1,""],transform:[4,1,1,""],triangleSet2D:[4,5,1,""],triangleSet:[4,5,1,""],twoSidedMaterial:[4,5,1,""],uniform:[4,5,1,""],universalJoint:[4,5,1,""],viewfrustum:[4,5,1,""],viewpoint:[4,5,1,""],volumeData:[4,5,1,""],worldInfo:[4,5,1,""],x3DAppearanceChildNode:[4,5,1,""],x3DAppearanceNode:[4,5,1,""],x3DBackgroundNode:[4,5,1,""],x3DBinaryContainerGeometryNode:[4,5,1,""],x3DBindableNode:[4,5,1,""],x3DBoundedObject:[4,5,1,""],x3DChaserNode:[4,5,1,""],x3DChildNode:[4,5,1,""],x3DColorNode:[4,5,1,""],x3DComposableVolumeRenderStyleNode:[4,5,1,""],x3DComposedGeometryNode:[4,5,1,""],x3DCoordinateNode:[4,5,1,""],x3DDamperNode:[4,5,1,""],x3DDragSensorNode:[4,5,1,""],x3DEnvironmentNode:[4,5,1,""],x3DEnvironmentTextureNode:[4,5,1,""],x3DFogNode:[4,5,1,""],x3DFollowerNode:[4,5,1,""],x3DFontStyleNode:[4,5,1,""],x3DGeometricPropertyNode:[4,5,1,""],x3DGeometryNode:[4,5,1,""],x3DGroupingNode:[4,5,1,""],x3DInfoNode:[4,5,1,""],x3DInterpolatorNode:[4,5,1,""],x3DLODNode:[4,5,1,""],x3DLightNode:[4,5,1,""],x3DMaterialNode:[4,5,1,""],x3DMetadataObject:[4,5,1,""],x3DNBodyCollidableNode:[4,5,1,""],x3DNavigationInfoNode:[4,5,1,""],x3DNode:[4,5,1,""],x3DPlanarGeometryNode:[4,5,1,""],x3DPointingDeviceSensorNode:[4,5,1,""],x3DRigidJointNode:[4,5,1,""],x3DSensorNode:[4,5,1,""],x3DShaderNode:[4,5,1,""],x3DShapeNode:[4,5,1,""],x3DSoundNode:[4,5,1,""],x3DSoundSourceNode:[4,5,1,""],x3DSpatialGeometryNode:[4,5,1,""],x3DTexture3DNode:[4,5,1,""],x3DTextureCoordinateNode:[4,5,1,""],x3DTextureNode:[4,5,1,""],x3DTextureTransformNode:[4,5,1,""],x3DTimeDependentNode:[4,5,1,""],x3DTouchSensorNode:[4,5,1,""],x3DTransformNode:[4,5,1,""],x3DVertexAttributeNode:[4,5,1,""],x3DViewpointNode:[4,5,1,""],x3DVolumeDataNode:[4,5,1,""],x3DVolumeRenderStyleNode:[4,5,1,""],x3d:[4,1,1,""]},domonic:{CDN:[4,0,0,"-"],JSON:[4,0,0,"-"],decorators:[4,0,0,"-"],dom:[4,0,0,"-"],events:[4,0,0,"-"],geom:[4,0,0,"-"],html:[4,0,0,"-"],javascript:[4,0,0,"-"],style:[4,0,0,"-"],svg:[4,0,0,"-"],terminal:[4,0,0,"-"],utils:[4,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","exception","Python exception"],"5":["py","attribute","Python attribute"]},objtypes:{"0":"py:module","1":"py:class","2":"py:method","3":"py:function","4":"py:exception","5":"py:attribute"},terms:{"000":[2,17],"000000":7,"000080":7,"00008b":7,"0000cd":7,"0000ff":7,"000133":7,"00022e":7,"000435":7,"001146":7,"002d04":7,"004577":7,"005249":7,"00555a":7,"005f6a":7,"006400":7,"008000":7,"008080":7,"008b8b":7,"009337":7,"00bfff":7,"00ced1":7,"00fa9a":7,"00fbb0":7,"00ff00":7,"00ff7f":7,"00ffff":7,"010fcc":7,"01153e":7,"01386a":7,"014182":7,"014600":7,"014d4e":7,"015482":7,"0165fc":7,"016795":7,"017371":7,"017374":7,"017b92":7,"01889f":7,"019529":7,"01a049":7,"01b44c":7,"01c08d":7,"01f9c6":7,"01ff07":7,"01t18":17,"020035":7,"0203e2":7,"02066f":7,"021bf9":7,"02590f":7,"028f1e":7,"029386":7,"02ab2":7,"02c14d":7,"02ccfe":7,"02d8e9":7,"03012d":7,"030764":7,"030aa7":7,"0339f8":7,"0343df":7,"03719c":7,"040273":7,"040348":7,"042e60":7,"044a05":7,"045c5a":7,"047495":7,"048243":7,"0485d1":7,"04d9ff":7,"04f489":7,"0504aa":7,"05472a":7,"05480d":7,"054907":7,"05696b":7,"056eee":7,"05ffa6":7,"062e03":7,"06470c":7,"0652ff":7,"069af3":7,"06b1c4":7,"06c2ac":7,"070d0d":7,"0804f9":7,"08787f":7,"089404":7,"08ff08":7,"08t13":[4,17],"0a437a":7,"0a481":7,"0a5f38":7,"0a888a":7,"0add08":7,"0aff02":7,"0b4008":7,"0b5509":7,"0b8b87":7,"0bf77d":7,"0bf9ea":7,"0c06f7":7,"0c1793":7,"0cb577":7,"0cdc73":7,"0cff0c":7,"0d75f8":7,"0e87cc":7,"0f9b8e":7,"0ffef9":7,"0px":6,"100":[2,4,6,7,14],"1000":15,"101":7,"102":7,"103":7,"104":7,"105":7,"106":7,"107":7,"107ab0":7,"108":7,"109":7,"10a674":7,"10px":[6,14],"110":7,"111":[7,15],"112":7,"113":7,"114":7,"115":7,"116":7,"117":7,"118":7,"11875d":7,"119":7,"120":7,"121":7,"122":7,"123":7,"1234":14,"12345":14,"124":7,"125":7,"125rem":14,"126":7,"128":2,"12e193":7,"12px":[15,18],"13bbaf":7,"13eac9":7,"140x100":2,"152eff":7,"154406":7,"155084":7,"15b01a":7,"16pt":4,"17202a":2,"1805db":7,"186":7,"187":7,"188":7,"189":7,"18d17b":7,"190":7,"191":7,"191970":7,"192":7,"1970":[4,15],"1b2431":7,"1bfc06":7,"1d0200":7,"1d5dec":7,"1e488f":7,"1e90ff":7,"1e9167":7,"1ef876":7,"1f0954":7,"1f3b4d":7,"1f6357":7,"1fa774":7,"1fb57a":7,"1px":6,"200":2,"2000b1":7,"2003":[4,11],"2004":17,"2020":17,"2021":[4,17],"20b2aa":7,"20c073":7,"20f986":7,"20px":6,"2138ab":7,"214761":7,"219":7,"21c36f":7,"21fc0d":7,"220":7,"221":7,"222":7,"2242c7":7,"228b22":7,"22c5fc":2,"247afd":7,"24bca8":7,"255":[2,7],"25a36f":7,"25ff29":7,"26538d":7,"26f7fd":7,"276ab3":7,"280137":7,"287c37":7,"29465b":7,"2976bb":7,"2a0134":7,"2a7e19":7,"2afeb7":7,"2b5d34":7,"2baf6a":7,"2bb179":7,"2c6fbb":7,"2cfa1f":7,"2dfe54":7,"2e5a88":7,"2e8b57":7,"2ee8bb":7,"2f4f4f":7,"2fef10":7,"2px":6,"300":[2,4],"31668a":7,"32bf84":7,"32cd32":7,"333333":2,"33b864":7,"34013f":7,"341c02":7,"343837":7,"35063e":7,"350x150":2,"35530a":7,"35ad6b":7,"360":2,"36013f":7,"363737":7,"373e02":7,"3778bf":7,"380282":7,"380835":7,"388004":7,"39ad48":7,"3a18b1":7,"3a2ef":7,"3ae57f":7,"3b5b92":7,"3b638c":7,"3b719f":7,"3c0008":7,"3c4142":7,"3c4d03":7,"3c73a8":7,"3c9992":7,"3cb371":7,"3d0734":7,"3d1c02":7,"3d7afd":7,"3d9973":7,"3e82fc":7,"3eaf76":7,"3f012c":7,"3f829d":7,"3f9b0b":7,"400":2,"4000":16,"400px":23,"40a368":7,"40e0d0":7,"40fd14":7,"410200":7,"411900":7,"4169e1":7,"419c03":7,"41fdfe":7,"420x320":2,"4294967295":[4,11],"42b395":7,"430541":7,"430x320":2,"436bad":7,"448ee4":7,"464196":7,"4682b4":7,"475f94":7,"480":2,"483d8b":7,"48c072":7,"48d1cc":7,"490648":7,"49759c":7,"4984b8":7,"4a0100":7,"4b006e":7,"4b0082":7,"4b0101":7,"4b57db":7,"4b5d16":7,"4b6113":7,"4c9085":7,"4cc3d9":23,"4da409":7,"4e0550":7,"4e518b":7,"4e5481":7,"4e7496":7,"4efd54":7,"4f738e":7,"4f9153":7,"5000":16,"500px":23,"507b9c":7,"50a747":7,"510ac9":7,"516572":7,"5170d7":7,"51b73b":7,"526525":7,"533cc6":7,"536267":7,"53fca1":7,"53fe5c":7,"544e03":7,"548d44":7,"54ac68":7,"5539cc":7,"556b2f":7,"5684ae":7,"56ae57":7,"56fca2":7,"580f41":7,"58bc08":7,"59656d":7,"598556":7,"5a06ef":7,"5a7d9a":7,"5a86ad":7,"5b7c99":7,"5c8b15":7,"5ca904":7,"5cac2d":7,"5cb200":7,"5d06e9":7,"5d1451":7,"5d21d0":7,"5e819d":7,"5e9b8a":7,"5edc1f":7,"5f34e7":7,"5f9e8f":7,"5f9ea0":7,"5fa052":7,"5rem":14,"600x300":2,"601ef9":7,"60460f":7,"606602":7,"610023":7,"6140ef":7,"61de2a":7,"61e160":7,"6241c7":7,"6258c4":7,"638b27":7,"63a950":7,"63b365":7,"63f7b4":7,"640":[2,5],"640x360":2,"645403":7,"647d8e":7,"6488ea":7,"6495ed":7,"650021":7,"653700":7,"657432":7,"658b38":7,"658cbb":7,"658d6d":7,"65ab7c":7,"65fe08":7,"661aee":7,"663399":7,"665fd1":7,"667c3e":7,"667e2c":7,"66cdaa":7,"673a3f":7,"677a04":7,"680018":7,"6832e3":7,"696006":7,"696112":7,"696969":7,"698339":7,"699d4c":7,"69d84f":7,"6a5acd":7,"6a6e09":7,"6a79f7":7,"6b4247":7,"6b7c85":7,"6b8e23":7,"6ba353":7,"6c3461":7,"6c7a0e":7,"6d5acf":7,"6dedfd":7,"6e1005":7,"6e750":7,"6ecb3c":7,"6f6c0a":7,"6f7632":7,"6f7c00":7,"6f828a":7,"6fc276":7,"703be7":7,"706c11":7,"708090":7,"70b23f":7,"719f91":7,"71aa34":7,"720058":7,"728639":7,"728f02":7,"730039":7,"734a65":7,"735c12":7,"738595":7,"742802":7,"748500":7,"748b97":7,"749551":7,"74a662":7,"750851":7,"751973":7,"758000":7,"75b84f":7,"75bbfd":7,"75fd63":7,"76424e":7,"768px":14,"769958":7,"76a973":7,"76cd26":7,"76fda8":7,"76ff7b":7,"770001":7,"778899":7,"77926f":7,"77ab56":7,"78d1b6":7,"7a5901":7,"7a687f":7,"7a6a4f":7,"7a9703":7,"7af9ab":7,"7b002c":7,"7b0323":7,"7b5804":7,"7b68ee":7,"7bb274":7,"7bc8a4":23,"7bc8f6":7,"7bf2da":7,"7bfdc7":7,"7cfc00":7,"7d7103":7,"7d7f7c":7,"7e1e9c":7,"7e4071":7,"7ea07a":7,"7ebd01":7,"7ef4cc":7,"7efbb3":7,"7f2b0a":7,"7f4e1e":7,"7f5112":7,"7f5e00":7,"7f5f00":7,"7f684e":7,"7f7053":7,"7f8f4e":7,"7fff00":7,"7fffd4":7,"8000":16,"800000":7,"800080":7,"80013f":7,"805b87":7,"8080":16,"808000":7,"808080":7,"80f9ad":7,"820747":7,"825f87":7,"826d8c":7,"828344":7,"82a67d":7,"82cafc":7,"82cbb2":7,"836539":7,"840000":7,"84597e":7,"84b701":7,"850e04":7,"856798":7,"85a3b2":7,"866f85":7,"86775f":7,"86a17d":7,"874c62":7,"8756e4":7,"875f42":7,"876e4b":7,"87a922":7,"87ae73":7,"87ceeb":7,"87cefa":7,"87fd05":7,"885f01":7,"886806":7,"887191":7,"888":6,"8888":16,"889717":7,"88b378":7,"894585":7,"895b7b":7,"89a0b0":7,"89a203":7,"89fe05":7,"8a2be2":7,"8a6e45":7,"8ab8f":7,"8af1f":7,"8b0000":7,"8b008b":7,"8b2e16":7,"8b3103":7,"8b4513":7,"8b88f8":7,"8c000f":7,"8c0034":7,"8cfd7e":7,"8cff9e":7,"8cffdb":7,"8d5eb7":7,"8d8468":7,"8e7618":7,"8e82f":7,"8eab12":7,"8ee53f":7,"8f1402":7,"8f7303":7,"8f8ce7":7,"8f9805":7,"8f99fb":7,"8fae22":7,"8fb67b":7,"8fbc8f":7,"8ffe09":7,"8fff9f":7,"90b134":7,"90e4c1":7,"90ee90":7,"90fda9":7,"910951":7,"916e99":7,"920a4e":7,"922b05":7,"929591":7,"929901":7,"9370db":7,"937c00":7,"9400d3":7,"94568c":7,"947706":7,"947e94":7,"94a617":7,"94ac02":7,"94b21c":7,"952e8f":7,"95a3a6":7,"960056":7,"964e02":7,"966ebd":7,"96ae8d":7,"96b403":7,"978a84":7,"980002":7,"983fb2":7,"98568d":7,"985e2b":7,"98eff9":7,"98f6b0":7,"98fb98":7,"9900fa":7,"990147":7,"990f4b":7,"9932cc":7,"997570":7,"999":[4,15],"99cc04":7,"9a0200":7,"9a0eea":7,"9a3001":7,"9a6200":7,"9aae07":7,"9acd32":7,"9af764":7,"9b5fc0":7,"9b7a01":7,"9b8f55":7,"9bb53c":7,"9be5aa":7,"9c6d57":7,"9c6da5":7,"9cbb04":7,"9cef43":7,"9d0216":7,"9d0759":7,"9d5783":7,"9d7651":7,"9db92c":7,"9dbcd4":7,"9dc100":7,"9dff00":7,"9e003a":7,"9e0168":7,"9e3623":7,"9e43a2":7,"9f2305":7,"9f8303":7,"9ffeb0":7,"\u0153":7,"\u0161":7,"\u0178":7,"\u0192":7,"\u02c6":7,"\u03b1":7,"\u03b2":7,"\u03b3":7,"\u03b4":7,"\u03b5":7,"\u03b6":7,"\u03b7":7,"\u03b8":7,"\u03b9":7,"\u03ba":7,"\u03bb":7,"\u03bc":7,"\u03bd":7,"\u03be":7,"\u03bf":7,"\u03c0":7,"\u03c1":7,"\u03c2":7,"\u03c3":7,"\u03c4":7,"\u03c5":7,"\u03c6":7,"\u03c7":7,"\u03c8":7,"\u03c9":7,"\u03d1":7,"\u03d2":7,"\u03d6":7,"\u2153":7,"\u2154":7,"\u2155":7,"\u2156":7,"\u2157":7,"\u2158":7,"\u2159":7,"\u215a":7,"\u215b":7,"\u215c":7,"\u215d":7,"\u215e":7,"abstract":[4,11],"boolean":[4,11,15,22],"break":[4,11],"case":[2,4,9,11,21],"char":[1,4,15],"class":[1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23],"default":[2,4,9,10,11,15,17,21],"export":[4,19],"final":[1,9,15],"float":[4,5,8,15],"function":[1,2,3,4,5,6,7,9,10,11,14,15,19,20,21,22],"goto":5,"import":[1,2,3,4,5,7,8,9,10,11,12,14,15,16,17,19,20,22,23],"int":[2,4,7,11,15,21],"long":[4,6,11,20],"new":[0,1,2,4,5,9,11,12,15,21,22],"null":[4,11,15],"return":[2,3,4,5,6,7,9,10,11,12,14,15,16,19,21,22],"static":[1,2,3,4,5,7,9,11,15,19,21],"super":[12,14],"switch":[4,23],"throw":[4,5,9,19],"true":[4,6,7,9,10,11,14,15,16,19,23],"try":[0,6,16,19],"var":[4,6,14],"while":[4,6,11],AND:7,ARE:2,ARING:7,AWS:1,But:[6,9,15],DNS:5,DOS:5,EXE:5,For:[2,4,6,9,14,16,17,20,21],Has:5,Its:9,NFS:5,NOT:[2,4,6,7,15],Not:[1,4,15],ONE:7,THE:14,The:[0,4,5,9,11,14,15,16,19,20,21,22],Their:2,Then:[1,6,10,16],There:[1,4,5,6,12,15,19],These:[5,6],Use:[4,5,11,15],Uses:5,Using:1,With:[5,6,15,17],__crossorigin:14,__format__:[14,17],__import__:6,__init__:[6,12],__integr:14,__main__:16,__name__:16,__pyml__:14,__str__:6,_class:[6,9,14],_color:23,_crossorigin:14,_cycleinterv:23,_data:[6,14],_def:23,_diffusecolor:23,_dunders_:1,_filter:[4,11],_for:14,_fromfield:23,_fromnod:23,_height:23,_href:[2,6,14],_id:[4,6,9,11,14,15,16,18],_integr:14,_kei:23,_keyvalu:23,_loop:23,_matchel:[4,11],_posit:23,_radiu:23,_rel:[2,6,14],_rotat:23,_scene:23,_src:[2,4,6,14,23],_style:[6,14,15],_text:[],_tofield:23,_tonod:23,_type:[4,6,11,12],_webpag:23,_width:23,a0025c:7,a00498:7,a03623:7,a0450:7,a0522d:7,a0bf16:7,a0febf:7,a13905:7,a24857:7,a2653:7,a2a415:7,a2bff:7,a2cff:7,a442a0:7,a484ac:7,a4be5c:7,a4bf20:7,a50055:7,a52a2a:7,a552e6:7,a55af4:7,a57e52:7,a5a391:7,a5a502:7,a5fbd5:7,a66fb5:7,a6814c:7,a6c875:7,a6fbb2:7,a75e09:7,a7ffb5:7,a83c09:7,a8415b:7,a87900:7,a87dc2:7,a88905:7,a88f59:7,a8a495:7,a8b504:7,a8ff04:7,a90308:7,a9561:7,a9a9a9:7,a9be70:7,a9f971:7,aa23ff:7,aa2704:7,aaa662:7,aacut:7,aaff32:7,ab1239:7,ab7e4c:7,ab9004:7,abbr:[4,14],abc:17,abil:[4,11,12],abl:5,abort:[4,11,12],about:[5,14,16],abov:[5,10,12],abs:[4,15],absolut:4,ac1db8:7,ac4f06:7,ac7434:7,ac7e04:7,ac86a8:7,ac9362:7,acbb0d:7,acbf69:7,accept:10,access:[1,4,5,9,11,14],accord:[4,15],account:5,acfffc:7,acidgreen:7,acirc:7,acronym:[2,4,21],across:4,action:9,activ:[0,4,5,15,16],actual:[9,15],acut:7,ad03d:7,ad0afd:7,ad8150:7,ad900d:7,ada587:7,adapt:16,add8e6:7,add:[1,2,4,5,9,11,13,14,15,17],add_rout:16,add_view:16,addback:9,addclass:9,added:[0,2,4,9,11,22],addeventlisten:12,adding:23,addit:[5,15],address:[4,5,14],addrul:4,adf802:7,adff2f:7,adjac:[4,11],adjust:[5,9],admin:16,administr:5,adob:7,advanc:[2,4,21],advis:[4,17],advisori:4,ae7181:7,ae8b0c:7,aefd6c:7,aeff6:7,aelig:7,af2f0d:7,af6f09:7,af884a:7,afa88b:7,afeee:7,affect:[4,9,11,12,20],afram:1,aframe_1_2:23,aframe_tag:23,after:[4,9,10,11,15],afterprint:[4,11,12],afterward:[4,15,17],again:5,agent:4,agrav:7,aiohttp:1,ajax:[2,4,9,10],ajaxcomplet:9,ajaxerror:9,ajaxprefilt:9,ajaxsend:9,ajaxsetup:9,ajaxstart:9,ajaxstop:9,ajaxsuccess:9,ajaxtransport:9,alert:[4,15],alga:7,algaegreen:7,alia:[4,9,11,14,15,19,23],aliceblu:7,align:4,aligncont:4,alignitem:4,alignself:4,alink:23,all:[0,2,4,5,6,9,11,14,15,19,21,22],all_selector:[4,11],allow:[4,5,6,11,14,15,16,17,22],almostblack:7,along:15,alongsid:16,alpha:[7,14],alreadi:[4,13,15,16,20],also:[0,1,4,5,6,7,9,10,11,14,15,17,18],alt:[1,9],altern:[4,7,16,23],altglyph:4,altglyphdef:4,altglyphitem:4,although:[4,14,15],alwai:[2,4,9,11],amaz:13,amber:7,amethyst:7,among:9,amount:[4,11],amp:7,ampersand:7,analys:5,ancestor:[4,9,11],anchor:[4,11,14,15,22,23],andself:9,ang:7,ani:[0,1,2,3,4,5,6,9,11,14,15,16,17,19,21,22],anim:[4,9,11,12,15],animatecolor:4,animated_monst:6,animatemot:4,animatetransform:4,animationdelai:4,animationdirect:4,animationdur:4,animationend:[4,11,12],animationev:[4,11,12],animationfillmod:4,animationiter:[4,11,12],animationiterationcount:4,animationnam:[4,11,12],animationplayst:4,animationstart:[4,11,12],animationtimingfunct:4,annoi:6,anonym:[10,14,16],anonymous:10,anorm:[4,11],anoth:[4,5,6,8,9,11,14,16],antiquewhit:7,antiviru:5,anyth:[2,4,14],api:[0,1,4,8,11,14,15,22],apostroph:7,app:[5,6,16,19],appear:[4,15,23],append:[2,4,5,9,11,14,15,21,22,23],appendchild:[4,11,14],appenddata:[4,11],appendto:9,appl:7,applegreen:7,applet:[4,11,14],appli:[4,5,6,15],applic:[5,16],appspot:2,apricot:7,apt:[4,19],aqua:7,aquablu:7,aquagreen:7,aquamarin:7,arbitrari:[1,9],arc2d:[4,23],arcclose2d:[4,23],archiv:16,area:[4,5,11,14],aren:[4,5,11],arg1:[2,4,21],arg2:[2,4,21],arg:[1,2,4,5,6,7,9,11,12,14,15,17,19,22,23],argument:[2,4,6,9,11,14,15,21],argumentslist:[4,15],aring:7,armygreen:7,around:[4,6,9,10,14,22],arp:5,arr:[2,3,4,9,21],arrai:[1,2,3,4,9,11,12,20,21],arrow:4,articl:[4,6,14,15],as_sign:[4,15],asa:[4,19],asap:1,asgi:16,asid:[4,14],ask:0,asp:[4,15],asparagu:7,assert:[4,10,15],asset:[2,4,6,21],assign:[4,5,9,15],assignednod:[4,11],assignedslot:[4,11],assoc:5,associ:[4,9,11,15,22],assum:4,asterisk:7,asymp:7,async:[6,16],asynchron:[4,5,9],at_sign:7,atild:7,atm:[5,13],atmadm:5,atob:[4,15],attach:9,attack:16,attempt:[1,4,17,21],attr:[4,9,11],attrib:5,attribut:[1,4,5,6,9,11,15,18],aubergin:7,auburn:7,audio:[4,14],audioclip:[4,23],auditpol:5,auml:7,authent:5,author:[4,5,11],authoris:5,auto:[1,6],autodi:5,autodoc:1,autom:5,automat:5,avail:[2,4,5,6,8,11,12,15],availheight:[4,15],availwidth:[4,15],avocado:7,avocadogreen:7,avoid:[4,8,14,16,17],awar:14,awesom:[2,4],awk:[4,19],aws:16,azul:7,azur:7,b00149:7,b0054b:7,b04e0f:7,b0c4de:7,b0dd16:7,b0e0e6:7,b0ff9d:7,b16002:7,b17261:7,b1916e:7,b1d1fc:7,b1d27b:7,b1fc99:7,b1ff65:7,b22222:7,b25f03:7,b26400:7,b2713d:7,b27a01:7,b29705:7,b2996e:7,b2fba5:7,b36ff6:7,b5485d:7,b59410:7,b5c306:7,b5ce08:7,b66325:7,b66a50:7,b6c406:7,b6ffbb:7,b75203:7,b790d4:7,b79400:7,b7c9e2:7,b7e1a1:7,b7fffa:7,b8860b:7,b8ffeb:7,b9484e:7,b96902:7,b9a281:7,b9cc81:7,b9ff66:7,ba55d3:7,ba6873:7,ba9e88:7,babyblu:7,babygreen:7,babypink:7,babypoo:7,babypoop:7,babypoopgreen:7,babypukegreen:7,babypurpl:7,babyshitbrown:7,babyshitgreen:7,back:[4,6,14,15,20],backfacevis:4,background:[4,5,6,15,18,23],backgroundattach:4,backgroundclip:4,backgroundcolor:[4,15,18],backgroundimag:4,backgroundorigin:4,backgroundposit:4,backgroundrepeat:4,backgrounds:4,backquot:7,backslash:7,backspac:7,backup:5,baconmockup:2,ball:23,balljoint:[4,23],balloon:2,banana:7,bananayellow:7,banner:[4,19],bar:[4,9,11],barbiepink:7,barfgreen:7,barnei:7,barneypurpl:7,base:[1,4,5,9,11,14,15],baseclass:[4,11],basefont:[4,14],basenam:[4,19],bash:[4,19],bashprofil:1,basic:[1,5,14],batch:[2,4,5,19,21],battleshipgrei:7,bb3f3f:7,bbf90f:7,bc13fe:7,bc8f8f:7,bccb7a:7,bcdboot:5,bcdedit:5,bcecac:7,bcf5a6:7,bd6c48:7,bdb76b:7,bde:5,bdehdcfg:5,bdf6fe:7,bdf8a3:7,bdi:[4,14],bdo:[4,14],bdquo:7,be0119:7,be013c:7,be03fd:7,be6400:7,beae8a:7,beauti:14,beautifi:14,beautifulsoup:14,becaus:23,becom:[1,14],been:[4,5,9,11,12,13,14,15,20],befd73:7,befdb7:7,befor:[1,2,4,6,9,10,11,15],beforeprint:[4,11,12],beforeunload:[4,11,12],beforeunloadev:[4,11,12],begin:[4,9,11,15],behav:0,behavior:[4,9],behaviour:4,beig:7,being:[4,6,11],below:[4,11,16,17,23],berri:7,beta:7,better:[4,11,16],between:[2,4,5,6,15,17,21],beyond:4,bf77f6:7,bf9005:7,bf9b0c:7,bfac05:7,bff128:7,bffe28:7,big:[4,15],bile:7,billboard:[4,23],bin:[4,5,11,16],binarygeometri:[4,23],bind:[4,9,15,19],bisqu:7,bit:[4,5,6,11,15,21],bitlock:5,bitmask:[4,11],bitsadmin:5,black:[6,7,15,18],blanchedalmond:7,bland:7,blendedvolumestyl:[4,23],blendmod:[4,23],blink:[4,15],block:[4,6,23],blockquot:[4,14],blog:15,blood:7,bloodorang:7,bloodr:7,blue:7,blueberri:[1,7],blueblu:7,bluegreen:7,bluegrei:7,bluepurpl:7,blueviolet:7,bluewithahintofpurpl:7,blueygreen:7,blueygrei:7,blueypurpl:7,bluish:7,bluishgreen:7,bluishgrei:7,bluishpurpl:7,blur:[4,9,11,12],blurpl:7,blush:7,blushpink:7,bob:21,bodi:[1,4,6,9,10,11,14,16,23],body1:11,body2:11,body3:11,body4:11,bold:[4,15],booger:7,boogergreen:7,bool:[2,4,7,9,11,15,21],boot:5,bootabl:5,bootcfg:5,bootsect:5,bootstrap5:[6,14],bootstrap:14,bootstrap_4:2,bootstrap_5_alpha:2,bordeaux:7,border:[4,6,9,11],borderbottom:4,borderbottomcolor:4,borderbottomleftradiu:4,borderbottomrightradiu:4,borderbottomstyl:4,borderbottomwidth:4,bordercollaps:4,bordercolor:4,borderimag:4,borderimageoutset:4,borderimagerepeat:4,borderimageslic:4,borderimagesourc:4,borderimagewidth:4,borderleft:4,borderleftcolor:4,borderleftstyl:4,borderleftwidth:4,borderradiu:4,borderright:4,borderrightcolor:4,borderrightstyl:4,borderrightwidth:4,borderspac:4,borderstyl:4,bordertop:4,bordertopcolor:4,bordertopleftradiu:4,bordertoprightradiu:4,bordertopstyl:4,bordertopwidth:4,borderwidth:4,boringgreen:7,both:[2,4,7,9,11,15,21],bottl:1,bottlegreen:7,bottom:4,bounc:20,bound:[4,9,11,15],boundaryenhancementvolumestyl:[4,23],box:[4,14,15,23],boxdecorationbreak:4,boxshadow:4,boxsiz:4,bracket:14,brand:14,brick:7,brickorang:7,brickr:7,brightaqua:7,brightblu:7,brightcyan:7,brightgreen:7,brightlavend:7,brightlightblu:7,brightlightgreen:7,brightlilac:7,brightlim:7,brightlimegreen:7,brightmagenta:7,brightol:7,brightorang:7,brightpink:7,brightpurpl:7,brightr:7,brightseagreen:7,brightskyblu:7,brightteal:7,brightturquois:7,brightviolet:7,brightyellow:7,brightyellowgreen:7,britishracinggreen:7,broken:[4,11],bronz:7,brown:7,browngreen:7,browngrei:7,brownish:7,brownishgreen:7,brownishgrei:7,brownishorang:7,brownishpink:7,brownishpurpl:7,brownishr:7,brownishyellow:7,brownorang:7,brownr:7,brownyellow:7,brownygreen:7,brownyorang:7,browser:[1,2,4,11,12,16],bruis:7,brvbar:7,bsd:[4,11],btn:6,btoa:[4,15],bubbl:[4,11,12],bubblegum:7,bubblegumpink:7,buff:7,bufferaccessor:[4,23],buffergeometri:[4,23],bufferview:[4,23],bug:[1,4,8,11],buggi:6,build:[1,6],built:[2,4,6,14,16,21],builtin:[2,4,19,21],bull:7,bunch:15,bundl:14,burgundi:7,burlywood:7,burntorang:7,burntr:7,burntsiena:7,burntsienna:7,burntumb:7,burntyellow:7,burpl:7,butter:7,butterscotch:7,butteryellow:7,button:[4,6,11,14,15],bytefac:[1,14],c0022f:7,c04e01:7,c071fe:7,c0737a:7,c0c0c0:7,c0fa8b:7,c14a09:7,c1c6fc:7,c1f80a:7,c1fd95:7,c20078:7,c27e79:7,c292a1:7,c2b709:7,c2be0e:7,c2ff89:7,c3909b:7,c3fbf4:7,c44240:7,c45508:7,c48efd:7,c4a661:7,c4fe82:7,c4fff7:7,c5c9c7:7,c65102:7,c69c04:7,c69f59:7,c6f808:7,c6fcff:7,c71585:7,c74767:7,c760ff:7,c77986:7,c79fef:7,c7ac7d:7,c7c10c:7,c7fdb5:7,c83cb9:7,c85a53:7,c875c4:7,c87606:7,c87f89:7,c88d94:7,c8aca9:7,c8ffb0:7,c94cbe:7,c95efb:7,c9643b:7,c9ae74:7,c9b003:7,c9d179:7,ca0147:7,ca6b02:7,ca7b80:7,ca9bf7:7,caa0ff:7,cab:5,cach:[4,5,9,11,12],cacl:5,cadassembl:[4,23],cadetblu:7,cadfac:[4,23],cadlay:[4,23],cadpart:[4,23],cafffb:7,cal:[4,19],call:[1,2,4,5,6,9,11,14,15,16,17,19,21],callabl:[4,9,15],callback:[2,4,9,15,22],caller:[4,19],camel:[2,4,7,21],camel_cas:[2,4,21],camelcas:[2,4,21],camera:23,camo:7,camogreen:7,camouflagegreen:7,can:[0,1,2,4,5,6,7,9,10,11,12,13,14,15,16,17,19,21,23],canari:7,canaryyellow:7,cancel:[4,11,12,15],candid:[2,4],candypink:7,cannot:4,canplai:[4,11,12],canplaythrough:[4,11,12],canva:[4,8,14],cap:7,capabl:5,capit:4,caps_lock:7,caption:[4,14],captionsid:4,captur:[4,11,12],caramel:7,card:5,caret:[4,7,11],caretposit:[4,11],caretpositionfrompoint:[4,11],carmin:7,carnat:7,carnationpink:7,carolinablu:7,carrier:5,cartesian:[4,11],cartoonvolumestyl:[4,23],case_camel:[2,4,21],case_kebab:[2,4,21],case_snak:[2,4,21],cast:14,casual:13,cat:[4,19],cb00f5:7,cb0162:7,cb416b:7,cb6843:7,cb7723:7,cb9d06:7,cba560:7,cbf85f:7,cc7a8b:7,ccad60:7,ccedil:7,ccfd7f:7,cd5909:7,cd5c5c:7,cd7584:7,cd853f:7,cdatasect:[4,11],cdc50a:7,cdfd02:7,cdn:[1,23],cdn_css:[1,4],cdn_img:[1,4],cdn_j:[1,4,23],ce5da:7,cea2fd:7,ceaefa:7,ceb301:7,cedil:7,celadon:7,celeri:7,cell:4,cement:7,cent:7,center:[4,14],ceris:7,certain:[2,4,5,9,21],certif:5,certreq:5,certutil:5,cerulean:7,ceruleanblu:7,cf0234:7,cf524e:7,cf6275:7,cfaf7b:7,cffdbc:7,cfff04:7,cflow:[4,19],chain:9,chainabl:9,chanc:[4,11,12],chang:[2,4,5,6,9,11,12,13,19,20,21],changefreq:[4,17],changelog:[],channel:[5,7],charact:[2,4,5,7,9,11,12,15,21],characterdata:[4,11],characterset:[4,11],charat:[4,15],charcoal:7,charcoalgrei:7,charcodeat:[4,15],charset:[4,11],chartreus:7,chcp:5,chdir:5,check:[0,1,2,4,5,7,9,11,15,21],checkmark:7,checknetisol:5,checkout:16,cherri:7,cherrypi:1,cherryr:7,chestnut:7,chglogon:5,chgport:5,chgrp:[4,19],chgusr:5,chi:7,child:[4,9,11],childelementcount:[4,11],childnod:[4,11],children:[4,9,11,14,23],chkdsk:5,chkntf:5,chmod:[4,19],chocol:7,chocolatebrown:7,choic:5,choos:16,chown:[4,19],chunk:[2,4,21],cim:5,cimprovid:5,cinnamon:7,cipher:5,circ:[7,20],circl:[4,7,23],circle2d:[4,23],cite:[4,14],cjk:4,cksum:[4,19],clai:7,claret:7,clash:14,classless_css:[2,6],classlist:[4,11],classmethod:[2,4,21],classnam:[4,9,11,14],claybrown:7,clean:[2,4,14,21],clear:[4,15],clearblu:7,clearinterv:15,clearqueu:9,cleartimeout:[4,15],click:[4,6,9,11,12],client:[4,5,11,12],clientheight:[4,11],clientid:[4,11,12],clientleft:[4,11],clienttop:[4,11],clientwidth:[4,11],clip:[4,5],clipboard:[4,5,11,12],clipboarddata:[4,11,12],clipboardev:[4,11,12],clippath:4,clipplan:[4,23],clockwis:4,clone:[9,14],clonenod:[4,11],close:[4,5,6,19],closed_tag:[4,14],closest:9,closing_curly_brac:7,closing_parenthesi:7,closing_square_bracket:7,cloud:1,club:7,cmd:[1,4,19],cmdcommand:5,cmdexcept:5,cmdkei:5,cmstp:5,cobalt:7,cobaltblu:7,cocoa:7,code:[0,1,4,5,6,9,11,14,15,16,19],codepoint:[4,15],codepointat:[4,15],coffe:7,col:[4,14],colgroup:[4,14],collaps:4,collect:[4,9,11,15],collidableshap:[4,23],collis:[4,23],collisioncollect:[4,23],collisionsensor:[4,23],colon:7,color:[1,4,5,6,15,18,23],colorchas:[4,23],colordamp:[4,23],colordepth:[4,15],colorinterpol:[4,23],colormaskmod:[4,23],colorrgba:[4,23],column:4,columncount:4,columnfil:4,columngap:4,columnrul:4,columnrulecolor:4,columnrulestyl:4,columnrulewidth:4,columnspan:4,columnwidth:4,com:[1,2,4,5,6,10,11,14,15,16,17,21,22],combin:[4,9,15],come:[3,4,15,16],comm:[4,19],comma:[6,7],command:[1,4,7,14],comment:[0,4,5,9,11],commit:14,common:[1,5],commonsurfaceshad:[4,23],commun:[5,16],comp:5,compact:5,compar:[4,5,11],comparedocumentposit:[4,11],comparisonstr:[4,15],compat:[5,8],compgen:[4,19],compil:[4,5,15],complain:6,complet:[1,4,9,11,12,16,19],complex:[4,11,20],compon:[1,4,15,16],compopt:[4,19],composedcubemaptextur:[4,23],composedshad:[4,23],composedtexture3d:[4,23],composedvolumestyl:[4,23],compositionev:[4,11,12],comprehens:14,compress:[4,5,19],compris:4,comput:[4,5,9],concat:[4,15],concaten:[4,11,15],concept:[2,4,21],condens:4,condit:5,cone:[4,23],config:16,configur:[5,16],conflict:[4,16,17],cong:7,conjuct:[4,11],connect:[2,4,5,21],conserv:5,consid:4,consist:[4,15],consol:[1,2,4,6,10],console_api:22,constant:[1,2,4,11],construct:[4,11,15],constructor:[4,15],consumpt:5,contain:[1,2,3,4,5,6,7,9,11,12,15,17,21,22],containt:3,content:[1,2,4,5,6,9,11,14,21],content_typ:16,contentedit:[4,11],contenttyp:9,context:9,contextmenu:[4,9,11,12],contrib:16,contribut:1,control:[5,7,9,17],convent:[4,15],convert:[2,3,4,5,7,8,9,11,14,15,19,21],cool:[4,11],coolblu:7,coolgreen:7,coolgrei:7,coordin:[4,9,11,23],coordinatedamp:[4,23],coordinatedoubl:[4,23],coordinateinterpol:[4,23],copi:[4,5,7,9,11,12,15],copper:7,copyright:7,copywithin:[4,15],coral:7,coralpink:7,corner:[4,11],cornflow:7,cornflowerblu:7,cornsilk:7,correctli:5,correspond:[4,15],cos:[4,20],could:[0,4,6,14,17],count:[4,11,15],counter:[4,5],counterincr:4,counterreset:4,countri:5,coverag:0,cowsai:[4,19],cranberri:7,crarr:7,cream:7,creat:[0,1,2,4,5,6,7,9,10,11,12,13,15,16,21],create_el:[4,14],createattribut:[4,11],createcdatasect:[4,11],createcom:[4,11],createdocumentfrag:[4,11],createel:[1,4,14],createelementn:[4,11],createev:[4,11],createnodeiter:[4,11],createprocessinginstruct:[4,11],createrang:[4,11],createtextnod:[4,11],createtreewalk:[4,11],creation:11,creator:[4,15],creme:7,crimson:7,cron:[1,4,19],crontab:[4,19],cross:[2,4,7],cscript:5,csplit:[4,19],css:[2,4,6,7,9,11,14,21],css_selector:[4,11],css_style:6,csscounterstylerul:4,cssdocumentrul:4,cssfloat:4,cssfontfacerul:4,cssfontfeaturevaluesrul:4,cssimportrul:4,csskeyframerul:4,csskeyframesrul:4,cssmediarul:4,cssnamespacerul:4,cssom:18,csspagerul:4,cssprimitivevalu:4,cssrule:4,cssrulelist:4,cssstyledeclar:4,cssstylerul:4,cssstylesheet:4,csssupportsrul:4,csstext:4,cssviewportrul:4,csv2json:[3,4],csv:[3,4],csv_filepath:[3,4],csvifi:[3,4],ctag:[4,19],ctty:5,cubic:20,cup:7,curl:[4,19],curren:7,current:[2,4,5,9,11,12,16,17,21,23],currentindex:[4,15],currentnod:[],currentvalu:[4,15],cursor:[4,23],curv:4,curvedimag:23,custard:7,custom:[4,9,10,14,23],custom_el:14,custom_tag:[4,14],customev:[4,11,12],cut:[4,11,12,19],cxref:[4,19],cyan:7,cycl:4,cylind:[4,23],cylindersensor:[4,23],d0c101:7,d0e429:7,d0fe1d:7,d0fefe:7,d1768f:7,d1b26f:7,d1ffbd:7,d2691e:7,d2b48c:7,d2bd0a:7,d3494e:7,d3_6_1_0:2,d3b683:7,d3d3d3:7,d46a7e:7,d4ffff:7,d5174e:7,d5869d:7,d58a94:7,d5ab09:7,d5b60a:7,d5ffff:7,d648d7:7,d6b4fc:7,d6fffa:7,d6fffe:7,d725de:7,d767ad:7,d7fffe:7,d8863b:7,d8bfd8:7,d8dcd6:7,d90166:7,d94ff5:7,d9544d:7,d99b82:7,da467d:7,da70d6:7,daa520:7,daemon:5,dagger:7,dai:[4,6,15],dandelion:7,dark:7,darkaqua:7,darkaquamarin:7,darkbeig:7,darkblu:7,darkbluegreen:7,darkbluegrei:7,darkbrown:7,darkcor:7,darkcream:7,darkcyan:7,darkforestgreen:7,darkfuchsia:7,darkgold:7,darkgoldenrod:7,darkgrai:7,darkgrassgreen:7,darkgreen:7,darkgreenblu:7,darkgrei:7,darkgreyblu:7,darkhotpink:7,darkindigo:7,darkishblu:7,darkishgreen:7,darkishpink:7,darkishpurpl:7,darkishr:7,darkkhaki:7,darklavend:7,darklilac:7,darklim:7,darklimegreen:7,darkmagenta:7,darkmaroon:7,darkmauv:7,darkmint:7,darkmintgreen:7,darkmustard:7,darknavi:7,darknavyblu:7,darkol:7,darkolivegreen:7,darkorang:7,darkorchid:7,darkpastelgreen:7,darkpeach:7,darkperiwinkl:7,darkpink:7,darkplum:7,darkpurpl:7,darkr:7,darkros:7,darkroyalblu:7,darksag:7,darksalmon:7,darksand:7,darkseafoam:7,darkseafoamgreen:7,darkseagreen:7,darkskyblu:7,darkslateblu:7,darkslategrai:7,darkslategrei:7,darktan:7,darktaup:7,darkteal:7,darkturquois:7,darkviolet:7,darkyellow:7,darkyellowgreen:7,darr:7,data:[1,2,3,4,5,6,9,10,11,12,15,16,17,21],databas:5,datalist:[4,14],dataset:[4,11],datastr:[4,15],datatransf:[4,11,12],datatyp:9,date:[4,5,15,17,19],date_str:[4,15],db5856:7,db7093:7,dbb40c:7,dblclick:[4,9,11,12],dblspace:5,dc143c:7,dc4d01:7,dcdcdc:7,dct:9,dd85d7:7,dda0dd:7,ddd618:7,de0c62:7,de7e5d:7,de9dac:7,deal:[4,16],deb887:7,debug:[5,10,16],decid:[2,4],decim:[4,15],declar:[2,4,11,19,21],decod:[4,15],decodeuri:[4,15],decodeuricompon:[4,15],decor:[1,3],decrypt:5,deep:[4,9,11],deepaqua:7,deepblu:7,deepbrown:7,deepgreen:7,deeplavend:7,deeplilac:7,deepmagenta:7,deeporang:7,deeppink:7,deeppurpl:7,deepr:7,deepros:7,deepseablu:7,deepskyblu:7,deepteal:7,deepturquois:7,deepviolet:7,def:[2,3,4,6,10,12,15,16,17,21],default_text:[4,15],defect:5,defer:9,defin:[4,5,11,13,15],defineproperti:[4,15],defrag:5,deg:7,del:[5,6],delai:[4,9,15,20],deleg:9,delet:[4,5,7,11,12,15,22],delete_count:[4,15],deletedata:[4,11],deleteproperti:[4,15],deleterul:4,delim:[3,4],deliv:5,delta:[4,7,19],deltre:5,denim:7,denimblu:7,dentag:14,depend:[16,17],deprec:[2,4,11,15],depth:[4,15],depthmod:[4,23],dequeu:9,desc:4,descend:[4,9,11],describ:[4,11],descript:[2,4,5,7,11,15,21],descriptor:[4,15],desert:7,desktop:[5,16],destin:4,detach:9,detail:[4,14,16],determin:[4,9,15],dev:[8,11],develop:[4,11,12,14,15,22],devic:5,df4ec8:7,dfc5fe:7,dfn:[4,14],diagnost:5,dialog:[4,15],diam:7,diamond:7,diantz:5,diarrhea:7,dict:[2,3,4,6,11,15,21],dictifi:[2,4,21],dictionari:[2,4,5,14,21],did:[4,20],didn:[6,16],die:9,diff:[4,19],differ:[4,5,7,11,14,15,17,20],digit:[2,4,15,21],dimens:2,dimension:[4,15],dimgrai:7,dimgrei:7,dir:[2,4,5,11,19,21],direct:4,directionallight:[4,23],directli:[4,5,6,23],directori:[2,4,5,21],dirnam:[4,19],dirt:7,dirtbrown:7,dirtyblu:7,dirtygreen:7,dirtyorang:7,dirtypink:7,dirtypurpl:7,dirtyyellow:7,disabl:5,discard:[4,11],disclaim:[5,19],discourag:6,dish:[4,23],disk2d:[4,23],disk:5,diskcomp:5,diskcopi:5,diskpart:5,diskperf:5,diskraid:5,dism:5,disown:[4,19],dispatch:[1,4,11,12],dispatchev:12,dispdiag:5,displai:[4,5,6,9,11,15],dist:14,distanc:4,div:[2,4,6,9,10,14,15,16,18],divid:[4,7,14],divis:5,divisor:14,django:1,djoin:5,dll:5,doc:[1,4,6,11,12,14,15,16,17,22],doctyp:[1,4,6,11,14],document:[4,6,9,11,12,13,14,16],documentfrag:[4,11],documenttyp:[4,11],dodecahedron:23,dodgerblu:7,doe:[2,4,5,7,14,15,16,19,21],doesn:[0,6,14],doing:[1,2,4],dollar_sign:7,dom:[0,1,8,9,12,14,16,17,21,22],dom_key_location_joystick:[4,11,12],dom_key_location_left:[4,11,12],dom_key_location_mobil:[4,11,12],dom_key_location_numpad:[4,11,12],dom_key_location_right:[4,11,12],dom_key_location_standard:[4,11,12],domain:[4,5,11,15],domexcept:[4,11],domimplement:[4,11],domon:[0,6,7,10,18,20],domonifi:14,dompoint:[4,11],dompointreadonli:[4,11],domquad:[4,11],domstr:[4,11],domstringmap:[4,11],domtimestamp:[4,11],domtokenlist:[4,11],don:[4,9,10,14,20],done:[4,5,15],dont:14,doskei:5,dosshel:5,dosx:5,dot:[2,4,21],doubleaxishingejoint:[4,23],down:[4,5,7],download:5,dqueri:[1,4,11,14],dquery_el:9,drab:7,drabgreen:7,drag:[4,11,12],dragend:[4,11,12],dragent:[4,11,12],dragev:[4,11,12],dragexit:[4,11,12],dragleav:[4,11,12],dragov:[4,11,12],dragstart:[4,11,12],draw:4,driedblood:7,drive:5,driver:5,driverqueri:5,drop:[4,11,12,16],drvspace:5,dtd:[4,11],duckeggblu:7,due:[1,4,6,14],dullblu:7,dullbrown:7,dullgreen:7,dullorang:7,dullpink:7,dullpurpl:7,dullr:7,dullteal:7,dullyellow:7,dummyimag:2,dummysrc:2,dump:[3,4],dunder:14,duplic:[2,4,9,21],durat:[4,6,20],durationchang:[4,11,12],dure:5,dusk:7,duskblu:7,duskyblu:7,duskypink:7,duskypurpl:7,duskyros:7,dust:7,dustyblu:7,dustygreen:7,dustylavend:7,dustyorang:7,dustypink:7,dustypurpl:7,dustyr:7,dustyros:7,dustyt:7,dynam:1,dynamiclod:[4,23],e0ffff:7,e17701:7,e2ca76:7,e4cbff:7,e50000:7,e6daa6:7,e6e6fa:7,e6f2a2:7,e78ea5:7,e9967a:7,each:[4,9,11,15],eacut:7,earth:7,eas:[1,4],easein:[4,20],easeinout:20,easeout:20,easi:0,easier:7,eastergreen:7,easterpurpl:7,ec2d01:7,ececec:23,echo:[4,5,19],ecifi:4,ecirc:7,ecru:7,ect:4,ed0dd9:7,edc8ff:7,edg:4,edgeenhancementvolumestyl:[4,23],edit:[0,1,4,5,11,14,16],editor:5,edlin:5,ee82e:7,eecff:7,eedc5b:7,eee8aa:7,ef1de7:7,ef2d5:23,ef4026:7,efb435:7,efc0f:7,effect:[4,5,19],efin:4,eggplant:7,eggplantpurpl:7,eggshel:7,eggshellblu:7,egrav:7,eight:7,either:[2,4,11,15,21],el_str:14,elapsedtim:[4,11,12],elast:20,electricblu:7,electricgreen:7,electriclim:7,electricpink:7,electricpurpl:7,element:[1,2,4,6,9,10,11,12,15,21,23],elementfrompoint:[4,11],elementid:6,elementsfrompoint:[4,11],elemnt:[4,15],eleuth:[4,15],elevationgrid:[4,23],ellips:4,els:[7,14,15],eltindex:4,emb:[4,11,14],embed:4,emerald:7,emeraldgreen:7,emit:[],emm386:5,empti:[4,7,9,11,12],emptycel:4,enabl:[4,5,19],encod:[1,4,9,11,15,17],encodecompon:15,encodeuri:[4,15],encodeuricompon:[4,15],encoding_api:22,encourag:0,encrypt:5,end:[1,2,4,5,7,9,11,12,15,21,23],endloc:5,endpoint:[6,16],endswith:[4,15],energi:5,engin:[5,20],enjoi:15,enough:16,ensur:5,enter:[4,7,9,10,11,12],entir:[4,5,11,16],entiti:[4,7,11,23],entityreferenceexpans:[4,11],entri:[2,4,5,10,11,12,15,22],enumer:[9,19],env:[4,19],environ:[4,5,23],environment:5,epoch:[4,11],epsilon:7,equal:[4,7,11],equals_sign:7,equat:[1,4],equiv:7,equival:[4,15],eras:5,err:[2,4,10,15],error:[1,2,4,5,9,10,11,12,14,15,19],errorev:[4,11,12],es2021:[4,15],escap:[2,4,7,16,21],escapeselector:9,esentutl:5,eserv:4,establish:4,eta:7,etc:[1,2,4,11,13,15,17,21],eth:7,euml:7,euro:7,eval:[4,15],evalu:[4,5,15],even:[9,15,16],even_numb:[4,15],event:[1,5,8,9],event_typ:[4,11],eventarg:9,eventcr:5,eventdispatch:[4,11,12],eventnam:9,eventtarget:[4,11],eventtrigg:5,eventu:[1,15,19],evergreen:7,everi:[4,6,9,15],everyon:10,evolv:[1,11],evt:12,exampl:[0,4,5,6,11,12,14,16,17],except:[4,5,6,9,11,14,15,19],exchang:5,exclamation_mark:7,exclud:[4,11,15],exe2bin:5,execut:[4,5,9,11,15],exist:[2,4,5,7,9,11,15,22],exit:[2,4,10,11,12,19],exitfullscreen:[4,11],exmapl:11,expand:[4,5,19],expandentityrefer:[4,11],expect:[0,8],experienc:[0,6],explicitli:11,expo:20,exponenti:[4,15],expos:[4,16],expr:[4,15,19],express:[4,5,15],extend:[4,5,9,11,12,14,15,22],extendableev:[4,11,12],extens:5,extern:2,extrac32:5,extract:[4,5,15],extrus:[4,23],ezcron:1,f075e6:7,f08080:7,f0833a:7,f0944d:7,f0e68c:7,f0f8ff:7,f0fff0:7,f0ffff:7,f10:7,f10c45:7,f11:7,f12:7,f13:7,f14:7,f15:7,f1da7a:7,f1f33f:7,f29e8e:7,f2ab15:7,f36196:7,f4320c:7,f43605:7,f4a460:7,f4d054:7,f504c9:7,f5054f:7,f5bf03:7,f5deb3:7,f5f5dc:7,f5f5f5:7,f5fffa:7,f6688e:7,f6cefc:7,f7022a:7,f7879a:7,f7d560:7,f8481c:7,f8f8ff:7,f97306:7,f9bc08:7,fa2a55:7,fa4224:7,fa5ff7:7,fa8072:7,fa83bf1a5e225f6934a1ad38d092fc6baf3c4934:14,face:4,factor:5,factori:9,fade:9,fadedblu:7,fadedgreen:7,fadedorang:7,fadedpink:7,fadedpurpl:7,fadedr:7,fadedyellow:7,fadein:9,fadeout:9,fadeto:9,fadetoggl:9,faebd7:7,faee66:7,faf0e6:7,fafad2:7,fafe4b:7,fail:[2,4],failur:9,fakeimg:2,fallback:4,fals:[2,4,7,9,10,11,12,14,15,20,21],falsi:[2,4,21],famili:4,familiar:15,fanci:15,fast:[1,14],fastapi:1,fasthelp:5,fastopen:5,fat32:5,fat:5,favour:[],fawn:7,fb2943:7,fb5581:7,fb5ffc:7,fb7d07:7,fbdd7e:7,fbeeac:7,fc2647:7,fc5a50:7,fc824a:7,fc86aa:7,fcb001:7,fcc006:7,fce166:7,fcf679:7,fcfc81:7,fd3c06:7,fd4659:7,fd5956:7,fd798f:7,fd8d49:7,fdaa48:7,fdb0c0:7,fdb147:7,fdb915:7,fdc1c5:7,fddc5c:7,fdde6c:7,fdee73:7,fdf5e6:7,fdfdfe:7,fdff38:7,fdff52:7,fdff63:7,fdisk:5,fe0002:7,fe019a:7,fe01b1:7,fe02a2:7,fe2c54:7,fe2f4a:7,fe420f:7,fe46a5:7,fe4b03:7,fe7b7c:7,fe828c:7,fe86a4:7,fea993:7,featur:[2,5,15],feb209:7,feb308:7,feblend:4,fec615:7,fecolormatrix:4,fecomponenttransf:4,fecomposit:4,feconvolvematrix:4,fed0fc:7,fedf08:7,fediffuselight:4,fedisplacementmap:4,fedistantlight:4,fedropshadow:4,feel:[0,1,18],fef69:7,fefcaf:7,fefef:6,feff7f:7,feffca:7,feflood:4,fefunca:4,fefuncb:4,fefuncg:4,fefuncr:4,fegaussianblur:4,feimag:4,femal:7,femerg:4,femergenod:4,femorpholog:4,feoffset:4,fepointlight:4,fern:7,ferngreen:7,fespecularlight:4,fespotlight:4,fetch:[1,4,11,12,16],fetch_api:22,fetch_pool:15,fetch_set:15,fetch_thread:15,fetchev:[4,11,12],fetil:4,feturbul:4,few:[1,6,7,10],ff0000:[2,7],ff000d:7,ff00ff:7,ff028d:7,ff0490:7,ff073a:7,ff0789:7,ff08e8:7,ff1493:7,ff4500:7,ff474c:7,ff5b00:7,ff6163:7,ff6347:7,ff63e9:7,ff69af:7,ff69b4:7,ff6cb5:7,ff6f52:7,ff724c:7,ff7700:2,ff7855:7,ff796c:7,ff7f50:7,ff7f7f:2,ff7fa7:7,ff81c0:7,ff8c00:7,ff9408:7,ff964f:7,ff9a8a:7,ffa07a:7,ffa500:7,ffa62b:7,ffa756:7,ffab0f:7,ffad01:7,ffb07c:7,ffb16d:7,ffb19a:7,ffb2d0:7,ffb6c1:7,ffb7ce:7,ffbacd:7,ffc0cb:7,ffc512:7,ffc5cb:7,ffc65d:23,ffcfdc:7,ffd1df:7,ffd700:7,ffd8b1:7,ffda03:7,ffdab9:7,ffdead:7,ffdf22:7,ffe36:7,ffe4b5:7,ffe4c4:7,ffe4e1:7,ffe5ad:7,ffebcd:7,ffefd5:7,fff0f5:7,fff39a:7,fff4f2:7,fff5ee:7,fff8dc:7,fff917:7,fff9d0:7,fff:2,fffa86:7,fffacd:7,fffaf0:7,fffafa:7,fffcc4:7,fffd01:7,fffd37:7,fffd74:7,fffd78:7,fffe40:7,fffe71:7,fffe7a:7,fffeb6:7,ffff00:7,ffff14:7,ffff7e:7,ffff81:7,ffff84:7,ffffb6:7,ffffc2:7,ffffcb:7,ffffe0:7,ffffe4:7,fffff0:7,ffffff:7,ffmpeg:[4,19],ffset:4,field:[4,23],fieldset:[4,14],figcapt:[4,14],figlet:[4,19],figur:[4,14],file:[0,1,2,3,4,5,6,9,11,14,15,16,19,21],filenam:[2,4,9,14,21],fill:[4,15],fillmurrai:2,filter:[4,5,9,11,15],find:[0,1,2,4,5,9,15,16,19,21],findindex:[4,15],findstr:5,finger:[4,5,19],finish:[4,9,15],finit:[4,15],fire:9,firebrick:7,fireengin:7,firefox:4,first:[2,4,5,6,9,10,11,15,21,22,23],firstchild:[4,11],firstelementchild:[4,11],firstli:0,fit:4,five:7,fix:[1,4,6,11,15],flask:[1,6],flat:[2,3,4,7,15,21],flatblu:7,flatgreen:7,flatmap:[4,15],flatten:[2,3,4,14,15,21],flex:4,flexbasi:4,flexdirect:4,flexflow:4,flexgrow:4,flexibl:4,flexshrink:4,flexwrap:4,floatvertexattribut:[4,23],floralwhit:7,fltmc:5,fluorescentgreen:7,flurogreen:7,fnof:7,foamgreen:7,focu:[4,9,11,12],focusev:[4,11,12],focusin:[4,9,11,12],focusout:[4,9,11,12],fog:[4,23],fold:[4,19],folder:[0,1,5,11,16],follow:[4,6,7,9,11,15,17],fondu:5,font:[2,4,6,14,15,18],fontawesome_5_7_1:2,fontcolor:[4,15],fontfamili:4,fontsiz:[4,15,18],fontsizeadjust:4,fontstretch:4,fontstyl:[4,23],fontvari:4,fontweight:4,foo:[4,11],footer:[4,14],foral:7,forc:[4,10,11],forcedo:5,foreach:[4,11,15,22],foreignobject:4,forest:7,forestgreen:7,forfil:5,forget:14,fork:14,form:[4,5,7,9,11,14],format:[1,2,4,5,14,15,21],formatt:[4,14,15],formdata:[],forrestgreen:7,fort77:[4,19],forward:5,found:[2,4,6,9,11,15,21],four:[4,7,11,15],frac12:7,frac13:7,frac14:7,frac15:7,frac16:7,frac18:7,frac23:7,frac25:7,frac34:7,frac35:7,frac38:7,frac45:7,frac56:7,frac58:7,frac78:7,fraction_chang:23,fragment:9,frame:[4,15],framework:16,free:[0,1,18],frenchblu:7,frequenc:[2,4,21],freshgreen:7,friend:15,froggreen:7,from:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,19,20,21,22,23],from_:[4,15],fromcharcod:[4,15],fromcodepoint:[4,15],fromhex:7,fromindex:[4,15],fromrgba:7,fsutil:5,ftp:5,ftype:5,fuchsia:7,full:11,fulli:9,fullscreen:[4,11],fullscreenchang:[4,11,12],fullscreenel:[4,11],fullscreenen:[4,11],fullscreenerror:[4,11,12],fun:[10,16],func:[2,3,4,6,9,11,15,22],further:[4,11,12],fuser:[4,19],futur:9,gainsboro:7,game:20,gamepadconnect:[4,11,12],gamepaddisconnect:[4,11,12],gamepadev:[4,11,12],gamma:7,gap:4,gcc:[4,19],gen:[2,4,21],gencat:[4,19],gener:[4,5,9,11,12,14,16,17,23],generatedcubemaptextur:[4,23],geo:[],geocoordin:[4,23],geoelevationgrid:[4,23],geoloc:[4,23],geolod:[4,23],geom:1,geometadata:[4,23],geoorigin:[4,23],geopositioninterpol:[4,23],geotransform:[4,23],geoviewpoint:[4,23],get:[0,1,2,4,6,7,9,11,14,15,16,18,19,21,22],get_tim:1,get_vowel:[2,4,21],getal:[4,15,22],getattr:6,getattribut:[4,11],getattributen:[4,11],getattributenod:[4,11],getattributenoden:[4,11],getboundingclientrect:[4,11],getcomputedstyl:4,getconf:[4,19],getdai:[4,15],getdat:[4,15],getelementbyid:[4,11,16],getelementsbyclassnam:[4,11],getelementsbynam:[4,11],getelementsbyselector:[4,11],getelementsbytagnam:[4,11],getfullyear:[4,15],gethour:[4,15],getjson:9,getlogg:[2,4],getmac:5,getmillisecond:[4,15],getminut:[4,15],getmonth:[4,15],getnameditem:[4,11],getnameitemn:[4,11],getnexts:[],getopt:[4,19],getownpropertydescriptor:[4,15],getpreviouss:[],getpropertycssvalu:4,getpropertyprior:4,getpropertyvalu:4,getprototypeof:[4,15],getscript:9,getsecond:[4,15],getselect:[4,11],gettargetrang:[4,11,12],gettim:[4,15],gettimezoneoffset:[4,15],getutcd:[4,15],getutcdai:[4,15],getutcfullyear:[4,15],getutchour:[4,15],getutcmillisecond:[4,15],getutcminut:[4,15],getutcmonth:[4,15],getutcsecond:[4,15],getyear:[4,15],ghostwhit:7,git:[4,19],github:[0,1,2,4,14],give:[4,11,12,14],given:[2,4,6,9,11,15,20,21,22],global:[4,9,11,15],globalev:9,gltf:23,gltf_model:23,glyph:4,glyphref:4,going:[4,15],gold:7,golden:7,goldenbrown:7,goldenrod:7,goldenyellow:7,good:21,googl:[1,2,4,10,15,21,22],gpresult:5,gpupdat:5,gradual:11,graftabl:5,grai:7,grant:23,grape:7,grapefruit:7,grapepurpl:7,graphic:5,grass:7,grassgreen:7,grassygreen:7,grave_acc:7,great:16,greater_than:7,green:[6,7],greenappl:7,greenblu:7,greenbrown:7,greengrei:7,greenish:7,greenishbeig:7,greenishblu:7,greenishbrown:7,greenishcyan:7,greenishgrei:7,greenisht:7,greenishtan:7,greenishturquois:7,greenishyellow:7,greenteal:7,greenyblu:7,greenybrown:7,greenyellow:7,greenygrei:7,greenyyellow:7,grei:7,grep:[4,9,19],greyblu:7,greybrown:7,greygreen:7,greyish:7,greyishblu:7,greyishbrown:7,greyishgreen:7,greyishpink:7,greyishpurpl:7,greyisht:7,greypink:7,greypurpl:7,greyteal:7,grossgreen:7,group:[4,5,19,23],groupadd:[4,19],groupdel:[4,19],grow:[4,15],gui:16,gunmet:7,gunzip:[4,19],gzip:[4,19],had:1,halt:[4,15],hand:10,handl:[4,9,11,12,16],handler:[2,4,9,15],handwrit:5,hang:[5,15],hangingpunctu:4,hanimdisplac:[4,23],hanimhumanoid:[4,23],hanimjoint:[4,23],hanimseg:[4,23],hanimsit:[4,23],happen:[4,12],happi:[2,4],hard:5,harr:7,has:[0,2,4,5,8,9,11,12,15,16,17,20,22],has_internet:[2,4,21],hasalpha:7,hasattribut:[4,11],haschildnod:[4,11],hasclass:9,hasdata:9,hash:[4,15,22],hashchang:[4,11,12],hashchangeev:[4,11,12],hatch:4,hatchpath:4,have:[0,2,4,5,6,7,9,10,11,14,15,16,20,21],hazel:7,hdd:5,head:[4,6,9,11,14,16,19,23],header:[4,14],heart:7,heather:7,height:[2,4,6,9,11,15],heliotrop:7,hellip:7,hello:[1,11,14,15,16,22,23],hello_world:16,helloworld:16,help:[0,1,4,5,15,17],here:[0,1,2,4,6,11,16,17],hex2rgb:7,hex:7,hgroup:[4,14],hidden:[4,11],hide:9,high:5,highlightergreen:7,histori:[4,11,12,19],hkern:4,hold:[4,9,15],holdreadi:9,home:[6,7],homepag:[6,16],honeydew:7,hook:14,horizont:[4,9,11],horthand:4,hospitalgreen:7,host:[4,5,11,15,16,22],hostnam:5,hotgreen:7,hotmagenta:7,hotpink:7,hotpurpl:7,hour:[4,15],hover:9,how:[0,1,4,11,14,16,17,20],href:[4,11,14],hsl:7,hsv:7,html5:14,html5print:14,html:[0,3,6,8,9,10,11,16,17,23],htmlbeautifi:14,htmlelement:4,htmlprefilt:9,htmlrespons:16,http:[1,2,4,6,9,10,11,12,14,15,16,17,21,22,23],httprespons:16,huge:0,huntergreen:7,hwrcomp:5,hwrreg:5,hypen:[4,14],hyphen:[4,7,14],hypot:[4,15],iacut:7,icacl:5,ice:7,iceblu:7,icirc:7,ickygreen:7,icon:4,iconv:[4,19],icosahedron:23,idea:[],ident:4,identifi:[4,15],idiom:[2,4,21],idl:5,iexcl:7,ifconfig:[4,6,19],iff:10,ifram:[4,14],ignor:[2,4,21],igrav:7,iif:[2,4,10],illeg:[4,15],imag:[2,4,5,11,17,23],imageorient:4,imagetextur:[4,23],imagetexture3d:[4,23],imagetextureatla:[4,23],img:[2,4,11,14,21],immedi:[2,4,9,10,11,15],implement:[4,5,11,15],implicit:[2,4,21],implicitli:[2,4,21],importnod:[4,11],improv:4,inarrai:9,inc:15,includ:[4,5,9,11,15],increas:0,increment:4,indent:[4,14],index:[1,2,4,6,9,11,14,15,16,17,21],indexedfaceset:[4,23],indexedlineset:[4,23],indexedquadset:[4,23],indexedtriangleset:[4,23],indexedtrianglestripset:[4,23],indexerror:6,indexof:[4,15],indianr:7,indic:[4,5,11,15,22],indigo:7,indigoblu:7,individu:[4,5,15],inf:[4,15],infin:[4,7,15],info:[2,4,14],infor:17,inform:[1,4,5,22],infrar:5,inherit:[4,15,23],ini:5,init:9,init_asset:[2,4,21],initi:[4,15],initialvalu:[4,15],inlin:[4,6,14,23],inner:[4,6,9,15],innerheight:9,innerhtml:[4,6,11,16,23],innerwidth:9,inp:[4,14],inpsir:14,input:[3,4,5,6,9,11,12,14,15],inputev:[4,11,12],ins:[4,14],insert:[4,7,9,11,12,15],insertadjacentel:[4,11],insertadjacenthtml:[4,11],insertadjacenttext:[4,11],insertaft:9,insertbefor:[4,9,11],insertdata:[4,11],insertrul:4,insid:4,instal:[5,16],instanc:[2,4,5,11,15,21],instead:[2,3,4,6,10,11,14,15,23],instruct:1,instrument:5,integ:[4,15],integr:[2,4,5],intend:4,inter:14,interfac:[4,5,11],interlnk:5,intern:[4,11,15],internalsubset:[4,11],internet:[2,4,21],interpret:5,intersvr:5,interv:[4,15],invalid:[4,6,11,12],invok:[4,9,15],inward:4,ioloop:16,iota:7,ipc:[4,19],ipconfig:[4,5,19],ipcrm:[4,19],ipsumimag:2,ipx:5,ipxrout:5,iquest:7,irftp:5,iri:7,irishgreen:7,irrevers:14,is_json:3,isarrai:[4,9,15],iscontentedit:[4,11],iscsi:5,iscsicli:5,isdefaultnamespac:[4,11],isemptyobject:9,isequalnod:[4,11],isfinit:[4,15],isfunct:9,isin:7,isindex:[4,14],isinteg:[4,15],isn:16,isnan:[4,15],isnumer:9,iso:[4,15],isol:4,isosurfacevolumedata:[4,23],isplainobject:9,isreject:[4,11,12],isreload:[4,11,12],issafeinteg:[4,15],issamenod:[4,11],issu:[0,14],iswindow:9,isxmldoc:9,ital:[4,15],itb:14,item:[2,3,4,9,11,12,14,15,21],itemnam:14,iter:[2,4,9,11,15,21,22],its:[2,4,6,9,11,15,22,23],itself:9,iuml:7,ivori:7,jade:7,jadegreen:7,jan:[4,15],januari:[4,15],java:[2,4,21],javascript:[1,2,6,8,9,16,22],jinja:16,job:[4,14,15,19],join:[0,4,11,14,15,19],jqueri:6,jquery_3_5_1:2,jquery_ui:2,js_master:6,json:[1,9,15],json_data:3,json_filepath:[3,4],jsref:[4,15],jsref_refer:[4,15],jsworker:[4,15],junglegreen:7,just:[0,1,2,4,5,6,10,11,12,14,16,19,20,23],justif:4,justifi:4,justifycont:4,kappa:7,kb16:5,kbd:[4,14],kebab:[2,4,21],keep:[4,11],kei:[2,4,9,11,12,15,21,22],kelleygreen:7,kellygreen:7,ken:6,kerbero:5,kermitgreen:7,kernel:5,keyb:5,keyboard:[4,5,7,11,12],keyboardev:[4,11,12],keycod:1,keydown:[4,9,11,12],keyfram:4,keygen:[4,14],keylim:7,keypress:[4,9,11,12],keyup:[4,9,11,12],keyword:[1,4,6,14],keywordimg:2,khaki:7,khakigreen:7,kick:6,kill:[4,19],killal:[4,19],kind:16,kiwi:7,kiwigreen:7,klist:5,know:[4,10,15,17],ksetup:5,ktmutil:5,kwarg:[2,4,5,6,7,9,11,12,14,15,17,19,22,23],label:[4,5,14],lai:4,lambda:[1,2,3,4,6,7,10,15],lambda_funct:16,lang:[4,11],languag:[4,5],laquo:7,larg:6,larger:6,larr:7,last:[4,6,9,11,12,15],lastchanc:[4,11,12],lastchild:[4,11],lastelementchild:[4,11],lastindex:15,lastindexof:[4,15],lastmod:[4,17],latenc:5,later:[2,4],latest:[2,4,22],launch:1,launcher:6,lavend:7,lavenderblu:7,lavenderblush:7,lavenderpink:7,lawngreen:7,layout:4,lceil:7,ldquo:7,leaf:7,leafgreen:7,leafygreen:7,leather:7,leav:[4,9,11,12],left:[4,6,7,11,15],left_curly_brac:7,left_parenthesi:7,leftbracket:7,legend:[4,14],lemon:7,lemonchiffon:7,lemongreen:7,lemonlim:7,lemonyellow:7,len:15,length:[2,4,9,11,15,21],lerp:[4,20],lerpi:[4,20],less:[4,19],less_than:7,let:[2,4,5,10,14,15,19,22],letter:[2,4,5,15,21],letterspac:4,level:[2,4,11,16],leverag:14,lex:[4,19],lfloor:7,lib:[2,4],librai:21,librari:[1,8,14,23],licenc:5,licens:[4,11,19],licensingdiag:5,lichen:7,life:[7,10],light:23,lightaqua:7,lightaquamarin:7,lightbeig:7,lightblu:7,lightbluegreen:7,lightbluegrei:7,lightbluishgreen:7,lightbrightgreen:7,lightbrown:7,lightburgundi:7,lightcor:7,lightcyan:7,lighteggpl:7,lightergreen:7,lighterpurpl:7,lightforestgreen:7,lightgold:7,lightgoldenrodyellow:7,lightgrai:7,lightgrassgreen:7,lightgreen:7,lightgreenblu:7,lightgreenishblu:7,lightgrei:7,lightgreyblu:7,lightgreygreen:7,lightindigo:7,lightishblu:7,lightishgreen:7,lightishpurpl:7,lightishr:7,lightkhaki:7,lightlavend:7,lightlavendar:7,lightlightblu:7,lightlightgreen:7,lightlilac:7,lightlim:7,lightlimegreen:7,lightmagenta:7,lightmaroon:7,lightmauv:7,lightmint:7,lightmintgreen:7,lightmossgreen:7,lightmustard:7,lightnavi:7,lightnavyblu:7,lightneongreen:7,lightol:7,lightolivegreen:7,lightorang:7,lightpastelgreen:7,lightpeach:7,lightpeagreen:7,lightperiwinkl:7,lightpink:7,lightplum:7,lightpurpl:7,lightr:7,lightros:7,lightroyalblu:7,lightsag:7,lightsalmon:7,lightseafoam:7,lightseafoamgreen:7,lightseagreen:7,lightskyblu:7,lightslategrai:7,lightslategrei:7,lightsteelblu:7,lighttan:7,lightteal:7,lightturquois:7,lighturpl:7,lightviolet:7,lightyellow:7,lightyellowgreen:7,lightyellowishgreen:7,like:[0,1,4,6,8,9,11,12,15,16,17],lilac:7,liliac:7,lime:7,limegreen:7,limeyellow:7,limit:[5,17],line:[1,4,5,11,19],linear:[4,20],lineargradi:4,lineheight:4,linen:7,lineproperti:[4,23],lineset:[4,23],link:[2,4,5,6,11,14,15,19,22],linkedin:15,linux:1,lipstick:7,lipstickr:7,list:[0,1,2,3,4,5,6,9,11,15,16,17,21,22],listen:[12,16],liststyl:4,liststyleimag:4,liststyleposit:4,liststyletyp:4,littl:[7,17],live:[4,9],llow:4,load:[1,4,5,9,11,12,15,17,19],loadeddata:[4,11,12],loadedmetadata:[4,11,12],loader:5,loadfix:5,loadhigh:5,loadstart:[4,11,12],lobster:2,loc:[4,17],local:[2,4,5,15,19],localecompar:[4,15],localedef:[4,19],localhost:16,localnam:[4,11],locat:[4,5],lock:5,lod:[4,23],lodctr:5,log2:[4,15],log:[2,4,5,6,10,14,22],logarithm:[4,15],logger:[2,4,19],login:5,loglp:[4,15],logman:5,lognam:[4,19],logoff:5,logon:5,logout:[4,19],look:[1,5,6,14,15,17,19],lookupnamespaceuri:[4,11],lookupprefix:[4,11],loop:[4,6,11,17,20],lorempixel:2,loss:5,lost:5,lot:[6,13,16],love:10,lowast:7,lowercas:[2,4,15,21],lowercase_:7,lowercase_a:7,lowercase_b:7,lowercase_c:7,lowercase_d:7,lowercase_f:7,lowercase_g:7,lowercase_h:7,lowercase_i:7,lowercase_j:7,lowercase_k:7,lowercase_l:7,lowercase_m:7,lowercase_n:7,lowercase_o:7,lowercase_p:7,lowercase_q:7,lowercase_r:7,lowercase_t:7,lowercase_u:7,lowercase_v:7,lowercase_w:7,lowercase_x:7,lowercase_z:7,loz:7,lpd:5,lpq:5,lpr:5,lpt:5,lsaquo:7,lsquo:7,lst:[2,4,21],mac:[1,5],macaroniandchees:7,mach:[4,11],macr:7,macro:5,made:[4,11],magenta:7,magic:1,magnum:16,mahogani:7,mai:[4,6,10,11,14,15],mailx:[4,19],main:[2,4,14],mainhandl:16,maintain:4,maiz:7,make:[0,4,5,6,7,9,10,11,15,16,17,18,19,20],make_app:16,make_serv:16,make_wsgi_app:16,makearrai:9,makecab:5,makefil:0,male:7,man:[4,19],manag:[5,9,16],mango:7,mangum:16,mani:[4,15],manilla:7,manipul:[1,8,9,17],manual:11,map:[3,4,9,15],mapfil:[4,19],mar:[4,11],margin:[4,6,9],marginbottom:4,marginleft:4,marginright:4,margintop:4,marigold:7,marin:7,marineblu:7,mark:[2,4,14],marker:[4,5],marketplac:14,maroon:7,marx:[2,6],mask:4,master:5,match:[2,4,5,9,11,15,21],match_info:16,matchal:[4,15],materi:[4,23],math:[4,6,15,20],matrix:[4,13],matrixtexturetransform:[4,23],matrixtransform:[4,23],mauv:7,max:[2,4,21],maxheight:4,maximum:4,maxwidth:4,mayb:1,mdash:7,mdi_5_4_55:2,mdn:22,mean:[4,11,14],meant:10,media:[4,5,14],medialist:4,medium:4,mediumaquamarin:7,mediumblu:7,mediumbrown:7,mediumgreen:7,mediumgrei:7,mediumorchid:7,mediumpink:7,mediumpurpl:7,mediumseagreen:7,mediumslateblu:7,mediumspringgreen:7,mediumturquois:7,mediumvioletr:7,melon:7,mem:5,memmak:5,memori:5,mention:14,menu:[4,14],merg:[0,1,2,4,9,21],merge_dictionari:[2,4,21],merlot:7,mesg:[4,19],mesh:[4,23],messag:[4,5,11,12,14,15,19],meta:[4,14],metadataboolean:[4,23],metadatadoubl:[4,23],metadatafloat:[4,23],metadatainteg:[4,23],metadataset:[4,23],metadatastr:[4,23],metallicblu:7,meter:[4,14],method:[0,1,2,4,7,9,10,11,12,17,20,21,22,23],mgesbert:14,mho:7,micro:7,microsoft:5,midblu:7,middl:14,midgreen:7,midnight:[4,7,15],midnightblu:7,midnightpurpl:7,might:[6,17],militarygreen:7,milkchocol:7,milligram_1_3_0:2,millisecond:[4,11,15],mimetyp:16,mimic:15,min:[6,14],minheight:4,minim:[5,17],minimum:4,mint:7,mintcream:7,mintgreen:7,mintygreen:7,minu:[7,14],minut:[4,15],minwidth:4,mirror:[4,15],miss:[1,6,21],mistak:6,mistyros:7,mix:[2,4,6,21],mixin:23,mkdir:[4,5,19],mkfifo:[4,19],mkfile:[4,19],mklink:5,moccasin:7,mocha:7,modal:6,mode:[4,5,11],model:5,modernizer_2_8_3:2,modifi:[4,5,9,11,15],modul:[1,2,4,6,11],mof:5,mofcomp:5,moment_2_27_0:2,monitor:5,month:[4,15],monthli:17,moo:19,more:[1,2,3,4,5,9,10,11,14,15,16,19,21,22],moss:7,mossgreen:7,mossygreen:7,most:[1,6,9,11],mostli:[4,21],motion:9,motorjoint:[4,23],mount:5,mountvol:5,mous:[4,9,11,12],mousedown:[4,9,11,12],mouseent:[4,9,11,12],mouseev:[4,11,12],mousei:12,mouseleav:[4,9,11,12],mousemov:[4,9,11,12],mouseout:[4,9,11,12],mouseov:[4,9,11,12],mouseup:[4,9,11,12],mousex:12,move:[4,5,11,22,23],movietextur:[4,23],moz:14,mozilla:[4,11,12,15,22],mpath:4,mprplane:[4,23],mprvolumestyl:[4,23],mrinfo:5,msav:5,msbackup:5,mscdex:5,msd:5,msg:[4,5,9,15],msiexec:5,much:4,mud:7,mudbrown:7,muddybrown:7,muddygreen:7,muddyyellow:7,mudgreen:7,mui:5,muiunattend:5,mulberri:7,mulithread:15,multi:[9,15],multilingu:5,multipl:[4,5,9],multipli:14,multitextur:[4,23],multitexturecoordin:[4,23],murkygreen:7,mushroom:7,must:[2,4,11,23],mustard:7,mustardbrown:7,mustardgreen:7,mustardyellow:7,mutedblu:7,mutedgreen:7,mutedpink:7,mutedpurpl:7,mvp:2,my_class:6,my_compon:6,my_handl:12,myarr:15,mybrand:14,mycoolproject:1,mydata:15,mydiv:14,mydom:[1,11,14],myelement:[11,14],mylist:14,myobj:[3,14],myorderedlist:14,mypag:17,mysit:[11,16],mystr:15,mytabl:[3,9],mytag:[15,18],myth:14,myurl:22,mywebpag:16,nabla:7,name:[2,3,4,5,6,9,11,12,14,15,16,21],namednodemap:[4,11],namespac:[4,11,17],namespaceuri:[4,11],nan:[4,15],nastygreen:7,natur:[4,7,15],nautilu:[4,19],nav:[4,14],navajowhit:7,navdown:4,navi:7,navig:[0,4,14],navigationinfo:[4,23],navindex:4,navleft:4,navright:4,navup:4,navyblu:7,navygreen:7,nbsp:7,nbtstat:5,ndash:7,need:[1,2,4,6,9,11,12,14,15,16,17,19,23],neg:[4,15],negative_infin:[4,15],neither:[2,4,21],neonblu:7,neongreen:7,neonpink:7,neonpurpl:7,neonr:7,neonyellow:7,nest:[2,4,14,21],net1:5,net:[4,5,11,17],netcfg:5,netsh:5,netstat:5,network:5,new_nod:[4,11],newchild:[4,11],newchildren:[4,11],newer:5,newgrp:[4,19],newlin:[],newnod:9,newtarget:[4,15],newval:9,newvalu:[4,11,12],next:[4,9,11,16],nextal:9,nextelements:[4,11],nextnod:[4,11],nextsibl:[4,11],nextuntil:9,nfsadmin:5,nice:[4,14,19],niceblu:7,nightblu:7,nine:7,nix:19,nlsfunc:5,nltest:5,nmap:[4,19],noconflict:9,node:[4,9,11,14,15,17,23],nodefilt:[4,11],nodeiter:[4,11],nodelist:[4,11],nodenam:[4,11],nodetyp:[4,11],nodevalu:[4,11],nohup:[4,19],non:[4,11],none:[2,3,4,6,9,10,11,12,14,15,20,21],noop:9,normal:[4,11,17,23],normalinterpol:[4,23],normalizedocu:[4,11],noscript:[4,14],notat:[4,11,15],note:[0,1,4,5,9,11,16,17,19,20],noth:10,notic:[11,23],notin:7,now:[1,2,4,6,9,14,15,16,20,21],nozzl:[4,23],npm:[4,19],nslookup:5,nsub:7,ntbackup:5,ntf:5,ntild:7,ntsd:5,num:[4,15],number:[2,4,5,8,9,11,12,15,17],number_0:7,number_1:7,number_2:7,number_3:7,number_4:7,number_5:7,number_6:7,number_7:7,number_8:7,number_9:7,number_sign:7,numer:[4,9,11,15],numpad:7,numpad_0:7,numpad_1:7,numpad_2:7,numpad_3:7,numpad_4:7,numpad_5:7,numpad_6:7,numpad_7:7,numpad_8:7,numpad_9:7,numpad_add:7,numpad_decim:7,numpad_divid:7,numpad_ent:7,numpad_multipli:7,numpad_subtract:7,nut:10,oacut:7,obj1:9,obj2:9,obj:[3,4,9,11,12,14,15],obj_model:23,object:[1,3,4,5,6,8,9,10,11,12,16,20,22],objectfit:4,objectposit:4,obliqu:4,observ:[5,9],obsolet:15,obviou:[2,4],occur:[4,9,15],occurr:[4,15],ocean:7,oceanblu:7,oceangreen:7,ocher:7,ochr:7,ocirc:7,ocr:7,ocsetup:5,octahedron:23,odd:9,oelig:7,off:[5,9,19],offblu:7,offgreen:7,offlin:[4,11,12],offset:[4,9,11],offsetheight:[4,11],offsetleft:[4,11],offsetpar:[4,9,11],offsettop:[4,11],offsetwidth:[4,11],offwhit:7,offyellow:7,ograv:7,ohm:7,ojbect:17,old:[4,11,12,15],oldchild:[4,11],oldlac:7,oldpink:7,oldros:7,oldvalu:[4,11,12],olin:7,oliv:7,olivebrown:7,olivedrab:7,olivegreen:7,oliveyellow:7,ome:15,omega:7,omicron:7,on_custom_ev:12,on_page_click:12,onc:[2,4,9,11,15],oncomplet:[4,11,12],one:[0,1,2,4,5,6,7,9,11,14,15,17,21],ones:[6,9,15,16],onli:[1,2,4,5,6,9,11,14,15,16,17,19,21],onlin:[4,11,12],onpaus:[4,11,12],onreset:[4,11,12],onstart:[4,11,12],onstop:[4,11,12],ontim:[4,11,12],onto:9,onunpaus:[4,11,12],onupdateend:[4,11,12],onupdatestart:[4,11,12],opac:[4,9],opacitymapvolumestyl:[4,23],opaqu:9,open:[0,1,4,5,6,11,12,19],openfil:5,opening_curly_brac:7,opening_parenthesi:7,opening_square_bracket:7,openj:[4,11],oper:[2,4,5,9,11,12,14,15,21],operand:6,oplu:7,opposit:[2,4,21],optgroup:[4,14],optimis:5,option:[2,4,5,9,11,14,15,21],orang:7,orangebrown:7,orangeish:7,orangepink:7,orangeybrown:7,orangeyellow:7,orangeyr:7,orangeyyellow:7,orangish:7,orangishbrown:7,orangishr:7,orchid:7,order:[4,6,11,15],ordf:7,ordm:7,org:[4,11,12,15,17,22],orientationchas:[4,23],orientationdamp:[4,23],orientationinterpol:[4,23],origin:[2,4,9,11,15,16],orphan:4,orthoviewpoint:[4,23],oslash:7,other:[3,4,5,6,11,14,15,19,21,22],otherel:[4,11],otherwis:[4,11,14,15],otild:7,otim:7,ouml:7,our:17,out:[0,1,4,5,6,11,14,16,18],outer:9,outerheight:9,outerwidth:9,outfil:[3,4],outlin:4,outlinecolor:4,outlineoffset:4,outlinestyl:4,outlinewidth:4,outp:[4,14],output:[3,4,5,10,14,17,19],outsid:[4,11],over:[2,4,5,9,11,12,15,20,21],overflow:[4,6,15],overflowi:4,overflowx:4,overrid:[4,15],overridden:[4,5,19],own:[1,2,4,6,11,14,15],ownerdocu:[4,11],ownernod:4,ownerrul:4,ownkei:[4,15],packag:[1,2,4,5,6,8,13,15,16,17,19,20,22],pad:[4,6,9,11,15],padchar:[4,15],paddingbottom:4,paddingleft:4,paddingright:4,paddingtop:4,padend:[4,15],padstart:[4,15],page:[1,4,5,6,12,14],page_down:7,page_up:7,pagebreakaft:4,pagebreakbefor:4,pagebreakinsid:4,pagehid:[4,11,12],pageshow:[4,11,12],pagetransitionev:[4,11,12],paint:4,pair:[4,11,15,22],pale:7,paleaqua:7,paleblu:7,palebrown:7,palecyan:7,palegold:7,palegoldenrod:7,palegreen:7,palegrei:7,palelavend:7,palelightgreen:7,palelilac:7,palelim:7,palelimegreen:7,palemagenta:7,palemauv:7,paleol:7,paleolivegreen:7,paleorang:7,palepeach:7,palepink:7,palepurpl:7,paler:7,paleros:7,palesalmon:7,paleskyblu:7,palet:7,paleturquois:7,paleviolet:7,palevioletr:7,paleyellow:7,papayawhip:7,para:7,paragraph:4,parallel:5,param:[4,6,7,9,10,14,15,23],paramet:[2,3,4,5,7,9,10,11,14,15,19,21,22,23],paramstr:[4,15,22],parchment:7,parent:[4,9,11],parent_nod:4,parentel:[4,11],parentnod:[4,11,23],parentrul:4,parentstylesheet:4,parentsuntil:9,pars:[1,4,9,15],parse_fil:3,parsefloat:[4,15],parsehtml:9,parseint:[4,15],parsejson:9,parser:14,parsexml:9,part:[4,5,7,11,15,16,22],partial:5,particleset:[4,23],particular:[5,9],partit:5,pass:[1,2,4,5,6,9,10,11,14,15,17,18,19,21],passwd:[4,19],past:[4,11,12,16,19],pastelblu:7,pastelgreen:7,pastelorang:7,pastelpink:7,pastelpurpl:7,pastelr:7,pastelyellow:7,patch:[4,19],path:[1,4,5,6,15,16],pathchk:[4,19],pathnam:15,pathp:5,pattern:[4,15],paus:[4,5,11,12,20],pax:[4,19],pea:7,peach:7,peachpuff:7,peachypink:7,peacockblu:7,peagreen:7,pear:7,peasoup:7,peasoupgreen:7,pecifi:4,penner:[4,20],pentnt:5,peopl:[4,11,16],per:[4,9,11,20],percent_sign:7,perform:[5,9],perhap:0,period:7,periwinkl:7,periwinkleblu:7,permil:7,permut:[2,4,21],perp:7,perrywinkl:7,persist:[4,11,12],perspect:4,perspectiveorigin:4,peru:7,petrol:7,phase:[4,11,12],phi:7,phone:7,photo:2,php:[4,11],physicalenvironmentlight:[4,23],physicalmateri:[4,23],pick:[2,4,11],picsum:2,pictur:[4,14],piec:[6,9],pigpink:7,pin:5,pine:7,pinegreen:7,ping:[4,5,19],pink:7,pinki:7,pinkish:7,pinkishbrown:7,pinkishgrei:7,pinkishorang:7,pinkishpurpl:7,pinkishr:7,pinkishtan:7,pinkpurpl:7,pinkr:7,pinkypurpl:7,pinkyr:7,pip:[1,4,16,19],pissyellow:7,pistachio:7,piv:7,pixel:[4,7,11],pixeldepth:[4,15],pixeltextur:[4,23],pixeltexture3d:[4,23],pixi_5_3_3:2,pkgmgr:5,place:[4,9,14],placebear:[2,4],placebeard:2,placecag:2,placehold:[2,4,14],placeholder_servic:[2,4],placeimg:2,placekitten:2,plai:[4,5,11,12],plain:9,plaintext:[4,14],plan:5,plane:[4,11,23],planesensor:[4,23],pleas:0,plenti:16,plu:[0,15],plug:5,plugin:14,plum:7,plumpurpl:7,plus_sign:7,plusmn:7,png:[2,6],pnpunattend:5,pnputil:5,poc:16,point:[4,5,11,13,15],pointer:[4,9,11,12],pointerev:[4,11,12],pointless:[4,5,19],pointlight:[4,23],pointset:[4,23],poisongreen:7,polici:5,polygon:[1,4],polylin:4,polyline2d:[4,23],polypoint2d:[4,23],poo:7,poobrown:7,pool:15,poop:7,poopbrown:7,poopgreen:7,pop:[4,15],popd:[4,5,19],popgeometri:[4,23],popgeometrylevel:[4,23],popper_1_16_1:2,popstat:[4,11,12],popstateev:[4,11,12],popular:[0,8,16],port:[0,4,5,8,11,15,16,20],portal:[4,14],portion:[4,15],posit:[4,5,6,9,11,15],positionchas:[4,23],positionchaser2d:[4,23],positiondamp:[4,23],positiondamper2d:[4,23],positioninterpol:[4,23],positioninterpolator2d:[4,23],positive_infin:[4,15],posix:19,possibl:[0,2,4,5,11,16,21],post:9,postmessag:[4,15],pound:7,pow:6,powderblu:7,powderpink:7,power:[5,8,9],powercfg:5,ppli:4,pre:[4,14],preced:[4,9,15],precis:[4,8,15],preconfigur:5,prefer:[1,2,4],prefix:[4,11],prepar:5,prepend:[9,14,23],prependto:9,present:[4,11],pretti:[1,14],prettifi:[4,17],prev:9,preval:9,prevent:[4,11,12],preventextens:[4,15],previou:[4,9,11],previous:9,previouselements:[4,11],previousnod:[4,11],previouss:[4,11],previousvalu:[4,15],prevuntil:9,primarili:5,primaryblu:7,prime:7,print:[1,2,3,4,5,6,7,9,10,11,12,14,15,17,18,19,20,22],printer:5,printf:[4,19],prior:[4,11],prioriti:[4,17],procedur:5,process:[5,9],processdata:9,processinginstruct:[4,11],processor:5,prod:7,produc:9,product:[0,1,5,14],profil:5,program:[5,14],programkil:[4,15],progress:[4,5,11,12,14],progressev:[4,11,12],project:0,projectionvolumestyl:[4,23],promis:[4,9,11,12,15],promiserejectionev:[4,11,12],prompt:[4,5,15],prop:[7,9,15],propag:[4,11,12],properti:[4,5,9,11,12,15,20,22],propertykei:[4,15],propertynam:[4,11,12],protect:5,protocol:[5,15,17],prototyp:[1,2,4,15],provid:[2,4,5,6,9,11,15,21],proxi:[4,9,15],prs:[4,19],prussianblu:7,pseudo:[4,11,12],pseudoel:[4,11,12],psi:7,publicid:[4,11],publish:0,puce:7,puke:7,pukebrown:7,pukegreen:7,pukeyellow:7,pull:1,pumpkin:7,pumpkinorang:7,punctuat:4,pure:[4,5,19],pureblu:7,purg:5,purpl:7,purpleblu:7,purplebrown:7,purplegrei:7,purplei:7,purpleish:7,purpleishblu:7,purpleishpink:7,purplepink:7,purpler:7,purpleyblu:7,purpleygrei:7,purpleypink:7,purpli:7,purplish:7,purplishblu:7,purplishbrown:7,purplishgrei:7,purplishpink:7,purplishr:7,purplyblu:7,purplypink:7,purpos:9,push:[4,15],pushd:[4,5,19],pushstack:9,put:[6,23],putti:7,pwd:[4,19],pwlauncher:5,py2:[4,11],py3:[4,11],pyml:[1,4,9,10],pyramid:[1,4,23],python3:[1,5,16],python:[0,2,3,4,5,6,8,9,10,11,12,14,15,17,19,21,22,23],python_str:[4,15],pythonstr:[4,15],qalter:[4,19],qappsrv:5,qbasic:5,qdel:[4,19],qhold:[4,19],qmove:[4,19],qmsg:[4,19],qprocess:5,qrerun:[4,19],qrl:[4,19],qselect:[4,19],qsig:[4,19],qstat:[4,19],qsub:[4,19],quad:20,quadrilater:[4,11],quadset:[4,23],qualifi:[4,11],qualifiednam:[4,11],qualiti:0,quart:20,queri:[1,4,5,11,15,22],queryselector:[4,11],queryselectoral:[1,4],question_mark:7,queu:9,queue:[5,9],quick:1,quicker:1,quickli:[1,2,9,14,15,17],quickstart:16,quint:20,quit:[4,11],quot:[4,7],quotat:4,quotation_mark:7,quser:5,qwinsta:5,racinggreen:7,radarvolumestyl:[4,23],radialgradi:4,radic:7,radioactivegreen:7,radionodelist:[4,11],raid:5,rais:[4,5,11,12,15,19],ram:5,random:[2,7,15],random_color:[2,4,21],random_hex:7,rang:[4,5,6,11,12,14,15],raquo:7,rarr:7,rasaut:5,rasdial:5,raspberri:7,ratechang:[4,11,12],rather:23,raw:[4,11,15],rawsienna:7,rawumb:7,rceil:7,rcp:5,rdp:5,rdpsign:5,rdquo:7,read:[0,1,4,11,19],read_root:16,readabl:[4,5,15],readarrai:[4,19],readi:9,readm:0,readonli:[4,19],readyexcept:9,reagentc:5,real:5,reallylightblu:7,reason:[4,11,12],reassign:5,rebeccapurpl:7,reboot:[4,19],recal:5,receiv:[2,4,15,21],recent:9,reciev:[4,5,10,15,19],recimg:5,recognis:5,recognit:5,recommend:9,recov:5,recoveri:5,rect:4,rectangle2d:[4,23],rectangulartoru:[4,23],red:[6,7,15],redbrown:7,reddish:7,reddishbrown:7,reddishgrei:7,reddishorang:7,reddishpink:7,reddishpurpl:7,reddybrown:7,redorang:7,redpink:7,redpurpl:7,redraw:[6,16],reduc:[4,5,9,15],reduceright:[4,15],redviolet:7,redwin:7,ref:[2,4,6],refer:[1,2,4,5,6,7,11,15,22],referenc:14,reference_nod:[4,11],referencenod:[4,11],refinementtextur:[4,23],reflect:[4,15],reg:[5,7],regardless:[4,15],regex:[4,15],regini:5,regist:[5,9],registr:5,registri:5,regonis:17,regsvr32:5,regular:[2,4,15],reject:[4,11,12],rejectionhandl:[4,11,12],rel:[4,9,11],relai:[9,12],relat:[4,5,11,21],releaes:1,releas:9,relev:[4,11,21],relinquish:9,reload:[4,11,12,16],relog:5,rem:5,rememb:[4,11,15],remot:5,remoteselectiongroup:[4,23],remov:[2,4,5,9,11,14,15,21,22],removeattr:9,removeattribut:[4,11],removeattributen:[4,11],removeattributenod:[4,11],removechild:[4,11],removeclass:9,removedata:9,removenameditem:[4,11],removenameditemn:[4,11],removeprop:9,removeproperti:4,removerul:4,ren:5,renam:[4,5,11],renamenod:[4,11],render:[1,4,6,10,15,17,18,23],renderedtextur:[4,23],renic:[4,19],repair:5,repeat:[4,15],replac:[2,4,5,9,11,15,21],replace_between:[2,4,21],replaceal:[4,9,15],replacechild:[4,11],replacechildren:[4,11],replacedata:[4,11],replacesync:4,replacewith:[4,9,11],repo:[0,16],report:1,repositori:[0,5],repr:[14,17],repres:[4,5,9,11,12,15],represent:[4,9,15],request:[1,4,6,9,11,12,15,16],requestanimationfram:[4,15],requestfullscreen:[4,11],requesthandl:16,requir:[4,5,15],reset:[4,5,11,12],resiz:[4,9,11,12],resolut:5,resolv:[4,11,12,16],respect:[4,9,15],respondwith:[4,11,12],respons:[2,4,5,6,9,11,12,15,16,19],response_class:16,rest:4,restart:5,restor:5,restrict:[10,16],result:[2,4,5,9,10,14,15],retriev:9,retun:7,return_json:[3,4],revers:[3,4,15],rexec:5,rfloor:7,rgb2hex:7,rgb:[6,7],rgba:[6,7],rho:7,richblu:7,richpurpl:7,right:[4,5,6,7,14,15],right_curly_brac:7,right_parenthesi:7,rightbracket:7,rigidbodi:[4,23],rigidbodycollect:[4,23],ring:23,rmdel:[4,19],rmdir:[4,5,19],robert:[4,20],robineggblu:7,robinsegg:7,robinseggblu:7,robocopi:5,robust:5,rom:5,root:[4,9,11,15],rootnod:[4,11],rosa:7,rose:7,rosepink:7,roser:7,rosybrown:7,rosypink:7,rotat:[4,13],roug:7,round:[4,15],rout:[4,5,6,16,23],route_nam:16,router:5,row:4,royal:7,royalblu:7,royalpurpl:7,rpc:5,rpcinfo:5,rpcping:5,rrggbb:7,rsaquo:7,rsdh:5,rsh:5,rsm:5,rsquo:7,rst:0,rsync:[4,19],rubi:[4,7,14],rule:4,run:[0,1,2,4,9,11,12,15,17,20],run_app:16,run_simpl:16,runa:5,runserv:16,russet:7,rust:7,rustbrown:7,rustorang:7,rustr:7,rustyorang:7,rustyr:7,rwinsta:5,sact:[4,19],saddlebrown:7,safe:[2,4,15,21],saffron:7,sage:7,sagegreen:7,sai:[4,19],salmon:7,salmonpink:7,same:[4,5,11,15],samp:[4,14],sampl:2,sand:7,sandbrown:7,sandi:7,sandston:7,sandybrown:7,sandyellow:7,sandyyellow:7,sanic:[1,6],sapgreen:7,sapphir:7,satisfi:9,satur:4,save:[5,14],sbquo:7,scalarchas:[4,23],scalardamp:[4,23],scalarinterpol:[4,23],scale:[4,13],scandisk:5,scanreg:5,scarlet:7,scaron:7,scc:[4,19],scene:[4,23],schema:[4,17],schtask:5,scope:[4,15],scp:[4,19],scratch:17,screen:[4,11,15],script:[1,2,4,5,6,11,15,23],scroll:[4,9,11,12],scrollbar:[4,11],scrollheight:[4,11],scrollintoview:[4,11],scrollleft:[4,9,11],scrolltop:[4,9,11],scrollwidth:[4,11],scsi:5,sdb:5,sdbinst:5,sdot:7,sea:7,seablu:7,seafoam:7,seafoamblu:7,seafoamgreen:7,seagreen:7,seamlessli:9,search:[1,4,5,9,11,12,15,22],searchvalu:[4,15],seashel:7,seawe:7,seaweedgreen:7,secedit:5,second:[4,9,10,11,12,15],sect:7,section:[4,14,16],secur:5,sed:[4,19],see:[0,1,2,4,5,6,9,11,14,15,16,17,18,19,21,22,23],seek:[4,11,12],seem:5,segmentedvolumedata:[4,23],select:[1,4,5,9,11,12,14,15],selector:[4,9,11],selectorstr:[4,11],self:[4,5,6,11,12,14,16,17],semicolon:7,send:[0,1,4,5,9,15],sent:9,sentenc:[2,4,21],separ:[4,5,11],seper:[2,4,15],sepia:7,sequenc:[4,5,15],sequenti:[4,15],serial:[5,9],serialis:4,serializearrai:9,serv:1,serve_forev:16,server:[1,4,5,6,9,11],serverless:16,servic:[2,5],servicework:[4,15],session:[4,5,19],set:[2,4,5,9,11,14,15,21,22],set_fract:23,setattribut:[4,11],setattributen:[4,11],setattributenod:[4,11],setattributenoden:[4,11],setdat:[4,15],setfullyear:[4,15],sethour:[4,15],setinterv:[1,20],setloc:5,setmillisecond:[4,15],setminut:[4,15],setmonth:[4,15],setnameditem:[4,11],setnameditemn:[4,11],setprototypeof:[4,15],setsecond:[4,15],setspn:5,settim:[4,15],settimeout:[4,15],setup:5,setutcd:[4,15],setutcfullyear:[4,15],setutchour:[4,15],setutcmillisecond:[4,15],setutcminut:[4,15],setutcmonth:[4,15],setutcsecond:[4,15],setver:5,setx:5,setyear:[4,15],seven:7,sever:[1,4,8,14,15,22],sf2:6,sfc:5,sha384:14,shadedvolumestyl:[4,23],shaderpart:[4,23],shadow:[4,5],shadowroot:[4,11],shamrock:7,shamrockgreen:7,shape:[1,4,7,8,13,23],share:5,sharp:7,sheet:4,shell:5,shift:[4,5,7,14,15,19],shit:7,shitbrown:7,shitgreen:7,shockingpink:7,shopt:[4,19],shortcut:23,shorten:[4,11],shorthand:4,should:[4,6,9,15],show:[4,5,9,10,11,12,17,20],showmount:5,shrink:4,shut:5,shutdown:[4,5,19],sibl:[4,9,11],sickgreen:7,sicklygreen:7,sicklyyellow:7,side:9,sienna:7,sigma:7,sigmaf:7,sign:[4,5,15],signific:[4,15],silenc:[1,2,4],silhouetteenhancementvolumestyl:[4,23],silver:7,sim:7,similar:[2,4,15,21],simliar:23,simonwillison:[4,11],simpl:[1,14,16],simple_serv:16,simpli:[1,15],simplifi:9,simul:[4,11],sinc:[4,11,15],sine:20,singl:[4,5,9,15],singleaxishingejoint:[4,23],site:[2,4,11,14,16],sitemap1:[4,17],sitemap:1,sitemap_format:[4,17],sitemap_from_url:[4,17],sitemapindex:[1,4],sitemapindex_from_url:[4,17],six:7,size:[2,4,6,7,9,11,14,15,18,21],skill:16,skip:[4,5,11],sky:[7,23],skyblu:7,slash:[2,4,7],slate:7,slateblu:7,slategrai:7,slategreen:7,slategrei:7,sleep:[4,15,19,20],slice:[4,9,15],slide:9,slidedown:9,sliderjoint:[4,23],slidetoggl:9,slideup:9,slimegreen:7,slopedcylind:[4,23],slot:[4,11],small:[4,14,15],smart:5,smartdriv:5,smartdrv:5,smash:1,snake:[2,4,21],snapshot:5,snippet:[2,4,21],snot:7,snotgreen:7,snout:[4,23],snow:7,socket_1_4_5:2,softblu:7,softgreen:7,softpink:7,softpurpl:7,softwar:5,solid:6,solidcolor:4,solidofrevolut:[4,23],some:[0,1,2,3,4,6,9,14,15,16,17,21],some_arr:[2,4,21],some_ev:12,some_tmpl:6,somearr:[4,15],somedir:[5,19],someeventhandl:12,somefil:[3,5,19],somefunc:[3,10,15],somehtml:9,someinput:14,somelist:9,someobj:[4,20],somesit:[14,15],someth:[6,10,17],somethingels:[2,4],someurl:14,somevar:6,somewher:[12,16],somexstr:15,soon:0,sorrycc:[2,4],sort:[4,5,9,15,19,22],sot:5,sound:[4,23],sourc:[0,1,2,3,4,5,7,9,11,12,13,14,15,17,19,20,21,22,23],spa:1,space:[4,7,11],spade:7,span:[4,14,16],spearmint:7,special:[4,9],specif:[5,6,9],specifi:[4,5,9,11,14,15,16,22],speed:4,sphere:[4,23],sphereseg:[4,23],spheresensor:[4,23],sphinx:0,sphinx_github_changelog_token:[],splice:[4,15],splinepositioninterpol:[4,23],split:[4,11,15,19],splittext:[4,11],spn:5,spotlight:[4,23],springgreen:7,spritecss:1,spritesheet:6,spruce:7,squar:[4,7,14,15],squash:[2,4,7,21],ssh:[4,19],stack:[4,9],stall:[4,11,12],stamp:[4,11,12],standard:[4,5,15],star:7,starf:7,starlett:1,start:[1,2,4,5,6,9,11,12,15,16,20,21],startproject:16,startswith:[4,15],startup:5,state:[4,9,11,12],statement:5,staticgroup:[4,23],staticmethod:[2,4,21],statist:5,statu:[5,19],steel:7,steelblu:7,steelgrei:7,step:[4,6,15],stevensegalleri:2,stfu:10,still:[8,11,14,16],stipplevolumestyl:[4,23],stone:7,stop:[2,4,5,9,11,12,15],stoppropag:[4,11,12],storag:[4,5,11,12],storagearea:[4,11,12],storageev:[4,11,12],store:[5,9],stormyblu:7,str:[2,3,4,5,6,7,9,10,11,14,15,16,17,19,21,22,23],straight:14,straw:7,strawberri:7,stream:[2,4,21],strean:19,stretch:4,strict:1,stricterrorcheck:[4,11],strike:[4,14,15],string:[1,2,4,5,6,7,9,10,11,17,19,21,22],stringifi:4,stringsom:15,stringvar:15,strip:[4,14,19],strong:[4,14],strongblu:7,strongpink:7,struct:9,structur:[5,9],stty:[4,19],stub:18,stuff:[5,19],style:[1,6,9,11],stylesheet:[2,4,6,14],stylesheetlist:4,sub:[4,7,9,11,14,15],subclass:[4,15],subdirectori:5,sube:7,submiss:9,submit:[4,9,11,12,14],submitev:[4,11,12],subprocess:[5,19],subscript:5,subsequ:9,subset:[4,11],subst:5,substr:[4,15],substringdata:[4,11],subtl:[4,15],subtre:[4,11],success:[2,4,9,10,15],successfulli:[4,9,15],sugar:[2,4],suitabl:[4,9,15,22],sum:[4,7,15],summari:[4,14],sunflow:7,sunfloweryellow:7,sung:7,sunnyyellow:7,sunshineyellow:7,sunyellow:7,sup1:7,sup2:7,sup3:7,sup:[4,7,10,14,15],supe:7,support:[0,1,4,5,11,15,18],sure:[4,16,17],surfaceshadertextur:[4,23],suspend:[4,11,12,19],svg2:4,svg:[1,7,8,11],svgevent:[4,11,12],swamp:7,swampgreen:7,sweet:[2,4,10],sxstrace:5,symbol:[1,4,5,9],sync:[4,11,12],syncev:[4,11,12],synchron:[4,9],synchronis:5,syntact:[2,4],syntax:[4,6,14],syntaxerror:6,sys:5,system:[5,8,19],systemid:[4,11],systeminfo:5,szlig:7,tab:[4,7,19],tabl:[3,4,5,9,14],tablelayout:4,tablifi:[3,4],tabsiz:4,tag:[1,4,6,10,11,12,15,16,17,18,22,23],tagnam:[4,11],tail:[4,19],take:[1,2,3,4,5,6,7,9,14,15,16,19,21],taken:[4,5,15],takeown:5,talk:[4,19],tan:7,tanbrown:7,tangerin:7,tangreen:7,tapi:5,tar:[4,19],target:[4,9,11,12,15,20],task:[4,5,15],taskbar:[4,15],taskkil:5,tasklist:5,tau:7,taup:7,tbodi:[4,14],tcmsetup:5,tcp:5,tea:7,teagreen:7,teal:7,tealblu:7,tealgreen:7,tealish:7,tealishgreen:7,technolog:[1,15,19],tee:[4,19],telephoni:5,telnet:5,templat:[4,5,16,23],templateerror:[4,14],tend:16,termin:[1,5,6,15],terminalexcept:[4,19],ternari:14,terracota:7,terracotta:7,test2:9,test:[1,4,5,9,10,11,14,15,16,18,19,22],test_domon:6,test_html:14,test_that_wont_pass:10,tetrahedron:23,texcoorddamper2d:[4,23],text:[2,4,5,6,9,10,11,14,15,16,21,23],textalign:4,textalignlast:4,textarea:[4,14],textcont:[4,11],textdecod:22,textdecoderstream:22,textdecor:4,textdecorationcolor:4,textdecorationlin:4,textdecorationstyl:4,textencod:22,textencoderstream:22,textind:4,textjustifi:4,textoverflow:4,textpath:4,textshadow:4,texttransform:4,textual:4,textur:[4,23],texturecoordin:[4,23],texturecoordinate3d:[4,23],texturecoordinategener:[4,23],textureproperti:[4,23],texturetransform3d:[4,23],texturetransform:[4,23],texturetransformmatrix3d:[4,23],tfoot:[4,14],tftp:5,than:[0,5,15,23],the_list:[2,4,21],thead:[4,14],thei:[2,4,6,9,14,15,17,23],them:[4,5,9,11,14,15,16,17,20,23],thenabl:9,there4:7,theses:[4,15],theta:7,thetasym:7,thi:[1,2,4,5,6,8,9,10,11,14,15,16,17,19,21,22,23],thing:[4,8,9,14,15,16,19,21],think:21,thisarg:[4,15],thisargu:[4,15],thistl:7,tho:[4,17],thorn:7,those:[1,2,4,9,21],thread:[4,15,20],three:[2,4,7,14,21],three_dots_0_2_0:2,through:[4,5,9,11,15,17,22],thrown:9,tick:7,ticket:[5,14],tiffanyblu:7,tild:7,tile:4,time:[4,5,7,9,11,12,15,19,20,23],timeout:[2,4,5,15,21],timeoutid:[4,15],timer:[4,9,11,12,15,20],timerev:[4,11,12],timesensor:[4,23],timestamp:[4,11,12],titl:[2,4,5,6,11,14,21],tla:[2,4,21],tlntadmn:5,to_dictionari:[2,4,21],toarrai:9,tocharcod:[4,15],tocodepoint:[4,15],tocss:7,todatestr:[4,15],todo:[2,3,4,5,11,15,19,22],toexponenti:[4,15],tofix:[4,15],togeth:[5,9,13],toggl:[4,9,11,12],toggleclass:9,togmtstr:[4,15],tohsl:7,tohsv:7,toisostr:[4,15],tojson:[4,15],token:[4,11],tolocaledatestr:[4,15],tolocalelowercas:[4,15],tolocalestr:[4,15],tolocaletimestr:[4,15],tolocaleuppercas:[4,15],tolowercas:[4,15],tomat:7,tomato:7,ton:2,tonemappedvolumestyl:[4,23],tood:[4,11],tool:5,top:[4,6,11],topaz:7,topic:5,topmost:[4,11],toprecis:[4,15],torgb:7,tornado:1,toru:[4,23],torus_knot:23,tosourc:[4,15],tostr:[4,11,15,22],tosvg:7,total:[4,15],totimestr:[4,15],touch:[4,5,19,21],touchcancel:[4,11,12],touchend:[4,11,12],touchev:[4,11,12],touchmov:[4,11,12],touchsensor:[4,23],touchstart:[4,11,12],toup:7,touppercas:[4,15],toutcstr:[4,15],toxicgreen:7,tpm:5,tpmvscmgr:5,tput:[4,19],trace:5,tracerpt:5,tracert:5,track:[4,5,14],tracker:0,trade:7,trademark:7,traffic:0,transact:5,transfer:5,transform:[4,15,23],transformin:1,transformorigin:4,transformstyl:4,transit:[4,11,12],transitiondelai:4,transitiondur:4,transitionend:[4,11,12],transitionev:[4,11,12],transitionproperti:4,transitiontimingfunct:4,translat:[4,9,13,23],transmiss:9,transpar:9,trap:[4,19],travers:[4,9,11],tree:[4,9,11],treegreen:7,treewalk:[4,11],tref:4,triangl:23,triangleset2d:[4,23],triangleset:[4,23],trick:15,trigger:[5,9],triggerhandl:9,trim:[4,9,15],trimend:[4,15],trimstart:[4,15],trivial:5,trueblu:7,truegreen:7,truncat:[2,4,21],tscon:5,tsdiscon:5,tskill:5,tsort:[4,19],tspan:4,tsshutdn:5,tst:9,ttach:4,tty:[4,19],tupl:[4,7,15],turn:[2,4,14,21],turquois:7,turquoiseblu:7,turquoisegreen:7,turtlegreen:7,tweak:1,tween:[1,4],tweenev:[4,11,12],twilight:7,twilightblu:7,twn:[4,20],two:[4,5,7,9,11,14,15],twosidedmateri:[4,23],txt:19,type:[1,2,3,4,5,6,7,9,10,11,14,19,21],type_:5,typeerror:6,typeperf:5,typeset:[4,19],typic:[2,4,21],tzutil:5,uacut:7,uarr:7,ucirc:7,uglyblu:7,uglybrown:7,uglygreen:7,uglypink:7,uglypurpl:7,uglyyellow:7,ugrav:7,uid:6,uievent:[4,11,12],ulimit:[4,19],ultramarin:7,ultramarineblu:7,umask:[4,19],umb:5,umber:7,uml:7,umount:5,unalia:[4,19],unam:[4,6,19],unbind:9,unbreak:4,uncompress:[4,19],undefin:[4,15],undeleg:9,undelet:5,under:[4,5,11],underscor:[2,6,7,14],undo:5,undocu:15,unescap:[2,4,21],unexpand:[4,19],unformat:5,unget:[4,19],unhandl:[4,11,12],unhandledreject:[4,11,12],unicod:[4,15],unicodebidi:4,uniform:[4,23],uninstal:5,uniq:[4,19],uniqu:[2,4,9,10,21],uniquesort:9,unit:[4,10,15,22],univers:[4,15],universaljoint:[4,23],unix:[5,19],unknown:4,unless:11,unlik:11,unlink:[4,19],unload:[4,9,11,12],unlock:5,unlodctr:5,unpack:14,unpaus:[4,11,12,20],unpkg:6,unset:[4,19],unshift:[4,15],unsign:[4,11,15],unsplash:2,unsupport:6,untest:[4,6,22],until:6,untitl:[2,4,21],unwrap:9,updat:[1,2,4,5,11,14,15],update_end:[4,11,12],update_start:[4,11,12],upgrad:1,upload:[5,16],upon:9,uppercas:[4,15],uppercase_:7,uppercase_a:7,uppercase_b:7,uppercase_c:7,uppercase_d:7,uppercase_f:7,uppercase_g:7,uppercase_h:7,uppercase_i:7,uppercase_j:7,uppercase_k:7,uppercase_l:7,uppercase_m:7,uppercase_n:7,uppercase_o:7,uppercase_p:7,uppercase_q:7,uppercase_r:7,uppercase_t:7,uppercase_u:7,uppercase_v:7,uppercase_w:7,uppercase_x:7,uppercase_z:7,upsih:7,upsilon:7,uptim:[4,19],uri:[4,11,15],url2fil:[2,4,21],url:[1,2,9,11,12,15,16,17,21],urlencod:22,urlpars:22,urlpattern:16,urlsearchparam:[4,15,22],urlset:[4,17],usag:[1,2,4],usb:5,use:[0,1,2,4,5,6,9,10,11,14,15,16,17,20,21,22,23],used:[4,5,6,9,11,16,17,23],useful:[1,2,4,9,10,14,15],user:[0,2,4,5,11,14,16,19],useradd:[4,19],userdel:[4,19],userselect:4,uses:[2,4,5,6,9,10,11,15],using:[1,4,5,6,9,10,11,13,14,15,17,20,23],usual:[6,9,15],utc:[4,15],utf:[4,15,17,22],util:[1,3,5,7,8,9,15,22],uucp:[4,19],uudecod:[4,19],uuencod:[4,19],uuml:7,uustat:[4,19],uux:[4,19],uvicorn:16,val:[4,9,19],valid:[4,5,15],valu:[2,4,7,9,11,12,15,17,20,21,22],value_chang:23,variabl:[4,5,9,14,15],variou:[4,5],vaultcmd:5,vec2:1,vec3:1,vector:[4,13],velvet:7,venv:16,ver:5,veri:[8,14],verifi:5,vermillion:7,versa:5,version:[2,4,5,15,16,17],vertic:[4,9,11],vertical_bar:7,verticalalign:4,verydarkblu:7,verydarkbrown:7,verydarkgreen:7,verydarkpurpl:7,verylightblu:7,verylightbrown:7,verylightgreen:7,verylightpink:7,verylightpurpl:7,verypaleblu:7,verypalegreen:7,via:[2,4,5,11,15,19,22],vibrantblu:7,vibrantgreen:7,vibrantpurpl:7,vice:5,video:[4,14,17,23],videospher:23,view:[1,4,6,11],viewer:1,viewfrustum:[4,23],viewpoint:[4,23],viewport:[4,11],violet:7,violetblu:7,violetpink:7,violetr:7,viridian:7,virtual:[5,11,12],virtualenv:16,visibl:[4,11],visit:16,visitor:[4,15],vista:5,visual:4,visualstudio:14,vividblu:7,vividgreen:7,vividpurpl:7,vkern:4,vol:5,volum:5,volumechang:[4,11,12],volumedata:[4,23],vomit:7,vomitgreen:7,vomityellow:7,vowel:[2,4,21],vsafe:5,vscode:14,vssadmin:5,w32tm:5,w3school:[4,15],wai:[4,5,6,9,14,17],wait:[4,5,11,12,15,19],waitfor:5,waituntil:[4,11,12],want:[1,4,5,10,17,19],warmblu:7,warmbrown:7,warmgrei:7,warmpink:7,warmpurpl:7,warn:[2,4,8,14,15,16,17],washedoutgreen:7,wasn:16,water_latest:2,waterblu:7,watermelon:7,wbadmin:5,wbr:[4,14],web:[4,11,12,15,16,22],webabi:22,webapi:1,webkit:14,webpag:[1,4,6,11,12,14,15],webpage2:14,webserv:16,websit:[16,17],webstorag:[],wecutil:5,week:[4,15],weekli:17,weirdgreen:7,welcom:0,well:[1,5,9,15],were:[5,9,14],werkzeug:1,wevtutil:5,wget:[2,4,19],what:[1,2,4,11,15,16,17,19],whatev:[2,4,21],whattoshow:[4,11],wheat:7,wheel:[4,11,12],wheelev:[4,11,12],when:[2,4,5,6,9,10,11,12,15,16,17,23],whenev:[1,9],where:[0,2,4,5,15,21],wherea:17,whether:[4,5,9,11,12,15],which:[1,4,5,6,8,9,11,14,15,17,20,23],white:[6,7],whitesmok:7,whitespac:[4,9,15],who:[2,4,19,21],whoami:[4,5,19],whole:[4,11,15,16],wholetext:[4,11],whose:[4,9,11],wide:1,widow:4,width:[2,4,6,9,11,14,15],window:[4,5,6,9,11,15],windowsblu:7,wine:7,winer:7,winmgmt:5,winr:5,winrm:5,winsat:5,winsx:5,wintergreen:7,wisteria:7,within:[4,5,9,11,15,16,17],without:[5,6,9],wmi:5,wmic:5,wolrd:15,won:[4,17,20,23],wont:[4,11],word:[2,4,15,21],wordbreak:4,wordspac:4,wordwrap:4,work:[0,1,4,5,6,8,9,11,14,15,19,22],worker:[4,15],world:[1,14,16,22],worldinfo:[4,23],would:[4,6,10,11,21],wrap:[2,4,9,10,14,15],wrapal:9,wrapinn:9,wrapper:[1,4,5,16,19,22],wrappingel:9,write:[1,4,5,11,16,19],writeln:[4,11],written:[4,5,13,16],wrong:6,wsgiref:16,wsmanhttpconfig:5,www:[2,4,10,11,14,15,17,21,22],x3d:1,x3dappearancechildnod:[4,23],x3dappearancenod:[4,23],x3dbackgroundnod:[4,23],x3dbinarycontainergeometrynod:[4,23],x3dbindablenod:[4,23],x3dboundedobject:[4,23],x3dchasernod:[4,23],x3dchildnod:[4,23],x3dcolornod:[4,23],x3dcomposablevolumerenderstylenod:[4,23],x3dcomposedgeometrynod:[4,23],x3dcoordinatenod:[4,23],x3ddampernod:[4,23],x3ddragsensornod:[4,23],x3denvironmentnod:[4,23],x3denvironmenttexturenod:[4,23],x3dfognod:[4,23],x3dfollowernod:[4,23],x3dfontstylenod:[4,23],x3dgeometricpropertynod:[4,23],x3dgeometrynod:[4,23],x3dgroupingnod:[4,23],x3dinfonod:[4,23],x3dinterpolatornod:[4,23],x3dlightnod:[4,23],x3dlodnod:[4,23],x3dmaterialnod:[4,23],x3dmetadataobject:[4,23],x3dnavigationinfonod:[4,23],x3dnbodycollidablenod:[4,23],x3dnode:[4,23],x3dom:2,x3dplanargeometrynod:[4,23],x3dpointingdevicesensornod:[4,23],x3drigidjointnod:[4,23],x3dsensornod:[4,23],x3dshadernod:[4,23],x3dshapenod:[4,23],x3dsoundnod:[4,23],x3dsoundsourcenod:[4,23],x3dspatialgeometrynod:[4,23],x3dtexture3dnod:[4,23],x3dtexturecoordinatenod:[4,23],x3dtexturenod:[4,23],x3dtexturetransformnod:[4,23],x3dtimedependentnod:[4,23],x3dtouchsensornod:[4,23],x3dtransformnod:[4,23],x3dvertexattributenod:[4,23],x3dviewpointnod:[4,23],x3dvolumedatanod:[4,23],x3dvolumerenderstylenod:[4,23],xarg:[4,19],xcopi:5,xlink:[4,11],xml:[4,5,9,11,17,23],xmln:[4,17],xmlstring:9,xmp:[4,14],xome:15,xss:16,xtring:15,xwizard:5,xyz:[4,17],y_offset:6,yacc:[4,19],yacut:7,year:[4,15],yellow:7,yellowbrown:7,yellowgreen:7,yellowish:7,yellowishbrown:7,yellowishgreen:7,yellowishorang:7,yellowishtan:7,yellowochr:7,yelloworang:7,yellowtan:7,yellowybrown:7,yellowygreen:7,yen:7,yet:[1,4,9,11,13],yield:[4,15],you:[0,1,2,4,5,6,9,10,11,12,13,14,15,16,17,19,21,23],your:[0,1,2,4,5,6,7,9,10,11,12,14,15,16,17,23],yournam:16,yourproject:16,yourself:14,yuml:7,zcat:[4,19],zero:[7,9],zeta:7,zindex:4,zip:16},titles:["Contribute","Domonic:","CDN","JSON","\ud83e\udd16 autodocs","cmd","Templates and Components","constants","d3","dQuery","decorators","dom","events","geom","html","javascript","\ud83d\ude80 servers","sitemap","styles","terminal","tween","utils","webapi","x3d"],titleterms:{"char":7,"function":16,"import":6,"static":16,AWS:16,The:1,Using:16,afram:23,aiohttp:16,arbitrari:[5,19],arrai:15,attribut:14,autodoc:4,bottl:16,bug:0,call:10,can:20,cdn:[2,4],cdn_css:2,cdn_img:2,cdn_j:2,check:10,cherrypi:16,cli:1,cloud:16,cmd:5,color:7,command:[5,19],common:6,compon:6,consol:22,constant:7,content:16,contribut:0,creat:[14,17],createel:11,data:14,decor:[2,4,10,14],disclaim:1,dispatch:8,django:16,doc:0,dom:[4,11],domon:[1,2,3,4,5,8,9,11,12,13,14,15,16,17,19,21,22,23],dqueri:9,dynam:16,eas:20,element:[14,18],encod:22,equat:20,error:6,event:[4,11,12],exampl:1,fastapi:16,fetch:[15,22],fix:0,flask:16,format:[8,17],gener:1,geom:[4,13],get_tim:20,googl:16,guid:1,html:[1,4,14],inform:0,instal:1,javascript:[4,15],join:1,json:[3,4],keycod:7,keyword:15,lambda:16,list:14,load:14,magic:14,method:[14,15],more:[0,17],note:6,object:15,page:16,pars:14,pass:20,path:8,polygon:8,project:1,pull:0,pyml:14,pyramid:16,python:[1,16],queri:9,queryselectoral:11,render:14,report:0,request:0,run:[5,16,19],sanic:16,script:14,select:8,serv:16,server:16,setinterv:15,silenc:10,sitemap:[4,17],sitemapindex:17,spa:16,spritecss:6,starlett:16,string:[14,15],style:[4,14,15,18],svg:4,tag:14,templat:[1,6,14],termin:[4,19],test:0,tornado:16,tween:20,type:15,url:[4,22],usag:14,user:1,util:[2,4,17,21],view:16,webapi:[4,22],werkzeug:16,write:0,x3d:[4,23],xmlhttprequest:22,you:20}})
\ No newline at end of file
+Search.setIndex({docnames:["contribute","index","packages/CDN","packages/JSON","packages/autodocs","packages/cmd","packages/components","packages/constants","packages/d3","packages/dQuery","packages/decorators","packages/dom","packages/events","packages/geom","packages/html","packages/javascript","packages/servers","packages/sitemap","packages/style","packages/terminal","packages/tween","packages/utils","packages/webapi","packages/x3d"],envversion:{"sphinx.domains.c":2,"sphinx.domains.changeset":1,"sphinx.domains.citation":1,"sphinx.domains.cpp":3,"sphinx.domains.index":1,"sphinx.domains.javascript":2,"sphinx.domains.math":2,"sphinx.domains.python":2,"sphinx.domains.rst":2,"sphinx.domains.std":2,"sphinx.ext.intersphinx":1,"sphinx.ext.todo":2,"sphinx.ext.viewcode":1,sphinx:56},filenames:["contribute.rst","index.rst","packages/CDN.rst","packages/JSON.rst","packages/autodocs.rst","packages/cmd.rst","packages/components.rst","packages/constants.rst","packages/d3.rst","packages/dQuery.rst","packages/decorators.rst","packages/dom.rst","packages/events.rst","packages/geom.rst","packages/html.rst","packages/javascript.rst","packages/servers.rst","packages/sitemap.rst","packages/style.rst","packages/terminal.rst","packages/tween.rst","packages/utils.rst","packages/webapi.rst","packages/x3d.rst"],objects:{"":{domonic:[4,0,0,"-"]},"domonic.CDN":{CDN_CSS:[4,1,1,""],CDN_IMG:[4,1,1,""],CDN_JS:[4,1,1,""]},"domonic.CDN.CDN_IMG":{PLACEHOLDER:[4,2,1,""]},"domonic.JSON":{JSON:[4,1,1,""],return_json:[4,3,1,""]},"domonic.JSON.JSON":{csv2json:[4,2,1,""],csvify:[4,2,1,""],flatten:[4,2,1,""],tablify:[4,2,1,""]},"domonic.decorators":{called:[4,3,1,""],check:[4,3,1,""],deprecated:[4,3,1,""],el:[4,3,1,""],iife:[4,3,1,""],instead:[4,3,1,""],log:[4,3,1,""],silence:[4,3,1,""]},"domonic.dom":{Attr:[4,1,1,""],CDATASection:[4,1,1,""],CharacterData:[4,1,1,""],ChildNode:[4,1,1,""],Comment:[4,1,1,""],DOMException:[4,4,1,""],DOMPoint:[4,1,1,""],DOMPointReadOnly:[4,1,1,""],DOMQuad:[4,1,1,""],DOMStringMap:[4,1,1,""],DOMTimeStamp:[4,1,1,""],DOMTokenList:[4,1,1,""],Document:[4,1,1,""],DocumentFragment:[4,1,1,""],DocumentType:[4,1,1,""],Element:[4,1,1,""],EventTarget:[4,1,1,""],NamedNodeMap:[4,1,1,""],Node:[4,1,1,""],NodeIterator:[4,1,1,""],NodeList:[4,1,1,""],ParentNode:[4,1,1,""],ProcessingInstruction:[4,1,1,""],RadioNodeList:[4,1,1,""],ShadowRoot:[4,1,1,""],Text:[4,1,1,""],TreeWalker:[4,1,1,""],document:[4,5,1,""]},"domonic.dom.Attr":{getNamedItem:[4,2,1,""],removeNamedItem:[4,2,1,""],setNamedItem:[4,2,1,""]},"domonic.dom.CDATASection":{nodeType:[4,2,1,""]},"domonic.dom.CharacterData":{after:[4,2,1,""],appendData:[4,2,1,""],before:[4,2,1,""],deleteData:[4,2,1,""],insertData:[4,2,1,""],nextElementSibling:[4,2,1,""],previousElementSibling:[4,2,1,""],remove:[4,2,1,""],replaceData:[4,2,1,""],replaceWith:[4,2,1,""],substringData:[4,2,1,""]},"domonic.dom.ChildNode":{after:[4,2,1,""],before:[4,2,1,""],remove:[4,2,1,""],replaceWith:[4,2,1,""]},"domonic.dom.Comment":{nodeType:[4,2,1,""]},"domonic.dom.DOMStringMap":{"delete":[4,2,1,""],get:[4,2,1,""],set:[4,2,1,""]},"domonic.dom.DOMTokenList":{add:[4,2,1,""],contains:[4,2,1,""],item:[4,2,1,""],remove:[4,2,1,""],toString:[4,2,1,""],toggle:[4,2,1,""]},"domonic.dom.Document":{anchors:[4,2,1,""],applets:[4,2,1,""],body:[4,2,1,""],characterSet:[4,2,1,""],charset:[4,2,1,""],createAttribute:[4,2,1,""],createCDATASection:[4,2,1,""],createComment:[4,2,1,""],createDocumentFragment:[4,2,1,""],createElement:[4,2,1,""],createElementNS:[4,2,1,""],createEvent:[4,2,1,""],createNodeIterator:[4,2,1,""],createProcessingInstruction:[4,2,1,""],createRange:[4,2,1,""],createTextNode:[4,2,1,""],createTreeWalker:[4,2,1,""],doctype:[4,2,1,""],domain:[4,2,1,""],embeds:[4,2,1,""],forms:[4,2,1,""],fullscreenElement:[4,2,1,""],fullscreenEnabled:[4,2,1,""],getElementById:[4,2,1,""],getElementsByName:[4,2,1,""],head:[4,2,1,""],images:[4,2,1,""],implementation:[4,2,1,""],importNode:[4,2,1,""],links:[4,2,1,""],nodeType:[4,2,1,""],normalizeDocument:[4,2,1,""],renameNode:[4,2,1,""],scripts:[4,2,1,""],strictErrorChecking:[4,2,1,""],title:[4,2,1,""],write:[4,2,1,""],writeln:[4,2,1,""]},"domonic.dom.DocumentFragment":{attributes:[4,2,1,""],getElementById:[4,2,1,""],getElementsByTagName:[4,2,1,""],nodeType:[4,2,1,""],querySelector:[4,2,1,""],querySelectorAll:[4,2,1,""],replaceChildren:[4,2,1,""]},"domonic.dom.DocumentType":{internalSubset:[4,2,1,""],nodeType:[4,2,1,""],notations:[4,2,1,""]},"domonic.dom.Element":{append:[4,2,1,""],attributes:[4,2,1,""],blur:[4,2,1,""],classList:[4,2,1,""],className:[4,2,1,""],click:[4,2,1,""],clientHeight:[4,2,1,""],clientLeft:[4,2,1,""],clientTop:[4,2,1,""],clientWidth:[4,2,1,""],contentEditable:[4,2,1,""],dataset:[4,2,1,""],dir:[4,2,1,""],exitFullscreen:[4,2,1,""],firstElementChild:[4,2,1,""],focus:[4,2,1,""],getAttribute:[4,2,1,""],getAttributeNS:[4,2,1,""],getAttributeNode:[4,2,1,""],getAttributeNodeNS:[4,2,1,""],getBoundingClientRect:[4,2,1,""],getElementsByClassName:[4,2,1,""],getElementsBySelector:[4,2,1,""],getElementsByTagName:[4,2,1,""],hasAttribute:[4,2,1,""],hasAttributes:[4,2,1,""],id:[4,2,1,""],innerHTML:[4,2,1,""],insertAdjacentElement:[4,2,1,""],insertAdjacentHTML:[4,2,1,""],insertAdjacentText:[4,2,1,""],isContentEditable:[4,2,1,""],lang:[4,2,1,""],lastElementChild:[4,2,1,""],matches:[4,2,1,""],namespaceURI:[4,2,1,""],nextElementSibling:[4,2,1,""],nextSibling:[4,2,1,""],normalize:[4,2,1,""],offsetHeight:[4,2,1,""],offsetLeft:[4,2,1,""],offsetParent:[4,2,1,""],offsetTop:[4,2,1,""],offsetWidth:[4,2,1,""],ownerDocument:[4,2,1,""],parentElement:[4,2,1,""],previousElementSibling:[4,2,1,""],previousSibling:[4,2,1,""],querySelector:[4,2,1,""],querySelectorAll:[4,2,1,""],remove:[4,2,1,""],removeAttribute:[4,2,1,""],removeAttributeNS:[4,2,1,""],removeAttributeNode:[4,2,1,""],requestFullscreen:[4,2,1,""],scrollHeight:[4,2,1,""],scrollIntoView:[4,2,1,""],scrollLeft:[4,2,1,""],scrollTop:[4,2,1,""],scrollWidth:[4,2,1,""],setAttribute:[4,2,1,""],setAttributeNS:[4,2,1,""],setAttributeNode:[4,2,1,""],setAttributeNodeNS:[4,2,1,""],style:[4,2,1,""],title:[4,2,1,""],toString:[4,2,1,""]},"domonic.dom.NamedNodeMap":{getNameItemNS:[4,2,1,""],getNamedItem:[4,2,1,""],item:[4,2,1,""],removeNamedItem:[4,2,1,""],removeNamedItemNS:[4,2,1,""],setNamedItem:[4,2,1,""],setNamedItemNS:[4,2,1,""]},"domonic.dom.Node":{appendChild:[4,2,1,""],childElementCount:[4,2,1,""],childNodes:[4,2,1,""],children:[4,2,1,""],cloneNode:[4,2,1,""],compareDocumentPosition:[4,2,1,""],contains:[4,2,1,""],firstChild:[4,2,1,""],hasChildNodes:[4,2,1,""],insertBefore:[4,2,1,""],isDefaultNamespace:[4,2,1,""],isEqualNode:[4,2,1,""],isSameNode:[4,2,1,""],lastChild:[4,2,1,""],lookupNamespaceURI:[4,2,1,""],lookupPrefix:[4,2,1,""],nextSibling:[4,2,1,""],nodeName:[4,2,1,""],nodeType:[4,2,1,""],nodeValue:[4,2,1,""],normalize:[4,2,1,""],previousSibling:[4,2,1,""],removeChild:[4,2,1,""],replaceChild:[4,2,1,""],rootNode:[4,2,1,""],textContent:[4,2,1,""]},"domonic.dom.NodeIterator":{nextNode:[4,2,1,""],previousNode:[4,2,1,""],referenceNode:[4,2,1,""]},"domonic.dom.NodeList":{entries:[4,2,1,""],forEach:[4,2,1,""],item:[4,2,1,""],keys:[4,2,1,""],values:[4,2,1,""]},"domonic.dom.ProcessingInstruction":{nodeType:[4,2,1,""]},"domonic.dom.RadioNodeList":{value:[4,2,1,""]},"domonic.dom.ShadowRoot":{caretPositionFromPoint:[4,2,1,""],elementFromPoint:[4,2,1,""],elementsFromPoint:[4,2,1,""],getSelection:[4,2,1,""]},"domonic.dom.Text":{assignedSlot:[4,2,1,""],firstChild:[4,2,1,""],nodeType:[4,2,1,""],splitText:[4,2,1,""],wholeText:[4,2,1,""]},"domonic.dom.TreeWalker":{firstChild:[4,2,1,""],lastChild:[4,2,1,""],nextNode:[4,2,1,""],nextSibling:[4,2,1,""],parentNode:[4,2,1,""],previousNode:[4,2,1,""],previousSibling:[4,2,1,""],root:[4,2,1,""],tree:[4,5,1,""],whatToShow:[4,2,1,""]},"domonic.events":{AnimationEvent:[4,1,1,""],BeforeUnloadEvent:[4,1,1,""],ClipboardEvent:[4,1,1,""],CompositionEvent:[4,1,1,""],CustomEvent:[4,1,1,""],DragEvent:[4,1,1,""],ErrorEvent:[4,1,1,""],Event:[4,1,1,""],EventDispatcher:[4,1,1,""],ExtendableEvent:[4,1,1,""],FetchEvent:[4,1,1,""],FocusEvent:[4,1,1,""],GamePadEvent:[4,1,1,""],HashChangeEvent:[4,1,1,""],InputEvent:[4,1,1,""],KeyboardEvent:[4,1,1,""],MouseEvent:[4,1,1,""],PageTransitionEvent:[4,1,1,""],PointerEvent:[4,1,1,""],PopStateEvent:[4,1,1,""],ProgressEvent:[4,1,1,""],PromiseRejectionEvent:[4,1,1,""],SVGEvent:[4,1,1,""],StorageEvent:[4,1,1,""],SubmitEvent:[4,1,1,""],SyncEvent:[4,1,1,""],TimerEvent:[4,1,1,""],TouchEvent:[4,1,1,""],TransitionEvent:[4,1,1,""],TweenEvent:[4,1,1,""],UIEvent:[4,1,1,""],WheelEvent:[4,1,1,""]},"domonic.events.AnimationEvent":{ANIMATIONEND:[4,5,1,""],ANIMATIONITERATION:[4,5,1,""],ANIMATIONSTART:[4,5,1,""],animationName:[4,5,1,""],elapsedTime:[4,5,1,""],pseudoElement:[4,5,1,""]},"domonic.events.BeforeUnloadEvent":{BEFOREUNLOAD:[4,5,1,""]},"domonic.events.ClipboardEvent":{COPY:[4,5,1,""],CUT:[4,5,1,""],PASTE:[4,5,1,""],clipboardData:[4,5,1,""]},"domonic.events.CompositionEvent":{data:[4,5,1,""]},"domonic.events.DragEvent":{DRAG:[4,5,1,""],DROP:[4,5,1,""],END:[4,5,1,""],ENTER:[4,5,1,""],EXIT:[4,5,1,""],LEAVE:[4,5,1,""],OVER:[4,5,1,""],START:[4,5,1,""],dataTransfer:[4,5,1,""]},"domonic.events.ErrorEvent":{ERROR:[4,5,1,""]},"domonic.events.Event":{ABORT:[4,5,1,""],AFTERPRINT:[4,5,1,""],BEFOREPRINT:[4,5,1,""],BEFOREUNLOAD:[4,5,1,""],CANPLAY:[4,5,1,""],CANPLAYTHROUGH:[4,5,1,""],CHANGE:[4,5,1,""],DURATIONCHANGE:[4,5,1,""],EMPTIED:[4,5,1,""],ENDED:[4,5,1,""],ERROR:[4,5,1,""],FULLSCREENCHANGE:[4,5,1,""],FULLSCREENERROR:[4,5,1,""],INPUT:[4,5,1,""],INVALID:[4,5,1,""],LOAD:[4,5,1,""],LOADEDDATA:[4,5,1,""],LOADEDMETADATA:[4,5,1,""],MESSAGE:[4,5,1,""],OFFLINE:[4,5,1,""],ONLINE:[4,5,1,""],OPEN:[4,5,1,""],PAUSE:[4,5,1,""],PLAY:[4,5,1,""],PLAYING:[4,5,1,""],PROGRESS:[4,5,1,""],RATECHANGE:[4,5,1,""],RESET:[4,5,1,""],RESIZE:[4,5,1,""],SCROLL:[4,5,1,""],SEARCH:[4,5,1,""],SEEKED:[4,5,1,""],SEEKING:[4,5,1,""],SELECT:[4,5,1,""],SHOW:[4,5,1,""],STALLED:[4,5,1,""],SUBMIT:[4,5,1,""],SUSPEND:[4,5,1,""],TOGGLE:[4,5,1,""],UNLOAD:[4,5,1,""],VOLUMECHANGE:[4,5,1,""],WAITING:[4,5,1,""],stopPropagation:[4,2,1,""]},"domonic.events.ExtendableEvent":{extendable:[4,5,1,""],timeStamp:[4,5,1,""]},"domonic.events.FetchEvent":{clientId:[4,5,1,""],isReload:[4,2,1,""],request:[4,5,1,""],respondWith:[4,2,1,""],waitUntil:[4,2,1,""]},"domonic.events.FocusEvent":{BLUR:[4,5,1,""],FOCUS:[4,5,1,""],FOCUSIN:[4,5,1,""],FOCUSOUT:[4,5,1,""]},"domonic.events.GamePadEvent":{START:[4,5,1,""],STOP:[4,5,1,""]},"domonic.events.HashChangeEvent":{CHANGE:[4,5,1,""]},"domonic.events.InputEvent":{data:[4,5,1,""],getTargetRanges:[4,2,1,""]},"domonic.events.KeyboardEvent":{DOM_KEY_LOCATION_JOYSTICK:[4,5,1,""],DOM_KEY_LOCATION_LEFT:[4,5,1,""],DOM_KEY_LOCATION_MOBILE:[4,5,1,""],DOM_KEY_LOCATION_NUMPAD:[4,5,1,""],DOM_KEY_LOCATION_RIGHT:[4,5,1,""],DOM_KEY_LOCATION_STANDARD:[4,5,1,""],KEYDOWN:[4,5,1,""],KEYPRESS:[4,5,1,""],KEYUP:[4,5,1,""]},"domonic.events.MouseEvent":{CLICK:[4,5,1,""],CONTEXTMENU:[4,5,1,""],DBLCLICK:[4,5,1,""],MOUSEDOWN:[4,5,1,""],MOUSEENTER:[4,5,1,""],MOUSELEAVE:[4,5,1,""],MOUSEMOVE:[4,5,1,""],MOUSEOUT:[4,5,1,""],MOUSEOVER:[4,5,1,""],MOUSEUP:[4,5,1,""]},"domonic.events.PageTransitionEvent":{PAGEHIDE:[4,5,1,""],PAGESHOW:[4,5,1,""],persisted:[4,5,1,""]},"domonic.events.PointerEvent":{POINTER:[4,5,1,""]},"domonic.events.PopStateEvent":{POPSTATE:[4,5,1,""],state:[4,5,1,""]},"domonic.events.ProgressEvent":{LOADSTART:[4,5,1,""]},"domonic.events.PromiseRejectionEvent":{HANDLED:[4,5,1,""],UNHANDLED:[4,5,1,""],isRejected:[4,5,1,""],promise:[4,5,1,""],reason:[4,5,1,""]},"domonic.events.StorageEvent":{STORAGE:[4,5,1,""],key:[4,5,1,""],newValue:[4,5,1,""],oldValue:[4,5,1,""],storageArea:[4,5,1,""],url:[4,5,1,""]},"domonic.events.SubmitEvent":{SUBMIT:[4,5,1,""]},"domonic.events.SyncEvent":{lastChance:[4,5,1,""],tag:[4,5,1,""]},"domonic.events.TimerEvent":{TIMER:[4,5,1,""]},"domonic.events.TouchEvent":{TOUCHCANCEL:[4,5,1,""],TOUCHEND:[4,5,1,""],TOUCHMOVE:[4,5,1,""],TOUCHSTART:[4,5,1,""]},"domonic.events.TransitionEvent":{TRANSITIONEND:[4,5,1,""],elapsedTime:[4,5,1,""],propertyName:[4,5,1,""],pseudoElement:[4,5,1,""]},"domonic.events.TweenEvent":{COMPLETE:[4,5,1,""],PAUSE:[4,5,1,""],RESET:[4,5,1,""],START:[4,5,1,""],STOP:[4,5,1,""],TIMER:[4,5,1,""],UNPAUSE:[4,5,1,""],UPDATE_END:[4,5,1,""],UPDATE_START:[4,5,1,""]},"domonic.events.WheelEvent":{WHEEL:[4,5,1,""]},"domonic.geom":{matrix:[4,1,1,""]},"domonic.geom.matrix":{rotate:[4,2,1,""],scale:[4,2,1,""],translate:[4,2,1,""]},"domonic.html":{"var":[4,1,1,""],TemplateError:[4,4,1,""],a:[4,1,1,""],abbr:[4,1,1,""],address:[4,1,1,""],applet:[4,1,1,""],area:[4,1,1,""],article:[4,1,1,""],aside:[4,1,1,""],audio:[4,1,1,""],b:[4,1,1,""],base:[4,1,1,""],basefont:[4,1,1,""],bdi:[4,1,1,""],bdo:[4,1,1,""],blockquote:[4,1,1,""],body:[4,1,1,""],br:[4,1,1,""],button:[4,1,1,""],canvas:[4,1,1,""],caption:[4,1,1,""],center:[4,1,1,""],cite:[4,1,1,""],closed_tag:[4,1,1,""],code:[4,1,1,""],col:[4,1,1,""],colgroup:[4,1,1,""],command:[4,1,1,""],create_element:[4,3,1,""],datalist:[4,1,1,""],dd:[4,1,1,""],details:[4,1,1,""],dfn:[4,1,1,""],div:[4,1,1,""],dl:[4,1,1,""],dt:[4,1,1,""],em:[4,1,1,""],embed:[4,1,1,""],fieldset:[4,1,1,""],figcaption:[4,1,1,""],figure:[4,1,1,""],font:[4,1,1,""],footer:[4,1,1,""],form:[4,1,1,""],h1:[4,1,1,""],h2:[4,1,1,""],h3:[4,1,1,""],h4:[4,1,1,""],h5:[4,1,1,""],h6:[4,1,1,""],head:[4,1,1,""],header:[4,1,1,""],hgroup:[4,1,1,""],hr:[4,1,1,""],html:[4,1,1,""],i:[4,1,1,""],iframe:[4,1,1,""],img:[4,1,1,""],input:[4,1,1,""],ins:[4,1,1,""],isindex:[4,1,1,""],kbd:[4,1,1,""],keygen:[4,1,1,""],label:[4,1,1,""],legend:[4,1,1,""],li:[4,1,1,""],link:[4,1,1,""],listing:[4,1,1,""],main:[4,5,1,""],mark:[4,1,1,""],menu:[4,1,1,""],meta:[4,1,1,""],meter:[4,1,1,""],nav:[4,1,1,""],noscript:[4,1,1,""],ol:[4,1,1,""],optgroup:[4,1,1,""],option:[4,1,1,""],output:[4,1,1,""],p:[4,1,1,""],param:[4,1,1,""],picture:[4,1,1,""],plaintext:[4,1,1,""],portal:[4,1,1,""],pre:[4,1,1,""],progress:[4,1,1,""],q:[4,1,1,""],render:[4,3,1,""],rp:[4,1,1,""],rt:[4,1,1,""],ruby:[4,1,1,""],s:[4,1,1,""],samp:[4,1,1,""],script:[4,1,1,""],section:[4,1,1,""],select:[4,1,1,""],small:[4,1,1,""],source:[4,1,1,""],span:[4,1,1,""],strike:[4,1,1,""],strong:[4,1,1,""],style:[4,1,1,""],sub:[4,1,1,""],submit:[4,1,1,""],summary:[4,1,1,""],sup:[4,1,1,""],table:[4,1,1,""],tag:[4,1,1,""],tbody:[4,1,1,""],td:[4,1,1,""],template:[4,1,1,""],textarea:[4,1,1,""],tfoot:[4,1,1,""],th:[4,1,1,""],thead:[4,1,1,""],title:[4,1,1,""],tr:[4,1,1,""],track:[4,1,1,""],u:[4,1,1,""],ul:[4,1,1,""],video:[4,1,1,""],wbr:[4,1,1,""],xmp:[4,1,1,""]},"domonic.javascript":{"function":[4,3,1,""],Array:[4,1,1,""],Boolean:[4,1,1,""],Date:[4,1,1,""],Error:[4,4,1,""],Function:[4,1,1,""],Global:[4,1,1,""],Job:[4,1,1,""],Map:[4,1,1,""],Math:[4,1,1,""],Number:[4,1,1,""],ProgramKilled:[4,4,1,""],Reflect:[4,1,1,""],Screen:[4,1,1,""],String:[4,1,1,""],URL:[4,1,1,""],URLSearchParams:[4,1,1,""],Window:[4,1,1,""],Worker:[4,1,1,""],as_signed:[4,3,1,""],clearTimeout:[4,3,1,""],decodeURI:[4,3,1,""],decodeURIComponent:[4,3,1,""],encodeURI:[4,3,1,""],encodeURIComponent:[4,3,1,""],parseFloat:[4,3,1,""],parseInt:[4,3,1,""],setTimeout:[4,3,1,""],window:[4,5,1,""]},"domonic.javascript.Array":{at:[4,2,1,""],concat:[4,2,1,""],copyWithin:[4,2,1,""],entries:[4,2,1,""],every:[4,2,1,""],fill:[4,2,1,""],filter:[4,2,1,""],find:[4,2,1,""],findIndex:[4,2,1,""],flat:[4,2,1,""],flatMap:[4,2,1,""],forEach:[4,2,1,""],from_:[4,2,1,""],includes:[4,2,1,""],indexOf:[4,2,1,""],isArray:[4,2,1,""],join:[4,2,1,""],keys:[4,2,1,""],lastIndexOf:[4,2,1,""],length:[4,2,1,""],map:[4,2,1,""],of:[4,2,1,""],pop:[4,2,1,""],prototype:[4,5,1,""],push:[4,2,1,""],reduce:[4,2,1,""],reduceRight:[4,2,1,""],reverse:[4,2,1,""],shift:[4,2,1,""],slice:[4,2,1,""],some:[4,2,1,""],sort:[4,2,1,""],splice:[4,2,1,""],toSource:[4,2,1,""],toString:[4,2,1,""],unshift:[4,2,1,""]},"domonic.javascript.Date":{UTC:[4,2,1,""],getDate:[4,2,1,""],getDay:[4,2,1,""],getFullYear:[4,2,1,""],getHours:[4,2,1,""],getMilliseconds:[4,2,1,""],getMinutes:[4,2,1,""],getMonth:[4,2,1,""],getSeconds:[4,2,1,""],getTime:[4,2,1,""],getTimezoneOffset:[4,2,1,""],getUTCDate:[4,2,1,""],getUTCDay:[4,2,1,""],getUTCFullYear:[4,2,1,""],getUTCHours:[4,2,1,""],getUTCMilliseconds:[4,2,1,""],getUTCMinutes:[4,2,1,""],getUTCMonth:[4,2,1,""],getUTCSeconds:[4,2,1,""],getYear:[4,2,1,""],now:[4,2,1,""],parse:[4,2,1,""],setDate:[4,2,1,""],setFullYear:[4,2,1,""],setHours:[4,2,1,""],setMilliseconds:[4,2,1,""],setMinutes:[4,2,1,""],setMonth:[4,2,1,""],setSeconds:[4,2,1,""],setTime:[4,2,1,""],setUTCDate:[4,2,1,""],setUTCFullYear:[4,2,1,""],setUTCHours:[4,2,1,""],setUTCMilliseconds:[4,2,1,""],setUTCMinutes:[4,2,1,""],setUTCMonth:[4,2,1,""],setUTCSeconds:[4,2,1,""],setYear:[4,2,1,""],toDateString:[4,2,1,""],toGMTString:[4,2,1,""],toISOString:[4,2,1,""],toJSON:[4,2,1,""],toLocaleDateString:[4,2,1,""],toLocaleString:[4,2,1,""],toLocaleTimeString:[4,2,1,""],toString:[4,2,1,""],toTimeString:[4,2,1,""],toUTCString:[4,2,1,""]},"domonic.javascript.Function":{apply:[4,2,1,""],bind:[4,2,1,""],call:[4,2,1,""],toString:[4,2,1,""]},"domonic.javascript.Global":{NaN:[4,2,1,""],Number:[4,2,1,""],String:[4,2,1,""],clearTimeout:[4,2,1,""],decodeURI:[4,2,1,""],decodeURIComponent:[4,2,1,""],encodeURI:[4,2,1,""],encodeURIComponent:[4,2,1,""],eval:[4,2,1,""],isFinite:[4,2,1,""],isNaN:[4,2,1,""],parseFloat:[4,2,1,""],parseInt:[4,2,1,""],require:[4,2,1,""],setTimeout:[4,2,1,""],undefined:[4,2,1,""]},"domonic.javascript.Job":{run:[4,2,1,""]},"domonic.javascript.Map":{"delete":[4,2,1,""],clear:[4,2,1,""],entries:[4,2,1,""],get:[4,2,1,""],has:[4,2,1,""],keys:[4,2,1,""],set:[4,2,1,""],values:[4,2,1,""]},"domonic.javascript.Math":{hypot:[4,2,1,""],log2:[4,2,1,""],loglp:[4,2,1,""]},"domonic.javascript.Number":{NEGATIVE_INFINITY:[4,5,1,""],POSITIVE_INFINITY:[4,5,1,""],isInteger:[4,2,1,""],isSafeInteger:[4,2,1,""],toExponential:[4,2,1,""],toFixed:[4,2,1,""],toPrecision:[4,2,1,""],toString:[4,2,1,""]},"domonic.javascript.Reflect":{apply:[4,2,1,""],construct:[4,2,1,""],defineProperty:[4,2,1,""],deleteProperty:[4,2,1,""],get:[4,2,1,""],getOwnPropertyDescriptor:[4,2,1,""],getPrototypeOf:[4,2,1,""],has:[4,2,1,""],ownKeys:[4,2,1,""],preventExtensions:[4,2,1,""],set:[4,2,1,""],setPrototypeOf:[4,2,1,""]},"domonic.javascript.Screen":{availHeight:[4,2,1,""],availWidth:[4,2,1,""],colorDepth:[4,2,1,""],height:[4,2,1,""],pixelDepth:[4,2,1,""],width:[4,2,1,""]},"domonic.javascript.String":{big:[4,2,1,""],blink:[4,2,1,""],bold:[4,2,1,""],charAt:[4,2,1,""],charCodeAt:[4,2,1,""],codePointAt:[4,2,1,""],compile:[4,2,1,""],concat:[4,2,1,""],div:[4,2,1,""],endsWith:[4,2,1,""],fixed:[4,2,1,""],fontcolor:[4,2,1,""],fontsize:[4,2,1,""],fromCharCode:[4,2,1,""],fromCodePoint:[4,2,1,""],includes:[4,2,1,""],indexOf:[4,2,1,""],italics:[4,2,1,""],lastIndexOf:[4,2,1,""],link:[4,2,1,""],localeCompare:[4,2,1,""],match:[4,2,1,""],matchAll:[4,2,1,""],padEnd:[4,2,1,""],padStart:[4,2,1,""],raw:[4,2,1,""],repeat:[4,2,1,""],replace:[4,2,1,""],replaceAll:[4,2,1,""],search:[4,2,1,""],slice:[4,2,1,""],small:[4,2,1,""],split:[4,2,1,""],startsWith:[4,2,1,""],strike:[4,2,1,""],sub:[4,2,1,""],substr:[4,2,1,""],substring:[4,2,1,""],sup:[4,2,1,""],toCharCode:[4,2,1,""],toCodePoint:[4,2,1,""],toLocaleLowerCase:[4,2,1,""],toLocaleUpperCase:[4,2,1,""],toLowerCase:[4,2,1,""],toUpperCase:[4,2,1,""],trim:[4,2,1,""],trimEnd:[4,2,1,""],trimStart:[4,2,1,""],webpage:[4,2,1,""]},"domonic.javascript.URL":{hash:[4,2,1,""]},"domonic.javascript.URLSearchParams":{"delete":[4,2,1,""],append:[4,2,1,""],entries:[4,2,1,""],forEach:[4,2,1,""],get:[4,2,1,""],getAll:[4,2,1,""],has:[4,2,1,""],keys:[4,2,1,""],set:[4,2,1,""],sort:[4,2,1,""],toString:[4,2,1,""],values:[4,2,1,""]},"domonic.javascript.Window":{alert:[4,2,1,""],atob:[4,2,1,""],btoa:[4,2,1,""],clearTimeout:[4,2,1,""],prompt:[4,2,1,""],requestAnimationFrame:[4,2,1,""],setTimeout:[4,2,1,""]},"domonic.javascript.Worker":{postMessage:[4,2,1,""],terminate:[4,2,1,""]},"domonic.lerpy":{easing:[4,0,0,"-"],tween:[4,0,0,"-"]},"domonic.lerpy.tween":{Tween:[4,1,1,""]},"domonic.lerpy.tween.Tween":{pause:[4,2,1,""],unpause:[4,2,1,""]},"domonic.style":{CSSRule:[4,1,1,""],CSSRuleList:[4,1,1,""],CSSStyleDeclaration:[4,1,1,""],CSSStyleSheet:[4,1,1,""],Style:[4,1,1,""],StyleSheet:[4,1,1,""],StyleSheetList:[4,1,1,""]},"domonic.style.CSSRule":{cssText:[4,2,1,""],parentRule:[4,2,1,""],parentStyleSheet:[4,2,1,""],type:[4,2,1,""]},"domonic.style.CSSRuleList":{item:[4,2,1,""],length:[4,2,1,""]},"domonic.style.CSSStyleDeclaration":{cssText:[4,2,1,""],getPropertyCSSValue:[4,2,1,""],getPropertyPriority:[4,2,1,""],getPropertyValue:[4,2,1,""],item:[4,2,1,""],length:[4,2,1,""],parentRule:[4,2,1,""],removeProperty:[4,2,1,""]},"domonic.style.CSSStyleSheet":{addRule:[4,2,1,""],cssRules:[4,2,1,""],deleteRule:[4,2,1,""],insertRule:[4,2,1,""],ownerRule:[4,2,1,""],removeRule:[4,2,1,""],replace:[4,2,1,""],replaceSync:[4,2,1,""],rules:[4,2,1,""]},"domonic.style.Style":{alignContent:[4,2,1,""],alignItems:[4,2,1,""],alignSelf:[4,2,1,""],animation:[4,2,1,""],animationDelay:[4,2,1,""],animationDirection:[4,2,1,""],animationDuration:[4,2,1,""],animationFillMode:[4,2,1,""],animationIterationCount:[4,2,1,""],animationName:[4,2,1,""],animationPlayState:[4,2,1,""],animationTimingFunction:[4,2,1,""],backfaceVisibility:[4,2,1,""],background:[4,2,1,""],backgroundAttachment:[4,2,1,""],backgroundClip:[4,2,1,""],backgroundColor:[4,2,1,""],backgroundImage:[4,2,1,""],backgroundOrigin:[4,2,1,""],backgroundPosition:[4,2,1,""],backgroundRepeat:[4,2,1,""],backgroundSize:[4,2,1,""],border:[4,2,1,""],borderBottom:[4,2,1,""],borderBottomColor:[4,2,1,""],borderBottomLeftRadius:[4,2,1,""],borderBottomRightRadius:[4,2,1,""],borderBottomStyle:[4,2,1,""],borderBottomWidth:[4,2,1,""],borderCollapse:[4,2,1,""],borderColor:[4,2,1,""],borderImage:[4,2,1,""],borderImageOutset:[4,2,1,""],borderImageRepeat:[4,2,1,""],borderImageSlice:[4,2,1,""],borderImageSource:[4,2,1,""],borderImageWidth:[4,2,1,""],borderLeft:[4,2,1,""],borderLeftColor:[4,2,1,""],borderLeftStyle:[4,2,1,""],borderLeftWidth:[4,2,1,""],borderRadius:[4,2,1,""],borderRight:[4,2,1,""],borderRightColor:[4,2,1,""],borderRightStyle:[4,2,1,""],borderRightWidth:[4,2,1,""],borderSpacing:[4,2,1,""],borderStyle:[4,2,1,""],borderTop:[4,2,1,""],borderTopColor:[4,2,1,""],borderTopLeftRadius:[4,2,1,""],borderTopRightRadius:[4,2,1,""],borderTopStyle:[4,2,1,""],borderTopWidth:[4,2,1,""],borderWidth:[4,2,1,""],bottom:[4,2,1,""],boxDecorationBreak:[4,2,1,""],boxShadow:[4,2,1,""],boxSizing:[4,2,1,""],captionSide:[4,2,1,""],clear:[4,2,1,""],clip:[4,2,1,""],color:[4,2,1,""],columnCount:[4,2,1,""],columnFill:[4,2,1,""],columnGap:[4,2,1,""],columnRule:[4,2,1,""],columnRuleColor:[4,2,1,""],columnRuleStyle:[4,2,1,""],columnRuleWidth:[4,2,1,""],columnSpan:[4,2,1,""],columnWidth:[4,2,1,""],columns:[4,2,1,""],content:[4,2,1,""],counterIncrement:[4,2,1,""],counterReset:[4,2,1,""],cssFloat:[4,2,1,""],cursor:[4,2,1,""],direction:[4,2,1,""],display:[4,2,1,""],emptyCells:[4,2,1,""],filter:[4,2,1,""],flex:[4,2,1,""],flexBasis:[4,2,1,""],flexDirection:[4,2,1,""],flexFlow:[4,2,1,""],flexGrow:[4,2,1,""],flexShrink:[4,2,1,""],flexWrap:[4,2,1,""],font:[4,2,1,""],fontFamily:[4,2,1,""],fontSize:[4,2,1,""],fontSizeAdjust:[4,2,1,""],fontStretch:[4,2,1,""],fontStyle:[4,2,1,""],fontVariant:[4,2,1,""],fontWeight:[4,2,1,""],hangingPunctuation:[4,2,1,""],height:[4,2,1,""],hyphens:[4,2,1,""],icon:[4,2,1,""],imageOrientation:[4,2,1,""],isolation:[4,2,1,""],justifyContent:[4,2,1,""],left:[4,2,1,""],letterSpacing:[4,2,1,""],lineHeight:[4,2,1,""],listStyle:[4,2,1,""],listStyleImage:[4,2,1,""],listStylePosition:[4,2,1,""],listStyleType:[4,2,1,""],margin:[4,2,1,""],marginBottom:[4,2,1,""],marginLeft:[4,2,1,""],marginRight:[4,2,1,""],marginTop:[4,2,1,""],maxHeight:[4,2,1,""],maxWidth:[4,2,1,""],minHeight:[4,2,1,""],minWidth:[4,2,1,""],navDown:[4,2,1,""],navIndex:[4,2,1,""],navLeft:[4,2,1,""],navRight:[4,2,1,""],navUp:[4,2,1,""],objectFit:[4,2,1,""],objectPosition:[4,2,1,""],opacity:[4,2,1,""],order:[4,2,1,""],orphans:[4,2,1,""],outline:[4,2,1,""],outlineColor:[4,2,1,""],outlineOffset:[4,2,1,""],outlineStyle:[4,2,1,""],outlineWidth:[4,2,1,""],overflow:[4,2,1,""],overflowX:[4,2,1,""],overflowY:[4,2,1,""],padding:[4,2,1,""],paddingBottom:[4,2,1,""],paddingLeft:[4,2,1,""],paddingRight:[4,2,1,""],paddingTop:[4,2,1,""],pageBreakAfter:[4,2,1,""],pageBreakBefore:[4,2,1,""],pageBreakInside:[4,2,1,""],perspective:[4,2,1,""],perspectiveOrigin:[4,2,1,""],position:[4,2,1,""],quotes:[4,2,1,""],resize:[4,2,1,""],right:[4,2,1,""],tabSize:[4,2,1,""],tableLayout:[4,2,1,""],textAlign:[4,2,1,""],textAlignLast:[4,2,1,""],textDecoration:[4,2,1,""],textDecorationColor:[4,2,1,""],textDecorationLine:[4,2,1,""],textDecorationStyle:[4,2,1,""],textIndent:[4,2,1,""],textJustify:[4,2,1,""],textOverflow:[4,2,1,""],textShadow:[4,2,1,""],textTransform:[4,2,1,""],top:[4,2,1,""],transform:[4,2,1,""],transformOrigin:[4,2,1,""],transformStyle:[4,2,1,""],transition:[4,2,1,""],transitionDelay:[4,2,1,""],transitionDuration:[4,2,1,""],transitionProperty:[4,2,1,""],transitionTimingFunction:[4,2,1,""],unicodeBidi:[4,2,1,""],userSelect:[4,2,1,""],verticalAlign:[4,2,1,""],visibility:[4,2,1,""],whiteSpace:[4,2,1,""],widows:[4,2,1,""],width:[4,2,1,""],wordBreak:[4,2,1,""],wordSpacing:[4,2,1,""],wordWrap:[4,2,1,""],zIndex:[4,2,1,""]},"domonic.style.StyleSheet":{href:[4,2,1,""],media:[4,2,1,""],ownerNode:[4,2,1,""],parentStyleSheet:[4,2,1,""],title:[4,2,1,""],type:[4,2,1,""]},"domonic.style.StyleSheetList":{item:[4,2,1,""],length:[4,2,1,""]},"domonic.svg":{"switch":[4,1,1,""],altGlyph:[4,1,1,""],altGlyphDef:[4,1,1,""],altGlyphItem:[4,1,1,""],animate:[4,1,1,""],animateColor:[4,1,1,""],animateMotion:[4,1,1,""],animateTransform:[4,1,1,""],circle:[4,1,1,""],clipPath:[4,1,1,""],cursor:[4,1,1,""],defs:[4,1,1,""],desc:[4,1,1,""],discard:[4,1,1,""],ellipse:[4,1,1,""],feBlend:[4,1,1,""],feColorMatrix:[4,1,1,""],feComponentTransfer:[4,1,1,""],feComposite:[4,1,1,""],feConvolveMatrix:[4,1,1,""],feDiffuseLighting:[4,1,1,""],feDisplacementMap:[4,1,1,""],feDistantLight:[4,1,1,""],feDropShadow:[4,1,1,""],feFlood:[4,1,1,""],feFuncA:[4,1,1,""],feFuncB:[4,1,1,""],feFuncG:[4,1,1,""],feFuncR:[4,1,1,""],feGaussianBlur:[4,1,1,""],feImage:[4,1,1,""],feMerge:[4,1,1,""],feMergeNode:[4,1,1,""],feMorphology:[4,1,1,""],feOffset:[4,1,1,""],fePointLight:[4,1,1,""],feSpecularLighting:[4,1,1,""],feSpotLight:[4,1,1,""],feTile:[4,1,1,""],feTurbulence:[4,1,1,""],font:[4,1,1,""],foreignObject:[4,1,1,""],g:[4,1,1,""],glyph:[4,1,1,""],glyphRef:[4,1,1,""],hatch:[4,1,1,""],hatchpath:[4,1,1,""],hkern:[4,1,1,""],image:[4,1,1,""],line:[4,1,1,""],linearGradient:[4,1,1,""],marker:[4,1,1,""],mask:[4,1,1,""],mpath:[4,1,1,""],path:[4,1,1,""],pattern:[4,1,1,""],polygon:[4,1,1,""],polyline:[4,1,1,""],radialGradient:[4,1,1,""],rect:[4,1,1,""],solidcolor:[4,1,1,""],stop:[4,1,1,""],svg:[4,1,1,""],symbol:[4,1,1,""],text:[4,1,1,""],textPath:[4,1,1,""],title:[4,1,1,""],tref:[4,1,1,""],tspan:[4,1,1,""],unknown:[4,1,1,""],use:[4,1,1,""],view:[4,1,1,""],vkern:[4,1,1,""]},"domonic.terminal":{"export":[4,1,1,""],"true":[4,1,1,""],TerminalException:[4,4,1,""],alias:[4,1,1,""],apt:[4,1,1,""],ar:[4,1,1,""],asa:[4,1,1,""],at:[4,1,1,""],awk:[4,1,1,""],banner:[4,1,1,""],basename:[4,1,1,""],bash:[4,1,1,""],batch:[4,1,1,""],bc:[4,1,1,""],bg:[4,1,1,""],bind:[4,1,1,""],builtin:[4,1,1,""],cal:[4,1,1,""],caller:[4,1,1,""],cat:[4,1,1,""],cc:[4,1,1,""],cd:[4,1,1,""],cflow:[4,1,1,""],chgrp:[4,1,1,""],chmod:[4,1,1,""],chown:[4,1,1,""],cksum:[4,1,1,""],comm:[4,1,1,""],command:[4,1,1,""],compgen:[4,1,1,""],complete:[4,1,1,""],compopt:[4,1,1,""],compress:[4,1,1,""],convert:[4,1,1,""],cowsay:[4,1,1,""],cp:[4,1,1,""],cron:[4,1,1,""],crontab:[4,1,1,""],csplit:[4,1,1,""],ctags:[4,1,1,""],curl:[4,1,1,""],cut:[4,1,1,""],cxref:[4,1,1,""],date:[4,1,1,""],dd:[4,1,1,""],declare:[4,1,1,""],delta:[4,1,1,""],df:[4,1,1,""],diff:[4,1,1,""],dirname:[4,1,1,""],dirs:[4,1,1,""],disown:[4,1,1,""],du:[4,1,1,""],echo:[4,1,1,""],ed:[4,1,1,""],enable:[4,1,1,""],env:[4,1,1,""],ex:[4,1,1,""],exit:[4,1,1,""],expand:[4,1,1,""],expr:[4,1,1,""],fc:[4,1,1,""],ffmpeg:[4,1,1,""],fg:[4,1,1,""],figlet:[4,1,1,""],file:[4,1,1,""],find:[4,1,1,""],finger:[4,1,1,""],fold:[4,1,1,""],fort77:[4,1,1,""],fuser:[4,1,1,""],gcc:[4,1,1,""],gencat:[4,1,1,""],get:[4,1,1,""],getconf:[4,1,1,""],getopts:[4,1,1,""],git:[4,1,1,""],grep:[4,1,1,""],groupadd:[4,1,1,""],groupdel:[4,1,1,""],groups:[4,1,1,""],gunzip:[4,1,1,""],gzip:[4,1,1,""],head:[4,1,1,""],history:[4,1,1,""],iconv:[4,1,1,""],ifconfig:[4,1,1,""],ipconfig:[4,1,1,""],ipcrm:[4,1,1,""],ipcs:[4,1,1,""],jobs:[4,1,1,""],join:[4,1,1,""],jq:[4,1,1,""],kill:[4,1,1,""],killall:[4,1,1,""],less:[4,1,1,""],let:[4,1,1,""],lex:[4,1,1,""],link:[4,1,1,""],ln:[4,1,1,""],local:[4,1,1,""],locale:[4,1,1,""],localedef:[4,1,1,""],logger:[4,1,1,""],logname:[4,1,1,""],logout:[4,1,1,""],lp:[4,1,1,""],ls:[4,1,1,""],m4:[4,1,1,""],mailx:[4,1,1,""],make:[4,1,1,""],man:[4,1,1,""],mapfile:[4,1,1,""],mesg:[4,1,1,""],mkdir:[4,1,1,""],mkfifo:[4,1,1,""],mkfile:[4,1,1,""],more:[4,1,1,""],mv:[4,1,1,""],nautilus:[4,1,1,""],newgrp:[4,1,1,""],nice:[4,1,1,""],nl:[4,1,1,""],nm:[4,1,1,""],nmap:[4,1,1,""],nohup:[4,1,1,""],npm:[4,1,1,""],od:[4,1,1,""],passwd:[4,1,1,""],paste:[4,1,1,""],patch:[4,1,1,""],pathchk:[4,1,1,""],pax:[4,1,1,""],ping:[4,1,1,""],pip:[4,1,1,""],popd:[4,1,1,""],pr:[4,1,1,""],printf:[4,1,1,""],prs:[4,1,1,""],ps:[4,1,1,""],pushd:[4,1,1,""],pwd:[4,1,1,""],python:[4,1,1,""],qalter:[4,1,1,""],qdel:[4,1,1,""],qhold:[4,1,1,""],qmove:[4,1,1,""],qmsg:[4,1,1,""],qrerun:[4,1,1,""],qrls:[4,1,1,""],qselect:[4,1,1,""],qsig:[4,1,1,""],qstat:[4,1,1,""],qsub:[4,1,1,""],read:[4,1,1,""],readarray:[4,1,1,""],readonly:[4,1,1,""],reboot:[4,1,1,""],renice:[4,1,1,""],rm:[4,1,1,""],rmdel:[4,1,1,""],rmdir:[4,1,1,""],rsync:[4,1,1,""],sact:[4,1,1,""],say:[4,1,1,""],sccs:[4,1,1,""],scp:[4,1,1,""],sed:[4,1,1,""],sh:[4,1,1,""],shift:[4,1,1,""],shopt:[4,1,1,""],shutdown:[4,1,1,""],sleep:[4,1,1,""],sort:[4,1,1,""],source:[4,1,1,""],split:[4,1,1,""],ssh:[4,1,1,""],strings:[4,1,1,""],strip:[4,1,1,""],stty:[4,1,1,""],suspend:[4,1,1,""],tabs:[4,1,1,""],tail:[4,1,1,""],talk:[4,1,1,""],tar:[4,1,1,""],tee:[4,1,1,""],test:[4,1,1,""],time:[4,1,1,""],times:[4,1,1,""],touch:[4,1,1,""],tput:[4,1,1,""],tr:[4,1,1,""],trap:[4,1,1,""],tsort:[4,1,1,""],tty:[4,1,1,""],typeset:[4,1,1,""],ulimit:[4,1,1,""],umask:[4,1,1,""],unalias:[4,1,1,""],uname:[4,1,1,""],uncompress:[4,1,1,""],unexpand:[4,1,1,""],unget:[4,1,1,""],uniq:[4,1,1,""],unlink:[4,1,1,""],unset:[4,1,1,""],uptime:[4,1,1,""],useradd:[4,1,1,""],userdel:[4,1,1,""],users:[4,1,1,""],uucp:[4,1,1,""],uudecode:[4,1,1,""],uuencode:[4,1,1,""],uustat:[4,1,1,""],uux:[4,1,1,""],val:[4,1,1,""],wait:[4,1,1,""],wc:[4,1,1,""],wget:[4,1,1,""],what:[4,1,1,""],who:[4,1,1,""],whoami:[4,1,1,""],write:[4,1,1,""],xargs:[4,1,1,""],yacc:[4,1,1,""],zcat:[4,1,1,""]},"domonic.terminal.command":{run:[4,2,1,""]},"domonic.utils":{Utils:[4,1,1,""]},"domonic.utils.Utils":{acronym:[4,2,1,""],case_camel:[4,2,1,""],case_kebab:[4,2,1,""],case_snake:[4,2,1,""],chunk:[4,2,1,""],chunks:[4,2,1,""],clean:[4,2,1,""],dictify:[4,2,1,""],digits:[4,2,1,""],escape:[4,2,1,""],frequency:[4,2,1,""],get_vowels:[4,2,1,""],has_internet:[4,2,1,""],init_assets:[4,2,1,""],merge_dictionaries:[4,2,1,""],permutations:[4,2,1,""],random_color:[4,2,1,""],replace_between:[4,2,1,""],squash:[4,2,1,""],to_dictionary:[4,2,1,""],truncate:[4,2,1,""],unescape:[4,2,1,""],unique:[4,2,1,""],untitle:[4,2,1,""],url2file:[4,2,1,""]},"domonic.webapi":{url:[4,0,0,"-"]},"domonic.webapi.url":{URL:[4,1,1,""],URLSearchParams:[4,1,1,""]},"domonic.webapi.url.URL":{hash:[4,2,1,""]},"domonic.webapi.url.URLSearchParams":{"delete":[4,2,1,""],append:[4,2,1,""],entries:[4,2,1,""],forEach:[4,2,1,""],get:[4,2,1,""],getAll:[4,2,1,""],has:[4,2,1,""],keys:[4,2,1,""],set:[4,2,1,""],sort:[4,2,1,""],toString:[4,2,1,""],values:[4,2,1,""]},"domonic.xml":{sitemap:[4,0,0,"-"],x3d:[4,0,0,"-"]},"domonic.xml.sitemap":{changefreq:[4,1,1,""],lastmod:[4,1,1,""],loc:[4,1,1,""],priority:[4,1,1,""],sitemap:[4,1,1,""],sitemap_format:[4,3,1,""],sitemap_from_urls:[4,3,1,""],sitemapindex:[4,1,1,""],sitemapindex_from_urls:[4,3,1,""],url:[4,1,1,""],urlset:[4,1,1,""]},"domonic.xml.x3d":{"switch":[4,5,1,""],Anchor:[4,1,1,""],Appearance:[4,5,1,""],Arc2D:[4,1,1,""],ArcClose2D:[4,1,1,""],AudioClip:[4,1,1,""],Background:[4,1,1,""],BallJoint:[4,1,1,""],Billboard:[4,1,1,""],BinaryGeometry:[4,1,1,""],BlendMode:[4,1,1,""],BlendedVolumeStyle:[4,1,1,""],Block:[4,1,1,""],BoundaryEnhancementVolumeStyle:[4,1,1,""],Box:[4,5,1,""],BufferAccessor:[4,1,1,""],BufferGeometry:[4,1,1,""],BufferView:[4,1,1,""],CADAssembly:[4,1,1,""],CADFace:[4,1,1,""],CADLayer:[4,1,1,""],CADPart:[4,1,1,""],CartoonVolumeStyle:[4,1,1,""],Circle2D:[4,1,1,""],ClipPlane:[4,1,1,""],CollidableShape:[4,1,1,""],Collision:[4,1,1,""],CollisionCollection:[4,1,1,""],CollisionSensor:[4,1,1,""],Color:[4,1,1,""],ColorChaser:[4,1,1,""],ColorDamper:[4,1,1,""],ColorInterpolator:[4,1,1,""],ColorMaskMode:[4,1,1,""],ColorRGBA:[4,1,1,""],CommonSurfaceShader:[4,1,1,""],ComposedCubeMapTexture:[4,1,1,""],ComposedShader:[4,1,1,""],ComposedTexture3D:[4,1,1,""],ComposedVolumeStyle:[4,1,1,""],Cone:[4,1,1,""],Coordinate:[4,1,1,""],CoordinateDamper:[4,1,1,""],CoordinateDouble:[4,1,1,""],CoordinateInterpolator:[4,1,1,""],Cylinder:[4,1,1,""],CylinderSensor:[4,1,1,""],DepthMode:[4,1,1,""],DirectionalLight:[4,1,1,""],Dish:[4,1,1,""],Disk2D:[4,1,1,""],DoubleAxisHingeJoint:[4,1,1,""],DynamicLOD:[4,1,1,""],EdgeEnhancementVolumeStyle:[4,1,1,""],ElevationGrid:[4,1,1,""],Environment:[4,1,1,""],Extrusion:[4,1,1,""],Field:[4,1,1,""],FloatVertexAttribute:[4,1,1,""],Fog:[4,1,1,""],FontStyle:[4,1,1,""],GeneratedCubeMapTexture:[4,1,1,""],GeoCoordinate:[4,1,1,""],GeoElevationGrid:[4,1,1,""],GeoLOD:[4,1,1,""],GeoLocation:[4,1,1,""],GeoMetadata:[4,1,1,""],GeoOrigin:[4,1,1,""],GeoPositionInterpolator:[4,1,1,""],GeoTransform:[4,1,1,""],GeoViewpoint:[4,1,1,""],Group:[4,1,1,""],HAnimDisplacer:[4,1,1,""],HAnimHumanoid:[4,1,1,""],HAnimJoint:[4,1,1,""],HAnimSegment:[4,1,1,""],HAnimSite:[4,1,1,""],ImageTexture3D:[4,1,1,""],ImageTexture:[4,1,1,""],ImageTextureAtlas:[4,1,1,""],IndexedFaceSet:[4,1,1,""],IndexedLineSet:[4,1,1,""],IndexedQuadSet:[4,1,1,""],IndexedTriangleSet:[4,1,1,""],IndexedTriangleStripSet:[4,1,1,""],Inline:[4,5,1,""],IsoSurfaceVolumeData:[4,1,1,""],LOD:[4,1,1,""],LineProperties:[4,1,1,""],LineSet:[4,1,1,""],MPRPlane:[4,1,1,""],MPRVolumeStyle:[4,1,1,""],Material:[4,5,1,""],MatrixTextureTransform:[4,1,1,""],MatrixTransform:[4,1,1,""],Mesh:[4,1,1,""],MetadataBoolean:[4,1,1,""],MetadataDouble:[4,1,1,""],MetadataFloat:[4,1,1,""],MetadataInteger:[4,1,1,""],MetadataSet:[4,1,1,""],MetadataString:[4,1,1,""],MotorJoint:[4,1,1,""],MovieTexture:[4,1,1,""],MultiTexture:[4,1,1,""],MultiTextureCoordinate:[4,1,1,""],NavigationInfo:[4,1,1,""],Normal:[4,1,1,""],NormalInterpolator:[4,1,1,""],Nozzle:[4,1,1,""],OpacityMapVolumeStyle:[4,1,1,""],OrientationChaser:[4,1,1,""],OrientationDamper:[4,1,1,""],OrientationInterpolator:[4,1,1,""],OrthoViewpoint:[4,1,1,""],Param:[4,1,1,""],ParticleSet:[4,1,1,""],PhysicalEnvironmentLight:[4,1,1,""],PhysicalMaterial:[4,1,1,""],PixelTexture3D:[4,1,1,""],PixelTexture:[4,1,1,""],Plane:[4,5,1,""],PlaneSensor:[4,1,1,""],PointLight:[4,1,1,""],PointSet:[4,1,1,""],Polyline2D:[4,1,1,""],Polypoint2D:[4,1,1,""],PopGeometry:[4,1,1,""],PopGeometryLevel:[4,1,1,""],PositionChaser2D:[4,1,1,""],PositionChaser:[4,1,1,""],PositionDamper2D:[4,1,1,""],PositionDamper:[4,1,1,""],PositionInterpolator2D:[4,1,1,""],PositionInterpolator:[4,1,1,""],ProjectionVolumeStyle:[4,1,1,""],Pyramid:[4,1,1,""],QuadSet:[4,1,1,""],RadarVolumeStyle:[4,1,1,""],Rectangle2D:[4,1,1,""],RectangularTorus:[4,1,1,""],RefinementTexture:[4,1,1,""],RemoteSelectionGroup:[4,1,1,""],RenderedTexture:[4,1,1,""],RigidBody:[4,1,1,""],RigidBodyCollection:[4,1,1,""],Route:[4,1,1,""],ScalarChaser:[4,1,1,""],ScalarDamper:[4,1,1,""],ScalarInterpolator:[4,1,1,""],Scene:[4,5,1,""],SegmentedVolumeData:[4,1,1,""],ShadedVolumeStyle:[4,1,1,""],ShaderPart:[4,1,1,""],Shape:[4,5,1,""],SilhouetteEnhancementVolumeStyle:[4,1,1,""],SingleAxisHingeJoint:[4,1,1,""],SliderJoint:[4,1,1,""],SlopedCylinder:[4,1,1,""],Snout:[4,1,1,""],SolidOfRevolution:[4,1,1,""],Sound:[4,1,1,""],Sphere:[4,5,1,""],SphereSegment:[4,1,1,""],SphereSensor:[4,1,1,""],SplinePositionInterpolator:[4,1,1,""],SpotLight:[4,1,1,""],StaticGroup:[4,1,1,""],StippleVolumeStyle:[4,1,1,""],SurfaceShaderTexture:[4,1,1,""],Switch:[4,1,1,""],TexCoordDamper2D:[4,1,1,""],Text:[4,1,1,""],Texture:[4,1,1,""],TextureCoordinate3D:[4,1,1,""],TextureCoordinate:[4,1,1,""],TextureCoordinateGenerator:[4,1,1,""],TextureProperties:[4,1,1,""],TextureTransform3D:[4,1,1,""],TextureTransform:[4,1,1,""],TextureTransformMatrix3D:[4,1,1,""],TimeSensor:[4,5,1,""],ToneMappedVolumeStyle:[4,1,1,""],Torus:[4,1,1,""],TouchSensor:[4,1,1,""],Transform:[4,5,1,""],TriangleSet2D:[4,1,1,""],TriangleSet:[4,1,1,""],TwoSidedMaterial:[4,1,1,""],Uniform:[4,1,1,""],UniversalJoint:[4,1,1,""],Viewfrustum:[4,1,1,""],Viewpoint:[4,1,1,""],VolumeData:[4,1,1,""],WorldInfo:[4,1,1,""],X3D:[4,5,1,""],X3DAppearanceChildNode:[4,1,1,""],X3DAppearanceNode:[4,1,1,""],X3DBackgroundNode:[4,1,1,""],X3DBinaryContainerGeometryNode:[4,1,1,""],X3DBindableNode:[4,1,1,""],X3DBoundedObject:[4,1,1,""],X3DChaserNode:[4,1,1,""],X3DChildNode:[4,1,1,""],X3DColorNode:[4,1,1,""],X3DComposableVolumeRenderStyleNode:[4,1,1,""],X3DComposedGeometryNode:[4,1,1,""],X3DCoordinateNode:[4,1,1,""],X3DDamperNode:[4,1,1,""],X3DDragSensorNode:[4,1,1,""],X3DEnvironmentNode:[4,1,1,""],X3DEnvironmentTextureNode:[4,1,1,""],X3DFogNode:[4,1,1,""],X3DFollowerNode:[4,1,1,""],X3DFontStyleNode:[4,1,1,""],X3DGeometricPropertyNode:[4,1,1,""],X3DGeometryNode:[4,1,1,""],X3DGroupingNode:[4,1,1,""],X3DInfoNode:[4,1,1,""],X3DInterpolatorNode:[4,1,1,""],X3DLODNode:[4,1,1,""],X3DLightNode:[4,1,1,""],X3DMaterialNode:[4,1,1,""],X3DMetadataObject:[4,1,1,""],X3DNBodyCollidableNode:[4,1,1,""],X3DNavigationInfoNode:[4,1,1,""],X3DNode:[4,1,1,""],X3DPlanarGeometryNode:[4,1,1,""],X3DPointingDeviceSensorNode:[4,1,1,""],X3DRigidJointNode:[4,1,1,""],X3DSensorNode:[4,1,1,""],X3DShaderNode:[4,1,1,""],X3DShapeNode:[4,1,1,""],X3DSoundNode:[4,1,1,""],X3DSoundSourceNode:[4,1,1,""],X3DSpatialGeometryNode:[4,1,1,""],X3DTexture3DNode:[4,1,1,""],X3DTextureCoordinateNode:[4,1,1,""],X3DTextureNode:[4,1,1,""],X3DTextureTransformNode:[4,1,1,""],X3DTimeDependentNode:[4,1,1,""],X3DTouchSensorNode:[4,1,1,""],X3DTransformNode:[4,1,1,""],X3DVertexAttributeNode:[4,1,1,""],X3DViewpointNode:[4,1,1,""],X3DVolumeDataNode:[4,1,1,""],X3DVolumeRenderStyleNode:[4,1,1,""],anchor:[4,5,1,""],appearance:[4,1,1,""],arc2D:[4,5,1,""],arcClose2D:[4,5,1,""],audioClip:[4,5,1,""],background:[4,5,1,""],ballJoint:[4,5,1,""],billboard:[4,5,1,""],binaryGeometry:[4,5,1,""],blendMode:[4,5,1,""],blendedVolumeStyle:[4,5,1,""],block:[4,5,1,""],boundaryEnhancementVolumeStyle:[4,5,1,""],box:[4,1,1,""],bufferAccessor:[4,5,1,""],bufferGeometry:[4,5,1,""],bufferView:[4,5,1,""],cADAssembly:[4,5,1,""],cADFace:[4,5,1,""],cADLayer:[4,5,1,""],cADPart:[4,5,1,""],cartoonVolumeStyle:[4,5,1,""],circle2D:[4,5,1,""],clipPlane:[4,5,1,""],collidableShape:[4,5,1,""],collision:[4,5,1,""],collisionCollection:[4,5,1,""],collisionSensor:[4,5,1,""],color:[4,5,1,""],colorChaser:[4,5,1,""],colorDamper:[4,5,1,""],colorInterpolator:[4,5,1,""],colorMaskMode:[4,5,1,""],colorRGBA:[4,5,1,""],commonSurfaceShader:[4,5,1,""],composedCubeMapTexture:[4,5,1,""],composedShader:[4,5,1,""],composedTexture3D:[4,5,1,""],composedVolumeStyle:[4,5,1,""],cone:[4,5,1,""],coordinate:[4,5,1,""],coordinateDamper:[4,5,1,""],coordinateDouble:[4,5,1,""],coordinateInterpolator:[4,5,1,""],cylinder:[4,5,1,""],cylinderSensor:[4,5,1,""],depthMode:[4,5,1,""],directionalLight:[4,5,1,""],dish:[4,5,1,""],disk2D:[4,5,1,""],doubleAxisHingeJoint:[4,5,1,""],dynamicLOD:[4,5,1,""],edgeEnhancementVolumeStyle:[4,5,1,""],elevationGrid:[4,5,1,""],environment:[4,5,1,""],extrusion:[4,5,1,""],field:[4,5,1,""],floatVertexAttribute:[4,5,1,""],fog:[4,5,1,""],fontStyle:[4,5,1,""],generatedCubeMapTexture:[4,5,1,""],geoCoordinate:[4,5,1,""],geoElevationGrid:[4,5,1,""],geoLOD:[4,5,1,""],geoLocation:[4,5,1,""],geoMetadata:[4,5,1,""],geoOrigin:[4,5,1,""],geoPositionInterpolator:[4,5,1,""],geoTransform:[4,5,1,""],geoViewpoint:[4,5,1,""],group:[4,5,1,""],hAnimDisplacer:[4,5,1,""],hAnimHumanoid:[4,5,1,""],hAnimJoint:[4,5,1,""],hAnimSegment:[4,5,1,""],hAnimSite:[4,5,1,""],imageTexture3D:[4,5,1,""],imageTexture:[4,5,1,""],imageTextureAtlas:[4,5,1,""],indexedFaceSet:[4,5,1,""],indexedLineSet:[4,5,1,""],indexedQuadSet:[4,5,1,""],indexedTriangleSet:[4,5,1,""],indexedTriangleStripSet:[4,5,1,""],inline:[4,1,1,""],isoSurfaceVolumeData:[4,5,1,""],lOD:[4,5,1,""],lineProperties:[4,5,1,""],lineSet:[4,5,1,""],mPRPlane:[4,5,1,""],mPRVolumeStyle:[4,5,1,""],material:[4,1,1,""],matrixTextureTransform:[4,5,1,""],matrixTransform:[4,5,1,""],mesh:[4,5,1,""],metadataBoolean:[4,5,1,""],metadataDouble:[4,5,1,""],metadataFloat:[4,5,1,""],metadataInteger:[4,5,1,""],metadataSet:[4,5,1,""],metadataString:[4,5,1,""],motorJoint:[4,5,1,""],movieTexture:[4,5,1,""],multiTexture:[4,5,1,""],multiTextureCoordinate:[4,5,1,""],navigationInfo:[4,5,1,""],normal:[4,5,1,""],normalInterpolator:[4,5,1,""],nozzle:[4,5,1,""],opacityMapVolumeStyle:[4,5,1,""],orientationChaser:[4,5,1,""],orientationDamper:[4,5,1,""],orientationInterpolator:[4,5,1,""],orthoViewpoint:[4,5,1,""],param:[4,5,1,""],particleSet:[4,5,1,""],physicalEnvironmentLight:[4,5,1,""],physicalMaterial:[4,5,1,""],pixelTexture3D:[4,5,1,""],pixelTexture:[4,5,1,""],plane:[4,1,1,""],planeSensor:[4,5,1,""],pointLight:[4,5,1,""],pointSet:[4,5,1,""],polyline2D:[4,5,1,""],polypoint2D:[4,5,1,""],popGeometry:[4,5,1,""],popGeometryLevel:[4,5,1,""],positionChaser2D:[4,5,1,""],positionChaser:[4,5,1,""],positionDamper2D:[4,5,1,""],positionDamper:[4,5,1,""],positionInterpolator2D:[4,5,1,""],positionInterpolator:[4,5,1,""],projectionVolumeStyle:[4,5,1,""],pyramid:[4,5,1,""],quadSet:[4,5,1,""],radarVolumeStyle:[4,5,1,""],rectangle2D:[4,5,1,""],rectangularTorus:[4,5,1,""],refinementTexture:[4,5,1,""],remoteSelectionGroup:[4,5,1,""],renderedTexture:[4,5,1,""],rigidBody:[4,5,1,""],rigidBodyCollection:[4,5,1,""],route:[4,5,1,""],scalarChaser:[4,5,1,""],scalarDamper:[4,5,1,""],scalarInterpolator:[4,5,1,""],scene:[4,1,1,""],segmentedVolumeData:[4,5,1,""],shadedVolumeStyle:[4,5,1,""],shaderPart:[4,5,1,""],shape:[4,1,1,""],silhouetteEnhancementVolumeStyle:[4,5,1,""],singleAxisHingeJoint:[4,5,1,""],sliderJoint:[4,5,1,""],slopedCylinder:[4,5,1,""],snout:[4,5,1,""],solidOfRevolution:[4,5,1,""],sound:[4,5,1,""],sphere:[4,1,1,""],sphereSegment:[4,5,1,""],sphereSensor:[4,5,1,""],splinePositionInterpolator:[4,5,1,""],spotLight:[4,5,1,""],staticGroup:[4,5,1,""],stippleVolumeStyle:[4,5,1,""],surfaceShaderTexture:[4,5,1,""],texCoordDamper2D:[4,5,1,""],text:[4,5,1,""],texture:[4,5,1,""],textureCoordinate3D:[4,5,1,""],textureCoordinate:[4,5,1,""],textureCoordinateGenerator:[4,5,1,""],textureProperties:[4,5,1,""],textureTransform3D:[4,5,1,""],textureTransform:[4,5,1,""],textureTransformMatrix3D:[4,5,1,""],timeSensor:[4,1,1,""],toneMappedVolumeStyle:[4,5,1,""],torus:[4,5,1,""],touchSensor:[4,5,1,""],transform:[4,1,1,""],triangleSet2D:[4,5,1,""],triangleSet:[4,5,1,""],twoSidedMaterial:[4,5,1,""],uniform:[4,5,1,""],universalJoint:[4,5,1,""],viewfrustum:[4,5,1,""],viewpoint:[4,5,1,""],volumeData:[4,5,1,""],worldInfo:[4,5,1,""],x3DAppearanceChildNode:[4,5,1,""],x3DAppearanceNode:[4,5,1,""],x3DBackgroundNode:[4,5,1,""],x3DBinaryContainerGeometryNode:[4,5,1,""],x3DBindableNode:[4,5,1,""],x3DBoundedObject:[4,5,1,""],x3DChaserNode:[4,5,1,""],x3DChildNode:[4,5,1,""],x3DColorNode:[4,5,1,""],x3DComposableVolumeRenderStyleNode:[4,5,1,""],x3DComposedGeometryNode:[4,5,1,""],x3DCoordinateNode:[4,5,1,""],x3DDamperNode:[4,5,1,""],x3DDragSensorNode:[4,5,1,""],x3DEnvironmentNode:[4,5,1,""],x3DEnvironmentTextureNode:[4,5,1,""],x3DFogNode:[4,5,1,""],x3DFollowerNode:[4,5,1,""],x3DFontStyleNode:[4,5,1,""],x3DGeometricPropertyNode:[4,5,1,""],x3DGeometryNode:[4,5,1,""],x3DGroupingNode:[4,5,1,""],x3DInfoNode:[4,5,1,""],x3DInterpolatorNode:[4,5,1,""],x3DLODNode:[4,5,1,""],x3DLightNode:[4,5,1,""],x3DMaterialNode:[4,5,1,""],x3DMetadataObject:[4,5,1,""],x3DNBodyCollidableNode:[4,5,1,""],x3DNavigationInfoNode:[4,5,1,""],x3DNode:[4,5,1,""],x3DPlanarGeometryNode:[4,5,1,""],x3DPointingDeviceSensorNode:[4,5,1,""],x3DRigidJointNode:[4,5,1,""],x3DSensorNode:[4,5,1,""],x3DShaderNode:[4,5,1,""],x3DShapeNode:[4,5,1,""],x3DSoundNode:[4,5,1,""],x3DSoundSourceNode:[4,5,1,""],x3DSpatialGeometryNode:[4,5,1,""],x3DTexture3DNode:[4,5,1,""],x3DTextureCoordinateNode:[4,5,1,""],x3DTextureNode:[4,5,1,""],x3DTextureTransformNode:[4,5,1,""],x3DTimeDependentNode:[4,5,1,""],x3DTouchSensorNode:[4,5,1,""],x3DTransformNode:[4,5,1,""],x3DVertexAttributeNode:[4,5,1,""],x3DViewpointNode:[4,5,1,""],x3DVolumeDataNode:[4,5,1,""],x3DVolumeRenderStyleNode:[4,5,1,""],x3d:[4,1,1,""]},domonic:{CDN:[4,0,0,"-"],JSON:[4,0,0,"-"],decorators:[4,0,0,"-"],dom:[4,0,0,"-"],events:[4,0,0,"-"],geom:[4,0,0,"-"],html:[4,0,0,"-"],javascript:[4,0,0,"-"],style:[4,0,0,"-"],svg:[4,0,0,"-"],terminal:[4,0,0,"-"],utils:[4,0,0,"-"]}},objnames:{"0":["py","module","Python module"],"1":["py","class","Python class"],"2":["py","method","Python method"],"3":["py","function","Python function"],"4":["py","exception","Python exception"],"5":["py","attribute","Python attribute"]},objtypes:{"0":"py:module","1":"py:class","2":"py:method","3":"py:function","4":"py:exception","5":"py:attribute"},terms:{"000":[2,17],"000000":7,"000080":7,"00008b":7,"0000cd":7,"0000ff":7,"000133":7,"00022e":7,"000435":7,"001146":7,"002d04":7,"004577":7,"005249":7,"00555a":7,"005f6a":7,"006400":7,"008000":7,"008080":7,"008b8b":7,"009337":7,"00bfff":7,"00ced1":7,"00fa9a":7,"00fbb0":7,"00ff00":7,"00ff7f":7,"00ffff":7,"010fcc":7,"01153e":7,"01386a":7,"014182":7,"014600":7,"014d4e":7,"015482":7,"0165fc":7,"016795":7,"017371":7,"017374":7,"017b92":7,"01889f":7,"019529":7,"01a049":7,"01b44c":7,"01c08d":7,"01f9c6":7,"01ff07":7,"01t18":17,"020035":7,"0203e2":7,"02066f":7,"021bf9":7,"02590f":7,"028f1e":7,"029386":7,"02ab2":7,"02c14d":7,"02ccfe":7,"02d8e9":7,"03012d":7,"030764":7,"030aa7":7,"0339f8":7,"0343df":7,"03719c":7,"040273":7,"040348":7,"042e60":7,"044a05":7,"045c5a":7,"047495":7,"048243":7,"0485d1":7,"04d9ff":7,"04f489":7,"0504aa":7,"05472a":7,"05480d":7,"054907":7,"05696b":7,"056eee":7,"05ffa6":7,"062e03":7,"06470c":7,"0652ff":7,"069af3":7,"06b1c4":7,"06c2ac":7,"070d0d":7,"0804f9":7,"08787f":7,"089404":7,"08ff08":7,"08t13":[4,17],"0a437a":7,"0a481":7,"0a5f38":7,"0a888a":7,"0add08":7,"0aff02":7,"0b4008":7,"0b5509":7,"0b8b87":7,"0bf77d":7,"0bf9ea":7,"0c06f7":7,"0c1793":7,"0cb577":7,"0cdc73":7,"0cff0c":7,"0d75f8":7,"0e87cc":7,"0f9b8e":7,"0ffef9":7,"0px":6,"100":[2,4,6,7,14],"1000":15,"101":7,"102":7,"103":7,"104":7,"105":7,"106":7,"107":7,"107ab0":7,"108":7,"109":7,"10a674":7,"10px":[6,14],"110":7,"111":[7,15],"112":7,"113":7,"114":7,"115":7,"116":7,"117":7,"118":7,"11875d":7,"119":7,"120":7,"121":7,"122":7,"123":7,"1234":14,"12345":14,"124":7,"125":7,"125rem":14,"126":7,"128":2,"12e193":7,"12px":[15,18],"13bbaf":7,"13eac9":7,"140x100":2,"152eff":7,"154406":7,"155084":7,"15b01a":7,"16pt":[4,18],"17202a":2,"1805db":7,"186":7,"187":7,"188":7,"189":7,"18d17b":7,"190":7,"191":7,"191970":7,"192":7,"1970":[4,15],"1b2431":7,"1bfc06":7,"1d0200":7,"1d5dec":7,"1e488f":7,"1e90ff":7,"1e9167":7,"1ef876":7,"1f0954":7,"1f3b4d":7,"1f6357":7,"1fa774":7,"1fb57a":7,"1px":6,"200":2,"2000b1":7,"2003":[4,11],"2004":17,"2020":17,"2021":[4,17],"20b2aa":7,"20c073":7,"20f986":7,"20px":6,"2138ab":7,"214761":7,"219":7,"21c36f":7,"21fc0d":7,"220":7,"221":7,"222":7,"2242c7":7,"228b22":7,"22c5fc":2,"247afd":7,"24bca8":7,"255":[2,7],"25a36f":7,"25ff29":7,"26538d":7,"26f7fd":7,"276ab3":7,"280137":7,"287c37":7,"29465b":7,"2976bb":7,"2a0134":7,"2a7e19":7,"2afeb7":7,"2b5d34":7,"2baf6a":7,"2bb179":7,"2c6fbb":7,"2cfa1f":7,"2dfe54":7,"2e5a88":7,"2e8b57":7,"2ee8bb":7,"2f4f4f":7,"2fef10":7,"2px":6,"300":[2,4],"31668a":7,"32bf84":7,"32cd32":7,"333333":2,"33b864":7,"34013f":7,"341c02":7,"343837":7,"35063e":7,"350x150":2,"35530a":7,"35ad6b":7,"360":2,"36013f":7,"363737":7,"373e02":7,"3778bf":7,"380282":7,"380835":7,"388004":7,"39ad48":7,"3a18b1":7,"3a2ef":7,"3ae57f":7,"3b5b92":7,"3b638c":7,"3b719f":7,"3c0008":7,"3c4142":7,"3c4d03":7,"3c73a8":7,"3c9992":7,"3cb371":7,"3d0734":7,"3d1c02":7,"3d7afd":7,"3d9973":7,"3e82fc":7,"3eaf76":7,"3f012c":7,"3f829d":7,"3f9b0b":7,"400":2,"4000":16,"400px":23,"40a368":7,"40e0d0":7,"40fd14":7,"410200":7,"411900":7,"4169e1":7,"419c03":7,"41fdfe":7,"420x320":2,"4294967295":[4,11],"42b395":7,"430541":7,"430x320":2,"436bad":7,"448ee4":7,"464196":7,"4682b4":7,"475f94":7,"480":2,"483d8b":7,"48c072":7,"48d1cc":7,"490648":7,"49759c":7,"4984b8":7,"4a0100":7,"4b006e":7,"4b0082":7,"4b0101":7,"4b57db":7,"4b5d16":7,"4b6113":7,"4c9085":7,"4cc3d9":23,"4da409":7,"4e0550":7,"4e518b":7,"4e5481":7,"4e7496":7,"4efd54":7,"4f738e":7,"4f9153":7,"5000":16,"500px":23,"507b9c":7,"50a747":7,"510ac9":7,"516572":7,"5170d7":7,"51b73b":7,"526525":7,"533cc6":7,"536267":7,"53fca1":7,"53fe5c":7,"544e03":7,"548d44":7,"54ac68":7,"5539cc":7,"556b2f":7,"5684ae":7,"56ae57":7,"56fca2":7,"580f41":7,"58bc08":7,"59656d":7,"598556":7,"5a06ef":7,"5a7d9a":7,"5a86ad":7,"5b7c99":7,"5c8b15":7,"5ca904":7,"5cac2d":7,"5cb200":7,"5d06e9":7,"5d1451":7,"5d21d0":7,"5e819d":7,"5e9b8a":7,"5edc1f":7,"5f34e7":7,"5f9e8f":7,"5f9ea0":7,"5fa052":7,"5rem":14,"600x300":2,"601ef9":7,"60460f":7,"606602":7,"610023":7,"6140ef":7,"61de2a":7,"61e160":7,"6241c7":7,"6258c4":7,"638b27":7,"63a950":7,"63b365":7,"63f7b4":7,"640":[2,5],"640x360":2,"645403":7,"647d8e":7,"6488ea":7,"6495ed":7,"650021":7,"653700":7,"657432":7,"658b38":7,"658cbb":7,"658d6d":7,"65ab7c":7,"65fe08":7,"661aee":7,"663399":7,"665fd1":7,"667c3e":7,"667e2c":7,"66cdaa":7,"673a3f":7,"677a04":7,"680018":7,"6832e3":7,"696006":7,"696112":7,"696969":7,"698339":7,"699d4c":7,"69d84f":7,"6a5acd":7,"6a6e09":7,"6a79f7":7,"6b4247":7,"6b7c85":7,"6b8e23":7,"6ba353":7,"6c3461":7,"6c7a0e":7,"6d5acf":7,"6dedfd":7,"6e1005":7,"6e750":7,"6ecb3c":7,"6f6c0a":7,"6f7632":7,"6f7c00":7,"6f828a":7,"6fc276":7,"703be7":7,"706c11":7,"708090":7,"70b23f":7,"719f91":7,"71aa34":7,"720058":7,"728639":7,"728f02":7,"730039":7,"734a65":7,"735c12":7,"738595":7,"742802":7,"748500":7,"748b97":7,"749551":7,"74a662":7,"750851":7,"751973":7,"758000":7,"75b84f":7,"75bbfd":7,"75fd63":7,"76424e":7,"768px":14,"769958":7,"76a973":7,"76cd26":7,"76fda8":7,"76ff7b":7,"770001":7,"778899":7,"77926f":7,"77ab56":7,"78d1b6":7,"7a5901":7,"7a687f":7,"7a6a4f":7,"7a9703":7,"7af9ab":7,"7b002c":7,"7b0323":7,"7b5804":7,"7b68ee":7,"7bb274":7,"7bc8a4":23,"7bc8f6":7,"7bf2da":7,"7bfdc7":7,"7cfc00":7,"7d7103":7,"7d7f7c":7,"7e1e9c":7,"7e4071":7,"7ea07a":7,"7ebd01":7,"7ef4cc":7,"7efbb3":7,"7f2b0a":7,"7f4e1e":7,"7f5112":7,"7f5e00":7,"7f5f00":7,"7f684e":7,"7f7053":7,"7f8f4e":7,"7fff00":7,"7fffd4":7,"8000":16,"800000":7,"800080":7,"80013f":7,"805b87":7,"8080":16,"808000":7,"808080":7,"80f9ad":7,"820747":7,"825f87":7,"826d8c":7,"828344":7,"82a67d":7,"82cafc":7,"82cbb2":7,"836539":7,"840000":7,"84597e":7,"84b701":7,"850e04":7,"856798":7,"85a3b2":7,"866f85":7,"86775f":7,"86a17d":7,"874c62":7,"8756e4":7,"875f42":7,"876e4b":7,"87a922":7,"87ae73":7,"87ceeb":7,"87cefa":7,"87fd05":7,"885f01":7,"886806":7,"887191":7,"888":6,"8888":16,"889717":7,"88b378":7,"894585":7,"895b7b":7,"89a0b0":7,"89a203":7,"89fe05":7,"8a2be2":7,"8a6e45":7,"8ab8f":7,"8af1f":7,"8b0000":7,"8b008b":7,"8b2e16":7,"8b3103":7,"8b4513":7,"8b88f8":7,"8c000f":7,"8c0034":7,"8cfd7e":7,"8cff9e":7,"8cffdb":7,"8d5eb7":7,"8d8468":7,"8e7618":7,"8e82f":7,"8eab12":7,"8ee53f":7,"8f1402":7,"8f7303":7,"8f8ce7":7,"8f9805":7,"8f99fb":7,"8fae22":7,"8fb67b":7,"8fbc8f":7,"8ffe09":7,"8fff9f":7,"90b134":7,"90e4c1":7,"90ee90":7,"90fda9":7,"910951":7,"916e99":7,"920a4e":7,"922b05":7,"929591":7,"929901":7,"9370db":7,"937c00":7,"9400d3":7,"94568c":7,"947706":7,"947e94":7,"94a617":7,"94ac02":7,"94b21c":7,"952e8f":7,"95a3a6":7,"960056":7,"964e02":7,"966ebd":7,"96ae8d":7,"96b403":7,"978a84":7,"980002":7,"983fb2":7,"98568d":7,"985e2b":7,"98eff9":7,"98f6b0":7,"98fb98":7,"9900fa":7,"990147":7,"990f4b":7,"9932cc":7,"997570":7,"999":[4,15],"99cc04":7,"9a0200":7,"9a0eea":7,"9a3001":7,"9a6200":7,"9aae07":7,"9acd32":7,"9af764":7,"9b5fc0":7,"9b7a01":7,"9b8f55":7,"9bb53c":7,"9be5aa":7,"9c6d57":7,"9c6da5":7,"9cbb04":7,"9cef43":7,"9d0216":7,"9d0759":7,"9d5783":7,"9d7651":7,"9db92c":7,"9dbcd4":7,"9dc100":7,"9dff00":7,"9e003a":7,"9e0168":7,"9e3623":7,"9e43a2":7,"9f2305":7,"9f8303":7,"9ffeb0":7,"\u0153":7,"\u0161":7,"\u0178":7,"\u0192":7,"\u02c6":7,"\u03b1":7,"\u03b2":7,"\u03b3":7,"\u03b4":7,"\u03b5":7,"\u03b6":7,"\u03b7":7,"\u03b8":7,"\u03b9":7,"\u03ba":7,"\u03bb":7,"\u03bc":7,"\u03bd":7,"\u03be":7,"\u03bf":7,"\u03c0":7,"\u03c1":7,"\u03c2":7,"\u03c3":7,"\u03c4":7,"\u03c5":7,"\u03c6":7,"\u03c7":7,"\u03c8":7,"\u03c9":7,"\u03d1":7,"\u03d2":7,"\u03d6":7,"\u2153":7,"\u2154":7,"\u2155":7,"\u2156":7,"\u2157":7,"\u2158":7,"\u2159":7,"\u215a":7,"\u215b":7,"\u215c":7,"\u215d":7,"\u215e":7,"abstract":[4,11],"boolean":[4,11,15,22],"break":[4,11,18],"case":[2,4,9,11,18,21],"char":[1,4,15],"class":[1,2,3,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23],"default":[2,4,9,10,11,15,17,21],"export":[4,19],"final":[1,9,15],"float":[4,5,8,15,18],"function":[1,2,3,4,5,6,7,9,10,11,14,15,18,19,20,21,22],"goto":5,"import":[1,2,3,4,5,7,8,9,10,11,12,14,15,16,17,18,19,20,22,23],"int":[2,4,7,11,15,21],"long":[4,6,11,18,20],"new":[0,1,2,4,5,9,11,12,15,18,21,22],"null":[4,11,15,18],"return":[2,3,4,5,6,7,9,10,11,12,14,15,16,18,19,21,22],"static":[1,2,3,4,5,7,9,11,15,18,19,21],"super":[12,14],"switch":[4,23],"throw":[4,5,9,19],"true":[4,6,7,9,10,11,14,15,16,19,23],"try":[0,6,16,19],"var":[4,6,14],"while":[4,6,11,18],AND:7,ARE:2,ARING:7,AWS:1,But:[6,9,15],DNS:5,DOS:5,EXE:5,For:[2,4,6,9,14,16,17,18,20,21],Has:5,Its:9,NFS:5,NOT:[2,4,6,7,15],Not:[1,4,15],ONE:7,THE:14,The:[0,4,5,9,11,14,15,16,18,19,20,21,22],Their:2,Then:[1,6,10,16],There:[1,4,5,6,12,15,18,19],These:[5,6],Use:[4,5,11,15],Uses:5,Using:1,With:[5,6,15,17],__crossorigin:14,__format__:[14,17],__import__:6,__init__:[6,12],__integr:14,__main__:16,__name__:16,__pyml__:14,__str__:6,_class:[6,9,14],_color:23,_crossorigin:14,_cycleinterv:23,_data:[6,14],_def:23,_diffusecolor:23,_dunders_:1,_filter:[4,11],_for:14,_fromfield:23,_fromnod:23,_height:23,_href:[2,6,14],_id:[4,6,9,11,14,15,16,18],_integr:14,_kei:23,_keyvalu:23,_loop:23,_matchel:[4,11],_posit:23,_radiu:23,_rel:[2,6,14],_rotat:23,_scene:23,_src:[2,4,6,14,23],_style:[6,14,15],_text:[],_tofield:23,_tonod:23,_type:[4,6,11,12],_webpag:23,_width:23,a0025c:7,a00498:7,a03623:7,a0450:7,a0522d:7,a0bf16:7,a0febf:7,a13905:7,a24857:7,a2653:7,a2a415:7,a2bff:7,a2cff:7,a442a0:7,a484ac:7,a4be5c:7,a4bf20:7,a50055:7,a52a2a:7,a552e6:7,a55af4:7,a57e52:7,a5a391:7,a5a502:7,a5fbd5:7,a66fb5:7,a6814c:7,a6c875:7,a6fbb2:7,a75e09:7,a7ffb5:7,a83c09:7,a8415b:7,a87900:7,a87dc2:7,a88905:7,a88f59:7,a8a495:7,a8b504:7,a8ff04:7,a90308:7,a9561:7,a9a9a9:7,a9be70:7,a9f971:7,aa23ff:7,aa2704:7,aaa662:7,aacut:7,aaff32:7,ab1239:7,ab7e4c:7,ab9004:7,abbr:[4,14],abc:17,abil:[4,11,12,18],abl:5,abort:[4,11,12],about:[5,14,16],abov:[5,10,12],abs:[4,15],absolut:[4,18],ac1db8:7,ac4f06:7,ac7434:7,ac7e04:7,ac86a8:7,ac9362:7,acbb0d:7,acbf69:7,accept:10,access:[1,4,5,9,11,14,18],accord:[4,15],account:5,acfffc:7,acidgreen:7,acirc:7,acronym:[2,4,21],across:[4,18],action:9,activ:[0,4,5,15,16],actual:[9,15],acut:7,ad03d:7,ad0afd:7,ad8150:7,ad900d:7,ada587:7,adapt:16,add8e6:7,add:[1,2,4,5,9,11,13,14,15,17,18],add_rout:16,add_view:16,addback:9,addclass:9,added:[0,2,4,9,11,22],addeventlisten:12,adding:23,addit:[5,15],address:[4,5,14],addrul:[4,18],adf802:7,adff2f:7,adjac:[4,11],adjust:[5,9],admin:16,administr:5,adob:7,advanc:[2,4,21],advis:[4,17],advisori:[4,18],ae7181:7,ae8b0c:7,aefd6c:7,aeff6:7,aelig:7,af2f0d:7,af6f09:7,af884a:7,afa88b:7,afeee:7,affect:[4,9,11,12,20],afram:1,aframe_1_2:23,aframe_tag:23,after:[4,9,10,11,15,18],afterprint:[4,11,12],afterward:[4,15,17],again:5,agent:[4,18],agrav:7,aiohttp:1,ajax:[2,4,9,10],ajaxcomplet:9,ajaxerror:9,ajaxprefilt:9,ajaxsend:9,ajaxsetup:9,ajaxstart:9,ajaxstop:9,ajaxsuccess:9,ajaxtransport:9,alert:[4,15],alga:7,algaegreen:7,alia:[4,9,11,14,15,19,23],aliceblu:7,align:[4,18],aligncont:[4,18],alignitem:[4,18],alignself:[4,18],alink:23,all:[0,2,4,5,6,9,11,14,15,18,19,21,22],all_selector:[4,11],allow:[4,5,6,11,14,15,16,17,18,22],almostblack:7,along:15,alongsid:16,alpha:[7,14],alreadi:[4,13,15,16,20],also:[0,1,4,5,6,7,9,10,11,14,15,17,18],alt:[1,9],altern:[4,7,16,18,23],altglyph:4,altglyphdef:4,altglyphitem:4,although:[4,14,15],alwai:[2,4,9,11],amaz:13,amber:7,amethyst:7,among:9,amount:[4,11,18],amp:7,ampersand:7,analys:5,ancestor:[4,9,11],anchor:[4,11,14,15,22,23],andself:9,ang:7,ani:[0,1,2,3,4,5,6,9,11,14,15,16,17,18,19,21,22],anim:[4,9,11,12,15,18],animatecolor:4,animated_monst:6,animatemot:4,animatetransform:4,animationdelai:[4,18],animationdirect:[4,18],animationdur:[4,18],animationend:[4,11,12],animationev:[4,11,12],animationfillmod:[4,18],animationiter:[4,11,12],animationiterationcount:[4,18],animationnam:[4,11,12,18],animationplayst:[4,18],animationstart:[4,11,12],animationtimingfunct:[4,18],annoi:6,anonym:[10,14,16],anonymous:10,anorm:[4,11],anoth:[4,5,6,8,9,11,14,16],antiquewhit:7,antiviru:5,anyth:[2,4,14],api:[0,1,4,8,11,14,15,18,22],apostroph:7,app:[5,6,16,19],appear:[4,15,23],append:[2,4,5,9,11,14,15,21,22,23],appendchild:[4,11,14],appenddata:[4,11],appendto:9,appl:7,applegreen:7,applet:[4,11,14],appli:[4,5,6,15,18],applic:[5,16],appspot:2,apricot:7,apt:[4,19],aqua:7,aquablu:7,aquagreen:7,aquamarin:7,arbitrari:[1,9],arc2d:[4,23],arcclose2d:[4,23],archiv:16,area:[4,5,11,14,18],aren:[4,5,11,18],arg1:[2,4,21],arg2:[2,4,21],arg:[1,2,4,5,6,7,9,11,12,14,15,17,18,19,22,23],argument:[2,4,6,9,11,14,15,21],argumentslist:[4,15],aring:7,armygreen:7,around:[4,6,9,10,14,18,22],arp:5,arr:[2,3,4,9,21],arrai:[1,2,3,4,9,11,12,18,20,21],arrow:[4,18],articl:[4,6,14,15],as_sign:[4,15],asa:[4,19],asap:1,asgi:16,asid:[4,14],ask:0,asp:[4,15],asparagu:7,assert:[4,10,15],asset:[2,4,6,21],assign:[4,5,9,15],assignednod:[4,11],assignedslot:[4,11],assoc:5,associ:[4,9,11,15,18,22],assum:4,asterisk:7,asymp:7,async:[6,16],asynchron:[4,5,9,18],at_sign:7,atild:7,atm:[5,13],atmadm:5,atob:[4,15],attach:9,attack:16,attempt:[1,4,17,21],attr:[4,9,11],attrib:5,attribut:[1,4,5,6,9,11,15,18],aubergin:7,auburn:7,audio:[4,14],audioclip:[4,23],auditpol:5,auml:7,authent:5,author:[4,5,11,18],authoris:5,auto:[1,6],autodi:5,autodoc:1,autom:5,automat:5,avail:[2,4,5,6,8,11,12,15,18],availheight:[4,15],availwidth:[4,15],avocado:7,avocadogreen:7,avoid:[4,8,14,16,17],awar:14,awesom:[2,4],awk:[4,19],aws:16,azul:7,azur:7,b00149:7,b0054b:7,b04e0f:7,b0c4de:7,b0dd16:7,b0e0e6:7,b0ff9d:7,b16002:7,b17261:7,b1916e:7,b1d1fc:7,b1d27b:7,b1fc99:7,b1ff65:7,b22222:7,b25f03:7,b26400:7,b2713d:7,b27a01:7,b29705:7,b2996e:7,b2fba5:7,b36ff6:7,b5485d:7,b59410:7,b5c306:7,b5ce08:7,b66325:7,b66a50:7,b6c406:7,b6ffbb:7,b75203:7,b790d4:7,b79400:7,b7c9e2:7,b7e1a1:7,b7fffa:7,b8860b:7,b8ffeb:7,b9484e:7,b96902:7,b9a281:7,b9cc81:7,b9ff66:7,ba55d3:7,ba6873:7,ba9e88:7,babyblu:7,babygreen:7,babypink:7,babypoo:7,babypoop:7,babypoopgreen:7,babypukegreen:7,babypurpl:7,babyshitbrown:7,babyshitgreen:7,back:[4,6,14,15,20],backfacevis:[4,18],background:[4,5,6,15,18,23],backgroundattach:[4,18],backgroundclip:[4,18],backgroundcolor:[4,15,18],backgroundimag:[4,18],backgroundorigin:[4,18],backgroundposit:[4,18],backgroundrepeat:[4,18],backgrounds:[4,18],backquot:7,backslash:7,backspac:7,backup:5,baconmockup:2,ball:23,balljoint:[4,23],balloon:2,banana:7,bananayellow:7,banner:[4,19],bar:[4,9,11],barbiepink:7,barfgreen:7,barnei:7,barneypurpl:7,base:[1,4,5,9,11,14,15],baseclass:[4,11],basefont:[4,14],basenam:[4,19],bash:[4,19],bashprofil:1,basic:[1,5,14],batch:[2,4,5,19,21],battleshipgrei:7,bb3f3f:7,bbf90f:7,bc13fe:7,bc8f8f:7,bccb7a:7,bcdboot:5,bcdedit:5,bcecac:7,bcf5a6:7,bd6c48:7,bdb76b:7,bde:5,bdehdcfg:5,bdf6fe:7,bdf8a3:7,bdi:[4,14],bdo:[4,14],bdquo:7,be0119:7,be013c:7,be03fd:7,be6400:7,beae8a:7,beauti:14,beautifi:14,beautifulsoup:14,becaus:23,becom:[1,14],been:[4,5,9,11,12,13,14,15,20],befd73:7,befdb7:7,befor:[1,2,4,6,9,10,11,15,18],beforeprint:[4,11,12],beforeunload:[4,11,12],beforeunloadev:[4,11,12],begin:[4,9,11,15],behav:0,behavior:[4,9,18],behaviour:[4,18],beig:7,being:[4,6,11],below:[4,11,16,17,18,23],berri:7,beta:7,better:[4,11,16],between:[2,4,5,6,15,17,18,21],beyond:[4,18],bf77f6:7,bf9005:7,bf9b0c:7,bfac05:7,bff128:7,bffe28:7,big:[4,15],bile:7,billboard:[4,23],bin:[4,5,11,16],binarygeometri:[4,23],bind:[4,9,15,19],bisqu:7,bit:[4,5,6,11,15,21],bitlock:5,bitmask:[4,11],bitsadmin:5,black:[6,7,15,18],blanchedalmond:7,bland:7,blendedvolumestyl:[4,23],blendmod:[4,23],blink:[4,15],block:[4,6,18,23],blockquot:[4,14],blog:15,blood:7,bloodorang:7,bloodr:7,blue:7,blueberri:[1,7],blueblu:7,bluegreen:7,bluegrei:7,bluepurpl:7,blueviolet:7,bluewithahintofpurpl:7,blueygreen:7,blueygrei:7,blueypurpl:7,bluish:7,bluishgreen:7,bluishgrei:7,bluishpurpl:7,blur:[4,9,11,12,18],blurpl:7,blush:7,blushpink:7,bob:21,bodi:[1,4,6,9,10,11,14,16,23],body1:11,body2:11,body3:11,body4:11,bold:[4,15,18],booger:7,boogergreen:7,bool:[2,4,7,9,11,15,21],boot:5,bootabl:5,bootcfg:5,bootsect:5,bootstrap5:[6,14],bootstrap:14,bootstrap_4:2,bootstrap_5_alpha:2,bordeaux:7,border:[4,6,9,11,18],borderbottom:[4,18],borderbottomcolor:[4,18],borderbottomleftradiu:[4,18],borderbottomrightradiu:[4,18],borderbottomstyl:[4,18],borderbottomwidth:[4,18],bordercollaps:[4,18],bordercolor:[4,18],borderimag:[4,18],borderimageoutset:[4,18],borderimagerepeat:[4,18],borderimageslic:[4,18],borderimagesourc:[4,18],borderimagewidth:[4,18],borderleft:[4,18],borderleftcolor:[4,18],borderleftstyl:[4,18],borderleftwidth:[4,18],borderradiu:[4,18],borderright:[4,18],borderrightcolor:[4,18],borderrightstyl:[4,18],borderrightwidth:[4,18],borderspac:[4,18],borderstyl:[4,18],bordertop:[4,18],bordertopcolor:[4,18],bordertopleftradiu:[4,18],bordertoprightradiu:[4,18],bordertopstyl:[4,18],bordertopwidth:[4,18],borderwidth:[4,18],boringgreen:7,both:[2,4,7,9,11,15,21],bottl:1,bottlegreen:7,bottom:[4,18],bounc:20,bound:[4,9,11,15,18],boundaryenhancementvolumestyl:[4,23],box:[4,14,15,18,23],boxdecorationbreak:[4,18],boxshadow:[4,18],boxsiz:[4,18],bracket:14,brand:14,brick:7,brickorang:7,brickr:7,brightaqua:7,brightblu:7,brightcyan:7,brightgreen:7,brightlavend:7,brightlightblu:7,brightlightgreen:7,brightlilac:7,brightlim:7,brightlimegreen:7,brightmagenta:7,brightol:7,brightorang:7,brightpink:7,brightpurpl:7,brightr:7,brightseagreen:7,brightskyblu:7,brightteal:7,brightturquois:7,brightviolet:7,brightyellow:7,brightyellowgreen:7,britishracinggreen:7,broken:[4,11,18],bronz:7,brown:7,browngreen:7,browngrei:7,brownish:7,brownishgreen:7,brownishgrei:7,brownishorang:7,brownishpink:7,brownishpurpl:7,brownishr:7,brownishyellow:7,brownorang:7,brownr:7,brownyellow:7,brownygreen:7,brownyorang:7,browser:[1,2,4,11,12,16],bruis:7,brvbar:7,bsd:[4,11],btn:6,btoa:[4,15],bubbl:[4,11,12],bubblegum:7,bubblegumpink:7,buff:7,bufferaccessor:[4,23],buffergeometri:[4,23],bufferview:[4,23],bug:[1,4,8,11],buggi:6,build:[1,6],built:[2,4,6,14,16,21],builtin:[2,4,19,21],bull:7,bunch:15,bundl:14,burgundi:7,burlywood:7,burntorang:7,burntr:7,burntsiena:7,burntsienna:7,burntumb:7,burntyellow:7,burpl:7,butter:7,butterscotch:7,butteryellow:7,button:[4,6,11,14,15],bytefac:[1,14],c0022f:7,c04e01:7,c071fe:7,c0737a:7,c0c0c0:7,c0fa8b:7,c14a09:7,c1c6fc:7,c1f80a:7,c1fd95:7,c20078:7,c27e79:7,c292a1:7,c2b709:7,c2be0e:7,c2ff89:7,c3909b:7,c3fbf4:7,c44240:7,c45508:7,c48efd:7,c4a661:7,c4fe82:7,c4fff7:7,c5c9c7:7,c65102:7,c69c04:7,c69f59:7,c6f808:7,c6fcff:7,c71585:7,c74767:7,c760ff:7,c77986:7,c79fef:7,c7ac7d:7,c7c10c:7,c7fdb5:7,c83cb9:7,c85a53:7,c875c4:7,c87606:7,c87f89:7,c88d94:7,c8aca9:7,c8ffb0:7,c94cbe:7,c95efb:7,c9643b:7,c9ae74:7,c9b003:7,c9d179:7,ca0147:7,ca6b02:7,ca7b80:7,ca9bf7:7,caa0ff:7,cab:5,cach:[4,5,9,11,12],cacl:5,cadassembl:[4,23],cadetblu:7,cadfac:[4,23],cadlay:[4,23],cadpart:[4,23],cafffb:7,cal:[4,19],call:[1,2,4,5,6,9,11,14,15,16,17,19,21],callabl:[4,9,15],callback:[2,4,9,15,22],caller:[4,19],camel:[2,4,7,18,21],camel_cas:[2,4,21],camelcas:[2,4,21],camera:23,camo:7,camogreen:7,camouflagegreen:7,can:[0,1,2,4,5,6,7,9,10,11,12,13,14,15,16,17,18,19,21,23],canari:7,canaryyellow:7,cancel:[4,11,12,15],candid:[2,4],candypink:7,cannot:[4,18],canplai:[4,11,12],canplaythrough:[4,11,12],canva:[4,8,14],cap:7,capabl:5,capit:[4,18],caps_lock:7,caption:[4,14,18],captionsid:[4,18],captur:[4,11,12],caramel:7,card:5,caret:[4,7,11],caretposit:[4,11],caretpositionfrompoint:[4,11],carmin:7,carnat:7,carnationpink:7,carolinablu:7,carrier:5,cartesian:[4,11],cartoonvolumestyl:[4,23],case_camel:[2,4,21],case_kebab:[2,4,21],case_snak:[2,4,21],cast:14,casual:13,cat:[4,19],cb00f5:7,cb0162:7,cb416b:7,cb6843:7,cb7723:7,cb9d06:7,cba560:7,cbf85f:7,cc7a8b:7,ccad60:7,ccedil:7,ccfd7f:7,cd5909:7,cd5c5c:7,cd7584:7,cd853f:7,cdatasect:[4,11],cdc50a:7,cdfd02:7,cdn:[1,23],cdn_css:[1,4],cdn_img:[1,4],cdn_j:[1,4,23],ce5da:7,cea2fd:7,ceaefa:7,ceb301:7,cedil:7,celadon:7,celeri:7,cell:[4,18],cement:7,cent:7,center:[4,14],ceris:7,certain:[2,4,5,9,18,21],certif:5,certreq:5,certutil:5,cerulean:7,ceruleanblu:7,cf0234:7,cf524e:7,cf6275:7,cfaf7b:7,cffdbc:7,cfff04:7,cflow:[4,19],chain:9,chainabl:9,chanc:[4,11,12],chang:[2,4,5,6,9,11,12,13,18,19,20,21],changefreq:[4,17],changelog:[],channel:[5,7],charact:[2,4,5,7,9,11,12,15,18,21],characterdata:[4,11],characterset:[4,11],charat:[4,15],charcoal:7,charcoalgrei:7,charcodeat:[4,15],charset:[4,11],chartreus:7,chcp:5,chdir:5,check:[0,1,2,4,5,7,9,11,15,21],checkmark:7,checknetisol:5,checkout:16,cherri:7,cherrypi:1,cherryr:7,chestnut:7,chglogon:5,chgport:5,chgrp:[4,19],chgusr:5,chi:7,child:[4,9,11],childelementcount:[4,11],childnod:[4,11],children:[4,9,11,14,23],chkdsk:5,chkntf:5,chmod:[4,19],chocol:7,chocolatebrown:7,choic:5,choos:16,chown:[4,19],chunk:[2,4,21],cim:5,cimprovid:5,cinnamon:7,cipher:5,circ:[7,20],circl:[4,7,23],circle2d:[4,23],cite:[4,14],cjk:[4,18],cksum:[4,19],clai:7,claret:7,clash:14,classless_css:[2,6],classlist:[4,11],classmethod:[2,4,21],classnam:[4,9,11,14],claybrown:7,clean:[2,4,14,21],clear:[4,15,18],clearblu:7,clearinterv:15,clearqueu:9,cleartimeout:[4,15],click:[4,6,9,11,12],client:[4,5,11,12],clientheight:[4,11],clientid:[4,11,12],clientleft:[4,11],clienttop:[4,11],clientwidth:[4,11],clip:[4,5,18],clipboard:[4,5,11,12],clipboarddata:[4,11,12],clipboardev:[4,11,12],clippath:4,clipplan:[4,23],clockwis:[4,18],clone:[9,14],clonenod:[4,11],close:[4,5,6,19],closed_tag:[4,14],closest:9,closing_curly_brac:7,closing_parenthesi:7,closing_square_bracket:7,cloud:1,club:7,cmd:[1,4,19],cmdcommand:5,cmdexcept:5,cmdkei:5,cmstp:5,cobalt:7,cobaltblu:7,cocoa:7,code:[0,1,4,5,6,9,11,14,15,16,19],codepoint:[4,15],codepointat:[4,15],coffe:7,col:[4,14],colgroup:[4,14],collaps:[4,18],collect:[4,9,11,15,18],collidableshap:[4,23],collis:[4,23],collisioncollect:[4,23],collisionsensor:[4,23],colon:7,color:[1,4,5,6,15,18,23],colorchas:[4,23],colordamp:[4,23],colordepth:[4,15],colorinterpol:[4,23],colormaskmod:[4,23],colorrgba:[4,23],column:[4,18],columncount:[4,18],columnfil:[4,18],columngap:[4,18],columnrul:[4,18],columnrulecolor:[4,18],columnrulestyl:[4,18],columnrulewidth:[4,18],columnspan:[4,18],columnwidth:[4,18],com:[1,2,4,5,6,10,11,14,15,16,17,21,22],combin:[4,9,15],come:[3,4,15,16],comm:[4,19],comma:[6,7],command:[1,4,7,14],comment:[0,4,5,9,11],commit:14,common:[1,5],commonsurfaceshad:[4,23],commun:[5,16],comp:5,compact:5,compar:[4,5,11],comparedocumentposit:[4,11],comparisonstr:[4,15],compat:[5,8],compgen:[4,19],compil:[4,5,15],complain:6,complet:[1,4,9,11,12,16,18,19],complex:[4,11,20],compon:[1,4,15,16],compopt:[4,19],composedcubemaptextur:[4,23],composedshad:[4,23],composedtexture3d:[4,23],composedvolumestyl:[4,23],compositionev:[4,11,12],comprehens:14,compress:[4,5,19],compris:[4,18],comput:[4,5,9,18],concat:[4,15],concaten:[4,11,15],concept:[2,4,21],condens:[4,18],condit:5,cone:[4,23],config:16,configur:[5,16],conflict:[4,16,17],cong:7,conjuct:[4,11],connect:[2,4,5,21],conserv:5,consid:[4,18],consist:[4,15],consol:[1,2,4,6,10],console_api:22,constant:[1,2,4,11,18],construct:[4,11,15],constructor:[4,15],consumpt:5,contain:[1,2,3,4,5,6,7,9,11,12,15,17,18,21,22],containt:3,content:[1,2,4,5,6,9,11,14,18,21],content_typ:16,contentedit:[4,11],contenttyp:9,context:9,contextmenu:[4,9,11,12],contrib:16,contribut:1,control:[5,7,9,17],convent:[4,15],convert:[2,3,4,5,7,8,9,11,14,15,18,19,21],cool:[4,11],coolblu:7,coolgreen:7,coolgrei:7,coordin:[4,9,11,23],coordinatedamp:[4,23],coordinatedoubl:[4,23],coordinateinterpol:[4,23],copi:[4,5,7,9,11,12,15],copper:7,copyright:7,copywithin:[4,15],coral:7,coralpink:7,corner:[4,11,18],cornflow:7,cornflowerblu:7,cornsilk:7,correctli:5,correspond:[4,15,18],cos:[4,20],could:[0,4,6,14,17],count:[4,11,15],counter:[4,5,18],counterincr:[4,18],counterreset:[4,18],countri:5,coverag:0,cowsai:[4,19],cranberri:7,crarr:7,cream:7,creat:[0,1,2,4,5,6,7,9,10,11,12,13,15,16,18,21],create_el:[4,14],createattribut:[4,11],createcdatasect:[4,11],createcom:[4,11],createdocumentfrag:[4,11],createel:[1,4,14],createelementn:[4,11],createev:[4,11],createnodeiter:[4,11],createprocessinginstruct:[4,11],createrang:[4,11],createtextnod:[4,11],createtreewalk:[4,11],creation:11,creator:[4,15],creme:7,crimson:7,cron:[1,4,19],crontab:[4,19],cross:[2,4,7],cscript:5,csplit:[4,19],css:[2,4,6,7,9,11,14,18,21],css_selector:[4,11],css_style:6,csscounterstylerul:[4,18],cssdocumentrul:[4,18],cssfloat:[4,18],cssfontfacerul:[4,18],cssfontfeaturevaluesrul:[4,18],cssimportrul:[4,18],csskeyframerul:[4,18],csskeyframesrul:[4,18],cssmediarul:[4,18],cssnamespacerul:[4,18],cssom:18,csspagerul:[4,18],cssprimitivevalu:[4,18],cssrule:[4,18],cssrulelist:[4,18],cssstyledeclar:[4,18],cssstylerul:[4,18],cssstylesheet:[4,18],csssupportsrul:[4,18],csstext:[4,18],cssviewportrul:[4,18],csv2json:[3,4],csv:[3,4],csv_filepath:[3,4],csvifi:[3,4],ctag:[4,19],ctty:5,cubic:20,cup:7,curl:[4,19],curren:7,current:[2,4,5,9,11,12,16,17,18,21,23],currentindex:[4,15],currentnod:[],currentvalu:[4,15],cursor:[4,18,23],curv:[4,18],curvedimag:23,custard:7,custom:[4,9,10,14,23],custom_el:14,custom_tag:[4,14],customev:[4,11,12],cut:[4,11,12,19],cxref:[4,19],cyan:7,cycl:[4,18],cylind:[4,23],cylindersensor:[4,23],d0c101:7,d0e429:7,d0fe1d:7,d0fefe:7,d1768f:7,d1b26f:7,d1ffbd:7,d2691e:7,d2b48c:7,d2bd0a:7,d3494e:7,d3_6_1_0:2,d3b683:7,d3d3d3:7,d46a7e:7,d4ffff:7,d5174e:7,d5869d:7,d58a94:7,d5ab09:7,d5b60a:7,d5ffff:7,d648d7:7,d6b4fc:7,d6fffa:7,d6fffe:7,d725de:7,d767ad:7,d7fffe:7,d8863b:7,d8bfd8:7,d8dcd6:7,d90166:7,d94ff5:7,d9544d:7,d99b82:7,da467d:7,da70d6:7,daa520:7,daemon:5,dagger:7,dai:[4,6,15],dandelion:7,dark:7,darkaqua:7,darkaquamarin:7,darkbeig:7,darkblu:7,darkbluegreen:7,darkbluegrei:7,darkbrown:7,darkcor:7,darkcream:7,darkcyan:7,darkforestgreen:7,darkfuchsia:7,darkgold:7,darkgoldenrod:7,darkgrai:7,darkgrassgreen:7,darkgreen:7,darkgreenblu:7,darkgrei:7,darkgreyblu:7,darkhotpink:7,darkindigo:7,darkishblu:7,darkishgreen:7,darkishpink:7,darkishpurpl:7,darkishr:7,darkkhaki:7,darklavend:7,darklilac:7,darklim:7,darklimegreen:7,darkmagenta:7,darkmaroon:7,darkmauv:7,darkmint:7,darkmintgreen:7,darkmustard:7,darknavi:7,darknavyblu:7,darkol:7,darkolivegreen:7,darkorang:7,darkorchid:7,darkpastelgreen:7,darkpeach:7,darkperiwinkl:7,darkpink:7,darkplum:7,darkpurpl:7,darkr:7,darkros:7,darkroyalblu:7,darksag:7,darksalmon:7,darksand:7,darkseafoam:7,darkseafoamgreen:7,darkseagreen:7,darkskyblu:7,darkslateblu:7,darkslategrai:7,darkslategrei:7,darktan:7,darktaup:7,darkteal:7,darkturquois:7,darkviolet:7,darkyellow:7,darkyellowgreen:7,darr:7,data:[1,2,3,4,5,6,9,10,11,12,15,16,17,21],databas:5,datalist:[4,14],dataset:[4,11],datastr:[4,15],datatransf:[4,11,12],datatyp:9,date:[4,5,15,17,18,19],date_str:[4,15],db5856:7,db7093:7,dbb40c:7,dblclick:[4,9,11,12],dblspace:5,dc143c:7,dc4d01:7,dcdcdc:7,dct:9,dd85d7:7,dda0dd:7,ddd618:7,de0c62:7,de7e5d:7,de9dac:7,deal:[4,16,18],deb887:7,debug:[5,10,16],decid:[2,4],decim:[4,15],declar:[2,4,11,18,19,21],decod:[4,15],decodeuri:[4,15],decodeuricompon:[4,15],decor:[1,3,18],decrypt:5,deep:[4,9,11],deepaqua:7,deepblu:7,deepbrown:7,deepgreen:7,deeplavend:7,deeplilac:7,deepmagenta:7,deeporang:7,deeppink:7,deeppurpl:7,deepr:7,deepros:7,deepseablu:7,deepskyblu:7,deepteal:7,deepturquois:7,deepviolet:7,def:[2,3,4,6,10,12,15,16,17,21],default_text:[4,15],defect:5,defer:9,defin:[4,5,11,13,15,18],defineproperti:[4,15],defrag:5,deg:7,del:[5,6],delai:[4,9,15,20],deleg:9,delet:[4,5,7,11,12,15,18,22],delete_count:[4,15],deletedata:[4,11],deleteproperti:[4,15],deleterul:[4,18],delim:[3,4],deliv:5,delta:[4,7,19],deltre:5,denim:7,denimblu:7,dentag:14,depend:[16,17],deprec:[2,4,11,15],depth:[4,15],depthmod:[4,23],dequeu:9,desc:4,descend:[4,9,11],describ:[4,11],descript:[2,4,5,7,11,15,21],descriptor:[4,15],desert:7,desktop:[5,16],destin:[4,18],detach:9,detail:[4,14,16],determin:[4,9,15,18],dev:[8,11],develop:[4,11,12,14,15,22],devic:5,df4ec8:7,dfc5fe:7,dfn:[4,14],diagnost:5,dialog:[4,15],diam:7,diamond:7,diantz:5,diarrhea:7,dict:[2,3,4,6,11,15,21],dictifi:[2,4,21],dictionari:[2,4,5,14,21],did:[4,20],didn:[6,16],die:9,diff:[4,19],differ:[4,5,7,11,14,15,17,18,20],digit:[2,4,15,21],dimens:2,dimension:[4,15],dimgrai:7,dimgrei:7,dir:[2,4,5,11,19,21],direct:[4,18],directionallight:[4,23],directli:[4,5,6,18,23],directori:[2,4,5,21],dirnam:[4,19],dirt:7,dirtbrown:7,dirtyblu:7,dirtygreen:7,dirtyorang:7,dirtypink:7,dirtypurpl:7,dirtyyellow:7,disabl:5,discard:[4,11],disclaim:[5,19],discourag:6,dish:[4,23],disk2d:[4,23],disk:5,diskcomp:5,diskcopi:5,diskpart:5,diskperf:5,diskraid:5,dism:5,disown:[4,19],dispatch:[1,4,11,12],dispatchev:12,dispdiag:5,displai:[4,5,6,9,11,15,18],dist:14,distanc:[4,18],div:[2,4,6,9,10,14,15,16,18],divid:[4,7,14,18],divis:5,divisor:14,django:1,djoin:5,dll:5,doc:[1,4,6,11,12,14,15,16,17,22],doctyp:[1,4,6,11,14],document:[4,6,9,11,12,13,14,16,18],documentfrag:[4,11],documenttyp:[4,11],dodecahedron:23,dodgerblu:7,doe:[2,4,5,7,14,15,16,19,21],doesn:[0,6,14],doing:[1,2,4],dollar_sign:7,dom:[0,1,8,9,12,14,16,17,18,21,22],dom_key_location_joystick:[4,11,12],dom_key_location_left:[4,11,12],dom_key_location_mobil:[4,11,12],dom_key_location_numpad:[4,11,12],dom_key_location_right:[4,11,12],dom_key_location_standard:[4,11,12],domain:[4,5,11,15],domexcept:[4,11],domimplement:[4,11],domon:[0,6,7,10,20],domonifi:14,dompoint:[4,11],dompointreadonli:[4,11],domquad:[4,11],domstr:[4,11,18],domstringmap:[4,11],domtimestamp:[4,11],domtokenlist:[4,11],don:[4,9,10,14,20],done:[4,5,15],dont:14,doskei:5,dosshel:5,dosx:5,dot:[2,4,21],doubleaxishingejoint:[4,23],down:[4,5,7,18],download:5,dqueri:[1,4,11,14],dquery_el:9,drab:7,drabgreen:7,drag:[4,11,12],dragend:[4,11,12],dragent:[4,11,12],dragev:[4,11,12],dragexit:[4,11,12],dragleav:[4,11,12],dragov:[4,11,12],dragstart:[4,11,12],draw:[4,18],driedblood:7,drive:5,driver:5,driverqueri:5,drop:[4,11,12,16,18],drvspace:5,dtd:[4,11],duckeggblu:7,due:[1,4,6,14,18],dullblu:7,dullbrown:7,dullgreen:7,dullorang:7,dullpink:7,dullpurpl:7,dullr:7,dullteal:7,dullyellow:7,dummyimag:2,dummysrc:2,dump:[3,4],dunder:14,duplic:[2,4,9,21],durat:[4,6,20],durationchang:[4,11,12],dure:5,dusk:7,duskblu:7,duskyblu:7,duskypink:7,duskypurpl:7,duskyros:7,dust:7,dustyblu:7,dustygreen:7,dustylavend:7,dustyorang:7,dustypink:7,dustypurpl:7,dustyr:7,dustyros:7,dustyt:7,dynam:1,dynamiclod:[4,23],e0ffff:7,e17701:7,e2ca76:7,e4cbff:7,e50000:7,e6daa6:7,e6e6fa:7,e6f2a2:7,e78ea5:7,e9967a:7,each:[4,9,11,15],eacut:7,earth:7,eas:[1,4],easein:[4,20],easeinout:20,easeout:20,easi:0,easier:7,eastergreen:7,easterpurpl:7,ec2d01:7,ececec:23,echo:[4,5,19],ecifi:[4,18],ecirc:7,ecru:7,ect:[4,18],ed0dd9:7,edc8ff:7,edg:[4,18],edgeenhancementvolumestyl:[4,23],edit:[0,1,4,5,11,14,16],editor:5,edlin:5,ee82e:7,eecff:7,eedc5b:7,eee8aa:7,ef1de7:7,ef2d5:23,ef4026:7,efb435:7,efc0f:7,effect:[4,5,18,19],efin:[4,18],eggplant:7,eggplantpurpl:7,eggshel:7,eggshellblu:7,egrav:7,eight:7,either:[2,4,11,15,21],el_str:14,elapsedtim:[4,11,12],elast:20,electricblu:7,electricgreen:7,electriclim:7,electricpink:7,electricpurpl:7,element:[1,2,4,6,9,10,11,12,15,21,23],elementfrompoint:[4,11],elementid:6,elementsfrompoint:[4,11],elemnt:[4,15],eleuth:[4,15],elevationgrid:[4,23],ellips:4,els:[7,14,15],eltindex:4,emb:[4,11,14],embed:[4,18],emerald:7,emeraldgreen:7,emit:[],emm386:5,empti:[4,7,9,11,12,18],emptycel:[4,18],enabl:[4,5,19],encod:[1,4,9,11,15,17],encodecompon:15,encodeuri:[4,15],encodeuricompon:[4,15],encoding_api:22,encourag:0,encrypt:5,end:[1,2,4,5,7,9,11,12,15,21,23],endloc:5,endpoint:[6,16],endswith:[4,15],energi:5,engin:[5,20],enjoi:15,enough:16,ensur:5,enter:[4,7,9,10,11,12],entir:[4,5,11,16,18],entiti:[4,7,11,23],entityreferenceexpans:[4,11],entri:[2,4,5,10,11,12,15,22],enumer:[9,19],env:[4,19],environ:[4,5,23],environment:5,epoch:[4,11],epsilon:7,equal:[4,7,11],equals_sign:7,equat:[1,4],equiv:7,equival:[4,15,18],eras:5,err:[2,4,10,15],error:[1,2,4,5,9,10,11,12,14,15,19],errorev:[4,11,12],es2021:[4,15],escap:[2,4,7,16,21],escapeselector:9,esentutl:5,eserv:[4,18],establish:[4,18],eta:7,etc:[1,2,4,11,13,15,17,21],eth:7,euml:7,euro:7,eval:[4,15],evalu:[4,5,15],even:[9,15,16],even_numb:[4,15],event:[1,5,8,9],event_typ:[4,11],eventarg:9,eventcr:5,eventdispatch:[4,11,12],eventnam:9,eventtarget:[4,11],eventtrigg:5,eventu:[1,15,19],evergreen:7,everi:[4,6,9,15],everyon:10,evolv:[1,11],evt:12,exampl:[0,4,5,6,11,12,14,16,17,18],except:[4,5,6,9,11,14,15,18,19],exchang:5,exclamation_mark:7,exclud:[4,11,15],exe2bin:5,execut:[4,5,9,11,15,18],exist:[2,4,5,7,9,11,15,18,22],exit:[2,4,10,11,12,19],exitfullscreen:[4,11],exmapl:11,expand:[4,5,18,19],expandentityrefer:[4,11],expect:[0,8],experienc:[0,6],explicitli:11,expo:20,exponenti:[4,15],expos:[4,16,18],expr:[4,15,19],express:[4,5,15],extend:[4,5,9,11,12,14,15,18,22],extendableev:[4,11,12],extens:5,extern:2,extrac32:5,extract:[4,5,15],extrus:[4,23],ezcron:1,f075e6:7,f08080:7,f0833a:7,f0944d:7,f0e68c:7,f0f8ff:7,f0fff0:7,f0ffff:7,f10:7,f10c45:7,f11:7,f12:7,f13:7,f14:7,f15:7,f1da7a:7,f1f33f:7,f29e8e:7,f2ab15:7,f36196:7,f4320c:7,f43605:7,f4a460:7,f4d054:7,f504c9:7,f5054f:7,f5bf03:7,f5deb3:7,f5f5dc:7,f5f5f5:7,f5fffa:7,f6688e:7,f6cefc:7,f7022a:7,f7879a:7,f7d560:7,f8481c:7,f8f8ff:7,f97306:7,f9bc08:7,fa2a55:7,fa4224:7,fa5ff7:7,fa8072:7,fa83bf1a5e225f6934a1ad38d092fc6baf3c4934:14,face:[4,18],factor:5,factori:9,fade:9,fadedblu:7,fadedgreen:7,fadedorang:7,fadedpink:7,fadedpurpl:7,fadedr:7,fadedyellow:7,fadein:9,fadeout:9,fadeto:9,fadetoggl:9,faebd7:7,faee66:7,faf0e6:7,fafad2:7,fafe4b:7,fail:[2,4],failur:9,fakeimg:2,fallback:[4,18],fals:[2,4,7,9,10,11,12,14,15,20,21],falsi:[2,4,21],famili:[4,18],familiar:15,fanci:15,fast:[1,14],fastapi:1,fasthelp:5,fastopen:5,fat32:5,fat:5,favour:[],fawn:7,fb2943:7,fb5581:7,fb5ffc:7,fb7d07:7,fbdd7e:7,fbeeac:7,fc2647:7,fc5a50:7,fc824a:7,fc86aa:7,fcb001:7,fcc006:7,fce166:7,fcf679:7,fcfc81:7,fd3c06:7,fd4659:7,fd5956:7,fd798f:7,fd8d49:7,fdaa48:7,fdb0c0:7,fdb147:7,fdb915:7,fdc1c5:7,fddc5c:7,fdde6c:7,fdee73:7,fdf5e6:7,fdfdfe:7,fdff38:7,fdff52:7,fdff63:7,fdisk:5,fe0002:7,fe019a:7,fe01b1:7,fe02a2:7,fe2c54:7,fe2f4a:7,fe420f:7,fe46a5:7,fe4b03:7,fe7b7c:7,fe828c:7,fe86a4:7,fea993:7,featur:[2,5,15],feb209:7,feb308:7,feblend:4,fec615:7,fecolormatrix:4,fecomponenttransf:4,fecomposit:4,feconvolvematrix:4,fed0fc:7,fedf08:7,fediffuselight:4,fedisplacementmap:4,fedistantlight:4,fedropshadow:4,feel:[0,1,18],fef69:7,fefcaf:7,fefef:6,feff7f:7,feffca:7,feflood:4,fefunca:4,fefuncb:4,fefuncg:4,fefuncr:4,fegaussianblur:4,feimag:4,femal:7,femerg:4,femergenod:4,femorpholog:4,feoffset:4,fepointlight:4,fern:7,ferngreen:7,fespecularlight:4,fespotlight:4,fetch:[1,4,11,12,16],fetch_api:22,fetch_pool:15,fetch_set:15,fetch_thread:15,fetchev:[4,11,12],fetil:4,feturbul:4,few:[1,6,7,10],ff0000:[2,7],ff000d:7,ff00ff:7,ff028d:7,ff0490:7,ff073a:7,ff0789:7,ff08e8:7,ff1493:7,ff4500:7,ff474c:7,ff5b00:7,ff6163:7,ff6347:7,ff63e9:7,ff69af:7,ff69b4:7,ff6cb5:7,ff6f52:7,ff724c:7,ff7700:2,ff7855:7,ff796c:7,ff7f50:7,ff7f7f:2,ff7fa7:7,ff81c0:7,ff8c00:7,ff9408:7,ff964f:7,ff9a8a:7,ffa07a:7,ffa500:7,ffa62b:7,ffa756:7,ffab0f:7,ffad01:7,ffb07c:7,ffb16d:7,ffb19a:7,ffb2d0:7,ffb6c1:7,ffb7ce:7,ffbacd:7,ffc0cb:7,ffc512:7,ffc5cb:7,ffc65d:23,ffcfdc:7,ffd1df:7,ffd700:7,ffd8b1:7,ffda03:7,ffdab9:7,ffdead:7,ffdf22:7,ffe36:7,ffe4b5:7,ffe4c4:7,ffe4e1:7,ffe5ad:7,ffebcd:7,ffefd5:7,fff0f5:7,fff39a:7,fff4f2:7,fff5ee:7,fff8dc:7,fff917:7,fff9d0:7,fff:2,fffa86:7,fffacd:7,fffaf0:7,fffafa:7,fffcc4:7,fffd01:7,fffd37:7,fffd74:7,fffd78:7,fffe40:7,fffe71:7,fffe7a:7,fffeb6:7,ffff00:7,ffff14:7,ffff7e:7,ffff81:7,ffff84:7,ffffb6:7,ffffc2:7,ffffcb:7,ffffe0:7,ffffe4:7,fffff0:7,ffffff:7,ffmpeg:[4,19],ffset:[4,18],field:[4,23],fieldset:[4,14],figcapt:[4,14],figlet:[4,19],figur:[4,14],file:[0,1,2,3,4,5,6,9,11,14,15,16,19,21],filenam:[2,4,9,14,21],fill:[4,15,18],fillmurrai:2,filter:[4,5,9,11,15,18],find:[0,1,2,4,5,9,15,16,19,21],findindex:[4,15],findstr:5,finger:[4,5,19],finish:[4,9,15],finit:[4,15],fire:9,firebrick:7,fireengin:7,firefox:[4,18],first:[2,4,5,6,9,10,11,15,18,21,22,23],firstchild:[4,11],firstelementchild:[4,11],firstli:0,fit:[4,18],five:7,fix:[1,4,6,11,15,18],flask:[1,6],flat:[2,3,4,7,15,21],flatblu:7,flatgreen:7,flatmap:[4,15],flatten:[2,3,4,14,15,21],flex:[4,18],flexbasi:[4,18],flexdirect:[4,18],flexflow:[4,18],flexgrow:[4,18],flexibl:[4,18],flexshrink:[4,18],flexwrap:[4,18],floatvertexattribut:[4,23],floralwhit:7,fltmc:5,fluorescentgreen:7,flurogreen:7,fnof:7,foamgreen:7,focu:[4,9,11,12],focusev:[4,11,12],focusin:[4,9,11,12],focusout:[4,9,11,12],fog:[4,23],fold:[4,19],folder:[0,1,5,11,16],follow:[4,6,7,9,11,15,17],fondu:5,font:[2,4,6,14,15,18],fontawesome_5_7_1:2,fontcolor:[4,15],fontfamili:[4,18],fontsiz:[4,15,18],fontsizeadjust:[4,18],fontstretch:[4,18],fontstyl:[4,18,23],fontvari:[4,18],fontweight:[4,18],foo:[4,11],footer:[4,14],foral:7,forc:[4,10,11,18],forcedo:5,foreach:[4,11,15,22],foreignobject:4,forest:7,forestgreen:7,forfil:5,forget:14,fork:14,form:[4,5,7,9,11,14],format:[1,2,4,5,14,15,21],formatt:[4,14,15],formdata:[],forrestgreen:7,fort77:[4,19],forward:5,found:[2,4,6,9,11,15,21],four:[4,7,11,15,18],frac12:7,frac13:7,frac14:7,frac15:7,frac16:7,frac18:7,frac23:7,frac25:7,frac34:7,frac35:7,frac38:7,frac45:7,frac56:7,frac58:7,frac78:7,fraction_chang:23,fragment:9,frame:[4,15],framework:16,free:[0,1,18],frenchblu:7,frequenc:[2,4,21],freshgreen:7,friend:15,froggreen:7,from:[1,2,3,4,5,6,7,8,9,10,11,12,14,15,16,17,18,19,20,21,22,23],from_:[4,15],fromcharcod:[4,15],fromcodepoint:[4,15],fromhex:7,fromindex:[4,15],fromrgba:7,fsutil:5,ftp:5,ftype:5,fuchsia:7,full:11,fulli:9,fullscreen:[4,11],fullscreenchang:[4,11,12],fullscreenel:[4,11],fullscreenen:[4,11],fullscreenerror:[4,11,12],fun:[10,16],func:[2,3,4,6,9,11,15,22],further:[4,11,12,18],fuser:[4,19],futur:9,gainsboro:7,game:20,gamepadconnect:[4,11,12],gamepaddisconnect:[4,11,12],gamepadev:[4,11,12],gamma:7,gap:[4,18],gcc:[4,19],gen:[2,4,21],gencat:[4,19],gener:[4,5,9,11,12,14,16,17,18,23],generatedcubemaptextur:[4,23],geo:[],geocoordin:[4,23],geoelevationgrid:[4,23],geoloc:[4,23],geolod:[4,23],geom:1,geometadata:[4,23],geoorigin:[4,23],geopositioninterpol:[4,23],geotransform:[4,23],geoviewpoint:[4,23],get:[0,1,2,4,6,7,9,11,14,15,16,18,19,21,22],get_tim:1,get_vowel:[2,4,21],getal:[4,15,22],getattr:6,getattribut:[4,11],getattributen:[4,11],getattributenod:[4,11],getattributenoden:[4,11],getboundingclientrect:[4,11],getcomputedstyl:[4,18],getconf:[4,19],getdai:[4,15],getdat:[4,15],getelementbyid:[4,11,16],getelementsbyclassnam:[4,11],getelementsbynam:[4,11],getelementsbyselector:[4,11],getelementsbytagnam:[4,11],getfullyear:[4,15],gethour:[4,15],getjson:9,getlogg:[2,4],getmac:5,getmillisecond:[4,15],getminut:[4,15],getmonth:[4,15],getnameditem:[4,11],getnameitemn:[4,11],getnexts:[],getopt:[4,19],getownpropertydescriptor:[4,15],getpreviouss:[],getpropertycssvalu:[4,18],getpropertyprior:[4,18],getpropertyvalu:[4,18],getprototypeof:[4,15],getscript:9,getsecond:[4,15],getselect:[4,11],gettargetrang:[4,11,12],gettim:[4,15],gettimezoneoffset:[4,15],getutcd:[4,15],getutcdai:[4,15],getutcfullyear:[4,15],getutchour:[4,15],getutcmillisecond:[4,15],getutcminut:[4,15],getutcmonth:[4,15],getutcsecond:[4,15],getyear:[4,15],ghostwhit:7,git:[4,19],github:[0,1,2,4,14],give:[4,11,12,14],given:[2,4,6,9,11,15,18,20,21,22],global:[4,9,11,15],globalev:9,gltf:23,gltf_model:23,glyph:4,glyphref:4,going:[4,15],gold:7,golden:7,goldenbrown:7,goldenrod:7,goldenyellow:7,good:21,googl:[1,2,4,10,15,21,22],gpresult:5,gpupdat:5,gradual:11,graftabl:5,grai:7,grant:23,grape:7,grapefruit:7,grapepurpl:7,graphic:5,grass:7,grassgreen:7,grassygreen:7,grave_acc:7,great:16,greater_than:7,green:[6,7],greenappl:7,greenblu:7,greenbrown:7,greengrei:7,greenish:7,greenishbeig:7,greenishblu:7,greenishbrown:7,greenishcyan:7,greenishgrei:7,greenisht:7,greenishtan:7,greenishturquois:7,greenishyellow:7,greenteal:7,greenyblu:7,greenybrown:7,greenyellow:7,greenygrei:7,greenyyellow:7,grei:7,grep:[4,9,19],greyblu:7,greybrown:7,greygreen:7,greyish:7,greyishblu:7,greyishbrown:7,greyishgreen:7,greyishpink:7,greyishpurpl:7,greyisht:7,greypink:7,greypurpl:7,greyteal:7,grossgreen:7,group:[4,5,19,23],groupadd:[4,19],groupdel:[4,19],grow:[4,15,18],gui:16,gunmet:7,gunzip:[4,19],gzip:[4,19],had:1,halt:[4,15],hand:10,handl:[4,9,11,12,16,18],handler:[2,4,9,15],handwrit:5,hang:[5,15],hangingpunctu:[4,18],hanimdisplac:[4,23],hanimhumanoid:[4,23],hanimjoint:[4,23],hanimseg:[4,23],hanimsit:[4,23],happen:[4,12,18],happi:[2,4],hard:5,harr:7,has:[0,2,4,5,8,9,11,12,15,16,17,20,22],has_internet:[2,4,21],hasalpha:7,hasattribut:[4,11],haschildnod:[4,11],hasclass:9,hasdata:9,hash:[4,15,22],hashchang:[4,11,12],hashchangeev:[4,11,12],hatch:4,hatchpath:4,have:[0,2,4,5,6,7,9,10,11,14,15,16,18,20,21],hazel:7,hdd:5,head:[4,6,9,11,14,16,19,23],header:[4,14],heart:7,heather:7,height:[2,4,6,9,11,15,18],heliotrop:7,hellip:7,hello:[1,11,14,15,16,22,23],hello_world:16,helloworld:16,help:[0,1,4,5,15,17],here:[0,1,2,4,6,11,16,17],hex2rgb:7,hex:7,hgroup:[4,14],hidden:[4,11],hide:9,high:5,highlightergreen:7,histori:[4,11,12,19],hkern:4,hold:[4,9,15],holdreadi:9,home:[6,7],homepag:[6,16],honeydew:7,hook:14,horizont:[4,9,11,18],horthand:[4,18],hospitalgreen:7,host:[4,5,11,15,16,22],hostnam:5,hotgreen:7,hotmagenta:7,hotpink:7,hotpurpl:7,hour:[4,15],hover:9,how:[0,1,4,11,14,16,17,18,20],href:[4,11,14,18],hsl:7,hsv:7,html5:14,html5print:14,html:[0,3,6,8,9,10,11,16,17,23],htmlbeautifi:14,htmlelement:[4,18],htmlprefilt:9,htmlrespons:16,http:[1,2,4,6,9,10,11,12,14,15,16,17,21,22,23],httprespons:16,huge:0,huntergreen:7,hwrcomp:5,hwrreg:5,hypen:[4,14],hyphen:[4,7,14,18],hypot:[4,15],iacut:7,icacl:5,ice:7,iceblu:7,icirc:7,ickygreen:7,icon:[4,18],iconv:[4,19],icosahedron:23,idea:[],ident:[4,18],identifi:[4,15],idiom:[2,4,21],idl:5,iexcl:7,ifconfig:[4,6,19],iff:10,ifram:[4,14],ignor:[2,4,21],igrav:7,iif:[2,4,10],illeg:[4,15],imag:[2,4,5,11,17,18,23],imageorient:[4,18],imagetextur:[4,23],imagetexture3d:[4,23],imagetextureatla:[4,23],img:[2,4,11,14,21],immedi:[2,4,9,10,11,15],implement:[4,5,11,15,18],implicit:[2,4,21],implicitli:[2,4,21],importnod:[4,11],improv:[4,18],inarrai:9,inc:15,includ:[4,5,9,11,15,18],increas:0,increment:[4,18],indent:[4,14,18],index:[1,2,4,6,9,11,14,15,16,17,18,21],indexedfaceset:[4,23],indexedlineset:[4,23],indexedquadset:[4,23],indexedtriangleset:[4,23],indexedtrianglestripset:[4,23],indexerror:6,indexof:[4,15],indianr:7,indic:[4,5,11,15,18,22],indigo:7,indigoblu:7,individu:[4,5,15],inf:[4,15],infin:[4,7,15],info:[2,4,14],infor:17,inform:[1,4,5,18,22],infrar:5,inherit:[4,15,18,23],ini:5,init:9,init_asset:[2,4,21],initi:[4,15,18],initialvalu:[4,15],inlin:[4,6,14,18,23],inner:[4,6,9,15],innerheight:9,innerhtml:[4,6,11,16,23],innerwidth:9,inp:[4,14],inpsir:14,input:[3,4,5,6,9,11,12,14,15],inputev:[4,11,12],ins:[4,14],insert:[4,7,9,11,12,15,18],insertadjacentel:[4,11],insertadjacenthtml:[4,11],insertadjacenttext:[4,11],insertaft:9,insertbefor:[4,9,11],insertdata:[4,11],insertrul:[4,18],insid:[4,18],instal:[5,16],instanc:[2,4,5,11,15,18,21],instead:[2,3,4,6,10,11,14,15,18,23],instruct:1,instrument:5,integ:[4,15,18],integr:[2,4,5],intend:[4,18],inter:14,interfac:[4,5,11,18],interlnk:5,intern:[4,11,15],internalsubset:[4,11],internet:[2,4,21],interpret:5,intersvr:5,interv:[4,15],invalid:[4,6,11,12],invok:[4,9,15],inward:[4,18],ioloop:16,iota:7,ipc:[4,19],ipconfig:[4,5,19],ipcrm:[4,19],ipsumimag:2,ipx:5,ipxrout:5,iquest:7,irftp:5,iri:7,irishgreen:7,irrevers:14,is_json:3,isarrai:[4,9,15],iscontentedit:[4,11],iscsi:5,iscsicli:5,isdefaultnamespac:[4,11],isemptyobject:9,isequalnod:[4,11],isfinit:[4,15],isfunct:9,isin:7,isindex:[4,14],isinteg:[4,15],isn:16,isnan:[4,15],isnumer:9,iso:[4,15],isol:[4,18],isosurfacevolumedata:[4,23],isplainobject:9,isreject:[4,11,12],isreload:[4,11,12],issafeinteg:[4,15],issamenod:[4,11],issu:[0,14],iswindow:9,isxmldoc:9,ital:[4,15,18],itb:14,item:[2,3,4,9,11,12,14,15,18,21],itemnam:14,iter:[2,4,9,11,15,18,21,22],its:[2,4,6,9,11,15,18,22,23],itself:9,iuml:7,ivori:7,jade:7,jadegreen:7,jan:[4,15],januari:[4,15],java:[2,4,21],javascript:[1,2,6,8,9,16,18,22],jinja:16,job:[4,14,15,19],join:[0,4,11,14,15,19],jqueri:6,jquery_3_5_1:2,jquery_ui:2,js_master:6,json:[1,9,15,18],json_data:3,json_filepath:[3,4],jsref:[4,15],jsref_refer:[4,15],jsworker:[4,15],junglegreen:7,just:[0,1,2,4,5,6,10,11,12,14,16,18,19,20,23],justif:[4,18],justifi:[4,18],justifycont:[4,18],kappa:7,kb16:5,kbd:[4,14],kebab:[2,4,21],keep:[4,11],kei:[2,4,9,11,12,15,18,21,22],kelleygreen:7,kellygreen:7,ken:6,kerbero:5,kermitgreen:7,kernel:5,keyb:5,keyboard:[4,5,7,11,12],keyboardev:[4,11,12],keycod:1,keydown:[4,9,11,12],keyfram:[4,18],keygen:[4,14],keylim:7,keypress:[4,9,11,12],keyup:[4,9,11,12],keyword:[1,4,6,14],keywordimg:2,khaki:7,khakigreen:7,kick:6,kill:[4,19],killal:[4,19],kind:16,kiwi:7,kiwigreen:7,klist:5,know:[4,10,15,17],ksetup:5,ktmutil:5,kwarg:[2,4,5,6,7,9,11,12,14,15,17,18,19,22,23],label:[4,5,14],lai:[4,18],lambda:[1,2,3,4,6,7,10,15],lambda_funct:16,lang:[4,11],languag:[4,5,18],laquo:7,larg:6,larger:6,larr:7,last:[4,6,9,11,12,15,18],lastchanc:[4,11,12],lastchild:[4,11],lastelementchild:[4,11],lastindex:15,lastindexof:[4,15],lastmod:[4,17],latenc:5,later:[2,4],latest:[2,4,22],launch:1,launcher:6,lavend:7,lavenderblu:7,lavenderblush:7,lavenderpink:7,lawngreen:7,layout:[4,18],lceil:7,ldquo:7,leaf:7,leafgreen:7,leafygreen:7,leather:7,leav:[4,9,11,12],left:[4,6,7,11,15,18],left_curly_brac:7,left_parenthesi:7,leftbracket:7,legend:[4,14],lemon:7,lemonchiffon:7,lemongreen:7,lemonlim:7,lemonyellow:7,len:15,length:[2,4,9,11,15,18,21],lerp:[4,20],lerpi:[4,20],less:[4,19],less_than:7,let:[2,4,5,10,14,15,19,22],letter:[2,4,5,15,18,21],letterspac:[4,18],level:[2,4,11,16,18],leverag:14,lex:[4,19],lfloor:7,lib:[2,4],librai:21,librari:[1,8,14,23],licenc:5,licens:[4,11,19],licensingdiag:5,lichen:7,life:[7,10],light:23,lightaqua:7,lightaquamarin:7,lightbeig:7,lightblu:7,lightbluegreen:7,lightbluegrei:7,lightbluishgreen:7,lightbrightgreen:7,lightbrown:7,lightburgundi:7,lightcor:7,lightcyan:7,lighteggpl:7,lightergreen:7,lighterpurpl:7,lightforestgreen:7,lightgold:7,lightgoldenrodyellow:7,lightgrai:7,lightgrassgreen:7,lightgreen:7,lightgreenblu:7,lightgreenishblu:7,lightgrei:7,lightgreyblu:7,lightgreygreen:7,lightindigo:7,lightishblu:7,lightishgreen:7,lightishpurpl:7,lightishr:7,lightkhaki:7,lightlavend:7,lightlavendar:7,lightlightblu:7,lightlightgreen:7,lightlilac:7,lightlim:7,lightlimegreen:7,lightmagenta:7,lightmaroon:7,lightmauv:7,lightmint:7,lightmintgreen:7,lightmossgreen:7,lightmustard:7,lightnavi:7,lightnavyblu:7,lightneongreen:7,lightol:7,lightolivegreen:7,lightorang:7,lightpastelgreen:7,lightpeach:7,lightpeagreen:7,lightperiwinkl:7,lightpink:7,lightplum:7,lightpurpl:7,lightr:7,lightros:7,lightroyalblu:7,lightsag:7,lightsalmon:7,lightseafoam:7,lightseafoamgreen:7,lightseagreen:7,lightskyblu:7,lightslategrai:7,lightslategrei:7,lightsteelblu:7,lighttan:7,lightteal:7,lightturquois:7,lighturpl:7,lightviolet:7,lightyellow:7,lightyellowgreen:7,lightyellowishgreen:7,like:[0,1,4,6,8,9,11,12,15,16,17,18],lilac:7,liliac:7,lime:7,limegreen:7,limeyellow:7,limit:[5,17],line:[1,4,5,11,18,19],linear:[4,20],lineargradi:4,lineheight:[4,18],linen:7,lineproperti:[4,23],lineset:[4,23],link:[2,4,5,6,11,14,15,19,22],linkedin:15,linux:1,lipstick:7,lipstickr:7,list:[0,1,2,3,4,5,6,9,11,15,16,17,18,21,22],listen:[12,16],liststyl:[4,18],liststyleimag:[4,18],liststyleposit:[4,18],liststyletyp:[4,18],littl:[7,17],live:[4,9,18],llow:[4,18],load:[1,4,5,9,11,12,15,17,19],loadeddata:[4,11,12],loadedmetadata:[4,11,12],loader:5,loadfix:5,loadhigh:5,loadstart:[4,11,12],lobster:2,loc:[4,17],local:[2,4,5,15,19],localecompar:[4,15],localedef:[4,19],localhost:16,localnam:[4,11],locat:[4,5,18],lock:5,lod:[4,23],lodctr:5,log2:[4,15],log:[2,4,5,6,10,14,22],logarithm:[4,15],logger:[2,4,19],login:5,loglp:[4,15],logman:5,lognam:[4,19],logoff:5,logon:5,logout:[4,19],look:[1,5,6,14,15,17,19],lookupnamespaceuri:[4,11],lookupprefix:[4,11],loop:[4,6,11,17,18,20],lorempixel:2,loss:5,lost:5,lot:[6,13,16],love:10,lowast:7,lowercas:[2,4,15,21],lowercase_:7,lowercase_a:7,lowercase_b:7,lowercase_c:7,lowercase_d:7,lowercase_f:7,lowercase_g:7,lowercase_h:7,lowercase_i:7,lowercase_j:7,lowercase_k:7,lowercase_l:7,lowercase_m:7,lowercase_n:7,lowercase_o:7,lowercase_p:7,lowercase_q:7,lowercase_r:7,lowercase_t:7,lowercase_u:7,lowercase_v:7,lowercase_w:7,lowercase_x:7,lowercase_z:7,loz:7,lpd:5,lpq:5,lpr:5,lpt:5,lsaquo:7,lsquo:7,lst:[2,4,21],mac:[1,5],macaroniandchees:7,mach:[4,11],macr:7,macro:5,made:[4,11],magenta:7,magic:1,magnum:16,mahogani:7,mai:[4,6,10,11,14,15,18],mailx:[4,19],main:[2,4,14],mainhandl:16,maintain:[4,18],maiz:7,make:[0,4,5,6,7,9,10,11,15,16,17,18,19,20],make_app:16,make_serv:16,make_wsgi_app:16,makearrai:9,makecab:5,makefil:0,male:7,man:[4,19],manag:[5,9,16],mango:7,mangum:16,mani:[4,15,18],manilla:7,manipul:[1,8,9,17],manual:11,map:[3,4,9,15],mapfil:[4,19],mar:[4,11],margin:[4,6,9,18],marginbottom:[4,18],marginleft:[4,18],marginright:[4,18],margintop:[4,18],marigold:7,marin:7,marineblu:7,mark:[2,4,14,18],marker:[4,5,18],marketplac:14,maroon:7,marx:[2,6],mask:4,master:5,match:[2,4,5,9,11,15,18,21],match_info:16,matchal:[4,15],materi:[4,23],math:[4,6,15,20],matrix:[4,13],matrixtexturetransform:[4,23],matrixtransform:[4,23],mauv:7,max:[2,4,21],maxheight:[4,18],maximum:[4,18],maxwidth:[4,18],mayb:1,mdash:7,mdi_5_4_55:2,mdn:22,mean:[4,11,14],meant:10,media:[4,5,14,18],medialist:[4,18],medium:[4,18],mediumaquamarin:7,mediumblu:7,mediumbrown:7,mediumgreen:7,mediumgrei:7,mediumorchid:7,mediumpink:7,mediumpurpl:7,mediumseagreen:7,mediumslateblu:7,mediumspringgreen:7,mediumturquois:7,mediumvioletr:7,melon:7,mem:5,memmak:5,memori:5,mention:14,menu:[4,14],merg:[0,1,2,4,9,21],merge_dictionari:[2,4,21],merlot:7,mesg:[4,19],mesh:[4,23],messag:[4,5,11,12,14,15,19],meta:[4,14],metadataboolean:[4,23],metadatadoubl:[4,23],metadatafloat:[4,23],metadatainteg:[4,23],metadataset:[4,23],metadatastr:[4,23],metallicblu:7,meter:[4,14],method:[0,1,2,4,7,9,10,11,12,17,18,20,21,22,23],mgesbert:14,mho:7,micro:7,microsoft:5,midblu:7,middl:14,midgreen:7,midnight:[4,7,15],midnightblu:7,midnightpurpl:7,might:[6,17],militarygreen:7,milkchocol:7,milligram_1_3_0:2,millisecond:[4,11,15,18],mimetyp:16,mimic:15,min:[6,14],minheight:[4,18],minim:[5,17],minimum:[4,18],mint:7,mintcream:7,mintgreen:7,mintygreen:7,minu:[7,14],minut:[4,15],minwidth:[4,18],mirror:[4,15],miss:[1,6,21],mistak:6,mistyros:7,mix:[2,4,6,21],mixin:23,mkdir:[4,5,19],mkfifo:[4,19],mkfile:[4,19],mklink:5,moccasin:7,mocha:7,modal:6,mode:[4,5,11],model:5,modernizer_2_8_3:2,modifi:[4,5,9,11,15,18],modul:[1,2,4,6,11],mof:5,mofcomp:5,moment_2_27_0:2,monitor:5,month:[4,15],monthli:17,moo:19,more:[1,2,3,4,5,9,10,11,14,15,16,18,19,21,22],moss:7,mossgreen:7,mossygreen:7,most:[1,6,9,11],mostli:[4,18,21],motion:9,motorjoint:[4,23],mount:5,mountvol:5,mous:[4,9,11,12,18],mousedown:[4,9,11,12],mouseent:[4,9,11,12],mouseev:[4,11,12],mousei:12,mouseleav:[4,9,11,12],mousemov:[4,9,11,12],mouseout:[4,9,11,12],mouseov:[4,9,11,12],mouseup:[4,9,11,12],mousex:12,move:[4,5,11,22,23],movietextur:[4,23],moz:14,mozilla:[4,11,12,15,22],mpath:4,mprplane:[4,23],mprvolumestyl:[4,23],mrinfo:5,msav:5,msbackup:5,mscdex:5,msd:5,msg:[4,5,9,15],msiexec:5,much:[4,18],mud:7,mudbrown:7,muddybrown:7,muddygreen:7,muddyyellow:7,mudgreen:7,mui:5,muiunattend:5,mulberri:7,mulithread:15,multi:[9,15],multilingu:5,multipl:[4,5,9,18],multipli:14,multitextur:[4,23],multitexturecoordin:[4,23],murkygreen:7,mushroom:7,must:[2,4,11,18,23],mustard:7,mustardbrown:7,mustardgreen:7,mustardyellow:7,mutedblu:7,mutedgreen:7,mutedpink:7,mutedpurpl:7,mvp:2,my_class:6,my_compon:6,my_handl:12,myarr:15,mybrand:14,mycoolproject:1,mydata:15,mydiv:14,mydom:[1,11,14],myelement:[11,14],mylist:14,myobj:[3,14],myorderedlist:14,mypag:17,mysit:[11,16],mystr:15,mytabl:[3,9],mytag:[15,18],myth:14,myurl:22,mywebpag:16,nabla:7,name:[2,3,4,5,6,9,11,12,14,15,16,18,21],namednodemap:[4,11],namespac:[4,11,17],namespaceuri:[4,11],nan:[4,15],nastygreen:7,natur:[4,7,15],nautilu:[4,19],nav:[4,14],navajowhit:7,navdown:[4,18],navi:7,navig:[0,4,14,18],navigationinfo:[4,23],navindex:[4,18],navleft:[4,18],navright:[4,18],navup:[4,18],navyblu:7,navygreen:7,nbsp:7,nbtstat:5,ndash:7,need:[1,2,4,6,9,11,12,14,15,16,17,19,23],neg:[4,15],negative_infin:[4,15],neither:[2,4,21],neonblu:7,neongreen:7,neonpink:7,neonpurpl:7,neonr:7,neonyellow:7,nest:[2,4,14,18,21],net1:5,net:[4,5,11,17],netcfg:5,netsh:5,netstat:5,network:5,new_nod:[4,11],newchild:[4,11],newchildren:[4,11],newer:5,newgrp:[4,19],newlin:[],newnod:9,newtarget:[4,15],newval:9,newvalu:[4,11,12],next:[4,9,11,16,18],nextal:9,nextelements:[4,11],nextnod:[4,11],nextsibl:[4,11],nextuntil:9,nfsadmin:5,nice:[4,14,19],niceblu:7,nightblu:7,nine:7,nix:19,nlsfunc:5,nltest:5,nmap:[4,19],noconflict:9,node:[4,9,11,14,15,17,18,23],nodefilt:[4,11],nodeiter:[4,11],nodelist:[4,11,18],nodenam:[4,11],nodetyp:[4,11],nodevalu:[4,11],nohup:[4,19],non:[4,11,18],none:[2,3,4,6,9,10,11,12,14,15,18,20,21],noop:9,normal:[4,11,17,18,23],normalinterpol:[4,23],normalizedocu:[4,11],noscript:[4,14],notat:[4,11,15],note:[0,1,4,5,9,11,16,17,19,20],noth:10,notic:[11,23],notin:7,now:[1,2,4,6,9,14,15,16,20,21],nozzl:[4,23],npm:[4,19],nslookup:5,nsub:7,ntbackup:5,ntf:5,ntild:7,ntsd:5,num:[4,15],number:[2,4,5,8,9,11,12,15,17,18],number_0:7,number_1:7,number_2:7,number_3:7,number_4:7,number_5:7,number_6:7,number_7:7,number_8:7,number_9:7,number_sign:7,numer:[4,9,11,15],numpad:7,numpad_0:7,numpad_1:7,numpad_2:7,numpad_3:7,numpad_4:7,numpad_5:7,numpad_6:7,numpad_7:7,numpad_8:7,numpad_9:7,numpad_add:7,numpad_decim:7,numpad_divid:7,numpad_ent:7,numpad_multipli:7,numpad_subtract:7,nut:10,oacut:7,obj1:9,obj2:9,obj:[3,4,9,11,12,14,15],obj_model:23,object:[1,3,4,5,6,8,9,10,11,12,16,18,20,22],objectfit:[4,18],objectposit:[4,18],obliqu:[4,18],observ:[5,9],obsolet:15,obviou:[2,4],occur:[4,9,15,18],occurr:[4,15],ocean:7,oceanblu:7,oceangreen:7,ocher:7,ochr:7,ocirc:7,ocr:7,ocsetup:5,octahedron:23,odd:9,oelig:7,off:[5,9,19],offblu:7,offgreen:7,offlin:[4,11,12],offset:[4,9,11,18],offsetheight:[4,11],offsetleft:[4,11],offsetpar:[4,9,11],offsettop:[4,11],offsetwidth:[4,11],offwhit:7,offyellow:7,ograv:7,ohm:7,ojbect:17,old:[4,11,12,15],oldchild:[4,11],oldlac:7,oldpink:7,oldros:7,oldvalu:[4,11,12],olin:7,oliv:7,olivebrown:7,olivedrab:7,olivegreen:7,oliveyellow:7,ome:15,omega:7,omicron:7,on_custom_ev:12,on_page_click:12,onc:[2,4,9,11,15],oncomplet:[4,11,12],one:[0,1,2,4,5,6,7,9,11,14,15,17,18,21],ones:[6,9,15,16],onli:[1,2,4,5,6,9,11,14,15,16,17,18,19,21],onlin:[4,11,12],onpaus:[4,11,12],onreset:[4,11,12],onstart:[4,11,12],onstop:[4,11,12],ontim:[4,11,12],onto:9,onunpaus:[4,11,12],onupdateend:[4,11,12],onupdatestart:[4,11,12],opac:[4,9,18],opacitymapvolumestyl:[4,23],opaqu:9,open:[0,1,4,5,6,11,12,19],openfil:5,opening_curly_brac:7,opening_parenthesi:7,opening_square_bracket:7,openj:[4,11],oper:[2,4,5,9,11,12,14,15,21],operand:6,oplu:7,opposit:[2,4,21],optgroup:[4,14],optimis:5,option:[2,4,5,9,11,14,15,18,21],orang:7,orangebrown:7,orangeish:7,orangepink:7,orangeybrown:7,orangeyellow:7,orangeyr:7,orangeyyellow:7,orangish:7,orangishbrown:7,orangishr:7,orchid:7,order:[4,6,11,15,18],ordf:7,ordm:7,org:[4,11,12,15,17,22],orientationchas:[4,23],orientationdamp:[4,23],orientationinterpol:[4,23],origin:[2,4,9,11,15,16],orphan:[4,18],orthoviewpoint:[4,23],oslash:7,other:[3,4,5,6,11,14,15,19,21,22],otherel:[4,11],otherwis:[4,11,14,15,18],otild:7,otim:7,ouml:7,our:17,out:[0,1,4,5,6,11,14,16,18],outer:9,outerheight:9,outerwidth:9,outfil:[3,4],outlin:[4,18],outlinecolor:[4,18],outlineoffset:[4,18],outlinestyl:[4,18],outlinewidth:[4,18],outp:[4,14],output:[3,4,5,10,14,17,19],outsid:[4,11,18],over:[2,4,5,9,11,12,15,18,20,21],overflow:[4,6,15,18],overflowi:[4,18],overflowx:[4,18],overrid:[4,15],overridden:[4,5,18,19],own:[1,2,4,6,11,14,15],ownerdocu:[4,11],ownernod:[4,18],ownerrul:[4,18],ownkei:[4,15],packag:[1,2,4,5,6,8,13,15,16,17,19,20,22],pad:[4,6,9,11,15,18],padchar:[4,15],paddingbottom:[4,18],paddingleft:[4,18],paddingright:[4,18],paddingtop:[4,18],padend:[4,15],padstart:[4,15],page:[1,4,5,6,12,14,18],page_down:7,page_up:7,pagebreakaft:[4,18],pagebreakbefor:[4,18],pagebreakinsid:[4,18],pagehid:[4,11,12],pageshow:[4,11,12],pagetransitionev:[4,11,12],paint:[4,18],pair:[4,11,15,22],pale:7,paleaqua:7,paleblu:7,palebrown:7,palecyan:7,palegold:7,palegoldenrod:7,palegreen:7,palegrei:7,palelavend:7,palelightgreen:7,palelilac:7,palelim:7,palelimegreen:7,palemagenta:7,palemauv:7,paleol:7,paleolivegreen:7,paleorang:7,palepeach:7,palepink:7,palepurpl:7,paler:7,paleros:7,palesalmon:7,paleskyblu:7,palet:7,paleturquois:7,paleviolet:7,palevioletr:7,paleyellow:7,papayawhip:7,para:7,paragraph:[4,18],parallel:5,param:[4,6,7,9,10,14,15,18,23],paramet:[2,3,4,5,7,9,10,11,14,15,19,21,22,23],paramstr:[4,15,22],parchment:7,parent:[4,9,11,18],parent_nod:[4,18],parentel:[4,11],parentnod:[4,11,18,23],parentrul:[4,18],parentstylesheet:[4,18],parentsuntil:9,pars:[1,4,9,15],parse_fil:3,parsefloat:[4,15],parsehtml:9,parseint:[4,15],parsejson:9,parser:14,parsexml:9,part:[4,5,7,11,15,16,18,22],partial:5,particleset:[4,23],particular:[5,9],partit:5,pass:[1,2,4,5,6,9,10,11,14,15,17,18,19,21],passwd:[4,19],past:[4,11,12,16,19],pastelblu:7,pastelgreen:7,pastelorang:7,pastelpink:7,pastelpurpl:7,pastelr:7,pastelyellow:7,patch:[4,19],path:[1,4,5,6,15,16],pathchk:[4,19],pathnam:15,pathp:5,pattern:[4,15],paus:[4,5,11,12,18,20],pax:[4,19],pea:7,peach:7,peachpuff:7,peachypink:7,peacockblu:7,peagreen:7,pear:7,peasoup:7,peasoupgreen:7,pecifi:[4,18],penner:[4,20],pentnt:5,peopl:[4,11,16],per:[4,9,11,20],percent_sign:7,perform:[5,9],perhap:0,period:7,periwinkl:7,periwinkleblu:7,permil:7,permut:[2,4,21],perp:7,perrywinkl:7,persist:[4,11,12],perspect:[4,18],perspectiveorigin:[4,18],peru:7,petrol:7,phase:[4,11,12],phi:7,phone:7,photo:2,php:[4,11],physicalenvironmentlight:[4,23],physicalmateri:[4,23],pick:[2,4,11],picsum:2,pictur:[4,14],piec:[6,9],pigpink:7,pin:5,pine:7,pinegreen:7,ping:[4,5,19],pink:7,pinki:7,pinkish:7,pinkishbrown:7,pinkishgrei:7,pinkishorang:7,pinkishpurpl:7,pinkishr:7,pinkishtan:7,pinkpurpl:7,pinkr:7,pinkypurpl:7,pinkyr:7,pip:[1,4,16,19],pissyellow:7,pistachio:7,piv:7,pixel:[4,7,11],pixeldepth:[4,15],pixeltextur:[4,23],pixeltexture3d:[4,23],pixi_5_3_3:2,pkgmgr:5,place:[4,9,14,18],placebear:[2,4],placebeard:2,placecag:2,placehold:[2,4,14],placeholder_servic:[2,4],placeimg:2,placekitten:2,plai:[4,5,11,12,18],plain:9,plaintext:[4,14],plan:5,plane:[4,11,23],planesensor:[4,23],pleas:0,plenti:16,plu:[0,15],plug:5,plugin:14,plum:7,plumpurpl:7,plus_sign:7,plusmn:7,png:[2,6],pnpunattend:5,pnputil:5,poc:16,point:[4,5,11,13,15],pointer:[4,9,11,12,18],pointerev:[4,11,12],pointless:[4,5,19],pointlight:[4,23],pointset:[4,23],poisongreen:7,polici:5,polygon:[1,4],polylin:4,polyline2d:[4,23],polypoint2d:[4,23],poo:7,poobrown:7,pool:15,poop:7,poopbrown:7,poopgreen:7,pop:[4,15],popd:[4,5,19],popgeometri:[4,23],popgeometrylevel:[4,23],popper_1_16_1:2,popstat:[4,11,12],popstateev:[4,11,12],popular:[0,8,16],port:[0,4,5,8,11,15,16,20],portal:[4,14],portion:[4,15],posit:[4,5,6,9,11,15,18],positionchas:[4,23],positionchaser2d:[4,23],positiondamp:[4,23],positiondamper2d:[4,23],positioninterpol:[4,23],positioninterpolator2d:[4,23],positive_infin:[4,15],posix:19,possibl:[0,2,4,5,11,16,21],post:9,postmessag:[4,15],pound:7,pow:6,powderblu:7,powderpink:7,power:[5,8,9],powercfg:5,ppli:[4,18],pre:[4,14],preced:[4,9,15],precis:[4,8,15],preconfigur:5,prefer:[1,2,4],prefix:[4,11],prepar:5,prepend:[9,14,23],prependto:9,present:[4,11],pretti:[1,14],prettifi:[4,17],prev:9,preval:9,prevent:[4,11,12],preventextens:[4,15],previou:[4,9,11],previous:9,previouselements:[4,11],previousnod:[4,11],previouss:[4,11],previousvalu:[4,15],prevuntil:9,primarili:5,primaryblu:7,prime:7,print:[1,2,3,4,5,6,7,9,10,11,12,14,15,17,18,19,20,22],printer:5,printf:[4,19],prior:[4,11],prioriti:[4,17,18],procedur:5,process:[5,9],processdata:9,processinginstruct:[4,11],processor:5,prod:7,produc:9,product:[0,1,5,14],profil:5,program:[5,14],programkil:[4,15],progress:[4,5,11,12,14],progressev:[4,11,12],project:0,projectionvolumestyl:[4,23],promis:[4,9,11,12,15,18],promiserejectionev:[4,11,12],prompt:[4,5,15],prop:[7,9,15],propag:[4,11,12],properti:[4,5,9,11,12,15,18,20,22],propertykei:[4,15],propertynam:[4,11,12],protect:5,protocol:[5,15,17],prototyp:[1,2,4,15],provid:[2,4,5,6,9,11,15,18,21],proxi:[4,9,15],prs:[4,19],prussianblu:7,pseudo:[4,11,12,18],pseudoel:[4,11,12],psi:7,publicid:[4,11],publish:0,puce:7,puke:7,pukebrown:7,pukegreen:7,pukeyellow:7,pull:1,pumpkin:7,pumpkinorang:7,punctuat:[4,18],pure:[4,5,19],pureblu:7,purg:5,purpl:7,purpleblu:7,purplebrown:7,purplegrei:7,purplei:7,purpleish:7,purpleishblu:7,purpleishpink:7,purplepink:7,purpler:7,purpleyblu:7,purpleygrei:7,purpleypink:7,purpli:7,purplish:7,purplishblu:7,purplishbrown:7,purplishgrei:7,purplishpink:7,purplishr:7,purplyblu:7,purplypink:7,purpos:9,push:[4,15],pushd:[4,5,19],pushstack:9,put:[6,23],putti:7,pwd:[4,19],pwlauncher:5,py2:[4,11],py3:[4,11],pyml:[1,4,9,10],pyramid:[1,4,23],python3:[1,5,16],python:[0,2,3,4,5,6,8,9,10,11,12,14,15,17,19,21,22,23],python_str:[4,15],pythonstr:[4,15],qalter:[4,19],qappsrv:5,qbasic:5,qdel:[4,19],qhold:[4,19],qmove:[4,19],qmsg:[4,19],qprocess:5,qrerun:[4,19],qrl:[4,19],qselect:[4,19],qsig:[4,19],qstat:[4,19],qsub:[4,19],quad:20,quadrilater:[4,11],quadset:[4,23],qualifi:[4,11],qualifiednam:[4,11],qualiti:0,quart:20,queri:[1,4,5,11,15,22],queryselector:[4,11],queryselectoral:[1,4],question_mark:7,queu:9,queue:[5,9],quick:1,quicker:1,quickli:[1,2,9,14,15,17],quickstart:16,quint:20,quit:[4,11],quot:[4,7,18],quotat:[4,18],quotation_mark:7,quser:5,qwinsta:5,racinggreen:7,radarvolumestyl:[4,23],radialgradi:4,radic:7,radioactivegreen:7,radionodelist:[4,11],raid:5,rais:[4,5,11,12,15,19],ram:5,random:[2,7,15],random_color:[2,4,21],random_hex:7,rang:[4,5,6,11,12,14,15],raquo:7,rarr:7,rasaut:5,rasdial:5,raspberri:7,ratechang:[4,11,12],rather:23,raw:[4,11,15],rawsienna:7,rawumb:7,rceil:7,rcp:5,rdp:5,rdpsign:5,rdquo:7,read:[0,1,4,11,18,19],read_root:16,readabl:[4,5,15,18],readarrai:[4,19],readi:9,readm:0,readonli:[4,19],readyexcept:9,reagentc:5,real:5,reallylightblu:7,reason:[4,11,12],reassign:5,rebeccapurpl:7,reboot:[4,19],recal:5,receiv:[2,4,15,21],recent:9,reciev:[4,5,10,15,19],recimg:5,recognis:5,recognit:5,recommend:9,recov:5,recoveri:5,rect:4,rectangle2d:[4,23],rectangulartoru:[4,23],red:[6,7,15],redbrown:7,reddish:7,reddishbrown:7,reddishgrei:7,reddishorang:7,reddishpink:7,reddishpurpl:7,reddybrown:7,redorang:7,redpink:7,redpurpl:7,redraw:[6,16],reduc:[4,5,9,15],reduceright:[4,15],redviolet:7,redwin:7,ref:[2,4,6],refer:[1,2,4,5,6,7,11,15,22],referenc:14,reference_nod:[4,11],referencenod:[4,11],refinementtextur:[4,23],reflect:[4,15],reg:[5,7],regardless:[4,15],regex:[4,15],regini:5,regist:[5,9],registr:5,registri:5,regonis:17,regsvr32:5,regular:[2,4,15],reject:[4,11,12],rejectionhandl:[4,11,12],rel:[4,9,11,18],relai:[9,12],relat:[4,5,11,18,21],releaes:1,releas:9,relev:[4,11,21],relinquish:9,reload:[4,11,12,16],relog:5,rem:5,rememb:[4,11,15],remot:5,remoteselectiongroup:[4,23],remov:[2,4,5,9,11,14,15,18,21,22],removeattr:9,removeattribut:[4,11],removeattributen:[4,11],removeattributenod:[4,11],removechild:[4,11],removeclass:9,removedata:9,removenameditem:[4,11],removenameditemn:[4,11],removeprop:9,removeproperti:[4,18],removerul:[4,18],ren:5,renam:[4,5,11],renamenod:[4,11],render:[1,4,6,10,15,17,18,23],renderedtextur:[4,23],renic:[4,19],repair:5,repeat:[4,15,18],replac:[2,4,5,9,11,15,18,21],replace_between:[2,4,21],replaceal:[4,9,15],replacechild:[4,11],replacechildren:[4,11],replacedata:[4,11],replacesync:[4,18],replacewith:[4,9,11],repo:[0,16],report:1,repositori:[0,5],repr:[14,17],repres:[4,5,9,11,12,15,18],represent:[4,9,15,18],request:[1,4,6,9,11,12,15,16],requestanimationfram:[4,15],requestfullscreen:[4,11],requesthandl:16,requir:[4,5,15],reset:[4,5,11,12,18],resiz:[4,9,11,12,18],resolut:5,resolv:[4,11,12,16,18],respect:[4,9,15],respondwith:[4,11,12],respons:[2,4,5,6,9,11,12,15,16,19],response_class:16,rest:[4,18],restart:5,restor:5,restrict:[10,16],result:[2,4,5,9,10,14,15],retriev:9,retun:7,return_json:[3,4],revers:[3,4,15,18],rexec:5,rfloor:7,rgb2hex:7,rgb:[6,7],rgba:[6,7],rho:7,richblu:7,richpurpl:7,right:[4,5,6,7,14,15,18],right_curly_brac:7,right_parenthesi:7,rightbracket:7,rigidbodi:[4,23],rigidbodycollect:[4,23],ring:23,rmdel:[4,19],rmdir:[4,5,19],robert:[4,20],robineggblu:7,robinsegg:7,robinseggblu:7,robocopi:5,robust:5,rom:5,root:[4,9,11,15],rootnod:[4,11],rosa:7,rose:7,rosepink:7,roser:7,rosybrown:7,rosypink:7,rotat:[4,13,18],roug:7,round:[4,15,18],rout:[4,5,6,16,23],route_nam:16,router:5,row:[4,18],royal:7,royalblu:7,royalpurpl:7,rpc:5,rpcinfo:5,rpcping:5,rrggbb:7,rsaquo:7,rsdh:5,rsh:5,rsm:5,rsquo:7,rst:0,rsync:[4,19],rubi:[4,7,14],rule:[4,18],run:[0,1,2,4,9,11,12,15,17,18,20],run_app:16,run_simpl:16,runa:5,runserv:16,russet:7,rust:7,rustbrown:7,rustorang:7,rustr:7,rustyorang:7,rustyr:7,rwinsta:5,sact:[4,19],saddlebrown:7,safe:[2,4,15,21],saffron:7,sage:7,sagegreen:7,sai:[4,19],salmon:7,salmonpink:7,same:[4,5,11,15,18],samp:[4,14],sampl:2,sand:7,sandbrown:7,sandi:7,sandston:7,sandybrown:7,sandyellow:7,sandyyellow:7,sanic:[1,6],sapgreen:7,sapphir:7,satisfi:9,satur:[4,18],save:[5,14],sbquo:7,scalarchas:[4,23],scalardamp:[4,23],scalarinterpol:[4,23],scale:[4,13],scandisk:5,scanreg:5,scarlet:7,scaron:7,scc:[4,19],scene:[4,23],schema:[4,17],schtask:5,scope:[4,15],scp:[4,19],scratch:17,screen:[4,11,15,18],script:[1,2,4,5,6,11,15,18,23],scroll:[4,9,11,12,18],scrollbar:[4,11],scrollheight:[4,11],scrollintoview:[4,11],scrollleft:[4,9,11],scrolltop:[4,9,11],scrollwidth:[4,11],scsi:5,sdb:5,sdbinst:5,sdot:7,sea:7,seablu:7,seafoam:7,seafoamblu:7,seafoamgreen:7,seagreen:7,seamlessli:9,search:[1,4,5,9,11,12,15,22],searchvalu:[4,15],seashel:7,seawe:7,seaweedgreen:7,secedit:5,second:[4,9,10,11,12,15,18],sect:7,section:[4,14,16],secur:5,sed:[4,19],see:[0,1,2,4,5,6,9,11,14,15,16,17,18,19,21,22,23],seek:[4,11,12],seem:5,segmentedvolumedata:[4,23],select:[1,4,5,9,11,12,14,15,18],selector:[4,9,11,18],selectorstr:[4,11],self:[4,5,6,11,12,14,16,17],semicolon:7,send:[0,1,4,5,9,15],sent:9,sentenc:[2,4,21],separ:[4,5,11],seper:[2,4,15],sepia:7,sequenc:[4,5,15],sequenti:[4,15],serial:[5,9],serialis:[4,18],serializearrai:9,serv:1,serve_forev:16,server:[1,4,5,6,9,11],serverless:16,servic:[2,5],servicework:[4,15],session:[4,5,19],set:[2,4,5,9,11,14,15,18,21,22],set_fract:23,setattribut:[4,11],setattributen:[4,11],setattributenod:[4,11],setattributenoden:[4,11],setdat:[4,15],setfullyear:[4,15],sethour:[4,15],setinterv:[1,20],setloc:5,setmillisecond:[4,15],setminut:[4,15],setmonth:[4,15],setnameditem:[4,11],setnameditemn:[4,11],setprototypeof:[4,15],setsecond:[4,15],setspn:5,settim:[4,15],settimeout:[4,15],setup:5,setutcd:[4,15],setutcfullyear:[4,15],setutchour:[4,15],setutcmillisecond:[4,15],setutcminut:[4,15],setutcmonth:[4,15],setutcsecond:[4,15],setver:5,setx:5,setyear:[4,15],seven:7,sever:[1,4,8,14,15,18,22],sf2:6,sfc:5,sha384:14,shadedvolumestyl:[4,23],shaderpart:[4,23],shadow:[4,5,18],shadowroot:[4,11],shamrock:7,shamrockgreen:7,shape:[1,4,7,8,13,18,23],share:5,sharp:7,sheet:[4,18],shell:5,shift:[4,5,7,14,15,19],shit:7,shitbrown:7,shitgreen:7,shockingpink:7,shopt:[4,19],shortcut:23,shorten:[4,11],shorthand:[4,18],should:[4,6,9,15,18],show:[4,5,9,10,11,12,17,18,20],showmount:5,shrink:[4,18],shut:5,shutdown:[4,5,19],sibl:[4,9,11],sickgreen:7,sicklygreen:7,sicklyyellow:7,side:9,sienna:7,sigma:7,sigmaf:7,sign:[4,5,15],signific:[4,15],silenc:[1,2,4],silhouetteenhancementvolumestyl:[4,23],silver:7,sim:7,similar:[2,4,15,21],simliar:23,simonwillison:[4,11],simpl:[1,14,16],simple_serv:16,simpli:[1,15],simplifi:9,simul:[4,11],sinc:[4,11,15],sine:20,singl:[4,5,9,15,18],singleaxishingejoint:[4,23],site:[2,4,11,14,16],sitemap1:[4,17],sitemap:1,sitemap_format:[4,17],sitemap_from_url:[4,17],sitemapindex:[1,4],sitemapindex_from_url:[4,17],six:7,size:[2,4,6,7,9,11,14,15,18,21],skill:16,skip:[4,5,11],sky:[7,23],skyblu:7,slash:[2,4,7],slate:7,slateblu:7,slategrai:7,slategreen:7,slategrei:7,sleep:[4,15,19,20],slice:[4,9,15],slide:9,slidedown:9,sliderjoint:[4,23],slidetoggl:9,slideup:9,slimegreen:7,slopedcylind:[4,23],slot:[4,11],small:[4,14,15,18],smart:5,smartdriv:5,smartdrv:5,smash:1,snake:[2,4,21],snapshot:5,snippet:[2,4,21],snot:7,snotgreen:7,snout:[4,23],snow:7,socket_1_4_5:2,softblu:7,softgreen:7,softpink:7,softpurpl:7,softwar:5,solid:6,solidcolor:4,solidofrevolut:[4,23],some:[0,1,2,3,4,6,9,14,15,16,17,21],some_arr:[2,4,21],some_ev:12,some_tmpl:6,somearr:[4,15],somedir:[5,19],someeventhandl:12,somefil:[3,5,19],somefunc:[3,10,15],somehtml:9,someinput:14,somelist:9,someobj:[4,20],somesit:[14,15],someth:[6,10,17],somethingels:[2,4],someurl:14,somevar:6,somewher:[12,16],somexstr:15,soon:0,sorrycc:[2,4],sort:[4,5,9,15,19,22],sot:5,sound:[4,23],sourc:[0,1,2,3,4,5,7,9,11,12,13,14,15,17,18,19,20,21,22,23],spa:1,space:[4,7,11,18],spade:7,span:[4,14,16,18],spearmint:7,special:[4,9,18],specif:[5,6,9],specifi:[4,5,9,11,14,15,16,18,22],speed:[4,18],sphere:[4,23],sphereseg:[4,23],spheresensor:[4,23],sphinx:0,sphinx_github_changelog_token:[],splice:[4,15],splinepositioninterpol:[4,23],split:[4,11,15,18,19],splittext:[4,11],spn:5,spotlight:[4,23],springgreen:7,spritecss:1,spritesheet:6,spruce:7,squar:[4,7,14,15],squash:[2,4,7,21],ssh:[4,19],stack:[4,9,18],stall:[4,11,12],stamp:[4,11,12],standard:[4,5,15,18],star:7,starf:7,starlett:1,start:[1,2,4,5,6,9,11,12,15,16,18,20,21],startproject:16,startswith:[4,15],startup:5,state:[4,9,11,12],statement:5,staticgroup:[4,23],staticmethod:[2,4,21],statist:5,statu:[5,19],steel:7,steelblu:7,steelgrei:7,step:[4,6,15],stevensegalleri:2,stfu:10,still:[8,11,14,16],stipplevolumestyl:[4,23],stone:7,stop:[2,4,5,9,11,12,15],stoppropag:[4,11,12],storag:[4,5,11,12],storagearea:[4,11,12],storageev:[4,11,12],store:[5,9],stormyblu:7,str:[2,3,4,5,6,7,9,10,11,14,15,16,17,19,21,22,23],straight:14,straw:7,strawberri:7,stream:[2,4,21],strean:19,stretch:[4,18],strict:1,stricterrorcheck:[4,11],strike:[4,14,15],string:[1,2,4,5,6,7,9,10,11,17,18,19,21,22],stringifi:[4,18],stringsom:15,stringvar:15,strip:[4,14,19],strong:[4,14],strongblu:7,strongpink:7,struct:9,structur:[5,9],stty:[4,19],stub:18,stuff:[5,19],style:[1,6,9,11],stylesheet:[2,4,6,14,18],stylesheetlist:[4,18],sub:[4,7,9,11,14,15],subclass:[4,15],subdirectori:5,sube:7,submiss:9,submit:[4,9,11,12,14],submitev:[4,11,12],subprocess:[5,19],subscript:5,subsequ:9,subset:[4,11],subst:5,substr:[4,15],substringdata:[4,11],subtl:[4,15],subtre:[4,11],success:[2,4,9,10,15],successfulli:[4,9,15],sugar:[2,4],suitabl:[4,9,15,22],sum:[4,7,15],summari:[4,14],sunflow:7,sunfloweryellow:7,sung:7,sunnyyellow:7,sunshineyellow:7,sunyellow:7,sup1:7,sup2:7,sup3:7,sup:[4,7,10,14,15],supe:7,support:[0,1,4,5,11,15,18],sure:[4,16,17],surfaceshadertextur:[4,23],suspend:[4,11,12,19],svg2:4,svg:[1,7,8,11],svgevent:[4,11,12],swamp:7,swampgreen:7,sweet:[2,4,10],sxstrace:5,symbol:[1,4,5,9],sync:[4,11,12],syncev:[4,11,12],synchron:[4,9,18],synchronis:5,syntact:[2,4],syntax:[4,6,14,18],syntaxerror:6,sys:5,system:[5,8,19],systemid:[4,11],systeminfo:5,szlig:7,tab:[4,7,18,19],tabl:[3,4,5,9,14,18],tablelayout:[4,18],tablifi:[3,4],tabsiz:[4,18],tag:[1,4,6,10,11,12,15,16,17,18,22,23],tagnam:[4,11],tail:[4,19],take:[1,2,3,4,5,6,7,9,14,15,16,18,19,21],taken:[4,5,15],takeown:5,talk:[4,19],tan:7,tanbrown:7,tangerin:7,tangreen:7,tapi:5,tar:[4,19],target:[4,9,11,12,15,20],task:[4,5,15],taskbar:[4,15],taskkil:5,tasklist:5,tau:7,taup:7,tbodi:[4,14],tcmsetup:5,tcp:5,tea:7,teagreen:7,teal:7,tealblu:7,tealgreen:7,tealish:7,tealishgreen:7,technolog:[1,15,19],tee:[4,19],telephoni:5,telnet:5,templat:[4,5,16,23],templateerror:[4,14],tend:16,termin:[1,5,6,15],terminalexcept:[4,19],ternari:14,terracota:7,terracotta:7,test2:9,test:[1,4,5,9,10,11,14,15,16,18,19,22],test_domon:6,test_html:14,test_that_wont_pass:10,tetrahedron:23,texcoorddamper2d:[4,23],text:[2,4,5,6,9,10,11,14,15,16,18,21,23],textalign:[4,18],textalignlast:[4,18],textarea:[4,14],textcont:[4,11],textdecod:22,textdecoderstream:22,textdecor:[4,18],textdecorationcolor:[4,18],textdecorationlin:[4,18],textdecorationstyl:[4,18],textencod:22,textencoderstream:22,textind:[4,18],textjustifi:[4,18],textoverflow:[4,18],textpath:4,textshadow:[4,18],texttransform:[4,18],textual:[4,18],textur:[4,23],texturecoordin:[4,23],texturecoordinate3d:[4,23],texturecoordinategener:[4,23],textureproperti:[4,23],texturetransform3d:[4,23],texturetransform:[4,23],texturetransformmatrix3d:[4,23],tfoot:[4,14],tftp:5,than:[0,5,15,23],the_list:[2,4,21],thead:[4,14],thei:[2,4,6,9,14,15,17,23],them:[4,5,9,11,14,15,16,17,20,23],thenabl:9,there4:7,theses:[4,15],theta:7,thetasym:7,thi:[1,2,4,5,6,8,9,10,11,14,15,16,17,18,19,21,22,23],thing:[4,8,9,14,15,16,19,21],think:21,thisarg:[4,15],thisargu:[4,15],thistl:7,tho:[4,17],thorn:7,those:[1,2,4,9,21],thread:[4,15,20],three:[2,4,7,14,18,21],three_dots_0_2_0:2,through:[4,5,9,11,15,17,22],thrown:9,tick:7,ticket:[5,14],tiffanyblu:7,tild:7,tile:[4,18],time:[4,5,7,9,11,12,15,18,19,20,23],timeout:[2,4,5,15,21],timeoutid:[4,15],timer:[4,9,11,12,15,20],timerev:[4,11,12],timesensor:[4,23],timestamp:[4,11,12],titl:[2,4,5,6,11,14,18,21],tla:[2,4,21],tlntadmn:5,to_dictionari:[2,4,21],toarrai:9,tocharcod:[4,15],tocodepoint:[4,15],tocss:7,todatestr:[4,15],todo:[2,3,4,5,11,15,18,19,22],toexponenti:[4,15],tofix:[4,15],togeth:[5,9,13],toggl:[4,9,11,12],toggleclass:9,togmtstr:[4,15],tohsl:7,tohsv:7,toisostr:[4,15],tojson:[4,15],token:[4,11],tolocaledatestr:[4,15],tolocalelowercas:[4,15],tolocalestr:[4,15],tolocaletimestr:[4,15],tolocaleuppercas:[4,15],tolowercas:[4,15],tomat:7,tomato:7,ton:2,tonemappedvolumestyl:[4,23],tood:[4,11],tool:5,top:[4,6,11,18],topaz:7,topic:5,topmost:[4,11],toprecis:[4,15],torgb:7,tornado:1,toru:[4,23],torus_knot:23,tosourc:[4,15],tostr:[4,11,15,22],tosvg:7,total:[4,15],totimestr:[4,15],touch:[4,5,19,21],touchcancel:[4,11,12],touchend:[4,11,12],touchev:[4,11,12],touchmov:[4,11,12],touchsensor:[4,23],touchstart:[4,11,12],toup:7,touppercas:[4,15],toutcstr:[4,15],toxicgreen:7,tpm:5,tpmvscmgr:5,tput:[4,19],trace:5,tracerpt:5,tracert:5,track:[4,5,14],tracker:0,trade:7,trademark:7,traffic:0,transact:5,transfer:5,transform:[4,15,18,23],transformin:1,transformorigin:[4,18],transformstyl:[4,18],transit:[4,11,12,18],transitiondelai:[4,18],transitiondur:[4,18],transitionend:[4,11,12],transitionev:[4,11,12],transitionproperti:[4,18],transitiontimingfunct:[4,18],translat:[4,9,13,23],transmiss:9,transpar:9,trap:[4,19],travers:[4,9,11],tree:[4,9,11],treegreen:7,treewalk:[4,11],tref:4,triangl:23,triangleset2d:[4,23],triangleset:[4,23],trick:15,trigger:[5,9],triggerhandl:9,trim:[4,9,15],trimend:[4,15],trimstart:[4,15],trivial:5,trueblu:7,truegreen:7,truncat:[2,4,21],tscon:5,tsdiscon:5,tskill:5,tsort:[4,19],tspan:4,tsshutdn:5,tst:9,ttach:[4,18],tty:[4,19],tupl:[4,7,15],turn:[2,4,14,21],turquois:7,turquoiseblu:7,turquoisegreen:7,turtlegreen:7,tweak:1,tween:[1,4],tweenev:[4,11,12],twilight:7,twilightblu:7,twn:[4,20],two:[4,5,7,9,11,14,15],twosidedmateri:[4,23],txt:19,type:[1,2,3,4,5,6,7,9,10,11,14,18,19,21],type_:5,typeerror:6,typeperf:5,typeset:[4,19],typic:[2,4,21],tzutil:5,uacut:7,uarr:7,ucirc:7,uglyblu:7,uglybrown:7,uglygreen:7,uglypink:7,uglypurpl:7,uglyyellow:7,ugrav:7,uid:6,uievent:[4,11,12],ulimit:[4,19],ultramarin:7,ultramarineblu:7,umask:[4,19],umb:5,umber:7,uml:7,umount:5,unalia:[4,19],unam:[4,6,19],unbind:9,unbreak:[4,18],uncompress:[4,19],undefin:[4,15,18],undeleg:9,undelet:5,under:[4,5,11],underscor:[2,6,7,14],undo:5,undocu:15,unescap:[2,4,21],unexpand:[4,19],unformat:5,unget:[4,19],unhandl:[4,11,12],unhandledreject:[4,11,12],unicod:[4,15],unicodebidi:[4,18],uniform:[4,23],uninstal:5,uniq:[4,19],uniqu:[2,4,9,10,21],uniquesort:9,unit:[4,10,15,22],univers:[4,15],universaljoint:[4,23],unix:[5,19],unknown:4,unless:11,unlik:11,unlink:[4,19],unload:[4,9,11,12],unlock:5,unlodctr:5,unpack:14,unpaus:[4,11,12,20],unpkg:6,unset:[4,19],unshift:[4,15],unsign:[4,11,15],unsplash:2,unsupport:6,untest:[4,6,22],until:6,untitl:[2,4,21],unwrap:9,updat:[1,2,4,5,11,14,15,18],update_end:[4,11,12],update_start:[4,11,12],upgrad:1,upload:[5,16],upon:9,uppercas:[4,15],uppercase_:7,uppercase_a:7,uppercase_b:7,uppercase_c:7,uppercase_d:7,uppercase_f:7,uppercase_g:7,uppercase_h:7,uppercase_i:7,uppercase_j:7,uppercase_k:7,uppercase_l:7,uppercase_m:7,uppercase_n:7,uppercase_o:7,uppercase_p:7,uppercase_q:7,uppercase_r:7,uppercase_t:7,uppercase_u:7,uppercase_v:7,uppercase_w:7,uppercase_x:7,uppercase_z:7,upsih:7,upsilon:7,uptim:[4,19],uri:[4,11,15],url2fil:[2,4,21],url:[1,2,9,11,12,15,16,17,18,21],urlencod:22,urlpars:22,urlpattern:16,urlsearchparam:[4,15,22],urlset:[4,17],usag:[1,2,4],usb:5,use:[0,1,2,4,5,6,9,10,11,14,15,16,17,18,20,21,22,23],used:[4,5,6,9,11,16,17,18,23],useful:[1,2,4,9,10,14,15,18],user:[0,2,4,5,11,14,16,18,19],useradd:[4,19],userdel:[4,19],userselect:[4,18],uses:[2,4,5,6,9,10,11,15],using:[1,4,5,6,9,10,11,13,14,15,17,18,20,23],usual:[6,9,15],utc:[4,15],utf:[4,15,17,22],util:[1,3,5,7,8,9,15,22],uucp:[4,19],uudecod:[4,19],uuencod:[4,19],uuml:7,uustat:[4,19],uux:[4,19],uvicorn:16,val:[4,9,19],valid:[4,5,15],valu:[2,4,7,9,11,12,15,17,18,20,21,22],value_chang:23,variabl:[4,5,9,14,15],variou:[4,5,18],vaultcmd:5,vec2:1,vec3:1,vector:[4,13],velvet:7,venv:16,ver:5,veri:[8,14],verifi:5,vermillion:7,versa:5,version:[2,4,5,15,16,17],vertic:[4,9,11,18],vertical_bar:7,verticalalign:[4,18],verydarkblu:7,verydarkbrown:7,verydarkgreen:7,verydarkpurpl:7,verylightblu:7,verylightbrown:7,verylightgreen:7,verylightpink:7,verylightpurpl:7,verypaleblu:7,verypalegreen:7,via:[2,4,5,11,15,18,19,22],vibrantblu:7,vibrantgreen:7,vibrantpurpl:7,vice:5,video:[4,14,17,23],videospher:23,view:[1,4,6,11,18],viewer:1,viewfrustum:[4,23],viewpoint:[4,23],viewport:[4,11],violet:7,violetblu:7,violetpink:7,violetr:7,viridian:7,virtual:[5,11,12],virtualenv:16,visibl:[4,11,18],visit:16,visitor:[4,15],vista:5,visual:[4,18],visualstudio:14,vividblu:7,vividgreen:7,vividpurpl:7,vkern:4,vol:5,volum:5,volumechang:[4,11,12],volumedata:[4,23],vomit:7,vomitgreen:7,vomityellow:7,vowel:[2,4,21],vsafe:5,vscode:14,vssadmin:5,w32tm:5,w3school:[4,15],wai:[4,5,6,9,14,17,18],wait:[4,5,11,12,15,19],waitfor:5,waituntil:[4,11,12],want:[1,4,5,10,17,18,19],warmblu:7,warmbrown:7,warmgrei:7,warmpink:7,warmpurpl:7,warn:[2,4,8,14,15,16,17],washedoutgreen:7,wasn:16,water_latest:2,waterblu:7,watermelon:7,wbadmin:5,wbr:[4,14],web:[4,11,12,15,16,22],webabi:22,webapi:1,webkit:14,webpag:[1,4,6,11,12,14,15],webpage2:14,webserv:16,websit:[16,17],webstorag:[],wecutil:5,week:[4,15],weekli:17,weirdgreen:7,welcom:0,well:[1,5,9,15],were:[5,9,14],werkzeug:1,wevtutil:5,wget:[2,4,19],what:[1,2,4,11,15,16,17,18,19],whatev:[2,4,21],whattoshow:[4,11],wheat:7,wheel:[4,11,12],wheelev:[4,11,12],when:[2,4,5,6,9,10,11,12,15,16,17,18,23],whenev:[1,9],where:[0,2,4,5,15,18,21],wherea:17,whether:[4,5,9,11,12,15,18],which:[1,4,5,6,8,9,11,14,15,17,18,20,23],white:[6,7],whitesmok:7,whitespac:[4,9,15,18],who:[2,4,19,21],whoami:[4,5,19],whole:[4,11,15,16],wholetext:[4,11],whose:[4,9,11],wide:1,widow:[4,18],width:[2,4,6,9,11,14,15,18],window:[4,5,6,9,11,15,18],windowsblu:7,wine:7,winer:7,winmgmt:5,winr:5,winrm:5,winsat:5,winsx:5,wintergreen:7,wisteria:7,within:[4,5,9,11,15,16,17],without:[5,6,9],wmi:5,wmic:5,wolrd:15,won:[4,17,20,23],wont:[4,11],word:[2,4,15,18,21],wordbreak:[4,18],wordspac:[4,18],wordwrap:[4,18],work:[0,1,4,5,6,8,9,11,14,15,19,22],worker:[4,15],world:[1,14,16,22],worldinfo:[4,23],would:[4,6,10,11,18,21],wrap:[2,4,9,10,14,15,18],wrapal:9,wrapinn:9,wrapper:[1,4,5,16,19,22],wrappingel:9,write:[1,4,5,11,16,19],writeln:[4,11],written:[4,5,13,16],wrong:6,wsgiref:16,wsmanhttpconfig:5,www:[2,4,10,11,14,15,17,21,22],x3d:1,x3dappearancechildnod:[4,23],x3dappearancenod:[4,23],x3dbackgroundnod:[4,23],x3dbinarycontainergeometrynod:[4,23],x3dbindablenod:[4,23],x3dboundedobject:[4,23],x3dchasernod:[4,23],x3dchildnod:[4,23],x3dcolornod:[4,23],x3dcomposablevolumerenderstylenod:[4,23],x3dcomposedgeometrynod:[4,23],x3dcoordinatenod:[4,23],x3ddampernod:[4,23],x3ddragsensornod:[4,23],x3denvironmentnod:[4,23],x3denvironmenttexturenod:[4,23],x3dfognod:[4,23],x3dfollowernod:[4,23],x3dfontstylenod:[4,23],x3dgeometricpropertynod:[4,23],x3dgeometrynod:[4,23],x3dgroupingnod:[4,23],x3dinfonod:[4,23],x3dinterpolatornod:[4,23],x3dlightnod:[4,23],x3dlodnod:[4,23],x3dmaterialnod:[4,23],x3dmetadataobject:[4,23],x3dnavigationinfonod:[4,23],x3dnbodycollidablenod:[4,23],x3dnode:[4,23],x3dom:2,x3dplanargeometrynod:[4,23],x3dpointingdevicesensornod:[4,23],x3drigidjointnod:[4,23],x3dsensornod:[4,23],x3dshadernod:[4,23],x3dshapenod:[4,23],x3dsoundnod:[4,23],x3dsoundsourcenod:[4,23],x3dspatialgeometrynod:[4,23],x3dtexture3dnod:[4,23],x3dtexturecoordinatenod:[4,23],x3dtexturenod:[4,23],x3dtexturetransformnod:[4,23],x3dtimedependentnod:[4,23],x3dtouchsensornod:[4,23],x3dtransformnod:[4,23],x3dvertexattributenod:[4,23],x3dviewpointnod:[4,23],x3dvolumedatanod:[4,23],x3dvolumerenderstylenod:[4,23],xarg:[4,19],xcopi:5,xlink:[4,11],xml:[4,5,9,11,17,23],xmln:[4,17],xmlstring:9,xmp:[4,14],xome:15,xss:16,xtring:15,xwizard:5,xyz:[4,17],y_offset:6,yacc:[4,19],yacut:7,year:[4,15],yellow:7,yellowbrown:7,yellowgreen:7,yellowish:7,yellowishbrown:7,yellowishgreen:7,yellowishorang:7,yellowishtan:7,yellowochr:7,yelloworang:7,yellowtan:7,yellowybrown:7,yellowygreen:7,yen:7,yet:[1,4,9,11,13],yield:[4,15],you:[0,1,2,4,5,6,9,10,11,12,13,14,15,16,17,18,19,21,23],your:[0,1,2,4,5,6,7,9,10,11,12,14,15,16,17,23],yournam:16,yourproject:16,yourself:14,yuml:7,zcat:[4,19],zero:[7,9],zeta:7,zindex:[4,18],zip:16},titles:["Contribute","Domonic:","CDN","JSON","\ud83e\udd16 autodocs","cmd","Templates and Components","constants","d3","dQuery","decorators","dom","events","geom","html","javascript","\ud83d\ude80 servers","sitemap","styles","terminal","tween","utils","webapi","x3d"],titleterms:{"char":7,"function":16,"import":6,"static":16,AWS:16,The:1,Using:16,afram:23,aiohttp:16,arbitrari:[5,19],arrai:15,attribut:14,autodoc:4,bottl:16,bug:0,call:10,can:20,cdn:[2,4],cdn_css:2,cdn_img:2,cdn_j:2,check:10,cherrypi:16,cli:1,cloud:16,cmd:5,color:7,command:[5,19],common:6,compon:6,consol:22,constant:7,content:16,contribut:0,creat:[14,17],createel:11,data:14,decor:[2,4,10,14],disclaim:1,dispatch:8,django:16,doc:0,dom:[4,11],domon:[1,2,3,4,5,8,9,11,12,13,14,15,16,17,18,19,21,22,23],dqueri:9,dynam:16,eas:20,element:[14,18],encod:22,equat:20,error:6,event:[4,11,12],exampl:1,fastapi:16,fetch:[15,22],fix:0,flask:16,format:[8,17],gener:1,geom:[4,13],get_tim:20,googl:16,guid:1,html:[1,4,14],inform:0,instal:1,javascript:[4,15],join:1,json:[3,4],keycod:7,keyword:15,lambda:16,list:14,load:14,magic:14,method:[14,15],more:[0,17],note:6,object:15,page:16,pars:14,pass:20,path:8,polygon:8,project:1,pull:0,pyml:14,pyramid:16,python:[1,16],queri:9,queryselectoral:11,render:14,report:0,request:0,run:[5,16,19],sanic:16,script:14,select:8,serv:16,server:16,setinterv:15,silenc:10,sitemap:[4,17],sitemapindex:17,spa:16,spritecss:6,starlett:16,string:[14,15],style:[4,14,15,18],svg:4,tag:14,templat:[1,6,14],termin:[4,19],test:0,tornado:16,tween:20,type:15,url:[4,22],usag:14,user:1,util:[2,4,17,21],view:16,webapi:[4,22],werkzeug:16,write:0,x3d:[4,23],xmlhttprequest:22,you:20}})
\ No newline at end of file
diff --git a/docs/packages/style.rst b/docs/packages/style.rst
new file mode 100644
index 00000000..38a006ea
--- /dev/null
+++ b/docs/packages/style.rst
@@ -0,0 +1,25 @@
+styles
+===================
+
+domonic supports the style attribute.
+
+Styling Elements
+----------------
+
+Styling gets passed to the style tag on render.
+
+.. code-block :: python
+
+ mytag = div("hi", _id="test")
+ mytag.style.backgroundColor = "black"
+ mytag.style.fontSize = "12px"
+ print(mytag)
+ #
hi
+
+
+CSSOM is also stubbed out. See the styles.py class. Feel free to make a PR
+
+
+.. automodule:: domonic.style
+ :members:
+ :noindex:
diff --git a/domonic/__main__.py b/domonic/__main__.py
index a728015c..db4b846f 100755
--- a/domonic/__main__.py
+++ b/domonic/__main__.py
@@ -65,6 +65,7 @@
}
'''
+# TODO - nautilus instead of open for linux
# def install():
# def clone_webpage(url):
diff --git a/domonic/dom.py b/domonic/dom.py
index 1c07ee66..0024776b 100644
--- a/domonic/dom.py
+++ b/domonic/dom.py
@@ -3507,7 +3507,8 @@ def fromQuad(quad):
@staticmethod
def getBounds(quad):
- return DOMRect(quad.p1.x, quad.p1.y, quad.p2.x - quad.p1.x, quad.p2.y - quad.p1.y)
+ # return DOMRect(quad.p1.x, quad.p1.y, quad.p2.x - quad.p1.x, quad.p2.y - quad.p1.y)
+ raise NotImplementedError
@staticmethod
def toJSON(quad):
@@ -3582,18 +3583,21 @@ def filter(self):
return self._filter
# def expandEntityReferences(self, expand):
- # Is a boolean value indicating if, when discarding an EntityReference its whole sub-tree must be discarded at the same time.
+ # Is a boolean value indicating if,
+ # when discarding an EntityReference its whole sub-tree must be discarded at the same time.
def referenceNode(self):
""" Returns the Node that is being iterated over. """
return self.node
def pointerBeforeReferenceNode(self):
- # Returns a boolean flag that indicates whether the NodeIterator is anchored before, the flag being true, or after, the flag being false, the anchor node.
+ # Returns a boolean flag that indicates whether the NodeIterator is anchored before,
+ # the flag being true, or after, the flag being false, the anchor node.
return self.pointer < 0
def detach(self):
- # This operation is a no-op. It doesn't do anything. Previously it was telling the engine that the NodeIterator was no more used, but this is now useless.
+ # This operation is a no-op. It doesn't do anything.
+ # Previously it was telling the engine that the NodeIterator was no more used, but this is now useless.
pass
def previousNode(self):
@@ -3658,7 +3662,7 @@ def traverseChildren(tw, _type):
# print('flaps', tw.currentNode.firstChild)
# print('flaps2', )
# print('tw.currentNode', tw.currentNode)
- # print('MAKE THIS WORK ON NODE:', tw.currentNode[mapChild[_type]])
+ # print('MAKE THIS WORK ON NODE:', tw.currentNode[mapChild[_type]]) #done
# node = str_to_TextNode(node)
@@ -3772,6 +3776,7 @@ def __init__(self, node, whatToShow=NodeFilter.SHOW_ALL, _filter=None, expandEnt
self.whatToShow = whatToShow or 0
self._filter = _filter
+
def acceptNode(node):
nonlocal _filter
# result
@@ -3860,7 +3865,8 @@ def nextSibling(self):
def previousNode(self):
""" Moves the current Node to the previous visible node in the document order,
- and returns the found node. It also moves the current node to this one. If no such node exists, or if it is before that the root node defined at the object construction,
+ and returns the found node. It also moves the current node to this one.
+ If no such node exists, or if it is before that the root node defined at the object construction,
returns null and the current node is not changed. """
# return self.previous
# raise NotImplementedError()