{ // 获取包含Hugging Face文本的span元素 const spans = link.querySelectorAll('span.whitespace-nowrap, span.hidden.whitespace-nowrap'); spans.forEach(span => { if (span.textContent && span.textContent.trim().match(/Hugging\s*Face/i)) { span.textContent = 'AI快站'; } }); }); // 替换logo图片的alt属性 document.querySelectorAll('img[alt*="Hugging"], img[alt*="Face"]').forEach(img => { if (img.alt.match(/Hugging\s*Face/i)) { img.alt = 'AI快站 logo'; } }); } // 替换导航栏中的链接 function replaceNavigationLinks() { // 已替换标记,防止重复运行 if (window._navLinksReplaced) { return; } // 已经替换过的链接集合,防止重复替换 const replacedLinks = new Set(); // 只在导航栏区域查找和替换链接 const headerArea = document.querySelector('header') || document.querySelector('nav'); if (!headerArea) { return; } // 在导航区域内查找链接 const navLinks = headerArea.querySelectorAll('a'); navLinks.forEach(link => { // 如果已经替换过,跳过 if (replacedLinks.has(link)) return; const linkText = link.textContent.trim(); const linkHref = link.getAttribute('href') || ''; // 替换Spaces链接 - 仅替换一次 if ( (linkHref.includes('/spaces') || linkHref === '/spaces' || linkText === 'Spaces' || linkText.match(/^s*Spacess*$/i)) && linkText !== 'OCR模型免费转Markdown' && linkText !== 'OCR模型免费转Markdown' ) { link.textContent = 'OCR模型免费转Markdown'; link.href = 'https://fast360.xyz'; link.setAttribute('target', '_blank'); link.setAttribute('rel', 'noopener noreferrer'); replacedLinks.add(link); } // 删除Posts链接 else if ( (linkHref.includes('/posts') || linkHref === '/posts' || linkText === 'Posts' || linkText.match(/^s*Postss*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } // 替换Docs链接 - 仅替换一次 else if ( (linkHref.includes('/docs') || linkHref === '/docs' || linkText === 'Docs' || linkText.match(/^s*Docss*$/i)) && linkText !== '模型下载攻略' ) { link.textContent = '模型下载攻略'; link.href = '/'; replacedLinks.add(link); } // 删除Enterprise链接 else if ( (linkHref.includes('/enterprise') || linkHref === '/enterprise' || linkText === 'Enterprise' || linkText.match(/^s*Enterprises*$/i)) ) { if (link.parentNode) { link.parentNode.removeChild(link); } replacedLinks.add(link); } }); // 查找可能嵌套的Spaces和Posts文本 const textNodes = []; function findTextNodes(element) { if (element.nodeType === Node.TEXT_NODE) { const text = element.textContent.trim(); if (text === 'Spaces' || text === 'Posts' || text === 'Enterprise') { textNodes.push(element); } } else { for (const child of element.childNodes) { findTextNodes(child); } } } // 只在导航区域内查找文本节点 findTextNodes(headerArea); // 替换找到的文本节点 textNodes.forEach(node => { const text = node.textContent.trim(); if (text === 'Spaces') { node.textContent = node.textContent.replace(/Spaces/g, 'OCR模型免费转Markdown'); } else if (text === 'Posts') { // 删除Posts文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } else if (text === 'Enterprise') { // 删除Enterprise文本节点 if (node.parentNode) { node.parentNode.removeChild(node); } } }); // 标记已替换完成 window._navLinksReplaced = true; } // 替换代码区域中的域名 function replaceCodeDomains() { // 特别处理span.hljs-string和span.njs-string元素 document.querySelectorAll('span.hljs-string, span.njs-string, span[class*="hljs-string"], span[class*="njs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换hljs-string类的span中的域名(移除多余的转义符号) document.querySelectorAll('span.hljs-string, span[class*="hljs-string"]').forEach(span => { if (span.textContent && span.textContent.includes('huggingface.co')) { span.textContent = span.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 替换pre和code标签中包含git clone命令的域名 document.querySelectorAll('pre, code').forEach(element => { if (element.textContent && element.textContent.includes('git clone')) { const text = element.innerHTML; if (text.includes('huggingface.co')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 处理特定的命令行示例 document.querySelectorAll('pre, code').forEach(element => { const text = element.innerHTML; if (text.includes('huggingface.co')) { // 针对git clone命令的专门处理 if (text.includes('git clone') || text.includes('GIT_LFS_SKIP_SMUDGE=1')) { element.innerHTML = text.replace(/huggingface.co/g, 'aifasthub.com'); } } }); // 特别处理模型下载页面上的代码片段 document.querySelectorAll('.flex.border-t, .svelte_hydrator, .inline-block').forEach(container => { const content = container.innerHTML; if (content && content.includes('huggingface.co')) { container.innerHTML = content.replace(/huggingface.co/g, 'aifasthub.com'); } }); // 特别处理模型仓库克隆对话框中的代码片段 try { // 查找包含"Clone this model repository"标题的对话框 const cloneDialog = document.querySelector('.svelte_hydration_boundary, [data-target="MainHeader"]'); if (cloneDialog) { // 查找对话框中所有的代码片段和命令示例 const codeElements = cloneDialog.querySelectorAll('pre, code, span'); codeElements.forEach(element => { if (element.textContent && element.textContent.includes('huggingface.co')) { if (element.innerHTML.includes('huggingface.co')) { element.innerHTML = element.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { element.textContent = element.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); } // 更精确地定位克隆命令中的域名 document.querySelectorAll('[data-target]').forEach(container => { const codeBlocks = container.querySelectorAll('pre, code, span.hljs-string'); codeBlocks.forEach(block => { if (block.textContent && block.textContent.includes('huggingface.co')) { if (block.innerHTML.includes('huggingface.co')) { block.innerHTML = block.innerHTML.replace(/huggingface.co/g, 'aifasthub.com'); } else { block.textContent = block.textContent.replace(/huggingface.co/g, 'aifasthub.com'); } } }); }); } catch (e) { // 错误处理但不打印日志 } } // 当DOM加载完成后执行替换 if (document.readyState === 'loading') { document.addEventListener('DOMContentLoaded', () => { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); }); } else { replaceHeaderBranding(); replaceNavigationLinks(); replaceCodeDomains(); // 只在必要时执行替换 - 3秒后再次检查 setTimeout(() => { if (!window._navLinksReplaced) { console.log('[Client] 3秒后重新检查导航链接'); replaceNavigationLinks(); } }, 3000); } // 增加一个MutationObserver来处理可能的动态元素加载 const observer = new MutationObserver(mutations => { // 检查是否导航区域有变化 const hasNavChanges = mutations.some(mutation => { // 检查是否存在header或nav元素变化 return Array.from(mutation.addedNodes).some(node => { if (node.nodeType === Node.ELEMENT_NODE) { // 检查是否是导航元素或其子元素 if (node.tagName === 'HEADER' || node.tagName === 'NAV' || node.querySelector('header, nav')) { return true; } // 检查是否在导航元素内部 let parent = node.parentElement; while (parent) { if (parent.tagName === 'HEADER' || parent.tagName === 'NAV') { return true; } parent = parent.parentElement; } } return false; }); }); // 只在导航区域有变化时执行替换 if (hasNavChanges) { // 重置替换状态,允许再次替换 window._navLinksReplaced = false; replaceHeaderBranding(); replaceNavigationLinks(); } }); // 开始观察document.body的变化,包括子节点 if (document.body) { observer.observe(document.body, { childList: true, subtree: true }); } else { document.addEventListener('DOMContentLoaded', () => { observer.observe(document.body, { childList: true, subtree: true }); }); } })(); ';\n\t\t\n\t\treturn serializedDOM;\t\t\t\t\n\t},\n \n\t/**\n\t* Imports shapes in JSON as expected by {@link ORYX.Editor#loadSerialized}\n\t* @param {Object|String} jsonObject The (serialized) json object to be imported\n\t* @param {boolean } [noSelectionAfterImport=false] Set to true if no shapes should be selected after import\n\t* @throws {SyntaxError} If the serialized json object contains syntax errors\n\t*/\n\timportJSON: function(jsonObject, noSelectionAfterImport) {\n\t\ttry {\n\t\t\tjsonObject = this.renewResourceIds(jsonObject);\n\t\t} catch(error){\n\t\t\tthrow error;\n\t\t} \n\t\t//check, if the imported json model can be loaded in this editor\n\t\t// (stencil set has to fit)\n\t\tif (!jsonObject.stencilset) {\n this.facade.raiseEvent({\n type \t\t: ORYX.CONFIG.EVENT_NOTIFICATION_SHOW,\n ntype\t\t: 'error',\n msg : ORYX.I18N.JSONImport.invalidJSON,\n title : ORYX.I18N.JSONImport.title\n\n });\n\t\t\treturn null;\n\t\t}\n\t\tif(jsonObject.stencilset.namespace && jsonObject.stencilset.namespace !== this.getCanvas().getStencil().stencilSet().namespace()) {\n this.facade.raiseEvent({\n type \t\t: ORYX.CONFIG.EVENT_NOTIFICATION_SHOW,\n ntype\t\t: 'error',\n msg : String.format(ORYX.I18N.JSONImport.wrongSS, jsonObject.stencilset.namespace, this.getCanvas().getStencil().stencilSet().namespace()),\n title : ORYX.I18N.JSONImport.title\n\n });\n\t\t\treturn null;\n\t\t} else {\n\t\t\tvar commandClass = ORYX.Core.Command.extend({\n\t\t\tconstruct: function(jsonObject, loadSerializedCB, noSelectionAfterImport, facade){\n\t\t\t\tthis.jsonObject = jsonObject;\n\t\t\t\tthis.noSelection = noSelectionAfterImport;\n\t\t\t\tthis.facade = facade;\n\t\t\t\tthis.shapes;\n\t\t\t\tthis.connections = [];\n\t\t\t\tthis.parents = new Hash();\n\t\t\t\tthis.selection = this.facade.getSelection();\n\t\t\t\tthis.loadSerialized = loadSerializedCB;\n\t\t\t},\t\t\t\n\t\t\texecute: function(){\n\t\t\t\t\n\t\t\t\tif (!this.shapes) {\n\t\t\t\t\t// Import the shapes out of the serialization\t\t\n\t\t\t\t\tthis.shapes\t= this.loadSerialized( this.jsonObject );\t\t\n\t\t\t\t\t\n\t\t\t\t\t//store all connections\n\t\t\t\t\tthis.shapes.each(function(shape) {\n\t\t\t\t\t\t\n\t\t\t\t\t\tif (shape.getDockers) {\n\t\t\t\t\t\t\tvar dockers = shape.getDockers();\n\t\t\t\t\t\t\tif (dockers) {\n\t\t\t\t\t\t\t\tif (dockers.length > 0) {\n\t\t\t\t\t\t\t\t\tthis.connections.push([dockers.first(), dockers.first().getDockedShape(), dockers.first().referencePoint]);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tif (dockers.length > 1) {\n\t\t\t\t\t\t\t\t\tthis.connections.push([dockers.last(), dockers.last().getDockedShape(), dockers.last().referencePoint]);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t\t//store parents\n\t\t\t\t\t\tthis.parents[shape.id] = shape.parent;\n\t\t\t\t\t}.bind(this));\n\t\t\t\t} else {\n\t\t\t\t\tthis.shapes.each(function(shape) {\n\t\t\t\t\t\tthis.parents[shape.id].add(shape);\n\t\t\t\t\t}.bind(this));\n\t\t\t\t\t\n\t\t\t\t\tthis.connections.each(function(con) {\n\t\t\t\t\t\tcon[0].setDockedShape(con[1]);\n\t\t\t\t\t\tcon[0].setReferencePoint(con[2]);\n\t\t\t\t\t\t//con[0].update();\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t//this.parents.values().uniq().invoke(\"update\");\n\t\t\t\tthis.facade.getCanvas().update();\n\t\t\t\t\t\n\t\t\t\tif(!this.noSelection)\n\t\t\t\t\tthis.facade.setSelection(this.shapes);\n\t\t\t\telse\n\t\t\t\t\tthis.facade.updateSelection();\n\t\t\t\t},\n\t\t\t\trollback: function(){\n\t\t\t\t\tvar selection = this.facade.getSelection();\n\t\t\t\t\t\n\t\t\t\t\tthis.shapes.each(function(shape) {\n\t\t\t\t\t\tselection = selection.without(shape);\n\t\t\t\t\t\tthis.facade.deleteShape(shape);\n\t\t\t\t\t}.bind(this));\n\t\t\t\t\t\n\t\t\t\t\t/*this.parents.values().uniq().each(function(parent) {\n\t\t\t\t\t\tif(!this.shapes.member(parent))\n\t\t\t\t\t\t\tparent.update();\n\t\t\t\t\t}.bind(this));*/\n\t\t\t\t\t\n\t\t\t\t\tthis.facade.getCanvas().update();\n\t\t\t\t\t\n\t\t\t\t\tthis.facade.setSelection(selection);\n\t\t\t\t}\n\t\t\t})\n\t\t\t\n\t\t\tvar command = new commandClass(jsonObject, \n\t\t\t\t\t\t\t\t\t\t\tthis.loadSerialized.bind(this),\n\t\t\t\t\t\t\t\t\t\t\tnoSelectionAfterImport,\n\t\t\t\t\t\t\t\t\t\t\tthis._getPluginFacade());\n\t\t\t\n\t\t\tthis.executeCommands([command]);\t\n\t\t\t\n\t\t\treturn command.shapes.clone();\n\t\t}\n\t},\n \n /**\n * This method renew all resource Ids and according references.\n * Warning: The implementation performs a substitution on the serialized object for\n * easier implementation. This results in a low performance which is acceptable if this\n * is only used when importing models.\n * @param {Object|String} jsonObject\n * @throws {SyntaxError} If the serialized json object contains syntax errors.\n * @return {Object} The jsonObject with renewed ids.\n * @private\n */\n renewResourceIds: function(jsonObject){\n // For renewing resource ids, a serialized and object version is needed\n if(Ext.type(jsonObject) === \"string\"){\n try {\n var serJsonObject = jsonObject;\n jsonObject = Ext.decode(jsonObject);\n } catch(error){\n throw new SyntaxError(error.message);\n }\n } else {\n var serJsonObject = Ext.encode(jsonObject);\n } \n \n // collect all resourceIds recursively\n var collectResourceIds = function(shapes){\n if(!shapes) return [];\n return shapes.map(function(shape){\n return collectResourceIds(shape.childShapes).concat(shape.resourceId);\n }).flatten();\n }\n var resourceIds = collectResourceIds(jsonObject.childShapes);\n \n // Replace each resource id by a new one\n resourceIds.each(function(oldResourceId) {\n var newResourceId = ORYX.Editor.provideId();\n serJsonObject = serJsonObject.gsub('\"'+oldResourceId+'\"', '\"'+newResourceId+'\"')\n });\n \n return Ext.decode(serJsonObject);\n },\n\t\n\t/**\n\t * Import erdf structure to the editor\n\t *\n\t */\n\timportERDF: function( erdfDOM ){\n\n\t\tvar serialized = this.parseToSerializeObjects( erdfDOM );\t\n\t\t\n\t\tif(serialized)\n\t\t\treturn this.importJSON(serialized, true);\n\t},\n\n\t/**\n\t * Parses one model (eRDF) to the serialized form (JSON)\n\t * \n\t * @param {Object} oneProcessData\n\t * @return {Object} The JSON form of given eRDF model, or null if it couldn't be extracted \n\t */\n\tparseToSerializeObjects: function( oneProcessData ){\n\t\t\n\t\t// Firefox splits a long text node into chunks of 4096 characters.\n\t\t// To prevent truncation of long property values the normalize method must be called\n\t\tif(oneProcessData.normalize) oneProcessData.normalize();\n\t\ttry {\n\t\t\tvar xsl = \"\";\n\t\t\tvar source=ORYX.PATH + \"lib/extract-rdf.xsl\";\n\t\t\tnew Ajax.Request(source, {\n\t\t\t\tasynchronous: false,\n\t\t\t\tmethod: 'get',\n\t\t\t\tonSuccess: function(transport){\n\t\t\t\t\txsl = transport.responseText\n\t\t\t\t}.bind(this),\n\t\t\t\tonFailure: (function(transport){\n\t\t\t\t\tORYX.Log.error(\"XSL load failed\" + transport);\n\t\t\t\t}).bind(this)\n\t\t\t});\n\t\t\tvar domParser = new DOMParser();\n\t\t\tvar xmlObject = oneProcessData;\n\t\t\tvar xslObject = domParser.parseFromString(xsl, \"text/xml\");\n \tvar xsltProcessor = new XSLTProcessor();\n \tvar xslRef = document.implementation.createDocument(\"\", \"\", null);\n \txsltProcessor.importStylesheet(xslObject);\n \n var new_rdf = xsltProcessor.transformToFragment(xmlObject, document);\n var serialized_rdf = (new XMLSerializer()).serializeToString(new_rdf);\n\t\t\t} catch(e){\n this.facade.raiseEvent({\n type \t\t: ORYX.CONFIG.EVENT_NOTIFICATION_SHOW,\n ntype\t\t: 'error',\n msg : ORYX.I18N.BPELSupport.error+': ' + e,\n title : ''\n\n });\n\t\t\t var serialized_rdf = \"\";\n\t\t }\n \n // Firefox 2 to 3 problem?!\n serialized_rdf = !serialized_rdf.startsWith(\"\" + serialized_rdf : serialized_rdf;\n\n var req = new Ajax.Request(ORYX.CONFIG.ROOT_PATH+\"rdf2json\", {\n method: 'POST',\n asynchronous: false,\n onSuccess: function(transport) {\n Ext.decode(transport.responseText);\n },\n parameters: {\n rdf: serialized_rdf\n }\n });\n \n return Ext.decode(req.transport.responseText);\n\t},\n\n /**\n * Loads serialized model to the oryx.\n * @example\n * editor.loadSerialized({\n * resourceId: \"mymodel1\",\n * childShapes: [\n * {\n * stencil:{ id:\"Subprocess\" },\n * outgoing:[{resourceId: 'aShape'}],\n * target: {resourceId: 'aShape'},\n * bounds:{ lowerRight:{ y:510, x:633 }, upperLeft:{ y:146, x:210 } },\n * resourceId: \"myshape1\",\n * childShapes:[],\n * properties:{},\n * }\n * ],\n * properties:{\n * language: \"English\"\n * },\n * stencilset:{\n * url:\"http://localhost:8080/oryx/stencilsets/bpmn1.1/bpmn1.1.json\"\n * },\n * stencil:{\n * id:\"BPMNDiagram\"\n * }\n * });\n * @param {Object} model Description of the model to load.\n * @param {Array} [model.ssextensions] List of stenctil set extensions.\n * @param {String} model.stencilset.url\n * @param {String} model.stencil.id \n * @param {Array} model.childShapes\n * @param {Array} [model.properties]\n * @param {String} model.resourceId\n * @return {ORYX.Core.Shape[]} List of created shapes\n * @methodOf ORYX.Editor.prototype\n */\n loadSerialized: function( model ){\n var canvas = this.getCanvas();\n \n \n // Bugfix (cf. http://code.google.com/p/oryx-editor/issues/detail?id=240)\n // Deserialize the canvas' stencil set extensions properties first!\n this.loadSSExtensions(model.ssextensions);\n var shapes = this.getCanvas().addShapeObjects(model.childShapes, this.handleEvents.bind(this));\n \n if(model.properties) {\n \tfor(key in model.properties) {\n \t\tvar prop = model.properties[key];\n \t\tif (!(typeof prop === \"string\")) {\n \t\t\tprop = Ext.encode(prop);\n \t\t}\n \tthis.getCanvas().setProperty(\"oryx-\" + key, prop);\n }\n }\n \n \n this.getCanvas().updateSize();\n return shapes;\n },\n \n /**\n * Calls ORYX.Editor.prototype.ss_extension_namespace for each element\n * @param {Array} ss_extension_namespaces An array of stencil set extension namespaces.\n */\n loadSSExtensions: function(ss_extension_namespaces){\n if(!ss_extension_namespaces) return;\n\n ss_extension_namespaces.each(function(ss_extension_namespace){\n this.loadSSExtension(ss_extension_namespace);\n }.bind(this));\n },\n\t\n\t/**\n\t* Loads a stencil set extension.\n\t* The stencil set extensions definiton file must already\n\t* be loaded when the editor is initialized.\n\t*/\n\tloadSSExtension: function(extension) {\t\t\t\t\n \tif (!extension) {\n \t\treturn;\n \t}\n\n \tvar stencilset = this.getStencilSets()[extension[\"extends\"]];\n\n \tif (!stencilset) {\n \t\treturn;\n \t}\n \tstencilset.addExtension(extension);\n \t//stencilset.addExtension(\"/oryx/build/stencilsets/extensions/\" + extension[\"definition\"])\n \tthis.getRules().initializeRules(stencilset);\n\n \tthis._getPluginFacade().raiseEvent({\n \t\ttype: ORYX.CONFIG.EVENT_STENCIL_SET_LOADED\n \t});\n\t\t\n\t},\n\n\tdisableEvent: function(eventType){\n\t\tif(eventType == ORYX.CONFIG.EVENT_KEYDOWN) {\n\t\t\tthis._keydownEnabled = false;\n\t\t}\n\t\tif(eventType == ORYX.CONFIG.EVENT_KEYUP) {\n\t\t\tthis._keyupEnabled = false;\n\t\t}\n\t\tif(this.DOMEventListeners.keys().member(eventType)) {\n\t\t\tvar value = this.DOMEventListeners.remove(eventType);\n\t\t\tthis.DOMEventListeners['disable_' + eventType] = value;\n\t\t}\n\t},\n\n\tenableEvent: function(eventType){\n\t\tif(eventType == ORYX.CONFIG.EVENT_KEYDOWN) {\n\t\t\tthis._keydownEnabled = true;\n\t\t}\n\t\t\n\t\tif(eventType == ORYX.CONFIG.EVENT_KEYUP) {\n\t\t\tthis._keyupEnabled = true;\n\t\t}\n\t\t\n\t\tif(this.DOMEventListeners.keys().member(\"disable_\" + eventType)) {\n\t\t\tvar value = this.DOMEventListeners.remove(\"disable_\" + eventType);\n\t\t\tthis.DOMEventListeners[eventType] = value;\n\t\t}\n\t},\n\n\t/**\n\t * Methods for the PluginFacade\n\t */\n\tregisterOnEvent: function(eventType, callback) {\n\t\tif(!(this.DOMEventListeners.keys().member(eventType))) {\n\t\t\tthis.DOMEventListeners[eventType] = [];\n\t\t}\n\n\t\tthis.DOMEventListeners[eventType].push(callback);\n\t},\n\n\tunregisterOnEvent: function(eventType, callback) {\n\t\tif(this.DOMEventListeners.keys().member(eventType)) {\n\t\t\tthis.DOMEventListeners[eventType] = this.DOMEventListeners[eventType].without(callback);\n\t\t} else {\n\t\t\t// Event is not supported\n\t\t\t// TODO: Error Handling\n\t\t}\n\t},\n\n\tgetSelection: function() {\n\t\treturn this.selection;\n\t},\n\n\tgetStencilSets: function() { \n\t\treturn ORYX.Core.StencilSet.stencilSets(this.id); \n\t},\n\t\n\tgetRules: function() {\n\t\treturn ORYX.Core.StencilSet.rules(this.id);\n\t},\n\t\n\tloadStencilSet: function(source) {\n\t\ttry {\n\t\t\tORYX.Core.StencilSet.loadStencilSet(source, this.id);\n\t\t\tthis.handleEvents({type:ORYX.CONFIG.EVENT_STENCIL_SET_LOADED});\n\t\t} catch (e) {\n\t\t\tORYX.Log.warn(\"Requesting stencil set file failed. (\" + e + \")\");\n\t\t}\n\t},\n\n\toffer: function(pluginData) {\n\t\tif(!this.pluginsData.member(pluginData)){\n\t\t\tthis.pluginsData.push(pluginData);\n\t\t}\n\t},\n\t\n\t/**\n\t * It creates an new event or adds the callback, if already existing,\n\t * for the key combination that the plugin passes in keyCodes attribute\n\t * of the offer method.\n\t * \n\t * The new key down event fits the schema:\n\t * \t\tkey.event[.metactrl][.alt][.shift].'thekeyCode'\n\t */\n\tregisterPluginsOnKeyEvents: function() {\n\t\tthis.pluginsData.each(function(pluginData) {\n\t\t\t\n\t\t\tif(pluginData.keyCodes) {\n\t\t\t\t\n\t\t\t\tpluginData.keyCodes.each(function(keyComb) {\n\t\t\t\t\tvar eventName = \"key.event\";\n\t\t\t\t\t\n\t\t\t\t\t/* Include key action */\n\t\t\t\t\teventName += '.' + keyComb.keyAction;\n\t\t\t\t\t\n\t\t\t\t\tif(keyComb.metaKeys) {\n\t\t\t\t\t\t/* Register on ctrl or apple meta key as meta key */\n\t\t\t\t\t\tif(keyComb.metaKeys.\n\t\t\t\t\t\t\tindexOf(ORYX.CONFIG.META_KEY_META_CTRL) > -1) {\n\t\t\t\t\t\t\t\teventName += \".\" + ORYX.CONFIG.META_KEY_META_CTRL;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t/* Register on alt key as meta key */\n\t\t\t\t\t\tif(keyComb.metaKeys.\n\t\t\t\t\t\t\tindexOf(ORYX.CONFIG.META_KEY_ALT) > -1) {\n\t\t\t\t\t\t\t\teventName += '.' + ORYX.CONFIG.META_KEY_ALT;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t\t/* Register on shift key as meta key */\n\t\t\t\t\t\tif(keyComb.metaKeys.\n\t\t\t\t\t\t\tindexOf(ORYX.CONFIG.META_KEY_SHIFT) > -1) {\n\t\t\t\t\t\t\t\teventName += '.' + ORYX.CONFIG.META_KEY_SHIFT;\n\t\t\t\t\t\t}\t\t\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t/* Register on the actual key */\n\t\t\t\t\tif(keyComb.keyCode)\t{\n\t\t\t\t\t\teventName += '.' + keyComb.keyCode;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t/* Register the event */\n\t\t\t\t\tORYX.Log.debug(\"Register Plugin on Key Event: %0\", eventName);\n\t\t\t\t\tthis.registerOnEvent(eventName,pluginData.functionality);\n\t\t\t\t\n\t\t\t\t}.bind(this));\n\t\t\t}\n\t\t}.bind(this));\n\t},\n\n\tsetSelection: function(elements, subSelectionElement, force) {\n\t\t\n\t\tif (!elements) { elements = [] }\n\t\t\n\t\telements = elements.compact().findAll(function(n){ return n instanceof ORYX.Core.Shape });\n\t\t\n\t\tif (elements.first() instanceof ORYX.Core.Canvas) {\n\t\t\telements = [];\n\t\t}\n\t\t\n\t\tif (!force && elements.length === this.selection.length && this.selection.all(function(r){ return elements.include(r) })){\n\t\t\treturn;\n\t\t}\n\t\t\n\t\tthis.selection = elements;\n\t\tthis._subSelection = subSelectionElement;\n\t\t\n\t\tthis.handleEvents({type:ORYX.CONFIG.EVENT_SELECTION_CHANGED, elements:elements, subSelection: subSelectionElement})\n\t},\n\t\n\tupdateSelection: function() {\n\t\tthis.setSelection(this.selection, this._subSelection, true);\n\t\t/*var s = this.selection;\n\t\tthis.setSelection();\n\t\tthis.setSelection(s);*/\n\t},\n\n\tgetCanvas: function() {\n\t\treturn this._canvas;\n\t},\n\t\n\n\t/**\n\t*\toption = {\n\t*\t\ttype: string,\n\t*\t\tposition: {x:int, y:int},\n\t*\t\tconnectingType:\tuiObj-Class\n\t*\t\tconnectedShape: uiObj\n\t*\t\tdraggin: bool\n\t*\t\tnamespace: url\n\t* parent: ORYX.Core.AbstractShape\n\t*\t\ttemplate: a template shape that the newly created inherits properties from.\n\t*\t\t}\n\t*/\n\tcreateShape: function(option) {\n\n\t\tif(option && option.serialize && option.serialize instanceof Array){\n\t\t\n\t\t\tvar type = option.serialize.find(function(obj){return (obj.prefix+\"-\"+obj.name) == \"oryx-type\"});\n\t\t\tvar stencil = ORYX.Core.StencilSet.stencil(type.value);\n\t\t\n\t\t\tif(stencil.type() == 'node'){\n\t\t\t\tvar newShapeObject = new ORYX.Core.Node({'eventHandlerCallback':this.handleEvents.bind(this)}, stencil);\t\n\t\t\t} else {\n\t\t\t\tvar newShapeObject = new ORYX.Core.Edge({'eventHandlerCallback':this.handleEvents.bind(this)}, stencil);\t\n\t\t\t}\n\t\t\n\t\t\tthis.getCanvas().add(newShapeObject);\n\t\t\tnewShapeObject.deserialize(option.serialize);\n\t\t\n\t\t\treturn newShapeObject;\n\t\t}\n\n\t\t// If there is no argument, throw an exception\n\t\tif(!option || !option.type || !option.namespace) { throw \"To create a new shape you have to give an argument with type and namespace\";}\n\t\t\n\t\tvar canvas = this.getCanvas();\n\t\tvar newShapeObject;\n\n\t\t// Get the shape type\n\t\tvar shapetype = option.type;\n\n\t\t// Get the stencil set\n\t\tvar sset = ORYX.Core.StencilSet.stencilSet(option.namespace);\n\n\t\t// Create an New Shape, dependents on an Edge or a Node\n\n\t\tif(sset.stencil(shapetype).type() == \"node\") {\n\t\t\tnewShapeObject = new ORYX.Core.Node({'eventHandlerCallback':this.handleEvents.bind(this)}, sset.stencil(shapetype))\n\t\t} else {\n\t\t\tnewShapeObject = new ORYX.Core.Edge({'eventHandlerCallback':this.handleEvents.bind(this)}, sset.stencil(shapetype))\n\t\t}\n\t\t\n\t\t// when there is a template, inherit the properties.\n\t\tif(option.template) {\n\n\t\t\tnewShapeObject._jsonStencil.properties = option.template._jsonStencil.properties;\n\t\t\tnewShapeObject.postProcessProperties();\n\t\t}\n\n\t\t// Add to the canvas\n\t\tif(option.parent && newShapeObject instanceof ORYX.Core.Node) {\n\t\t\toption.parent.add(newShapeObject);\n\t\t} else {\n\t\t\tcanvas.add(newShapeObject);\n\t\t}\n\t\t\n\t\t\n\t\t// Set the position\n\t\tvar point = option.position ? option.position : {x:100, y:200};\n\t\n\t\t\n\t\tvar con;\n\t\t// If there is create a shape and in the argument there is given an ConnectingType and is instance of an edge\n\t\tif(option.connectingType && option.connectedShape && !(newShapeObject instanceof ORYX.Core.Edge)) {\n\t\t\t// there will be create a new Edge\n\t\t\tcon = new ORYX.Core.Edge({'eventHandlerCallback':this.handleEvents.bind(this)}, sset.stencil(option.connectingType));\n\t\t\t// And both endings dockers will be referenced to the both shapes\n\t\t\tcon.dockers.first().setDockedShape(option.connectedShape);\n\t\t\tvar magnet = option.connectedShape.getDefaultMagnet();\n\t\t\tvar cPoint = magnet ? magnet.bounds.center() : option.connectedShape.bounds.midPoint();\n\t\t\tcon.dockers.first().setReferencePoint( cPoint );\n\t\t\tcon.dockers.last().setDockedShape(newShapeObject);\n\t\t\tcon.dockers.last().setReferencePoint(newShapeObject.getDefaultMagnet().bounds.center());\n\t\t\t// The Edge will be added to the canvas and be updated\n\t\t\tcanvas.add(con);\t\n\t\t\t//con.update();\n\t\t}\n\t\t\n\t\t// Move the new Shape to the position\n\t\tif(newShapeObject instanceof ORYX.Core.Edge && option.connectedShape) {\n\n\t\t\tnewShapeObject.dockers.first().setDockedShape(option.connectedShape);\n\t\t\t\n\t\t\tif( option.connectedShape instanceof ORYX.Core.Node ){\n\t\t\t\tnewShapeObject.dockers.first().setReferencePoint(option.connectedShape.getDefaultMagnet().bounds.center());\t\t\t\t\t\n\t\t\t\tnewShapeObject.dockers.last().bounds.centerMoveTo(point);\t\t\t\n\t\t\t} else {\n\t\t\t\tnewShapeObject.dockers.first().setReferencePoint(option.connectedShape.bounds.midPoint());\t\t\t\t\t\t\t\t\n\t\t\t}\n\n\t\t} else {\n\t\t\t\n\t\t\tvar b = newShapeObject.bounds\n\t\t\tif( newShapeObject instanceof ORYX.Core.Node && newShapeObject.dockers.length == 1){\n\t\t\t\tb = newShapeObject.dockers.first().bounds\n\t\t\t}\n\t\t\t\n\t\t\tb.centerMoveTo(point);\n\t\t\t\n\t\t\tvar upL = b.upperLeft();\n\t\t\tb.moveBy( -Math.min(upL.x, 0) , -Math.min(upL.y, 0) )\n\t\t\t\n\t\t\tvar lwR = b.lowerRight();\n\t\t\tb.moveBy( -Math.max(lwR.x-canvas.bounds.width(), 0) , -Math.max(lwR.y-canvas.bounds.height(), 0) )\n\t\t\t\n\t\t}\n\t\t\n\t\t// Update the shape\n\t\tif (newShapeObject instanceof ORYX.Core.Edge) {\n\t\t\tnewShapeObject._update(false);\n\t\t}\n\t\t\n\t\t// And refresh the selection\n\t\tif(!(newShapeObject instanceof ORYX.Core.Edge)) {\n\t\t\tthis.setSelection([newShapeObject]);\n\t\t}\n\t\t\n\t\tif(con && con.alignDockers) {\n\t\t\tcon.alignDockers();\n\t\t} \n\t\tif(newShapeObject.alignDockers) {\n\t\t\tnewShapeObject.alignDockers();\n\t\t}\n\n\t\tthis._getPluginFacade().raiseEvent({\n\t\t\ttype \t\t: ORYX.CONFIG.EVENT_SHAPE_CREATED,\n\t\t\tvalue\t\t: newShapeObject\n\t\t});\n\n\t\treturn newShapeObject;\n\t},\n\t\n\tdeleteShape: function(shape) {\n\t\t\n\t\tif (!shape || !shape.parent){ return }\n\t\t\n\t\t//remove shape from parent\n\t\t// this also removes it from DOM\n\t\tshape.parent.remove(shape);\n\t\t\n\t\t//delete references to outgoing edges\n\t\tshape.getOutgoingShapes().each(function(os) {\n\t\t\tvar docker = os.getDockers().first();\n\t\t\tif(docker && docker.getDockedShape() == shape) {\n\t\t\t\tdocker.setDockedShape(undefined);\n\t\t\t}\n\t\t}.bind(this));\n\t\t\n\t\t//delete references to incoming edges\n\t\tshape.getIncomingShapes().each(function(is) {\n\t\t\tvar docker = is.getDockers().last();\n\t\t\tif(docker && docker.getDockedShape() == shape) {\n\t\t\t\tdocker.setDockedShape(undefined);\n\t\t\t}\n\t\t}.bind(this));\n\t\t\n\t\t//delete references of the shape's dockers\n\t\tshape.getDockers().each(function(docker) {\n\t\t\tdocker.setDockedShape(undefined);\n\t\t});\n \n\t\tthis._getPluginFacade().raiseEvent({\n\t\t\ttype \t\t: ORYX.CONFIG.EVENT_SHAPE_DELETED,\n\t\t\tvalue\t\t: shape\n\t\t});\n\t},\n\t\n\t/**\n\t * Returns an object with meta data about the model.\n\t * Like name, description, ...\n\t * \n\t * Empty object with the current backend.\n\t * \n\t * @return {Object} Meta data about the model\n\t */\n\tgetModelMetaData: function() {\n\t\treturn this.modelMetaData;\n\t},\n\n\t/* Event-Handler Methods */\n\t\n\t/**\n\t* Helper method to execute an event immediately. The event is not\n\t* scheduled in the _eventsQueue. Needed to handle Layout-Callbacks.\n\t*/\n\t_executeEventImmediately: function(eventObj) {\n\t\tif(this.DOMEventListeners.keys().member(eventObj.event.type)) {\n\t\t\tthis.DOMEventListeners[eventObj.event.type].each((function(value) {\n\t\t\t\tvalue(eventObj.event, eventObj.arg);\t\t\n\t\t\t}).bind(this));\n\t\t}\n\t},\n\n\t_executeEvents: function() {\n\t\tthis._queueRunning = true;\n\t\twhile(this._eventsQueue.length > 0) {\n\t\t\tvar val = this._eventsQueue.shift();\n\t\t\tthis._executeEventImmediately(val);\n\t\t}\n\t\tthis._queueRunning = false;\n\t},\n\t\n\t/**\n\t * Leitet die Events an die Editor-Spezifischen Event-Methoden weiter\n\t * @param {Object} event Event , welches gefeuert wurde\n\t * @param {Object} uiObj Target-UiObj\n\t */\n\thandleEvents: function(event, uiObj) {\n\t\t\n\t\tORYX.Log.trace(\"Dispatching event type %0 on %1\", event.type, uiObj);\n\n\t\tswitch(event.type) {\n\t\t\tcase ORYX.CONFIG.EVENT_MOUSEDOWN:\n\t\t\t\tthis._handleMouseDown(event, uiObj);\n\t\t\t\tbreak;\n\t\t\tcase ORYX.CONFIG.EVENT_MOUSEMOVE:\n\t\t\t\tthis._handleMouseMove(event, uiObj);\n\t\t\t\tbreak;\n\t\t\tcase ORYX.CONFIG.EVENT_MOUSEUP:\n\t\t\t\tthis._handleMouseUp(event, uiObj);\n\t\t\t\tbreak;\n\t\t\tcase ORYX.CONFIG.EVENT_MOUSEOVER:\n\t\t\t\tthis._handleMouseHover(event, uiObj);\n\t\t\t\tbreak;\n\t\t\tcase ORYX.CONFIG.EVENT_MOUSEOUT:\n\t\t\t\tthis._handleMouseOut(event, uiObj);\n\t\t\t\tbreak;\n\t\t}\n\t\t/* Force execution if necessary. Used while handle Layout-Callbacks. */\n\t\tif(event.forceExecution) {\n\t\t\tthis._executeEventImmediately({event: event, arg: uiObj});\n\t\t} else {\n\t\t\tthis._eventsQueue.push({event: event, arg: uiObj});\n\t\t}\n\t\t\n\t\tif(!this._queueRunning) {\n\t\t\tthis._executeEvents();\n\t\t}\n\t\t\n\t\t// TODO: Make this return whether no listener returned false.\n\t\t// So that, when one considers bubbling undesireable, it won't happen.\n\t\treturn false;\n\t},\n\n\tcatchKeyUpEvents: function(event) {\n\t\tif(!this._keyupEnabled) {\n\t\t\treturn;\n\t\t}\n\t\t/* assure we have the current event. */\n if (!event) \n event = window.event;\n \n\t\t// Checks if the event comes from some input field\n\t\tif ( [\"INPUT\", \"TEXTAREA\"].include(event.target.tagName.toUpperCase()) ){\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t/* Create key up event type */\n\t\tvar keyUpEvent = this.createKeyCombEvent(event,\tORYX.CONFIG.KEY_ACTION_UP);\n\t\t\n\t\tORYX.Log.debug(\"Key Event to handle: %0\", keyUpEvent);\n\n\t\t/* forward to dispatching. */\n\t\tthis.handleEvents({type: keyUpEvent, event:event});\n\t},\n\t\n\t/**\n\t * Catches all key down events and forward the appropriated event to \n\t * dispatching concerning to the pressed keys.\n\t * \n\t * @param {Event} \n\t * \t\tThe key down event to handle\n\t */\n\tcatchKeyDownEvents: function(event) {\n\t\tif(!this._keydownEnabled) {\n\t\t\treturn;\n\t\t}\n\t\t/* Assure we have the current event. */\n if (!event) \n event = window.event;\n \n\t\t/* Fixed in FF3 */\n\t\t// This is a mac-specific fix. The mozilla event object has no knowledge\n\t\t// of meta key modifier on osx, however, it is needed for certain\n\t\t// shortcuts. This fix adds the metaKey field to the event object, so\n\t\t// that all listeners that registered per Oryx plugin facade profit from\n\t\t// this. The original bug is filed in\n\t\t// https://bugzilla.mozilla.org/show_bug.cgi?id=418334\n\t\t//if (this.__currentKey == ORYX.CONFIG.KEY_CODE_META) {\n\t\t//\tevent.appleMetaKey = true;\n\t\t//}\n\t\t//this.__currentKey = pressedKey;\n\t\t\n\t\t// Checks if the event comes from some input field\n\t\tif ( [\"INPUT\", \"TEXTAREA\"].include(event.target.tagName.toUpperCase()) ){\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t/* Create key up event type */\n\t\tvar keyDownEvent = this.createKeyCombEvent(event, ORYX.CONFIG.KEY_ACTION_DOWN);\n\t\t\n\t\tORYX.Log.debug(\"Key Event to handle: %0\", keyDownEvent);\n\t\t\n\t\t/* Forward to dispatching. */\n\t\tthis.handleEvents({type: keyDownEvent,event: event});\n\t},\n\t\n\t/**\n\t * Creates the event type name concerning to the pressed keys.\n\t * \n\t * @param {Event} keyDownEvent\n\t * \t\tThe source keyDownEvent to build up the event name\n\t */\n\tcreateKeyCombEvent: function(keyEvent, keyAction) {\n\n\t\t/* Get the currently pressed key code. */\n var pressedKey = keyEvent.which || keyEvent.keyCode;\n\t\t//this.__currentKey = pressedKey;\n\t\t\n\t\t/* Event name */\n\t\tvar eventName = \"key.event\";\n\t\t\n\t\t/* Key action */\n\t\tif(keyAction) {\n\t\t\teventName += \".\" + keyAction;\n\t\t}\n\t\t\n\t\t/* Ctrl or apple meta key is pressed */\n\t\tif(keyEvent.ctrlKey || keyEvent.metaKey) {\n\t\t\teventName += \".\" + ORYX.CONFIG.META_KEY_META_CTRL;\n\t\t}\n\t\t\n\t\t/* Alt key is pressed */\n\t\tif(keyEvent.altKey) {\n\t\t\teventName += \".\" + ORYX.CONFIG.META_KEY_ALT;\n\t\t}\n\t\t\n\t\t/* Alt key is pressed */\n\t\tif(keyEvent.shiftKey) {\n\t\t\teventName += \".\" + ORYX.CONFIG.META_KEY_SHIFT;\n\t\t}\n\t\t\n\t\t/* Return the composed event name */\n\t\treturn eventName + \".\" + pressedKey;\n\t},\n\n\t_handleMouseDown: function(event, uiObj) {\n\t\t\n\t\t// get canvas.\n\t\tvar canvas = this.getCanvas();\n\t\t// Try to get the focus\n\t\tcanvas.focus()\n\t\n\t\t// find the shape that is responsible for this element's id.\n\t\tvar element = event.currentTarget;\n\t\tvar elementController = uiObj;\n\n\t\t// gather information on selection.\n\t\tvar currentIsSelectable = (elementController !== null) &&\n\t\t\t(elementController !== undefined) && (elementController.isSelectable);\n\t\tvar currentIsMovable = (elementController !== null) &&\n\t\t\t(elementController !== undefined) && (elementController.isMovable);\n\n\t\tvar modifierKeyPressed = event.shiftKey || event.ctrlKey;\n\t\tvar noObjectsSelected = this.selection.length === 0;\n\t\tvar currentIsSelected = this.selection.member(elementController);\n\n\n\t\t// Rule #1: When there is nothing selected, select the clicked object.\n\t\tif(currentIsSelectable && noObjectsSelected) {\n\t\t\tthis.setSelection([elementController]);\n\n\t\t\tORYX.Log.trace(\"Rule #1 applied for mouse down on %0\", element.id);\n\n\t\t// Rule #3: When at least one element is selected, and there is no\n\t\t// control key pressed, and the clicked object is not selected, select\n\t\t// the clicked object.\n\t\t} else if(currentIsSelectable && !noObjectsSelected &&\n\t\t\t!modifierKeyPressed && !currentIsSelected) {\n\t\t\tthis.setSelection([elementController]);\n\n\t\t\t//var objectType = elementController.readAttributes();\n\t\t\t//alert(objectType[0] + \": \" + objectType[1]);\n\n\t\t\tORYX.Log.trace(\"Rule #3 applied for mouse down on %0\", element.id);\n\n\t\t// Rule #4: When the control key is pressed, and the current object is\n\t\t// not selected, add it to the selection.\n\t\t} else if(currentIsSelectable && modifierKeyPressed\n\t\t\t&& !currentIsSelected) {\n\t\t\tvar newSelection = this.selection.clone();\n\t\t\tnewSelection.push(elementController)\n\t\t\tthis.setSelection(newSelection)\n\n\t\t\tORYX.Log.trace(\"Rule #4 applied for mouse down on %0\", element.id);\n\n\t\t// Rule #6\n\t\t} else if(currentIsSelectable && currentIsSelected &&\n\t\t\tmodifierKeyPressed) {\n\t\t\tvar newSelection = this.selection.clone();\n\t\t\tthis.setSelection(newSelection.without(elementController))\n\n\t\t\tORYX.Log.trace(\"Rule #6 applied for mouse down on %0\", elementController.id);\n\n\t\t// Rule #5: When there is at least one object selected and no control\n\t\t// key pressed, we're dragging.\n\t\t/*} else if(currentIsSelectable && !noObjectsSelected\n\t\t\t&& !modifierKeyPressed) {\n\n\t\t\tif(this.log.isTraceEnabled())\n\t\t\t\tthis.log.trace(\"Rule #5 applied for mouse down on \"+element.id);\n*/\n\t\t// Rule #2: When clicked on something that is neither\n\t\t// selectable nor movable, clear the selection, and return.\n\t\t} else if (!currentIsSelectable && !currentIsMovable) {\n\t\t\tthis.setSelection([]);\n\t\t\t\n\t\t\tORYX.Log.trace(\"Rule #2 applied for mouse down on %0\", element.id);\n\n\t\t\treturn;\n\n\t\t// Rule #7: When the current object is not selectable but movable,\n\t\t// it is probably a control. Leave the selection unchanged but set\n\t\t// the movedObject to the current one and enable Drag. Dockers will\n\t\t// be processed in the dragDocker plugin.\n\t\t} else if(!currentIsSelectable && currentIsMovable && !(elementController instanceof ORYX.Core.Controls.Docker)) {\n\t\t\t// TODO: If there is any moveable elements, do this in a plugin\n\t\t\t//ORYX.Core.UIEnableDrag(event, elementController);\n\n\t\t\tORYX.Log.trace(\"Rule #7 applied for mouse down on %0\", element.id);\n\t\t\n\t\t// Rule #8: When the element is selectable and is currently selected and no \n\t\t// modifier key is pressed\n\t\t} else if(currentIsSelectable && currentIsSelected &&\n\t\t\t!modifierKeyPressed) {\n\t\t\tthis._subSelection = this._subSelection != elementController ? elementController : undefined;\n\t\t\t\t\t\t\n\t\t\tthis.setSelection(this.selection, this._subSelection);\n\t\t\t\n\t\t\tORYX.Log.trace(\"Rule #8 applied for mouse down on %0\", element.id);\n\t\t}\n\t\t\n\t\t\n\t\t// prevent event from bubbling, return.\n\t\t//Event.stop(event);\n\t\treturn;\n\t},\n\n\t_handleMouseMove: function(event, uiObj) {\n\t\treturn;\n\t},\n\n\t_handleMouseUp: function(event, uiObj) {\n\t\t// get canvas.\n\t\tvar canvas = this.getCanvas();\n\n\t\t// find the shape that is responsible for this elemement's id.\n\t\tvar elementController = uiObj;\n\n\t\t//get event position\n\t\tvar evPos = this.eventCoordinates(event);\n\n\t\t//Event.stop(event);\n\t},\n\n\t_handleMouseHover: function(event, uiObj) {\n\t\treturn;\n\t},\n\n\t_handleMouseOut: function(event, uiObj) {\n\t\treturn;\n\t},\n\n\t/**\n\t * Calculates the event coordinates to SVG document coordinates.\n\t * @param {Event} event\n\t * @return {SVGPoint} The event coordinates in the SVG document\n\t */\n\teventCoordinates: function(event) {\n\n\t\tvar canvas = this.getCanvas();\n\n\t\tvar svgPoint = canvas.node.ownerSVGElement.createSVGPoint();\n\t\tsvgPoint.x = event.clientX;\n\t\tsvgPoint.y = event.clientY;\n\t\tvar matrix = canvas.node.getScreenCTM();\n\t\treturn svgPoint.matrixTransform(matrix.inverse());\n\t}\n};\nORYX.Editor = Clazz.extend(ORYX.Editor);\n\n/**\n * Creates a new ORYX.Editor instance by fetching a model from given url and passing it to the constructur\n * @param {String} modelUrl The JSON URL of a model.\n * @param {Object} config Editor config passed to the constructur, merged with the response of the request to modelUrl\n */\nORYX.Editor.createByUrl = function(modelUrl, config){\n if(!config) config = {};\n \n new Ajax.Request(modelUrl, {\n method: 'GET',\n onSuccess: function(transport) {\n var editorConfig = Ext.decode(transport.responseText);\n editorConfig = Ext.applyIf(editorConfig, config);\n new ORYX.Editor(editorConfig);\n \n if (\"function\" == typeof(config.onSuccess)) {\n\t\t \tconfig.onSuccess(transport);\n\t }\n }.bind(this),\n onFailure: function(transport) {\n \tif (\"function\" == typeof(config.onFailure)) {\n \t config.onFailure(transport);\n \t}\n }.bind(this)\n });\n}\n\n// TODO Implement namespace awareness on attribute level.\n/**\n * graft() function\n * Originally by Sean M. Burke from interglacial.com, altered for usage with\n * SVG and namespace (xmlns) support. Be sure you understand xmlns before\n * using this funtion, as it creates all grafted elements in the xmlns\n * provided by you and all element's attribures in default xmlns. If you\n * need to graft elements in a certain xmlns and wish to assign attributes\n * in both that and another xmlns, you will need to do stepwise grafting,\n * adding non-default attributes yourself or you'll have to enhance this\n * function. Latter, I would appreciate: martin�apfelfabrik.de\n * @param {Object} namespace The namespace in which\n * \t\t\t\t\telements should be grafted.\n * @param {Object} parent The element that should contain the grafted\n * \t\t\t\t\tstructure after the function returned.\n * @param {Object} t the crafting structure.\n * @param {Object} doc the document in which grafting is performed.\n */\nORYX.Editor.graft = function(namespace, parent, t, doc) {\n\n doc = (doc || (parent && parent.ownerDocument) || document);\n var e;\n if(t === undefined) {\n throw \"Can't graft an undefined value\";\n } else if(t.constructor == String) {\n e = doc.createTextNode( t );\n } else {\n for(var i = 0; i < t.length; i++) {\n if( i === 0 && t[i].constructor == String ) {\n var snared;\n snared = t[i].match( /^([a-z][a-z0-9]*)\\.([^\\s\\.]+)$/i );\n if( snared ) {\n e = doc.createElementNS(namespace, snared[1] );\n e.setAttributeNS(null, 'class', snared[2] );\n continue;\n }\n snared = t[i].match( /^([a-z][a-z0-9]*)$/i );\n if( snared ) {\n e = doc.createElementNS(namespace, snared[1] ); // but no class\n continue;\n }\n\n // Otherwise:\n e = doc.createElementNS(namespace, \"span\" );\n e.setAttribute(null, \"class\", \"namelessFromLOL\" );\n }\n\n if( t[i] === undefined ) {\n throw \"Can't graft an undefined value in a list!\";\n } else if( t[i].constructor == String || t[i].constructor == Array ) {\n this.graft(namespace, e, t[i], doc );\n } else if( t[i].constructor == Number ) {\n this.graft(namespace, e, t[i].toString(), doc );\n } else if( t[i].constructor == Object ) {\n // hash's properties => element's attributes\n for(var k in t[i]) { e.setAttributeNS(null, k, t[i][k] ); }\n } else {\n\n\t\t\t}\n }\n }\n\tif(parent) {\n\t parent.appendChild( e );\n\t} else {\n\n\t}\n return e; // return the topmost created node\n};\n\nORYX.Editor.provideId = function() {\n\tvar res = [], hex = '0123456789ABCDEF';\n\n\tfor (var i = 0; i < 36; i++) res[i] = Math.floor(Math.random()*0x10);\n\n\tres[14] = 4;\n\tres[19] = (res[19] & 0x3) | 0x8;\n\n\tfor (var i = 0; i < 36; i++) res[i] = hex[res[i]];\n\n\tres[8] = res[13] = res[18] = res[23] = '-';\n\n\treturn \"_\" + res.join('');\n};\n\n/**\n * When working with Ext, conditionally the window needs to be resized. To do\n * so, use this class method. Resize is deferred until 100ms, and all subsequent\n * resizeBugFix calls are ignored until the initially requested resize is\n * performed.\n */\nORYX.Editor.resizeFix = function() {\n\tif (!ORYX.Editor._resizeFixTimeout) {\n\t\tORYX.Editor._resizeFixTimeout = window.setTimeout(function() {\n\t\t\twindow.resizeBy(1,1);\n\t\t\twindow.resizeBy(-1,-1);\n\t\t\tORYX.Editor._resizefixTimeout = null;\n\t\t}, 100); \n\t}\n};\n\nORYX.Editor.Cookie = {\n\t\n\tcallbacks:[],\n\t\t\n\tonChange: function( callback, interval ){\n\t\n\t\tthis.callbacks.push(callback);\n\t\tthis.start( interval )\n\t\n\t},\n\t\n\tstart: function( interval ){\n\t\t\n\t\tif( this.pe ){\n\t\t\treturn;\n\t\t}\n\t\t\n\t\tvar currentString = document.cookie;\n\t\t\n\t\tthis.pe = new PeriodicalExecuter( function(){\n\t\t\t\n\t\t\tif( currentString != document.cookie ){\n\t\t\t\tcurrentString = document.cookie;\n\t\t\t\tthis.callbacks.each(function(callback){ callback(this.getParams()) }.bind(this));\n\t\t\t}\n\t\t\t\n\t\t}.bind(this), ( interval || 10000 ) / 1000);\t\n\t},\n\t\n\tstop: function(){\n\n\t\tif( this.pe ){\n\t\t\tthis.pe.stop();\n\t\t\tthis.pe = null;\n\t\t}\n\t},\n\t\t\n\tgetParams: function(){\n\t\tvar res = {};\n\t\t\n\t\tvar p = document.cookie;\n\t\tp.split(\"; \").each(function(param){ res[param.split(\"=\")[0]] = param.split(\"=\")[1];});\n\t\t\n\t\treturn res;\n\t},\t\n\t\n\ttoString: function(){\n\t\treturn document.cookie;\n\t}\n};\n\n/**\n * Workaround for SAFARI/Webkit, because\n * when trying to check SVGSVGElement of instanceof there is \n * raising an error\n * \n */\nORYX.Editor.SVGClassElementsAreAvailable = true;\nORYX.Editor.setMissingClasses = function() {\n\t\n\ttry {\n\t\tSVGElement;\n\t} catch(e) {\n\t\tORYX.Editor.SVGClassElementsAreAvailable = false;\n\t\tSVGSVGElement \t\t= document.createElementNS('http://www.w3.org/2000/svg', 'svg').toString();\n\t\tSVGGElement \t\t= document.createElementNS('http://www.w3.org/2000/svg', 'g').toString();\n\t\tSVGPathElement \t\t= document.createElementNS('http://www.w3.org/2000/svg', 'path').toString();\n\t\tSVGTextElement \t\t= document.createElementNS('http://www.w3.org/2000/svg', 'text').toString();\n\t\t//SVGMarkerElement \t= document.createElementNS('http://www.w3.org/2000/svg', 'marker').toString();\n\t\tSVGRectElement \t\t= document.createElementNS('http://www.w3.org/2000/svg', 'rect').toString();\n\t\tSVGImageElement \t= document.createElementNS('http://www.w3.org/2000/svg', 'image').toString();\n\t\tSVGCircleElement \t= document.createElementNS('http://www.w3.org/2000/svg', 'circle').toString();\n\t\tSVGEllipseElement \t= document.createElementNS('http://www.w3.org/2000/svg', 'ellipse').toString();\n\t\tSVGLineElement\t \t= document.createElementNS('http://www.w3.org/2000/svg', 'line').toString();\n\t\tSVGPolylineElement \t= document.createElementNS('http://www.w3.org/2000/svg', 'polyline').toString();\n\t\tSVGPolygonElement \t= document.createElementNS('http://www.w3.org/2000/svg', 'polygon').toString();\n\t\t\n\t}\n\t\n}\n\nORYX.Editor.checkIfSaved = function() {\n if(ORYX.READONLY == true || ORYX.VIEWLOCKED == true) {\n return true;\n } else {\n return ORYX.PROCESS_SAVED;\n }\n};\n\nORYX.Editor.checkClassType = function( classInst, classType ) {\n\t\n\tif( ORYX.Editor.SVGClassElementsAreAvailable ){\n\t\treturn classInst instanceof classType\n\t} else {\n\t\treturn classInst == classType\n\t}\n};\n\nORYX.Editor.makeExtModalWindowKeysave = function(facade) {\n\tExt.override(Ext.Window,{\n\t\tbeforeShow : function(){\n\t\t\tdelete this.el.lastXY;\n\t\t\tdelete this.el.lastLT;\n\t\t\tif(this.x === undefined || this.y === undefined){\n\t\t\t\tvar xy = this.el.getAlignToXY(this.container, 'c-c');\n\t\t\t\tvar pos = this.el.translatePoints(xy[0], xy[1]);\n\t\t\t\tthis.x = this.x === undefined? pos.left : this.x;\n\t\t\t\tthis.y = this.y === undefined? pos.top : this.y;\n\t\t\t}\n\t\t\tthis.el.setLeftTop(this.x, this.y);\n\t\n\t\t\tif(this.expandOnShow){\n\t\t\t\tthis.expand(false);\n\t\t\t}\n\t\n\t\t\tif(this.modal){\n\t\t\t\tfacade.disableEvent(ORYX.CONFIG.EVENT_KEYDOWN);\n\t\t\t\tExt.getBody().addClass(\"x-body-masked\");\n\t\t\t\tthis.mask.setSize(Ext.lib.Dom.getViewWidth(true), Ext.lib.Dom.getViewHeight(true));\n\t\t\t\tthis.mask.show();\n\t\t\t}\n\t\t},\n\t\tafterHide : function(){\n\t this.proxy.hide();\n\t if(this.monitorResize || this.modal || this.constrain || this.constrainHeader){\n\t Ext.EventManager.removeResizeListener(this.onWindowResize, this);\n\t }\n\t if(this.modal){\n\t this.mask.hide();\n\t facade.enableEvent(ORYX.CONFIG.EVENT_KEYDOWN);\n\t Ext.getBody().removeClass(\"x-body-masked\");\n\t }\n\t if(this.keyMap){\n\t this.keyMap.disable();\n\t }\n\t this.fireEvent(\"hide\", this);\n\t },\n\t beforeDestroy : function(){\n\t \tif(this.modal)\n\t \t\tfacade.enableEvent(ORYX.CONFIG.EVENT_KEYDOWN);\n\t Ext.destroy(\n\t this.resizer,\n\t this.dd,\n\t this.proxy,\n\t this.mask\n\t );\n\t Ext.Window.superclass.beforeDestroy.call(this);\n\t }\n\t});\n}\n"},"middle":{"kind":"string","value":"init"}}},{"rowIdx":180,"cells":{"file_name":{"kind":"string","value":"TagForm.test.tsx"},"prefix":{"kind":"string","value":"import { mount, ReactWrapper } from \"enzyme\";\nimport TagForm from \"../index\";\n\nconst resetMessage = jest.fn();\nconst resetForm = jest.fn();\nconst cancelForm = jest.fn();\nconst submitAction = jest.fn();\n\nconst initialProps = {\n _id: \"\",\n resetMessage,\n serverError: \"\",\n serverMessage: \"\",\n resetForm,\n cancelForm,\n submitAction\n};\n\ndescribe(\"TagForm\", () => {\n let wrapper: ReactWrapper;\n beforeEach(() => {\n wrapper = mount();\n });\n\n afterEach(() => {\n resetMessage.mockClear();\n resetForm.mockClear();\n cancelForm.mockClear();\n submitAction.mockClear();\n });\n\n it(\"renders without error \", () => {\n expect(wrapper.find(\"form\")).toExist();\n });\n\n it(\"calls the handleChange which updates a field\", () => {\n const value = \"updated!\";\n const name = \"tagName\";\n const inputNode = () => wrapper.find(\"[data-testid='tagName']\").first();\n\n inputNode().simulate(\"change\", { target: { name, value } });\n\n expect(inputNode()).toHaveProp(\"value\", value);\n });\n\n // it(\"calls resetMessage when the form is unmounted\", () => {\n // wrapper.unmount();\n // expect(resetMessage).toHaveBeenCalledTimes(1);\n // });\n\n it(\"when a tag submits an empty form, the form displays errors\", () => {\n wrapper.find(\"form\").simulate(\"submit\");\n\n expect(wrapper.find(\"[data-testid='errors']\")).toHaveLength(2);\n });\n\n describe(\"with form data\", () => {\n beforeEach(() => {\n [\"tagName\", \"category\"].forEach(name => {\n wrapper\n .find(`[data-testid=\"${name}\"]`)\n .first()\n .simulate(\"change\", {\n target: { name, value: \"taggy\" }\n });\n });\n });\n\n it(\"when the form is submitted, it calls submitAction with form values and an id when there is no errors\", () => {\n const value = \"taggy\";\n const _id = \"\";\n wrapper.find(\"form\").simulate(\"submit\");\n expect(submitAction).toHaveBeenCalledWith({\n _id,\n tagName: value,\n category: value\n });\n });\n\n it(\"calls resetForm when the serverMessage\", () => {\n wrapper.find(\"form\").simulate(\"submit\");\n wrapper.setProps({ serverMessage: \"message\" });\n\n expect(resetForm).toHaveBeenCalledTimes(1);\n });\n\n it(\"when the form is submitted but a server error is thrown, then the form will not be submitting\", () => {\n const submitButton = () => wrapper.find(\"[data-testid='submit']\");\n wrapper.find(\"form\").simulate(\"submit\");\n\n expect(submitButton()).toHaveProp(\"disabled\", true);\n\n wrapper.setProps({ serverError: \"server\" });\n wrapper.update();"},"suffix":{"kind":"string","value":" });\n});"},"middle":{"kind":"string","value":" expect(submitButton()).toHaveProp(\"disabled\", false);\n });"}}},{"rowIdx":181,"cells":{"file_name":{"kind":"string","value":"kubelet_common.go"},"prefix":{"kind":"string","value":"// Unless explicitly stated otherwise all files in this repository are licensed\n// under the Apache License Version 2.0.\n// This product includes software developed at Datadog (https://www.datadoghq.com/).\n// Copyright 2018 Datadog, Inc.\n\npackage kubelet\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"errors\"\n\t\"fmt\"\n\t\"strings\"\n)\n\nvar (\n\t// ErrNotCompiled is returned if kubelet support is not compiled in.\n\t// User classes should handle that case as gracefully as possible.\n\tErrNotCompiled = errors.New(\"kubelet support not compiled in\")\n\n\t// KubePodPrefix is the entity prefix for Kubernetes pods\n\tKubePodPrefix = \"kubernetes_pod://\"\n)\n"},"suffix":{"kind":"string","value":"\t\treturn \"\"\n\t}\n\treturn fmt.Sprintf(\"%s%s\", KubePodPrefix, uid)\n}\n\n// ParseMetricFromRaw parses a metric from raw prometheus text\nfunc ParseMetricFromRaw(raw []byte, metric string) (string, error) {\n\tbytesReader := bytes.NewReader(raw)\n\tscanner := bufio.NewScanner(bytesReader)\n\tfor scanner.Scan() {\n\t\t// skipping comments\n\t\tif string(scanner.Text()[0]) == \"#\" {\n\t\t\tcontinue\n\t\t}\n\t\tif strings.Contains(scanner.Text(), metric) {\n\t\t\treturn scanner.Text(), nil\n\t\t}\n\t}\n\treturn \"\", fmt.Errorf(\"%s metric not found in payload\", metric)\n}"},"middle":{"kind":"string","value":"// PodUIDToEntityName returns a prefixed entity name from a pod UID\nfunc PodUIDToEntityName(uid string) string {\n\tif uid == \"\" {"}}},{"rowIdx":182,"cells":{"file_name":{"kind":"string","value":"solution.go"},"prefix":{"kind":"string","value":"package main\n\nimport (\n\t\"bufio\"\n\t\"bytes\"\n\t\"fmt\"\n\t\"os\"\n)\n\nfunc "},"suffix":{"kind":"string","value":"() {\n\n\treader := bufio.NewReader(os.Stdin)\n\n\ttc := readNum(reader)\n\tvar buf bytes.Buffer\n\n\tfor tc > 0 {\n\t\ttc--\n\t\tn := readNum(reader)\n\n\t\tS := readString(reader)\n\n\t\tE := make([][]int, n-1)\n\n\t\tfor i := 0; i < n-1; i++ {\n\t\t\tE[i] = readNNums(reader, 2)\n\t\t}\n\n\t\tq := readNum(reader)\n\n\t\tQ := make([][]int, q)\n\n\t\tfor i := 0; i < q; i++ {\n\t\t\tQ[i] = readNNums(reader, 2)\n\t\t}\n\n\t\tres := solve(n, S, E, Q)\n\n\t\tfor i := 0; i < q; i++ {\n\t\t\tif res[i] {\n\t\t\t\tbuf.WriteString(\"YES\\n\")\n\t\t\t} else {\n\t\t\t\tbuf.WriteString(\"NO\\n\")\n\t\t\t}\n\t\t}\n\t}\n\tfmt.Print(buf.String())\n}\n\nfunc readUint64(bytes []byte, from int, val *uint64) int {\n\ti := from\n\n\tvar tmp uint64\n\tfor i < len(bytes) && bytes[i] >= '0' && bytes[i] <= '9' {\n\t\ttmp = tmp*10 + uint64(bytes[i]-'0')\n\t\ti++\n\t}\n\t*val = tmp\n\n\treturn i\n}\n\nfunc readInt(bytes []byte, from int, val *int) int {\n\ti := from\n\tsign := 1\n\tif bytes[i] == '-' {\n\t\tsign = -1\n\t\ti++\n\t}\n\ttmp := 0\n\tfor i < len(bytes) && bytes[i] >= '0' && bytes[i] <= '9' {\n\t\ttmp = tmp*10 + int(bytes[i]-'0')\n\t\ti++\n\t}\n\t*val = tmp * sign\n\treturn i\n}\n\nfunc readString(reader *bufio.Reader) string {\n\ts, _ := reader.ReadString('\\n')\n\tfor i := 0; i < len(s); i++ {\n\t\tif s[i] == '\\n' {\n\t\t\treturn s[:i]\n\t\t}\n\t}\n\treturn s\n}\n\nfunc readNum(reader *bufio.Reader) (a int) {\n\tbs, _ := reader.ReadBytes('\\n')\n\treadInt(bs, 0, &a)\n\treturn\n}\n\nfunc readTwoNums(reader *bufio.Reader) (a int, b int) {\n\tres := readNNums(reader, 2)\n\ta, b = res[0], res[1]\n\treturn\n}\n\nfunc readThreeNums(reader *bufio.Reader) (a int, b int, c int) {\n\tres := readNNums(reader, 3)\n\ta, b, c = res[0], res[1], res[2]\n\treturn\n}\n\nfunc readNNums(reader *bufio.Reader, n int) []int {\n\tres := make([]int, n)\n\tif n == 0 {\n\t\treturn res\n\t}\n\tx := 0\n\tbs, _ := reader.ReadBytes('\\n')\n\tfor i := 0; i < n; i++ {\n\t\tfor x < len(bs) && (bs[x] < '0' || bs[x] > '9') && bs[x] != '-' {\n\t\t\tx++\n\t\t}\n\t\tx = readInt(bs, x, &res[i])\n\t}\n\treturn res\n}\n\nfunc readFloat64(bytes []byte, from int, val *float64) int {\n\ti := from\n\tvar sign float64 = 1\n\tif bytes[i] == '-' {\n\t\tsign = -1\n\t\ti++\n\t}\n\tvar real int64\n\n\tfor i < len(bytes) && bytes[i] >= '0' && bytes[i] <= '9' {\n\t\treal = real*10 + int64(bytes[i]-'0')\n\t\ti++\n\t}\n\n\tif i == len(bytes) || bytes[i] != '.' {\n\t\t*val = float64(real)\n\t\treturn i\n\t}\n\n\t// bytes[i] == '.'\n\ti++\n\n\tvar fraq float64\n\tvar base float64 = 0.1\n\tfor i < len(bytes) && bytes[i] >= '0' && bytes[i] <= '9' {\n\t\tfraq += base * float64(bytes[i]-'0')\n\t\tbase /= 10\n\t\ti++\n\t}\n\n\t*val = (float64(real) + fraq) * sign\n\n\treturn i\n}\n\nfunc readNFloats(reader *bufio.Reader, n int) []float64 {\n\ts, _ := reader.ReadBytes('\\n')\n\tres := make([]float64, n)\n\tvar pos int\n\tfor i := 0; i < n; i++ {\n\t\tpos = readFloat64(s, pos, &res[i]) + 1\n\t}\n\treturn res\n}\n\nconst H = 20\n\nfunc solve(n int, S string, E [][]int, Q [][]int) []bool {\n\n\tg := NewGraph(n, len(E)*2)\n\n\tfor _, e := range E {\n\t\tu, v := e[0], e[1]\n\t\tu--\n\t\tv--\n\t\tg.AddEdge(u, v)\n\t\tg.AddEdge(v, u)\n\t}\n\n\tD := make([]int, n)\n\tP := make([][]int, n)\n\tcnt := make([][]int, n)\n\n\tfor i := 0; i < n; i++ {\n\t\tcnt[i] = make([]int, 26)\n\t}\n\n\tvar dfs func(p, u int)\n\n\tdfs = func(p, u int) {\n\t\tP[u] = make([]int, H)\n\t\tP[u][0] = p\n\t\tfor i := 1; i < H; i++ {\n\t\t\tP[u][i] = P[P[u][i-1]][i-1]\n\t\t}\n\n\t\tcnt[u][int(S[u]-'a')]++\n\n\t\tfor i := g.nodes[u]; i > 0; i = g.next[i] {\n\t\t\tv := g.to[i]\n\t\t\tif p != v {\n\t\t\t\tD[v] = D[u] + 1\n\t\t\t\tcopy(cnt[v], cnt[u])\n\t\t\t\tdfs(u, v)\n\t\t\t}\n\t\t}\n\t}\n\n\tdfs(0, 0)\n\n\tlca := func(u, v int) int {\n\t\tif D[u] < D[v] {\n\t\t\tu, v = v, u\n\t\t}\n\n\t\tfor i := H - 1; i >= 0; i-- {\n\t\t\tif D[u]-(1<= D[v] {\n\t\t\t\tu = P[u][i]\n\t\t\t}\n\t\t}\n\t\tif u == v {\n\t\t\treturn u\n\t\t}\n\n\t\tfor i := H - 1; i >= 0; i-- {\n\t\t\tif P[u][i] != P[v][i] {\n\t\t\t\tu = P[u][i]\n\t\t\t\tv = P[v][i]\n\t\t\t}\n\t\t}\n\t\treturn P[u][0]\n\t}\n\n\tans := make([]bool, len(Q))\n\n\tfor i, cur := range Q {\n\t\tu, v := cur[0], cur[1]\n\t\tu--\n\t\tv--\n\t\tp := lca(u, v)\n\t\tif p != u && p != v {\n\t\t\tfor j := 0; j < 26; j++ {\n\t\t\t\tif cnt[u][j]-cnt[p][j] > 0 && cnt[v][j]-cnt[p][j] > 0 {\n\t\t\t\t\tans[i] = true\n\t\t\t\t\tbreak\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\treturn ans\n}\n\ntype Graph struct {\n\tnodes []int\n\tnext []int\n\tto []int\n\tcur int\n}\n\nfunc NewGraph(n int, e int) *Graph {\n\tnodes := make([]int, n)\n\tnext := make([]int, e+10)\n\tto := make([]int, e+10)\n\treturn &Graph{nodes, next, to, 0}\n}\n\nfunc (g *Graph) AddEdge(u, v int) {\n\tg.cur++\n\tg.next[g.cur] = g.nodes[u]\n\tg.nodes[u] = g.cur\n\tg.to[g.cur] = v\n}\n"},"middle":{"kind":"string","value":"main"}}},{"rowIdx":183,"cells":{"file_name":{"kind":"string","value":"TreeExample.shorthand.tsx"},"prefix":{"kind":"string","value":"import * as React from 'react';\nimport { Tree } from '@fluentui/react-northstar';\n\nconst items = [\n {\n id: 'tree-item-1',\n title: 'House Lannister',\n items: [\n {\n id: 'tree-item-11',\n title: 'Tywin',\n items: [\n {\n id: 'tree-item-111',\n title: 'Jaime',\n },\n {\n id: 'tree-item-112',\n title: 'Cersei',\n },\n {\n id: 'tree-item-113',\n title: 'Tyrion',\n },\n ],\n },\n {\n id: 'tree-item-12',\n title: 'Kevan',\n items: [\n {\n id: 'tree-item-121',\n title: 'Lancel',\n },\n {\n id: 'tree-item-122',\n title: 'Willem',\n },\n {\n id: 'tree-item-123',\n title: 'Martyn',\n },\n ],\n },\n ],\n },\n {\n id: 'tree-item-2',\n title: 'House Targaryen',\n items: [\n {\n id: 'tree-item-21',\n title: 'Aerys',\n items: [\n {\n id: 'tree-item-211',\n title: 'Rhaegar',\n },\n {\n id: 'tree-item-212',"},"suffix":{"kind":"string","value":" title: 'Viserys',\n },\n {\n id: 'tree-item-213',\n title: 'Daenerys',\n },\n ],\n },\n ],\n },\n];\n\nconst TreeExampleShorthand = () => ;\n\nexport default TreeExampleShorthand;"},"middle":{"kind":"string","value":""}}},{"rowIdx":184,"cells":{"file_name":{"kind":"string","value":"test_polynomial.py"},"prefix":{"kind":"string","value":"import numpy as np\nimport pytest\nfrom scipy import sparse\nfrom scipy.sparse import random as sparse_random\nfrom sklearn.utils._testing import assert_array_almost_equal\n\nfrom numpy.testing import assert_allclose, assert_array_equal\nfrom scipy.interpolate import BSpline\nfrom sklearn.linear_model import LinearRegression\nfrom sklearn.pipeline import Pipeline\nfrom sklearn.preprocessing import (\n KBinsDiscretizer,\n PolynomialFeatures,\n SplineTransformer,\n)\nfrom sklearn.utils.fixes import linspace, sp_version, parse_version\n\n\n@pytest.mark.parametrize(\"est\", (PolynomialFeatures, SplineTransformer))\ndef test_polynomial_and_spline_array_order(est):\n \"\"\"Test that output array has the given order.\"\"\"\n X = np.arange(10).reshape(5, 2)\n\n def is_c_contiguous(a):\n return np.isfortran(a.T)\n\n assert is_c_contiguous(est().fit_transform(X))\n assert is_c_contiguous(est(order=\"C\").fit_transform(X))\n assert np.isfortran(est(order=\"F\").fit_transform(X))\n\n\n@pytest.mark.parametrize(\n \"params, err_msg\",\n [\n ({\"degree\": -1}, \"degree must be a non-negative integer\"),\n ({\"degree\": 2.5}, \"degree must be a non-negative integer\"),\n ({\"degree\": \"string\"}, \"degree must be a non-negative integer\"),\n ({\"n_knots\": 1}, \"n_knots must be a positive integer >= 2.\"),\n ({\"n_knots\": 1}, \"n_knots must be a positive integer >= 2.\"),\n ({\"n_knots\": 2.5}, \"n_knots must be a positive integer >= 2.\"),\n ({\"n_knots\": \"string\"}, \"n_knots must be a positive integer >= 2.\"),\n ({\"knots\": 1}, \"Expected 2D array, got scalar array instead:\"),\n ({\"knots\": [1, 2]}, \"Expected 2D array, got 1D array instead:\"),\n (\n {\"knots\": [[1]]},\n r\"Number of knots, knots.shape\\[0\\], must be >= 2.\",\n ),\n (\n {\"knots\": [[1, 5], [2, 6]]},\n r\"knots.shape\\[1\\] == n_features is violated.\",\n ),\n (\n {\"knots\": [[1], [1], [2]]},\n \"knots must be sorted without duplicates.\",\n ),\n ({\"knots\": [[2], [1]]}, \"knots must be sorted without duplicates.\"),\n (\n {\"extrapolation\": None},\n \"extrapolation must be one of 'error', 'constant', 'linear', \"\n \"'continue' or 'periodic'.\",\n ),\n (\n {\"extrapolation\": 1},\n \"extrapolation must be one of 'error', 'constant', 'linear', \"\n \"'continue' or 'periodic'.\",\n ),\n (\n {\"extrapolation\": \"string\"},\n \"extrapolation must be one of 'error', 'constant', 'linear', \"\n \"'continue' or 'periodic'.\",\n ),\n ({\"include_bias\": None}, \"include_bias must be bool.\"),\n ({\"include_bias\": 1}, \"include_bias must be bool.\"),\n ({\"include_bias\": \"string\"}, \"include_bias must be bool.\"),\n (\n {\"extrapolation\": \"periodic\", \"n_knots\": 3, \"degree\": 3},\n \"Periodic splines require degree < n_knots. Got n_knots=3 and degree=3.\",\n ),\n (\n {\"extrapolation\": \"periodic\", \"knots\": [[0], [1]], \"degree\": 2},\n \"Periodic splines require degree < n_knots. Got n_knots=2 and degree=2.\",\n ),\n ],\n)\ndef test_spline_transformer_input_validation(params, err_msg):\n \"\"\"Test that we raise errors for invalid input in SplineTransformer.\"\"\"\n X = [[1], [2]]\n\n with pytest.raises(ValueError, match=err_msg):\n SplineTransformer(**params).fit(X)\n\n\ndef test_spline_transformer_manual_knot_input():\n \"\"\"\n Test that array-like knot positions in SplineTransformer are accepted.\n \"\"\"\n X = np.arange(20).reshape(10, 2)\n knots = [[0.5, 1], [1.5, 2], [5, 10]]\n st1 = SplineTransformer(degree=3, knots=knots, n_knots=None).fit(X)\n knots = np.asarray(knots)\n st2 = SplineTransformer(degree=3, knots=knots, n_knots=None).fit(X)\n for i in range(X.shape[1]):\n assert_allclose(st1.bsplines_[i].t, st2.bsplines_[i].t)\n\n\n@pytest.mark.parametrize(\"extrapolation\", [\"continue\", \"periodic\"])\ndef test_spline_transformer_integer_knots(extrapolation):\n \"\"\"Test that SplineTransformer accepts integer value knot positions.\"\"\"\n X = np.arange(20).reshape(10, 2)\n knots = [[0, 1], [1, 2], [5, 5], [11, 10], [12, 11]]\n _ = SplineTransformer(\n degree=3, knots=knots, extrapolation=extrapolation\n ).fit_transform(X)\n\n\ndef test_spline_transformer_feature_names():\n \"\"\"Test that SplineTransformer generates correct features name.\"\"\"\n X = np.arange(20).reshape(10, 2)\n splt = SplineTransformer(n_knots=3, degree=3, include_bias=True).fit(X)\n feature_names = splt.get_feature_names()\n assert_array_equal(\n feature_names,\n [\n \"x0_sp_0\",\n \"x0_sp_1\",\n \"x0_sp_2\",\n \"x0_sp_3\",\n \"x0_sp_4\",\n \"x1_sp_0\",\n \"x1_sp_1\",\n \"x1_sp_2\",\n \"x1_sp_3\",\n \"x1_sp_4\",\n ],\n )\n\n splt = SplineTransformer(n_knots=3, degree=3, include_bias=False).fit(X)\n feature_names = splt.get_feature_names([\"a\", \"b\"])\n assert_array_equal(\n feature_names,\n [\n \"a_sp_0\",\n \"a_sp_1\",\n \"a_sp_2\",\n \"a_sp_3\",\n \"b_sp_0\",\n \"b_sp_1\",\n \"b_sp_2\",\n \"b_sp_3\",\n ],\n )\n\n\n@pytest.mark.parametrize(\"degree\", range(1, 5))\n@pytest.mark.parametrize(\"n_knots\", range(3, 5))\n@pytest.mark.parametrize(\"knots\", [\"uniform\", \"quantile\"])\n@pytest.mark.parametrize(\"extrapolation\", [\"constant\", \"periodic\"])\ndef test_spline_transformer_unity_decomposition(degree, n_knots, knots, extrapolation):\n \"\"\"Test that B-splines are indeed a decomposition of unity.\n\n Splines basis functions must sum up to 1 per row, if we stay in between\n boundaries.\n \"\"\"\n X = np.linspace(0, 1, 100)[:, None]\n # make the boundaries 0 and 1 part of X_train, for sure.\n X_train = np.r_[[[0]], X[::2, :], [[1]]]\n X_test = X[1::2, :]\n\n if extrapolation == \"periodic\":\n n_knots = n_knots + degree # periodic splines require degree < n_knots\n\n splt = SplineTransformer(\n n_knots=n_knots,\n degree=degree,\n knots=knots,\n include_bias=True,\n extrapolation=extrapolation,\n )\n splt.fit(X_train)\n for X in [X_train, X_test]:\n assert_allclose(np.sum(splt.transform(X), axis=1), 1)\n\n\n@pytest.mark.parametrize([\"bias\", \"intercept\"], [(True, False), (False, True)])\ndef test_spline_transformer_linear_regression(bias, intercept):\n \"\"\"Test that B-splines fit a sinusodial curve pretty well.\"\"\"\n X = np.linspace(0, 10, 100)[:, None]\n y = np.sin(X[:, 0]) + 2 # +2 to avoid the value 0 in assert_allclose\n pipe = Pipeline(\n steps=[\n (\n \"spline\",\n SplineTransformer(\n n_knots=15,\n degree=3,\n include_bias=bias,\n extrapolation=\"constant\",\n ),\n ),\n (\"ols\", LinearRegression(fit_intercept=intercept)),\n ]\n )\n pipe.fit(X, y)\n assert_allclose(pipe.predict(X), y, rtol=1e-3)\n\n\n@pytest.mark.parametrize(\n \"knots, n_knots, degree\",\n [\n (\"uniform\", 5, 3),\n (\"uniform\", 12, 8),\n (\n [[-1.0, 0.0], [0, 1.0], [0.1, 2.0], [0.2, 3.0], [0.3, 4.0], [1, 5.0]],\n None,\n 3,\n ),\n ],\n)\ndef test_spline_transformer_periodicity_of_extrapolation(knots, n_knots, degree):\n \"\"\"Test that the SplineTransformer is periodic for multiple features.\"\"\"\n X_1 = linspace((-1, 0), (1, 5), 10)\n X_2 = linspace((1, 5), (3, 10), 10)\n\n splt = SplineTransformer(\n knots=knots, n_knots=n_knots, degree=degree, extrapolation=\"periodic\"\n )\n splt.fit(X_1)\n\n assert_allclose(splt.transform(X_1), splt.transform(X_2))\n\n\n@pytest.mark.parametrize([\"bias\", \"intercept\"], [(True, False), (False, True)])\ndef test_spline_transformer_periodic_linear_regression(bias, intercept):\n \"\"\"Test that B-splines fit a periodic curve pretty well.\"\"\"\n # \"+ 3\" to avoid the value 0 in assert_allclose\n def f(x):\n return np.sin(2 * np.pi * x) - np.sin(8 * np.pi * x) + 3\n\n X = np.linspace(0, 1, 101)[:, None]\n pipe = Pipeline(\n steps=[\n (\n \"spline\",\n SplineTransformer(\n n_knots=20,\n degree=3,\n include_bias=bias,\n extrapolation=\"periodic\",\n ),\n ),\n (\"ols\", LinearRegression(fit_intercept=intercept)),\n ]\n )\n pipe.fit(X, f(X[:, 0]))\n\n # Generate larger array to check periodic extrapolation\n X_ = np.linspace(-1, 2, 301)[:, None]\n predictions = pipe.predict(X_)\n assert_allclose(predictions, f(X_[:, 0]), atol=0.01, rtol=0.01)\n assert_allclose(predictions[0:100], predictions[100:200], rtol=1e-3)\n\n\n@pytest.mark.skipif(\n sp_version < parse_version(\"1.0.0\"),\n reason=\"Periodic extrapolation not yet implemented for BSpline.\",\n)\ndef test_spline_transformer_periodic_spline_backport():\n \"\"\"Test that the backport of extrapolate=\"periodic\" works correctly\"\"\"\n X = np.linspace(-2, 3.5, 10)[:, None]\n degree = 2\n\n # Use periodic extrapolation backport in SplineTransformer\n transformer = SplineTransformer(\n degree=degree, extrapolation=\"periodic\", knots=[[-1.0], [0.0], [1.0]]\n )\n Xt = transformer.fit_transform(X)\n\n # Use periodic extrapolation in BSpline\n coef = np.array([[1.0, 0.0], [0.0, 1.0], [1.0, 0.0], [0.0, 1.0]])\n spl = BSpline(np.arange(-3, 4), coef, degree, \"periodic\")\n Xspl = spl(X[:, 0])\n assert_allclose(Xt, Xspl)\n\n\ndef test_spline_transformer_periodic_splines_periodicity():\n \"\"\"\n Test if shifted knots result in the same transformation up to permutation.\n \"\"\"\n X = np.linspace(0, 10, 101)[:, None]\n\n transformer_1 = SplineTransformer(\n degree=3,\n extrapolation=\"periodic\",\n knots=[[0.0], [1.0], [3.0], [4.0], [5.0], [8.0]],\n )\n\n transformer_2 = SplineTransformer(\n degree=3,\n extrapolation=\"periodic\",\n knots=[[1.0], [3.0], [4.0], [5.0], [8.0], [9.0]],\n )\n\n Xt_1 = transformer_1.fit_transform(X)\n Xt_2 = transformer_2.fit_transform(X)\n\n assert_allclose(Xt_1, Xt_2[:, [4, 0, 1, 2, 3]])\n\n\n@pytest.mark.parametrize(\"degree\", [3, 5])\ndef test_spline_transformer_periodic_splines_smoothness(degree):\n \"\"\"Test that spline transformation is smooth at first / last knot.\"\"\"\n X = np.linspace(-2, 10, 10_000)[:, None]\n\n transformer = SplineTransformer(\n degree=degree,\n extrapolation=\"periodic\",\n knots=[[0.0], [1.0], [3.0], [4.0], [5.0], [8.0]],\n )\n Xt = transformer.fit_transform(X)\n\n delta = (X.max() - X.min()) / len(X)\n tol = 10 * delta\n\n dXt = Xt\n # We expect splines of degree `degree` to be (`degree`-1) times\n # continuously differentiable. I.e. for d = 0, ..., `degree` - 1 the d-th\n # derivative should be continous. This is the case if the (d+1)-th\n # numerical derivative is reasonably small (smaller than `tol` in absolute\n # value). We thus compute d-th numeric derivatives for d = 1, ..., `degree`\n # and compare them to `tol`.\n #\n # Note that the 0-th derivative is the function itself, such that we are\n # also checking its continuity.\n for d in range(1, degree + 1):\n # Check continuity of the (d-1)-th derivative\n diff = np.diff(dXt, axis=0)\n assert np.abs(diff).max() < tol\n # Compute d-th numeric derivative\n dXt = diff / delta\n\n # As degree `degree` splines are not `degree` times continously\n # differentiable at the knots, the `degree + 1`-th numeric derivative\n # should have spikes at the knots.\n diff = np.diff(dXt, axis=0)\n assert np.abs(diff).max() > 1\n\n\n@pytest.mark.parametrize([\"bias\", \"intercept\"], [(True, False), (False, True)])\n@pytest.mark.parametrize(\"degree\", [1, 2, 3, 4, 5])\ndef test_spline_transformer_extrapolation(bias, intercept, degree):\n \"\"\"Test that B-spline extrapolation works correctly.\"\"\"\n # we use a straight line for that\n X = np.linspace(-1, 1, 100)[:, None]\n y = X.squeeze()\n\n # 'constant'\n pipe = Pipeline(\n [\n [\n \"spline\",\n SplineTransformer(\n n_knots=4,\n degree=degree,\n include_bias=bias,\n extrapolation=\"constant\",\n ),\n ],\n [\"ols\", LinearRegression(fit_intercept=intercept)],\n ]\n )\n pipe.fit(X, y)\n assert_allclose(pipe.predict([[-10], [5]]), [-1, 1])\n\n # 'linear'\n pipe = Pipeline(\n [\n [\n \"spline\",\n SplineTransformer(\n n_knots=4,\n degree=degree,\n include_bias=bias,\n extrapolation=\"linear\",\n ),\n ],\n [\"ols\", LinearRegression(fit_intercept=intercept)],\n ]\n )\n pipe.fit(X, y)\n assert_allclose(pipe.predict([[-10], [5]]), [-10, 5])\n\n # 'error'\n splt = SplineTransformer(\n n_knots=4, degree=degree, include_bias=bias, extrapolation=\"error\"\n )\n splt.fit(X)\n with pytest.raises(ValueError):\n splt.transform([[-10]])\n with pytest.raises(ValueError):\n splt.transform([[5]])\n\n\ndef test_spline_transformer_kbindiscretizer():\n \"\"\"Test that a B-spline of degree=0 is equivalent to KBinsDiscretizer.\"\"\"\n rng = np.random.RandomState(97531)\n X = rng.randn(200).reshape(200, 1)\n n_bins = 5\n n_knots = n_bins + 1\n\n splt = SplineTransformer(\n n_knots=n_knots, degree=0, knots=\"quantile\", include_bias=True\n )\n splines = splt.fit_transform(X)\n\n kbd = KBinsDiscretizer(n_bins=n_bins, encode=\"onehot-dense\", strategy=\"quantile\")\n kbins = kbd.fit_transform(X)\n\n # Though they should be exactly equal, we test approximately with high\n # accuracy.\n assert_allclose(splines, kbins, rtol=1e-13)\n\n\n@pytest.mark.parametrize(\"n_knots\", [5, 10])\n@pytest.mark.parametrize(\"include_bias\", [True, False])\n@pytest.mark.parametrize(\"degree\", [3, 5])\ndef test_spline_transformer_n_features_out(n_knots, include_bias, degree):\n \"\"\"Test that transform results in n_features_out_ features.\"\"\"\n splt = SplineTransformer(n_knots=n_knots, degree=degree, include_bias=include_bias)\n X = np.linspace(0, 1, 10)[:, None]\n splt.fit(X)\n\n assert splt.transform(X).shape[1] == splt.n_features_out_\n\n\n@pytest.mark.parametrize(\n \"params, err_msg\",\n [\n ({\"degree\": -1}, \"degree must be a non-negative integer\"),\n ({\"degree\": 2.5}, \"degree must be a non-negative int or tuple\"),\n ({\"degree\": \"12\"}, r\"degree=\\(min_degree, max_degree\\) must\"),\n ({\"degree\": \"string\"}, \"degree must be a non-negative int or tuple\"),\n ({\"degree\": (-1, 2)}, r\"degree=\\(min_degree, max_degree\\) must\"),\n ({\"degree\": (0, 1.5)}, r\"degree=\\(min_degree, max_degree\\) must\"),\n ({\"degree\": (3, 2)}, r\"degree=\\(min_degree, max_degree\\) must\"),\n ],\n)\ndef test_polynomial_features_input_validation(params, err_msg):\n \"\"\"Test that we raise errors for invalid input in PolynomialFeatures.\"\"\"\n X = [[1], [2]]\n\n with pytest.raises(ValueError, match=err_msg):\n PolynomialFeatures(**params).fit(X)\n\n\n@pytest.fixture()\ndef single_feature_degree3():\n X = np.arange(6)[:, np.newaxis]\n P = np.hstack([np.ones_like(X), X, X ** 2, X ** 3])\n return X, P\n\n\n@pytest.mark.parametrize(\n \"degree, include_bias, interaction_only, indices\",\n [\n (3, True, False, slice(None, None)),\n (3, False, False, slice(1, None)),\n (3, True, True, [0, 1]),\n (3, False, True, [1]),\n ((2, 3), True, False, [0, 2, 3]),\n ((2, 3), False, False, [2, 3]),\n ((2, 3), True, True, [0]),\n ((2, 3), False, True, []),\n ],\n)\n@pytest.mark.parametrize(\n \"sparse_X\",\n [False, sparse.csr_matrix, sparse.csc_matrix],\n)\ndef test_polynomial_features_one_feature(\n single_feature_degree3,\n degree,\n include_bias,\n interaction_only,\n indices,\n sparse_X,\n):\n \"\"\"Test PolynomialFeatures on single feature up to degree 3.\"\"\"\n X, P = single_feature_degree3\n if sparse_X:\n X = sparse_X(X)\n tf = PolynomialFeatures(\n degree=degree, include_bias=include_bias, interaction_only=interaction_only\n ).fit(X)\n out = tf.transform(X)\n if sparse_X:\n out = out.toarray()\n assert_allclose(out, P[:, indices])\n if tf.n_output_features_ > 0:\n assert tf.powers_.shape == (tf.n_output_features_, tf.n_features_in_)\n\n\n@pytest.fixture()\ndef two_features_degree3():\n X = np.arange(6).reshape((3, 2))\n x1 = X[:, :1]\n x2 = X[:, 1:]\n P = np.hstack(\n [\n x1 ** 0 * x2 ** 0, # 0\n x1 ** 1 * x2 ** 0, # 1\n x1 ** 0 * x2 ** 1, # 2\n x1 ** 2 * x2 ** 0, # 3\n x1 ** 1 * x2 ** 1, # 4\n x1 ** 0 * x2 ** 2, # 5\n x1 ** 3 * x2 ** 0, # 6\n x1 ** 2 * x2 ** 1, # 7\n x1 ** 1 * x2 ** 2, # 8\n x1 ** 0 * x2 ** 3, # 9\n ]\n )\n return X, P\n\n\n@pytest.mark.parametrize(\n \"degree, include_bias, interaction_only, indices\",\n [\n (2, True, False, slice(0, 6)),\n (2, False, False, slice(1, 6)),\n (2, True, True, [0, 1, 2, 4]),\n (2, False, True, [1, 2, 4]),\n ((2, 2), True, False, [0, 3, 4, 5]),\n ((2, 2), False, False, [3, 4, 5]),\n ((2, 2), True, True, [0, 4]),\n ((2, 2), False, True, [4]),\n (3, True, False, slice(None, None)),\n (3, False, False, slice(1, None)),\n (3, True, True, [0, 1, 2, 4]),\n (3, False, True, [1, 2, 4]),\n ((2, 3), True, False, [0, 3, 4, 5, 6, 7, 8, 9]),\n ((2, 3), False, False, slice(3, None)),\n ((2, 3), True, True, [0, 4]),\n ((2, 3), False, True, [4]),\n ((3, 3), True, False, [0, 6, 7, 8, 9]),\n ((3, 3), False, False, [6, 7, 8, 9]),\n ((3, 3), True, True, [0]),\n ((3, 3), False, True, []), # would need 3 input features\n ],\n)\n@pytest.mark.parametrize(\n \"sparse_X\",\n [False, sparse.csr_matrix, sparse.csc_matrix],\n)\ndef test_polynomial_features_two_features(\n two_features_degree3,\n degree,\n include_bias,\n interaction_only,\n indices,\n sparse_X,\n):\n \"\"\"Test PolynomialFeatures on 2 features up to degree 3.\"\"\"\n X, P = two_features_degree3\n if sparse_X:\n X = sparse_X(X)\n tf = PolynomialFeatures(\n degree=degree, include_bias=include_bias, interaction_only=interaction_only\n ).fit(X)\n out = tf.transform(X)\n if sparse_X:\n out = out.toarray()\n assert_allclose(out, P[:, indices])\n if tf.n_output_features_ > 0:\n assert tf.powers_.shape == (tf.n_output_features_, tf.n_features_in_)\n\n\ndef test_polynomial_feature_names():\n X = np.arange(30).reshape(10, 3)\n poly = PolynomialFeatures(degree=2, include_bias=True).fit(X)\n feature_names = poly.get_feature_names()\n assert_array_equal(\n [\"1\", \"x0\", \"x1\", \"x2\", \"x0^2\", \"x0 x1\", \"x0 x2\", \"x1^2\", \"x1 x2\", \"x2^2\"],\n feature_names,\n )\n assert len(feature_names) == poly.transform(X).shape[1]\n\n poly = PolynomialFeatures(degree=3, include_bias=False).fit(X)\n feature_names = poly.get_feature_names([\"a\", \"b\", \"c\"])\n assert_array_equal(\n [\n \"a\",\n \"b\",\n \"c\",\n \"a^2\",\n \"a b\",\n \"a c\",\n \"b^2\",\n \"b c\",\n \"c^2\",\n \"a^3\",\n \"a^2 b\",\n \"a^2 c\",\n \"a b^2\",\n \"a b c\",\n \"a c^2\",\n \"b^3\",\n \"b^2 c\",\n \"b c^2\",\n \"c^3\",\n ],\n feature_names,\n )\n assert len(feature_names) == poly.transform(X).shape[1]\n\n poly = PolynomialFeatures(degree=(2, 3), include_bias=False).fit(X)\n feature_names = poly.get_feature_names([\"a\", \"b\", \"c\"])\n assert_array_equal(\n [\n \"a^2\",\n \"a b\",\n \"a c\",\n \"b^2\",\n \"b c\",\n \"c^2\",\n \"a^3\",\n \"a^2 b\",\n \"a^2 c\",\n \"a b^2\",\n \"a b c\",\n \"a c^2\",\n \"b^3\",\n \"b^2 c\",\n \"b c^2\",\n \"c^3\",\n ],\n feature_names,\n )\n assert len(feature_names) == poly.transform(X).shape[1]\n\n poly = PolynomialFeatures(\n degree=(3, 3), include_bias=True, interaction_only=True\n ).fit(X)\n feature_names = poly.get_feature_names([\"a\", \"b\", \"c\"])\n assert_array_equal([\"1\", \"a b c\"], feature_names)\n assert len(feature_names) == poly.transform(X).shape[1]\n\n # test some unicode\n poly = PolynomialFeatures(degree=1, include_bias=True).fit(X)\n feature_names = poly.get_feature_names([\"\\u0001F40D\", \"\\u262E\", \"\\u05D0\"])\n assert_array_equal([\"1\", \"\\u0001F40D\", \"\\u262E\", \"\\u05D0\"], feature_names)\n\n\n@pytest.mark.parametrize(\n [\"deg\", \"include_bias\", \"interaction_only\", \"dtype\"],\n [\n (1, True, False, int),\n (2, True, False, int),\n (2, True, False, np.float32),\n (2, True, False, np.float64),\n (3, False, False, np.float64),\n (3, False, True, np.float64),\n (4, False, False, np.float64),\n (4, False, True, np.float64),\n ],\n)\ndef test_polynomial_features_csc_X(deg, include_bias, interaction_only, dtype):\n "},"suffix":{"kind":"string","value":"\n\n\n@pytest.mark.parametrize(\n [\"deg\", \"include_bias\", \"interaction_only\", \"dtype\"],\n [\n (1, True, False, int),\n (2, True, False, int),\n (2, True, False, np.float32),\n (2, True, False, np.float64),\n (3, False, False, np.float64),\n (3, False, True, np.float64),\n ],\n)\ndef test_polynomial_features_csr_X(deg, include_bias, interaction_only, dtype):\n rng = np.random.RandomState(0)\n X = rng.randint(0, 2, (100, 2))\n X_csr = sparse.csr_matrix(X)\n\n est = PolynomialFeatures(\n deg, include_bias=include_bias, interaction_only=interaction_only\n )\n Xt_csr = est.fit_transform(X_csr.astype(dtype))\n Xt_dense = est.fit_transform(X.astype(dtype, copy=False))\n\n assert isinstance(Xt_csr, sparse.csr_matrix)\n assert Xt_csr.dtype == Xt_dense.dtype\n assert_array_almost_equal(Xt_csr.A, Xt_dense)\n\n\n@pytest.mark.parametrize(\"n_features\", [1, 4, 5])\n@pytest.mark.parametrize(\n \"min_degree, max_degree\", [(0, 1), (0, 2), (1, 3), (0, 4), (3, 4)]\n)\n@pytest.mark.parametrize(\"interaction_only\", [True, False])\n@pytest.mark.parametrize(\"include_bias\", [True, False])\ndef test_num_combinations(\n n_features,\n min_degree,\n max_degree,\n interaction_only,\n include_bias,\n):\n \"\"\"\n Test that n_output_features_ is calculated correctly.\n \"\"\"\n x = sparse.csr_matrix(([1], ([0], [n_features - 1])))\n est = PolynomialFeatures(\n degree=max_degree,\n interaction_only=interaction_only,\n include_bias=include_bias,\n )\n est.fit(x)\n num_combos = est.n_output_features_\n\n combos = PolynomialFeatures._combinations(\n n_features=n_features,\n min_degree=0,\n max_degree=max_degree,\n interaction_only=interaction_only,\n include_bias=include_bias,\n )\n assert num_combos == sum([1 for _ in combos])\n\n\n@pytest.mark.parametrize(\n [\"deg\", \"include_bias\", \"interaction_only\", \"dtype\"],\n [\n (2, True, False, np.float32),\n (2, True, False, np.float64),\n (3, False, False, np.float64),\n (3, False, True, np.float64),\n ],\n)\ndef test_polynomial_features_csr_X_floats(deg, include_bias, interaction_only, dtype):\n X_csr = sparse_random(1000, 10, 0.5, random_state=0).tocsr()\n X = X_csr.toarray()\n\n est = PolynomialFeatures(\n deg, include_bias=include_bias, interaction_only=interaction_only\n )\n Xt_csr = est.fit_transform(X_csr.astype(dtype))\n Xt_dense = est.fit_transform(X.astype(dtype))\n\n assert isinstance(Xt_csr, sparse.csr_matrix)\n assert Xt_csr.dtype == Xt_dense.dtype\n assert_array_almost_equal(Xt_csr.A, Xt_dense)\n\n\n@pytest.mark.parametrize(\n [\"zero_row_index\", \"deg\", \"interaction_only\"],\n [\n (0, 2, True),\n (1, 2, True),\n (2, 2, True),\n (0, 3, True),\n (1, 3, True),\n (2, 3, True),\n (0, 2, False),\n (1, 2, False),\n (2, 2, False),\n (0, 3, False),\n (1, 3, False),\n (2, 3, False),\n ],\n)\ndef test_polynomial_features_csr_X_zero_row(zero_row_index, deg, interaction_only):\n X_csr = sparse_random(3, 10, 1.0, random_state=0).tocsr()\n X_csr[zero_row_index, :] = 0.0\n X = X_csr.toarray()\n\n est = PolynomialFeatures(deg, include_bias=False, interaction_only=interaction_only)\n Xt_csr = est.fit_transform(X_csr)\n Xt_dense = est.fit_transform(X)\n\n assert isinstance(Xt_csr, sparse.csr_matrix)\n assert Xt_csr.dtype == Xt_dense.dtype\n assert_array_almost_equal(Xt_csr.A, Xt_dense)\n\n\n# This degree should always be one more than the highest degree supported by\n# _csr_expansion.\n@pytest.mark.parametrize(\n [\"include_bias\", \"interaction_only\"],\n [(True, True), (True, False), (False, True), (False, False)],\n)\ndef test_polynomial_features_csr_X_degree_4(include_bias, interaction_only):\n X_csr = sparse_random(1000, 10, 0.5, random_state=0).tocsr()\n X = X_csr.toarray()\n\n est = PolynomialFeatures(\n 4, include_bias=include_bias, interaction_only=interaction_only\n )\n Xt_csr = est.fit_transform(X_csr)\n Xt_dense = est.fit_transform(X)\n\n assert isinstance(Xt_csr, sparse.csr_matrix)\n assert Xt_csr.dtype == Xt_dense.dtype\n assert_array_almost_equal(Xt_csr.A, Xt_dense)\n\n\n@pytest.mark.parametrize(\n [\"deg\", \"dim\", \"interaction_only\"],\n [\n (2, 1, True),\n (2, 2, True),\n (3, 1, True),\n (3, 2, True),\n (3, 3, True),\n (2, 1, False),\n (2, 2, False),\n (3, 1, False),\n (3, 2, False),\n (3, 3, False),\n ],\n)\ndef test_polynomial_features_csr_X_dim_edges(deg, dim, interaction_only):\n X_csr = sparse_random(1000, dim, 0.5, random_state=0).tocsr()\n X = X_csr.toarray()\n\n est = PolynomialFeatures(deg, interaction_only=interaction_only)\n Xt_csr = est.fit_transform(X_csr)\n Xt_dense = est.fit_transform(X)\n\n assert isinstance(Xt_csr, sparse.csr_matrix)\n assert Xt_csr.dtype == Xt_dense.dtype\n assert_array_almost_equal(Xt_csr.A, Xt_dense)\n\n\ndef test_polynomial_features_deprecated_n_input_features():\n # check that we raise a deprecation warning when accessing\n # `n_input_features_`. FIXME: remove in 1.2\n depr_msg = (\n \"The attribute `n_input_features_` was deprecated in version \"\n \"1.0 and will be removed in 1.2.\"\n )\n X = np.arange(10).reshape(5, 2)\n\n with pytest.warns(FutureWarning, match=depr_msg):\n PolynomialFeatures().fit(X).n_input_features_\n"},"middle":{"kind":"string","value":" rng = np.random.RandomState(0)\n X = rng.randint(0, 2, (100, 2))\n X_csc = sparse.csc_matrix(X)\n\n est = PolynomialFeatures(\n deg, include_bias=include_bias, interaction_only=interaction_only\n )\n Xt_csc = est.fit_transform(X_csc.astype(dtype))\n Xt_dense = est.fit_transform(X.astype(dtype))\n\n assert isinstance(Xt_csc, sparse.csc_matrix)\n assert Xt_csc.dtype == Xt_dense.dtype\n assert_array_almost_equal(Xt_csc.A, Xt_dense)"}}},{"rowIdx":185,"cells":{"file_name":{"kind":"string","value":"setup.py"},"prefix":{"kind":"string","value":"# -*- coding: utf-8 -*-\n############################################################################\n#\n# Copyright © 2011, 2012, 2013, 2014, 2015 OnlineGroups.net and\n# Contributors.\n#\n# All Rights Reserved.\n#\n# This software is subject to the provisions of the Zope Public License,\n# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.\n# THIS SOFTWARE IS PROVIDED \"AS IS\" AND ANY AND ALL EXPRESS OR IMPLIED\n# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED\n# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS\n# FOR A PARTICULAR PURPOSE.\n#\n############################################################################\nimport codecs\nimport os\nfrom setuptools import setup, find_packages\nfrom version import get_version\n\nversion = get_version()\n\nwith codecs.open('README.rst', encoding='utf-8') as f:\n long_description = f.read()\nwith codecs.open(os.path.join(\"docs\", \"HISTORY.rst\"),\n encoding='utf-8') as f:\n long_description += '\\n' + f.read()\n\nsetup(\n name='gs.site.change.name',\n version=version,\n description=\"Change the name of a GroupServer site\",\n long_description=long_description,\n classifiers=[\n 'Development Status :: 5 - Production/Stable',\n \"Environment :: Web Environment\",\n \"Framework :: Zope2\",\n \"Intended Audience :: Developers\",\n 'License :: OSI Approved :: Zope Public License',\n \"Natural Language :: English\",\n \"Natural Language :: French\",\n \"Natural Language :: German\",\n \"Operating System :: POSIX :: Linux\",\n \"Programming Language :: Python\",\n \"Topic :: Software Development :: Libraries :: Python Modules\","},"suffix":{"kind":"string","value":" url='https://source.iopen.net/groupserver/gs.site.change.name/',\n license='ZPL 2.1',\n packages=find_packages(exclude=['ez_setup']),\n namespace_packages=['gs', 'gs.site', 'gs.site.change', ],\n include_package_data=True,\n zip_safe=False,\n install_requires=[\n 'setuptools',\n 'zope.formlib',\n 'zope.browserpage',\n 'zope.i18n[compile]',\n 'zope.i18nmessageid',\n 'zope.interface',\n 'zope.schema',\n 'zope.tal',\n 'zope.tales',\n 'zope.viewlet',\n 'Zope2',\n 'gs.content.form.base',\n 'gs.content.layout',\n 'gs.help',\n 'gs.site.change.base',\n 'Products.GSContent',\n ],\n entry_points=\"\"\"\n # -*- Entry points: -*-\n \"\"\",)"},"middle":{"kind":"string","value":" ],\n keywords='site ,groupserver, name, configure, admin',\n author='Michael JasonSmith',\n author_email='mpj17@onlinegroups.net',"}}},{"rowIdx":186,"cells":{"file_name":{"kind":"string","value":"quick_sort.rs"},"prefix":{"kind":"string","value":"fn quick_sort(list: &mut Vec, left: usize, right: usize)"},"suffix":{"kind":"string","value":"\n\nfn main() {\n let my_vec = &mut vec![5,3,4,1,2];\n let size = my_vec.len() - 1;\n quick_sort(my_vec, 0, size);\n println!(\"Hello world!! {:?}\", my_vec);\n}\n"},"middle":{"kind":"string","value":" {\n let (mut i, mut j) = (left, right);\n let pivot = list[(left+right)/2];\n while i <= j {\n while list[i] < pivot {\n i = i + 1;\n }\n while list[j] > pivot {\n j = j - 1;\n }\n if i <= j {\n list.swap(i, j);\n i = i+1;\n j = j-1;\n }\n }\n\n if left < j {\n quick_sort(list, left, j);\n }\n if i < right {\n quick_sort(list, i, right);\n }\n}"}}},{"rowIdx":187,"cells":{"file_name":{"kind":"string","value":"default_service_account.rs"},"prefix":{"kind":"string","value":"use crate::authentication_manager::ServiceAccount;\nuse crate::prelude::*;\nuse hyper::body::Body;\nuse hyper::Method;\nuse std::str;\nuse std::sync::RwLock;\n\n#[derive(Debug)]\npub struct DefaultServiceAccount {\n token: RwLock,\n}\n\nimpl DefaultServiceAccount {\n const DEFAULT_PROJECT_ID_GCP_URI: &'static str =\n \"http://metadata.google.internal/computeMetadata/v1/project/project-id\";\n const DEFAULT_TOKEN_GCP_URI: &'static str = \"http://metadata.google.internal/computeMetadata/v1/instance/service-accounts/default/token\";\n\n pub async fn new(client: &HyperClient) -> Result {\n let token = RwLock::new(Self::get_token(client).await?);\n Ok(Self { token })\n }\n\n fn build_token_request(uri: &str) -> Request {\n Request::builder()\n .method(Method::GET)\n .uri(uri)\n .header(\"Metadata-Flavor\", \"Google\")\n .body(Body::empty())\n .unwrap()\n }\n\n async fn get_token(client: &HyperClient) -> Result {\n log::debug!(\"Getting token from GCP instance metadata server\");\n let req = Self::build_token_request(Self::DEFAULT_TOKEN_GCP_URI);\n let token = client\n .request(req)\n .await\n .map_err(Error::ConnectionError)?\n .deserialize()\n .await?;\n Ok(token)\n }\n}\n\n#[async_trait]\nimpl ServiceAccount for DefaultServiceAccount {\n async fn project_id(&self, client: &HyperClient) -> Result {\n log::debug!(\"Getting project ID from GCP instance metadata server\");\n let req = Self::build_token_request(Self::DEFAULT_PROJECT_ID_GCP_URI);\n let rsp = client.request(req).await.map_err(Error::ConnectionError)?;\n\n let (_, body) = rsp.into_parts();\n let body = hyper::body::to_bytes(body)"},"suffix":{"kind":"string","value":" .map_err(Error::ConnectionError)?;\n match str::from_utf8(&body) {\n Ok(s) => Ok(s.to_owned()),\n Err(_) => Err(Error::ProjectIdNonUtf8),\n }\n }\n\n fn get_token(&self, _scopes: &[&str]) -> Option {\n Some(self.token.read().unwrap().clone())\n }\n\n async fn refresh_token(&self, client: &HyperClient, _scopes: &[&str]) -> Result {\n let token = Self::get_token(client).await?;\n *self.token.write().unwrap() = token.clone();\n Ok(token)\n }\n}"},"middle":{"kind":"string","value":" .await"}}},{"rowIdx":188,"cells":{"file_name":{"kind":"string","value":"mod.rs"},"prefix":{"kind":"string","value":"/*\nCopyright (C) 2018-2019 de4dot@gmail.com\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.\nIN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY\nCLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,\nTORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE\nSOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n*/\n\nmod code_table;\n#[cfg(feature = \"instr_info\")]\nmod condition_code_table;\n#[cfg(feature = \"instr_info\")]\nmod cpuid_feature_table;\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\nmod decoder_options_table;\n#[cfg(feature = \"instr_info\")]\nmod encoding_kind_table;\n#[cfg(feature = \"instr_info\")]\nmod flow_control_table;\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\nmod memory_size_options_table;\nmod memory_size_table;\nmod mnemonic_table;\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\nmod number_base_table;\n#[cfg(feature = \"encoder\")]\nmod op_code_operand_kind_table;\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\nmod options_props_table;\nmod register_table;\n#[cfg(feature = \"encoder\")]\nmod tuple_type_table;\n\nuse self::code_table::*;\n#[cfg(feature = \"instr_info\")]\nuse self::condition_code_table::*;\n#[cfg(feature = \"instr_info\")]\nuse self::cpuid_feature_table::*;\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\nuse self::decoder_options_table::*;\n#[cfg(feature = \"instr_info\")]\nuse self::encoding_kind_table::*;\n#[cfg(feature = \"instr_info\")]\nuse self::flow_control_table::*;\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\nuse self::memory_size_options_table::*;\nuse self::memory_size_table::*;\nuse self::mnemonic_table::*;\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\nuse self::number_base_table::*;\n#[cfg(feature = \"encoder\")]\nuse self::op_code_operand_kind_table::*;\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\nuse self::options_props_table::*;\nuse self::register_table::*;\n#[cfg(feature = \"encoder\")]\nuse self::tuple_type_table::*;\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\nuse super::super::formatter::tests::enums::OptionsProps;\nuse super::super::*;\n#[cfg(not(feature = \"std\"))]\nuse alloc::string::String;\n#[cfg(not(feature = \"std\"))]\nuse alloc::vec::Vec;\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\nuse core::{i16, i8};\nuse core::{i32, u16, u32, u8};\n#[cfg(feature = \"instr_info\")]\n#[cfg(not(feature = \"std\"))]\nuse hashbrown::HashMap;\n#[cfg(feature = \"instr_info\")]\n#[cfg(feature = \"std\")]\nuse std::collections::HashMap;\n\npub(crate) fn to_vec_u8(hex_data: &str) -> Result, String> {\n\tlet mut bytes = Vec::with_capacity(hex_data.len() / 2);\n\tlet mut iter = hex_data.chars().filter(|c| !c.is_whitespace());\n\tloop {\n\t\tlet hi = try_parse_hex_char(match iter.next() {\n\t\t\tSome(c) => c,\n\t\t\tNone => break,\n\t\t});\n\t\tlet lo = try_parse_hex_char(match iter.next() {\n\t\t\tSome(c) => c,\n\t\t\tNone => return Err(format!(\"Missing hex digit in string: '{}'\", hex_data)),\n\t\t});\n\t\tif hi < 0 || lo < 0 {\n\t\t\treturn Err(format!(\"Invalid hex string: '{}'\", hex_data));\n\t\t}\n\t\tbytes.push(((hi << 4) | lo) as u8);\n\t}\n\n\tfn try_parse_hex_char(c: char) -> i32 {\n\t\tif '0' <= c && c <= '9' {\n\t\t\treturn c as i32 - '0' as i32;\n\t\t}\n\t\tif 'A' <= c && c <= 'F' {\n\t\t\treturn c as i32 - 'A' as i32 + 10;\n\t\t}\n\t\tif 'a' <= c && c <= 'f' {\n\t\t\treturn c as i32 - 'a' as i32 + 10;\n\t\t}\n\t\t-1\n\t}\n\n\tOk(bytes)\n}"},"suffix":{"kind":"string","value":"\tlet result = if value.starts_with(\"0x\") { u64::from_str_radix(&value[2..], 16) } else { value.trim().parse() };\n\tmatch result {\n\t\tOk(value) => Ok(value),\n\t\tErr(_) => Err(format!(\"Invalid number: {}\", value)),\n\t}\n}\n\n#[cfg(any(feature = \"encoder\", feature = \"instr_info\", feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn to_i64(value: &str) -> Result {\n\tlet mut unsigned_value = value.trim();\n\tlet mult = if unsigned_value.starts_with('-') {\n\t\tunsigned_value = &unsigned_value[1..];\n\t\t-1\n\t} else {\n\t\t1\n\t};\n\tlet result = if unsigned_value.starts_with(\"0x\") { u64::from_str_radix(&unsigned_value[2..], 16) } else { unsigned_value.trim().parse() };\n\tmatch result {\n\t\tOk(value) => Ok((value as i64).wrapping_mul(mult)),\n\t\tErr(_) => Err(format!(\"Invalid number: {}\", value)),\n\t}\n}\n\npub(crate) fn to_u32(value: &str) -> Result {\n\tlet value = value.trim();\n\tif let Ok(v64) = to_u64(value) {\n\t\tif v64 <= u32::MAX as u64 {\n\t\t\treturn Ok(v64 as u32);\n\t\t}\n\t}\n\tErr(format!(\"Invalid number: {}\", value))\n}\n\n#[cfg(any(feature = \"encoder\", feature = \"instr_info\", feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn to_i32(value: &str) -> Result {\n\tlet value = value.trim();\n\tif let Ok(v64) = to_i64(value) {\n\t\tif i32::MIN as i64 <= v64 && v64 <= i32::MAX as i64 {\n\t\t\treturn Ok(v64 as i32);\n\t\t}\n\t}\n\tErr(format!(\"Invalid number: {}\", value))\n}\n\npub(crate) fn to_u16(value: &str) -> Result {\n\tlet value = value.trim();\n\tif let Ok(v64) = to_u64(value) {\n\t\tif v64 <= u16::MAX as u64 {\n\t\t\treturn Ok(v64 as u16);\n\t\t}\n\t}\n\tErr(format!(\"Invalid number: {}\", value))\n}\n\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn to_i16(value: &str) -> Result {\n\tlet value = value.trim();\n\tif let Ok(v64) = to_i64(value) {\n\t\tif i16::MIN as i64 <= v64 && v64 <= i16::MAX as i64 {\n\t\t\treturn Ok(v64 as i16);\n\t\t}\n\t}\n\tErr(format!(\"Invalid number: {}\", value))\n}\n\npub(crate) fn to_u8(value: &str) -> Result {\n\tlet value = value.trim();\n\tif let Ok(v64) = to_u64(value) {\n\t\tif v64 <= u8::MAX as u64 {\n\t\t\treturn Ok(v64 as u8);\n\t\t}\n\t}\n\tErr(format!(\"Invalid number: {}\", value))\n}\n\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn to_i8(value: &str) -> Result {\n\tlet value = value.trim();\n\tif let Ok(v64) = to_i64(value) {\n\t\tif i8::MIN as i64 <= v64 && v64 <= i8::MAX as i64 {\n\t\t\treturn Ok(v64 as i8);\n\t\t}\n\t}\n\tErr(format!(\"Invalid number: {}\", value))\n}\n\npub(crate) fn to_code(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_CODE_HASH.get(value) {\n\t\tSome(code) => Ok(*code),\n\t\tNone => Err(format!(\"Invalid Code value: {}\", value)),\n\t}\n}\n\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn code_names() -> Vec<&'static str> {\n\t(&*TO_CODE_HASH).iter().map(|kv| *kv.0).collect()\n}\n\npub(crate) fn to_mnemonic(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_MNEMONIC_HASH.get(value) {\n\t\tSome(mnemonic) => Ok(*mnemonic),\n\t\tNone => Err(format!(\"Invalid Mnemonic value: {}\", value)),\n\t}\n}\n\npub(crate) fn to_register(value: &str) -> Result {\n\tlet value = value.trim();\n\tif value.is_empty() {\n\t\treturn Ok(Register::None);\n\t}\n\tmatch TO_REGISTER_HASH.get(value) {\n\t\tSome(register) => Ok(*register),\n\t\tNone => Err(format!(\"Invalid Register value: {}\", value)),\n\t}\n}\n\n#[cfg(feature = \"instr_info\")]\npub(crate) fn clone_register_hashmap() -> HashMap {\n\tTO_REGISTER_HASH.iter().map(|kv| ((*kv.0).to_string(), *kv.1)).collect()\n}\n\npub(crate) fn to_memory_size(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_MEMORY_SIZE_HASH.get(value) {\n\t\tSome(memory_size) => Ok(*memory_size),\n\t\tNone => Err(format!(\"Invalid MemorySize value: {}\", value)),\n\t}\n}\n\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn to_decoder_options(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_DECODER_OPTIONS_HASH.get(value) {\n\t\tSome(decoder_options) => Ok(*decoder_options),\n\t\tNone => Err(format!(\"Invalid DecoderOptions value: {}\", value)),\n\t}\n}\n\n#[cfg(feature = \"instr_info\")]\npub(crate) fn to_encoding_kind(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_ENCODING_KIND_HASH.get(value) {\n\t\tSome(encoding_kind) => Ok(*encoding_kind),\n\t\tNone => Err(format!(\"Invalid EncodingKind value: {}\", value)),\n\t}\n}\n\n#[cfg(feature = \"encoder\")]\npub(crate) fn to_tuple_type(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_TUPLE_TYPE_HASH.get(value) {\n\t\tSome(tuple_type) => Ok(*tuple_type),\n\t\tNone => Err(format!(\"Invalid TupleType value: {}\", value)),\n\t}\n}\n\n#[cfg(feature = \"instr_info\")]\npub(crate) fn to_cpuid_features(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_CPUID_FEATURE_HASH.get(value) {\n\t\tSome(cpuid_features) => Ok(*cpuid_features),\n\t\tNone => Err(format!(\"Invalid CpuidFeature value: {}\", value)),\n\t}\n}\n\n#[cfg(feature = \"instr_info\")]\npub(crate) fn to_flow_control(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_FLOW_CONTROL_HASH.get(value) {\n\t\tSome(flow_control) => Ok(*flow_control),\n\t\tNone => Err(format!(\"Invalid FlowControl value: {}\", value)),\n\t}\n}\n\n#[cfg(feature = \"encoder\")]\npub(crate) fn to_op_code_operand_kind(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_OP_CODE_OPERAND_KIND_HASH.get(value) {\n\t\tSome(op_code_operand_kind) => Ok(*op_code_operand_kind),\n\t\tNone => Err(format!(\"Invalid OpCodeOperandKind value: {}\", value)),\n\t}\n}\n\n#[cfg(feature = \"instr_info\")]\npub(crate) fn to_condition_code(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_CONDITION_CODE_HASH.get(value) {\n\t\tSome(condition_code) => Ok(*condition_code),\n\t\tNone => Err(format!(\"Invalid ConditionCode value: {}\", value)),\n\t}\n}\n\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn to_options_props(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_OPTIONS_PROPS_HASH.get(value) {\n\t\tSome(options_props) => Ok(*options_props),\n\t\tNone => Err(format!(\"Invalid OptionsProps value: {}\", value)),\n\t}\n}\n\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn to_memory_size_options(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_MEMORY_SIZE_OPTIONS_HASH.get(value) {\n\t\tSome(memory_size_options) => Ok(*memory_size_options),\n\t\tNone => Err(format!(\"Invalid MemorySizeOptions value: {}\", value)),\n\t}\n}\n\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn to_number_base(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch TO_NUMBER_BASE_HASH.get(value) {\n\t\tSome(number_base) => Ok(*number_base),\n\t\tNone => Err(format!(\"Invalid NumberBase value: {}\", value)),\n\t}\n}\n\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn number_base_len() -> usize {\n\tTO_NUMBER_BASE_HASH.len()\n}\n\n#[cfg(any(feature = \"gas\", feature = \"intel\", feature = \"masm\", feature = \"nasm\"))]\npub(crate) fn to_boolean(value: &str) -> Result {\n\tlet value = value.trim();\n\tmatch value {\n\t\t\"false\" => Ok(false),\n\t\t\"true\" => Ok(true),\n\t\t_ => Err(format!(\"Invalid boolean value: {}\", value)),\n\t}\n}"},"middle":{"kind":"string","value":"\npub(crate) fn to_u64(value: &str) -> Result {\n\tlet value = value.trim();"}}},{"rowIdx":189,"cells":{"file_name":{"kind":"string","value":"socket.rs"},"prefix":{"kind":"string","value":"use crate::{\n sinks::util::tcp::{Encoding, TcpSinkConfig, TlsConfig},\n topology::config::{DataType, SinkConfig, SinkContext, SinkDescription},\n};\nuse serde::{Deserialize, Serialize};\n\n#[derive(Deserialize, Serialize, Debug)]\n// TODO: add back when serde-rs/serde#1358 is addressed\n// #[serde(deny_unknown_fields)]\npub struct "},"suffix":{"kind":"string","value":" {\n #[serde(flatten)]\n pub mode: Mode,\n}\n\n#[derive(Deserialize, Serialize, Debug, Clone)]\n#[serde(tag = \"mode\", rename_all = \"snake_case\")]\npub enum Mode {\n Tcp(TcpSinkConfig),\n}\n\ninventory::submit! {\n SinkDescription::new_without_default::(\"socket\")\n}\n\nimpl SocketSinkConfig {\n pub fn make_tcp_config(address: String, encoding: Encoding, tls: Option) -> Self {\n TcpSinkConfig {\n address,\n encoding,\n tls,\n }\n .into()\n }\n\n pub fn make_basic_tcp_config(address: String) -> Self {\n TcpSinkConfig::new(address).into()\n }\n}\n\nimpl From for SocketSinkConfig {\n fn from(config: TcpSinkConfig) -> Self {\n Self {\n mode: Mode::Tcp(config),\n }\n }\n}\n\n#[typetag::serde(name = \"socket\")]\nimpl SinkConfig for SocketSinkConfig {\n fn build(&self, cx: SinkContext) -> crate::Result<(super::RouterSink, super::Healthcheck)> {\n match &self.mode {\n Mode::Tcp(config) => config.build(cx),\n }\n }\n\n fn input_type(&self) -> DataType {\n DataType::Log\n }\n\n fn sink_type(&self) -> &'static str {\n \"socket\"\n }\n}\n"},"middle":{"kind":"string","value":"SocketSinkConfig"}}},{"rowIdx":190,"cells":{"file_name":{"kind":"string","value":"app.ts"},"prefix":{"kind":"string","value":"import {Component} from \"angular2/core\";\nimport {SideMenu} from \"./sideMenu.component.ts\";\nimport {TopBar} from \"./topBar.component.ts\";\nimport {RouteConfig, RouterLink} from \"angular2/router\";\nimport {MainView} from \"./mainView.component\";\nimport {EventsHome} from \"./../../events/components/eventsHome.component\";\nimport {FriendsHome} from \"./../../friends/components/friendsHome.component\";\nimport {ChargesHome} from \"./../../charges/components/chargesHome.component\";\n\nrequire(\"../../../assets/surface-1.01/prod/css/surface_styles.css\");\nrequire(\"../../../assets/sass/style.scss\");\n\n@Component({\n selector: 'main-app',\n template: require('./app.html'),\n directives: [SideMenu, TopBar, MainView, RouterLink]\n})\n@RouteConfig([\n {\n path: '/events/...', name: 'EventsHome', component: EventsHome, useAsDefault: true\n },\n {\n path: '/friends/...', name: 'FriendsHome', component: FriendsHome\n },\n {\n path: '/charges/...', name: 'ChargesHome', component: ChargesHome\n }])\nexport class MainApp {"},"suffix":{"kind":"string","value":"}"},"middle":{"kind":"string","value":" constructor(){\n \n }"}}},{"rowIdx":191,"cells":{"file_name":{"kind":"string","value":"0003_auto_20190709_2301.py"},"prefix":{"kind":"string","value":"# Generated by Django 2.1.7 on 2019-07-09 23:01\n\nfrom django.db import migrations, models\n\n\nclass Migration(migrations.Migration):\n"},"suffix":{"kind":"string","value":"\n operations = [\n migrations.AlterField(\n model_name='timeseries',\n name='begin_date',\n field=models.DateField(blank=True, default=None, null=True),\n ),\n migrations.AlterField(\n model_name='timeseries',\n name='end_date',\n field=models.DateField(blank=True, default=None, null=True),\n ),\n ]"},"middle":{"kind":"string","value":" dependencies = [\n ('hydroserver_core', '0002_auto_20190709_2226'),\n ]"}}},{"rowIdx":192,"cells":{"file_name":{"kind":"string","value":"map.js"},"prefix":{"kind":"string","value":"!function(e){var r={};function t(n){if(r[n])return r[n].exports;var a=r[n]={i:n,l:!1,exports:{}};return e[n].call(a.exports,a,a.exports,t),a.l=!0,a.exports}t.m=e,t.c=r,t.d=function(e,r,n){t.o(e,r)||Object.defineProperty(e,r,{enumerable:!0,get:n})},t.r=function(e){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(e,\"__esModule\",{value:!0})},t.t=function(e,r){if(1&r&&(e=t(e)),8&r)return e;if(4&r&&\"object\"==typeof e&&e&&e.__esModule)return e;var n=Object.create(null);if(t.r(n),Object.defineProperty(n,\"default\",{enumerable:!0,value:e}),2&r&&\"string\"!=typeof e)for(var a in e)t.d(n,a,function(r){return e[r]}.bind(null,a));return n},t.n=function(e){var r=e&&e.__esModule?function(){return e.default}:function(){return e};return t.d(r,\"a\",r),r},t.o=function(e,r){return Object.prototype.hasOwnProperty.call(e,r)},t.p=\"/\",t(t.s=1)}({1:function(e,r,t){e.exports=t(\"mUkR\")},\"8oxB\":function(e,r){var t,n,a=e.exports={};function "},"suffix":{"kind":"string","value":"(){throw new Error(\"setTimeout has not been defined\")}function o(){throw new Error(\"clearTimeout has not been defined\")}function s(e){if(t===setTimeout)return setTimeout(e,0);if((t===i||!t)&&setTimeout)return t=setTimeout,setTimeout(e,0);try{return t(e,0)}catch(r){try{return t.call(null,e,0)}catch(r){return t.call(this,e,0)}}}!function(){try{t=\"function\"==typeof setTimeout?setTimeout:i}catch(e){t=i}try{n=\"function\"==typeof clearTimeout?clearTimeout:o}catch(e){n=o}}();var l,c=[],u=!1,p=-1;function d(){u&&l&&(u=!1,l.length?c=l.concat(c):p=-1,c.length&&f())}function f(){if(!u){var e=s(d);u=!0;for(var r=c.length;r;){for(l=c,c=[];++p1)for(var t=1;t .swiper-wrapper {\\n -webkit-box-orient: vertical;\\n -webkit-box-direction: normal;\\n flex-direction: column;\\n}\\n.swiper-wrapper {\\n position: relative;\\n width: 100%;\\n height: 100%;\\n z-index: 1;\\n display: -webkit-box;\\n display: flex;\\n -webkit-transition-property: -webkit-transform;\\n transition-property: -webkit-transform;\\n transition-property: transform;\\n transition-property: transform, -webkit-transform;\\n box-sizing: content-box;\\n}\\n.swiper-container-android .swiper-slide,\\n.swiper-wrapper {\\n -webkit-transform: translate3d(0px, 0, 0);\\n transform: translate3d(0px, 0, 0);\\n}\\n.swiper-container-multirow > .swiper-wrapper {\\n flex-wrap: wrap;\\n}\\n.swiper-container-multirow-column > .swiper-wrapper {\\n flex-wrap: wrap;\\n -webkit-box-orient: vertical;\\n -webkit-box-direction: normal;\\n flex-direction: column;\\n}\\n.swiper-container-free-mode > .swiper-wrapper {\\n -webkit-transition-timing-function: ease-out;\\n transition-timing-function: ease-out;\\n margin: 0 auto;\\n}\\n.swiper-slide {\\n flex-shrink: 0;\\n width: 100%;\\n height: 100%;\\n position: relative;\\n -webkit-transition-property: -webkit-transform;\\n transition-property: -webkit-transform;\\n transition-property: transform;\\n transition-property: transform, -webkit-transform;\\n}\\n.swiper-slide-invisible-blank {\\n visibility: hidden;\\n}\\n/* Auto Height */\\n.swiper-container-autoheight,\\n.swiper-container-autoheight .swiper-slide {\\n height: auto;\\n}\\n.swiper-container-autoheight .swiper-wrapper {\\n -webkit-box-align: start;\\n align-items: flex-start;\\n -webkit-transition-property: height, -webkit-transform;\\n transition-property: height, -webkit-transform;\\n transition-property: transform, height;\\n transition-property: transform, height, -webkit-transform;\\n}\\n/* 3D Effects */\\n.swiper-container-3d {\\n -webkit-perspective: 1200px;\\n perspective: 1200px;\\n}\\n.swiper-container-3d .swiper-wrapper,\\n.swiper-container-3d .swiper-slide,\\n.swiper-container-3d .swiper-slide-shadow-left,\\n.swiper-container-3d .swiper-slide-shadow-right,\\n.swiper-container-3d .swiper-slide-shadow-top,\\n.swiper-container-3d .swiper-slide-shadow-bottom,\\n.swiper-container-3d .swiper-cube-shadow {\\n -webkit-transform-style: preserve-3d;\\n transform-style: preserve-3d;\\n}\\n.swiper-container-3d .swiper-slide-shadow-left,\\n.swiper-container-3d .swiper-slide-shadow-right,\\n.swiper-container-3d .swiper-slide-shadow-top,\\n.swiper-container-3d .swiper-slide-shadow-bottom {\\n position: absolute;\\n left: 0;\\n top: 0;\\n width: 100%;\\n height: 100%;\\n pointer-events: none;\\n z-index: 10;\\n}\\n.swiper-container-3d .swiper-slide-shadow-left {\\n background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));\\n background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\\n}\\n.swiper-container-3d .swiper-slide-shadow-right {\\n background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));\\n background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\\n}\\n.swiper-container-3d .swiper-slide-shadow-top {\\n background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));\\n background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\\n}\\n.swiper-container-3d .swiper-slide-shadow-bottom {\\n background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));\\n background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));\\n}\\n/* CSS Mode */\\n.swiper-container-css-mode > .swiper-wrapper {\\n overflow: auto;\\n scrollbar-width: none;\\n /* For Firefox */\\n -ms-overflow-style: none;\\n /* For Internet Explorer and Edge */\\n}\\n.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {\\n display: none;\\n}\\n.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {\\n scroll-snap-align: start start;\\n}\\n.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {\\n -ms-scroll-snap-type: x mandatory;\\n scroll-snap-type: x mandatory;\\n}\\n.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {\\n -ms-scroll-snap-type: y mandatory;\\n scroll-snap-type: y mandatory;\\n}\\n:root {\\n --swiper-navigation-size: 44px;\\n /*\\n --swiper-navigation-color: var(--swiper-theme-color);\\n */\\n}\\n.swiper-button-prev,\\n.swiper-button-next {\\n position: absolute;\\n top: 50%;\\n width: calc(var(--swiper-navigation-size) / 44 * 27);\\n height: var(--swiper-navigation-size);\\n margin-top: calc(-1 * var(--swiper-navigation-size) / 2);\\n z-index: 10;\\n cursor: pointer;\\n display: -webkit-box;\\n display: flex;\\n -webkit-box-align: center;\\n align-items: center;\\n -webkit-box-pack: center;\\n justify-content: center;\\n color: var(--swiper-navigation-color, var(--swiper-theme-color));\\n}\\n.swiper-button-prev.swiper-button-disabled,\\n.swiper-button-next.swiper-button-disabled {\\n opacity: 0.35;\\n cursor: auto;\\n pointer-events: none;\\n}\\n.swiper-button-prev:after,\\n.swiper-button-next:after {\\n font-family: swiper-icons;\\n font-size: var(--swiper-navigation-size);\\n text-transform: none !important;\\n letter-spacing: 0;\\n text-transform: none;\\n font-variant: initial;\\n line-height: 1;\\n}\\n.swiper-button-prev,\\n.swiper-container-rtl .swiper-button-next {\\n left: 10px;\\n right: auto;\\n}\\n.swiper-button-prev:after,\\n.swiper-container-rtl .swiper-button-next:after {\\n content: 'prev';\\n}\\n.swiper-button-next,\\n.swiper-container-rtl .swiper-button-prev {\\n right: 10px;\\n left: auto;\\n}\\n.swiper-button-next:after,\\n.swiper-container-rtl .swiper-button-prev:after {\\n content: 'next';\\n}\\n.swiper-button-prev.swiper-button-white,\\n.swiper-button-next.swiper-button-white {\\n --swiper-navigation-color: #ffffff;\\n}\\n.swiper-button-prev.swiper-button-black,\\n.swiper-button-next.swiper-button-black {\\n --swiper-navigation-color: #000000;\\n}\\n.swiper-button-lock {\\n display: none;\\n}\\n:root {\\n /*\\n --swiper-pagination-color: var(--swiper-theme-color);\\n */\\n}\\n.swiper-pagination {\\n position: absolute;\\n text-align: center;\\n -webkit-transition: 300ms opacity;\\n transition: 300ms opacity;\\n -webkit-transform: translate3d(0, 0, 0);\\n transform: translate3d(0, 0, 0);\\n z-index: 10;\\n}\\n.swiper-pagination.swiper-pagination-hidden {\\n opacity: 0;\\n}\\n/* Common Styles */\\n.swiper-pagination-fraction,\\n.swiper-pagination-custom,\\n.swiper-container-horizontal > .swiper-pagination-bullets {\\n bottom: 10px;\\n left: 0;\\n width: 100%;\\n}\\n/* Bullets */\\n.swiper-pagination-bullets-dynamic {\\n overflow: hidden;\\n font-size: 0;\\n}\\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\\n -webkit-transform: scale(0.33);\\n transform: scale(0.33);\\n position: relative;\\n}\\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {\\n -webkit-transform: scale(1);\\n transform: scale(1);\\n}\\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {\\n -webkit-transform: scale(1);\\n transform: scale(1);\\n}\\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {\\n -webkit-transform: scale(0.66);\\n transform: scale(0.66);\\n}\\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {\\n -webkit-transform: scale(0.33);\\n transform: scale(0.33);\\n}\\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {\\n -webkit-transform: scale(0.66);\\n transform: scale(0.66);\\n}\\n.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {\\n -webkit-transform: scale(0.33);\\n transform: scale(0.33);\\n}\\n.swiper-pagination-bullet {\\n width: 8px;\\n height: 8px;\\n display: inline-block;\\n border-radius: 100%;\\n background: #000;\\n opacity: 0.2;\\n}\\nbutton.swiper-pagination-bullet {\\n border: none;\\n margin: 0;\\n padding: 0;\\n box-shadow: none;\\n -webkit-appearance: none;\\n -moz-appearance: none;\\n appearance: none;\\n}\\n.swiper-pagination-clickable .swiper-pagination-bullet {\\n cursor: pointer;\\n}\\n.swiper-pagination-bullet-active {\\n opacity: 1;\\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\\n}\\n.swiper-container-vertical > .swiper-pagination-bullets {\\n right: 10px;\\n top: 50%;\\n -webkit-transform: translate3d(0px, -50%, 0);\\n transform: translate3d(0px, -50%, 0);\\n}\\n.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {\\n margin: 6px 0;\\n display: block;\\n}\\n.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\\n top: 50%;\\n -webkit-transform: translateY(-50%);\\n transform: translateY(-50%);\\n width: 8px;\\n}\\n.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\\n display: inline-block;\\n -webkit-transition: 200ms top, 200ms -webkit-transform;\\n transition: 200ms top, 200ms -webkit-transform;\\n transition: 200ms transform, 200ms top;\\n transition: 200ms transform, 200ms top, 200ms -webkit-transform;\\n}\\n.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {\\n margin: 0 4px;\\n}\\n.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {\\n left: 50%;\\n -webkit-transform: translateX(-50%);\\n transform: translateX(-50%);\\n white-space: nowrap;\\n}\\n.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\\n -webkit-transition: 200ms left, 200ms -webkit-transform;\\n transition: 200ms left, 200ms -webkit-transform;\\n transition: 200ms transform, 200ms left;\\n transition: 200ms transform, 200ms left, 200ms -webkit-transform;\\n}\\n.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {\\n -webkit-transition: 200ms right, 200ms -webkit-transform;\\n transition: 200ms right, 200ms -webkit-transform;\\n transition: 200ms transform, 200ms right;\\n transition: 200ms transform, 200ms right, 200ms -webkit-transform;\\n}\\n/* Progress */\\n.swiper-pagination-progressbar {\\n background: rgba(0, 0, 0, 0.25);\\n position: absolute;\\n}\\n.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\\n background: var(--swiper-pagination-color, var(--swiper-theme-color));\\n position: absolute;\\n left: 0;\\n top: 0;\\n width: 100%;\\n height: 100%;\\n -webkit-transform: scale(0);\\n transform: scale(0);\\n -webkit-transform-origin: left top;\\n transform-origin: left top;\\n}\\n.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {\\n -webkit-transform-origin: right top;\\n transform-origin: right top;\\n}\\n.swiper-container-horizontal > .swiper-pagination-progressbar,\\n.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {\\n width: 100%;\\n height: 4px;\\n left: 0;\\n top: 0;\\n}\\n.swiper-container-vertical > .swiper-pagination-progressbar,\\n.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {\\n width: 4px;\\n height: 100%;\\n left: 0;\\n top: 0;\\n}\\n.swiper-pagination-white {\\n --swiper-pagination-color: #ffffff;\\n}\\n.swiper-pagination-black {\\n --swiper-pagination-color: #000000;\\n}\\n.swiper-pagination-lock {\\n display: none;\\n}\\n/* Scrollbar */\\n.swiper-scrollbar {\\n border-radius: 10px;\\n position: relative;\\n -ms-touch-action: none;\\n background: rgba(0, 0, 0, 0.1);\\n}\\n.swiper-container-horizontal > .swiper-scrollbar {\\n position: absolute;\\n left: 1%;\\n bottom: 3px;\\n z-index: 50;\\n height: 5px;\\n width: 98%;\\n}\\n.swiper-container-vertical > .swiper-scrollbar {\\n position: absolute;\\n right: 3px;\\n top: 1%;\\n z-index: 50;\\n width: 5px;\\n height: 98%;\\n}\\n.swiper-scrollbar-drag {\\n height: 100%;\\n width: 100%;\\n position: relative;\\n background: rgba(0, 0, 0, 0.5);\\n border-radius: 10px;\\n left: 0;\\n top: 0;\\n}\\n.swiper-scrollbar-cursor-drag {\\n cursor: move;\\n}\\n.swiper-scrollbar-lock {\\n display: none;\\n}\\n.swiper-zoom-container {\\n width: 100%;\\n height: 100%;\\n display: -webkit-box;\\n display: flex;\\n -webkit-box-pack: center;\\n justify-content: center;\\n -webkit-box-align: center;\\n align-items: center;\\n text-align: center;\\n}\\n.swiper-zoom-container > img,\\n.swiper-zoom-container > svg,\\n.swiper-zoom-container > canvas {\\n max-width: 100%;\\n max-height: 100%;\\n -o-object-fit: contain;\\n object-fit: contain;\\n}\\n.swiper-slide-zoomed {\\n cursor: move;\\n}\\n/* Preloader */\\n:root {\\n /*\\n --swiper-preloader-color: var(--swiper-theme-color);\\n */\\n}\\n.swiper-lazy-preloader {\\n width: 42px;\\n height: 42px;\\n position: absolute;\\n left: 50%;\\n top: 50%;\\n margin-left: -21px;\\n margin-top: -21px;\\n z-index: 10;\\n -webkit-transform-origin: 50%;\\n transform-origin: 50%;\\n -webkit-animation: swiper-preloader-spin 1s infinite linear;\\n animation: swiper-preloader-spin 1s infinite linear;\\n box-sizing: border-box;\\n border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));\\n border-radius: 50%;\\n border-top-color: transparent;\\n}\\n.swiper-lazy-preloader-white {\\n --swiper-preloader-color: #fff;\\n}\\n.swiper-lazy-preloader-black {\\n --swiper-preloader-color: #000;\\n}\\n@-webkit-keyframes swiper-preloader-spin {\\n 100% {\\n -webkit-transform: rotate(360deg);\\n transform: rotate(360deg);\\n }\\n}\\n@keyframes swiper-preloader-spin {\\n 100% {\\n -webkit-transform: rotate(360deg);\\n transform: rotate(360deg);\\n }\\n}\\n/* a11y */\\n.swiper-container .swiper-notification {\\n position: absolute;\\n left: 0;\\n top: 0;\\n pointer-events: none;\\n opacity: 0;\\n z-index: -1000;\\n}\\n.swiper-container-fade.swiper-container-free-mode .swiper-slide {\\n -webkit-transition-timing-function: ease-out;\\n transition-timing-function: ease-out;\\n}\\n.swiper-container-fade .swiper-slide {\\n pointer-events: none;\\n -webkit-transition-property: opacity;\\n transition-property: opacity;\\n}\\n.swiper-container-fade .swiper-slide .swiper-slide {\\n pointer-events: none;\\n}\\n.swiper-container-fade .swiper-slide-active,\\n.swiper-container-fade .swiper-slide-active .swiper-slide-active {\\n pointer-events: auto;\\n}\\n.swiper-container-cube {\\n overflow: visible;\\n}\\n.swiper-container-cube .swiper-slide {\\n pointer-events: none;\\n -webkit-backface-visibility: hidden;\\n backface-visibility: hidden;\\n z-index: 1;\\n visibility: hidden;\\n -webkit-transform-origin: 0 0;\\n transform-origin: 0 0;\\n width: 100%;\\n height: 100%;\\n}\\n.swiper-container-cube .swiper-slide .swiper-slide {\\n pointer-events: none;\\n}\\n.swiper-container-cube.swiper-container-rtl .swiper-slide {\\n -webkit-transform-origin: 100% 0;\\n transform-origin: 100% 0;\\n}\\n.swiper-container-cube .swiper-slide-active,\\n.swiper-container-cube .swiper-slide-active .swiper-slide-active {\\n pointer-events: auto;\\n}\\n.swiper-container-cube .swiper-slide-active,\\n.swiper-container-cube .swiper-slide-next,\\n.swiper-container-cube .swiper-slide-prev,\\n.swiper-container-cube .swiper-slide-next + .swiper-slide {\\n pointer-events: auto;\\n visibility: visible;\\n}\\n.swiper-container-cube .swiper-slide-shadow-top,\\n.swiper-container-cube .swiper-slide-shadow-bottom,\\n.swiper-container-cube .swiper-slide-shadow-left,\\n.swiper-container-cube .swiper-slide-shadow-right {\\n z-index: 0;\\n -webkit-backface-visibility: hidden;\\n backface-visibility: hidden;\\n}\\n.swiper-container-cube .swiper-cube-shadow {\\n position: absolute;\\n left: 0;\\n bottom: 0px;\\n width: 100%;\\n height: 100%;\\n background: #000;\\n opacity: 0.6;\\n -webkit-filter: blur(50px);\\n filter: blur(50px);\\n z-index: 0;\\n}\\n.swiper-container-flip {\\n overflow: visible;\\n}\\n.swiper-container-flip .swiper-slide {\\n pointer-events: none;\\n -webkit-backface-visibility: hidden;\\n backface-visibility: hidden;\\n z-index: 1;\\n}\\n.swiper-container-flip .swiper-slide .swiper-slide {\\n pointer-events: none;\\n}\\n.swiper-container-flip .swiper-slide-active,\\n.swiper-container-flip .swiper-slide-active .swiper-slide-active {\\n pointer-events: auto;\\n}\\n.swiper-container-flip .swiper-slide-shadow-top,\\n.swiper-container-flip .swiper-slide-shadow-bottom,\\n.swiper-container-flip .swiper-slide-shadow-left,\\n.swiper-container-flip .swiper-slide-shadow-right {\\n z-index: 0;\\n -webkit-backface-visibility: hidden;\\n backface-visibility: hidden;\\n}\\n\",\"\"])},URgk:function(e,r,t){(function(e){var n=void 0!==e&&e||\"undefined\"!=typeof self&&self||window,a=Function.prototype.apply;function i(e,r){this._id=e,this._clearFn=r}r.setTimeout=function(){return new i(a.call(setTimeout,n,arguments),clearTimeout)},r.setInterval=function(){return new i(a.call(setInterval,n,arguments),clearInterval)},r.clearTimeout=r.clearInterval=function(e){e&&e.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(n,this._id)},r.enroll=function(e,r){clearTimeout(e._idleTimeoutId),e._idleTimeout=r},r.unenroll=function(e){clearTimeout(e._idleTimeoutId),e._idleTimeout=-1},r._unrefActive=r.active=function(e){clearTimeout(e._idleTimeoutId);var r=e._idleTimeout;r>=0&&(e._idleTimeoutId=setTimeout((function(){e._onTimeout&&e._onTimeout()}),r))},t(\"YBdB\"),r.setImmediate=\"undefined\"!=typeof self&&self.setImmediate||void 0!==e&&e.setImmediate||this&&this.setImmediate,r.clearImmediate=\"undefined\"!=typeof self&&self.clearImmediate||void 0!==e&&e.clearImmediate||this&&this.clearImmediate}).call(this,t(\"yLpj\"))},XOgp:function(e,r,t){(function(e,t){(function(r){\"use strict\";var n=/\\r?\\n/g,a=/^\\s*$/,i=/^(\\r?\\n)*[\\t\\s]/,o=function(e){if(!i.test(e))return e;for(var r,t,o,l=e.split(n),c=1/0,u=0;u\\/=]+)(?:\\s*(=)\\s*(?:\"([^\"]*)\"+|'([^']*)'+|([^\\s\"'=<>`]+)))?/,S=/^\\s*((?:v-[\\w-]+:|@|:|#)\\[[^=]+\\][^\\s\"'<>\\/=]*)(?:\\s*(=)\\s*(?:\"([^\"]*)\"+|'([^']*)'+|([^\\s\"'=<>`]+)))?/,T=\"[a-zA-Z_][\\\\-\\\\.0-9_a-zA-Z\"+/a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/.source+\"]*\",C=\"((?:\"+T+\"\\\\:)?\"+T+\")\",B=new RegExp(\"^<\"+C),R=/^\\s*(\\/?)>/,F=new RegExp(\"^<\\\\/\"+C+\"[^>]*>\"),N=/^]+>/i,O=/^\",\"&quot;\":'\"',\"&amp;\":\"&\",\"&#10;\":\"\\n\",\"&#9;\":\"\\t\",\"&#39;\":\"'\"},M=/&(?:lt|gt|quot|amp|#39);/g,G=/&(?:lt|gt|quot|amp|#39|#10|#9);/g,P=p(\"pre,textarea\",!0),j=function(e,r){return e&&P(e)&&\"\\n\"===r[0]};function z(e,r){var t=r?G:M;return e.replace(t,(function(e){return _[e]}))}function H(e,r){for(var t,n,a=[],i=r.expectHTML,o=r.isUnaryTag||x,s=r.canBeLeftOpenTag||x,l=0;e;){if(t=e,n&&I(n)){var c=0,u=n.toLowerCase(),p=V[u]||(V[u]=new RegExp(\"([\\\\s\\\\S]*?)(]*>)\",\"i\")),d=e.replace(p,(function(e,t,n){return c=n.length,I(u)||\"noscript\"===u||(t=t.replace(//g,\"$1\").replace(//g,\"$1\")),j(u,t)&&(t=t.slice(1)),r.chars&&r.chars(t),\"\"}));l+=e.length-d.length,e=d,C(u,l-c,l)}else{var f=e.indexOf(\"<\");if(0===f){if(O.test(e)){var m=e.indexOf(\"--\\x3e\");if(m>=0){r.shouldKeepComment&&r.comment(e.substring(4,m),l,l+m+3),E(m+3);continue}}if(U.test(e)){var g=e.indexOf(\"]>\");if(g>=0){E(g+2);continue}}var h=e.match(N);if(h){E(h[0].length);continue}var v=e.match(F);if(v){var b=l;E(v[0].length),C(v[1],b,l);continue}var y=D();if(y){T(y),j(y.tagName,e)&&E(1);continue}}var w=void 0,A=void 0,k=void 0;if(f>=0){for(A=e.slice(f);!(F.test(A)||B.test(A)||O.test(A)||U.test(A)||(k=A.indexOf(\"<\",1))<0);)f+=k,A=e.slice(f);w=e.substring(0,f)}f<0&&(w=e),w&&E(w.length),r.chars&&w&&r.chars(w,l-w.length,l)}if(e===t){r.chars&&r.chars(e),!a.length&&r.warn&&r.warn('Mal-formatted tag at end of template: \"'+e+'\"',{start:l+e.length});break}}function E(r){l+=r,e=e.substring(r)}function D(){var r=e.match(B);if(r){var t,n,a={tagName:r[1],attrs:[],start:l};for(E(r[0].length);!(t=e.match(R))&&(n=e.match(S)||e.match(L));)n.start=l,E(n[0].length),n.end=l,a.attrs.push(n);if(t)return a.unarySlash=t[1],E(t[0].length),a.end=l,a}}function T(e){var t=e.tagName,l=e.unarySlash;i&&(\"p\"===n&&q(t)&&C(n),s(t)&&n===t&&C(t));for(var c=o(t)||!!l,u=e.attrs.length,p=new Array(u),d=0;d=0&&a[o].lowerCasedTag!==s;o--);else o=0;if(o>=0){for(var c=a.length-1;c>=o;c--)(c>o||!e&&r.warn)&&r.warn(\"tag <\"+a[c].tag+\"> has no matching end tag.\",{start:a[c].start,end:a[c].end}),r.end&&r.end(a[c].tag,t,i);a.length=o,n=o&&a[o-1].tag}else\"br\"===s?r.start&&r.start(e,[],!0,t,i):\"p\"===s&&(r.start&&r.start(e,[],!1,t,i),r.end&&r.end(e,t,i))}C()}var $,Y=/\\r?\\n/g,J=/./g,Z=p(\"script,style,template\",!0),K=\"__proto__\"in{},Q=\"undefined\"!=typeof window,W=\"undefined\"!=typeof WXEnvironment&&!!WXEnvironment.platform,X=(W&&WXEnvironment.platform.toLowerCase(),Q&&window.navigator.userAgent.toLowerCase()),ee=X&&/msie|trident/.test(X),re=(X&&X.indexOf(\"msie 9.0\"),X&&X.indexOf(\"edge/\")>0),te=(X&&X.indexOf(\"android\"),X&&/iphone|ipad|ipod|ios/.test(X),X&&/chrome\\/\\d+/.test(X),X&&/phantomjs/.test(X),X&&X.match(/firefox\\/(\\d+)/),{}.watch);if(Q)try{var ne={};Object.defineProperty(ne,\"passive\",{get:function(){}}),window.addEventListener(\"test-passive\",null,ne)}catch(e){}var ae=function(){return void 0===$&&($=!Q&&!W&&void 0!==e&&e.process&&\"server\"===e.process.env.VUE_ENV),$};function ie(e){return\"function\"==typeof e&&/native code/.test(e.toString())}Q&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;var oe=\"undefined\"!=typeof Symbol&&ie(Symbol)&&\"undefined\"!=typeof Reflect&&ie(Reflect.ownKeys);\"undefined\"!=typeof Set&&ie(Set)&&Set;var se,le=[\"beforeCreate\",\"created\",\"beforeMount\",\"mounted\",\"beforeUpdate\",\"updated\",\"beforeDestroy\",\"destroyed\",\"activated\",\"deactivated\",\"errorCaptured\",\"serverPrefetch\"],ce={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!0,devtools:!0,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:x,isReservedAttr:x,isUnknownElement:x,getTagNamespace:A,parsePlatformTagName:function(e){return e},mustUseProp:x,async:!0,_lifecycleHooks:le},ue=A,pe=A,de=A,fe=\"undefined\"!=typeof console,me=/(?:^|[-_])(\\w)/g;ue=function(e,r){var t=r?de(r):\"\";fe&&!ce.silent&&console.error(\"[Vue warn]: \"+e+t)},pe=function(e,r){fe&&!ce.silent&&console.warn(\"[Vue tip]: \"+e+(r?de(r):\"\"))},se=function(e,r){if(e.$root===e)return\"\";var t=\"function\"==typeof e&&null!=e.cid?e.options:e._isVue?e.$options||e.constructor.options:e,n=t.name||t._componentTag,a=t.__file;if(!n&&a){var i=a.match(/([^/\\\\]+)\\.vue$/);n=i&&i[1]}return(n?\"<\"+function(e){return e.replace(me,(function(e){return e.toUpperCase()})).replace(/[-_]/g,\"\")}(n)+\">\":\"\")+(a&&!1!==r?\" at \"+a:\"\")},de=function(e){if(e._isVue&&e.$parent){for(var r=[],t=0;e;){if(r.length>0){var n=r[r.length-1];if(n.constructor===e.constructor){t++,e=e.$parent;continue}t>0&&(r[r.length-1]=[n,t],t=0)}r.push(e),e=e.$parent}return\"\\n\\nfound in\\n\\n\"+r.map((function(e,r){return\"\"+(0===r?\"---\\x3e \":function(e,r){for(var t=\"\";r;)r%2==1&&(t+=e),r>1&&(e+=e),r>>=1;return t}(\" \",5+2*r))+(Array.isArray(e)?se(e[0])+\"... (\"+e[1]+\" recursive calls)\":se(e))})).join(\"\\n\")}return\"\\n\\n(found in \"+se(e)+\")\"};var ge=0,he=function(){this.id=ge++,this.subs=[]};he.prototype.addSub=function(e){this.subs.push(e)},he.prototype.removeSub=function(e){!function(e,r){if(e.length){var t=e.indexOf(r);t>-1&&e.splice(t,1)}}(this.subs,e)},he.prototype.depend=function(){he.target&&he.target.addDep(this)},he.prototype.notify=function(){for(var e=this.subs.slice(),r=0,t=e.length;r=0&&Math.floor(r)===r&&isFinite(e)}(r))return e.length=Math.max(e.length,r),e.splice(r,1,t),t;if(r in e&&!(r in Object.prototype))return e[r]=t,t;var a=e.__ob__;return e._isVue||a&&a.vmCount?(ue(\"Avoid adding reactive properties to a Vue instance or its root $data at runtime - declare it upfront in the data option.\"),t):a?(qe(a.value,r,t),a.dep.notify(),t):(e[r]=t,t)}ke.prototype.walk=function(e){for(var r=Object.keys(e),t=0;t=0&&\" \"===(g=e.charAt(m));m--);g&&Pe.test(g)||(c=!0)}}else void 0===a?(f=n+1,a=e.slice(0,n).trim()):h();function h(){(i||(i=[])).push(e.slice(f,n).trim()),f=n+1}if(void 0===a?a=e.slice(0,n).trim():0!==f&&h(),i)for(n=0;nl&&(s.push(i=e.slice(l,a)),o.push(JSON.stringify(i)));var c=je(n[1].trim());o.push(\"_s(\"+c+\")\"),s.push({\"@binding\":c}),l=a+n[0].length}return l, use
.',e.rawAttrsMap.class),n&&(e.staticClass=JSON.stringify(n));var a=ar(e,\"class\",!1);a&&(e.classBinding=a)},genData:function(e){var r=\"\";return e.staticClass&&(r+=\"staticClass:\"+e.staticClass+\",\"),e.classBinding&&(r+=\"class:\"+e.classBinding+\",\"),r}},gr=g((function(e){var r={},t=/:(.+)/;return e.split(/;(?![^(]*\\))/g).forEach((function(e){if(e){var n=e.split(t);n.length>1&&(r[n[0].trim()]=n[1].trim())}})),r})),hr={staticKeys:[\"staticStyle\"],transformNode:function(e,r){var t=r.warn||Ze,n=ir(e,\"style\");n&&(Je(n,r.delimiters)&&t('style=\"'+n+'\": Interpolation inside attributes has been removed. Use v-bind or the colon shorthand instead. For example, instead of
, use
.',e.rawAttrsMap.style),e.staticStyle=JSON.stringify(gr(n)));var a=ar(e,\"style\",!1);a&&(e.styleBinding=a)},genData:function(e){var r=\"\";return e.staticStyle&&(r+=\"staticStyle:\"+e.staticStyle+\",\"),e.styleBinding&&(r+=\"style:(\"+e.styleBinding+\"),\"),r}},vr=\"undefined\"!=typeof window?window:void 0!==e?e:\"undefined\"!=typeof self?self:{},br=function(e,r){return e(r={exports:{}},r.exports),r.exports}((function(e,r){!function(t){var n=r,a=e&&e.exports==n&&e,i=\"object\"==typeof vr&&vr;i.global!==i&&i.window!==i||(t=i);var o=/[\\uD800-\\uDBFF][\\uDC00-\\uDFFF]/g,s=/[\\x01-\\x7F]/g,l=/[\\x01-\\t\\x0B\\f\\x0E-\\x1F\\x7F\\x81\\x8D\\x8F\\x90\\x9D\\xA0-\\uFFFF]/g,c=/<\\u20D2|=\\u20E5|>\\u20D2|\\u205F\\u200A|\\u219D\\u0338|\\u2202\\u0338|\\u2220\\u20D2|\\u2229\\uFE00|\\u222A\\uFE00|\\u223C\\u20D2|\\u223D\\u0331|\\u223E\\u0333|\\u2242\\u0338|\\u224B\\u0338|\\u224D\\u20D2|\\u224E\\u0338|\\u224F\\u0338|\\u2250\\u0338|\\u2261\\u20E5|\\u2264\\u20D2|\\u2265\\u20D2|\\u2266\\u0338|\\u2267\\u0338|\\u2268\\uFE00|\\u2269\\uFE00|\\u226A\\u0338|\\u226A\\u20D2|\\u226B\\u0338|\\u226B\\u20D2|\\u227F\\u0338|\\u2282\\u20D2|\\u2283\\u20D2|\\u228A\\uFE00|\\u228B\\uFE00|\\u228F\\u0338|\\u2290\\u0338|\\u2293\\uFE00|\\u2294\\uFE00|\\u22B4\\u20D2|\\u22B5\\u20D2|\\u22D8\\u0338|\\u22D9\\u0338|\\u22DA\\uFE00|\\u22DB\\uFE00|\\u22F5\\u0338|\\u22F9\\u0338|\\u2933\\u0338|\\u29CF\\u0338|\\u29D0\\u0338|\\u2A6D\\u0338|\\u2A70\\u0338|\\u2A7D\\u0338|\\u2A7E\\u0338|\\u2AA1\\u0338|\\u2AA2\\u0338|\\u2AAC\\uFE00|\\u2AAD\\uFE00|\\u2AAF\\u0338|\\u2AB0\\u0338|\\u2AC5\\u0338|\\u2AC6\\u0338|\\u2ACB\\uFE00|\\u2ACC\\uFE00|\\u2AFD\\u20E5|[\\xA0-\\u0113\\u0116-\\u0122\\u0124-\\u012B\\u012E-\\u014D\\u0150-\\u017E\\u0192\\u01B5\\u01F5\\u0237\\u02C6\\u02C7\\u02D8-\\u02DD\\u0311\\u0391-\\u03A1\\u03A3-\\u03A9\\u03B1-\\u03C9\\u03D1\\u03D2\\u03D5\\u03D6\\u03DC\\u03DD\\u03F0\\u03F1\\u03F5\\u03F6\\u0401-\\u040C\\u040E-\\u044F\\u0451-\\u045C\\u045E\\u045F\\u2002-\\u2005\\u2007-\\u2010\\u2013-\\u2016\\u2018-\\u201A\\u201C-\\u201E\\u2020-\\u2022\\u2025\\u2026\\u2030-\\u2035\\u2039\\u203A\\u203E\\u2041\\u2043\\u2044\\u204F\\u2057\\u205F-\\u2063\\u20AC\\u20DB\\u20DC\\u2102\\u2105\\u210A-\\u2113\\u2115-\\u211E\\u2122\\u2124\\u2127-\\u2129\\u212C\\u212D\\u212F-\\u2131\\u2133-\\u2138\\u2145-\\u2148\\u2153-\\u215E\\u2190-\\u219B\\u219D-\\u21A7\\u21A9-\\u21AE\\u21B0-\\u21B3\\u21B5-\\u21B7\\u21BA-\\u21DB\\u21DD\\u21E4\\u21E5\\u21F5\\u21FD-\\u2205\\u2207-\\u2209\\u220B\\u220C\\u220F-\\u2214\\u2216-\\u2218\\u221A\\u221D-\\u2238\\u223A-\\u2257\\u2259\\u225A\\u225C\\u225F-\\u2262\\u2264-\\u228B\\u228D-\\u229B\\u229D-\\u22A5\\u22A7-\\u22B0\\u22B2-\\u22BB\\u22BD-\\u22DB\\u22DE-\\u22E3\\u22E6-\\u22F7\\u22F9-\\u22FE\\u2305\\u2306\\u2308-\\u2310\\u2312\\u2313\\u2315\\u2316\\u231C-\\u231F\\u2322\\u2323\\u232D\\u232E\\u2336\\u233D\\u233F\\u237C\\u23B0\\u23B1\\u23B4-\\u23B6\\u23DC-\\u23DF\\u23E2\\u23E7\\u2423\\u24C8\\u2500\\u2502\\u250C\\u2510\\u2514\\u2518\\u251C\\u2524\\u252C\\u2534\\u253C\\u2550-\\u256C\\u2580\\u2584\\u2588\\u2591-\\u2593\\u25A1\\u25AA\\u25AB\\u25AD\\u25AE\\u25B1\\u25B3-\\u25B5\\u25B8\\u25B9\\u25BD-\\u25BF\\u25C2\\u25C3\\u25CA\\u25CB\\u25EC\\u25EF\\u25F8-\\u25FC\\u2605\\u2606\\u260E\\u2640\\u2642\\u2660\\u2663\\u2665\\u2666\\u266A\\u266D-\\u266F\\u2713\\u2717\\u2720\\u2736\\u2758\\u2772\\u2773\\u27C8\\u27C9\\u27E6-\\u27ED\\u27F5-\\u27FA\\u27FC\\u27FF\\u2902-\\u2905\\u290C-\\u2913\\u2916\\u2919-\\u2920\\u2923-\\u292A\\u2933\\u2935-\\u2939\\u293C\\u293D\\u2945\\u2948-\\u294B\\u294E-\\u2976\\u2978\\u2979\\u297B-\\u297F\\u2985\\u2986\\u298B-\\u2996\\u299A\\u299C\\u299D\\u29A4-\\u29B7\\u29B9\\u29BB\\u29BC\\u29BE-\\u29C5\\u29C9\\u29CD-\\u29D0\\u29DC-\\u29DE\\u29E3-\\u29E5\\u29EB\\u29F4\\u29F6\\u2A00-\\u2A02\\u2A04\\u2A06\\u2A0C\\u2A0D\\u2A10-\\u2A17\\u2A22-\\u2A27\\u2A29\\u2A2A\\u2A2D-\\u2A31\\u2A33-\\u2A3C\\u2A3F\\u2A40\\u2A42-\\u2A4D\\u2A50\\u2A53-\\u2A58\\u2A5A-\\u2A5D\\u2A5F\\u2A66\\u2A6A\\u2A6D-\\u2A75\\u2A77-\\u2A9A\\u2A9D-\\u2AA2\\u2AA4-\\u2AB0\\u2AB3-\\u2AC8\\u2ACB\\u2ACC\\u2ACF-\\u2ADB\\u2AE4\\u2AE6-\\u2AE9\\u2AEB-\\u2AF3\\u2AFD\\uFB00-\\uFB04]|\\uD835[\\uDC9C\\uDC9E\\uDC9F\\uDCA2\\uDCA5\\uDCA6\\uDCA9-\\uDCAC\\uDCAE-\\uDCB9\\uDCBB\\uDCBD-\\uDCC3\\uDCC5-\\uDCCF\\uDD04\\uDD05\\uDD07-\\uDD0A\\uDD0D-\\uDD14\\uDD16-\\uDD1C\\uDD1E-\\uDD39\\uDD3B-\\uDD3E\\uDD40-\\uDD44\\uDD46\\uDD4A-\\uDD50\\uDD52-\\uDD6B]/g,u={\"­\":\"shy\",\"‌\":\"zwnj\",\"‍\":\"zwj\",\"‎\":\"lrm\",\"⁣\":\"ic\",\"⁢\":\"it\",\"⁡\":\"af\",\"‏\":\"rlm\",\"​\":\"ZeroWidthSpace\",\"⁠\":\"NoBreak\",\"̑\":\"DownBreve\",\"⃛\":\"tdot\",\"⃜\":\"DotDot\",\"\\t\":\"Tab\",\"\\n\":\"NewLine\",\" \":\"puncsp\",\" \":\"MediumSpace\",\" \":\"thinsp\",\" \":\"hairsp\",\" \":\"emsp13\",\" \":\"ensp\",\" \":\"emsp14\",\" \":\"emsp\",\" \":\"numsp\",\" \":\"nbsp\",\"  \":\"ThickSpace\",\"‾\":\"oline\",_:\"lowbar\",\"‐\":\"dash\",\"–\":\"ndash\",\"—\":\"mdash\",\"―\":\"horbar\",\",\":\"comma\",\";\":\"semi\",\"⁏\":\"bsemi\",\":\":\"colon\",\"⩴\":\"Colone\",\"!\":\"excl\",\"¡\":\"iexcl\",\"?\":\"quest\",\"¿\":\"iquest\",\".\":\"period\",\"‥\":\"nldr\",\"…\":\"mldr\",\"·\":\"middot\",\"'\":\"apos\",\"‘\":\"lsquo\",\"’\":\"rsquo\",\"‚\":\"sbquo\",\"‹\":\"lsaquo\",\"›\":\"rsaquo\",'\"':\"quot\",\"“\":\"ldquo\",\"”\":\"rdquo\",\"„\":\"bdquo\",\"«\":\"laquo\",\"»\":\"raquo\",\"(\":\"lpar\",\")\":\"rpar\",\"[\":\"lsqb\",\"]\":\"rsqb\",\"{\":\"lcub\",\"}\":\"rcub\",\"⌈\":\"lceil\",\"⌉\":\"rceil\",\"⌊\":\"lfloor\",\"⌋\":\"rfloor\",\"⦅\":\"lopar\",\"⦆\":\"ropar\",\"⦋\":\"lbrke\",\"⦌\":\"rbrke\",\"⦍\":\"lbrkslu\",\"⦎\":\"rbrksld\",\"⦏\":\"lbrksld\",\"⦐\":\"rbrkslu\",\"⦑\":\"langd\",\"⦒\":\"rangd\",\"⦓\":\"lparlt\",\"⦔\":\"rpargt\",\"⦕\":\"gtlPar\",\"⦖\":\"ltrPar\",\"⟦\":\"lobrk\",\"⟧\":\"robrk\",\"⟨\":\"lang\",\"⟩\":\"rang\",\"⟪\":\"Lang\",\"⟫\":\"Rang\",\"⟬\":\"loang\",\"⟭\":\"roang\",\"❲\":\"lbbrk\",\"❳\":\"rbbrk\",\"‖\":\"Vert\",\"§\":\"sect\",\"¶\":\"para\",\"@\":\"commat\",\"*\":\"ast\",\"/\":\"sol\",undefined:null,\"&\":\"amp\",\"#\":\"num\",\"%\":\"percnt\",\"‰\":\"permil\",\"‱\":\"pertenk\",\"†\":\"dagger\",\"‡\":\"Dagger\",\"•\":\"bull\",\"⁃\":\"hybull\",\"′\":\"prime\",\"″\":\"Prime\",\"‴\":\"tprime\",\"⁗\":\"qprime\",\"‵\":\"bprime\",\"⁁\":\"caret\",\"`\":\"grave\",\"´\":\"acute\",\"˜\":\"tilde\",\"^\":\"Hat\",\"¯\":\"macr\",\"˘\":\"breve\",\"˙\":\"dot\",\"¨\":\"die\",\"˚\":\"ring\",\"˝\":\"dblac\",\"¸\":\"cedil\",\"˛\":\"ogon\",\"ˆ\":\"circ\",\"ˇ\":\"caron\",\"°\":\"deg\",\"©\":\"copy\",\"®\":\"reg\",\"℗\":\"copysr\",\"℘\":\"wp\",\"℞\":\"rx\",\"℧\":\"mho\",\"℩\":\"iiota\",\"←\":\"larr\",\"↚\":\"nlarr\",\"→\":\"rarr\",\"↛\":\"nrarr\",\"↑\":\"uarr\",\"↓\":\"darr\",\"↔\":\"harr\",\"↮\":\"nharr\",\"↕\":\"varr\",\"↖\":\"nwarr\",\"↗\":\"nearr\",\"↘\":\"searr\",\"↙\":\"swarr\",\"↝\":\"rarrw\",\"↝̸\":\"nrarrw\",\"↞\":\"Larr\",\"↟\":\"Uarr\",\"↠\":\"Rarr\",\"↡\":\"Darr\",\"↢\":\"larrtl\",\"↣\":\"rarrtl\",\"↤\":\"mapstoleft\",\"↥\":\"mapstoup\",\"↦\":\"map\",\"↧\":\"mapstodown\",\"↩\":\"larrhk\",\"↪\":\"rarrhk\",\"↫\":\"larrlp\",\"↬\":\"rarrlp\",\"↭\":\"harrw\",\"↰\":\"lsh\",\"↱\":\"rsh\",\"↲\":\"ldsh\",\"↳\":\"rdsh\",\"↵\":\"crarr\",\"↶\":\"cularr\",\"↷\":\"curarr\",\"↺\":\"olarr\",\"↻\":\"orarr\",\"↼\":\"lharu\",\"↽\":\"lhard\",\"↾\":\"uharr\",\"↿\":\"uharl\",\"⇀\":\"rharu\",\"⇁\":\"rhard\",\"⇂\":\"dharr\",\"⇃\":\"dharl\",\"⇄\":\"rlarr\",\"⇅\":\"udarr\",\"⇆\":\"lrarr\",\"⇇\":\"llarr\",\"⇈\":\"uuarr\",\"⇉\":\"rrarr\",\"⇊\":\"ddarr\",\"⇋\":\"lrhar\",\"⇌\":\"rlhar\",\"⇐\":\"lArr\",\"⇍\":\"nlArr\",\"⇑\":\"uArr\",\"⇒\":\"rArr\",\"⇏\":\"nrArr\",\"⇓\":\"dArr\",\"⇔\":\"iff\",\"⇎\":\"nhArr\",\"⇕\":\"vArr\",\"⇖\":\"nwArr\",\"⇗\":\"neArr\",\"⇘\":\"seArr\",\"⇙\":\"swArr\",\"⇚\":\"lAarr\",\"⇛\":\"rAarr\",\"⇝\":\"zigrarr\",\"⇤\":\"larrb\",\"⇥\":\"rarrb\",\"⇵\":\"duarr\",\"⇽\":\"loarr\",\"⇾\":\"roarr\",\"⇿\":\"hoarr\",\"∀\":\"forall\",\"∁\":\"comp\",\"∂\":\"part\",\"∂̸\":\"npart\",\"∃\":\"exist\",\"∄\":\"nexist\",\"∅\":\"empty\",\"∇\":\"Del\",\"∈\":\"in\",\"∉\":\"notin\",\"∋\":\"ni\",\"∌\":\"notni\",\"϶\":\"bepsi\",\"∏\":\"prod\",\"∐\":\"coprod\",\"∑\":\"sum\",\"+\":\"plus\",\"±\":\"pm\",\"÷\":\"div\",\"×\":\"times\",\"<\":\"lt\",\"≮\":\"nlt\",\"<⃒\":\"nvlt\",\"=\":\"equals\",\"≠\":\"ne\",\"=⃥\":\"bne\",\"⩵\":\"Equal\",\">\":\"gt\",\"≯\":\"ngt\",\">⃒\":\"nvgt\",\"¬\":\"not\",\"|\":\"vert\",\"¦\":\"brvbar\",\"−\":\"minus\",\"∓\":\"mp\",\"∔\":\"plusdo\",\"⁄\":\"frasl\",\"∖\":\"setmn\",\"∗\":\"lowast\",\"∘\":\"compfn\",\"√\":\"Sqrt\",\"∝\":\"prop\",\"∞\":\"infin\",\"∟\":\"angrt\",\"∠\":\"ang\",\"∠⃒\":\"nang\",\"∡\":\"angmsd\",\"∢\":\"angsph\",\"∣\":\"mid\",\"∤\":\"nmid\",\"∥\":\"par\",\"∦\":\"npar\",\"∧\":\"and\",\"∨\":\"or\",\"∩\":\"cap\",\"∩︀\":\"caps\",\"∪\":\"cup\",\"∪︀\":\"cups\",\"∫\":\"int\",\"∬\":\"Int\",\"∭\":\"tint\",\"⨌\":\"qint\",\"∮\":\"oint\",\"∯\":\"Conint\",\"∰\":\"Cconint\",\"∱\":\"cwint\",\"∲\":\"cwconint\",\"∳\":\"awconint\",\"∴\":\"there4\",\"∵\":\"becaus\",\"∶\":\"ratio\",\"∷\":\"Colon\",\"∸\":\"minusd\",\"∺\":\"mDDot\",\"∻\":\"homtht\",\"∼\":\"sim\",\"≁\":\"nsim\",\"∼⃒\":\"nvsim\",\"∽\":\"bsim\",\"∽̱\":\"race\",\"∾\":\"ac\",\"∾̳\":\"acE\",\"∿\":\"acd\",\"≀\":\"wr\",\"≂\":\"esim\",\"≂̸\":\"nesim\",\"≃\":\"sime\",\"≄\":\"nsime\",\"≅\":\"cong\",\"≇\":\"ncong\",\"≆\":\"simne\",\"≈\":\"ap\",\"≉\":\"nap\",\"≊\":\"ape\",\"≋\":\"apid\",\"≋̸\":\"napid\",\"≌\":\"bcong\",\"≍\":\"CupCap\",\"≭\":\"NotCupCap\",\"≍⃒\":\"nvap\",\"≎\":\"bump\",\"≎̸\":\"nbump\",\"≏\":\"bumpe\",\"≏̸\":\"nbumpe\",\"≐\":\"doteq\",\"≐̸\":\"nedot\",\"≑\":\"eDot\",\"≒\":\"efDot\",\"≓\":\"erDot\",\"≔\":\"colone\",\"≕\":\"ecolon\",\"≖\":\"ecir\",\"≗\":\"cire\",\"≙\":\"wedgeq\",\"≚\":\"veeeq\",\"≜\":\"trie\",\"≟\":\"equest\",\"≡\":\"equiv\",\"≢\":\"nequiv\",\"≡⃥\":\"bnequiv\",\"≤\":\"le\",\"≰\":\"nle\",\"≤⃒\":\"nvle\",\"≥\":\"ge\",\"≱\":\"nge\",\"≥⃒\":\"nvge\",\"≦\":\"lE\",\"≦̸\":\"nlE\",\"≧\":\"gE\",\"≧̸\":\"ngE\",\"≨︀\":\"lvnE\",\"≨\":\"lnE\",\"≩\":\"gnE\",\"≩︀\":\"gvnE\",\"≪\":\"ll\",\"≪̸\":\"nLtv\",\"≪⃒\":\"nLt\",\"≫\":\"gg\",\"≫̸\":\"nGtv\",\"≫⃒\":\"nGt\",\"≬\":\"twixt\",\"≲\":\"lsim\",\"≴\":\"nlsim\",\"≳\":\"gsim\",\"≵\":\"ngsim\",\"≶\":\"lg\",\"≸\":\"ntlg\",\"≷\":\"gl\",\"≹\":\"ntgl\",\"≺\":\"pr\",\"⊀\":\"npr\",\"≻\":\"sc\",\"⊁\":\"nsc\",\"≼\":\"prcue\",\"⋠\":\"nprcue\",\"≽\":\"sccue\",\"⋡\":\"nsccue\",\"≾\":\"prsim\",\"≿\":\"scsim\",\"≿̸\":\"NotSucceedsTilde\",\"⊂\":\"sub\",\"⊄\":\"nsub\",\"⊂⃒\":\"vnsub\",\"⊃\":\"sup\",\"⊅\":\"nsup\",\"⊃⃒\":\"vnsup\",\"⊆\":\"sube\",\"⊈\":\"nsube\",\"⊇\":\"supe\",\"⊉\":\"nsupe\",\"⊊︀\":\"vsubne\",\"⊊\":\"subne\",\"⊋︀\":\"vsupne\",\"⊋\":\"supne\",\"⊍\":\"cupdot\",\"⊎\":\"uplus\",\"⊏\":\"sqsub\",\"⊏̸\":\"NotSquareSubset\",\"⊐\":\"sqsup\",\"⊐̸\":\"NotSquareSuperset\",\"⊑\":\"sqsube\",\"⋢\":\"nsqsube\",\"⊒\":\"sqsupe\",\"⋣\":\"nsqsupe\",\"⊓\":\"sqcap\",\"⊓︀\":\"sqcaps\",\"⊔\":\"sqcup\",\"⊔︀\":\"sqcups\",\"⊕\":\"oplus\",\"⊖\":\"ominus\",\"⊗\":\"otimes\",\"⊘\":\"osol\",\"⊙\":\"odot\",\"⊚\":\"ocir\",\"⊛\":\"oast\",\"⊝\":\"odash\",\"⊞\":\"plusb\",\"⊟\":\"minusb\",\"⊠\":\"timesb\",\"⊡\":\"sdotb\",\"⊢\":\"vdash\",\"⊬\":\"nvdash\",\"⊣\":\"dashv\",\"⊤\":\"top\",\"⊥\":\"bot\",\"⊧\":\"models\",\"⊨\":\"vDash\",\"⊭\":\"nvDash\",\"⊩\":\"Vdash\",\"⊮\":\"nVdash\",\"⊪\":\"Vvdash\",\"⊫\":\"VDash\",\"⊯\":\"nVDash\",\"⊰\":\"prurel\",\"⊲\":\"vltri\",\"⋪\":\"nltri\",\"⊳\":\"vrtri\",\"⋫\":\"nrtri\",\"⊴\":\"ltrie\",\"⋬\":\"nltrie\",\"⊴⃒\":\"nvltrie\",\"⊵\":\"rtrie\",\"⋭\":\"nrtrie\",\"⊵⃒\":\"nvrtrie\",\"⊶\":\"origof\",\"⊷\":\"imof\",\"⊸\":\"mumap\",\"⊹\":\"hercon\",\"⊺\":\"intcal\",\"⊻\":\"veebar\",\"⊽\":\"barvee\",\"⊾\":\"angrtvb\",\"⊿\":\"lrtri\",\"⋀\":\"Wedge\",\"⋁\":\"Vee\",\"⋂\":\"xcap\",\"⋃\":\"xcup\",\"⋄\":\"diam\",\"⋅\":\"sdot\",\"⋆\":\"Star\",\"⋇\":\"divonx\",\"⋈\":\"bowtie\",\"⋉\":\"ltimes\",\"⋊\":\"rtimes\",\"⋋\":\"lthree\",\"⋌\":\"rthree\",\"⋍\":\"bsime\",\"⋎\":\"cuvee\",\"⋏\":\"cuwed\",\"⋐\":\"Sub\",\"⋑\":\"Sup\",\"⋒\":\"Cap\",\"⋓\":\"Cup\",\"⋔\":\"fork\",\"⋕\":\"epar\",\"⋖\":\"ltdot\",\"⋗\":\"gtdot\",\"⋘\":\"Ll\",\"⋘̸\":\"nLl\",\"⋙\":\"Gg\",\"⋙̸\":\"nGg\",\"⋚︀\":\"lesg\",\"⋚\":\"leg\",\"⋛\":\"gel\",\"⋛︀\":\"gesl\",\"⋞\":\"cuepr\",\"⋟\":\"cuesc\",\"⋦\":\"lnsim\",\"⋧\":\"gnsim\",\"⋨\":\"prnsim\",\"⋩\":\"scnsim\",\"⋮\":\"vellip\",\"⋯\":\"ctdot\",\"⋰\":\"utdot\",\"⋱\":\"dtdot\",\"⋲\":\"disin\",\"⋳\":\"isinsv\",\"⋴\":\"isins\",\"⋵\":\"isindot\",\"⋵̸\":\"notindot\",\"⋶\":\"notinvc\",\"⋷\":\"notinvb\",\"⋹\":\"isinE\",\"⋹̸\":\"notinE\",\"⋺\":\"nisd\",\"⋻\":\"xnis\",\"⋼\":\"nis\",\"⋽\":\"notnivc\",\"⋾\":\"notnivb\",\"⌅\":\"barwed\",\"⌆\":\"Barwed\",\"⌌\":\"drcrop\",\"⌍\":\"dlcrop\",\"⌎\":\"urcrop\",\"⌏\":\"ulcrop\",\"⌐\":\"bnot\",\"⌒\":\"profline\",\"⌓\":\"profsurf\",\"⌕\":\"telrec\",\"⌖\":\"target\",\"⌜\":\"ulcorn\",\"⌝\":\"urcorn\",\"⌞\":\"dlcorn\",\"⌟\":\"drcorn\",\"⌢\":\"frown\",\"⌣\":\"smile\",\"⌭\":\"cylcty\",\"⌮\":\"profalar\",\"⌶\":\"topbot\",\"⌽\":\"ovbar\",\"⌿\":\"solbar\",\"⍼\":\"angzarr\",\"⎰\":\"lmoust\",\"⎱\":\"rmoust\",\"⎴\":\"tbrk\",\"⎵\":\"bbrk\",\"⎶\":\"bbrktbrk\",\"⏜\":\"OverParenthesis\",\"⏝\":\"UnderParenthesis\",\"⏞\":\"OverBrace\",\"⏟\":\"UnderBrace\",\"⏢\":\"trpezium\",\"⏧\":\"elinters\",\"␣\":\"blank\",\"─\":\"boxh\",\"│\":\"boxv\",\"┌\":\"boxdr\",\"┐\":\"boxdl\",\"└\":\"boxur\",\"┘\":\"boxul\",\"├\":\"boxvr\",\"┤\":\"boxvl\",\"┬\":\"boxhd\",\"┴\":\"boxhu\",\"┼\":\"boxvh\",\"═\":\"boxH\",\"║\":\"boxV\",\"╒\":\"boxdR\",\"╓\":\"boxDr\",\"╔\":\"boxDR\",\"╕\":\"boxdL\",\"╖\":\"boxDl\",\"╗\":\"boxDL\",\"╘\":\"boxuR\",\"╙\":\"boxUr\",\"╚\":\"boxUR\",\"╛\":\"boxuL\",\"╜\":\"boxUl\",\"╝\":\"boxUL\",\"╞\":\"boxvR\",\"╟\":\"boxVr\",\"╠\":\"boxVR\",\"╡\":\"boxvL\",\"╢\":\"boxVl\",\"╣\":\"boxVL\",\"╤\":\"boxHd\",\"╥\":\"boxhD\",\"╦\":\"boxHD\",\"╧\":\"boxHu\",\"╨\":\"boxhU\",\"╩\":\"boxHU\",\"╪\":\"boxvH\",\"╫\":\"boxVh\",\"╬\":\"boxVH\",\"▀\":\"uhblk\",\"▄\":\"lhblk\",\"█\":\"block\",\"░\":\"blk14\",\"▒\":\"blk12\",\"▓\":\"blk34\",\"□\":\"squ\",\"▪\":\"squf\",\"▫\":\"EmptyVerySmallSquare\",\"▭\":\"rect\",\"▮\":\"marker\",\"▱\":\"fltns\",\"△\":\"xutri\",\"▴\":\"utrif\",\"▵\":\"utri\",\"▸\":\"rtrif\",\"▹\":\"rtri\",\"▽\":\"xdtri\",\"▾\":\"dtrif\",\"▿\":\"dtri\",\"◂\":\"ltrif\",\"◃\":\"ltri\",\"◊\":\"loz\",\"○\":\"cir\",\"◬\":\"tridot\",\"◯\":\"xcirc\",\"◸\":\"ultri\",\"◹\":\"urtri\",\"◺\":\"lltri\",\"◻\":\"EmptySmallSquare\",\"◼\":\"FilledSmallSquare\",\"★\":\"starf\",\"☆\":\"star\",\"☎\":\"phone\",\"♀\":\"female\",\"♂\":\"male\",\"♠\":\"spades\",\"♣\":\"clubs\",\"♥\":\"hearts\",\"♦\":\"diams\",\"♪\":\"sung\",\"✓\":\"check\",\"✗\":\"cross\",\"✠\":\"malt\",\"✶\":\"sext\",\"❘\":\"VerticalSeparator\",\"⟈\":\"bsolhsub\",\"⟉\":\"suphsol\",\"⟵\":\"xlarr\",\"⟶\":\"xrarr\",\"⟷\":\"xharr\",\"⟸\":\"xlArr\",\"⟹\":\"xrArr\",\"⟺\":\"xhArr\",\"⟼\":\"xmap\",\"⟿\":\"dzigrarr\",\"⤂\":\"nvlArr\",\"⤃\":\"nvrArr\",\"⤄\":\"nvHarr\",\"⤅\":\"Map\",\"⤌\":\"lbarr\",\"⤍\":\"rbarr\",\"⤎\":\"lBarr\",\"⤏\":\"rBarr\",\"⤐\":\"RBarr\",\"⤑\":\"DDotrahd\",\"⤒\":\"UpArrowBar\",\"⤓\":\"DownArrowBar\",\"⤖\":\"Rarrtl\",\"⤙\":\"latail\",\"⤚\":\"ratail\",\"⤛\":\"lAtail\",\"⤜\":\"rAtail\",\"⤝\":\"larrfs\",\"⤞\":\"rarrfs\",\"⤟\":\"larrbfs\",\"⤠\":\"rarrbfs\",\"⤣\":\"nwarhk\",\"⤤\":\"nearhk\",\"⤥\":\"searhk\",\"⤦\":\"swarhk\",\"⤧\":\"nwnear\",\"⤨\":\"toea\",\"⤩\":\"tosa\",\"⤪\":\"swnwar\",\"⤳\":\"rarrc\",\"⤳̸\":\"nrarrc\",\"⤵\":\"cudarrr\",\"⤶\":\"ldca\",\"⤷\":\"rdca\",\"⤸\":\"cudarrl\",\"⤹\":\"larrpl\",\"⤼\":\"curarrm\",\"⤽\":\"cularrp\",\"⥅\":\"rarrpl\",\"⥈\":\"harrcir\",\"⥉\":\"Uarrocir\",\"⥊\":\"lurdshar\",\"⥋\":\"ldrushar\",\"⥎\":\"LeftRightVector\",\"⥏\":\"RightUpDownVector\",\"⥐\":\"DownLeftRightVector\",\"⥑\":\"LeftUpDownVector\",\"⥒\":\"LeftVectorBar\",\"⥓\":\"RightVectorBar\",\"⥔\":\"RightUpVectorBar\",\"⥕\":\"RightDownVectorBar\",\"⥖\":\"DownLeftVectorBar\",\"⥗\":\"DownRightVectorBar\",\"⥘\":\"LeftUpVectorBar\",\"⥙\":\"LeftDownVectorBar\",\"⥚\":\"LeftTeeVector\",\"⥛\":\"RightTeeVector\",\"⥜\":\"RightUpTeeVector\",\"⥝\":\"RightDownTeeVector\",\"⥞\":\"DownLeftTeeVector\",\"⥟\":\"DownRightTeeVector\",\"⥠\":\"LeftUpTeeVector\",\"⥡\":\"LeftDownTeeVector\",\"⥢\":\"lHar\",\"⥣\":\"uHar\",\"⥤\":\"rHar\",\"⥥\":\"dHar\",\"⥦\":\"luruhar\",\"⥧\":\"ldrdhar\",\"⥨\":\"ruluhar\",\"⥩\":\"rdldhar\",\"⥪\":\"lharul\",\"⥫\":\"llhard\",\"⥬\":\"rharul\",\"⥭\":\"lrhard\",\"⥮\":\"udhar\",\"⥯\":\"duhar\",\"⥰\":\"RoundImplies\",\"⥱\":\"erarr\",\"⥲\":\"simrarr\",\"⥳\":\"larrsim\",\"⥴\":\"rarrsim\",\"⥵\":\"rarrap\",\"⥶\":\"ltlarr\",\"⥸\":\"gtrarr\",\"⥹\":\"subrarr\",\"⥻\":\"suplarr\",\"⥼\":\"lfisht\",\"⥽\":\"rfisht\",\"⥾\":\"ufisht\",\"⥿\":\"dfisht\",\"⦚\":\"vzigzag\",\"⦜\":\"vangrt\",\"⦝\":\"angrtvbd\",\"⦤\":\"ange\",\"⦥\":\"range\",\"⦦\":\"dwangle\",\"⦧\":\"uwangle\",\"⦨\":\"angmsdaa\",\"⦩\":\"angmsdab\",\"⦪\":\"angmsdac\",\"⦫\":\"angmsdad\",\"⦬\":\"angmsdae\",\"⦭\":\"angmsdaf\",\"⦮\":\"angmsdag\",\"⦯\":\"angmsdah\",\"⦰\":\"bemptyv\",\"⦱\":\"demptyv\",\"⦲\":\"cemptyv\",\"⦳\":\"raemptyv\",\"⦴\":\"laemptyv\",\"⦵\":\"ohbar\",\"⦶\":\"omid\",\"⦷\":\"opar\",\"⦹\":\"operp\",\"⦻\":\"olcross\",\"⦼\":\"odsold\",\"⦾\":\"olcir\",\"⦿\":\"ofcir\",\"⧀\":\"olt\",\"⧁\":\"ogt\",\"⧂\":\"cirscir\",\"⧃\":\"cirE\",\"⧄\":\"solb\",\"⧅\":\"bsolb\",\"⧉\":\"boxbox\",\"⧍\":\"trisb\",\"⧎\":\"rtriltri\",\"⧏\":\"LeftTriangleBar\",\"⧏̸\":\"NotLeftTriangleBar\",\"⧐\":\"RightTriangleBar\",\"⧐̸\":\"NotRightTriangleBar\",\"⧜\":\"iinfin\",\"⧝\":\"infintie\",\"⧞\":\"nvinfin\",\"⧣\":\"eparsl\",\"⧤\":\"smeparsl\",\"⧥\":\"eqvparsl\",\"⧫\":\"lozf\",\"⧴\":\"RuleDelayed\",\"⧶\":\"dsol\",\"⨀\":\"xodot\",\"⨁\":\"xoplus\",\"⨂\":\"xotime\",\"⨄\":\"xuplus\",\"⨆\":\"xsqcup\",\"⨍\":\"fpartint\",\"⨐\":\"cirfnint\",\"⨑\":\"awint\",\"⨒\":\"rppolint\",\"⨓\":\"scpolint\",\"⨔\":\"npolint\",\"⨕\":\"pointint\",\"⨖\":\"quatint\",\"⨗\":\"intlarhk\",\"⨢\":\"pluscir\",\"⨣\":\"plusacir\",\"⨤\":\"simplus\",\"⨥\":\"plusdu\",\"⨦\":\"plussim\",\"⨧\":\"plustwo\",\"⨩\":\"mcomma\",\"⨪\":\"minusdu\",\"⨭\":\"loplus\",\"⨮\":\"roplus\",\"⨯\":\"Cross\",\"⨰\":\"timesd\",\"⨱\":\"timesbar\",\"⨳\":\"smashp\",\"⨴\":\"lotimes\",\"⨵\":\"rotimes\",\"⨶\":\"otimesas\",\"⨷\":\"Otimes\",\"⨸\":\"odiv\",\"⨹\":\"triplus\",\"⨺\":\"triminus\",\"⨻\":\"tritime\",\"⨼\":\"iprod\",\"⨿\":\"amalg\",\"⩀\":\"capdot\",\"⩂\":\"ncup\",\"⩃\":\"ncap\",\"⩄\":\"capand\",\"⩅\":\"cupor\",\"⩆\":\"cupcap\",\"⩇\":\"capcup\",\"⩈\":\"cupbrcap\",\"⩉\":\"capbrcup\",\"⩊\":\"cupcup\",\"⩋\":\"capcap\",\"⩌\":\"ccups\",\"⩍\":\"ccaps\",\"⩐\":\"ccupssm\",\"⩓\":\"And\",\"⩔\":\"Or\",\"⩕\":\"andand\",\"⩖\":\"oror\",\"⩗\":\"orslope\",\"⩘\":\"andslope\",\"⩚\":\"andv\",\"⩛\":\"orv\",\"⩜\":\"andd\",\"⩝\":\"ord\",\"⩟\":\"wedbar\",\"⩦\":\"sdote\",\"⩪\":\"simdot\",\"⩭\":\"congdot\",\"⩭̸\":\"ncongdot\",\"⩮\":\"easter\",\"⩯\":\"apacir\",\"⩰\":\"apE\",\"⩰̸\":\"napE\",\"⩱\":\"eplus\",\"⩲\":\"pluse\",\"⩳\":\"Esim\",\"⩷\":\"eDDot\",\"⩸\":\"equivDD\",\"⩹\":\"ltcir\",\"⩺\":\"gtcir\",\"⩻\":\"ltquest\",\"⩼\":\"gtquest\",\"⩽\":\"les\",\"⩽̸\":\"nles\",\"⩾\":\"ges\",\"⩾̸\":\"nges\",\"⩿\":\"lesdot\",\"⪀\":\"gesdot\",\"⪁\":\"lesdoto\",\"⪂\":\"gesdoto\",\"⪃\":\"lesdotor\",\"⪄\":\"gesdotol\",\"⪅\":\"lap\",\"⪆\":\"gap\",\"⪇\":\"lne\",\"⪈\":\"gne\",\"⪉\":\"lnap\",\"⪊\":\"gnap\",\"⪋\":\"lEg\",\"⪌\":\"gEl\",\"⪍\":\"lsime\",\"⪎\":\"gsime\",\"⪏\":\"lsimg\",\"⪐\":\"gsiml\",\"⪑\":\"lgE\",\"⪒\":\"glE\",\"⪓\":\"lesges\",\"⪔\":\"gesles\",\"⪕\":\"els\",\"⪖\":\"egs\",\"⪗\":\"elsdot\",\"⪘\":\"egsdot\",\"⪙\":\"el\",\"⪚\":\"eg\",\"⪝\":\"siml\",\"⪞\":\"simg\",\"⪟\":\"simlE\",\"⪠\":\"simgE\",\"⪡\":\"LessLess\",\"⪡̸\":\"NotNestedLessLess\",\"⪢\":\"GreaterGreater\",\"⪢̸\":\"NotNestedGreaterGreater\",\"⪤\":\"glj\",\"⪥\":\"gla\",\"⪦\":\"ltcc\",\"⪧\":\"gtcc\",\"⪨\":\"lescc\",\"⪩\":\"gescc\",\"⪪\":\"smt\",\"⪫\":\"lat\",\"⪬\":\"smte\",\"⪬︀\":\"smtes\",\"⪭\":\"late\",\"⪭︀\":\"lates\",\"⪮\":\"bumpE\",\"⪯\":\"pre\",\"⪯̸\":\"npre\",\"⪰\":\"sce\",\"⪰̸\":\"nsce\",\"⪳\":\"prE\",\"⪴\":\"scE\",\"⪵\":\"prnE\",\"⪶\":\"scnE\",\"⪷\":\"prap\",\"⪸\":\"scap\",\"⪹\":\"prnap\",\"⪺\":\"scnap\",\"⪻\":\"Pr\",\"⪼\":\"Sc\",\"⪽\":\"subdot\",\"⪾\":\"supdot\",\"⪿\":\"subplus\",\"⫀\":\"supplus\",\"⫁\":\"submult\",\"⫂\":\"supmult\",\"⫃\":\"subedot\",\"⫄\":\"supedot\",\"⫅\":\"subE\",\"⫅̸\":\"nsubE\",\"⫆\":\"supE\",\"⫆̸\":\"nsupE\",\"⫇\":\"subsim\",\"⫈\":\"supsim\",\"⫋︀\":\"vsubnE\",\"⫋\":\"subnE\",\"⫌︀\":\"vsupnE\",\"⫌\":\"supnE\",\"⫏\":\"csub\",\"⫐\":\"csup\",\"⫑\":\"csube\",\"⫒\":\"csupe\",\"⫓\":\"subsup\",\"⫔\":\"supsub\",\"⫕\":\"subsub\",\"⫖\":\"supsup\",\"⫗\":\"suphsub\",\"⫘\":\"supdsub\",\"⫙\":\"forkv\",\"⫚\":\"topfork\",\"⫛\":\"mlcp\",\"⫤\":\"Dashv\",\"⫦\":\"Vdashl\",\"⫧\":\"Barv\",\"⫨\":\"vBar\",\"⫩\":\"vBarv\",\"⫫\":\"Vbar\",\"⫬\":\"Not\",\"⫭\":\"bNot\",\"⫮\":\"rnmid\",\"⫯\":\"cirmid\",\"⫰\":\"midcir\",\"⫱\":\"topcir\",\"⫲\":\"nhpar\",\"⫳\":\"parsim\",\"⫽\":\"parsl\",\"⫽⃥\":\"nparsl\",\"♭\":\"flat\",\"♮\":\"natur\",\"♯\":\"sharp\",\"¤\":\"curren\",\"¢\":\"cent\",$:\"dollar\",\"£\":\"pound\",\"¥\":\"yen\",\"€\":\"euro\",\"¹\":\"sup1\",\"½\":\"half\",\"⅓\":\"frac13\",\"¼\":\"frac14\",\"⅕\":\"frac15\",\"⅙\":\"frac16\",\"⅛\":\"frac18\",\"²\":\"sup2\",\"⅔\":\"frac23\",\"⅖\":\"frac25\",\"³\":\"sup3\",\"¾\":\"frac34\",\"⅗\":\"frac35\",\"⅜\":\"frac38\",\"⅘\":\"frac45\",\"⅚\":\"frac56\",\"⅝\":\"frac58\",\"⅞\":\"frac78\",\"𝒶\":\"ascr\",\"𝕒\":\"aopf\",\"𝔞\":\"afr\",\"𝔸\":\"Aopf\",\"𝔄\":\"Afr\",\"𝒜\":\"Ascr\",\"ª\":\"ordf\",\"á\":\"aacute\",\"Á\":\"Aacute\",\"à\":\"agrave\",\"À\":\"Agrave\",\"ă\":\"abreve\",\"Ă\":\"Abreve\",\"â\":\"acirc\",\"Â\":\"Acirc\",\"å\":\"aring\",\"Å\":\"angst\",\"ä\":\"auml\",\"Ä\":\"Auml\",\"ã\":\"atilde\",\"Ã\":\"Atilde\",\"ą\":\"aogon\",\"Ą\":\"Aogon\",\"ā\":\"amacr\",\"Ā\":\"Amacr\",\"æ\":\"aelig\",\"Æ\":\"AElig\",\"𝒷\":\"bscr\",\"𝕓\":\"bopf\",\"𝔟\":\"bfr\",\"𝔹\":\"Bopf\",\"ℬ\":\"Bscr\",\"𝔅\":\"Bfr\",\"𝔠\":\"cfr\",\"𝒸\":\"cscr\",\"𝕔\":\"copf\",\"ℭ\":\"Cfr\",\"𝒞\":\"Cscr\",\"ℂ\":\"Copf\",\"ć\":\"cacute\",\"Ć\":\"Cacute\",\"ĉ\":\"ccirc\",\"Ĉ\":\"Ccirc\",\"č\":\"ccaron\",\"Č\":\"Ccaron\",\"ċ\":\"cdot\",\"Ċ\":\"Cdot\",\"ç\":\"ccedil\",\"Ç\":\"Ccedil\",\"℅\":\"incare\",\"𝔡\":\"dfr\",\"ⅆ\":\"dd\",\"𝕕\":\"dopf\",\"𝒹\":\"dscr\",\"𝒟\":\"Dscr\",\"𝔇\":\"Dfr\",\"ⅅ\":\"DD\",\"𝔻\":\"Dopf\",\"ď\":\"dcaron\",\"Ď\":\"Dcaron\",\"đ\":\"dstrok\",\"Đ\":\"Dstrok\",\"ð\":\"eth\",\"Ð\":\"ETH\",\"ⅇ\":\"ee\",\"ℯ\":\"escr\",\"𝔢\":\"efr\",\"𝕖\":\"eopf\",\"ℰ\":\"Escr\",\"𝔈\":\"Efr\",\"𝔼\":\"Eopf\",\"é\":\"eacute\",\"É\":\"Eacute\",\"è\":\"egrave\",\"È\":\"Egrave\",\"ê\":\"ecirc\",\"Ê\":\"Ecirc\",\"ě\":\"ecaron\",\"Ě\":\"Ecaron\",\"ë\":\"euml\",\"Ë\":\"Euml\",\"ė\":\"edot\",\"Ė\":\"Edot\",\"ę\":\"eogon\",\"Ę\":\"Eogon\",\"ē\":\"emacr\",\"Ē\":\"Emacr\",\"𝔣\":\"ffr\",\"𝕗\":\"fopf\",\"𝒻\":\"fscr\",\"𝔉\":\"Ffr\",\"𝔽\":\"Fopf\",\"ℱ\":\"Fscr\",\"ff\":\"fflig\",\"ffi\":\"ffilig\",\"ffl\":\"ffllig\",\"fi\":\"filig\",fj:\"fjlig\",\"fl\":\"fllig\",\"ƒ\":\"fnof\",\"ℊ\":\"gscr\",\"𝕘\":\"gopf\",\"𝔤\":\"gfr\",\"𝒢\":\"Gscr\",\"𝔾\":\"Gopf\",\"𝔊\":\"Gfr\",\"ǵ\":\"gacute\",\"ğ\":\"gbreve\",\"Ğ\":\"Gbreve\",\"ĝ\":\"gcirc\",\"Ĝ\":\"Gcirc\",\"ġ\":\"gdot\",\"Ġ\":\"Gdot\",\"Ģ\":\"Gcedil\",\"𝔥\":\"hfr\",\"ℎ\":\"planckh\",\"𝒽\":\"hscr\",\"𝕙\":\"hopf\",\"ℋ\":\"Hscr\",\"ℌ\":\"Hfr\",\"ℍ\":\"Hopf\",\"ĥ\":\"hcirc\",\"Ĥ\":\"Hcirc\",\"ℏ\":\"hbar\",\"ħ\":\"hstrok\",\"Ħ\":\"Hstrok\",\"𝕚\":\"iopf\",\"𝔦\":\"ifr\",\"𝒾\":\"iscr\",\"ⅈ\":\"ii\",\"𝕀\":\"Iopf\",\"ℐ\":\"Iscr\",\"ℑ\":\"Im\",\"í\":\"iacute\",\"Í\":\"Iacute\",\"ì\":\"igrave\",\"Ì\":\"Igrave\",\"î\":\"icirc\",\"Î\":\"Icirc\",\"ï\":\"iuml\",\"Ï\":\"Iuml\",\"ĩ\":\"itilde\",\"Ĩ\":\"Itilde\",\"İ\":\"Idot\",\"į\":\"iogon\",\"Į\":\"Iogon\",\"ī\":\"imacr\",\"Ī\":\"Imacr\",\"ij\":\"ijlig\",\"IJ\":\"IJlig\",\"ı\":\"imath\",\"𝒿\":\"jscr\",\"𝕛\":\"jopf\",\"𝔧\":\"jfr\",\"𝒥\":\"Jscr\",\"𝔍\":\"Jfr\",\"𝕁\":\"Jopf\",\"ĵ\":\"jcirc\",\"Ĵ\":\"Jcirc\",\"ȷ\":\"jmath\",\"𝕜\":\"kopf\",\"𝓀\":\"kscr\",\"𝔨\":\"kfr\",\"𝒦\":\"Kscr\",\"𝕂\":\"Kopf\",\"𝔎\":\"Kfr\",\"ķ\":\"kcedil\",\"Ķ\":\"Kcedil\",\"𝔩\":\"lfr\",\"𝓁\":\"lscr\",\"ℓ\":\"ell\",\"𝕝\":\"lopf\",\"ℒ\":\"Lscr\",\"𝔏\":\"Lfr\",\"𝕃\":\"Lopf\",\"ĺ\":\"lacute\",\"Ĺ\":\"Lacute\",\"ľ\":\"lcaron\",\"Ľ\":\"Lcaron\",\"ļ\":\"lcedil\",\"Ļ\":\"Lcedil\",\"ł\":\"lstrok\",\"Ł\":\"Lstrok\",\"ŀ\":\"lmidot\",\"Ŀ\":\"Lmidot\",\"𝔪\":\"mfr\",\"𝕞\":\"mopf\",\"𝓂\":\"mscr\",\"𝔐\":\"Mfr\",\"𝕄\":\"Mopf\",\"ℳ\":\"Mscr\",\"𝔫\":\"nfr\",\"𝕟\":\"nopf\",\"𝓃\":\"nscr\",\"ℕ\":\"Nopf\",\"𝒩\":\"Nscr\",\"𝔑\":\"Nfr\",\"ń\":\"nacute\",\"Ń\":\"Nacute\",\"ň\":\"ncaron\",\"Ň\":\"Ncaron\",\"ñ\":\"ntilde\",\"Ñ\":\"Ntilde\",\"ņ\":\"ncedil\",\"Ņ\":\"Ncedil\",\"№\":\"numero\",\"ŋ\":\"eng\",\"Ŋ\":\"ENG\",\"𝕠\":\"oopf\",\"𝔬\":\"ofr\",\"ℴ\":\"oscr\",\"𝒪\":\"Oscr\",\"𝔒\":\"Ofr\",\"𝕆\":\"Oopf\",\"º\":\"ordm\",\"ó\":\"oacute\",\"Ó\":\"Oacute\",\"ò\":\"ograve\",\"Ò\":\"Ograve\",\"ô\":\"ocirc\",\"Ô\":\"Ocirc\",\"ö\":\"ouml\",\"Ö\":\"Ouml\",\"ő\":\"odblac\",\"Ő\":\"Odblac\",\"õ\":\"otilde\",\"Õ\":\"Otilde\",\"ø\":\"oslash\",\"Ø\":\"Oslash\",\"ō\":\"omacr\",\"Ō\":\"Omacr\",\"œ\":\"oelig\",\"Œ\":\"OElig\",\"𝔭\":\"pfr\",\"𝓅\":\"pscr\",\"𝕡\":\"popf\",\"ℙ\":\"Popf\",\"𝔓\":\"Pfr\",\"𝒫\":\"Pscr\",\"𝕢\":\"qopf\",\"𝔮\":\"qfr\",\"𝓆\":\"qscr\",\"𝒬\":\"Qscr\",\"𝔔\":\"Qfr\",\"ℚ\":\"Qopf\",\"ĸ\":\"kgreen\",\"𝔯\":\"rfr\",\"𝕣\":\"ropf\",\"𝓇\":\"rscr\",\"ℛ\":\"Rscr\",\"ℜ\":\"Re\",\"ℝ\":\"Ropf\",\"ŕ\":\"racute\",\"Ŕ\":\"Racute\",\"ř\":\"rcaron\",\"Ř\":\"Rcaron\",\"ŗ\":\"rcedil\",\"Ŗ\":\"Rcedil\",\"𝕤\":\"sopf\",\"𝓈\":\"sscr\",\"𝔰\":\"sfr\",\"𝕊\":\"Sopf\",\"𝔖\":\"Sfr\",\"𝒮\":\"Sscr\",\"Ⓢ\":\"oS\",\"ś\":\"sacute\",\"Ś\":\"Sacute\",\"ŝ\":\"scirc\",\"Ŝ\":\"Scirc\",\"š\":\"scaron\",\"Š\":\"Scaron\",\"ş\":\"scedil\",\"Ş\":\"Scedil\",\"ß\":\"szlig\",\"𝔱\":\"tfr\",\"𝓉\":\"tscr\",\"𝕥\":\"topf\",\"𝒯\":\"Tscr\",\"𝔗\":\"Tfr\",\"𝕋\":\"Topf\",\"ť\":\"tcaron\",\"Ť\":\"Tcaron\",\"ţ\":\"tcedil\",\"Ţ\":\"Tcedil\",\"™\":\"trade\",\"ŧ\":\"tstrok\",\"Ŧ\":\"Tstrok\",\"𝓊\":\"uscr\",\"𝕦\":\"uopf\",\"𝔲\":\"ufr\",\"𝕌\":\"Uopf\",\"𝔘\":\"Ufr\",\"𝒰\":\"Uscr\",\"ú\":\"uacute\",\"Ú\":\"Uacute\",\"ù\":\"ugrave\",\"Ù\":\"Ugrave\",\"ŭ\":\"ubreve\",\"Ŭ\":\"Ubreve\",\"û\":\"ucirc\",\"Û\":\"Ucirc\",\"ů\":\"uring\",\"Ů\":\"Uring\",\"ü\":\"uuml\",\"Ü\":\"Uuml\",\"ű\":\"udblac\",\"Ű\":\"Udblac\",\"ũ\":\"utilde\",\"Ũ\":\"Utilde\",\"ų\":\"uogon\",\"Ų\":\"Uogon\",\"ū\":\"umacr\",\"Ū\":\"Umacr\",\"𝔳\":\"vfr\",\"𝕧\":\"vopf\",\"𝓋\":\"vscr\",\"𝔙\":\"Vfr\",\"𝕍\":\"Vopf\",\"𝒱\":\"Vscr\",\"𝕨\":\"wopf\",\"𝓌\":\"wscr\",\"𝔴\":\"wfr\",\"𝒲\":\"Wscr\",\"𝕎\":\"Wopf\",\"𝔚\":\"Wfr\",\"ŵ\":\"wcirc\",\"Ŵ\":\"Wcirc\",\"𝔵\":\"xfr\",\"𝓍\":\"xscr\",\"𝕩\":\"xopf\",\"𝕏\":\"Xopf\",\"𝔛\":\"Xfr\",\"𝒳\":\"Xscr\",\"𝔶\":\"yfr\",\"𝓎\":\"yscr\",\"𝕪\":\"yopf\",\"𝒴\":\"Yscr\",\"𝔜\":\"Yfr\",\"𝕐\":\"Yopf\",\"ý\":\"yacute\",\"Ý\":\"Yacute\",\"ŷ\":\"ycirc\",\"Ŷ\":\"Ycirc\",\"ÿ\":\"yuml\",\"Ÿ\":\"Yuml\",\"𝓏\":\"zscr\",\"𝔷\":\"zfr\",\"𝕫\":\"zopf\",\"ℨ\":\"Zfr\",\"ℤ\":\"Zopf\",\"𝒵\":\"Zscr\",\"ź\":\"zacute\",\"Ź\":\"Zacute\",\"ž\":\"zcaron\",\"Ž\":\"Zcaron\",\"ż\":\"zdot\",\"Ż\":\"Zdot\",\"Ƶ\":\"imped\",\"þ\":\"thorn\",\"Þ\":\"THORN\",\"ʼn\":\"napos\",\"α\":\"alpha\",\"Α\":\"Alpha\",\"β\":\"beta\",\"Β\":\"Beta\",\"γ\":\"gamma\",\"Γ\":\"Gamma\",\"δ\":\"delta\",\"Δ\":\"Delta\",\"ε\":\"epsi\",\"ϵ\":\"epsiv\",\"Ε\":\"Epsilon\",\"ϝ\":\"gammad\",\"Ϝ\":\"Gammad\",\"ζ\":\"zeta\",\"Ζ\":\"Zeta\",\"η\":\"eta\",\"Η\":\"Eta\",\"θ\":\"theta\",\"ϑ\":\"thetav\",\"Θ\":\"Theta\",\"ι\":\"iota\",\"Ι\":\"Iota\",\"κ\":\"kappa\",\"ϰ\":\"kappav\",\"Κ\":\"Kappa\",\"λ\":\"lambda\",\"Λ\":\"Lambda\",\"μ\":\"mu\",\"µ\":\"micro\",\"Μ\":\"Mu\",\"ν\":\"nu\",\"Ν\":\"Nu\",\"ξ\":\"xi\",\"Ξ\":\"Xi\",\"ο\":\"omicron\",\"Ο\":\"Omicron\",\"π\":\"pi\",\"ϖ\":\"piv\",\"Π\":\"Pi\",\"ρ\":\"rho\",\"ϱ\":\"rhov\",\"Ρ\":\"Rho\",\"σ\":\"sigma\",\"Σ\":\"Sigma\",\"ς\":\"sigmaf\",\"τ\":\"tau\",\"Τ\":\"Tau\",\"υ\":\"upsi\",\"Υ\":\"Upsilon\",\"ϒ\":\"Upsi\",\"φ\":\"phi\",\"ϕ\":\"phiv\",\"Φ\":\"Phi\",\"χ\":\"chi\",\"Χ\":\"Chi\",\"ψ\":\"psi\",\"Ψ\":\"Psi\",\"ω\":\"omega\",\"Ω\":\"ohm\",\"а\":\"acy\",\"А\":\"Acy\",\"б\":\"bcy\",\"Б\":\"Bcy\",\"в\":\"vcy\",\"В\":\"Vcy\",\"г\":\"gcy\",\"Г\":\"Gcy\",\"ѓ\":\"gjcy\",\"Ѓ\":\"GJcy\",\"д\":\"dcy\",\"Д\":\"Dcy\",\"ђ\":\"djcy\",\"Ђ\":\"DJcy\",\"е\":\"iecy\",\"Е\":\"IEcy\",\"ё\":\"iocy\",\"Ё\":\"IOcy\",\"є\":\"jukcy\",\"Є\":\"Jukcy\",\"ж\":\"zhcy\",\"Ж\":\"ZHcy\",\"з\":\"zcy\",\"З\":\"Zcy\",\"ѕ\":\"dscy\",\"Ѕ\":\"DScy\",\"и\":\"icy\",\"И\":\"Icy\",\"і\":\"iukcy\",\"І\":\"Iukcy\",\"ї\":\"yicy\",\"Ї\":\"YIcy\",\"й\":\"jcy\",\"Й\":\"Jcy\",\"ј\":\"jsercy\",\"Ј\":\"Jsercy\",\"к\":\"kcy\",\"К\":\"Kcy\",\"ќ\":\"kjcy\",\"Ќ\":\"KJcy\",\"л\":\"lcy\",\"Л\":\"Lcy\",\"љ\":\"ljcy\",\"Љ\":\"LJcy\",\"м\":\"mcy\",\"М\":\"Mcy\",\"н\":\"ncy\",\"Н\":\"Ncy\",\"њ\":\"njcy\",\"Њ\":\"NJcy\",\"о\":\"ocy\",\"О\":\"Ocy\",\"п\":\"pcy\",\"П\":\"Pcy\",\"р\":\"rcy\",\"Р\":\"Rcy\",\"с\":\"scy\",\"С\":\"Scy\",\"т\":\"tcy\",\"Т\":\"Tcy\",\"ћ\":\"tshcy\",\"Ћ\":\"TSHcy\",\"у\":\"ucy\",\"У\":\"Ucy\",\"ў\":\"ubrcy\",\"Ў\":\"Ubrcy\",\"ф\":\"fcy\",\"Ф\":\"Fcy\",\"х\":\"khcy\",\"Х\":\"KHcy\",\"ц\":\"tscy\",\"Ц\":\"TScy\",\"ч\":\"chcy\",\"Ч\":\"CHcy\",\"џ\":\"dzcy\",\"Џ\":\"DZcy\",\"ш\":\"shcy\",\"Ш\":\"SHcy\",\"щ\":\"shchcy\",\"Щ\":\"SHCHcy\",\"ъ\":\"hardcy\",\"Ъ\":\"HARDcy\",\"ы\":\"ycy\",\"Ы\":\"Ycy\",\"ь\":\"softcy\",\"Ь\":\"SOFTcy\",\"э\":\"ecy\",\"Э\":\"Ecy\",\"ю\":\"yucy\",\"Ю\":\"YUcy\",\"я\":\"yacy\",\"Я\":\"YAcy\",\"ℵ\":\"aleph\",\"ℶ\":\"beth\",\"ℷ\":\"gimel\",\"ℸ\":\"daleth\"},p=/[\"&'<>`]/g,d={'\"':\"&quot;\",\"&\":\"&amp;\",\"'\":\"&#x27;\",\"<\":\"&lt;\",\">\":\"&gt;\",\"`\":\"&#x60;\"},f=/&#(?:[xX][^a-fA-F0-9]|[^0-9xX])/,m=/[\\0-\\x08\\x0B\\x0E-\\x1F\\x7F-\\x9F\\uFDD0-\\uFDEF\\uFFFE\\uFFFF]|[\\uD83F\\uD87F\\uD8BF\\uD8FF\\uD93F\\uD97F\\uD9BF\\uD9FF\\uDA3F\\uDA7F\\uDABF\\uDAFF\\uDB3F\\uDB7F\\uDBBF\\uDBFF][\\uDFFE\\uDFFF]|[\\uD800-\\uDBFF](?![\\uDC00-\\uDFFF])|(?:[^\\uD800-\\uDBFF]|^)[\\uDC00-\\uDFFF]/,g=/&(CounterClockwiseContourIntegral|DoubleLongLeftRightArrow|ClockwiseContourIntegral|NotNestedGreaterGreater|NotSquareSupersetEqual|DiacriticalDoubleAcute|NotRightTriangleEqual|NotSucceedsSlantEqual|NotPrecedesSlantEqual|CloseCurlyDoubleQuote|NegativeVeryThinSpace|DoubleContourIntegral|FilledVerySmallSquare|CapitalDifferentialD|OpenCurlyDoubleQuote|EmptyVerySmallSquare|NestedGreaterGreater|DoubleLongRightArrow|NotLeftTriangleEqual|NotGreaterSlantEqual|ReverseUpEquilibrium|DoubleLeftRightArrow|NotSquareSubsetEqual|NotDoubleVerticalBar|RightArrowLeftArrow|NotGreaterFullEqual|NotRightTriangleBar|SquareSupersetEqual|DownLeftRightVector|DoubleLongLeftArrow|leftrightsquigarrow|LeftArrowRightArrow|NegativeMediumSpace|blacktriangleright|RightDownVectorBar|PrecedesSlantEqual|RightDoubleBracket|SucceedsSlantEqual|NotLeftTriangleBar|RightTriangleEqual|SquareIntersection|RightDownTeeVector|ReverseEquilibrium|NegativeThickSpace|longleftrightarrow|Longleftrightarrow|LongLeftRightArrow|DownRightTeeVector|DownRightVectorBar|GreaterSlantEqual|SquareSubsetEqual|LeftDownVectorBar|LeftDoubleBracket|VerticalSeparator|rightleftharpoons|NotGreaterGreater|NotSquareSuperset|blacktriangleleft|blacktriangledown|NegativeThinSpace|LeftDownTeeVector|NotLessSlantEqual|leftrightharpoons|DoubleUpDownArrow|DoubleVerticalBar|LeftTriangleEqual|FilledSmallSquare|twoheadrightarrow|NotNestedLessLess|DownLeftTeeVector|DownLeftVectorBar|RightAngleBracket|NotTildeFullEqual|NotReverseElement|RightUpDownVector|DiacriticalTilde|NotSucceedsTilde|circlearrowright|NotPrecedesEqual|rightharpoondown|DoubleRightArrow|NotSucceedsEqual|NonBreakingSpace|NotRightTriangle|LessEqualGreater|RightUpTeeVector|LeftAngleBracket|GreaterFullEqual|DownArrowUpArrow|RightUpVectorBar|twoheadleftarrow|GreaterEqualLess|downharpoonright|RightTriangleBar|ntrianglerighteq|NotSupersetEqual|LeftUpDownVector|DiacriticalAcute|rightrightarrows|vartriangleright|UpArrowDownArrow|DiacriticalGrave|UnderParenthesis|EmptySmallSquare|LeftUpVectorBar|leftrightarrows|DownRightVector|downharpoonleft|trianglerighteq|ShortRightArrow|OverParenthesis|DoubleLeftArrow|DoubleDownArrow|NotSquareSubset|bigtriangledown|ntrianglelefteq|UpperRightArrow|curvearrowright|vartriangleleft|NotLeftTriangle|nleftrightarrow|LowerRightArrow|NotHumpDownHump|NotGreaterTilde|rightthreetimes|LeftUpTeeVector|NotGreaterEqual|straightepsilon|LeftTriangleBar|rightsquigarrow|ContourIntegral|rightleftarrows|CloseCurlyQuote|RightDownVector|LeftRightVector|nLeftrightarrow|leftharpoondown|circlearrowleft|SquareSuperset|OpenCurlyQuote|hookrightarrow|HorizontalLine|DiacriticalDot|NotLessGreater|ntriangleright|DoubleRightTee|InvisibleComma|InvisibleTimes|LowerLeftArrow|DownLeftVector|NotSubsetEqual|curvearrowleft|trianglelefteq|NotVerticalBar|TildeFullEqual|downdownarrows|NotGreaterLess|RightTeeVector|ZeroWidthSpace|looparrowright|LongRightArrow|doublebarwedge|ShortLeftArrow|ShortDownArrow|RightVectorBar|GreaterGreater|ReverseElement|rightharpoonup|LessSlantEqual|leftthreetimes|upharpoonright|rightarrowtail|LeftDownVector|Longrightarrow|NestedLessLess|UpperLeftArrow|nshortparallel|leftleftarrows|leftrightarrow|Leftrightarrow|LeftRightArrow|longrightarrow|upharpoonleft|RightArrowBar|ApplyFunction|LeftTeeVector|leftarrowtail|NotEqualTilde|varsubsetneqq|varsupsetneqq|RightTeeArrow|SucceedsEqual|SucceedsTilde|LeftVectorBar|SupersetEqual|hookleftarrow|DifferentialD|VerticalTilde|VeryThinSpace|blacktriangle|bigtriangleup|LessFullEqual|divideontimes|leftharpoonup|UpEquilibrium|ntriangleleft|RightTriangle|measuredangle|shortparallel|longleftarrow|Longleftarrow|LongLeftArrow|DoubleLeftTee|Poincareplane|PrecedesEqual|triangleright|DoubleUpArrow|RightUpVector|fallingdotseq|looparrowleft|PrecedesTilde|NotTildeEqual|NotTildeTilde|smallsetminus|Proportional|triangleleft|triangledown|UnderBracket|NotHumpEqual|exponentiale|ExponentialE|NotLessTilde|HilbertSpace|RightCeiling|blacklozenge|varsupsetneq|HumpDownHump|GreaterEqual|VerticalLine|LeftTeeArrow|NotLessEqual|DownTeeArrow|LeftTriangle|varsubsetneq|Intersection|NotCongruent|DownArrowBar|LeftUpVector|LeftArrowBar|risingdotseq|GreaterTilde|RoundImplies|SquareSubset|ShortUpArrow|NotSuperset|quaternions|precnapprox|backepsilon|preccurlyeq|OverBracket|blacksquare|MediumSpace|VerticalBar|circledcirc|circleddash|CircleMinus|CircleTimes|LessGreater|curlyeqprec|curlyeqsucc|diamondsuit|UpDownArrow|Updownarrow|RuleDelayed|Rrightarrow|updownarrow|RightVector|nRightarrow|nrightarrow|eqslantless|LeftCeiling|Equilibrium|SmallCircle|expectation|NotSucceeds|thickapprox|GreaterLess|SquareUnion|NotPrecedes|NotLessLess|straightphi|succnapprox|succcurlyeq|SubsetEqual|sqsupseteq|Proportion|Laplacetrf|ImaginaryI|supsetneqq|NotGreater|gtreqqless|NotElement|ThickSpace|TildeEqual|TildeTilde|Fouriertrf|rmoustache|EqualTilde|eqslantgtr|UnderBrace|LeftVector|UpArrowBar|nLeftarrow|nsubseteqq|subsetneqq|nsupseteqq|nleftarrow|succapprox|lessapprox|UpTeeArrow|upuparrows|curlywedge|lesseqqgtr|varepsilon|varnothing|RightFloor|complement|CirclePlus|sqsubseteq|Lleftarrow|circledast|RightArrow|Rightarrow|rightarrow|lmoustache|Bernoullis|precapprox|mapstoleft|mapstodown|longmapsto|dotsquare|downarrow|DoubleDot|nsubseteq|supsetneq|leftarrow|nsupseteq|subsetneq|ThinSpace|ngeqslant|subseteqq|HumpEqual|NotSubset|triangleq|NotCupCap|lesseqgtr|heartsuit|TripleDot|Leftarrow|Coproduct|Congruent|varpropto|complexes|gvertneqq|LeftArrow|LessTilde|supseteqq|MinusPlus|CircleDot|nleqslant|NotExists|gtreqless|nparallel|UnionPlus|LeftFloor|checkmark|CenterDot|centerdot|Mellintrf|gtrapprox|bigotimes|OverBrace|spadesuit|therefore|pitchfork|rationals|PlusMinus|Backslash|Therefore|DownBreve|backsimeq|backprime|DownArrow|nshortmid|Downarrow|lvertneqq|eqvparsl|imagline|imagpart|infintie|integers|Integral|intercal|LessLess|Uarrocir|intlarhk|sqsupset|angmsdaf|sqsubset|llcorner|vartheta|cupbrcap|lnapprox|Superset|SuchThat|succnsim|succneqq|angmsdag|biguplus|curlyvee|trpezium|Succeeds|NotTilde|bigwedge|angmsdah|angrtvbd|triminus|cwconint|fpartint|lrcorner|smeparsl|subseteq|urcorner|lurdshar|laemptyv|DDotrahd|approxeq|ldrushar|awconint|mapstoup|backcong|shortmid|triangle|geqslant|gesdotol|timesbar|circledR|circledS|setminus|multimap|naturals|scpolint|ncongdot|RightTee|boxminus|gnapprox|boxtimes|andslope|thicksim|angmsdaa|varsigma|cirfnint|rtriltri|angmsdab|rppolint|angmsdac|barwedge|drbkarow|clubsuit|thetasym|bsolhsub|capbrcup|dzigrarr|doteqdot|DotEqual|dotminus|UnderBar|NotEqual|realpart|otimesas|ulcorner|hksearow|hkswarow|parallel|PartialD|elinters|emptyset|plusacir|bbrktbrk|angmsdad|pointint|bigoplus|angmsdae|Precedes|bigsqcup|varkappa|notindot|supseteq|precneqq|precnsim|profalar|profline|profsurf|leqslant|lesdotor|raemptyv|subplus|notnivb|notnivc|subrarr|zigrarr|vzigzag|submult|subedot|Element|between|cirscir|larrbfs|larrsim|lotimes|lbrksld|lbrkslu|lozenge|ldrdhar|dbkarow|bigcirc|epsilon|simrarr|simplus|ltquest|Epsilon|luruhar|gtquest|maltese|npolint|eqcolon|npreceq|bigodot|ddagger|gtrless|bnequiv|harrcir|ddotseq|equivDD|backsim|demptyv|nsqsube|nsqsupe|Upsilon|nsubset|upsilon|minusdu|nsucceq|swarrow|nsupset|coloneq|searrow|boxplus|napprox|natural|asympeq|alefsym|congdot|nearrow|bigstar|diamond|supplus|tritime|LeftTee|nvinfin|triplus|NewLine|nvltrie|nvrtrie|nwarrow|nexists|Diamond|ruluhar|Implies|supmult|angzarr|suplarr|suphsub|questeq|because|digamma|Because|olcross|bemptyv|omicron|Omicron|rotimes|NoBreak|intprod|angrtvb|orderof|uwangle|suphsol|lesdoto|orslope|DownTee|realine|cudarrl|rdldhar|OverBar|supedot|lessdot|supdsub|topfork|succsim|rbrkslu|rbrksld|pertenk|cudarrr|isindot|planckh|lessgtr|pluscir|gesdoto|plussim|plustwo|lesssim|cularrp|rarrsim|Cayleys|notinva|notinvb|notinvc|UpArrow|Uparrow|uparrow|NotLess|dwangle|precsim|Product|curarrm|Cconint|dotplus|rarrbfs|ccupssm|Cedilla|cemptyv|notniva|quatint|frac35|frac38|frac45|frac56|frac58|frac78|tridot|xoplus|gacute|gammad|Gammad|lfisht|lfloor|bigcup|sqsupe|gbreve|Gbreve|lharul|sqsube|sqcups|Gcedil|apacir|llhard|lmidot|Lmidot|lmoust|andand|sqcaps|approx|Abreve|spades|circeq|tprime|divide|topcir|Assign|topbot|gesdot|divonx|xuplus|timesd|gesles|atilde|solbar|SOFTcy|loplus|timesb|lowast|lowbar|dlcorn|dlcrop|softcy|dollar|lparlt|thksim|lrhard|Atilde|lsaquo|smashp|bigvee|thinsp|wreath|bkarow|lsquor|lstrok|Lstrok|lthree|ltimes|ltlarr|DotDot|simdot|ltrPar|weierp|xsqcup|angmsd|sigmav|sigmaf|zeetrf|Zcaron|zcaron|mapsto|vsupne|thetav|cirmid|marker|mcomma|Zacute|vsubnE|there4|gtlPar|vsubne|bottom|gtrarr|SHCHcy|shchcy|midast|midcir|middot|minusb|minusd|gtrdot|bowtie|sfrown|mnplus|models|colone|seswar|Colone|mstpos|searhk|gtrsim|nacute|Nacute|boxbox|telrec|hairsp|Tcedil|nbumpe|scnsim|ncaron|Ncaron|ncedil|Ncedil|hamilt|Scedil|nearhk|hardcy|HARDcy|tcedil|Tcaron|commat|nequiv|nesear|tcaron|target|hearts|nexist|varrho|scedil|Scaron|scaron|hellip|Sacute|sacute|hercon|swnwar|compfn|rtimes|rthree|rsquor|rsaquo|zacute|wedgeq|homtht|barvee|barwed|Barwed|rpargt|horbar|conint|swarhk|roplus|nltrie|hslash|hstrok|Hstrok|rmoust|Conint|bprime|hybull|hyphen|iacute|Iacute|supsup|supsub|supsim|varphi|coprod|brvbar|agrave|Supset|supset|igrave|Igrave|notinE|Agrave|iiiint|iinfin|copysr|wedbar|Verbar|vangrt|becaus|incare|verbar|inodot|bullet|drcorn|intcal|drcrop|cularr|vellip|Utilde|bumpeq|cupcap|dstrok|Dstrok|CupCap|cupcup|cupdot|eacute|Eacute|supdot|iquest|easter|ecaron|Ecaron|ecolon|isinsv|utilde|itilde|Itilde|curarr|succeq|Bumpeq|cacute|ulcrop|nparsl|Cacute|nprcue|egrave|Egrave|nrarrc|nrarrw|subsup|subsub|nrtrie|jsercy|nsccue|Jsercy|kappav|kcedil|Kcedil|subsim|ulcorn|nsimeq|egsdot|veebar|kgreen|capand|elsdot|Subset|subset|curren|aacute|lacute|Lacute|emptyv|ntilde|Ntilde|lagran|lambda|Lambda|capcap|Ugrave|langle|subdot|emsp13|numero|emsp14|nvdash|nvDash|nVdash|nVDash|ugrave|ufisht|nvHarr|larrfs|nvlArr|larrhk|larrlp|larrpl|nvrArr|Udblac|nwarhk|larrtl|nwnear|oacute|Oacute|latail|lAtail|sstarf|lbrace|odblac|Odblac|lbrack|udblac|odsold|eparsl|lcaron|Lcaron|ograve|Ograve|lcedil|Lcedil|Aacute|ssmile|ssetmn|squarf|ldquor|capcup|ominus|cylcty|rharul|eqcirc|dagger|rfloor|rfisht|Dagger|daleth|equals|origof|capdot|equest|dcaron|Dcaron|rdquor|oslash|Oslash|otilde|Otilde|otimes|Otimes|urcrop|Ubreve|ubreve|Yacute|Uacute|uacute|Rcedil|rcedil|urcorn|parsim|Rcaron|Vdashl|rcaron|Tstrok|percnt|period|permil|Exists|yacute|rbrack|rbrace|phmmat|ccaron|Ccaron|planck|ccedil|plankv|tstrok|female|plusdo|plusdu|ffilig|plusmn|ffllig|Ccedil|rAtail|dfisht|bernou|ratail|Rarrtl|rarrtl|angsph|rarrpl|rarrlp|rarrhk|xwedge|xotime|forall|ForAll|Vvdash|vsupnE|preceq|bigcap|frac12|frac13|frac14|primes|rarrfs|prnsim|frac15|Square|frac16|square|lesdot|frac18|frac23|propto|prurel|rarrap|rangle|puncsp|frac25|Racute|qprime|racute|lesges|frac34|abreve|AElig|eqsim|utdot|setmn|urtri|Equal|Uring|seArr|uring|searr|dashv|Dashv|mumap|nabla|iogon|Iogon|sdote|sdotb|scsim|napid|napos|equiv|natur|Acirc|dblac|erarr|nbump|iprod|erDot|ucirc|awint|esdot|angrt|ncong|isinE|scnap|Scirc|scirc|ndash|isins|Ubrcy|nearr|neArr|isinv|nedot|ubrcy|acute|Ycirc|iukcy|Iukcy|xutri|nesim|caret|jcirc|Jcirc|caron|twixt|ddarr|sccue|exist|jmath|sbquo|ngeqq|angst|ccaps|lceil|ngsim|UpTee|delta|Delta|rtrif|nharr|nhArr|nhpar|rtrie|jukcy|Jukcy|kappa|rsquo|Kappa|nlarr|nlArr|TSHcy|rrarr|aogon|Aogon|fflig|xrarr|tshcy|ccirc|nleqq|filig|upsih|nless|dharl|nlsim|fjlig|ropar|nltri|dharr|robrk|roarr|fllig|fltns|roang|rnmid|subnE|subne|lAarr|trisb|Ccirc|acirc|ccups|blank|VDash|forkv|Vdash|langd|cedil|blk12|blk14|laquo|strns|diams|notin|vDash|larrb|blk34|block|disin|uplus|vdash|vBarv|aelig|starf|Wedge|check|xrArr|lates|lbarr|lBarr|notni|lbbrk|bcong|frasl|lbrke|frown|vrtri|vprop|vnsup|gamma|Gamma|wedge|xodot|bdquo|srarr|doteq|ldquo|boxdl|boxdL|gcirc|Gcirc|boxDl|boxDL|boxdr|boxdR|boxDr|TRADE|trade|rlhar|boxDR|vnsub|npart|vltri|rlarr|boxhd|boxhD|nprec|gescc|nrarr|nrArr|boxHd|boxHD|boxhu|boxhU|nrtri|boxHu|clubs|boxHU|times|colon|Colon|gimel|xlArr|Tilde|nsime|tilde|nsmid|nspar|THORN|thorn|xlarr|nsube|nsubE|thkap|xhArr|comma|nsucc|boxul|boxuL|nsupe|nsupE|gneqq|gnsim|boxUl|boxUL|grave|boxur|boxuR|boxUr|boxUR|lescc|angle|bepsi|boxvh|varpi|boxvH|numsp|Theta|gsime|gsiml|theta|boxVh|boxVH|boxvl|gtcir|gtdot|boxvL|boxVl|boxVL|crarr|cross|Cross|nvsim|boxvr|nwarr|nwArr|sqsup|dtdot|Uogon|lhard|lharu|dtrif|ocirc|Ocirc|lhblk|duarr|odash|sqsub|Hacek|sqcup|llarr|duhar|oelig|OElig|ofcir|boxvR|uogon|lltri|boxVr|csube|uuarr|ohbar|csupe|ctdot|olarr|olcir|harrw|oline|sqcap|omacr|Omacr|omega|Omega|boxVR|aleph|lneqq|lnsim|loang|loarr|rharu|lobrk|hcirc|operp|oplus|rhard|Hcirc|orarr|Union|order|ecirc|Ecirc|cuepr|szlig|cuesc|breve|reals|eDDot|Breve|hoarr|lopar|utrif|rdquo|Umacr|umacr|efDot|swArr|ultri|alpha|rceil|ovbar|swarr|Wcirc|wcirc|smtes|smile|bsemi|lrarr|aring|parsl|lrhar|bsime|uhblk|lrtri|cupor|Aring|uharr|uharl|slarr|rbrke|bsolb|lsime|rbbrk|RBarr|lsimg|phone|rBarr|rbarr|icirc|lsquo|Icirc|emacr|Emacr|ratio|simne|plusb|simlE|simgE|simeq|pluse|ltcir|ltdot|empty|xharr|xdtri|iexcl|Alpha|ltrie|rarrw|pound|ltrif|xcirc|bumpe|prcue|bumpE|asymp|amacr|cuvee|Sigma|sigma|iiint|udhar|iiota|ijlig|IJlig|supnE|imacr|Imacr|prime|Prime|image|prnap|eogon|Eogon|rarrc|mdash|mDDot|cuwed|imath|supne|imped|Amacr|udarr|prsim|micro|rarrb|cwint|raquo|infin|eplus|range|rangd|Ucirc|radic|minus|amalg|veeeq|rAarr|epsiv|ycirc|quest|sharp|quot|zwnj|Qscr|race|qscr|Qopf|qopf|qint|rang|Rang|Zscr|zscr|Zopf|zopf|rarr|rArr|Rarr|Pscr|pscr|prop|prod|prnE|prec|ZHcy|zhcy|prap|Zeta|zeta|Popf|popf|Zdot|plus|zdot|Yuml|yuml|phiv|YUcy|yucy|Yscr|yscr|perp|Yopf|yopf|part|para|YIcy|Ouml|rcub|yicy|YAcy|rdca|ouml|osol|Oscr|rdsh|yacy|real|oscr|xvee|andd|rect|andv|Xscr|oror|ordm|ordf|xscr|ange|aopf|Aopf|rHar|Xopf|opar|Oopf|xopf|xnis|rhov|oopf|omid|xmap|oint|apid|apos|ogon|ascr|Ascr|odot|odiv|xcup|xcap|ocir|oast|nvlt|nvle|nvgt|nvge|nvap|Wscr|wscr|auml|ntlg|ntgl|nsup|nsub|nsim|Nscr|nscr|nsce|Wopf|ring|npre|wopf|npar|Auml|Barv|bbrk|Nopf|nopf|nmid|nLtv|beta|ropf|Ropf|Beta|beth|nles|rpar|nleq|bnot|bNot|nldr|NJcy|rscr|Rscr|Vscr|vscr|rsqb|njcy|bopf|nisd|Bopf|rtri|Vopf|nGtv|ngtr|vopf|boxh|boxH|boxv|nges|ngeq|boxV|bscr|scap|Bscr|bsim|Vert|vert|bsol|bull|bump|caps|cdot|ncup|scnE|ncap|nbsp|napE|Cdot|cent|sdot|Vbar|nang|vBar|chcy|Mscr|mscr|sect|semi|CHcy|Mopf|mopf|sext|circ|cire|mldr|mlcp|cirE|comp|shcy|SHcy|vArr|varr|cong|copf|Copf|copy|COPY|malt|male|macr|lvnE|cscr|ltri|sime|ltcc|simg|Cscr|siml|csub|Uuml|lsqb|lsim|uuml|csup|Lscr|lscr|utri|smid|lpar|cups|smte|lozf|darr|Lopf|Uscr|solb|lopf|sopf|Sopf|lneq|uscr|spar|dArr|lnap|Darr|dash|Sqrt|LJcy|ljcy|lHar|dHar|Upsi|upsi|diam|lesg|djcy|DJcy|leqq|dopf|Dopf|dscr|Dscr|dscy|ldsh|ldca|squf|DScy|sscr|Sscr|dsol|lcub|late|star|Star|Uopf|Larr|lArr|larr|uopf|dtri|dzcy|sube|subE|Lang|lang|Kscr|kscr|Kopf|kopf|KJcy|kjcy|KHcy|khcy|DZcy|ecir|edot|eDot|Jscr|jscr|succ|Jopf|jopf|Edot|uHar|emsp|ensp|Iuml|iuml|eopf|isin|Iscr|iscr|Eopf|epar|sung|epsi|escr|sup1|sup2|sup3|Iota|iota|supe|supE|Iopf|iopf|IOcy|iocy|Escr|esim|Esim|imof|Uarr|QUOT|uArr|uarr|euml|IEcy|iecy|Idot|Euml|euro|excl|Hscr|hscr|Hopf|hopf|TScy|tscy|Tscr|hbar|tscr|flat|tbrk|fnof|hArr|harr|half|fopf|Fopf|tdot|gvnE|fork|trie|gtcc|fscr|Fscr|gdot|gsim|Gscr|gscr|Gopf|gopf|gneq|Gdot|tosa|gnap|Topf|topf|geqq|toea|GJcy|gjcy|tint|gesl|mid|Sfr|ggg|top|ges|gla|glE|glj|geq|gne|gEl|gel|gnE|Gcy|gcy|gap|Tfr|tfr|Tcy|tcy|Hat|Tau|Ffr|tau|Tab|hfr|Hfr|ffr|Fcy|fcy|icy|Icy|iff|ETH|eth|ifr|Ifr|Eta|eta|int|Int|Sup|sup|ucy|Ucy|Sum|sum|jcy|ENG|ufr|Ufr|eng|Jcy|jfr|els|ell|egs|Efr|efr|Jfr|uml|kcy|Kcy|Ecy|ecy|kfr|Kfr|lap|Sub|sub|lat|lcy|Lcy|leg|Dot|dot|lEg|leq|les|squ|div|die|lfr|Lfr|lgE|Dfr|dfr|Del|deg|Dcy|dcy|lne|lnE|sol|loz|smt|Cup|lrm|cup|lsh|Lsh|sim|shy|map|Map|mcy|Mcy|mfr|Mfr|mho|gfr|Gfr|sfr|cir|Chi|chi|nap|Cfr|vcy|Vcy|cfr|Scy|scy|ncy|Ncy|vee|Vee|Cap|cap|nfr|scE|sce|Nfr|nge|ngE|nGg|vfr|Vfr|ngt|bot|nGt|nis|niv|Rsh|rsh|nle|nlE|bne|Bfr|bfr|nLl|nlt|nLt|Bcy|bcy|not|Not|rlm|wfr|Wfr|npr|nsc|num|ocy|ast|Ocy|ofr|xfr|Xfr|Ofr|ogt|ohm|apE|olt|Rho|ape|rho|Rfr|rfr|ord|REG|ang|reg|orv|And|and|AMP|Rcy|amp|Afr|ycy|Ycy|yen|yfr|Yfr|rcy|par|pcy|Pcy|pfr|Pfr|phi|Phi|afr|Acy|acy|zcy|Zcy|piv|acE|acd|zfr|Zfr|pre|prE|psi|Psi|qfr|Qfr|zwj|Or|ge|Gg|gt|gg|el|oS|lt|Lt|LT|Re|lg|gl|eg|ne|Im|it|le|DD|wp|wr|nu|Nu|dd|lE|Sc|sc|pi|Pi|ee|af|ll|Ll|rx|gE|xi|pm|Xi|ic|pr|Pr|in|ni|mp|mu|ac|Mu|or|ap|Gt|GT|ii);|&(Aacute|Agrave|Atilde|Ccedil|Eacute|Egrave|Iacute|Igrave|Ntilde|Oacute|Ograve|Oslash|Otilde|Uacute|Ugrave|Yacute|aacute|agrave|atilde|brvbar|ccedil|curren|divide|eacute|egrave|frac12|frac14|frac34|iacute|igrave|iquest|middot|ntilde|oacute|ograve|oslash|otilde|plusmn|uacute|ugrave|yacute|AElig|Acirc|Aring|Ecirc|Icirc|Ocirc|THORN|Ucirc|acirc|acute|aelig|aring|cedil|ecirc|icirc|iexcl|laquo|micro|ocirc|pound|raquo|szlig|thorn|times|ucirc|Auml|COPY|Euml|Iuml|Ouml|QUOT|Uuml|auml|cent|copy|euml|iuml|macr|nbsp|ordf|ordm|ouml|para|quot|sect|sup1|sup2|sup3|uuml|yuml|AMP|ETH|REG|amp|deg|eth|not|reg|shy|uml|yen|GT|LT|gt|lt)(?!;)([=a-zA-Z0-9]?)|&#([0-9]+)(;?)|&#[xX]([a-fA-F0-9]+)(;?)|&([0-9a-zA-Z]+)/g,h={aacute:\"á\",Aacute:\"Á\",abreve:\"ă\",Abreve:\"Ă\",ac:\"∾\",acd:\"∿\",acE:\"∾̳\",acirc:\"â\",Acirc:\"Â\",acute:\"´\",acy:\"а\",Acy:\"А\",aelig:\"æ\",AElig:\"Æ\",af:\"⁡\",afr:\"𝔞\",Afr:\"𝔄\",agrave:\"à\",Agrave:\"À\",alefsym:\"ℵ\",aleph:\"ℵ\",alpha:\"α\",Alpha:\"Α\",amacr:\"ā\",Amacr:\"Ā\",amalg:\"⨿\",amp:\"&\",AMP:\"&\",and:\"∧\",And:\"⩓\",andand:\"⩕\",andd:\"⩜\",andslope:\"⩘\",andv:\"⩚\",ang:\"∠\",ange:\"⦤\",angle:\"∠\",angmsd:\"∡\",angmsdaa:\"⦨\",angmsdab:\"⦩\",angmsdac:\"⦪\",angmsdad:\"⦫\",angmsdae:\"⦬\",angmsdaf:\"⦭\",angmsdag:\"⦮\",angmsdah:\"⦯\",angrt:\"∟\",angrtvb:\"⊾\",angrtvbd:\"⦝\",angsph:\"∢\",angst:\"Å\",angzarr:\"⍼\",aogon:\"ą\",Aogon:\"Ą\",aopf:\"𝕒\",Aopf:\"𝔸\",ap:\"≈\",apacir:\"⩯\",ape:\"≊\",apE:\"⩰\",apid:\"≋\",apos:\"'\",ApplyFunction:\"⁡\",approx:\"≈\",approxeq:\"≊\",aring:\"å\",Aring:\"Å\",ascr:\"𝒶\",Ascr:\"𝒜\",Assign:\"≔\",ast:\"*\",asymp:\"≈\",asympeq:\"≍\",atilde:\"ã\",Atilde:\"Ã\",auml:\"ä\",Auml:\"Ä\",awconint:\"∳\",awint:\"⨑\",backcong:\"≌\",backepsilon:\"϶\",backprime:\"‵\",backsim:\"∽\",backsimeq:\"⋍\",Backslash:\"∖\",Barv:\"⫧\",barvee:\"⊽\",barwed:\"⌅\",Barwed:\"⌆\",barwedge:\"⌅\",bbrk:\"⎵\",bbrktbrk:\"⎶\",bcong:\"≌\",bcy:\"б\",Bcy:\"Б\",bdquo:\"„\",becaus:\"∵\",because:\"∵\",Because:\"∵\",bemptyv:\"⦰\",bepsi:\"϶\",bernou:\"ℬ\",Bernoullis:\"ℬ\",beta:\"β\",Beta:\"Β\",beth:\"ℶ\",between:\"≬\",bfr:\"𝔟\",Bfr:\"𝔅\",bigcap:\"⋂\",bigcirc:\"◯\",bigcup:\"⋃\",bigodot:\"⨀\",bigoplus:\"⨁\",bigotimes:\"⨂\",bigsqcup:\"⨆\",bigstar:\"★\",bigtriangledown:\"▽\",bigtriangleup:\"△\",biguplus:\"⨄\",bigvee:\"⋁\",bigwedge:\"⋀\",bkarow:\"⤍\",blacklozenge:\"⧫\",blacksquare:\"▪\",blacktriangle:\"▴\",blacktriangledown:\"▾\",blacktriangleleft:\"◂\",blacktriangleright:\"▸\",blank:\"␣\",blk12:\"▒\",blk14:\"░\",blk34:\"▓\",block:\"█\",bne:\"=⃥\",bnequiv:\"≡⃥\",bnot:\"⌐\",bNot:\"⫭\",bopf:\"𝕓\",Bopf:\"𝔹\",bot:\"⊥\",bottom:\"⊥\",bowtie:\"⋈\",boxbox:\"⧉\",boxdl:\"┐\",boxdL:\"╕\",boxDl:\"╖\",boxDL:\"╗\",boxdr:\"┌\",boxdR:\"╒\",boxDr:\"╓\",boxDR:\"╔\",boxh:\"─\",boxH:\"═\",boxhd:\"┬\",boxhD:\"╥\",boxHd:\"╤\",boxHD:\"╦\",boxhu:\"┴\",boxhU:\"╨\",boxHu:\"╧\",boxHU:\"╩\",boxminus:\"⊟\",boxplus:\"⊞\",boxtimes:\"⊠\",boxul:\"┘\",boxuL:\"╛\",boxUl:\"╜\",boxUL:\"╝\",boxur:\"└\",boxuR:\"╘\",boxUr:\"╙\",boxUR:\"╚\",boxv:\"│\",boxV:\"║\",boxvh:\"┼\",boxvH:\"╪\",boxVh:\"╫\",boxVH:\"╬\",boxvl:\"┤\",boxvL:\"╡\",boxVl:\"╢\",boxVL:\"╣\",boxvr:\"├\",boxvR:\"╞\",boxVr:\"╟\",boxVR:\"╠\",bprime:\"‵\",breve:\"˘\",Breve:\"˘\",brvbar:\"¦\",bscr:\"𝒷\",Bscr:\"ℬ\",bsemi:\"⁏\",bsim:\"∽\",bsime:\"⋍\",bsol:\"\\\\\",bsolb:\"⧅\",bsolhsub:\"⟈\",bull:\"•\",bullet:\"•\",bump:\"≎\",bumpe:\"≏\",bumpE:\"⪮\",bumpeq:\"≏\",Bumpeq:\"≎\",cacute:\"ć\",Cacute:\"Ć\",cap:\"∩\",Cap:\"⋒\",capand:\"⩄\",capbrcup:\"⩉\",capcap:\"⩋\",capcup:\"⩇\",capdot:\"⩀\",CapitalDifferentialD:\"ⅅ\",caps:\"∩︀\",caret:\"⁁\",caron:\"ˇ\",Cayleys:\"ℭ\",ccaps:\"⩍\",ccaron:\"č\",Ccaron:\"Č\",ccedil:\"ç\",Ccedil:\"Ç\",ccirc:\"ĉ\",Ccirc:\"Ĉ\",Cconint:\"∰\",ccups:\"⩌\",ccupssm:\"⩐\",cdot:\"ċ\",Cdot:\"Ċ\",cedil:\"¸\",Cedilla:\"¸\",cemptyv:\"⦲\",cent:\"¢\",centerdot:\"·\",CenterDot:\"·\",cfr:\"𝔠\",Cfr:\"ℭ\",chcy:\"ч\",CHcy:\"Ч\",check:\"✓\",checkmark:\"✓\",chi:\"χ\",Chi:\"Χ\",cir:\"○\",circ:\"ˆ\",circeq:\"≗\",circlearrowleft:\"↺\",circlearrowright:\"↻\",circledast:\"⊛\",circledcirc:\"⊚\",circleddash:\"⊝\",CircleDot:\"⊙\",circledR:\"®\",circledS:\"Ⓢ\",CircleMinus:\"⊖\",CirclePlus:\"⊕\",CircleTimes:\"⊗\",cire:\"≗\",cirE:\"⧃\",cirfnint:\"⨐\",cirmid:\"⫯\",cirscir:\"⧂\",ClockwiseContourIntegral:\"∲\",CloseCurlyDoubleQuote:\"”\",CloseCurlyQuote:\"’\",clubs:\"♣\",clubsuit:\"♣\",colon:\":\",Colon:\"∷\",colone:\"≔\",Colone:\"⩴\",coloneq:\"≔\",comma:\",\",commat:\"@\",comp:\"∁\",compfn:\"∘\",complement:\"∁\",complexes:\"ℂ\",cong:\"≅\",congdot:\"⩭\",Congruent:\"≡\",conint:\"∮\",Conint:\"∯\",ContourIntegral:\"∮\",copf:\"𝕔\",Copf:\"ℂ\",coprod:\"∐\",Coproduct:\"∐\",copy:\"©\",COPY:\"©\",copysr:\"℗\",CounterClockwiseContourIntegral:\"∳\",crarr:\"↵\",cross:\"✗\",Cross:\"⨯\",cscr:\"𝒸\",Cscr:\"𝒞\",csub:\"⫏\",csube:\"⫑\",csup:\"⫐\",csupe:\"⫒\",ctdot:\"⋯\",cudarrl:\"⤸\",cudarrr:\"⤵\",cuepr:\"⋞\",cuesc:\"⋟\",cularr:\"↶\",cularrp:\"⤽\",cup:\"∪\",Cup:\"⋓\",cupbrcap:\"⩈\",cupcap:\"⩆\",CupCap:\"≍\",cupcup:\"⩊\",cupdot:\"⊍\",cupor:\"⩅\",cups:\"∪︀\",curarr:\"↷\",curarrm:\"⤼\",curlyeqprec:\"⋞\",curlyeqsucc:\"⋟\",curlyvee:\"⋎\",curlywedge:\"⋏\",curren:\"¤\",curvearrowleft:\"↶\",curvearrowright:\"↷\",cuvee:\"⋎\",cuwed:\"⋏\",cwconint:\"∲\",cwint:\"∱\",cylcty:\"⌭\",dagger:\"†\",Dagger:\"‡\",daleth:\"ℸ\",darr:\"↓\",dArr:\"⇓\",Darr:\"↡\",dash:\"‐\",dashv:\"⊣\",Dashv:\"⫤\",dbkarow:\"⤏\",dblac:\"˝\",dcaron:\"ď\",Dcaron:\"Ď\",dcy:\"д\",Dcy:\"Д\",dd:\"ⅆ\",DD:\"ⅅ\",ddagger:\"‡\",ddarr:\"⇊\",DDotrahd:\"⤑\",ddotseq:\"⩷\",deg:\"°\",Del:\"∇\",delta:\"δ\",Delta:\"Δ\",demptyv:\"⦱\",dfisht:\"⥿\",dfr:\"𝔡\",Dfr:\"𝔇\",dHar:\"⥥\",dharl:\"⇃\",dharr:\"⇂\",DiacriticalAcute:\"´\",DiacriticalDot:\"˙\",DiacriticalDoubleAcute:\"˝\",DiacriticalGrave:\"`\",DiacriticalTilde:\"˜\",diam:\"⋄\",diamond:\"⋄\",Diamond:\"⋄\",diamondsuit:\"♦\",diams:\"♦\",die:\"¨\",DifferentialD:\"ⅆ\",digamma:\"ϝ\",disin:\"⋲\",div:\"÷\",divide:\"÷\",divideontimes:\"⋇\",divonx:\"⋇\",djcy:\"ђ\",DJcy:\"Ђ\",dlcorn:\"⌞\",dlcrop:\"⌍\",dollar:\"$\",dopf:\"𝕕\",Dopf:\"𝔻\",dot:\"˙\",Dot:\"¨\",DotDot:\"⃜\",doteq:\"≐\",doteqdot:\"≑\",DotEqual:\"≐\",dotminus:\"∸\",dotplus:\"∔\",dotsquare:\"⊡\",doublebarwedge:\"⌆\",DoubleContourIntegral:\"∯\",DoubleDot:\"¨\",DoubleDownArrow:\"⇓\",DoubleLeftArrow:\"⇐\",DoubleLeftRightArrow:\"⇔\",DoubleLeftTee:\"⫤\",DoubleLongLeftArrow:\"⟸\",DoubleLongLeftRightArrow:\"⟺\",DoubleLongRightArrow:\"⟹\",DoubleRightArrow:\"⇒\",DoubleRightTee:\"⊨\",DoubleUpArrow:\"⇑\",DoubleUpDownArrow:\"⇕\",DoubleVerticalBar:\"∥\",downarrow:\"↓\",Downarrow:\"⇓\",DownArrow:\"↓\",DownArrowBar:\"⤓\",DownArrowUpArrow:\"⇵\",DownBreve:\"̑\",downdownarrows:\"⇊\",downharpoonleft:\"⇃\",downharpoonright:\"⇂\",DownLeftRightVector:\"⥐\",DownLeftTeeVector:\"⥞\",DownLeftVector:\"↽\",DownLeftVectorBar:\"⥖\",DownRightTeeVector:\"⥟\",DownRightVector:\"⇁\",DownRightVectorBar:\"⥗\",DownTee:\"⊤\",DownTeeArrow:\"↧\",drbkarow:\"⤐\",drcorn:\"⌟\",drcrop:\"⌌\",dscr:\"𝒹\",Dscr:\"𝒟\",dscy:\"ѕ\",DScy:\"Ѕ\",dsol:\"⧶\",dstrok:\"đ\",Dstrok:\"Đ\",dtdot:\"⋱\",dtri:\"▿\",dtrif:\"▾\",duarr:\"⇵\",duhar:\"⥯\",dwangle:\"⦦\",dzcy:\"џ\",DZcy:\"Џ\",dzigrarr:\"⟿\",eacute:\"é\",Eacute:\"É\",easter:\"⩮\",ecaron:\"ě\",Ecaron:\"Ě\",ecir:\"≖\",ecirc:\"ê\",Ecirc:\"Ê\",ecolon:\"≕\",ecy:\"э\",Ecy:\"Э\",eDDot:\"⩷\",edot:\"ė\",eDot:\"≑\",Edot:\"Ė\",ee:\"ⅇ\",efDot:\"≒\",efr:\"𝔢\",Efr:\"𝔈\",eg:\"⪚\",egrave:\"è\",Egrave:\"È\",egs:\"⪖\",egsdot:\"⪘\",el:\"⪙\",Element:\"∈\",elinters:\"⏧\",ell:\"ℓ\",els:\"⪕\",elsdot:\"⪗\",emacr:\"ē\",Emacr:\"Ē\",empty:\"∅\",emptyset:\"∅\",EmptySmallSquare:\"◻\",emptyv:\"∅\",EmptyVerySmallSquare:\"▫\",emsp:\" \",emsp13:\" \",emsp14:\" \",eng:\"ŋ\",ENG:\"Ŋ\",ensp:\" \",eogon:\"ę\",Eogon:\"Ę\",eopf:\"𝕖\",Eopf:\"𝔼\",epar:\"⋕\",eparsl:\"⧣\",eplus:\"⩱\",epsi:\"ε\",epsilon:\"ε\",Epsilon:\"Ε\",epsiv:\"ϵ\",eqcirc:\"≖\",eqcolon:\"≕\",eqsim:\"≂\",eqslantgtr:\"⪖\",eqslantless:\"⪕\",Equal:\"⩵\",equals:\"=\",EqualTilde:\"≂\",equest:\"≟\",Equilibrium:\"⇌\",equiv:\"≡\",equivDD:\"⩸\",eqvparsl:\"⧥\",erarr:\"⥱\",erDot:\"≓\",escr:\"ℯ\",Escr:\"ℰ\",esdot:\"≐\",esim:\"≂\",Esim:\"⩳\",eta:\"η\",Eta:\"Η\",eth:\"ð\",ETH:\"Ð\",euml:\"ë\",Euml:\"Ë\",euro:\"€\",excl:\"!\",exist:\"∃\",Exists:\"∃\",expectation:\"ℰ\",exponentiale:\"ⅇ\",ExponentialE:\"ⅇ\",fallingdotseq:\"≒\",fcy:\"ф\",Fcy:\"Ф\",female:\"♀\",ffilig:\"ffi\",fflig:\"ff\",ffllig:\"ffl\",ffr:\"𝔣\",Ffr:\"𝔉\",filig:\"fi\",FilledSmallSquare:\"◼\",FilledVerySmallSquare:\"▪\",fjlig:\"fj\",flat:\"♭\",fllig:\"fl\",fltns:\"▱\",fnof:\"ƒ\",fopf:\"𝕗\",Fopf:\"𝔽\",forall:\"∀\",ForAll:\"∀\",fork:\"⋔\",forkv:\"⫙\",Fouriertrf:\"ℱ\",fpartint:\"⨍\",frac12:\"½\",frac13:\"⅓\",frac14:\"¼\",frac15:\"⅕\",frac16:\"⅙\",frac18:\"⅛\",frac23:\"⅔\",frac25:\"⅖\",frac34:\"¾\",frac35:\"⅗\",frac38:\"⅜\",frac45:\"⅘\",frac56:\"⅚\",frac58:\"⅝\",frac78:\"⅞\",frasl:\"⁄\",frown:\"⌢\",fscr:\"𝒻\",Fscr:\"ℱ\",gacute:\"ǵ\",gamma:\"γ\",Gamma:\"Γ\",gammad:\"ϝ\",Gammad:\"Ϝ\",gap:\"⪆\",gbreve:\"ğ\",Gbreve:\"Ğ\",Gcedil:\"Ģ\",gcirc:\"ĝ\",Gcirc:\"Ĝ\",gcy:\"г\",Gcy:\"Г\",gdot:\"ġ\",Gdot:\"Ġ\",ge:\"≥\",gE:\"≧\",gel:\"⋛\",gEl:\"⪌\",geq:\"≥\",geqq:\"≧\",geqslant:\"⩾\",ges:\"⩾\",gescc:\"⪩\",gesdot:\"⪀\",gesdoto:\"⪂\",gesdotol:\"⪄\",gesl:\"⋛︀\",gesles:\"⪔\",gfr:\"𝔤\",Gfr:\"𝔊\",gg:\"≫\",Gg:\"⋙\",ggg:\"⋙\",gimel:\"ℷ\",gjcy:\"ѓ\",GJcy:\"Ѓ\",gl:\"≷\",gla:\"⪥\",glE:\"⪒\",glj:\"⪤\",gnap:\"⪊\",gnapprox:\"⪊\",gne:\"⪈\",gnE:\"≩\",gneq:\"⪈\",gneqq:\"≩\",gnsim:\"⋧\",gopf:\"𝕘\",Gopf:\"𝔾\",grave:\"`\",GreaterEqual:\"≥\",GreaterEqualLess:\"⋛\",GreaterFullEqual:\"≧\",GreaterGreater:\"⪢\",GreaterLess:\"≷\",GreaterSlantEqual:\"⩾\",GreaterTilde:\"≳\",gscr:\"ℊ\",Gscr:\"𝒢\",gsim:\"≳\",gsime:\"⪎\",gsiml:\"⪐\",gt:\">\",Gt:\"≫\",GT:\">\",gtcc:\"⪧\",gtcir:\"⩺\",gtdot:\"⋗\",gtlPar:\"⦕\",gtquest:\"⩼\",gtrapprox:\"⪆\",gtrarr:\"⥸\",gtrdot:\"⋗\",gtreqless:\"⋛\",gtreqqless:\"⪌\",gtrless:\"≷\",gtrsim:\"≳\",gvertneqq:\"≩︀\",gvnE:\"≩︀\",Hacek:\"ˇ\",hairsp:\" \",half:\"½\",hamilt:\"ℋ\",hardcy:\"ъ\",HARDcy:\"Ъ\",harr:\"↔\",hArr:\"⇔\",harrcir:\"⥈\",harrw:\"↭\",Hat:\"^\",hbar:\"ℏ\",hcirc:\"ĥ\",Hcirc:\"Ĥ\",hearts:\"♥\",heartsuit:\"♥\",hellip:\"…\",hercon:\"⊹\",hfr:\"𝔥\",Hfr:\"ℌ\",HilbertSpace:\"ℋ\",hksearow:\"⤥\",hkswarow:\"⤦\",hoarr:\"⇿\",homtht:\"∻\",hookleftarrow:\"↩\",hookrightarrow:\"↪\",hopf:\"𝕙\",Hopf:\"ℍ\",horbar:\"―\",HorizontalLine:\"─\",hscr:\"𝒽\",Hscr:\"ℋ\",hslash:\"ℏ\",hstrok:\"ħ\",Hstrok:\"Ħ\",HumpDownHump:\"≎\",HumpEqual:\"≏\",hybull:\"⁃\",hyphen:\"‐\",iacute:\"í\",Iacute:\"Í\",ic:\"⁣\",icirc:\"î\",Icirc:\"Î\",icy:\"и\",Icy:\"И\",Idot:\"İ\",iecy:\"е\",IEcy:\"Е\",iexcl:\"¡\",iff:\"⇔\",ifr:\"𝔦\",Ifr:\"ℑ\",igrave:\"ì\",Igrave:\"Ì\",ii:\"ⅈ\",iiiint:\"⨌\",iiint:\"∭\",iinfin:\"⧜\",iiota:\"℩\",ijlig:\"ij\",IJlig:\"IJ\",Im:\"ℑ\",imacr:\"ī\",Imacr:\"Ī\",image:\"ℑ\",ImaginaryI:\"ⅈ\",imagline:\"ℐ\",imagpart:\"ℑ\",imath:\"ı\",imof:\"⊷\",imped:\"Ƶ\",Implies:\"⇒\",in:\"∈\",incare:\"℅\",infin:\"∞\",infintie:\"⧝\",inodot:\"ı\",int:\"∫\",Int:\"∬\",intcal:\"⊺\",integers:\"ℤ\",Integral:\"∫\",intercal:\"⊺\",Intersection:\"⋂\",intlarhk:\"⨗\",intprod:\"⨼\",InvisibleComma:\"⁣\",InvisibleTimes:\"⁢\",iocy:\"ё\",IOcy:\"Ё\",iogon:\"į\",Iogon:\"Į\",iopf:\"𝕚\",Iopf:\"𝕀\",iota:\"ι\",Iota:\"Ι\",iprod:\"⨼\",iquest:\"¿\",iscr:\"𝒾\",Iscr:\"ℐ\",isin:\"∈\",isindot:\"⋵\",isinE:\"⋹\",isins:\"⋴\",isinsv:\"⋳\",isinv:\"∈\",it:\"⁢\",itilde:\"ĩ\",Itilde:\"Ĩ\",iukcy:\"і\",Iukcy:\"І\",iuml:\"ï\",Iuml:\"Ï\",jcirc:\"ĵ\",Jcirc:\"Ĵ\",jcy:\"й\",Jcy:\"Й\",jfr:\"𝔧\",Jfr:\"𝔍\",jmath:\"ȷ\",jopf:\"𝕛\",Jopf:\"𝕁\",jscr:\"𝒿\",Jscr:\"𝒥\",jsercy:\"ј\",Jsercy:\"Ј\",jukcy:\"є\",Jukcy:\"Є\",kappa:\"κ\",Kappa:\"Κ\",kappav:\"ϰ\",kcedil:\"ķ\",Kcedil:\"Ķ\",kcy:\"к\",Kcy:\"К\",kfr:\"𝔨\",Kfr:\"𝔎\",kgreen:\"ĸ\",khcy:\"х\",KHcy:\"Х\",kjcy:\"ќ\",KJcy:\"Ќ\",kopf:\"𝕜\",Kopf:\"𝕂\",kscr:\"𝓀\",Kscr:\"𝒦\",lAarr:\"⇚\",lacute:\"ĺ\",Lacute:\"Ĺ\",laemptyv:\"⦴\",lagran:\"ℒ\",lambda:\"λ\",Lambda:\"Λ\",lang:\"⟨\",Lang:\"⟪\",langd:\"⦑\",langle:\"⟨\",lap:\"⪅\",Laplacetrf:\"ℒ\",laquo:\"«\",larr:\"←\",lArr:\"⇐\",Larr:\"↞\",larrb:\"⇤\",larrbfs:\"⤟\",larrfs:\"⤝\",larrhk:\"↩\",larrlp:\"↫\",larrpl:\"⤹\",larrsim:\"⥳\",larrtl:\"↢\",lat:\"⪫\",latail:\"⤙\",lAtail:\"⤛\",late:\"⪭\",lates:\"⪭︀\",lbarr:\"⤌\",lBarr:\"⤎\",lbbrk:\"❲\",lbrace:\"{\",lbrack:\"[\",lbrke:\"⦋\",lbrksld:\"⦏\",lbrkslu:\"⦍\",lcaron:\"ľ\",Lcaron:\"Ľ\",lcedil:\"ļ\",Lcedil:\"Ļ\",lceil:\"⌈\",lcub:\"{\",lcy:\"л\",Lcy:\"Л\",ldca:\"⤶\",ldquo:\"“\",ldquor:\"„\",ldrdhar:\"⥧\",ldrushar:\"⥋\",ldsh:\"↲\",le:\"≤\",lE:\"≦\",LeftAngleBracket:\"⟨\",leftarrow:\"←\",Leftarrow:\"⇐\",LeftArrow:\"←\",LeftArrowBar:\"⇤\",LeftArrowRightArrow:\"⇆\",leftarrowtail:\"↢\",LeftCeiling:\"⌈\",LeftDoubleBracket:\"⟦\",LeftDownTeeVector:\"⥡\",LeftDownVector:\"⇃\",LeftDownVectorBar:\"⥙\",LeftFloor:\"⌊\",leftharpoondown:\"↽\",leftharpoonup:\"↼\",leftleftarrows:\"⇇\",leftrightarrow:\"↔\",Leftrightarrow:\"⇔\",LeftRightArrow:\"↔\",leftrightarrows:\"⇆\",leftrightharpoons:\"⇋\",leftrightsquigarrow:\"↭\",LeftRightVector:\"⥎\",LeftTee:\"⊣\",LeftTeeArrow:\"↤\",LeftTeeVector:\"⥚\",leftthreetimes:\"⋋\",LeftTriangle:\"⊲\",LeftTriangleBar:\"⧏\",LeftTriangleEqual:\"⊴\",LeftUpDownVector:\"⥑\",LeftUpTeeVector:\"⥠\",LeftUpVector:\"↿\",LeftUpVectorBar:\"⥘\",LeftVector:\"↼\",LeftVectorBar:\"⥒\",leg:\"⋚\",lEg:\"⪋\",leq:\"≤\",leqq:\"≦\",leqslant:\"⩽\",les:\"⩽\",lescc:\"⪨\",lesdot:\"⩿\",lesdoto:\"⪁\",lesdotor:\"⪃\",lesg:\"⋚︀\",lesges:\"⪓\",lessapprox:\"⪅\",lessdot:\"⋖\",lesseqgtr:\"⋚\",lesseqqgtr:\"⪋\",LessEqualGreater:\"⋚\",LessFullEqual:\"≦\",LessGreater:\"≶\",lessgtr:\"≶\",LessLess:\"⪡\",lesssim:\"≲\",LessSlantEqual:\"⩽\",LessTilde:\"≲\",lfisht:\"⥼\",lfloor:\"⌊\",lfr:\"𝔩\",Lfr:\"𝔏\",lg:\"≶\",lgE:\"⪑\",lHar:\"⥢\",lhard:\"↽\",lharu:\"↼\",lharul:\"⥪\",lhblk:\"▄\",ljcy:\"љ\",LJcy:\"Љ\",ll:\"≪\",Ll:\"⋘\",llarr:\"⇇\",llcorner:\"⌞\",Lleftarrow:\"⇚\",llhard:\"⥫\",lltri:\"◺\",lmidot:\"ŀ\",Lmidot:\"Ŀ\",lmoust:\"⎰\",lmoustache:\"⎰\",lnap:\"⪉\",lnapprox:\"⪉\",lne:\"⪇\",lnE:\"≨\",lneq:\"⪇\",lneqq:\"≨\",lnsim:\"⋦\",loang:\"⟬\",loarr:\"⇽\",lobrk:\"⟦\",longleftarrow:\"⟵\",Longleftarrow:\"⟸\",LongLeftArrow:\"⟵\",longleftrightarrow:\"⟷\",Longleftrightarrow:\"⟺\",LongLeftRightArrow:\"⟷\",longmapsto:\"⟼\",longrightarrow:\"⟶\",Longrightarrow:\"⟹\",LongRightArrow:\"⟶\",looparrowleft:\"↫\",looparrowright:\"↬\",lopar:\"⦅\",lopf:\"𝕝\",Lopf:\"𝕃\",loplus:\"⨭\",lotimes:\"⨴\",lowast:\"∗\",lowbar:\"_\",LowerLeftArrow:\"↙\",LowerRightArrow:\"↘\",loz:\"◊\",lozenge:\"◊\",lozf:\"⧫\",lpar:\"(\",lparlt:\"⦓\",lrarr:\"⇆\",lrcorner:\"⌟\",lrhar:\"⇋\",lrhard:\"⥭\",lrm:\"‎\",lrtri:\"⊿\",lsaquo:\"‹\",lscr:\"𝓁\",Lscr:\"ℒ\",lsh:\"↰\",Lsh:\"↰\",lsim:\"≲\",lsime:\"⪍\",lsimg:\"⪏\",lsqb:\"[\",lsquo:\"‘\",lsquor:\"‚\",lstrok:\"ł\",Lstrok:\"Ł\",lt:\"<\",Lt:\"≪\",LT:\"<\",ltcc:\"⪦\",ltcir:\"⩹\",ltdot:\"⋖\",lthree:\"⋋\",ltimes:\"⋉\",ltlarr:\"⥶\",ltquest:\"⩻\",ltri:\"◃\",ltrie:\"⊴\",ltrif:\"◂\",ltrPar:\"⦖\",lurdshar:\"⥊\",luruhar:\"⥦\",lvertneqq:\"≨︀\",lvnE:\"≨︀\",macr:\"¯\",male:\"♂\",malt:\"✠\",maltese:\"✠\",map:\"↦\",Map:\"⤅\",mapsto:\"↦\",mapstodown:\"↧\",mapstoleft:\"↤\",mapstoup:\"↥\",marker:\"▮\",mcomma:\"⨩\",mcy:\"м\",Mcy:\"М\",mdash:\"—\",mDDot:\"∺\",measuredangle:\"∡\",MediumSpace:\" \",Mellintrf:\"ℳ\",mfr:\"𝔪\",Mfr:\"𝔐\",mho:\"℧\",micro:\"µ\",mid:\"∣\",midast:\"*\",midcir:\"⫰\",middot:\"·\",minus:\"−\",minusb:\"⊟\",minusd:\"∸\",minusdu:\"⨪\",MinusPlus:\"∓\",mlcp:\"⫛\",mldr:\"…\",mnplus:\"∓\",models:\"⊧\",mopf:\"𝕞\",Mopf:\"𝕄\",mp:\"∓\",mscr:\"𝓂\",Mscr:\"ℳ\",mstpos:\"∾\",mu:\"μ\",Mu:\"Μ\",multimap:\"⊸\",mumap:\"⊸\",nabla:\"∇\",nacute:\"ń\",Nacute:\"Ń\",nang:\"∠⃒\",nap:\"≉\",napE:\"⩰̸\",napid:\"≋̸\",napos:\"ʼn\",napprox:\"≉\",natur:\"♮\",natural:\"♮\",naturals:\"ℕ\",nbsp:\" \",nbump:\"≎̸\",nbumpe:\"≏̸\",ncap:\"⩃\",ncaron:\"ň\",Ncaron:\"Ň\",ncedil:\"ņ\",Ncedil:\"Ņ\",ncong:\"≇\",ncongdot:\"⩭̸\",ncup:\"⩂\",ncy:\"н\",Ncy:\"Н\",ndash:\"–\",ne:\"≠\",nearhk:\"⤤\",nearr:\"↗\",neArr:\"⇗\",nearrow:\"↗\",nedot:\"≐̸\",NegativeMediumSpace:\"​\",NegativeThickSpace:\"​\",NegativeThinSpace:\"​\",NegativeVeryThinSpace:\"​\",nequiv:\"≢\",nesear:\"⤨\",nesim:\"≂̸\",NestedGreaterGreater:\"≫\",NestedLessLess:\"≪\",NewLine:\"\\n\",nexist:\"∄\",nexists:\"∄\",nfr:\"𝔫\",Nfr:\"𝔑\",nge:\"≱\",ngE:\"≧̸\",ngeq:\"≱\",ngeqq:\"≧̸\",ngeqslant:\"⩾̸\",nges:\"⩾̸\",nGg:\"⋙̸\",ngsim:\"≵\",ngt:\"≯\",nGt:\"≫⃒\",ngtr:\"≯\",nGtv:\"≫̸\",nharr:\"↮\",nhArr:\"⇎\",nhpar:\"⫲\",ni:\"∋\",nis:\"⋼\",nisd:\"⋺\",niv:\"∋\",njcy:\"њ\",NJcy:\"Њ\",nlarr:\"↚\",nlArr:\"⇍\",nldr:\"‥\",nle:\"≰\",nlE:\"≦̸\",nleftarrow:\"↚\",nLeftarrow:\"⇍\",nleftrightarrow:\"↮\",nLeftrightarrow:\"⇎\",nleq:\"≰\",nleqq:\"≦̸\",nleqslant:\"⩽̸\",nles:\"⩽̸\",nless:\"≮\",nLl:\"⋘̸\",nlsim:\"≴\",nlt:\"≮\",nLt:\"≪⃒\",nltri:\"⋪\",nltrie:\"⋬\",nLtv:\"≪̸\",nmid:\"∤\",NoBreak:\"⁠\",NonBreakingSpace:\" \",nopf:\"𝕟\",Nopf:\"ℕ\",not:\"¬\",Not:\"⫬\",NotCongruent:\"≢\",NotCupCap:\"≭\",NotDoubleVerticalBar:\"∦\",NotElement:\"∉\",NotEqual:\"≠\",NotEqualTilde:\"≂̸\",NotExists:\"∄\",NotGreater:\"≯\",NotGreaterEqual:\"≱\",NotGreaterFullEqual:\"≧̸\",NotGreaterGreater:\"≫̸\",NotGreaterLess:\"≹\",NotGreaterSlantEqual:\"⩾̸\",NotGreaterTilde:\"≵\",NotHumpDownHump:\"≎̸\",NotHumpEqual:\"≏̸\",notin:\"∉\",notindot:\"⋵̸\",notinE:\"⋹̸\",notinva:\"∉\",notinvb:\"⋷\",notinvc:\"⋶\",NotLeftTriangle:\"⋪\",NotLeftTriangleBar:\"⧏̸\",NotLeftTriangleEqual:\"⋬\",NotLess:\"≮\",NotLessEqual:\"≰\",NotLessGreater:\"≸\",NotLessLess:\"≪̸\",NotLessSlantEqual:\"⩽̸\",NotLessTilde:\"≴\",NotNestedGreaterGreater:\"⪢̸\",NotNestedLessLess:\"⪡̸\",notni:\"∌\",notniva:\"∌\",notnivb:\"⋾\",notnivc:\"⋽\",NotPrecedes:\"⊀\",NotPrecedesEqual:\"⪯̸\",NotPrecedesSlantEqual:\"⋠\",NotReverseElement:\"∌\",NotRightTriangle:\"⋫\",NotRightTriangleBar:\"⧐̸\",NotRightTriangleEqual:\"⋭\",NotSquareSubset:\"⊏̸\",NotSquareSubsetEqual:\"⋢\",NotSquareSuperset:\"⊐̸\",NotSquareSupersetEqual:\"⋣\",NotSubset:\"⊂⃒\",NotSubsetEqual:\"⊈\",NotSucceeds:\"⊁\",NotSucceedsEqual:\"⪰̸\",NotSucceedsSlantEqual:\"⋡\",NotSucceedsTilde:\"≿̸\",NotSuperset:\"⊃⃒\",NotSupersetEqual:\"⊉\",NotTilde:\"≁\",NotTildeEqual:\"≄\",NotTildeFullEqual:\"≇\",NotTildeTilde:\"≉\",NotVerticalBar:\"∤\",npar:\"∦\",nparallel:\"∦\",nparsl:\"⫽⃥\",npart:\"∂̸\",npolint:\"⨔\",npr:\"⊀\",nprcue:\"⋠\",npre:\"⪯̸\",nprec:\"⊀\",npreceq:\"⪯̸\",nrarr:\"↛\",nrArr:\"⇏\",nrarrc:\"⤳̸\",nrarrw:\"↝̸\",nrightarrow:\"↛\",nRightarrow:\"⇏\",nrtri:\"⋫\",nrtrie:\"⋭\",nsc:\"⊁\",nsccue:\"⋡\",nsce:\"⪰̸\",nscr:\"𝓃\",Nscr:\"𝒩\",nshortmid:\"∤\",nshortparallel:\"∦\",nsim:\"≁\",nsime:\"≄\",nsimeq:\"≄\",nsmid:\"∤\",nspar:\"∦\",nsqsube:\"⋢\",nsqsupe:\"⋣\",nsub:\"⊄\",nsube:\"⊈\",nsubE:\"⫅̸\",nsubset:\"⊂⃒\",nsubseteq:\"⊈\",nsubseteqq:\"⫅̸\",nsucc:\"⊁\",nsucceq:\"⪰̸\",nsup:\"⊅\",nsupe:\"⊉\",nsupE:\"⫆̸\",nsupset:\"⊃⃒\",nsupseteq:\"⊉\",nsupseteqq:\"⫆̸\",ntgl:\"≹\",ntilde:\"ñ\",Ntilde:\"Ñ\",ntlg:\"≸\",ntriangleleft:\"⋪\",ntrianglelefteq:\"⋬\",ntriangleright:\"⋫\",ntrianglerighteq:\"⋭\",nu:\"ν\",Nu:\"Ν\",num:\"#\",numero:\"№\",numsp:\" \",nvap:\"≍⃒\",nvdash:\"⊬\",nvDash:\"⊭\",nVdash:\"⊮\",nVDash:\"⊯\",nvge:\"≥⃒\",nvgt:\">⃒\",nvHarr:\"⤄\",nvinfin:\"⧞\",nvlArr:\"⤂\",nvle:\"≤⃒\",nvlt:\"<⃒\",nvltrie:\"⊴⃒\",nvrArr:\"⤃\",nvrtrie:\"⊵⃒\",nvsim:\"∼⃒\",nwarhk:\"⤣\",nwarr:\"↖\",nwArr:\"⇖\",nwarrow:\"↖\",nwnear:\"⤧\",oacute:\"ó\",Oacute:\"Ó\",oast:\"⊛\",ocir:\"⊚\",ocirc:\"ô\",Ocirc:\"Ô\",ocy:\"о\",Ocy:\"О\",odash:\"⊝\",odblac:\"ő\",Odblac:\"Ő\",odiv:\"⨸\",odot:\"⊙\",odsold:\"⦼\",oelig:\"œ\",OElig:\"Œ\",ofcir:\"⦿\",ofr:\"𝔬\",Ofr:\"𝔒\",ogon:\"˛\",ograve:\"ò\",Ograve:\"Ò\",ogt:\"⧁\",ohbar:\"⦵\",ohm:\"Ω\",oint:\"∮\",olarr:\"↺\",olcir:\"⦾\",olcross:\"⦻\",oline:\"‾\",olt:\"⧀\",omacr:\"ō\",Omacr:\"Ō\",omega:\"ω\",Omega:\"Ω\",omicron:\"ο\",Omicron:\"Ο\",omid:\"⦶\",ominus:\"⊖\",oopf:\"𝕠\",Oopf:\"𝕆\",opar:\"⦷\",OpenCurlyDoubleQuote:\"“\",OpenCurlyQuote:\"‘\",operp:\"⦹\",oplus:\"⊕\",or:\"∨\",Or:\"⩔\",orarr:\"↻\",ord:\"⩝\",order:\"ℴ\",orderof:\"ℴ\",ordf:\"ª\",ordm:\"º\",origof:\"⊶\",oror:\"⩖\",orslope:\"⩗\",orv:\"⩛\",oS:\"Ⓢ\",oscr:\"ℴ\",Oscr:\"𝒪\",oslash:\"ø\",Oslash:\"Ø\",osol:\"⊘\",otilde:\"õ\",Otilde:\"Õ\",otimes:\"⊗\",Otimes:\"⨷\",otimesas:\"⨶\",ouml:\"ö\",Ouml:\"Ö\",ovbar:\"⌽\",OverBar:\"‾\",OverBrace:\"⏞\",OverBracket:\"⎴\",OverParenthesis:\"⏜\",par:\"∥\",para:\"¶\",parallel:\"∥\",parsim:\"⫳\",parsl:\"⫽\",part:\"∂\",PartialD:\"∂\",pcy:\"п\",Pcy:\"П\",percnt:\"%\",period:\".\",permil:\"‰\",perp:\"⊥\",pertenk:\"‱\",pfr:\"𝔭\",Pfr:\"𝔓\",phi:\"φ\",Phi:\"Φ\",phiv:\"ϕ\",phmmat:\"ℳ\",phone:\"☎\",pi:\"π\",Pi:\"Π\",pitchfork:\"⋔\",piv:\"ϖ\",planck:\"ℏ\",planckh:\"ℎ\",plankv:\"ℏ\",plus:\"+\",plusacir:\"⨣\",plusb:\"⊞\",pluscir:\"⨢\",plusdo:\"∔\",plusdu:\"⨥\",pluse:\"⩲\",PlusMinus:\"±\",plusmn:\"±\",plussim:\"⨦\",plustwo:\"⨧\",pm:\"±\",Poincareplane:\"ℌ\",pointint:\"⨕\",popf:\"𝕡\",Popf:\"ℙ\",pound:\"£\",pr:\"≺\",Pr:\"⪻\",prap:\"⪷\",prcue:\"≼\",pre:\"⪯\",prE:\"⪳\",prec:\"≺\",precapprox:\"⪷\",preccurlyeq:\"≼\",Precedes:\"≺\",PrecedesEqual:\"⪯\",PrecedesSlantEqual:\"≼\",PrecedesTilde:\"≾\",preceq:\"⪯\",precnapprox:\"⪹\",precneqq:\"⪵\",precnsim:\"⋨\",precsim:\"≾\",prime:\"′\",Prime:\"″\",primes:\"ℙ\",prnap:\"⪹\",prnE:\"⪵\",prnsim:\"⋨\",prod:\"∏\",Product:\"∏\",profalar:\"⌮\",profline:\"⌒\",profsurf:\"⌓\",prop:\"∝\",Proportion:\"∷\",Proportional:\"∝\",propto:\"∝\",prsim:\"≾\",prurel:\"⊰\",pscr:\"𝓅\",Pscr:\"𝒫\",psi:\"ψ\",Psi:\"Ψ\",puncsp:\" \",qfr:\"𝔮\",Qfr:\"𝔔\",qint:\"⨌\",qopf:\"𝕢\",Qopf:\"ℚ\",qprime:\"⁗\",qscr:\"𝓆\",Qscr:\"𝒬\",quaternions:\"ℍ\",quatint:\"⨖\",quest:\"?\",questeq:\"≟\",quot:'\"',QUOT:'\"',rAarr:\"⇛\",race:\"∽̱\",racute:\"ŕ\",Racute:\"Ŕ\",radic:\"√\",raemptyv:\"⦳\",rang:\"⟩\",Rang:\"⟫\",rangd:\"⦒\",range:\"⦥\",rangle:\"⟩\",raquo:\"»\",rarr:\"→\",rArr:\"⇒\",Rarr:\"↠\",rarrap:\"⥵\",rarrb:\"⇥\",rarrbfs:\"⤠\",rarrc:\"⤳\",rarrfs:\"⤞\",rarrhk:\"↪\",rarrlp:\"↬\",rarrpl:\"⥅\",rarrsim:\"⥴\",rarrtl:\"↣\",Rarrtl:\"⤖\",rarrw:\"↝\",ratail:\"⤚\",rAtail:\"⤜\",ratio:\"∶\",rationals:\"ℚ\",rbarr:\"⤍\",rBarr:\"⤏\",RBarr:\"⤐\",rbbrk:\"❳\",rbrace:\"}\",rbrack:\"]\",rbrke:\"⦌\",rbrksld:\"⦎\",rbrkslu:\"⦐\",rcaron:\"ř\",Rcaron:\"Ř\",rcedil:\"ŗ\",Rcedil:\"Ŗ\",rceil:\"⌉\",rcub:\"}\",rcy:\"р\",Rcy:\"Р\",rdca:\"⤷\",rdldhar:\"⥩\",rdquo:\"”\",rdquor:\"”\",rdsh:\"↳\",Re:\"ℜ\",real:\"ℜ\",realine:\"ℛ\",realpart:\"ℜ\",reals:\"ℝ\",rect:\"▭\",reg:\"®\",REG:\"®\",ReverseElement:\"∋\",ReverseEquilibrium:\"⇋\",ReverseUpEquilibrium:\"⥯\",rfisht:\"⥽\",rfloor:\"⌋\",rfr:\"𝔯\",Rfr:\"ℜ\",rHar:\"⥤\",rhard:\"⇁\",rharu:\"⇀\",rharul:\"⥬\",rho:\"ρ\",Rho:\"Ρ\",rhov:\"ϱ\",RightAngleBracket:\"⟩\",rightarrow:\"→\",Rightarrow:\"⇒\",RightArrow:\"→\",RightArrowBar:\"⇥\",RightArrowLeftArrow:\"⇄\",rightarrowtail:\"↣\",RightCeiling:\"⌉\",RightDoubleBracket:\"⟧\",RightDownTeeVector:\"⥝\",RightDownVector:\"⇂\",RightDownVectorBar:\"⥕\",RightFloor:\"⌋\",rightharpoondown:\"⇁\",rightharpoonup:\"⇀\",rightleftarrows:\"⇄\",rightleftharpoons:\"⇌\",rightrightarrows:\"⇉\",rightsquigarrow:\"↝\",RightTee:\"⊢\",RightTeeArrow:\"↦\",RightTeeVector:\"⥛\",rightthreetimes:\"⋌\",RightTriangle:\"⊳\",RightTriangleBar:\"⧐\",RightTriangleEqual:\"⊵\",RightUpDownVector:\"⥏\",RightUpTeeVector:\"⥜\",RightUpVector:\"↾\",RightUpVectorBar:\"⥔\",RightVector:\"⇀\",RightVectorBar:\"⥓\",ring:\"˚\",risingdotseq:\"≓\",rlarr:\"⇄\",rlhar:\"⇌\",rlm:\"‏\",rmoust:\"⎱\",rmoustache:\"⎱\",rnmid:\"⫮\",roang:\"⟭\",roarr:\"⇾\",robrk:\"⟧\",ropar:\"⦆\",ropf:\"𝕣\",Ropf:\"ℝ\",roplus:\"⨮\",rotimes:\"⨵\",RoundImplies:\"⥰\",rpar:\")\",rpargt:\"⦔\",rppolint:\"⨒\",rrarr:\"⇉\",Rrightarrow:\"⇛\",rsaquo:\"›\",rscr:\"𝓇\",Rscr:\"ℛ\",rsh:\"↱\",Rsh:\"↱\",rsqb:\"]\",rsquo:\"’\",rsquor:\"’\",rthree:\"⋌\",rtimes:\"⋊\",rtri:\"▹\",rtrie:\"⊵\",rtrif:\"▸\",rtriltri:\"⧎\",RuleDelayed:\"⧴\",ruluhar:\"⥨\",rx:\"℞\",sacute:\"ś\",Sacute:\"Ś\",sbquo:\"‚\",sc:\"≻\",Sc:\"⪼\",scap:\"⪸\",scaron:\"š\",Scaron:\"Š\",sccue:\"≽\",sce:\"⪰\",scE:\"⪴\",scedil:\"ş\",Scedil:\"Ş\",scirc:\"ŝ\",Scirc:\"Ŝ\",scnap:\"⪺\",scnE:\"⪶\",scnsim:\"⋩\",scpolint:\"⨓\",scsim:\"≿\",scy:\"с\",Scy:\"С\",sdot:\"⋅\",sdotb:\"⊡\",sdote:\"⩦\",searhk:\"⤥\",searr:\"↘\",seArr:\"⇘\",searrow:\"↘\",sect:\"§\",semi:\";\",seswar:\"⤩\",setminus:\"∖\",setmn:\"∖\",sext:\"✶\",sfr:\"𝔰\",Sfr:\"𝔖\",sfrown:\"⌢\",sharp:\"♯\",shchcy:\"щ\",SHCHcy:\"Щ\",shcy:\"ш\",SHcy:\"Ш\",ShortDownArrow:\"↓\",ShortLeftArrow:\"←\",shortmid:\"∣\",shortparallel:\"∥\",ShortRightArrow:\"→\",ShortUpArrow:\"↑\",shy:\"­\",sigma:\"σ\",Sigma:\"Σ\",sigmaf:\"ς\",sigmav:\"ς\",sim:\"∼\",simdot:\"⩪\",sime:\"≃\",simeq:\"≃\",simg:\"⪞\",simgE:\"⪠\",siml:\"⪝\",simlE:\"⪟\",simne:\"≆\",simplus:\"⨤\",simrarr:\"⥲\",slarr:\"←\",SmallCircle:\"∘\",smallsetminus:\"∖\",smashp:\"⨳\",smeparsl:\"⧤\",smid:\"∣\",smile:\"⌣\",smt:\"⪪\",smte:\"⪬\",smtes:\"⪬︀\",softcy:\"ь\",SOFTcy:\"Ь\",sol:\"/\",solb:\"⧄\",solbar:\"⌿\",sopf:\"𝕤\",Sopf:\"𝕊\",spades:\"♠\",spadesuit:\"♠\",spar:\"∥\",sqcap:\"⊓\",sqcaps:\"⊓︀\",sqcup:\"⊔\",sqcups:\"⊔︀\",Sqrt:\"√\",sqsub:\"⊏\",sqsube:\"⊑\",sqsubset:\"⊏\",sqsubseteq:\"⊑\",sqsup:\"⊐\",sqsupe:\"⊒\",sqsupset:\"⊐\",sqsupseteq:\"⊒\",squ:\"□\",square:\"□\",Square:\"□\",SquareIntersection:\"⊓\",SquareSubset:\"⊏\",SquareSubsetEqual:\"⊑\",SquareSuperset:\"⊐\",SquareSupersetEqual:\"⊒\",SquareUnion:\"⊔\",squarf:\"▪\",squf:\"▪\",srarr:\"→\",sscr:\"𝓈\",Sscr:\"𝒮\",ssetmn:\"∖\",ssmile:\"⌣\",sstarf:\"⋆\",star:\"☆\",Star:\"⋆\",starf:\"★\",straightepsilon:\"ϵ\",straightphi:\"ϕ\",strns:\"¯\",sub:\"⊂\",Sub:\"⋐\",subdot:\"⪽\",sube:\"⊆\",subE:\"⫅\",subedot:\"⫃\",submult:\"⫁\",subne:\"⊊\",subnE:\"⫋\",subplus:\"⪿\",subrarr:\"⥹\",subset:\"⊂\",Subset:\"⋐\",subseteq:\"⊆\",subseteqq:\"⫅\",SubsetEqual:\"⊆\",subsetneq:\"⊊\",subsetneqq:\"⫋\",subsim:\"⫇\",subsub:\"⫕\",subsup:\"⫓\",succ:\"≻\",succapprox:\"⪸\",succcurlyeq:\"≽\",Succeeds:\"≻\",SucceedsEqual:\"⪰\",SucceedsSlantEqual:\"≽\",SucceedsTilde:\"≿\",succeq:\"⪰\",succnapprox:\"⪺\",succneqq:\"⪶\",succnsim:\"⋩\",succsim:\"≿\",SuchThat:\"∋\",sum:\"∑\",Sum:\"∑\",sung:\"♪\",sup:\"⊃\",Sup:\"⋑\",sup1:\"¹\",sup2:\"²\",sup3:\"³\",supdot:\"⪾\",supdsub:\"⫘\",supe:\"⊇\",supE:\"⫆\",supedot:\"⫄\",Superset:\"⊃\",SupersetEqual:\"⊇\",suphsol:\"⟉\",suphsub:\"⫗\",suplarr:\"⥻\",supmult:\"⫂\",supne:\"⊋\",supnE:\"⫌\",supplus:\"⫀\",supset:\"⊃\",Supset:\"⋑\",supseteq:\"⊇\",supseteqq:\"⫆\",supsetneq:\"⊋\",supsetneqq:\"⫌\",supsim:\"⫈\",supsub:\"⫔\",supsup:\"⫖\",swarhk:\"⤦\",swarr:\"↙\",swArr:\"⇙\",swarrow:\"↙\",swnwar:\"⤪\",szlig:\"ß\",Tab:\"\\t\",target:\"⌖\",tau:\"τ\",Tau:\"Τ\",tbrk:\"⎴\",tcaron:\"ť\",Tcaron:\"Ť\",tcedil:\"ţ\",Tcedil:\"Ţ\",tcy:\"т\",Tcy:\"Т\",tdot:\"⃛\",telrec:\"⌕\",tfr:\"𝔱\",Tfr:\"𝔗\",there4:\"∴\",therefore:\"∴\",Therefore:\"∴\",theta:\"θ\",Theta:\"Θ\",thetasym:\"ϑ\",thetav:\"ϑ\",thickapprox:\"≈\",thicksim:\"∼\",ThickSpace:\"  \",thinsp:\" \",ThinSpace:\" \",thkap:\"≈\",thksim:\"∼\",thorn:\"þ\",THORN:\"Þ\",tilde:\"˜\",Tilde:\"∼\",TildeEqual:\"≃\",TildeFullEqual:\"≅\",TildeTilde:\"≈\",times:\"×\",timesb:\"⊠\",timesbar:\"⨱\",timesd:\"⨰\",tint:\"∭\",toea:\"⤨\",top:\"⊤\",topbot:\"⌶\",topcir:\"⫱\",topf:\"𝕥\",Topf:\"𝕋\",topfork:\"⫚\",tosa:\"⤩\",tprime:\"‴\",trade:\"™\",TRADE:\"™\",triangle:\"▵\",triangledown:\"▿\",triangleleft:\"◃\",trianglelefteq:\"⊴\",triangleq:\"≜\",triangleright:\"▹\",trianglerighteq:\"⊵\",tridot:\"◬\",trie:\"≜\",triminus:\"⨺\",TripleDot:\"⃛\",triplus:\"⨹\",trisb:\"⧍\",tritime:\"⨻\",trpezium:\"⏢\",tscr:\"𝓉\",Tscr:\"𝒯\",tscy:\"ц\",TScy:\"Ц\",tshcy:\"ћ\",TSHcy:\"Ћ\",tstrok:\"ŧ\",Tstrok:\"Ŧ\",twixt:\"≬\",twoheadleftarrow:\"↞\",twoheadrightarrow:\"↠\",uacute:\"ú\",Uacute:\"Ú\",uarr:\"↑\",uArr:\"⇑\",Uarr:\"↟\",Uarrocir:\"⥉\",ubrcy:\"ў\",Ubrcy:\"Ў\",ubreve:\"ŭ\",Ubreve:\"Ŭ\",ucirc:\"û\",Ucirc:\"Û\",ucy:\"у\",Ucy:\"У\",udarr:\"⇅\",udblac:\"ű\",Udblac:\"Ű\",udhar:\"⥮\",ufisht:\"⥾\",ufr:\"𝔲\",Ufr:\"𝔘\",ugrave:\"ù\",Ugrave:\"Ù\",uHar:\"⥣\",uharl:\"↿\",uharr:\"↾\",uhblk:\"▀\",ulcorn:\"⌜\",ulcorner:\"⌜\",ulcrop:\"⌏\",ultri:\"◸\",umacr:\"ū\",Umacr:\"Ū\",uml:\"¨\",UnderBar:\"_\",UnderBrace:\"⏟\",UnderBracket:\"⎵\",UnderParenthesis:\"⏝\",Union:\"⋃\",UnionPlus:\"⊎\",uogon:\"ų\",Uogon:\"Ų\",uopf:\"𝕦\",Uopf:\"𝕌\",uparrow:\"↑\",Uparrow:\"⇑\",UpArrow:\"↑\",UpArrowBar:\"⤒\",UpArrowDownArrow:\"⇅\",updownarrow:\"↕\",Updownarrow:\"⇕\",UpDownArrow:\"↕\",UpEquilibrium:\"⥮\",upharpoonleft:\"↿\",upharpoonright:\"↾\",uplus:\"⊎\",UpperLeftArrow:\"↖\",UpperRightArrow:\"↗\",upsi:\"υ\",Upsi:\"ϒ\",upsih:\"ϒ\",upsilon:\"υ\",Upsilon:\"Υ\",UpTee:\"⊥\",UpTeeArrow:\"↥\",upuparrows:\"⇈\",urcorn:\"⌝\",urcorner:\"⌝\",urcrop:\"⌎\",uring:\"ů\",Uring:\"Ů\",urtri:\"◹\",uscr:\"𝓊\",Uscr:\"𝒰\",utdot:\"⋰\",utilde:\"ũ\",Utilde:\"Ũ\",utri:\"▵\",utrif:\"▴\",uuarr:\"⇈\",uuml:\"ü\",Uuml:\"Ü\",uwangle:\"⦧\",vangrt:\"⦜\",varepsilon:\"ϵ\",varkappa:\"ϰ\",varnothing:\"∅\",varphi:\"ϕ\",varpi:\"ϖ\",varpropto:\"∝\",varr:\"↕\",vArr:\"⇕\",varrho:\"ϱ\",varsigma:\"ς\",varsubsetneq:\"⊊︀\",varsubsetneqq:\"⫋︀\",varsupsetneq:\"⊋︀\",varsupsetneqq:\"⫌︀\",vartheta:\"ϑ\",vartriangleleft:\"⊲\",vartriangleright:\"⊳\",vBar:\"⫨\",Vbar:\"⫫\",vBarv:\"⫩\",vcy:\"в\",Vcy:\"В\",vdash:\"⊢\",vDash:\"⊨\",Vdash:\"⊩\",VDash:\"⊫\",Vdashl:\"⫦\",vee:\"∨\",Vee:\"⋁\",veebar:\"⊻\",veeeq:\"≚\",vellip:\"⋮\",verbar:\"|\",Verbar:\"‖\",vert:\"|\",Vert:\"‖\",VerticalBar:\"∣\",VerticalLine:\"|\",VerticalSeparator:\"❘\",VerticalTilde:\"≀\",VeryThinSpace:\" \",vfr:\"𝔳\",Vfr:\"𝔙\",vltri:\"⊲\",vnsub:\"⊂⃒\",vnsup:\"⊃⃒\",vopf:\"𝕧\",Vopf:\"𝕍\",vprop:\"∝\",vrtri:\"⊳\",vscr:\"𝓋\",Vscr:\"𝒱\",vsubne:\"⊊︀\",vsubnE:\"⫋︀\",vsupne:\"⊋︀\",vsupnE:\"⫌︀\",Vvdash:\"⊪\",vzigzag:\"⦚\",wcirc:\"ŵ\",Wcirc:\"Ŵ\",wedbar:\"⩟\",wedge:\"∧\",Wedge:\"⋀\",wedgeq:\"≙\",weierp:\"℘\",wfr:\"𝔴\",Wfr:\"𝔚\",wopf:\"𝕨\",Wopf:\"𝕎\",wp:\"℘\",wr:\"≀\",wreath:\"≀\",wscr:\"𝓌\",Wscr:\"𝒲\",xcap:\"⋂\",xcirc:\"◯\",xcup:\"⋃\",xdtri:\"▽\",xfr:\"𝔵\",Xfr:\"𝔛\",xharr:\"⟷\",xhArr:\"⟺\",xi:\"ξ\",Xi:\"Ξ\",xlarr:\"⟵\",xlArr:\"⟸\",xmap:\"⟼\",xnis:\"⋻\",xodot:\"⨀\",xopf:\"𝕩\",Xopf:\"𝕏\",xoplus:\"⨁\",xotime:\"⨂\",xrarr:\"⟶\",xrArr:\"⟹\",xscr:\"𝓍\",Xscr:\"𝒳\",xsqcup:\"⨆\",xuplus:\"⨄\",xutri:\"△\",xvee:\"⋁\",xwedge:\"⋀\",yacute:\"ý\",Yacute:\"Ý\",yacy:\"я\",YAcy:\"Я\",ycirc:\"ŷ\",Ycirc:\"Ŷ\",ycy:\"ы\",Ycy:\"Ы\",yen:\"¥\",yfr:\"𝔶\",Yfr:\"𝔜\",yicy:\"ї\",YIcy:\"Ї\",yopf:\"𝕪\",Yopf:\"𝕐\",yscr:\"𝓎\",Yscr:\"𝒴\",yucy:\"ю\",YUcy:\"Ю\",yuml:\"ÿ\",Yuml:\"Ÿ\",zacute:\"ź\",Zacute:\"Ź\",zcaron:\"ž\",Zcaron:\"Ž\",zcy:\"з\",Zcy:\"З\",zdot:\"ż\",Zdot:\"Ż\",zeetrf:\"ℨ\",ZeroWidthSpace:\"​\",zeta:\"ζ\",Zeta:\"Ζ\",zfr:\"𝔷\",Zfr:\"ℨ\",zhcy:\"ж\",ZHcy:\"Ж\",zigrarr:\"⇝\",zopf:\"𝕫\",Zopf:\"ℤ\",zscr:\"𝓏\",Zscr:\"𝒵\",zwj:\"‍\",zwnj:\"‌\"},v={aacute:\"á\",Aacute:\"Á\",acirc:\"â\",Acirc:\"Â\",acute:\"´\",aelig:\"æ\",AElig:\"Æ\",agrave:\"à\",Agrave:\"À\",amp:\"&\",AMP:\"&\",aring:\"å\",Aring:\"Å\",atilde:\"ã\",Atilde:\"Ã\",auml:\"ä\",Auml:\"Ä\",brvbar:\"¦\",ccedil:\"ç\",Ccedil:\"Ç\",cedil:\"¸\",cent:\"¢\",copy:\"©\",COPY:\"©\",curren:\"¤\",deg:\"°\",divide:\"÷\",eacute:\"é\",Eacute:\"É\",ecirc:\"ê\",Ecirc:\"Ê\",egrave:\"è\",Egrave:\"È\",eth:\"ð\",ETH:\"Ð\",euml:\"ë\",Euml:\"Ë\",frac12:\"½\",frac14:\"¼\",frac34:\"¾\",gt:\">\",GT:\">\",iacute:\"í\",Iacute:\"Í\",icirc:\"î\",Icirc:\"Î\",iexcl:\"¡\",igrave:\"ì\",Igrave:\"Ì\",iquest:\"¿\",iuml:\"ï\",Iuml:\"Ï\",laquo:\"«\",lt:\"<\",LT:\"<\",macr:\"¯\",micro:\"µ\",middot:\"·\",nbsp:\" \",not:\"¬\",ntilde:\"ñ\",Ntilde:\"Ñ\",oacute:\"ó\",Oacute:\"Ó\",ocirc:\"ô\",Ocirc:\"Ô\",ograve:\"ò\",Ograve:\"Ò\",ordf:\"ª\",ordm:\"º\",oslash:\"ø\",Oslash:\"Ø\",otilde:\"õ\",Otilde:\"Õ\",ouml:\"ö\",Ouml:\"Ö\",para:\"¶\",plusmn:\"±\",pound:\"£\",quot:'\"',QUOT:'\"',raquo:\"»\",reg:\"®\",REG:\"®\",sect:\"§\",shy:\"­\",sup1:\"¹\",sup2:\"²\",sup3:\"³\",szlig:\"ß\",thorn:\"þ\",THORN:\"Þ\",times:\"×\",uacute:\"ú\",Uacute:\"Ú\",ucirc:\"û\",Ucirc:\"Û\",ugrave:\"ù\",Ugrave:\"Ù\",uml:\"¨\",uuml:\"ü\",Uuml:\"Ü\",yacute:\"ý\",Yacute:\"Ý\",yen:\"¥\",yuml:\"ÿ\"},b={0:\"�\",128:\"€\",130:\"‚\",131:\"ƒ\",132:\"„\",133:\"…\",134:\"†\",135:\"‡\",136:\"ˆ\",137:\"‰\",138:\"Š\",139:\"‹\",140:\"Œ\",142:\"Ž\",145:\"‘\",146:\"’\",147:\"“\",148:\"”\",149:\"•\",150:\"–\",151:\"—\",152:\"˜\",153:\"™\",154:\"š\",155:\"›\",156:\"œ\",158:\"ž\",159:\"Ÿ\"},y=[1,2,3,4,5,6,7,8,11,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,64976,64977,64978,64979,64980,64981,64982,64983,64984,64985,64986,64987,64988,64989,64990,64991,64992,64993,64994,64995,64996,64997,64998,64999,65e3,65001,65002,65003,65004,65005,65006,65007,65534,65535,131070,131071,196606,196607,262142,262143,327678,327679,393214,393215,458750,458751,524286,524287,589822,589823,655358,655359,720894,720895,786430,786431,851966,851967,917502,917503,983038,983039,1048574,1048575,1114110,1114111],w=String.fromCharCode,A={}.hasOwnProperty,x=function(e,r){return A.call(e,r)},k=function(e,r){if(!e)return r;var t,n={};for(t in r)n[t]=x(e,t)?e[t]:r[t];return n},E=function(e,r){var t=\"\";return e>=55296&&e<=57343||e>1114111?(r&&L(\"character reference outside the permissible Unicode range\"),\"�\"):x(b,e)?(r&&L(\"disallowed character reference\"),b[e]):(r&&function(e,r){for(var t=-1,n=e.length;++t65535&&(t+=w((e-=65536)>>>10&1023|55296),e=56320|1023&e),t+=w(e))},q=function(e){return\"&#x\"+e.toString(16).toUpperCase()+\";\"},D=function(e){return\"&#\"+e+\";\"},L=function(e){throw Error(\"Parse error: \"+e)},S=function(e,r){(r=k(r,S.options)).strict&&m.test(e)&&L(\"forbidden code point\");var t=r.encodeEverything,n=r.useNamedReferences,a=r.allowUnsafeSymbols,i=r.decimal?D:q,d=function(e){return i(e.charCodeAt(0))};return t?(e=e.replace(s,(function(e){return n&&x(u,e)?\"&\"+u[e]+\";\":d(e)})),n&&(e=e.replace(/&gt;\\u20D2/g,\"&nvgt;\").replace(/&lt;\\u20D2/g,\"&nvlt;\").replace(/&#x66;&#x6A;/g,\"&fjlig;\")),n&&(e=e.replace(c,(function(e){return\"&\"+u[e]+\";\"})))):n?(a||(e=e.replace(p,(function(e){return\"&\"+u[e]+\";\"}))),e=(e=e.replace(/&gt;\\u20D2/g,\"&nvgt;\").replace(/&lt;\\u20D2/g,\"&nvlt;\")).replace(c,(function(e){return\"&\"+u[e]+\";\"}))):a||(e=e.replace(p,d)),e.replace(o,(function(e){var r=e.charCodeAt(0),t=e.charCodeAt(1);return i(1024*(r-55296)+t-56320+65536)})).replace(l,d)};S.options={allowUnsafeSymbols:!1,encodeEverything:!1,strict:!1,useNamedReferences:!1,decimal:!1};var T=function(e,r){var t=(r=k(r,T.options)).strict;return t&&f.test(e)&&L(\"malformed character reference\"),e.replace(g,(function(e,n,a,i,o,s,l,c,u){var p,d,f,m,g,b;return n?h[g=n]:a?(g=a,(b=i)&&r.isAttributeValue?(t&&\"=\"==b&&L(\"`&` did not start a character reference\"),e):(t&&L(\"named character reference was not terminated by a semicolon\"),v[g]+(b||\"\"))):o?(f=o,d=s,t&&!d&&L(\"character reference was not terminated by a semicolon\"),p=parseInt(f,10),E(p,t)):l?(m=l,d=c,t&&!d&&L(\"character reference was not terminated by a semicolon\"),p=parseInt(m,16),E(p,t)):(t&&L(\"named character reference was not terminated by a semicolon\"),e)}))};T.options={isAttributeValue:!1,strict:!1};var C={version:\"1.2.0\",encode:S,decode:T,escape:function(e){return e.replace(p,(function(e){return d[e]}))},unescape:T};if(n&&!n.nodeType)if(a)a.exports=C;else for(var B in C)x(C,B)&&(n[B]=C[B]);else t.he=C}(vr)}));function yr(e,r,t){var n=t||{},a=n.number,i=\"$$v\";n.trim&&(i=\"(typeof $$v === 'string'? $$v.trim(): $$v)\"),a&&(i=\"_n(\"+i+\")\");var o=wr(r,i);e.model={value:\"(\"+r+\")\",expression:JSON.stringify(r),callback:\"function ($$v) {\"+o+\"}\"}}function wr(e,r){var t=function(e){if(e=e.trim(),lr=e.length,e.indexOf(\"[\")<0||e.lastIndexOf(\"]\")-1?{exp:e.slice(0,pr),key:'\"'+e.slice(pr+1)+'\"'}:{exp:e,key:null};for(cr=e,pr=dr=fr=0;!xr();)kr(ur=Ar())?qr(ur):91===ur&&Er(ur);return{exp:e.slice(0,dr),key:e.slice(dr+1,fr)}}(e);return null===t.key?e+\"=\"+r:\"$set(\"+t.exp+\", \"+t.key+\", \"+r+\")\"}function Ar(){return cr.charCodeAt(++pr)}function xr(){return pr>=lr}function kr(e){return 34===e||39===e}function Er(e){var r=1;for(dr=pr;!xr();)if(kr(e=Ar()))qr(e);else if(91===e&&r++,93===e&&r--,0===r){fr=pr;break}}function qr(e){for(var r=e;!xr()&&(e=Ar())!==r;);}var Dr,Lr,Sr,Tr,Cr,Br,Rr,Fr,Nr,Or=/^@|^v-on:/,Ur=/^v-|^@|^:|^#/,Ir=/([\\s\\S]*?)\\s+(?:in|of)\\s+([\\s\\S]*)/,Vr=/,([^,\\}\\]]*)(?:,([^,\\}\\]]*))?$/,_r=/^\\(|\\)$/g,Mr=/^\\[.*\\]$/,Gr=/:(.*)$/,Pr=/^:|^\\.|^v-bind:/,jr=/\\.[^.\\]]+(?=[^\\]]*$)/g,zr=/^v-slot(:|$)|^#/,Hr=/[\\r\\n]/,$r=/\\s+/g,Yr=/[\\s\"'<>\\/=]/,Jr=g(br.decode),Zr=\"_empty_\";function Kr(e,r,t){return{type:1,tag:e,attrsList:r,attrsMap:nt(r),rawAttrsMap:{},parent:t,children:[]}}function Qr(e,r){Dr=r.warn||Ze,Br=r.isPreTag||x,Rr=r.mustUseProp||x,Fr=r.getTagNamespace||x;var t=r.isReservedTag||x;Nr=function(e){return!!e.component||!t(e.tag)},Sr=Ke(r.modules,\"transformNode\"),Tr=Ke(r.modules,\"preTransformNode\"),Cr=Ke(r.modules,\"postTransformNode\"),Lr=r.delimiters;var n,a,i=[],o=!1!==r.preserveWhitespace,s=r.whitespace,l=!1,c=!1,u=!1;function p(e,r){u||(u=!0,Dr(e,r))}function d(e){if(f(e),l||e.processed||(e=Wr(e,r)),i.length||e===n||(n.if&&(e.elseif||e.else)?(m(e),et(n,{exp:e.elseif,block:e})):p(\"Component template should contain exactly one root element. If you are using v-if on multiple elements, use v-else-if to chain them instead.\",{start:e.start})),a&&!e.forbidden)if(e.elseif||e.else)o=e,(s=function(e){for(var r=e.length;r--;){if(1===e[r].type)return e[r];\" \"!==e[r].text&&Dr('text \"'+e[r].text.trim()+'\" between v-if and v-else(-if) will be ignored.',e[r]),e.pop()}}(a.children))&&s.if?et(s,{exp:o.elseif,block:o}):Dr(\"v-\"+(o.elseif?'else-if=\"'+o.elseif+'\"':\"else\")+\" used on element <\"+o.tag+\"> without corresponding v-if.\",o.rawAttrsMap[o.elseif?\"v-else-if\":\"v-else\"]);else{if(e.slotScope){var t=e.slotTarget||'\"default\"';(a.scopedSlots||(a.scopedSlots={}))[t]=e}a.children.push(e),e.parent=a}var o,s;e.children=e.children.filter((function(e){return!e.slotScope})),f(e),e.pre&&(l=!1),Br(e.tag)&&(c=!1);for(var u=0;u as component root element because it may contain multiple nodes.\",{start:e.start}),e.attrsMap.hasOwnProperty(\"v-for\")&&p(\"Cannot use v-for on stateful component root element because it renders multiple elements.\",e.rawAttrsMap[\"v-for\"])}return H(e,{warn:Dr,expectHTML:r.expectHTML,isUnaryTag:r.isUnaryTag,canBeLeftOpenTag:r.canBeLeftOpenTag,shouldDecodeNewlines:r.shouldDecodeNewlines,shouldDecodeNewlinesForHref:r.shouldDecodeNewlinesForHref,shouldKeepComment:r.comments,outputSourceRange:r.outputSourceRange,start:function(e,t,o,s,u){var p=a&&a.ns||Fr(e);ee&&\"svg\"===p&&(t=function(e){for(var r=[],t=0;t, / or =.\",{start:e.start+e.name.indexOf(\"[\"),end:e.start+e.name.length})})),\"style\"!==(f=g).tag&&(\"script\"!==f.tag||f.attrsMap.type&&\"text/javascript\"!==f.attrsMap.type)||ae()||(g.forbidden=!0,Dr(\"Templates should only be responsible for mapping the state to the UI. Avoid placing tags with side-effects in your templates, such as <\"+e+\">, as they will not be parsed.\",{start:g.start}));for(var h=0;h cannot be keyed. Place the key on real elements instead.\",nr(e,\"key\")),e.for){var t=e.iterator2||e.iterator1,n=e.parent;t&&t===r&&n&&\"transition-group\"===n.tag&&Dr(\"Do not use v-for index as key on children, this is the same as not using keys.\",nr(e,\"key\"),!0)}e.key=r}}(e),e.plain=!e.key&&!e.scopedSlots&&!e.attrsList.length,function(e){var r=ar(e,\"ref\");r&&(e.ref=r,e.refInFor=function(e){for(var r=e;r;){if(void 0!==r.for)return!0;r=r.parent}return!1}(e))}(e),function(e){var r;\"template\"===e.tag?((r=ir(e,\"scope\"))&&Dr('the \"scope\" attribute for scoped slots have been deprecated and replaced by \"slot-scope\" since 2.5. The new \"slot-scope\" attribute can also be used on plain elements in addition to