query
stringlengths
9
34k
document
stringlengths
8
5.39M
negatives
sequencelengths
19
20
metadata
dict
Function to variable set correct padding based on number of nodes
function setNewPadding(sankeyData) { columnMap = new Map(); for (const [key, value] of Object.entries(sankeyData.nodes)) { if (columnMap.has(value.assessment)) { columnMap.set(value.assessment, columnMap.get(value.assessment) + 1) } else { columnMap.set(value.assessment, 1); } } let highestValue = 0; for (let value of columnMap.values()) { if (highestValue < value) { highestValue = value } } if (highestValue > 16) { padding = 20; } else if (highestValue > 10) { padding = 30; } else { padding = 40; } sankey = d3.sankey() .size([width, height]) .nodeId(d => d.id) .nodeWidth(nodeWdt) .nodePadding(padding) .nodeAlign(d3.sankeyCenter) .nodeSort(null); }
[ "static getNodePaddingToTargetNodes(node, targetNodes, links, linkType) {\n\t\tlet padding = 0;\n\t\tif (linkType === \"Elbow\") {\n\t\t\tconst maxIncrement = this.getCountOfLinksToTargetNodes(node, targetNodes, links) * node.layout.minInitialLineIncrement;\n\t\t\tpadding = node.layout.minInitialLine + node.layout.minFinalLine + maxIncrement;\n\t\t} else {\n\t\t\tpadding = 2 * node.layout.minInitialLine;\n\t\t}\n\t\treturn padding;\n\t}", "function applyPadding() {\n t.each(function(v) {\n coords[v][0] += padding;\n coords[v][1] += padding;\n });\n }", "function setNewPadding(sankeyData) {\n columnMap = new Map();\n for (const [key, value] of Object.entries(sankeyData.nodes)) {\n if (columnMap.has(value.assessment)) {\n columnMap.set(value.assessment, columnMap.get(value.assessment) + 1)\n }\n else {\n columnMap.set(value.assessment, 1);\n }\n }\n let highestValue = 0;\n for (let value of columnMap.values()) {\n if (highestValue < value) {\n highestValue = value\n }\n }\n if (highestValue > 16) {\n padding = 20;\n }\n else if (highestValue > 10) {\n padding = 30;\n }\n else {\n padding = 40;\n }\n sankey = d3.sankey()\n .size([width, height])\n .nodeId(d => d.id)\n .nodeWidth(nodeWdt)\n .nodePadding(padding)\n .nodeAlign(d3.sankeyCenter)\n .nodeSort(null);\n }", "function wPadding(treeWidth,slotWidth){\n\treturn ((pageWidth-(slotWidth*treeWidth))/(treeWidth+1));\n}", "function calculate_padding() {\n padLeft = Math.floor((display.getWidth() - etch.getWidth()) / 2);\n padTop = Math.floor((display.getHeight() - etch.getHeight() - 5) / 2) + 1;\n}", "function toPadding(value) {\n var obj = toTRBL(value);\n obj.width = obj.left + obj.right;\n obj.height = obj.top + obj.bottom;\n return obj;\n }", "function toPadding(value) {\n const obj = toTRBL(value);\n obj.width = obj.left + obj.right;\n obj.height = obj.top + obj.bottom;\n return obj;\n}", "function setInitialNodeSettings() {\n for (let i = 0; i < nodeArray.length; i++) {\n let node = nodeArray[i];\n node['width'] = defines.getConstant('nodeWidth');\n\n let innerMargin = defines.getConstant('innerMargin') * 3;\n let textHeight = util.getTextHeight(node.textArray.length);\n node['height'] = innerMargin + textHeight;\n }\n view.propagateInnerTextSize(nodeArray);\n }", "function establecerPaddingLateralContenedor(contenedor, padding) {\r\n\tcontenedor.style.paddingRight = padding;\r\n\tcontenedor.style.paddingLeft = padding;\r\n}", "function currentPadding() {\nreturn parseInt($('#globalNav ul.rmRootGroup > li.rmItem > a.rmLink').css('padding-left'), 10);\n}", "function addPadding(arr) {\r\n var len = arr[arr.length - 1].length\r\n for (var i = 0; i < arr.length; i++) {\r\n if (arr[i].length < len) {\r\n for (var j = 0; j <= (len - arr[i].length); j++) {\r\n arr[i] = \"0\" + arr[i];\r\n }\r\n }\r\n }\r\n}", "getMaxZoomToFitPaddingForConnections() {\n\t\tconst paddingForInputBinding = this.getMaxPaddingForConnectionsFromInputBindingNodes();\n\t\tconst paddingForOutputBinding = this.getMaxPaddingForConnectionsToOutputBindingNodes();\n\t\tconst padding = Math.max(paddingForInputBinding, paddingForOutputBinding);\n\t\treturn padding;\n\t}", "getZoomToFitPadding() {\n\t\tlet padding = this.canvasLayout.zoomToFitPadding;\n\n\t\tif (this.dispUtils.isDisplayingSubFlow()) {\n\t\t\t// Allocate some space for connecting lines and the binding node ports\n\t\t\tconst newPadding = this.getMaxZoomToFitPaddingForConnections() + (2 * this.canvasLayout.supernodeBindingPortRadius);\n\t\t\tpadding = Math.max(padding, newPadding);\n\t\t}\n\t\treturn padding;\n\t}", "function addPadding(interval, padding) {\n if(interval[0] != interval[1]) {\n return [interval[0] - (interval[1] - interval[0]) * padding,\n interval[1] + (interval[1] - interval[0]) * padding];\n }\n else if(interval[0] > 0) {\n return [0, interval[0] * 2];\n }\n else if(interval[0] < 0) {\n return [interval[0] * 2, 0];\n }\n else {\n return [-1, 1];\n }\n }", "_paddingIndent() {\n const nodeLevel = this._treeNode.data && this._tree.treeControl.getLevel ? this._tree.treeControl.getLevel(this._treeNode.data) : null;\n const level = this._level == null ? nodeLevel : this._level;\n return typeof level === 'number' ? `${level * this._indent}${this.indentUnits}` : null;\n }", "function cleanPadding (pad) {\n const padding = {top: 0, left: 0, right: 0, bottom: 0};\n if (typeof(pad) === 'number') return {top: pad, left: pad, right: pad, bottom: pad};\n ['top', 'bottm', 'right', 'left'].forEach( d => {\n if (pad[d]) padding[d] == pad[d];\n });\n return padding;\n }", "_addPadding(cells, padRows) {\n let out = cells.slice(0);\n for (let x = -padRows; x < this.xDim + padRows; x++) {\n for (let y = -padRows; y < this.yDim + padRows; y++) {\n // Only add the padding cells\n if (x < 0 || x >= this.xDim || y < 0 || y >= this.yDim) {\n // This is like a fake grid cell.\n out.push({\n x: x,\n y: y,\n alpha: 0.0,\n isPadding: true\n })\n }\n }\n }\n return out\n }", "deepPad(position, width_deltas) {\n if (_debug) _assert(this.n == position.length);\n if (this.n == 0) return this;\n let [height, ...rest] = position;\n let [width_now, ...width_rest] = width_deltas;\n let source_data = this.source_data.map(content => content.deepPad(rest, width_rest));\n //let target_data = this.target_data.map(content => content.deepPad(rest));\n let target_data = this.target_data.deepPad(rest, width_rest);\n let sublimits = this.sublimits.map(limit => limit.deepPad(rest, width_rest));\n return new LimitComponent({ n: this.n, source_data, target_data, sublimits, first: this.first + height });\n }", "function getPadding() {\r\n\t\tvar pad = 0;\r\n\t\t$this.parents().each(function(){\r\n\t\t\tpad += parseInt($(this).css(\"padding-bottom\"));\r\n\t\t\tpad += parseInt($(this).css(\"margin-bottom\"));\r\n\t\t\tpad += parseInt($(this).css(\"border-bottom-width\"));\r\n\t\t});\r\n\t\tpad += parseInt($this.css(\"padding-bottom\"));\r\n\t\tpad += parseInt($this.css(\"margin-bottom\"));\r\n\t\tpad += parseInt($this.css(\"border-bottom-width\"));\r\n\t\treturn pad;\r\n\t}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
simulate ATM boot and startup
function bootATM() { console.clear(); console.log('Booting...'); console.log('ATM connecting to remote services...'); setTimeout(function () { console.clear(); runApp(); } , 5000); }
[ "async boot () {\n this.log.debug('Booting emulator ...')\n\n /**\n * throw properly when vdi medium couldn't be loaded\n */\n try {\n await VirtualBox.manage(['startvm', this.uuid])\n } catch (err) {\n this.log.errorAndThrow(err)\n }\n\n this.settings = await this.getSettings()\n this.log.debug('emulator booted')\n }", "async boot() {\n try {\n this.shutdownManager = new shutDownManager_1.ShutdownManager({ finUUID: this.finUUID, manifest: this.manifest });\n this.serviceLauncher = new serviceLauncher_1.ServiceLauncher({ finUUID: this.finUUID, manifest: this.manifest, shutdownManager: this.shutdownManager });\n window.bootEngine = this.bootEngine = new bootEngine_1.BootEngine(this.manifest, this.serviceLauncher, this.shutdownManager);\n this.registerBootTasks(this.bootEngine, this.manifest, this.serviceLauncher);\n this.bootEngine.run();\n }\n catch (err) {\n systemLog_1.default.error({ leadingBlankLine: true }, err);\n }\n }", "function start (cb) {\n const devices = findDevices()\n\n const bootedDevice = devices.find(_ => _.status === 'Booted')\n // already booted\n if (bootedDevice) {\n success(`simulator already booted, did ${bootedDevice.did}`)\n cb && cb()\n return\n }\n\n // not install\n if (devices.length === 0) {\n create(start.bind(null, cb))\n return\n }\n\n // only one device, start directly\n if (devices.length === 1) {\n launch(devices[0].did, cb)\n return\n }\n\n // mutil devices, select one to boot\n choose({\n type: 'list',\n name: 'device',\n message: 'Please select the simulator to boot',\n choices: devices,\n default: devices[0],\n }).then(res => {\n const device = devices.find(d => d.name === res.device)\n launch(device.did, cb)\n })\n}", "onBoot() {}", "function main() {\n board.reset();\n board.bootSounds();\n //board.motorCheck();\n board.openDamper();\n monitorTemperature();\n \n events.on(\"start-alarm\", alarm);\n}", "function evtFullyBooted() {\n try {\n logger.info(IDLOG, 'asterisk fully booted');\n start();\n } catch (err) {\n logger.error(IDLOG, err.stack);\n }\n}", "function RandomReboot() {\n \n //Este iff dve ser tirado para estado continuo\n //if (!rebooted) {\n // rebooted = true;\n machine.setTimeout('doReboot', random() * 1000000+ 10000, 'DoReboot();')\n //}\n \n }", "async function simBooted (sim) {\n let stat = await sim.stat();\n return stat.state === 'Booted';\n}", "function simBooted(sim) {\n var stat;\n return _regeneratorRuntime.async(function simBooted$(context$1$0) {\n while (1) switch (context$1$0.prev = context$1$0.next) {\n case 0:\n context$1$0.next = 2;\n return _regeneratorRuntime.awrap(sim.stat());\n\n case 2:\n stat = context$1$0.sent;\n return context$1$0.abrupt('return', stat.state === 'Booted');\n\n case 4:\n case 'end':\n return context$1$0.stop();\n }\n }, null, this);\n}", "function onInstall() {\n boot();\n}", "[\"@test Applications with autoboot set to false do not autoboot\"](assert) {\n function delay(time) {\n return new _runtime.RSVP.Promise(resolve => (0, _runloop.later)(resolve, time));\n }\n\n var appBooted = 0;\n var instanceBooted = 0;\n this.application.initializer({\n name: 'assert-no-autoboot',\n\n initialize() {\n appBooted++;\n }\n\n });\n this.application.instanceInitializer({\n name: 'assert-no-autoboot',\n\n initialize() {\n instanceBooted++;\n }\n\n });\n assert.ok(!this.applicationInstance, 'precond - no instance');\n assert.ok(appBooted === 0, 'precond - not booted');\n assert.ok(instanceBooted === 0, 'precond - not booted'); // Continue after 500ms\n\n return delay(500).then(() => {\n assert.ok(appBooted === 0, '500ms elapsed without app being booted');\n assert.ok(instanceBooted === 0, '500ms elapsed without instances being booted');\n return (0, _internalTestHelpers.runTask)(() => this.application.boot());\n }).then(() => {\n assert.ok(appBooted === 1, 'app should boot when manually calling `app.boot()`');\n assert.ok(instanceBooted === 0, 'no instances should be booted automatically when manually calling `app.boot()');\n });\n }", "function rebootMcu() {\n \tportWrite('MCU BOOT_SYSTEM');\n}", "async boot() {\n this.emit('start');\n this.booted = true;\n await this.acquireLock();\n await this.makeMigrationsTable();\n }", "async function bootup() {\n return new Promise((resolve, reject) => {\n console.log(\"\");\n let SPINNER = ora({\n text: CONFIG.bootup.text.start,\n spinner: CONFIG.spinner,\n color: CONFIG.spinner.color,\n }).start();\n setTimeout(() => {\n SPINNER.stopAndPersist({\n symbol: CONFIG.spinner.endFrame,\n text: CONFIG.bootup.text.style(CONFIG.bootup.text.end),\n });\n console.log(\"\");\n return resolve(true);\n }, CONFIG.bootup.delay);\n });\n}", "function reboot(){\n\t\n}", "sendBootloadModeCommand() {\n if (!this.connected) { return; }\n this.writeMessage(MESSAGE_TYPE_OTA_BOOTLOADMODE, new Uint8Array(0));\n }", "function activeToACM() {\r\n // See if MicroLMS needs to be started and setup the $$OsAdmin wsman stack\r\n console.log('Starting AMT Provisioning to Admin Control Mode.');\r\n settings.noconsole = true;\r\n // Display Intel AMT version and activation state\r\n mestate = {};\r\n var amtMeiModule, amtMei;\r\n try { amtMeiModule = require('amt-mei'); amtMei = new amtMeiModule(); } catch (ex) { console.log(ex); exit(1); return; }\r\n amtMei.on('error', function (e) { console.log('ERROR: ' + e); exit(1); return; });\r\n amtMei.getProvisioningState(function (result) {\r\n if (result) {\r\n mestate.ProvisioningState = result;\r\n startLms(getFwNonce); // TODO: Fix this so that it works even if LMS already running. \r\n }\r\n });\r\n}", "initStart(callback){\n // payload to set IMU/Classifier events\n let commandPayload = this.serialise.command_set_mode();\n // payload to set the Myo unlocked\n let unlockPayload = this.serialise.set_unlock_mode(0);\n // payload to set the Myo to never sleep\n let sleepModepayload = this.serialise.set_sleep_mode_t(true);\n\n this.peripheral.discoverServices([this.protocol.services.control.id,this.protocol.services.classifier.id, this.protocol.services.imuData.id, this.protocol.services.emgData.id, this.protocol.services.battery.id], function(error, services) {\n\n // TODO: Check for UUID's\n this.batteryService = services[0];\n this.commandService = services[1];\n this.imuService = services[2];\n this.classifierService = services[3];\n this.emgService = services[4];\n\n\n\n /* Write CommandService to enable IMU/Classifier events */\n this.commandService.discoverCharacteristics([this.protocol.services.control.COMMAND, this.protocol.services.control.FIRMWARE_VERSION, this.protocol.services.control.MYO_INFO], function (error, characteristics) {\n if(characteristics.length == 3){\n this.myoInfoChar = characteristics[0];\n this.firmwareChar = characteristics[1];\n this.commandChar = characteristics[2];\n\n\n\n this.commandChar.write(commandPayload, true, function (error) {\n if(!error){\n console.log('commandChar set');\n this.commandChar.write(unlockPayload,true, function(error) {\n if(!error){\n console.log('unlock mode set');\n callback('unlock mode set');\n this.commandChar.write(sleepModepayload,true, function(error){\n if(!error){\n console.log('sleep mode set');\n callback('sleep mode set'); // TODO: info message\n } else {\n throw new Error('SleepModePayLoad: ', error);\n }\n })\n } else {\n throw new Error('UnlockPayload:', error);\n }\n }.bind(this));\n callback('commandChar set');\n } else {\n throw new Error('CommandChar: ', error);\n }\n }.bind(this));\n } else {\n throw new Error('CommandService: too few characteristics discovered');\n }\n\n }.bind(this));\n\n setTimeout(function(){\n this.batteryService.discoverCharacteristics([this.protocol.services.battery.BATTERY_LEVEL],function(error, characteristics){\n if(characteristics.length > 0){\n this.batteryChar = characteristics[0];\n } else {\n throw new Error('BatteryService: too few characteristics discovered');\n }\n }.bind(this));\n }.bind(this),1000);\n\n /* Get notified of IMU events */\n setTimeout(function () {\n this.imuService.discoverCharacteristics([this.protocol.services.imuData.IMU_DATA], function (error, characteristics) {\n if(characteristics.length > 0) {\n\n this.imuChar = characteristics[0];\n\n // Notifiy Characteristic to send events\n this.imuChar.notify(true, function (error) {\n if(error){\n throw new Error('imuChar: ', error);\n }\n });\n\n this.imuChar.on('read', function (data, isNotification) {\n data = this.deserialise.imu_data_t(data);\n callback(data);\n }.bind(this));\n\n } else {\n throw new Error('imuService: too few characteristics discovered');\n }\n }.bind(this));\n }.bind(this), 2000);\n\n /* Get notified of Classifier events */\n\n setTimeout(function () {\n this.classifierService.discoverCharacteristics([this.protocol.services.classifier.classifierEvent], function (error, characteristics) {\n if(characteristics.length > 0) {\n this.classifierChar = characteristics[0];\n\n // Notifiy Characteristic to send events\n this.classifierChar.notify(true, function (error) {\n if(error){\n throw new Error('classifierChar: ', error);\n } else {\n // change Myo state to ready\n callback({'ready':true});\n }\n });\n this.classifierChar.on('read', function (data, isNotification) {\n let eventData = this.deserialise.classifier_event_t(data);\n callback(eventData);\n }.bind(this));\n\n } else {\n throw new Error('classifierService: too few characteristics discovered');\n }\n }.bind(this));\n }.bind(this), 4000);\n\n setTimeout(function () {\n this.emgService.discoverCharacteristics([], function (error, characteristics) {\n if(characteristics.length == 4) {\n // TODO check UUID's\n for(let index in characteristics){\n let char = characteristics[index];\n char.notify(true, function (error) {\n if(error){\n throw new Error('emgChar: ', error);\n }\n });\n char.on('read', function (data, isNotification) {\n let emgData = this.deserialise.emg_data_t(data);\n callback({id: index, emgData: emgData});\n }.bind(this));\n }\n } else {\n throw new Error('emgService: too few characteristics discovered');\n }\n }.bind(this));\n }.bind(this), 3000);\n\n }.bind(this));\n }", "function main() {\n let msinfo = {\n cfg: null,\n acc: null,\n }\n loadConfig(msinfo)\n\n loadWallet(msinfo, (err) => {\n if(err) u.showErr(err)\n startMicroservice(msinfo)\n registerWithCommMgr()\n })\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
\ Function : viewSource() Description : Shows the HTML source code generated by the WYSIWYG editor Usage : showFonts(n) Arguments : n The editor identifier (the textarea's ID) \
function viewSource(n) { var getDocument = document.getElementById("wysiwyg" + n).contentWindow.document; var browserName = navigator.appName; // View Source for IE if (browserName == "Microsoft Internet Explorer") { var iHTML = getDocument.body.innerHTML; getDocument.body.innerText = iHTML; } // View Source for Mozilla/Netscape else { var html = document.createTextNode(getDocument.body.innerHTML); getDocument.body.innerHTML = ""; getDocument.body.appendChild(html); } // Hide the HTML Mode button and show the Text Mode button document.getElementById('HTMLMode' + n).style.display = 'none'; document.getElementById('textMode' + n).style.display = 'block'; // set the font values for displaying HTML source getDocument.body.style.fontSize = "12px"; getDocument.body.style.fontFamily = "Courier New"; viewTextMode = 1; }
[ "function viewSource(n) {\r\n var getDocument = document.getElementById(\"wysiwyg\" + n).contentWindow.document;\r\n var browserName = navigator.appName;\r\n\t\r\n\t// View Source for IE \t \r\n if (browserName == \"Microsoft Internet Explorer\") {\r\n var iHTML = getDocument.body.innerHTML;\r\n getDocument.body.innerText = iHTML;\r\n\t}\r\n \r\n // View Source for Mozilla/Netscape\r\n else {\r\n var html = document.createTextNode(getDocument.body.innerHTML);\r\n getDocument.body.innerHTML = \"\";\r\n getDocument.body.appendChild(html);\r\n\t}\r\n\t\r\n\t// set the font values for displaying HTML source\r\n\tgetDocument.body.style.fontSize = \"12px\";\r\n\tgetDocument.body.style.fontFamily = \"Courier New\"; \r\n}", "function viewText(n) {\r\n var getDocument = document.getElementById(\"wysiwyg\" + n).contentWindow.document;\r\n var browserName = navigator.appName;\r\n\r\n\t// View Text for IE\r\n if (browserName == \"Microsoft Internet Explorer\") {\r\n var iText = getDocument.body.innerText;\r\n getDocument.body.innerHTML = iText;\r\n\t}\r\n\r\n\t// View Text for Mozilla/Netscape\r\n else {\r\n var html = getDocument.body.ownerDocument.createRange();\r\n html.selectNodeContents(getDocument.body);\r\n getDocument.body.innerHTML = html.toString();\r\n\t}\r\n\r\n\t// Hide the Text Mode button and show the HTML Mode button\r\n document.getElementById('textMode' + n).style.display = 'none';\r\n\tdocument.getElementById('HTMLMode' + n).style.display = 'block';\r\n\r\n\t// reset the font values\r\n getDocument.body.style.fontSize = \"\";\r\n\tgetDocument.body.style.fontFamily = \"\";\r\n\tviewTextMode = 0;\r\n}", "function showSource()\n{\n var lang = 'en';\n if ('lang' in args)\n lang = args.lang;\n var idsr\t = this.id.substring(4);\n openFrame(\"source\",\n\t\t \"/FamilyTree/Source.php?idsr=\" + idsr + \"&lang=\" + lang,\n\t\t \"right\");\n return false;\n}", "function Source() {\n var $code = $(\"#source textarea\");\n\n this.print = function(o) {\n \t\n \t// Clean up HTML output with REGEX.\n \tvar formatted_u = $(\"#sandbox\").html(); \t\n \tformatted_u = formatted_u.replace(/&quot;/gi, \"\\'\").replace(/<br>/gi, '<br />').replace(/<hr>/gi, '<hr />');\n \t\n \t// PRINT TO TEXTAREA \n $code.text(style_html(formatted_u));\n };\n }", "function viewHtml() {\n var entry = ProjectManager.getSelectedItem();\n if (entry === undefined) {\n entry = DocumentManager.getCurrentDocument().file;\n }\n var path = entry.fullPath;\n var w = window.open(path);\n w.focus();\n }", "function FontViewer() {}", "function viewTemplateSource (url) {\n var location, win, div, count = 0;\n location = \"view-source:\" + url;\n win = window.open(null, \"Template source\", 'width=800,height=800,location=no,toolbar=no,menubar=no');\n win.focus();\n // creates a document in popup window and default message for unsupported browsers\n win.document.open();\n win.document.write('To actually see the template source code in this window you must use a browser supporting the view-source protocol');\n win.document.close();\n win.document.title = \"Source of '\" + url + \"'\";\n div = win.document.createElement('div');\n div.innerHTML = '<iframe src=\"' + \"javaScript:'To actually see the template source code in this window you must use a browser supporting the view-source protocol with relative URLs like Firefox'\" + '\" frameborder=\"0\" style=\"width:100%;height:100%\"><iframe>';\n win.document.body.replaceChild( div, win.document.body.firstChild );\n win.document.body.style.margin = \"0\";\n win.onload = function() {\n var doc = win.frames[0].document;\n $('pre', doc).css('white-space', 'pre-wrap'); // trick to wrap lines (Firefox)\n };\n // actually instructs to view template source\n // bind to load event to force a reload to avoid caching issue !\n $('iframe', div).bind('load', function () { if (!count++) { this.contentWindow.location.reload(true);} }).attr('src',location);\n }", "function showSource()\n{\n var doc_stuff=\"\";\n for(i=0; i<document.all.length; i++) \n {\n if (document.all[i].tagName.toUpperCase() !=\"BODY\" && document.all[i].tagName.toUpperCase() !=\"HEAD\")\n {\n doc_stuff+= document.all(i).outerHTML;\n }\n }\nopenWindowAndCopy(doc_stuff);\nblnDone=true;\n}", "showEditor() {}", "function generatePreview() {\n var ifrm = document.getElementById('preview');\n ifrm = (ifrm.contentWindow) ? ifrm.contentWindow : (ifrm.contentDocument.document) ? ifrm.contentDocument.document : ifrm.contentDocument;\n ifrm.document.open();\n ifrm.document.write($scope.editHtml);\n ifrm.document.close();\n }", "function showSource ()\n{\n var tags = document.getElementsByTagName('script');\n var footer = document.getElementById('footer');\n var regexp = new RegExp('^( +)//(.+)', 'gm');\n\n for (var i=0; i<tags.length; ++i) {\n if (tags[i].innerHTML.indexOf('new RGraph.') > 0 && tags[i].innerHTML.indexOf('.innerHTML.indexOf(')<= 0) {\n var pre = document.createElement('samp');\n pre.innerHTML = (' &lt;script&gt;' + tags[i].innerHTML + '&lt;/script&gt;')\n .replace(/^ /,'')\n .replace(/\\n /g,'\\n')\n .replace(/</g,'&lt;')\n .replace(/>/g,'&gt;')\n .replace(regexp, '$1<span>//$2</span>'); // Highlight comments\n pre.style.backgroundColor = '#eee';\n pre.style.backgroundImage = 'linear-gradient(-45deg, rgba(255,255,255,0.5), transparent)';\n pre.style.lineHeight = '20px !important';\n pre.style.overflow = 'auto';\n pre.style.padding = '15px';\n pre.style.display = 'block';\n pre.style.whiteSpace = 'pre';\n document.getElementById('dynamic-source-code').insertBefore(\n pre,\n null\n );\n }\n }\n}", "function previewOrigFormat()\n{\n var tmp = idEditor.innerHTML.replace(/<BR>/ig, \"\\n\");\n tmp = tmp.replace(/<[^>]*>/ig, \"\");\n tmp = tmp.replace(/&nbsp;/g, \" \");\n //tmp = tmp.replace(/&lt;/g, \"<\").replace(/&gt;/g, \">\");\n\n w_preview = window.open('', 'gxmlPreview',\n 'toolbar=no,scrollbars=yes,status=no,resizable=yes');\n var d = w_preview.document.open('text/html');\n d.write('<html><head><title>Original Format Preview</title>');\n d.write('<style>* { font-family: Courier New; font-size: x-small; }</style>');\n d.write('<script>function doKeyDown() ');\n d.write('{ if (window.event.keyCode == 27) window.close(); } ');\n d.write('</script>');\n d.write('</head><body onkeydown=\"doKeyDown()\">');\n d.write(\"<pre>\" + tmp + \"</pre>\");\n d.write('</body></html>');\n d.close();\n}", "function viewFile(file) {\n $('#fileName').html(file);\n $.get('src/' + file, function(text) {\n text = text.replace(/</g, '&lt;');\n text = text.replace(/>/g, '&gt;');\n var body = '';\n body += '<pre class=\"prettyprint\">' + text + '</pre>';\n body += '<script src=' + pretty + '></script>';\n $('#fileContents').html(body);\n }, 'text');\n}", "function speckEditor() {}", "function renderEditorText() {\n const text = document.getElementById('editor_view').value;\n // console.log('>> editor_view text:', text)\n const entry = nginw.transformText(text);\n renderWindow.document.querySelector('#feed').innerHTML = nginw.renderFeed(entry);\n renderWindow.document.querySelector('#render_view').innerHTML = nginw.renderArticle(entry);\n document.querySelector('#bodyWordCount').innerHTML = entry.wordCount.toString();\n document.querySelector('#headingsCount').innerHTML = entry.headingsCount.toString();\n}", "viewSourceInDebugger(sourceURL, sourceLine) {\n return this.toolbox.viewSourceInDebugger(sourceURL, sourceLine);\n }", "function toolsEditor() {\n var features = \"width=800,height=700,status=no,resizeable=yes,\"+\n \"scrollbars=yes\";\n var editorWin = window.open(\"/editor\", IDEVICE_EDITOR, features);\n}", "function TextEditor() {}", "function LivePreview(options) {\n var self = {};\n \n options.codeMirror.on(\"reparse\", function(event) {\n if (!event.error || options.ignoreErrors) {\n // Update the preview area with the given HTML.\n var doc = options.previewArea.contents()[0];\n var wind = doc.defaultView;\n var x = wind.pageXOffset;\n var y = wind.pageYOffset;\n\n doc.open();\n doc.write(event.sourceCode);\n doc.close();\n\n // Insert a BASE TARGET tag so that links don't open in\n // the iframe.\n var baseTag = doc.createElement('base');\n baseTag.setAttribute('target', '_blank');\n doc.querySelector(\"head\").appendChild(baseTag);\n\n // TODO: If the document has images that take a while to load\n // and the previous scroll position of the document depends on\n // their dimensions being set on load, we may need to refresh\n // this scroll position after the document has loaded.\n wind.scroll(x, y);\n }\n });\n \n return self;\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Make a simple job handler that sets start and end from a function that's synchronous.
function createJobHandler(fn, options = {}) { const handler = (argument, context) => { const description = context.description; const inboundBus = context.inboundBus; const inputChannel = new rxjs_1.Subject(); let subscription; return new rxjs_1.Observable(subject => { // Handle input. inboundBus.subscribe(message => { switch (message.kind) { case api_1.JobInboundMessageKind.Ping: subject.next({ kind: api_1.JobOutboundMessageKind.Pong, description, id: message.id }); break; case api_1.JobInboundMessageKind.Stop: // There's no way to cancel a promise or a synchronous function, but we do cancel // observables where possible. if (subscription) { subscription.unsubscribe(); } subject.next({ kind: api_1.JobOutboundMessageKind.End, description }); subject.complete(); // Close all channels. channels.forEach(x => x.complete()); break; case api_1.JobInboundMessageKind.Input: inputChannel.next(message.value); break; } }); // Configure a logger to pass in as additional context. const logger = new index_2.Logger('job'); logger.subscribe(entry => { subject.next({ kind: api_1.JobOutboundMessageKind.Log, description, entry, }); }); // Execute the function with the additional context. subject.next({ kind: api_1.JobOutboundMessageKind.Start, description }); const channels = new Map(); const newContext = Object.assign({}, context, { input: inputChannel.asObservable(), logger, createChannel(name) { if (channels.has(name)) { throw new ChannelAlreadyExistException(name); } const channelSubject = new rxjs_1.Subject(); channelSubject.subscribe(message => { subject.next({ kind: api_1.JobOutboundMessageKind.ChannelMessage, description, name, message, }); }, error => { subject.next({ kind: api_1.JobOutboundMessageKind.ChannelError, description, name, error }); // This can be reopened. channels.delete(name); }, () => { subject.next({ kind: api_1.JobOutboundMessageKind.ChannelComplete, description, name }); // This can be reopened. channels.delete(name); }); channels.set(name, channelSubject); return channelSubject; } }); const result = fn(argument, newContext); // If the result is a promise, simply wait for it to complete before reporting the result. if (index_3.isPromise(result)) { result.then(result => { subject.next({ kind: api_1.JobOutboundMessageKind.Output, description, value: result }); subject.next({ kind: api_1.JobOutboundMessageKind.End, description }); subject.complete(); }, err => subject.error(err)); } else if (rxjs_1.isObservable(result)) { subscription = result.subscribe((value) => subject.next({ kind: api_1.JobOutboundMessageKind.Output, description, value }), error => subject.error(error), () => { subject.next({ kind: api_1.JobOutboundMessageKind.End, description }); subject.complete(); }); return subscription; } else { // If it's a scalar value, report it synchronously. subject.next({ kind: api_1.JobOutboundMessageKind.Output, description, value: result }); subject.next({ kind: api_1.JobOutboundMessageKind.End, description }); subject.complete(); } }); }; return Object.assign(handler, { jobDescription: options }); }
[ "function Job( ) { }", "function main() {\n var args = Array.prototype.slice.call(arguments);\n if (args.length >= 2) {\n var thread = run(args[0], args[1]);\n if (args.length == 3) {\n thread.onStep = args[2];\n }\n return thread;\n } else {\n var func = args[0];\n if (func.length == 0) {//just normal sync JS code if function has no argument, fill the callback boilerplate\n func = function (callback) {\n var ret = args[0]();\n callback(ret);\n }\n }\n sync(func)();\n }\n }", "function wrapJob(job) {\n /*\n * Emulate the real job `progress` function.\n * If no argument is given, it behaves as a sync getter.\n * If an argument is given, it behaves as an async setter.\n */\n let progressValue = job.progress;\n job.progress = function(progress) {\n if (progress) {\n // Locally store reference to new progress value\n // so that we can return it from this process synchronously.\n progressValue = progress;\n // Send message to update job progress.\n return processSendAsync({\n cmd: 'progress',\n value: progress\n });\n } else {\n // Return the last known progress value.\n return progressValue;\n }\n };\n /**\n * Update job info\n */\n job.update = function(data) {\n process.send({\n cmd: 'update',\n value: data\n });\n };\n /*\n * Emulate the real job `log` function.\n */\n job.log = function(row) {\n return processSendAsync({\n cmd: 'log',\n value: row\n });\n };\n /*\n * Emulate the real job `update` function.\n */\n job.update = function(data) {\n process.send({\n cmd: 'update',\n value: data\n });\n job.data = data;\n };\n /*\n * Emulate the real job `discard` function.\n */\n job.discard = function() {\n process.send({\n cmd: 'discard'\n });\n };\n return job;\n}", "addJob() {\r\n \r\n }", "function async(f) {\n\t return function () {\n\t var argsToForward = [];\n\t for (var _i = 0; _i < arguments.length; _i++) {\n\t argsToForward[_i] = arguments[_i];\n\t }\n\t promiseimpl.resolve(true).then(function () {\n\t f.apply(null, argsToForward);\n\t });\n\t };\n\t}", "async function AsyncFunctionInstance() {}", "constructor (asyncFunction) {\r\n this.inProgress = false\r\n this.asyncFunction = asyncFunction\r\n }", "function callHandler(worker, logger, environment, touchBack, job, handler, callback) {\n\n worker.jobStatusUpdater.startJobStatus(job, function(startJobError) {\n if (startJobError) {\n logger.warn('job-processor.callHandler(): Unable to start job status for job: %J', job);\n return callback(errorBuilder.createFatal(startJobError, 'START_FAILED'), job);\n }\n\n worker.metrics.info('Handler Processing',{\n 'timer':'start',\n 'patientIdentifier': job.patientIdentifier,\n 'process':process.pid,\n 'jobType':job.type,\n 'domain':job.dataDomain,\n 'jobId':job.jobId,\n 'rootJobId':job.rootJobId\n });\n\n try {\n handler(logger, environment, job, function(handlerError) {\n worker.metrics.info('Handler Processing'+(handlerError?' in error':''),{\n 'timer':'stop',\n 'patientIdentifier': job.patientIdentifier,\n 'process':process.pid,\n 'jobType':job.type,\n 'domain':job.dataDomain,\n 'jobId':job.jobId,\n 'rootJobId':job.rootJobId\n });\n return callback(handlerError, job);\n }, touchBack);\n } catch (e) {\n logger.error('job-processor.callHandler(): Exception in job: %j', e);\n return callback(errorBuilder.createFatal(e), job);\n }\n });\n}", "async start({commit, state}, {flow, inputs}) {\n await http.post('jobs/run', emptyFunc, {flow, inputs})\n }", "async() {}", "function async(f) {\r\n return function () {\r\n var argsToForward = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n argsToForward[_i] = arguments[_i];\r\n }\r\n promiseimpl.resolve(true).then(function () {\r\n f.apply(null, argsToForward);\r\n });\r\n };\r\n}", "throttleRegisteredJob() {\n if (!this._ready) {\n // first call\n this._ready = true; // then stop the possibility to ask for a callback\n // wait for next micro task\n Promise.resolve().then(() => {\n if (this._ready) {\n // check if ready (synchronism check)\n this._ready = false; // come back to initial state\n // Call the method to throttle\n if (typeof this.job === 'function') {\n this.job();\n }\n }\n });\n }\n }", "function startJob() {\n var startJobURL =\n SERVICE_URL + `startjob?lot_num=${lotNum}&job_str=\"${testpoints}\"`\n console.log('startJobURL: ', startJobURL)\n fetch(startJobURL).then((res) =>\n res.text().then((message) => handleStartJob(message)),\n )\n}", "work() {}", "function async(f) {\r\n\t return function () {\r\n\t var argsToForward = [];\r\n\t for (var _i = 0; _i < arguments.length; _i++) {\r\n\t argsToForward[_i] = arguments[_i];\r\n\t }\r\n\t resolve(true).then(function () {\r\n\t f.apply(null, argsToForward);\r\n\t });\r\n\t };\r\n\t}", "function oota_request_async(url, parameters, handler)\n{\n\t// Send the HTTP request.\n\tif (window.XMLHttpRequest) \n\t{\n\t\tvar request = new XMLHttpRequest();\n\t\trequest.open(\"POST\", url, true);\n\t\trequest.setRequestHeader(\"Content-Type\", \"application/x-www-form-urlencoded; charset=UTF-8\");\n\t\trequest.onreadystatechange = handler;\n\t\trequest.send(parameters);\n\t}\n\telse if (window.ActiveXObject) \n\t{\n\t\tvar request = new ActiveXObject(\"Microsoft.XMLHTTP\");\n\t\trequest.open(\"POST\", url, true);\n\t\trequest.setRequestHeader(\"Content-Type\", \"application/x-www-form-urlencoded; charset=UTF-8\");\n\t\trequest.onreadystatechange = handler;\n\t\trequest.send(parameters);\n\t}\n}", "function async(f) {\r\n return function () {\r\n var argsToForward = [];\r\n for (var _i = 0; _i < arguments.length; _i++) {\r\n argsToForward[_i] = arguments[_i];\r\n }\r\n resolve(true).then(function () {\r\n f.apply(null, argsToForward);\r\n });\r\n };\r\n}", "function requestWrapper(args, next) {\n\t// have decided to call queue.run() after\n\t// adding each job, as opposed to calling\n\t// next() in the callback itself (is that\n\t// how qjobs' next() works?)\n\trequest(args[0], args[1]);\n}", "start () {\n if (this.startPromise) return this.startPromise\n this.startPromise = this.innerStart()\n return this.startPromise\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
handleEventStatus The main routine for handling event status messages from xMatters
function handleEventStatus(msg) { switch (msg.status) { case "active": // event created addAnnotationToIncidentWorkInfo( getIncidentID(msg), notePrefix + "Event " + msg.eventidentifier + " successfully created in xMatters" ); break; case "terminated": // time expired addAnnotationToIncidentWorkInfo( getIncidentID(msg), notePrefix + "Event " + msg.eventidentifier + " terminated" ); break; case "terminated_external": // terminated by user var incidentId = getIncidentID(msg); if (msg.username !== INITIATOR_USER_ID) { addAnnotationToIncidentWorkInfo( incidentId, notePrefix + "Event " + msg.eventidentifier + " manually terminated from within xMatters" /* + " by user [" + msg.username + "]" */ ); } else { // Ignore the events created and terminated by this integration and not the actual user log.info("handleEventStatus - incidentId [" + incidentId + "] event terminated by the user that initiated the event. Ignored."); } break; } }
[ "function handleStatusCallback(msg) {\n IALOG.debug(\"Enter - handleStatusCallback\");\n\n var incidentId = msg.additionalTokens.incident_id;\n var xmStatus = msg.status;\n\n // Create an annotation for xMatters Event status updates.\n var annotation = \"\";\n annotation = \"xMatters incident for BPPM event: \" + incidentId + \" | \" + xmStatus;\n\n IALOG.debug(\"Starting call to management system for status annotation for BPPM event: [\" + incidentId + \"]\");\n\n try {\n var bppmws = new BPPMWS();\n\n var result = bppmws.updateEvent(incidentId, bppmws.IMWS_STATUS_NONE, NO_ASSIGNEE, CALLOUT_USER, NO_LOGS, NOTE_PREFIX + annotation, false);\n\n IALOG.debug(\"Finished call to management system for status annotation for BPPM event: [\" + incidentId + \"] with result \" + result);\n } catch (e) {\n IALOG.error(\"Caught exception processing status annotation for BPPM event: [\" + incidentId + \"] Exception:\" + e);\n throw e;\n }\n IALOG.debug(\"Exit - handleStatusCallback\");\n}", "function OnStatusChangedEvent()\r\n{\r\n\ttrace(\"-- Status Changed Event\");\r\n\t\r\n\tif (!layoutInitialized)\r\n\t\ttrace(\"*** Layout is not initialized\");\r\n\t\r\n\tif (!UpdateLicenseStatus() || axNAVStatus.ProductLicenseState == DJSMAR00_LicenseState_Violated)\r\n\t{\r\n\t\tres.oHintLicenseViolated.innerText = res.oHintLicenseViolated.innerText.replace(/%s/g, g_ProductName);\t\t\r\n\t\tPanic(res.oTextTampered.innerText, res.oHintLicenseViolated.innerText);\r\n\t\treturn;\r\n\t}\r\n\r\n\tUpdateVirusDefStatus();\t// This may effect AP, Email, SB, and Spyware status\r\n\r\n\tUpdateAPStatus();\r\n\t\r\n\tif ( swInstalled )\r\n\t UpdateSWStatus();\r\n\t\r\n\tUpdateEmailStatus();\r\n\r\n\tif (iwpInstalled)\r\n\t\tUpdateWPStatus ();\r\n\r\n\tUpdateFullSystemScan ();\r\n\t\r\n\tUpdateALUStatus();\r\n\r\n\tUpdateSystemStatus();\r\n\t\r\n\ttrace(\"-- Done with Status Changed\");\r\n}", "function Send_wormholeStatusChangeEvent(data, status, handler) \n\t {\n\t\t data.status = status;\n\t\t ServerBroadcastData(io, \"wormhole_status_change\", data);\n\t\t if(handler) {\n\t\t\t return handler();\n\t\t }\n\t }", "function handleStatus(status) {\n\n\t\t}", "function connectionStatusListener(event) {\n trace(\"connection status: \" + event.status);\n if (event.status == ConnectionStatus.Established) {\n connected = true;\n trace('Connection has been established. Calling');\n status(\"Calling\");\n makeCall();\n } else if (event.status == ConnectionStatus.Failed) {\n $(\"#callBtn\").prop('disabled', false);\n }\n\n status(event.status);\n}", "event_status(renderer, status) {\n this.info(\"Vue3D 'status' event: \", {renderer, status})\n }", "function onStatusUpdated(e) {\n debug(\"onStatusUpdated\");\n // Since G+ animated the status count, for some reason innerHTML is set correctly whey innerText lags.\n var statusCount = parseInt( e.target.innerHTML.replace(/<[^>]*?>/g, ''), 10 );\n chrome.extension.sendRequest({action: 'gpmeStatusUpdate', count: statusCount});\n}", "function connectionStatusListener(event) {\n trace(event.status);\n if (event.status == ConnectionStatus.Established) {\n trace('Connection has been established. You can start a new call.');\n $(\"#connectBtn\").text(\"Disconnect\").prop('disabled',false);\n $(\"#publishBtn\").prop('disabled', false);\n $(\"#playBtn\").prop('disabled', false);\n } else {\n if (event.status == ConnectionStatus.Disconnected) {\n if (recordFileName) {\n showDownloadLink(recordFileName);\n }\n }\n resetStates();\n }\n setConnectionStatus(event.status);\n}", "function handleStatus(xml) {\r\n\t$(xml).find(\"Jobstatus\").each(function() {\r\n\t\ttype=$(this).attr(\"msg\");\r\n\t\t\r\n\t\ttext=$(this).text();\r\n\t\taddToStatusConsole(type+\": \"+text);\r\n\t\tif (type==\"completed\") {\r\n\t\t\t$(\".cancel\").button(\"option\",\"disabled\",true);\r\n\t\t\tclearInterval(resultsPoll);\r\n\t\t\tsetProcessingPropertiesToUnknown();\r\n\t\t\t\r\n\t\t\t//happens if the user used a hash with an job ID for a non-existant job\r\n\t\t} else if (type==\"notfound\") {\r\n\t\t\t$(\".cancel\").button(\"option\",\"disabled\",true);\r\n\t\t\tclearInterval(resultsPoll);\r\n\t\t\tsetProcessingPropertiesToUnknown();\r\n\t\t}\r\n\t});\r\n\t$(xml).find(\"Log\").each(function() {\r\n\t\ttype=$(this).attr(\"class\");\r\n\t\ttext=$(this).text();\r\n\t\taddToStatusConsole(type+\": \"+text);\r\n\t});\r\n}", "function setStatusListener() {\n if (typeof statusObserver !== 'undefined') {\n return; // Already set.\n }\n\n // Listen for changes on this module status to show a message to the user.\n statusObserver = $mmEvents.on(mmCoreEventPackageStatusChanged, function(data) {\n if (data.siteid === $mmSite.getId() && data.componentId === scorm.coursemodule &&\n data.component === mmaModScormComponent) {\n showStatus(data.status);\n }\n });\n }", "function handleStatusDisplay(message) {\n // va hacer el resultado de las funciones winMessage,drawMessage,currentPlayerTrun\n statusDisplay.innerHTML = message\n}", "function setStatusListener() {\n if (typeof statusObserver !== 'undefined') {\n return; // Already set.\n }\n\n // Listen for changes on this module status to show a message to the user.\n statusObserver = $mmEvents.on(mmCoreEventPackageStatusChanged, function(data) {\n if (data.siteid === $mmSite.getId() && data.componentId === module.id &&\n data.component === mmaModQuizComponent) {\n showStatus(data.status);\n }\n });\n }", "function handleConnectionStatus(event) {\n if (event.type === 'online') {\n updateBadge();\n } else if (event.type === 'offline') {\n render(\n '?',\n [245, 159, 0, 255],\n chrome.i18n.getMessage('browserActionErrorTitle')\n );\n }\n }", "emitStatus(event) {\n this.emit('status', event);\n }", "function setStatusListener() {\n if (typeof statusObserver !== 'undefined') {\n return; // Already set.\n }\n\n // Listen for changes on this module status to show a message to the user.\n statusObserver = $mmEvents.on(mmCoreEventPackageStatusChanged, function(data) {\n if (data.siteid === $mmSite.getId() && data.componentId === module.id && data.component === mmaModLessonComponent) {\n updateStatus(data.status);\n }\n });\n }", "onKernelStatus(sender, state) {\n this._statusChanged.emit(state);\n }", "function statusListeners() {\r\n addKeyUpListener(stsBackground, function () {\r\n\tapplyStatusBar();\r\n\tgenerateConfig();\r\n });\r\n setValue(stsBackground, \"#000000\");\r\n addKeyUpListener(stsLine, function () {\r\n\tapplyStatusBar();\r\n\tgenerateConfig();\r\n });\r\n setValue(stsLine, \"#ffffff\");\r\n addKeyUpListener(stsSeparator, function () {\r\n\tapplyStatusBar();\r\n\tgenerateConfig();\r\n });\r\n setValue(stsSeparator, \"#666666\");\r\n}", "onMediaStatusUpdated(handler) {\n return EventEmitter.addListener(Native.MEDIA_STATUS_UPDATED, handler);\n }", "function status(msg) {\n if (platform_1.isMacintosh) {\n alert(msg); // VoiceOver does not seem to support status role\n }\n else {\n insertMessage(statusContainer, msg);\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
user is "finished typing," do something
function doneTyping () { //do something }
[ "function doneTyping () {\n //do something\n }", "function doneTyping () {\n //do something\n }", "function doneTyping () {\n //do something\n callback();\n }", "function doneTyping() {\n sendMessage('typing', false);\n writing = false;\n }", "function doneTyping() {\r\n search();\r\n}", "function doneTyping() {\r\n\t\t//do something\r\n\t\tconsole.log('done typing!')\r\n\t\tdt = true\r\n\t}", "function doneTyping() {\n tour.next()\n }", "function doneTyping () {\n //do something\n console.log(\")))\");\n}", "function doneTyping () {\n calculateScore($input.val());\n updateView();\n }", "function autoCheckTyping() {\n checkIsTyping();\n setTimeout(autoCheckTyping, 3000);\n}", "checkTyping(e) {\n const text = e.target.value;\n const typing = this.state.typing;\n if (typing === 1 && text.length === 0) {\n // user finished typing\n this.echoTyping(0);\n }\n if (typing === 0 && text.length > 0) {\n // user started typing\n this.echoTyping(1);\n }\n this.setState({\n msgText: text,\n });\n\n }", "function type() {\n if (charIndex < textArray[textArrayIndex].length) { \n if(!cursorSpan.classList.contains(\"typing\")) cursorSpan.classList.add(\"typing\");\n typedTextSpan.textContent += textArray[textArrayIndex].charAt(charIndex); \n charIndex++; // increase character by one\n setTimeout(type, typingDelay);\n } \n else {\n cursorSpan.classList.remove(\"typing\");\n \tsetTimeout(erase, newTextDelay);\n }\n}", "checkTyping() {\n const self = this;\n\n const typingTimer = (new Date()).getTime();\n const duration = typingTimer - self.lastTypingTime;\n if (self.didReachTypingTimeout(duration, self.typingTimeout, self.isTyping)) {\n self.isTyping = false;\n }\n }", "function isTyping() {\n\tvar message = $('#message-text-field').html();\n\tfunction loop(){\n\tsetTimeout(function () {\n message= checkTyping(message);\n\t\t\n\t\tif (true){\n\t\t\tloop();\n\t\t}\n\t//Can change to increase and decrease how often you check if you are typing\n }, 2635);\n\t}\n\tloop();\n}", "function onInputBoxTyping() {\n window.clearTimeout(typingTimer)\n }", "function type() {\n if(charIndex < textArray[textArrayIndex].length){ //char index < word in text array \n if(!cursorSpan.classList.contains(\"typing\")){\n cursorSpan.classList.add(\"typing\") //If cursor span doesn't have typing class while typing, add it\n }\n typedTextSpan.textContent += textArray[textArrayIndex].charAt(charIndex) // += allows for entire word to be typed\n charIndex++\n setTimeout(type, typingDelay) //call type function again after waiting for typingDelay\n } else { \n cursorSpan.classList.remove(\"typing\") //returns blinking effect\n setTimeout(erase, newTextDelay)\n }\n}", "function updateTyping() {\n if (!typing) {\n typing = true;\n socket.emit(\"typing\", username);\n }\n lastTypingTime = new Date().getTime();\n\n setTimeout(function () {\n var typingTimer = new Date().getTime();\n var timeDiff = typingTimer - lastTypingTime;\n if (timeDiff >= TYPING_TIMER_LENGTH && typing) {\n socket.emit(\"stop typing\", username);\n typing = false;\n }\n }, TYPING_TIMER_LENGTH);\n }", "function typing() {\n if (charIndex == textArray.length) {\n charIndex = 0;\n if (wordIndex == words.length - 1) {\n wordIndex = 0;\n } else {\n wordIndex++;\n }\n setTimeout(function () {\n type();\n }, 1000);\n } else {\n span = document.createElement(\"span\");\n span.innerHTML = textArray[charIndex];\n output.appendChild(span);\n charIndex++;\n setTimeout(typing, 100);\n }\n}", "function updateTyping () {\n if (username) {\n if (!typing) {\n typing = true;\n socket.emit('typing');\n }else{\n // console.log('stoptyping1');\n }\n lastTypingTime = (new Date()).getTime();\n\n setTimeout(function () {\n var typingTimer = (new Date()).getTime();\n var timeDiff = typingTimer - lastTypingTime;\n if (timeDiff >= TYPING_TIMER_LENGTH && typing) {\n socket.emit('stop typing');\n typing = false;\n }\n }, TYPING_TIMER_LENGTH);\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Compute & output piece from its S/N.
function updatePiece(element) { var sn = $(element).find(".sn").val().trim(); // Generate piece. var piece = computePiece(sn, { cropped: $("#cropped").prop('selected'), trapezoidal:$("#trapezoidal").prop('selected') }); // Output to SVG. var svg = drawSVG(piece, $(element).find("svg")[0]); // Adjust viewbox so that all pieces are centered and use the same scale. svg.attr('viewBox', ((piece.bbox.x2-piece.bbox.x)-maxWidth)/2 + " " + ((piece.bbox.y2-piece.bbox.y)-maxHeight)/2 + " " + maxWidth + " " + maxHeight); }
[ "function out_s ([n, x]) { // DX -> GDX\n //console.log ('out_s', n, x)\n const node = out (x)\n const [c, x1, a, x2] = node\n // The part below implements the distributive law DGX -> GDX. \n return c === TEST ? [ TEST, [ n, x1 ], a, [ n, x2 ] ]\n : c === ENTER ? [ ENTER, [ n, x1 ], a, [ n+1, x2 ] ]\n : c === LEAVE ? [ LEAVE, [ n-1, x1 ] ]\n : node }", "parseToS(instruction) {\n // Can only be of same type\n return instruction.coordinates.abs;\n }", "function update_pieces(){\n if(player === 1){\n piecesp1 += NW+N+NE+CW+CE+SW+S+SE+1;\n piecesp2 -= NW+N+NE+CW+CE+SW+S+SE;\n }\n else{\n piecesp1 -= NW+N+NE+CW+CE+SW+S+SE;\n piecesp2 += NW+N+NE+CW+CE+SW+S+SE+1;\n }\n}", "function piece(){}", "function equilibriate(piece, newux, newuy, newrho) {\n const result = num.tidy(() => {\n // Helpful values\n const { one36th, one9th, four9ths } = params;\n const ones = num.ones(state.n0[piece].tensor.shape);\n const ux3 = newux * 3;\n const uy3 = newuy * 3;\n const ux2 = newux ** 2;\n const uy2 = newuy ** 2;\n const uxuy2 = newux * newuy * 2;\n const u2 = ux2 + uy2;\n const u215 = u2 * 1.5;\n const one36thrho = newrho * one36th;\n const one9thrho = newrho * one9th;\n const four9thsrho = newrho * four9ths;\n\n const n0_ = ones.sub(u215).mult(four9thsrho);\n\n const nE_ = ones.mult(ux2)\n .mult(4.5)\n .add(ones)\n .add(ux3)\n .sub(u215)\n .mult(one9thrho);\n\n const nW_ = ones.mult(ux2)\n .mult(4.5)\n .add(ones)\n .sub(ux3)\n .sub(u215)\n .mult(one9thrho);\n\n const nN_ = ones.mult(uy2)\n .mult(4.5)\n .add(ones)\n .add(uy3)\n .sub(u215)\n .mult(one9thrho);\n\n const nS_ = ones.mult(uy2)\n .mult(4.5)\n .add(ones)\n .sub(uy3)\n .sub(u215)\n .mult(one9thrho);\n\n const nNE_ = ones.mult(u2)\n .add(uxuy2)\n .mult(4.5)\n .add(ones)\n .add(ux3)\n .add(uy3)\n .sub(u215)\n .mult(one36thrho);\n\n const nSE_ = ones.mult(u2)\n .sub(uxuy2)\n .mult(4.5)\n .add(ones)\n .add(ux3)\n .sub(uy3)\n .sub(u215)\n .mult(one36thrho);\n\n const nNW_ = ones.mult(u2)\n .sub(uxuy2)\n .mult(4.5)\n .add(ones)\n .sub(ux3)\n .add(uy3)\n .sub(u215)\n .mult(one36thrho);\n\n const nSW_ = ones.mult(u2)\n .add(uxuy2)\n .mult(4.5)\n .add(ones)\n .sub(ux3)\n .sub(uy3)\n .sub(u215)\n .mult(one36thrho);\n\n const ux_ = ones.mult(newux);\n const uy_ = ones.mult(newuy);\n const rho_ = ones.mult(newrho);\n\n return {\n n0_,\n nE_,\n nW_,\n nN_,\n nS_,\n nNE_,\n nSE_,\n nNW_,\n nSW_,\n ux_,\n uy_,\n rho_,\n };\n });\n\n ['n0', 'nE', 'nW', 'nN', 'nS', 'nNE', 'nSE', 'nNW', 'nSW', 'ux', 'uy', 'rho'].forEach((quantity) => {\n state[quantity][piece].dispose();\n state[quantity][piece] = result[`${quantity}_`];\n });\n}", "firstOut(u) { return Math.trunc(this._firstEpOut[u]/2); }", "function equilibriate(pieces, newux, newuy, newrho) {\n state = num.tidy(() => {\n // Microscopic properties\n let n0 = fragment(state.n0);\n let nN = fragment(state.nN);\n let nS = fragment(state.nS);\n let nE = fragment(state.nE);\n let nW = fragment(state.nW);\n let nNW = fragment(state.nNW);\n let nNE = fragment(state.nNE);\n let nSW = fragment(state.nSW);\n let nSE = fragment(state.nSE);\n // Macroscopic properties\n let rho = fragment(state.rho);\n let ux = fragment(state.ux);\n let uy = fragment(state.uy);\n // Helpful values\n const { one36th, one9th, four9ths } = params;\n for (let i = 0; i < pieces.length; i += 1) {\n const p = pieces[i];\n const ones = num.Tensor.ones(n0[p].tensor.shape);\n const ux3 = newux * 3;\n const uy3 = newuy * 3;\n const ux2 = newux ** 2;\n const uy2 = newuy ** 2;\n const uxuy2 = newux * newuy * 2;\n const u2 = ux2 + uy2;\n const u215 = u2 * 1.5;\n const one36thrho = newrho * one36th;\n const one9thrho = newrho * one9th;\n const four9thsrho = newrho * four9ths;\n\n n0[p] = ones.sub(u215).mult(four9thsrho);\n\n nE[p] = ones.mult(ux2)\n .mult(4.5)\n .add(ones)\n .add(ux3)\n .sub(u215)\n .mult(one9thrho);\n\n nW[p] = ones.mult(ux2)\n .mult(4.5)\n .add(ones)\n .sub(ux3)\n .sub(u215)\n .mult(one9thrho);\n\n nN[p] = ones.mult(uy2)\n .mult(4.5)\n .add(ones)\n .add(uy3)\n .sub(u215)\n .mult(one9thrho);\n\n nS[p] = ones.mult(uy2)\n .mult(4.5)\n .add(ones)\n .sub(uy3)\n .sub(u215)\n .mult(one9thrho);\n\n nNE[p] = ones.mult(u2)\n .add(uxuy2)\n .mult(4.5)\n .add(ones)\n .add(ux3)\n .add(uy3)\n .sub(u215)\n .mult(one36thrho);\n\n nSE[p] = ones.mult(u2)\n .sub(uxuy2)\n .mult(4.5)\n .add(ones)\n .add(ux3)\n .sub(uy3)\n .sub(u215)\n .mult(one36thrho);\n\n nNW[p] = ones.mult(u2)\n .sub(uxuy2)\n .mult(4.5)\n .add(ones)\n .sub(ux3)\n .add(uy3)\n .sub(u215)\n .mult(one36thrho);\n\n nSW[p] = ones.mult(u2)\n .add(uxuy2)\n .mult(4.5)\n .add(ones)\n .sub(ux3)\n .sub(uy3)\n .sub(u215)\n .mult(one36thrho);\n\n ux[p] = ones.mult(newux);\n uy[p] = ones.mult(newuy);\n rho[p] = ones.mult(newrho);\n }\n\n n0 = fuse(n0);\n nE = fuse(nE);\n nW = fuse(nW);\n nN = fuse(nN);\n nS = fuse(nS);\n nNE = fuse(nNE);\n nSE = fuse(nSE);\n nNW = fuse(nNW);\n nSW = fuse(nSW);\n ux = fuse(ux);\n uy = fuse(uy);\n rho = fuse(rho);\n\n for (const t in state) {\n state[t].dispose();\n }\n\n return {\n n0,\n nE,\n nW,\n nN,\n nS,\n nNE,\n nSE,\n nNW,\n nSW,\n ux,\n uy,\n rho,\n };\n });\n}", "function up_n(rP,SP,rN,aN,dN,aP,dP,SN)\n{\n\n\n\n let up_n_condition =rP + ((SN - rN) * (aN/dN));\n let up_n_condition_2 = rP + ((SN-rN) * (2 * ((dN/aP))-(aN/dP)));\n\n\n if(SP < up_n_condition ) // first scenario\n {\n up_n=SP;\n\n }\n else if ( SP > up_n_condition_2 ) // second scenario\n {\n up_n= rP+((SN-rN) * (dN/aP)); \n }\n else // third scenario\n {\n \n up_n=SP - ((0.25 * (SP - rP - ((SN - rN) * (aN/dP)))**2)/((SN - rN) * ((dN/aP) - (aN/dP))));\n \n }\n \n return parseFloat(up_n);\n}", "wwt_KPI_GHG_sludge_incineration(){\n let sludge_mass = this.wwt_mass_slu_inc; //kg of sludge incinerated\n let Tf = this.wwt_temp_inc; //K\n let N_cont = this.wwt_slu_inc_N_cont/100; //gN/gSludge\n let SNCR = this.wwt_slu_inc_SNCR; //yes/no\n\n //if Tf < 750ºC, use 750 ºC (1023 K)\n if(Tf < 1023){ Tf = 1023 }\n\n //gases\n let co2 = 0;\n let ch4 = (4.85e-5)*sludge_mass*Cts.ct_ch4_eq.value;\n let n2o = (function(){\n //n = % of total N that is emitted as N2O (suzuki et al 2003)\n let n = (161.3-0.14*Tf)/100; //gN2O/gN\n if(n<0) return 0;\n\n let emission = sludge_mass*N_cont*n*Cts.ct_n2o_eq.value; //kgCO2eq\n\n //increase N2O emissions by 20% if SNCR is used\n if(SNCR) emission *= 1.2;\n\n return emission;\n })();\n\n let total = co2+ch4+n2o;\n return {total,co2,ch4,n2o};\n }", "function calc (n) {\nvar i=n;\n const res1 = halfNumber(i);\n //return res1;//2.5\n\n const res2 = squareNumber(i);\n //return res2;//res2 should be 4\n //\n const res3 = areaOfCircle(res2);\n //return res3;\n //\n // const res4 = percentOf(res3, res2);\n // //return res4;\n document.write(\"\\n Half Number = \" + res1);\n document.write(\"\\n Square No. \" + res2);\n document.write(\"\\n Area Of Circle \" +res3);\n}", "simplex2_out() {\n\t\tvar ind = -1;\n\t\tvar a = 0;\n\t\tfor (let i=0; i<this.n; i++) {\n\t\t\tif (this.b_numerator[i] >= 0) continue;\n\t\t\tif (this.b_numerator[i] / this.b_denominator[i] < a) {\n\t\t\t\tind = i;\n\t\t\t\ta = this.b_numerator[i] / this.b_denominator[i];\n\t\t\t}\n\t\t}\n\t\treturn ind;\n\t}", "function XYZtoPSU(points,stationFile) { //Main Function\n\n\n for (var i = 1; i < points.length; i++) {\n\n var relStation = RelStation(points[i], stationFile);\n var Slopedist = SlopeDist(points[i], relStation);\n points[i].slopeDist = parseFloat(parseFloat(Slopedist).toFixed(3));\n\n var Vangle = (VerticalAngle(points[i], Slopedist, relStation));\n points[i].VAngle = parseFloat(parseFloat(DegtoBear(Vangle)).toFixed(4));\n var Hangle = (HorizontalAngle(points[i], Vangle, Slopedist, relStation));\n points[i].HAngle = parseFloat(parseFloat(DegtoBear(Hangle)).toFixed(4));\n }\n var finalP = CreatePObj(points);\n var finalS = CreateSObj(stationFile);\n var finalU = CreateUObj(points);\n\n var result = {P: finalP, U: finalU, S: finalS};\n //console.log(result.S);\n\n //console.log(result.U);\n\n //console.log(result.P);\n \n \n\n return result;\n}", "simplex_out(index_in) {\n\t\tvar ind = -1;\n\t\tvar min_a = 0;\n\t\tfor (let i=0; i<this.n; i++) {\n\t\t\tif (this.numerator[i][index_in] <= 0) continue;\nvar a = (this.b_numerator[i] / this.b_denominator[i]) * (this.denominator[i][index_in] / this.numerator[i][index_in]);\n\t\t\tif (a < 0) continue;\n\t\t\tif (ind == -1 || a < min_a) {\n\t\t\t\tind = i;\n\t\t\t\tmin_a = a;\n\t\t\t}\n\t\t}\n\t\treturn ind;\n\t}", "function part2(expectedOut, startingState, debug = false) {\n for(let n=0; n<=99; n++){\n for(let v=0; v<=99; v++){\n const modifiedProgramInput = [...startingState];\n modifiedProgramInput[1] = n; //replace position 1 with noun\n modifiedProgramInput[2] = v; // replace position 2 with verb\n const calcOutput = intCode(modifiedProgramInput,debug);\n if (calcOutput[0] == expectedOut){\n console.log(\"Part 2 : \", ((100 * n) + v))\n return (100 * n) + v; //100 * noun + verb\n }\n }\n }\n\n}", "function PiecewiseLinearFunction() {\n this.pieces = [];\n }", "function getSC(d, p, q, level, s, c){\n var sources = [], counters = [],\n i = 0,\n sumBit = Base.getSumBit(level),\n tempDigit, value;\n \n while (i<=level){\n tempDigit = BI.dup(d);\n BI.rightShift_(tempDigit, sumBit - Base.getSumBit(i));\n value = BI.modInt(tempDigit,Math.pow(2,Base.getBitBase(i)));\n sources[i]=s;\n counters[i]=c\n if (q!==null && q.t.p===value){ sources[i]=q.t.s; counters[i]=q.t.c};\n if (p!==null && p.t.p===value){ sources[i]=p.t.s; counters[i]=p.t.c};\n if (q!==null && q.children.length!==0){\n q = q.children[0];\n } else {\n q = null;\n };\n if (p!==null && p.children.length!==0){\n p = p.children[0];\n } else {\n p = null;\n };\n ++i;\n };\n \n return new ID(d, sources, counters);\n}", "function get_output(step){\n if (step in out_table){\n return out_table[step];\n }\n let t = trace[step].output;\n if (step == 0) {\n out_table[step] = t;\n return t;\n }\n else {\n let prev_output = get_output(step-1);\n let o = prev_output + t;\n out_table[step] = o;\n return o;\n }\n}", "function computeSCSFinalSolution()\n{\n var solution = \"\";\n var i = scsTable.length - 1;\n var j = scsTable[0].length - 1;\n var table = document.getElementById(\"solution\");\n while(i!=0 || j!=0)\n {\n if(i == 0)\n {\n solution = s1.charAt(j - 1) + solution;\n j--;\n }\n else\n if(j == 0)\n {\n solution = s2.charAt(i - 1) + solution;\n i--;\n }\n else\n {\n var img = table.rows[i].cells[j + 1].children[0].children[1];\n var imgIndex = imageIndex(img);\n switch (imgIndex)\n {\n case 0:\n solution = s1.charAt(j - 1) + solution;\n j--;\n break;\n case 1:\n solution = s2.charAt(i - 1) + solution;\n i--;\n break;\n case 2:\n solution = s1.charAt(j - 1) + solution;\n i--;\n j--;\n break;\n default:\n }\n }\n }\n return solution;\n}", "compute() {\n let computedVal;\n const prev = parseFloat(this.previousOut);\n const curr = parseFloat(this.currentOut);\n if (isNaN(prev) || isNaN(curr)) return;\n switch (this.operation) {\n case \"+\":\n computedVal = prev + curr;\n break;\n case \"-\":\n computedVal = prev - curr;\n break;\n case \"×\":\n computedVal = prev * curr;\n break;\n case \"÷\":\n computedVal = prev / curr;\n break;\n default:\n return;\n }\n this.currentOut = computedVal;\n this.operation = undefined;\n this.previousOut = \"\";\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
var d3put = d3find.append('circle'); d3put.attr('cx', 50).attr('cy', 50).attr('r', 40).attr('stroke', 'blue').attr('strokewidth', 3).attr('fill', 'white'); var d3put = d3find.append('circle'); d3put.attr('cx', 150).attr('cy', 50).attr('r', 40).attr('stroke', 'black').attr('strokewidth', 3).attr('fill', 'white'); var d3put = d3find.append('circle'); d3put.attr('cx', 250).attr('cy', 50).attr('r', 40).attr('stroke', 'red').attr('strokewidth', 3).attr('fill', 'white'); var d3put = d3find.append('circle'); d3put.attr('cx', 100).attr('cy', 100).attr('r', 40).attr('stroke', 'yellow').attr('strokewidth', 3).attr('fill', 'white'); var d3put = d3find.append('circle'); d3put.attr('cx', 200).attr('cy', 100).attr('r', 40).attr('stroke', 'green').attr('strokewidth', 3).attr('fill', 'white');
function GO1() { var d3put = d3find.append('circle'); d3put.attr('cx', 50).attr('cy', 50).attr('r', 40).attr('stroke', 'blue').attr('stroke-width', 3).attr('fill', 'white'); }
[ "function GO11() {\n var d3put = d3find.append('circle');\n d3put.attr('cx', 50).attr('cy', 50).attr('r', 40).attr('stroke', 'blue').attr('stroke-width', 3).attr('fill', 'white').attr('id', 'g01');\n}", "function createcircles() {\n\t\t\t\t\tsvg.selectAll(\"circle\")\n\t\t\t\t\t.data(data)\n\t\t\t\t\t.enter()\n\t\t\t\t\t.append(\"circle\")\n\t\t\t\t\t.attr(\"r\", +diameter)\n\t\t\t\t\t.attr(\"fill-opacity\", 0.9)\n\t \t\t\t.attr(\"class\", function(d){\n\t\t\t\t\t\t\t\treturn d.Borough;});\n\t\t\t\t\t}", "function dd3(s) {\n\t//Create a svg\n\tvar width = 800;\n\tvar height = 400;\n\tvar svg = d3.select(\"body\")\n\t\t\t\t.append(\"svg\")\n\t\t\t\t.attr(\"width\", width)\n\t\t\t\t.attr(\"height\", height);\n\n\t//Put information from the object into an array\n\tvar data = [];\n\tfor(var k in s) {\n\t\tdata.push({\n\t\t\t\"key\": k,\n\t\t\t\"value\": s[k],\n\t\t});\n\t}\n\n\t//Create nodes that group circles and texts together\n\tvar nodes = svg.selectAll(\"g\")\n\t\t\t\t\t.data(data)\n\t\t\t\t\t.enter()\n\t\t\t\t\t.append(\"g\")\n\t\t\t\t\t.attr(\"class\", \"nodes\")\n\n\tvar circles = nodes.append(\"circle\");\n\n\tvar texts = nodes.append(\"text\")\n\n\t//Create a list of random numbers to position the circles and texts\n\trandomx = [];\n\trandomy = [];\n\n\tfor (var i=0; i<data.length; i++) {\n\t\trandomx[i] = Math.random()*width;\n\t\trandomy[i] = Math.random()*height;\n\t}\n\n\n\t//Create a scale to scale the font sizes\n\tvar textScale = d3.scale.linear()\n\t\t\t\t\t\t.domain([getMin(s), getMax(s)])\n\t\t\t\t\t\t.range([100, 600]);\n\t//Scale for radius\n\tvar circleScale = d3.scale.linear()\n\t\t\t\t\t\t.domain([getMin(s), getMax(s)])\n\t\t\t\t\t\t.range([1, 200]);\n\n\t//Set attributes to circles\n\tcircles.attr(\"cx\", function(d, i){\n\t\t\t\treturn randomx[i]; //Need to take care of collisions\n\t\t\t})\t\t\t\t\t\t\t\t//The circle may fall off the svg\n\t\t\t.attr(\"cy\", function(d, i){\n\t\t\t\treturn randomy[i]; //Need to take care of collisions\n\t\t\t})\n\t\t\t.attr(\"r\", function(d){\n\t\t\t\treturn circleScale(d.value);\n\t\t\t})\n\t\t\t.style(\"fill\", \"transparent\")\n\t\t\t.style(\"stroke\", \"blue\")\n\t\n\t//Set attributes to texts\n\ttexts.attr(\"text-anchor\", \"middle\")\n\t\t\t.text(function(d) {\n\t\t\t\treturn d.key;\n\t\t\t})\n\t\t\t.attr(\"x\", function(d, i) {\n\t\t\t\treturn randomx[i];\n\t\t\t})\n\t\t\t.attr(\"y\", function(d, i) {\n\t\t\t\treturn randomy[i];\n\t\t\t})\n\t\t\t.attr(\"font-size\", function(d) {\n\t\t\t\treturn textScale(d.value)+\"%\";\n\t\t\t})\n\n\t//maybe I should use rectangles instead of circles. Circles have too much empty space for each word\n}", "function drawCircles(cytobandId, coordinates) {\n\n // Fetch chromosome name:\n var chromosomeName = (cytobandId.match(\"p\")) ? cytobandId.split(\"p\")[0] : cytobandId.split(\"q\")[0];\n\n\n // Get sorted data:\n var sortedCategories = filterSortData(cytobandId);\n\n // TODO: This should look though, but works for now\n var yCoordinates = 0;\n var xCoordinates = 0;\n\n // Group ID\n var groupId = \"group_\" + cytobandId.replace(\".\", \"_\");\n\n // Create a group:\n var chromosome = d3.select(\"#chromosome\" + chromosomeName);\n var cytobandGroup = chromosome.append(\"g\")\n .attr(\"id\", groupId)\n .attr(\"class\", \"cytoband_associations\");\n\n // Start populating the sort position data:\n if (!(chromosomeName in window.cytobandSortPositions)) {\n var centre = chromosome.select(\"#centre\" + chromosomeName).attr(\"d\").split(\" \")[1].split(\",\")[1];\n window.cytobandSortPositions[chromosomeName] = {\n \"q\": [],\n \"p\": [],\n \"center\": Number(centre)\n };\n }\n\n // populate data:\n if (cytobandId.match(\"p\")) {\n window.cytobandSortPositions[chromosomeName][\"p\"].push([groupId, Number(coordinates[1]), getRadius(sortedCategories[0][1])]);\n }\n else if (cytobandId.match(\"q\")) {\n window.cytobandSortPositions[chromosomeName][\"q\"].push([groupId, Number(coordinates[1]), getRadius(sortedCategories[0][1])]);\n }\n else {\n return\n }\n\n // Adding circles:\n // <circle r=\"4.0985145\" fill=\"#FDB462\" stroke=\"black\" stroke-width=\"0.5\" gwasname=\"t ype II diabetes mellitus\" class=\"gwas-trait EFO_0001360\" fading=\"false\" gwasassociation=\"11785,13327,13346\" priority=\"0\" />\n for (var category of sortedCategories) {\n var radius = getRadius(category[1]);\n if (xCoordinates === 0) {\n xCoordinates = radius\n } else {\n xCoordinates = xCoordinates + radius\n }\n cytobandGroup.insert(\"circle\")\n .attr(\"cx\", xCoordinates)\n .attr(\"cy\", yCoordinates)\n .attr(\"r\", radius)\n .style(\"fill\", category[2])\n .style(\"stroke\", \"black\")\n .style(\"stroke-width\", \"0.1\")\n }\n\n // Now translate the group to the proper place:\n cytobandGroup.attr(\"transform\", `translate(70,${coordinates[1]})`)\n}", "function setupRings() {\r\n main_svg = d3.select(\"#main\").append(\"svg\")\r\n .attr(\"id\", \"svg_container\")\r\n .attr(\"width\", size)\r\n .attr(\"height\", size);\r\n d3.select(\"#category-select\").property(\"value\", category);\r\n d3.select(\"#v1\").property(\"value\", value1);\r\n d3.select(\"#v2\").property(\"value\", value2);\r\n d3.select(\"#v3\").property(\"value\", value3);\r\n d3.select(\"#v4\").property(\"value\", value4);\r\n d3.select(\"#v5\").property(\"value\", value5);\r\n d3.select(\"#c1\").property(\"value\", color1);\r\n d3.select(\"#c2\").property(\"value\", color2);\r\n d3.select(\"#c3\").property(\"value\", color3);\r\n d3.select(\"#c4\").property(\"value\", color4);\r\n d3.select(\"#c5\").property(\"value\", color5);\r\n d3.select(\"#c0\").property(\"value\", color0);\r\n}", "function circleddoubleclicked() {\n\n\n \n let random = Math.floor(Math.random() * 10)\n let random1 = Math.floor(Math.random() * 11)\n circle.attr('fill', d3.schemeCategory10[random]);\n rect.attr('fill', d3.schemeCategory10[random1]);\n\n}", "function D3FifthCircle(position) {\n // Diatonic wheel\n this.svg = d3.select('.cercle-quintes[data-index=\"'+position+'\"]')\n .append(\"svg:svg\")\n .attr(\"width\", 320)\n .attr(\"height\", 320);\n\n // Draw circle\n this.svg.append(\"svg:circle\")\n .attr(\"cy\", 160)\n .attr(\"cx\", 160)\n .attr(\"r\", 130)\n .attr(\"fill\", \"none\")\n .attr(\"stroke\", \"black\");\n\n // Draw axis\n var axis = this.svg.append(\"svg:g\")\n .attr(\"class\", \"axis\")\n .selectAll(\"text.label\")\n .data(Chord.prototype.CYCLIC_SCALE)\n .enter()\n .append(\"svg:g\")\n .attr(\"transform\", function(d, i){\n return \"rotate(\" + Math.round(360 / Chord.prototype.CYCLIC_SCALE.length * i - 90) + \", 160, 160) translate(290, 160)\";\n });\n\n // Ticks\n axis.append(\"svg:line\")\n .attr(\"x1\", 1)\n .attr(\"y1\", 0)\n .attr(\"x2\", 5)\n .attr(\"y2\", 0)\n .attr(\"stroke\", \"black\");\n\n // Ticks label\n axis.append(\"svg:text\")\n .text(function(note){\n return note;\n })\n .attr(\"font-weight\", \"700\")\n .attr(\"x\", function(d, i){\n if (i > 0 && i < 6) {\n return 8;\n } else if (i > 6) {\n return -(this.getBBox().width + 8);\n }\n\n return -(this.getBBox().width / 2);\n })\n .attr(\"y\", function(d, i){\n if (i === 0) {\n return -8;\n } else if (i > 3 && i < 9) {\n return this.getBBox().height;\n }\n\n return 0;\n })\n .attr(\"fill\", function(d, i){\n return D3FifthCircle.prototype.COLORS[i];\n })\n .attr(\"transform\", function(d, i){\n return \"rotate(\" + Math.round(90 - 360 / Chord.prototype.CYCLIC_SCALE.length * i) + \")\";\n });\n\n // Pre-draw chord\n this.chord = this.svg.append(\"svg:path\")\n .attr(\"class\", \"chord\")\n .attr(\"stroke\", \"none\");\n\n this.lastChord = null;\n}", "function drawDonut(country, data, category, circleColor, average) {\n // Define max values for each category\n if (category == \"Wellbeing\") {\n max = 8\n }\n else if (category == \"HPI\") {\n max = 100\n }else {\n max = 100\n }\n\n // Update data to selected country\n var dataset = data[country][category]\n data = [dataset, max - dataset]\n\n var color = d3.scaleLinear()\n .domain([0,1])\n .range([circleColor, \"#E5E4E4\"])\n\n // Set margin values\n var margin = {top: 0, right: 0, bottom: 0, left: 0},\n width = 210 - margin.left - margin.right,\n height = 230 - margin.top - margin.bottom,\n padding = 50,\n outerRadius = 60,\n innerRadius = 50,\n x = 3,\n y = 2;\n\n // Append new svg element\n var donut = d3.select(\"body\")\n .append(\"svg\")\n .attr(\"id\", category)\n .attr(\"class\", \"circlesvg\")\n .style(\"fill-opacity\", 0.4)\n .attr(\"width\", width)\n .attr(\"height\", height)\n .attr(\"transform\", \"translate(\" + 10 + \",\" + 10 + \")\");\n\n // Add a tooltip that shows the average of the hovered category\n var tool_tip = d3.tip()\n .attr(\"class\", \"average\")\n .direction('w')\n .html(function(d) { return \"Average \" + category +\n \" : \" + Math.round(average[category]); });\n donut.call(tool_tip);\n donut.on(\"mouseover\", tool_tip.show)\n .on(\"mouseout\", tool_tip.hide);\n\n var arc = d3.arc()\n .innerRadius(innerRadius)\n .outerRadius(outerRadius);\n var pie = d3.pie()\n .value(function(d) { return d; })\n .sort(null);\n\n // Make the paths (circles) in the svg element(s)\n donut.selectAll(\"path\")\n .data(pie(data))\n .enter()\n .append('path')\n .attr('d', arc)\n .transition()\n .attr(\"fill\", function(d,i) {\n \treturn color(i);\n })\n .each(function(d) { this._current = d; })\n .attr(\"transform\", \"translate(\" + width / x + \",\" + height / y + \")\");\n\n // Add datapoint in the middle of the donut\n donut.append(\"text\")\n .attr(\"id\", \"innerText\" + category)\n \t .attr(\"text-anchor\", \"middle\")\n \t\t .attr('font-size', '4em')\n \t\t .attr('y', height / y + 2)\n .attr('x', width / x)\n .attr(\"class\", \"innercircle\")\n \t .text(dataset);\n\n // Add maximum value to inner donut text\n donut.append(\"text\")\n \t .attr(\"text-anchor\", \"middle\")\n \t\t .attr('font-size', '4em')\n \t\t .attr('y', height / y + 20)\n .attr('x', width / x)\n .attr(\"class\", \"max\")\n \t .text(\"/\" + max);\n\n // Add category title to donut\n donut.append(\"text\")\n \t .attr(\"text-anchor\", \"middle\")\n \t\t .attr('y', height / y - 90)\n .attr('x', width / x)\n .attr(\"class\", \"cirlcetitle\")\n \t .text(category);\n }", "function dot(winlatitude, winlongitudine, data, runlatitude, runlongitudine) {\n\n //longitude and latitude data here\n\n\n //display winning city circles \n svg.selectAll(\".city-circle\")\n .data(someData)\n .enter().append(\"circle\")\n .attr(\"r\", 5)\n .attr(\"cx\", function(d) {\n var coords = projection([winlongitudine, winlatitude])\n\n return coords[0];\n })\n .attr(\"cy\", function(d) {\n var coords = projection([winlongitudine, winlatitude])\n return coords[1];\n })\n .style(\"fill\", \"yellow\")\n .style(\"stroke\", \"grey\")\n\n\n //display runner up city circles \n svg.selectAll(\".city-circle\")\n .data(someData)\n .enter().append(\"circle\")\n .attr(\"r\", 5)\n .attr(\"cx\", function(d) {\n var coords = projection([runlongitudine, runlatitude])\n\n return coords[0];\n })\n .attr(\"cy\", function(d) {\n var coords = projection([runlongitudine, runlatitude])\n return coords[1];\n })\n .style(\"fill\", \"#e1e1e1\")\n .style(\"stroke\", \"grey\")\n\n}", "function add_data_radar(data, nb_angles, size, posx, posy, nb_sep, col, d3v5_version){\n d3v5=d3v5_version\n let labels = [\"hp\", \"def\", \"atk\", \"sp_def\", \"sp_atk\", \"spd\"]\n let stat=[]\n for(let i = 0 ; i< labels.length; i++){\n let d = data[labels[i]]\n stat[i] = d\n }\n\n let max_stat= Math.max(...stat)\n let outer_circle = 50*nb_sep\n let base_circle = d3v5.select(\"#svg_circle\")\n let angles=[]\n let position = []\n\n for(let i = 0; i<nb_angles; i++){\n let a = i*2*Math.PI/nb_angles + 3*(Math.PI)/2\n angles[i]=a\n let px=posx + stat[i]/outer_circle*size*Math.cos(a)\n let py=posy + stat[i]/outer_circle*size*Math.sin(a)\n position[i]={\"x\": px, \"y\": py}\n transx=posx +(size+(labels[i].length)*6)*Math.cos(a) - ((labels[i].length)*3)\n transy = posy+(size+5)*Math.sin(a)+4\n rot= 90*Math.cos(a)\n base_circle.append(\"text\")\n .attr(\"x\", transx)\n .attr(\"y\", transy)\n .text(labels[i])\n .attr(\"font-family\", \"Andale Mono,AndaleMono,monospace\")\n .attr(\"class\", \"id_card\")\n .style(\"fill\", \"maroon\")\n\n base_circle.append(\"text\")\n .attr(\"x\", px)\n .attr(\"y\", py)\n .text(stat[i])\n .attr(\"font-family\", \"Andale Mono,AndaleMono,monospace\")\n .style(\"font-size\", 15)\n .attr(\"class\", \"id_card\")\n .attr(\"alignment-baseline\", \"central\")\n .attr(\"text-anchor\", \"middle\")\n .style(\"fill\", \"black\")\n\n }\n let linefct = d3v5.line()\n .x(function(d) { return d.x; })\n .y(function(d) { return d.y; })\n\n base_circle.append(\"path\")\n .attr(\"d\", linefct(position))\n .attr(\"stroke\", \"none\")\n .attr(\"stroke-width\", 2)\n .attr(\"fill\", col)\n .attr(\"opacity\", 0.5)\n .attr(\"class\", \"id_card\")\n\n\n\n}", "function add_circle_tooltips() {\n svg.selectAll(\"path\").each(function(d) {\n var path = d3.select(this),\n title = '';\n if (path.attr('fill') == '#d7efc5') {\n title = \"Significant basepair\";\n significant_basepairs += 1;\n } else if (path.attr('fill') == '#d90000') {\n title = \"Nucleotide present 97%\";\n } else if (path.attr('fill') == '#000000') {\n title = \"Nucleotide present 90%\";\n } else if (path.attr('fill') == '#807b88') {\n title = \"Nucleotide present 75%\";\n } else if (path.attr('fill') == '#ffffff') {\n title = \"Nucleotide present 50%\";\n }\n\n if (path.attr('stroke-width') == 1.44) {\n basepairs += 1;\n }\n\n if (title) {\n path.on(\"mouseover\", function(d) {\n tooltip.transition()\n .duration(200)\n .style(\"opacity\", .9);\n tooltip.html(title)\n .style(\"left\", (d3.event.pageX) + \"px\")\n .style(\"top\", (d3.event.pageY - 28) + \"px\");\n }).on(\"mouseout\", function(d) {\n tooltip.transition()\n .duration(500)\n .style(\"opacity\", 0);\n });\n }\n });\n }", "function addCircle(circls){\n\t\tvar g3 = canvas.append(\"g\");\n\t\t\tg3.selectAll(\".circ\")\n\t\t\t .data(circls)\n\t\t\t .enter().append(\"circle\")\n\t\t\t .attr(\"class\", \"circ\")\n\t\t\t .attr(\"cx\", function(d) { return d.cx;})\n\t\t\t .attr(\"cy\", function(d) { return d.cy;})\n\t\t\t .attr(\"r\", function(d) { return d.r;})\n\t\t\t .style(\"fill\", \"gray\")\n\t\t\t .style(\"fill-opacity\", 0.0);\n\t}", "function create_pokeball(size, posx, posy, d3v5_version){\n\n d3v5=d3v5_version\n let base_circle = d3v5.select(\"#svg_circle\")\n const opa=0.7\n\n let arc = d3v5.arc()\n .innerRadius(0)\n .outerRadius(size-8)\n .startAngle(-Math.PI/2);\n\n let bottom = base_circle.append(\"path\")\n .attr(\"transform\", \"translate(\"+[posx, posy]+\") rotate(180)\")\n .attr(\"fill\", \"white\")\n .attr(\"id\", \"base_circle2\")\n .attr(\"class\", \"pokeball\")\n .attr('opacity', opa)\n .datum({endAngle: -Math.PI/2})\n .attr(\"d\", arc)\n\n bottom.transition()\n .duration(900)\n .attrTween(\"d\", arcTween(Math.PI/2, arc, d3v5_version));\n\n let arc2 = d3v5.arc()\n .innerRadius(0)\n .outerRadius(size-8)\n .startAngle(Math.PI/2);\n\n let top = base_circle.append(\"path\")\n .attr(\"transform\", \"translate(\"+[posx, posy]+\") rotate(180)\")\n .attr(\"fill\", \"red\")\n .attr(\"id\", \"base_circle2\")\n .attr(\"class\", \"pokeball\")\n .attr('opacity', opa)\n .datum({endAngle: Math.PI/2})\n .attr(\"d\", arc2)\n\n top.transition()\n .duration(900)\n .attrTween(\"d\", arcTween(3*Math.PI/2, arc2, d3v5_version))\n\n\n let black_center=base_circle.append(\"circle\")\n .attr(\"cx\", posx)\n .attr(\"cy\", posy)\n .attr(\"class\", \"pokeball\")\n .attr(\"r\", 0)\n .attr(\"fill\", \"black\")\n\n black_center.transition()\n .attr(\"r\", size/5)\n .duration(500)\n .delay(700)\n\n let black_line=base_circle.append(\"rect\")\n .attr(\"x\", posx)\n .attr(\"y\", posy-size/20)\n .attr(\"width\", 0)\n .attr(\"height\", size/10)\n .attr(\"class\", \"pokeball\")\n .attr(\"fill\", \"black\")\n\n black_line.transition()\n .attr(\"x\", posx-size+8)\n .attr(\"width\", 2*size-16)\n .duration(500)\n .delay(700)\n\n\n let white_center=base_circle.append(\"circle\")\n .attr(\"cx\", posx)\n .attr(\"cy\", posy)\n .attr(\"class\", \"pokeball\")\n .attr(\"r\", 0)\n .attr(\"fill\", \"white\")\n\n white_center.transition()\n .attr(\"r\", size/10)\n .duration(500)\n .delay(700)\n\n}", "function svg_circle(cx, cy, r, stroke, fill) {\r\n\tvar newElement = document.createElementNS(\"http://www.w3.org/2000/svg\", 'circle'); //Create a path in SVG's namespace\r\n\tnewElement.setAttribute(\"class\",\"svgobject\"); //Set path's data\t\r\n\tnewElement.setAttribute(\"cx\",cx); //Set path's data\r\n\tnewElement.setAttribute(\"cy\",cy); //Set path's data\r\n\tnewElement.setAttribute(\"r\",5); //Set path's data\r\n\tnewElement.setAttribute(\"fill\",fill);\r\n\tnewElement.setAttribute(\"stroke\",stroke);\r\n\tsvg.appendChild(newElement);\r\n\treturn newElement;\r\n }", "drawCircles() {\n let heights = {};\n let lastYear = this.circleObjs[0].year;\n let yearSum = 0;\n\n // Get the total height of the stacked circles for each year\n this.circleObjs.forEach(obj => {\n if (lastYear != obj.year) {\n heights[lastYear] = yearSum;\n lastYear = obj.year;\n yearSum = 0;\n }\n yearSum += obj.cradius * 2;\n });\n heights[lastYear] = yearSum;\n\n let lastX = 20;\n lastYear = this.circleObjs[0].year;\n\n // offset the circle stack height so it is centered on each line\n let lastY = 55 - heights[lastYear] / 2 - this.circleObjs[0].cradius * 2;\n this.svg.append('g')\n .attr('class', 'circleGroup')\n .attr('transform', 'translate(0, 75)')\n .selectAll('circle')\n .data(this.circleObjs, d => d.year)\n .join('circle')\n .attr('r', d => d.cradius)\n .attr('cx', d => { // place circles on next line only if the year changes\n if (lastYear != d.year) {\n lastX += this.xSpacing;\n lastYear = d.year;\n }\n return lastX;\n })\n .attr('cy', d => { // place circles on next line only if the year changes\n if (lastYear != d.year) {\n lastYear = d.year;\n lastY = 55 - heights[lastYear] / 2;\n }\n let result = lastY;\n lastY += d.cradius * 2;\n return result + d.cradius;\n })\n .on('mouseover', function (e, d) { // add tooltip and style change on hover\n let tooltipSelect = d3.select(\"#tooltipcmpyearfire\");\n tooltipSelect\n .style(\"opacity\", 0);\n let tooltipData = [d.rank, d.acres];\n // tooltip header\n tooltipSelect.select(\".card-title\")\n .text(d.name);\n //Populate tooltip body:\n let attrGroup = tooltipSelect.select(\".card-body\").selectAll(\"div\")\n .data(tooltipData);\n attrGroup.selectAll(\"span.h5\").data(d => [d])\n .text(d => d);\n //Tooltip footer:\n tooltipSelect.select(\"#tooltipcmpyearfire-period\")\n .text(d.year);\n tooltipSelect\n .style(\"left\", (e.pageX - 245) + 'px')\n .style(\"top\", (e.pageY + 20) + 'px')\n .classed(\"d-none\", false)\n .style(\"transform\", \"translate(-50px,-50px) scale(0.4)\")\n .transition()\n .duration(200)\n .style(\"opacity\", 1.0)\n .style(\"transform\", \"scale(1)\");\n tooltipSelect.select(\".card\").raise();\n\n d3.select(this).classed('fireCircle-hover', true);\n })\n .on('mouseout', function () {\n d3.select('#tooltipcmpyearfire')\n .style(\"opacity\", 0)\n .classed(\"d-none\", true)\n .style(\"transform\", \"\");\n d3.select(this).classed('fireCircle-hover', false)\n })\n .attr('class', d => { // set the default style of each circle; circle styles are named 'period' + <year range of circle>\n let year = +d.year;\n if (year === 2020) {\n return 'fireCircle period2020';\n } else if (year >= 1990) {\n return 'fireCircle period1990-2019';\n } else if (year >= 1960) {\n return 'fireCircle period1960-1989';\n } else {\n return 'fireCircle';\n }\n });\n }", "addPoints(container, data, color) {\n let circles = container.selectAll(\"circle\").data(data, this.keyFromCoords);\n\n return circles\n .enter()\n .append(\"circle\")\n .attr(\"cx\", d => this.getX(d.lon))\n .attr(\"cy\", d => this.getY(d.lat))\n .attr(\"r\", d => d.radius)\n .style(\"fill\", color)\n .style(\"stroke\", \"black\")\n .style(\"stroke-width\", 1);\n\n //circles.exit().remove();\n }", "function squareclicked() {\n\n let random = Math.floor(Math.random() * 10)\n circle.attr('fill', d3.schemeCategory10[random]);\n\n}", "function generated3pie() {\n var data = getData(mineJson()); // data for d3 pie chart\n var svg = d3.select(\"svg\"), // svg selector\n width = svg.attr(\"width\"),\n height = svg.attr(\"height\"),\n radius = Math.min(width, height) / 2,\n g = svg.append(\"g\").attr(\"transform\", \"translate(\" + width / 2 + \",\" + height / 2 + \")\");\n var color = d3.scaleOrdinal([\"#98abc5\", \"#8a89a6\", \"#7b6888\", \"#6b486b\", \"#a05d56\", \"#d0743c\", \"#ff8c00\"]); // schemeCategory10 generates random colors. d3 v4.0\n var pie = d3.pie(); // To calculate arc angles\n var arc = d3.arc().innerRadius(0).outerRadius(radius); // For now, let's keep it i\n var arcs = g.selectAll(\"arc\")\n .data(pie(data))\n .enter()\n .append(\"g\")\n .attr(\"class\", \"arc\");\n arcs.append(\"path\")\n .attr(\"fill\", function(d, i) {return color(i); })\n .attr(\"d\", arc);\n arcs.append(\"text\")\n .attr(\"transform\", function(d) {\n d.innerRadius = 120;\n return \"translate(\" + arc.centroid(d) + \")\";\n }).attr(\"dy\", \".35em\").text(function(d) { return d.value; });\n }", "function create_radar(data, nb_angles, size, posx, posy, nb_sep, col, d3v5_version){\n d3v5=d3v5_version\n let labels = [\"hp\", \"def\", \"atk\", \"sp_def\", \"sp_atk\", \"spd\"]\n let stat=[]\n for(let i = 0 ; i< labels.length; i++){\n let d = data[labels[i]]\n stat[i] = d\n }\n\n let max_stat= Math.max(...stat)\n let outer_circle = 50*nb_sep\n\n let base_circle = d3v5.select(\"#svg_circle\")\n let angles=[]\n let position = []\n for(let k =nb_sep; k>0; k--){\n for(let i = 0; i<=nb_angles; i++){\n let a = i*2*Math.PI/nb_angles + 3*(Math.PI)/2\n angles[i]=a\n let px=posx + size/nb_sep*k*Math.cos(a)\n let py=posy + size/nb_sep*k*Math.sin(a)\n position[i]={\"x\": px, \"y\": py}\n }\n let linefct = d3v5.line()\n .x(function(d) { return d.x; })\n .y(function(d) { return d.y; })\n\n base_circle.append(\"path\")\n .attr(\"d\", linefct(position))\n .attr(\"stroke\", \"black\")\n .attr(\"stroke-width\", 2)\n .attr(\"fill\", \"gainsboro\")\n .attr(\"id\", \"radar_base\")\n .attr(\"class\", \"id_card\")\n }\n let transx = posx+0.95*size\n base_circle.append(\"text\")\n .text(outer_circle)\n .attr(\"transform\", \"translate(\"+transx+\", \"+posy+\") rotate(90)\")\n .attr(\"text-anchor\", \"middle\")\n .attr(\"font-family\", \"Andale Mono,AndaleMono,monospace\")\n .attr(\"class\", \"id_card\")\n .style(\"fill\", col)\n\n\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
hide navbar func & clear the interval
function hideNavbar(){ pageHeader.style.display = "none"; clearInterval(tictoc); }
[ "function clearnavbar() {\r\n}", "function hide() {\n const currentScroll = window.pageYOffset;\n let lastScroll = 0;\n //show in position top\n if (currentScroll <= 0) {\n navbar.classList.remove(\"hide\");\n return;\n }\n\n if (currentScroll > lastScroll && !navbar.classList.contains(\"hide\")) {\n // when scrollin is down\n navbar.classList.add(\"hide\");\n }\n lastScroll = currentScroll;\n}", "function hideNavbar() {\n let timer = null;\n const navbar = document.querySelector(\".page__header\");\n window.addEventListener(\"scroll\", () => {\n if (timer !== null) {\n clearTimeout(timer);\n navbar.style.top = 0;\n }\n timer = setTimeout(() => {\n navbar.style.top = \"-50px\";\n }, 2000);\n });\n}", "function navbarHiddenAndShown() {\n\n var windowSize = window.innerWidth;\n\n var prevScrollpos = window.pageYOffset;\n\n window.onscroll = function () {\n var currentScrollPos = window.pageYOffset;\n\n if (prevScrollpos > currentScrollPos) {\n \n document.getElementById(\"navbar\").style.top = \"0\";\n } else {\n document.getElementById(\"navbar\").style.top = \"-100px\";\n }\n prevScrollpos = currentScrollPos;\n }\n}", "function hideNavbar() {\n $(\".navbar\").effect('slide', {\n direction: 'up',\n mode: 'hide'\n }, 400);\n}", "function navbarTimeOut(){\n setTimeout(function(){document.getElementsByClassName(\"navbar__menu\")[0].style.visibility='visible'},0); //is this idea is good or there is a better way ?\n if (window.scrollY >= sections[0].offsetTop ){\n setTimeout(function(){document.getElementsByClassName(\"navbar__menu\")[0].style.visibility='hidden'},1500);\n }\n}", "function hideNavBar(){\n let currentScrollPos = window.pageYOffset;\n if (prevScrollpos > currentScrollPos) {\n showHeader();\n } else {\n collapseHeader();\n }\n prevScrollpos = currentScrollPos;\n}", "function showAndHideNavBar() {\n window.onscroll = navbarHide;\n}", "function HideShowHeader() {\n\n var didScroll;\n var lastScrollTop = 0;\n var delta = 50;\n var navbarHeight = 75;\n var navbarHideAfter = navbarHeight\n\n $(window).scroll(function (event) {\n didScroll = true;\n });\n\n if ($('.scroll-hide').length > 0) {\n\n setInterval(function () {\n if (didScroll) {\n hasScrolled();\n didScroll = false;\n }\n }, 100);\n }\n return false;\n\n function hasScrolled() {\n var st = $(this).scrollTop();\n\n if (Math.abs(lastScrollTop - st) <= delta)\n return;\n\n if (st > lastScrollTop && st > navbarHideAfter) {\n if ($('.scroll-hide').length > 0) {\n $('header').addClass('hide');\n }\n } else {\n if ($('.scroll-hide').length > 0) {\n if (st + $(window).height() < $(document).height()) {\n $('header').removeClass('hide');\n $('.header.transparent').addClass('scroll');\n }\n }\n\n if ($(window).scrollTop() < 300) {\n $('.header.transparent').removeClass('scroll');\n }\n }\n\n lastScrollTop = st;\n }\n }", "function navBarToggle() {\n\tclearTimeout(timeout);\n\tnavBar.classList.add('navbar-visible');\n\ttimeout = setTimeout(function() {\n\t\tnavBar.classList.remove('navbar-visible');\n\t}, 4000);\n}", "function hideMegaMenu() {\n // Set a timer to go off in 20ms to turn off the mega menu, unless something\n // happens to keep it alive (such as \"keepMegaMenu\")\n vm.timerPromise = $timeout(function() {\n vm.showMegaMenu = false;\n vm.timerPromise = null;\n removeActive();\n }, 20);\n\n //whenever megamenu is inactive, it resets everything (default logo/active)\n restoreLogo(10);\n }", "function showNavbar() {\r\n\r\n\t\tvar lista = document.getElementsByClassName(\"navbar-btn\");\r\n\t\tif(lista[1].style.display == \"none\") {\r\n\r\n \t\tdocument.getElementById(\"navbar-ul\").style.backgroundColor = \"rgb(200,200,160\";\r\n\t\t\tfor(j=0;j<4;j++) {\r\n\r\n\t\t\t\tlista[j].style.display = \"\";\r\n\t\t\t\tlista[j].style.width = \"100%\";\r\n\t\t\t}\r\n\r\n\t\t} else {\r\n\r\n\t\t\tfor(j=0;j<4;j++) {\r\n\r\n\t\t\t\tlista[j].style.display = \"none\";\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t}", "function removeAndHide() {\n removeActiveNavClass();\n hideCurrentSection()\n}", "function sg_hide_details(){\n\t\t//$('#startup-nav-spa').hide('slide', {direction: 'right'}, 250, function(){\n\t\t$('#startup-nav-spa').hide(50, function(){\n\t\t\t$(this).removeClass('active').attr('rel', '').find('.active').removeClass('active'); // slide out of view then remove all active from nav bar\n\t\t});\n\t}", "function hideNav() {\n if(isNavVisible === true) {\n noNav();\n\n } else {\n yesNav();\n }\n}", "hideInfobar() {\n clearInterval(this.flag);\n clearInterval(this.flag1);\n this.visible = false;\n }", "function hideNav(){\n const y=window.scrollY;\n const navBar=document.querySelector('.page__header');\n // Wait a second to check if the scrolling postion still the same\n setTimeout(()=>{\n if(y===window.scrollY && y!==0)\n // Make the top of is nav bar is '- his height'. Ex: -60px\n navBar.style.top=`-${navBar.getBoundingClientRect().height}px`;\n },1000);\n navBar.style.top='0';\n}", "function navbarExit()\n{\n let navbar = document.getElementById('mobileNav');\n\n /* The navbar and the exit button don't display */\n navbarExitButton.style.display = 'none';\n navbar.style.display = 'none';\n}", "function updateNavOnLogout() {\n $navLogin.show();\n $navLogOut.hide();\n $userNavLinks.hide();\n\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Functions Helper Function: get the value of requested micronutrient
function findMicronutrientValue(attribute_ID){ for(let i = 0; i < food_nutritionData["full_nutrients"].length; i++) { if(attribute_ID == food_nutritionData["full_nutrients"][i]["attr_id"]){ return food_nutritionData["full_nutrients"][i]["value"]; } } return "0"; }
[ "function MetroMI(){\r\n return Mmi/1609.344;\r\n}", "function MetroNM(){\r\n return Mnm*1e+9;\r\n}", "function getRvalue(pUnit, vUnit, nUnit, tUnit) {\n let valueOfR = \"\";\n if (\n (pUnit.toLowerCase() === \"atm\" || pUnit.toLowerCase() === \"atmosphere\") &&\n vUnit.toLowerCase() === \"l\" &&\n nUnit.toLowerCase() === \"mol\" &&\n tUnit.toLowerCase() === \"k\"\n ) {\n valueOfR = [\n `${drawRvalue(\"0.0821\", \"L.atm\", \"K.mol\")}`,\n 0.0821,\n \"0.0821 L.atm\",\n `0.0821 L.atm/K.mol`,\n `K.mol`,\n ];\n return valueOfR;\n } else if (\n pUnit.toLowerCase() === \"torr\" &&\n vUnit.toLowerCase() === \"l\" &&\n nUnit.toLowerCase() === \"mol\" &&\n tUnit.toLowerCase() === \"k\"\n ) {\n valueOfR = [\n `${drawRvalue(\"62.4\", \"L.torr\", \"K.mol\")}`, //pUnit.toLowerCase() === \"mmHg\"\n 62.36,\n \"62.36 L.torr\",\n `62.36 L.torr/K.mol`,\n `K.mol`,\n ];\n return valueOfR;\n } else if (\n pUnit.toLowerCase() === \"KPa\" &&\n vUnit.toLowerCase() === \"l\" &&\n nUnit.toLowerCase() === \"mol\" &&\n tUnit.toLowerCase() === \"k\"\n ) {\n valueOfR = [\n `${drawRvalue(\"8.31\", \"L.KPa\", \"K.mol\")}}`,\n 8.31,\n \"8.31 L.KPa\",\n `8.31 L.KPa/K.mol`,\n `K.mol`,\n ];\n return valueOfR;\n } else if (\n pUnit.toLowerCase() === \"mmHg\" &&\n vUnit.toLowerCase() === \"l\" &&\n nUnit.toLowerCase() === \"mol\" &&\n tUnit.toLowerCase() === \"k\"\n ) {\n valueOfR = [\n `${drawRvalue(\"62.36\", \"L.mmHg\", \"K.mol\")}}`, //pUnit.toLowerCase() === \"mmHg\"\n 62.36,\n \"62.36 L.mmHg\",\n `62.36 L.mmHg/K.mol`,\n `K.mol`,\n ];\n return valueOfR;\n }\n return false;\n}", "get nutrient () {\n\t\treturn this._nutrient;\n\t}", "get attitude() {}", "function getMicVolume() \n{\n return getVolume(VOLNAMEFRONTMIC);\n}", "rotationSpeed() {\n // values from device are 20.0=\"Silent\",40.0=\"Low\",60.0=\"Medium\",80.0=\"High\",102.0=\"Auto\"\n // convert to good usable slider in homekit in percent\n let currentValue = 0;\n if (this.fanSpeed === 40) {\n currentValue = 25;\n }\n else if (this.fanSpeed === 60) {\n currentValue = 50;\n }\n else if (this.fanSpeed === 80) {\n currentValue = 75;\n }\n else {\n currentValue = 100;\n }\n ;\n return currentValue;\n }", "get metar() { return this.data.current_observation.metar; }", "function get_armor_set_value(armor_set) {\n var value = 0;\n armor_set.forEach(item => {\n value += item.value;\n });\n return value;\n}", "windSpeed() {\n // values from device are 40.0=\"Silent\",60.0=\"Medium\",80.0=\"High\"\n // convert to good usable slider in homekit in percent\n let currentValue = 0;\n if (this.fanSpeed === 40) {\n currentValue = 30;\n }\n else if (this.fanSpeed === 60) {\n currentValue = 60;\n }\n else if (this.fanSpeed = 80) {\n currentValue = 100;\n }\n ;\n return currentValue;\n }", "get textureValue() {}", "get humanScale() {}", "magnitudeRead() {\n return this.readReg16(AS5048.MAGNMSB_REG);\n }", "_getCrewValue(item) {\n let value = 0;\n const crewProperty = Object.keys(CONFIG.WJMAIS.crewValues).find(prop => item.data.properties[prop]);\n if (crewProperty)\n value = CONFIG.WJMAIS.crewValues[crewProperty];\n return value;\n }", "getValue(dataType, value) {\n\n // Temperature\n if (dataType === 'temperature' && this._unit == 1) {\n return Math.round((value * 1.8) + 32); // Celsius to Fahrenheit\n } \n // Rain\n else if (dataType === 'rain' && this._unit == 1) {\n return value * 0.0393701; // mm/h to in/h\n }\n // Wind\n else if ((dataType === 'guststrength' || dataType === 'windstrength') && this._windUnit > 0) {\n switch (this._windUnit) {\n case 1:\n return value * 0.621371; // km/h to mi/h\n case 2:\n return value * 0.277778; // km/h to m/s\n case 3:\n return BEAUFORT(value, { unit: 'kmh', getName: false }); // km/h to beaufort\n case 4:\n return value * 0.539957; // km/h to knot\n }\n }\n // Pressure\n else if (dataType === 'pressure' && this._pressureUnit > 0) {\n switch (this._pressureUnit) {\n case 1:\n return value * 0.02953; // mbar to inHg\n case 2:\n return value * 0.750062; // mbar to mmHg\n }\n }\n // // Otherwise: co2, humidity, noise and units that don't need to be converted\n else {\n return value;\n }\n\n }", "get quaternionValue() {}", "get pitch() {}", "function getProperty(){\n var properties = [\"make\", \"model\", \"warranty\", \"colour\"];\n var y = 4 * Math.random(); //btw 0 and 4\n //Math.floor: 3.6->3, 2.4->2\n y = Math.floor(y);\n var property = properties[y];\n return property + \": \" + myPhone[property];\n}", "function getPaceUnit()\n{\n\tvar unit;\n\n\t\tunit = METERS_IN_MILE;\n\n\n\treturn unit;\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Definitions of all the color calculation functions Translated from Actionscript from original source !!!! Colors should be given to all these functions as rgb arrays [r, g, b] 0 <= r, g, b <= 255 return value is always an rgb array for colors ///////////////////////////////////////////////////////////////////////////// adds value to all color channels of input color returns an rgb array
function addToAllChannels(rgb, value) { var r = rgb[0] + value; var g = rgb[1] + value; var b = rgb[2] + value; if (r > 255) { r = 255; } if (g > 255) { g = 255; } if (b > 255) { b = 255; } if (r < 0) { r = 0; } if (g < 0) { g = 0; } if (b < 0) { b = 0; } return [r, g, b]; }
[ "function colorgrad() {\n var args = Array.prototype.slice.call(arguments)\n , arraymath = require('./arraymath')\n , spec\n , cstep\n , c1 = args[0]\n , c2 = null\n , rgb1\n , rgb2\n , outType = isArray(c1) ? 'rgb': 'hex'\n , add = arraymath(\"+\")\n , sub = arraymath(\"-\")\n , div = arraymath(\"/\")\n , mul = arraymath(\"*\")\n\n /*\n *\n * Unpack specification object\n *\n */\n if(isObj(args[1])) {\n spec = args[1]\n }\n else if (isObj(args[2])) {\n spec = args[2]\n c2 = args[1]\n }\n else\n spec = {}\n /*\n * Or with defaults\n */\n var lum = spec.lum || 1\n , n = spec.nshades || 100\n , type = spec.type || \"linear\"\n\n /*\n *\n * Design the color step array which will be\n * a length 3 vector.\n *\n */\n rgb1 = isArray(c1) ? c1 : hex2rgb(c1)\n if(c2) // If two hexcolors supplied\n rgb2 = isArray(c2) ? c2 : hex2rgb(c2)\n else // 2nd color is lum% incr/decr of color1\n rgb2 = add( mul(rgb1,[lum]), rgb1)\n\n // Create step size to step through color gradient\n cstep = div( sub(rgb2, rgb1), [n-1])\n\n var i\n , nc = []\n nc[0] = rgb1\n for (i = 1; i < n; ++i) {\n nc[i] = add(nc[i-1], cstep)\n }\n\n function clims(c) {\n if(c > 255)\n return 255\n else if(c < 0)\n return 0\n else return c\n }\n\n var result = []\n nc.forEach(function (ar) {\n ar = ar.map(Math.round).map(clims)\n if(outType === 'hex')\n ar = rgb2hex(ar)\n result.push( ar )\n })\n return result\n }", "function rgb(r, g, b){\n\n}", "function cAdd(color, rgbAdd) { // (Color, Color) -> Color\n return new Color(\n color.r + rgbAdd.r,\n color.g + rgbAdd.g,\n color.b + rgbAdd.b\n );\n}", "function add(color1) {\n\t var result = color1.slice();\n\n\t for (var _len2 = arguments.length, colors = new Array(_len2 > 1 ? _len2 - 1 : 0), _key2 = 1; _key2 < _len2; _key2++) {\n\t colors[_key2 - 1] = arguments[_key2];\n\t }\n\n\t for (var i = 0; i < 3; i++) {\n\t for (var j = 0; j < colors.length; j++) {\n\t result[i] += colors[j][i];\n\t }\n\t }\n\n\t return result;\n\t }", "function shiftColor(color) { //---no other occurrence in this lib\n var red_hex = parseInt(color.substring(1,3),16);\n var green_hex = parseInt(color.substring(3,5),16);\n var blue_hex = parseInt(color.substring(5,7),16);\n\n// an older use\n// red_hex = Math.round(red_hex + 0.5*(255-red_hex));\n// green_hex = Math.round(green_hex + 1.0*(255-green_hex));\n// blue_hex = Math.round(blue_hex + 0.5*(255-blue_hex));\n green_hex = 255;\n\n if(red_hex<0) red_hex=0;\n if(green_hex<0) green_hex=0;\n if(blue_hex<0) blue_hex=0;\n if(red_hex>255) red_hex=255;\n if(green_hex>255) green_hex=255;\n if(blue_hex>255) blue_hex=255;\n\n if(red_hex<16) var red_hex_str = \"0\" + red_hex.toString(16);\n else var red_hex_str = red_hex.toString(16);\n if(green_hex<16) var green_hex_str = \"0\" + green_hex.toString(16);\n else var green_hex_str = green_hex.toString(16);\n if(blue_hex<16) var blue_hex_str = \"0\" + blue_hex.toString(16);\n else var blue_hex_str = blue_hex.toString(16);\n\n return \"#\" + red_hex_str + green_hex_str + blue_hex_str;\n }", "function add_(color1) {\n\t for (var _len3 = arguments.length, colors = new Array(_len3 > 1 ? _len3 - 1 : 0), _key3 = 1; _key3 < _len3; _key3++) {\n\t colors[_key3 - 1] = arguments[_key3];\n\t }\n\n\t for (var i = 0; i < 3; i++) {\n\t for (var j = 0; j < colors.length; j++) {\n\t color1[i] += colors[j][i];\n\t }\n\t }\n\n\t return color1;\n\t }", "function blendColors(color1, color2){\n var newColor = [];\n for (i = 0; i < 3; i++) {\n newColor[i] = Math.round((color1[i] + color2[i]) / 2)\n }\n return rgbify(newColor);\n }", "GetColorArray() {}", "function getColors(){\n //Getting most used color\n let colors = colorThief.getColor(img);\n\n //creating the rgb code for leds\n rgbColor = \"rgb(\"+colors[0]+\",\"+colors[1]+\",\"+colors[2]+\")\"\n}", "function createColorsArray(size : int, n : int) {\n\tvar difference : int = size-n;\n \n\t// Red\n\tvar red1 : float = 255;\n\tvar green1 : float = 0;\n\tvar blue1 : float = 0;\n \n\t// Yellow\n\tvar red2 : float = 255;\n\tvar green2 : float = 255;\n\tvar blue2 : float = 0;\n \n\t// Green\n\tvar red3 : float = 0;\n\tvar green3 : float = 255;\n\tvar blue3 : float = 0;\n \n\t// From first (red) to middle (yellow) color\n\tvar redChange : float = (red2 - red1) / n;\n\tvar blueChange : float = (blue2 - blue1) / n;\n\tvar greenChange : float = (green2 - green1) / n;\n \n\t// From middle (yellow) to last (green) color\n\tvar redChange1 : float = (red3 - red2) / difference;\n\tvar blueChange1 : float = (blue3 - blue2) / difference;\n\tvar greenChange1 : float = (green3 - green2) / difference;\n \n // Interpolate first set of colors\n\tfor(var i : int = 0; i < n; i++) {\n\t\tred1 += redChange;\n\t\tblue1 += blueChange;\n\t\tgreen1 += greenChange;\n\t\tcolorArrayRed[i] = Mathf.Round(red1);\n\t\tcolorArrayGreen[i] = green1;\n\t\tcolorArrayBlue[i] = blue1;\n\t}\n\t\n\t// Interpolate second set of colors\n\tfor(var j : int = n; j < size; j++) {\n\t\tred2 += redChange1;\n\t\tblue2 += blueChange1;\n\t\tgreen2 += greenChange1;\n\t\tcolorArrayRed[j] = red2;\n\t\tcolorArrayGreen[j] = green2;\n\t\tcolorArrayBlue[j] = blue2;\n\t}\n}", "function getRGB(color) { var result; /* Check if we're already dealing with an array of colors */ if ( color && color.constructor == Array && color.length == 3 ) return color; /* Look for rgb(num,num,num) */ if (result = /rgb\\(\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*,\\s*([0-9]{1,3})\\s*\\)/.exec(color)) return [parseInt(result[1]), parseInt(result[2]), parseInt(result[3])]; /* Look for rgb(num%,num%,num%) */ if (result = /rgb\\(\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*,\\s*([0-9]+(?:\\.[0-9]+)?)\\%\\s*\\)/.exec(color)) return [parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55]; /* Look for #a0b1c2 */ if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color)) return [parseInt(result[1],16), parseInt(result[2],16), parseInt(result[3],16)]; /* Look for #fff */ if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color)) return [parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16)]; /* Look for rgba(0, 0, 0, 0) == transparent in Safari 3 */ if (result = /rgba\\(0, 0, 0, 0\\)/.exec(color)) return colors['transparent']; /* Otherwise, we're most likely dealing with a named color */ return colors[jQuery.trim(color).toLowerCase()]; }", "getRGB() {\n const colours = new Array(3).fill(0)\n if (typeof this.colour === 'string'\n && this.colour[0] === '#'\n && this.colour.length === 7 // 2 hex chars per colour, and a hash\n ) {\n colours[0] = parseInt(this.colour[1] + this.colour[2], HEXIDECIMAL_RADIX)\n colours[1] = parseInt(this.colour[3] + this.colour[4], HEXIDECIMAL_RADIX)\n colours[2] = parseInt(this.colour[5] + this.colour[6], HEXIDECIMAL_RADIX)\n }\n return colours\n }", "function RGBColor(b){this.ok=!1;\"#\"==b.charAt(0)&&(b=b.substr(1,6));b=b.replace(/ /g,\"\");b=b.toLowerCase();var k={aliceblue:\"f0f8ff\",antiquewhite:\"faebd7\",aqua:\"00ffff\",aquamarine:\"7fffd4\",azure:\"f0ffff\",beige:\"f5f5dc\",bisque:\"ffe4c4\",black:\"000000\",blanchedalmond:\"ffebcd\",blue:\"0000ff\",blueviolet:\"8a2be2\",brown:\"a52a2a\",burlywood:\"deb887\",cadetblue:\"5f9ea0\",chartreuse:\"7fff00\",chocolate:\"d2691e\",coral:\"ff7f50\",cornflowerblue:\"6495ed\",cornsilk:\"fff8dc\",crimson:\"dc143c\",cyan:\"00ffff\",darkblue:\"00008b\",\ndarkcyan:\"008b8b\",darkgoldenrod:\"b8860b\",darkgray:\"a9a9a9\",darkgreen:\"006400\",darkkhaki:\"bdb76b\",darkmagenta:\"8b008b\",darkolivegreen:\"556b2f\",darkorange:\"ff8c00\",darkorchid:\"9932cc\",darkred:\"8b0000\",darksalmon:\"e9967a\",darkseagreen:\"8fbc8f\",darkslateblue:\"483d8b\",darkslategray:\"2f4f4f\",darkturquoise:\"00ced1\",darkviolet:\"9400d3\",deeppink:\"ff1493\",deepskyblue:\"00bfff\",dimgray:\"696969\",dodgerblue:\"1e90ff\",feldspar:\"d19275\",firebrick:\"b22222\",floralwhite:\"fffaf0\",forestgreen:\"228b22\",fuchsia:\"ff00ff\",\ngainsboro:\"dcdcdc\",ghostwhite:\"f8f8ff\",gold:\"ffd700\",goldenrod:\"daa520\",gray:\"808080\",green:\"008000\",greenyellow:\"adff2f\",honeydew:\"f0fff0\",hotpink:\"ff69b4\",indianred:\"cd5c5c\",indigo:\"4b0082\",ivory:\"fffff0\",khaki:\"f0e68c\",lavender:\"e6e6fa\",lavenderblush:\"fff0f5\",lawngreen:\"7cfc00\",lemonchiffon:\"fffacd\",lightblue:\"add8e6\",lightcoral:\"f08080\",lightcyan:\"e0ffff\",lightgoldenrodyellow:\"fafad2\",lightgrey:\"d3d3d3\",lightgreen:\"90ee90\",lightpink:\"ffb6c1\",lightsalmon:\"ffa07a\",lightseagreen:\"20b2aa\",lightskyblue:\"87cefa\",\nlightslateblue:\"8470ff\",lightslategray:\"778899\",lightsteelblue:\"b0c4de\",lightyellow:\"ffffe0\",lime:\"00ff00\",limegreen:\"32cd32\",linen:\"faf0e6\",magenta:\"ff00ff\",maroon:\"800000\",mediumaquamarine:\"66cdaa\",mediumblue:\"0000cd\",mediumorchid:\"ba55d3\",mediumpurple:\"9370d8\",mediumseagreen:\"3cb371\",mediumslateblue:\"7b68ee\",mediumspringgreen:\"00fa9a\",mediumturquoise:\"48d1cc\",mediumvioletred:\"c71585\",midnightblue:\"191970\",mintcream:\"f5fffa\",mistyrose:\"ffe4e1\",moccasin:\"ffe4b5\",navajowhite:\"ffdead\",navy:\"000080\",\noldlace:\"fdf5e6\",olive:\"808000\",olivedrab:\"6b8e23\",orange:\"ffa500\",orangered:\"ff4500\",orchid:\"da70d6\",palegoldenrod:\"eee8aa\",palegreen:\"98fb98\",paleturquoise:\"afeeee\",palevioletred:\"d87093\",papayawhip:\"ffefd5\",peachpuff:\"ffdab9\",peru:\"cd853f\",pink:\"ffc0cb\",plum:\"dda0dd\",powderblue:\"b0e0e6\",purple:\"800080\",red:\"ff0000\",rosybrown:\"bc8f8f\",royalblue:\"4169e1\",saddlebrown:\"8b4513\",salmon:\"fa8072\",sandybrown:\"f4a460\",seagreen:\"2e8b57\",seashell:\"fff5ee\",sienna:\"a0522d\",silver:\"c0c0c0\",skyblue:\"87ceeb\",slateblue:\"6a5acd\",\nslategray:\"708090\",snow:\"fffafa\",springgreen:\"00ff7f\",steelblue:\"4682b4\",tan:\"d2b48c\",teal:\"008080\",thistle:\"d8bfd8\",tomato:\"ff6347\",turquoise:\"40e0d0\",violet:\"ee82ee\",violetred:\"d02090\",wheat:\"f5deb3\",white:\"ffffff\",whitesmoke:\"f5f5f5\",yellow:\"ffff00\",yellowgreen:\"9acd32\"},e;for(e in k)b==e&&(b=k[e]);var f=[{re:/^rgb\\((\\d{1,3}),\\s*(\\d{1,3}),\\s*(\\d{1,3})\\)$/,example:[\"rgb(123, 234, 45)\",\"rgb(255,234,245)\"],process:function(a){return[parseInt(a[1]),parseInt(a[2]),parseInt(a[3])]}},{re:/^(\\w{2})(\\w{2})(\\w{2})$/,\nexample:[\"#00ff00\",\"336699\"],process:function(a){return[parseInt(a[1],16),parseInt(a[2],16),parseInt(a[3],16)]}},{re:/^(\\w{1})(\\w{1})(\\w{1})$/,example:[\"#fb0\",\"f0f\"],process:function(a){return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2],16),parseInt(a[3]+a[3],16)]}}];for(e=0;e<f.length;e++){var n=f[e].process,g=f[e].re.exec(b);g&&(channels=n(g),this.r=channels[0],this.g=channels[1],this.b=channels[2],this.ok=!0)}this.r=0>this.r||isNaN(this.r)?0:255<this.r?255:this.r;this.g=0>this.g||isNaN(this.g)?0:\n255<this.g?255:this.g;this.b=0>this.b||isNaN(this.b)?0:255<this.b?255:this.b;this.toRGB=function(){return\"rgb(\"+this.r+\", \"+this.g+\", \"+this.b+\")\"};this.toHex=function(){var a=this.r.toString(16),c=this.g.toString(16),d=this.b.toString(16);1==a.length&&(a=\"0\"+a);1==c.length&&(c=\"0\"+c);1==d.length&&(d=\"0\"+d);return\"#\"+a+c+d};this.getHelpXML=function(){for(var a=[],c=0;c<f.length;c++)for(var d=f[c].example,b=0;b<d.length;b++)a[a.length]=d[b];for(var e in k)a[a.length]=e;d=document.createElement(\"ul\");\nd.setAttribute(\"id\",\"rgbcolor-examples\");for(c=0;c<a.length;c++)try{var l=document.createElement(\"li\"),h=new RGBColor(a[c]),m=document.createElement(\"div\");m.style.cssText=\"margin: 3px; border: 1px solid black; background:\"+h.toHex()+\"; color:\"+h.toHex();m.appendChild(document.createTextNode(\"test\"));var g=document.createTextNode(\" \"+a[c]+\" -> \"+h.toRGB()+\" -> \"+h.toHex());l.appendChild(m);l.appendChild(g);d.appendChild(l)}catch(n){}return d}}", "function colorToRgba(x){\n\n function parsePercent(x){ var c; return ((c=parseFloat(x))<0 ? 0 : (c>100 ? 100 : c))*255/100; }\n function parseAlpha(x){ var c; return ((c=parseFloat(x))<0 ? 0 : (c>1 ? 1 : c))*255; }\n function parseByte(x){ var c; return ((c=parseInt(x,10))<0 ? 0 : (c>255 ? 255 : c)); }\n function parseHue(x){ var r1=parseFloat(e[1]);if(r1<0||r1>=360)r1=(((r1%360)+360)%360); return r1; }\nvar e=null;\n if(!x)return null;\n var b,c,r1,r2,r3,r4,rgb;\n if((e=(/^#([A-Fa-f0-9]{2})([A-Fa-f0-9]{2})([A-Fa-f0-9]{2})$/.exec(x)))!==null){\n return [parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16),255];\n } else if((e=(/^#([A-Fa-f0-9]{2})([A-Fa-f0-9]{2})([A-Fa-f0-9]{2})([A-Fa-f0-9]{2})$/.exec(x)))!==null){\n return [parseInt(e[1],16),parseInt(e[2],16),parseInt(e[3],16),parseInt(e[4],16)];\n } else if((e=(/^rgb\\(\\s*([\\+\\-]?\\d+(?:\\.\\d+)?%)\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?%)\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?%)\\s*\\)$/.exec(x)))!==null){\n return [parsePercent(e[1]),parsePercent(e[2]),parsePercent(e[3]),255];\n } else if((e=(/^rgb\\(\\s*([\\+\\-]?\\d+)\\s*,\\s*([\\+\\-]?\\d+)\\s*,\\s*([\\+\\-]?\\d+)\\s*\\)$/.exec(x)))!==null){\n return [parseByte(e[1]),parseByte(e[2]),parseByte(e[3]),255];\n } else if((e=(/^rgba\\(\\s*([\\+\\-]?\\d+(?:\\.\\d+)?%)\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?%)\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?%)\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?)\\s*\\)$/.exec(x)))!==null){\n return [parsePercent(e[1]),parsePercent(e[2]),parsePercent(e[3]),parseAlpha(e[4])];\n } else if((e=(/^rgba\\(\\s*([\\+\\-]?\\d+)\\s*,\\s*([\\+\\-]?\\d+)\\s*,\\s*([\\+\\-]?\\d+)\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?)\\s*\\)$/.exec(x)))!==null){\n return [parseByte(e[1]),parseByte(e[2]),parseByte(e[3]),parseAlpha(e[4])];\n } else if((e=(/^#([A-Fa-f0-9]{1})([A-Fa-f0-9]{1})([A-Fa-f0-9]{1})$/.exec(x)))!==null){\n var a=parseInt(e[1],16); b=parseInt(e[2],16); c=parseInt(e[3],16);\n return [a+(a<<4),b+(b<<4),c+(c<<4),255];\n } else if((e=(/^#([A-Fa-f0-9]{1})([A-Fa-f0-9]{1})([A-Fa-f0-9]{1})([A-Fa-f0-9]{1})$/.exec(x)))!==null){\n var a=parseInt(e[1],16); b=parseInt(e[2],16); c=parseInt(e[3],16); d=parseInt(e[4],16);\n return [a+(a<<4),b+(b<<4),c+(c<<4),d+(d<<4)];\n } else if((e=(/^hsl\\(\\s*([\\+\\-]?\\d+(?:\\.\\d+)?)\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?)%\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?)%\\s*\\)$/.exec(x)))!==null){\n rgb=hlsToRgb([parseHue(e[1]),parsePercent(e[3]),parsePercent(e[2])]);\n return [rgb[0],rgb[1],rgb[2],255];\n } else if((e=(/^hsla\\(\\s*([\\+\\-]?\\d+(?:\\.\\d+)?)\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?)%\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?)%\\s*,\\s*([\\+\\-]?\\d+(?:\\.\\d+)?)\\s*\\)$/.exec(x)))!==null){\n rgb=hlsToRgb([parseHue(e[1]),parsePercent(e[3]),parsePercent(e[2])]);\n return [rgb[0],rgb[1],rgb[2],parseAlpha(e[4])];\n } else {\n colorToRgba.setUpNamedColors();\n x=x.toLowerCase();\n if(x.indexOf(\"grey\")>=0)x=x.replace(\"grey\",\"gray\");// support \"grey\" variants\n var ret=colorToRgba.namedColors[x];\n if(typeof ret===\"string\")return colorToRgba(ret);\n if(x===\"transparent\")return [0,0,0,0];\n return null;\n }\n}", "function rgbArrayPush() {\n Gradient.redArrayRGB = [];\n Gradient.greenArrayRGB = [];\n Gradient.blueArrayRGB = [];\n\n var redFirst = Gradient.bothColors[0][0];\n var greenFirst = Gradient.bothColors[0][1];\n var blueFirst = Gradient.bothColors[0][2];\n\n var redLast = Gradient.bothColors[1][0];\n var greenLast = Gradient.bothColors[1][1];\n var blueLast = Gradient.bothColors[1][2];\n\n var redSpacing = Gradient.incrementArray[0];\n var greenSpacing = Gradient.incrementArray[1];\n var blueSpacing = Gradient.incrementArray[2];\n\n Gradient.redArrayRGB.push(redFirst);\n Gradient.greenArrayRGB.push(greenFirst);\n Gradient.blueArrayRGB.push(blueFirst);\n\n var nextRed = redFirst;\n var nextGreen = greenFirst;\n var nextBlue = blueFirst;\n\n for (var i = 2; i < Gradient.segments.value; i++) {\n if(redFirst > redLast) {\n nextRed = nextRed - redSpacing;\n } else {\n nextRed = nextRed + redSpacing;\n }\n\n if(greenFirst > greenLast) {\n nextGreen = nextGreen - greenSpacing;\n } else {\n nextGreen = nextGreen + greenSpacing;\n }\n\n if(blueFirst > blueLast) {\n nextBlue = nextBlue - blueSpacing;\n } else {\n nextBlue = nextBlue + blueSpacing;\n }\n\n\n Gradient.redArrayRGB.push(nextRed);\n Gradient.greenArrayRGB.push(nextGreen);\n Gradient.blueArrayRGB.push(nextBlue);\n }\n\n Gradient.redArrayRGB.push(redLast);\n Gradient.greenArrayRGB.push(greenLast);\n Gradient.blueArrayRGB.push(blueLast);\n}", "function calculateRGB(){\n\n // check whether the saturation is zero\n if (hsl.s == 0){\n\n // store the RGB components representing the appropriate shade of grey\n rgb =\n {\n 'r' : hsl.l * 2.55,\n 'g' : hsl.l * 2.55,\n 'b' : hsl.l * 2.55\n };\n\n }else{\n\n // set some temporary values\n var p = hsl.l < 50\n ? hsl.l * (1 + hsl.s / 100)\n : hsl.l + hsl.s - hsl.l * hsl.s / 100;\n var q = 2 * hsl.l - p;\n\n // initialise the RGB components\n rgb =\n {\n 'r' : (h + 120) / 60 % 6,\n 'g' : h / 60,\n 'b' : (h + 240) / 60 % 6\n };\n\n // loop over the RGB components\n for (var key in rgb){\n\n // ensure that the property is not inherited from the root object\n if (rgb.hasOwnProperty(key)){\n\n // set the component to its value in the range [0,100]\n if (rgb[key] < 1){\n rgb[key] = q + (p - q) * rgb[key];\n }else if (rgb[key] < 3){\n rgb[key] = p;\n }else if (rgb[key] < 4){\n rgb[key] = q + (p - q) * (4 - rgb[key]);\n }else{\n rgb[key] = q;\n }\n\n // set the component to its value in the range [0,255]\n rgb[key] *= 2.55;\n\n }\n\n }\n\n }\n\n }", "function sumColors() {\n console.log(\"original color: \", this.origColor);\n color = [...Array(3).keys()].map(function(n) {\n return palindromeModulus(this.origColor[n]+this.userColor[n]);\n });\n console.log('new color; ', color);\n return color;\n}", "function modulateColor(a, b) {\r\n\t\treturn [a[0] * b[0], a[1] * b[1], a[2] * b[2], a[3] * b[3]];\r\n\t}", "plus(color, ...args) {\n if (args.length === 0) {\n return Color.RGB(this.r + color.r, this.g + color.g, this.b + color.b);\n } else {\n let plusColor = this.plus(color);\n return plusColor.plus.apply(plusColor, args);\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Skips the video to the timecode defined as the hash component of the URL. This only happens if the timecode is bigger than zero.
function skipVideoToHashTimecode() { const seconds = timecodeToSeconds(location.hash.substr(1)); if (CURRENT_PAGE_PLAYER !== null && seconds > 0) CURRENT_PAGE_PLAYER.seekTo(seconds); }
[ "function skipVideoToHashTimecode() {\r\n const seconds = timecodeToSeconds(location.hash.substr(1));\r\n if (CURRENT_PAGE_PLAYER !== null && seconds > 0) \r\n CURRENT_PAGE_PLAYER.seekTo(seconds);\r\n }", "function skipVideoFoward()\n {\n //Add 10 seconds to the current time to more forward\n mmuVideo.currentTime=mmuVideo.currentTime+10; \n }", "function skipVidAhead() {\n if (video.currentTime >= video.duration - 25) {\n video.currentTime = video.duration;\n } else {\n video.currentTime += 25;\n }\n}", "function skipVideo() {\r\n const skipTime = this.dataset.skip;\r\n video.currentTime += parseFloat(skipTime);\r\n}", "function skip() {\n const skipAmount = parseInt(this.dataset.skip);\n video.currentTime += skipAmount;\n}", "function skipVideo() {\n video.currentTime += parseFloat(this.dataset.skip);\n}", "function skip() {\n video.currentTime += +this.dataset.skip;\n}", "function skipVideoBackward()\n {\n //Subtract 30 seconds from the current time to go back 30 seconds\n mmuVideo.currentTime = mmuVideo.currentTime-30;\n }", "function skip() {\n const skip = this.dataset.skip;\n video.currentTime += parseFloat(skip);\n }", "function skip() {\n video.currentTime += parseFloat(this.dataset.skip);\n}", "function checkSkip() {\n if(thisObj.state != YT_PLAY) return false\n if(getQueryVariable('v') != curVideoId()) return false\n if(!needSkip()) return false\n doSkip()\n }", "function skipVideo(e) {\n if(e.keyCode === 39) \n video.currentTime = video.currentTime + 10;\n else if(e.keyCode === 37) \n video.currentTime = video.currentTime - 10;\n}", "function randomSkip(){\r\n\tif(!videoElement.paused){\r\n\t\tvideoElement.currentTime = videoElement.duration/50*Math.floor(Math.random()*50);\r\n\t}\r\n}", "function hostSkipVideo() {\n if (queueEmpty()) {\n // player is currently active\n if (player) {\n destroyVideoPlayer();\n }\n return;\n }\n playNextVideo();\n}", "function skipToNextVideo() {\n playlist = JSON.parse(localStorage.getItem(\"playlist\"));\n\n let currentVideoNum = JSON.parse(localStorage.getItem(\"currentVideoNumber\"));\n currentVideoNum += 1;\n \n if (currentVideoNum >= playlist.length){\n currentVideoNum = 0;\n alert(\"You have gone through all the recommended videos\");\n }\n \n localStorage.setItem(\"currentVideoNumber\", currentVideoNum);\n\n player.loadVideoById(playlist[currentVideoNum].videoId);\n player.stopVideo();\n location.reload()\n updateDescription(playlist[currentVideoNum].title);\n changeShareDetails(); // from share_video.js\n}", "function skipVideo() {\r\n\tchrome.runtime.sendMessage({\r\n\t\tgreeting: \"Pop\"\r\n\t}, function () {});\r\n}", "function skipAhead(e) {\n const skipTo = e.target.dataset.seek ? e.target.dataset.seek : e.target.value;\n videoEl.currentTime = skipTo;\n progressBarEl.value = skipTo;\n seekEl.value = skipTo;\n}", "skipVideosWhenShowing() {\n if (location.host.includes(\".youtube.com\")) {\n onSkipBtnMounted(\".html5-video-player.ad-showing video\", (video) => {\n if (this.enabled) {\n console.log(\"skipped video ads\");\n video.currentTime = 10000;\n }\n });\n }\n }", "function skip() {\n \t// console.log(\"Check for skip log\");\n \tconsole.log(this.dataset);\n \t/* DATASET:\n \t\tThe dataset attribute gives access to the HTML's data-\"propName\" value.\n \t\tHere, this is where data-skip was defined in the video HTML object. \n \t\t\tEX: DOMStringMap\n \t\t\t\t skip : \"25\" (Since the 25 second toggle button was clicked) \n \t*/\n \tconsole.log(this.dataset.skip);\n \tvideo.currentTime += parseFloat(this.dataset.skip); \n \t// need to parse the skip value since it's returned as a String. \n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Dismisses the overlay when the actionsheet is not visible. AKA, the user did not select event sitting, which opens an actionsheet with a mobile number
function onClose() { if (!isActionSheetOpen.current) { Navigation.dismissOverlay(componentId); } }
[ "@action hide() {\n this.overlay.passProps = null\n this.overlay.Component = null\n\n if (this.isModal) {\n this.isModal = false\n\n if (this.hasBlockedScrollEvents) {\n this.hasBlockedScrollEvents = false\n }\n }\n\n if (this.opacityOverlay.isVisible) {\n this.opacityOverlay.isVisible = false\n }\n }", "async function onDecline() {\n await Navigation.dismissOverlay(componentId);\n Navigation.showOverlay({\n component: {\n name: 'ContactJosieOverlay',\n options: {\n layout: {\n backgroundColor: 'transparent',\n componentBackgroundColor: 'transparent',\n },\n },\n },\n });\n }", "function handerBtnCancelClick(ev)\n{\n \n //close overlay\n modals[0].style.display = \"none\";\n modals[1].style.display = \"none\";\n document.querySelector(\"[data-role=overlay]\").style.display = \"none\";\n \n \n \n}", "function coming_soon_close() {\n hide_overlay();\n}", "function onPressEventSitting() {\n isActionSheetOpen.current = true;\n awesomeModalRef.current.close();\n actionSheetRef.current.show();\n }", "function overlayDetector(event) {\n if (!event.popupOpening\n && $(event.target).closest('#success-story').length === 0\n && $(event.target).closest('#thank-you-popup').length === 0) {\n setPopupDisplay(document.getElementById('success-story'), 'none');\n setPopupDisplay(document.getElementById('thank-you-popup'), 'none');\n }\n}", "function dismissLandmarks() \n{\n if(using_landmarks_button)\n landmarksClick_btn();\n else landmarksClick();\n}", "function showTouchDismissButton(indieGameEventsObject) {\n if (indieGameEventsObject.touchInterface && indieGameEventsObject.touchInterface.domElements && indieGameEventsObject.touchInterface.domElements.overlay) {\n if (indieGameEventsObject.touchInterface.domElements.dismissButton) {\n indieGameEventsObject.touchInterface.domElements.dismissButton.style.display = 'block';\n }\n }\n }", "function overlayClicked(){\n\t//\tonly proceed if the overlay isn't already fading out\n\tif(!overlayFading){\n\t\t$(\".overlay\").hide();\t\t\t\t//\thide the overlay\n\t\t$(\"#display-window\").hide();\t\t//\thide the display window\n\t\tdisplayOpen = false;\n\t\trestoreDisplayToDefaults();\n\t}\n}", "_onCloseClick(e) {\n this.hide();\n }", "function hideOverlay(){\n overlay.hideNow()\n }", "function activityClose() {\n document.getElementById('activity').style.display = 'none';\n document.getElementById('overlay').style.display = 'none';\n}", "function outsideFeedClick(event) {\n if (event.target == feedModal) {\n feedModal.style.display = 'none';\n }\n}", "function hideOverlay(e) {\n\n if (e.type === 'scroll' || e.type === 'click' && e.currentTarget === scrim) {\n e.stopPropagation();\n e.stopImmediatePropagation();\n e.preventDefault();\n\n // Clean up event handlers.\n scrim.removeEventListener('click', hideOverlay);\n window.removeEventListener('scroll', hideOverlay);\n\n scrim.className = scrim.className.replace(/\\bvisible\\b/g, '');\n\n window.setTimeout(function () {\n body.removeChild(scrim);\n overlay_open = false;\n }, 180);\n }\n }", "function onPressContactJosie() {\n isActionSheetOpen.current = true;\n awesomeModalRef.current.close();\n actionSheetRef.current.show();\n }", "function hideForfeitSelectedGamesConfirmationFlyout() {\r\n confirmForfeitSelectedGamesFlyout.winControl.hide();\r\n }", "handleOnClickOut() {\n if (this.state.visible) {\n utils.trackHeader(this.props.gaAction, 'MyNyplButton - Closed');\n this.setState({ visible: false });\n }\n }", "stopShowing() {\n Settings.getInstance().set('onboarding.showOnboarding', false);\n this.close();\n }", "afterHide(popup) {}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
function to remove the shadow from the box
function removeShadow(element){ element.classList.remove("shadow"); }
[ "function removeShadow(element) {\n element.style[\"boxShadow\"] = \"0 0 0 #999999\";\n}", "function RemoveShadow() {\n\tif (!isCastByLight && isVisible) {\n\t\tisVisible = false;\n\t\t\n\t\t// Remove shadow\n\t\tDestroy(shadowV);\n\t\tDestroy(shadowH);\n\t\t\n\t\t// Erase local variables\n\t\tshadowMeshV = null;\n\t\tshadowMeshH = null;\n\t\tshadowV = null;\n\t\tshadowH = null;\n\t}\n}", "function removeBoxMouseOver(){}", "function removeTheShadow(tab_group)\n{\n\tvar shadow_rect = getShadowRectangle(tab_group);\n\t\n\tif(shadow_rect!=undefined)\n\twindows_layer.remove(shadow_rect);\n}", "function remove() {\n if (shadowElement && shadowElement.parentNode) {\n shadowElement.parentNode.removeChild(shadowElement);\n shadowElement = null;\n }\n }", "deactivate() {\n this.context.shadowOffsetX = undefined;\n this.context.shadowOffsetY = undefined;\n this.context.shadowColor = undefined;\n this.context.shadowBlur = undefined;\n this.isActive = false;\n }", "function _cancelDrag(){\n\n var body = $('body');\n body.unbind('mousemove', _mouseMove);\n body.unbind('selectstart', longpost.Helper.falseFunction);\n\n if(_shadowElement) {\n\n _shadowElement.remove();\n _shadowElement = null;\n }\n }", "function onHoneypotFieldChange() {\n\t\tvar css = jQuery( this ).css( 'box-shadow' );\n\t\tif ( css.match( /inset/ ) ) {\n\t\t\tthis.parentNode.removeChild( this );\n\t\t}\n\t}", "function removeColor(element) {\n element.style.background = '#1d1d1d'\n element.style.boxShadow = '0 0 2px #000'\n }", "function shadow() {\n stroke(0, 0, 0);\n translate(2, 2);\n }", "function backShadowExp()\n{\n kony.print(\"\\n**********in backShadowExp*******\\n\");\n frmHome.show();\n //\"shadowDepth\" : Represents the depth of the shadow in terms of dp.\n //As the shadow depth increases, widget appears to be elevated from the screen and the casted shadow becomes soft\n frmShodowView.flxShadow.shadowDepth = 0;\n //\"shadowType\" : Specifies the shape of the widget shadow that is being casted. By default, widget shadow takes the shape of the widget background.\n frmShodowView.flxShadow.shadowType = constants.VIEW_BOUNDS_SHADOW;\n}", "function removeShadowDiv( event ) {\n\t\t\tevent.target.remove();\n\t\t\tpopUpEl.classList.toggle( 'show' );\n\t\t}", "function remove_text_shadow() {\n Panel.remove_style_class_name('dpt-panel-text-shadow');\n}", "function clearAllShadow()\n{\n\tfor(var id=0; id < gBlockGroup.length; id++) {\n\t\tvar polyId = gBlockGroup[id].polyId;\n\t\tif(gBlockGroup[id].blockUsed && polyId >= 0 && gPolyGroup[polyId].poly.pos.x < 0) {\n\t\t\tclearShadow(gPolyGroup[polyId].poly);\n\t\t\tsetColor(gPolyGroup[polyId].poly, 1); //normal color \n\t\t}\n\t}\n\tgPolyGroup[0].poly.getLayer().draw();\n}", "function shadow(box) {\n var name = box_shadow(),\n\n // Find the radius of the viewport.\n vr = radius($(window).width(), $(window).height()),\n\n // Fint the \"z-height\" of the box.\n bz = parseInt(box.css('z-index')),\n\n // Find the center point of the box.\n top = box.offset().top + Math.floor(box.height() / 2),\n left = box.offset().left + Math.floor(box.width() / 2);\n\n function draw(ev) {\n var sh = project(bz, left, ev.pageX, vr),\n sv = project(bz, top, ev.pageY, vr),\n sb = blur(bz, distance(left, top, ev.pageX, ev.pageY), vr);\n\n box.css(name, '#888 ' + sh + 'px ' + sv + 'px ' + sb + 'px');\n }\n\n $(document).mousemove(draw).click(draw);\n }", "function shadow(cId) {\n let card = document.getElementById(cId);\n card.classList.remove('is-shadowless');\n }", "unsetSelectedAsShadowBlock() {\n // From wfactory_controller.js\n if (!this.view.selectedBlock) {\n return;\n }\n ShadowController.unmarkShadowBlock(this.view.selectedBlock);\n this.currentResource.removeShadowBlock(this.view.selectedBlock.id);\n this.checkShadowStatus();\n this.view.showAndEnableShadow(true,\n ShadowController.isValidShadowBlock(this.view.selectedBlock, true));\n\n // Save and update the preview.\n this.saveStateFromWorkspace();\n this.updatePreview();\n }", "static processBoxShadow(element,valueNew){return TcHmi.System.Services.styleManager.processBoxShadow(element,valueNew)}", "function clearShadow()\n\t\t{\n\t\t\twhile(movement_shadow.length > 0)\n\t\t\t{\n\t\t\t\tvar shadow_id = movement_shadow.pop();\n\t\t\t\tvar y_in_id = shadow_id.indexOf(\"Y\");\n\t\t\t\t//Start 1 past x, go to y. Make int.\n\t\t\t\tvar xcoor = parseInt(shadow_id.substring(1, y_in_id));\n\t\t\t\t//Start 1 past y, go to end. Make int\n\t\t\t\tvar ycoor = parseInt(shadow_id.substring(y_in_id+1));\n\t\t\t\tif(!isOccupied(xcoor, ycoor))\n\t\t\t\t{\n\t\t\t\t\tdocument.getElementById(shadow_id).src = \"http://i.imgur.com/ubwIthk.gif\";\n\t\t\t\t}\n\t\t\t}\n\t\t}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Custom analytics code /////////////////////////////// Helper function for determining DOM element path. This returns a path or selector for the jquery DOM element `target`.
function trk_path(target) { var path = []; while (target) { var tag = target.prop("tagName"); if (!tag) { break; } tag = tag.toLowerCase(); var parent = target.parent(); var idx = parent.children(tag).index(target); var id = target.attr("id"); var cls = target.attr("class"); var desc = tag; if (id) { desc += "#" + id; } if (cls) { cls = cls.split(" "); cls = cls.join("."); desc += "." + cls; } if (idx != 0) { desc += "%" + idx; } path.push(desc); if (tag == "body") { break; } target = parent; } path = path.reverse(); path = path.join(" "); return path; }
[ "getSelector(target) {\n\t\tif(target && target instanceof Element) {\n\t\t\t// Return the id of the element\n\t\t\treturn \"#\" + target.id;\n\t\t}\n\t\t// Return passed argument or null if it's falsy\n\t\treturn target ? target : null;\n\t}", "function generateSelector(target) {\n var sel = '';\n target = $(target);\n var targetElement = target.get(0);\n\n var ancestors = target.parents().andSelf();\n ancestors.each(function(i, ancestorElement) {\n ancestor = $(ancestorElement);\n var subsel = ancestorElement.tagName.toLowerCase();;\n\n var id = ancestor.attr('id');\n if (id && id.length > 0) {\n subsel += '#' + id;\n } else {\n var classes = ancestor.attr('class');\n if (classes && classes.length > 0) {\n subsel += '.' + classes.replace(/\\s+/g, '.');\n }\n\n var index = ancestor.index(sel + subsel);\n if ($(sel + subsel).siblings(subsel).length > 0) {\n subsel += ':eq(' + index + ')';\n }\n }\n\n sel += subsel;\n\n if (i < ancestors.length - 1) {\n sel += ' > ';\n }\n });\n\n return sel;\n}", "function generateElementPath(root, target) {\n var path = [];\n if (!root.contains(target)) {\n return undefined;\n }\n while (target !== undefined && !target.equals(root)) {\n var parent_1 = target.getParent();\n if (parent_1) {\n var children = parent_1.getChildren();\n var index = -1;\n for (var i = 0; i < parent_1.getChildCount(); i++) {\n if (children.getItem(i).equals(target)) {\n index = i;\n break;\n }\n }\n path.push(index);\n target = parent_1;\n }\n else {\n break;\n }\n }\n return path;\n}", "function sgFindTargetElement(target, $this) {\n\tvar $ele\n\tif (target == 'this') $ele = $this\n\telse if (target == 'parent') $ele = $this.parent()\n\telse if (target.match(/^parent /i)) $ele = $this.closest(target.substring(7))\n\telse if (target == 'before') $ele = $this.before()\n\telse if (target == 'after') $ele = $this.after()\n\telse if (target == 'prev') $ele = $this.prev()\n\telse if (target == 'next') $ele = $this.next()\n\telse if (target == 'box') $ele = $('#cboxLoadedContent>.box-page').last()\n\telse $ele = $(target)\n\treturn $ele\n}", "function nestedTarget() {\n return document.querySelector('#nested .target');\n}", "function nestedTarget() {\n return document.querySelector('#nested .target')\n}", "function getElementPathSelector(context) {\n let pathSelector;\n let ctx = context;\n while (ctx.tagName) {\n let index = getIndex(ctx);\n if (ctx.id) {\n // If we reached a parent element with an id, the specificity is high enough\n pathSelector = `${ctx.localName}#${ctx.id}${(pathSelector ? ' > ' + pathSelector : '')}`;\n break;\n }\n else if (ctx.className)\n pathSelector = `${ctx.localName}${getElementClassSelector(ctx)}:nth-of-type(${index})${(pathSelector ? ' > ' + pathSelector : '')}`;\n else\n pathSelector = `${ctx.localName}:nth-of-type(${index})${(pathSelector ? ' > ' + pathSelector : '')}`;\n ctx = ctx.parentNode;\n }\n return `${pathSelector}`;\n}", "function nestedTarget(){\r\n return document.getElementById('nested').querySelector('div.target')\r\n\r\n }", "function nestedTarget(x) {\n return document.querySelector('#nested .target')\n}", "function getElementPath( elem ) {\n var\n path = '',\n node = $(elem).first();\n while ( node.length ) {\n var\n realNode = node[0],\n name = realNode.localName;\n if ( ! name )\n break;\n name = name.toLowerCase();\n\n var\n parent = node.parent(),\n siblings = parent.children(name);\n if ( siblings.length > 1 )\n name += ':eq(' + siblings.index(realNode) + ')';\n path = name + ( path ? '>' + path : '' );\n node = parent;\n }\n\n return path;\n }", "function getResizeObserverTarget(target) {\n\t if (isRefTarget(target)) {\n\t return target.current;\n\t }\n\t if (isFunctionTarget(target)) {\n\t return target();\n\t }\n\t if (typeof target === \"string\") {\n\t return document.querySelector(target);\n\t }\n\t return target;\n\t}", "function findPagerTargetSelector() {\n $target = $(Drupal.settings.infscr.pager).closest('.pager-o').parent();\n\n if ($target.length == 0 || $target.attr('id') == '') return '';\n var target = '#' + $target.attr('id') + ' .pager-target';\n return target;\n }", "function nestedTarget(){\n return document.querySelector('div#nested div div div.target')\n}", "function getResizeObserverTarget(target) {\n if (isRefTarget(target)) {\n return target.current;\n }\n if (isFunctionTarget(target)) {\n return target();\n }\n if (typeof target === \"string\") {\n return document.querySelector(target);\n }\n return target;\n}", "function findTarget($elem, override, target) {\n var target = override === true && target ? target : (override && $elem.data(override) !== undefined ? $elem.data(override) : $elem.data('target'));\n var targetArray = target.split(\"|\");\n\n if (targetArray.length > 1) {\n var subTarget = $elem;\n for (var i = 0; i < targetArray.length; i++) {\n subTarget = findTarget(\n subTarget, true, targetArray[i]\n );\n }\n return subTarget;\n }\n\n switch (true) {\n case target === 'next':\n return $elem.next();\n break;\n\n case target === 'prev':\n return $elem.prev();\n break;\n\n case target === 'parent':\n return $elem.parent();\n break;\n\n case target.indexOf('parents') !== -1:\n var parentTarget = target.length > 8 ? target.substring(8) : null;\n return $elem.parents(parentTarget);\n break;\n\n case target.indexOf('child') !== -1:\n var childTarget = target.length > 6 ? target.substring(6) : null;\n return $elem.find(childTarget);\n break;\n\n case target === 'this':\n return $elem;\n break;\n\n default:\n return $(target);\n break;\n }\n }", "get target () {\n var parentNode = dom(this).parentNode;\n // If the parentNode is a document fragment, then we need to use the host.\n var ownerRoot = dom(this).getOwnerRoot();\n var target;\n\n if (this.for) {\n target = dom(ownerRoot).querySelector('#' + this.for);\n } else {\n target = parentNode.nodeType == Node.DOCUMENT_FRAGMENT_NODE ?\n ownerRoot.host : parentNode;\n }\n\n return target;\n }", "getTarget() {\n let _target = null\n\n switch (typeof this.target) {\n case 'function':\n _target = this.target()\n break\n case 'string':\n _target = getById(this.target)\n break\n case 'object':\n if (isElement(this.target.$el)) {\n _target = this.target.$el\n } else if (isElement(this.target)) {\n _target = this.target\n }\n break\n }\n\n return _target\n }", "function nestedTarget() {\nvar classFromId = document.querySelector('#nested .target');\nreturn classFromId;\n}", "get target () {\n var parentNode = Polymer.dom(this).parentNode;\n // If the parentNode is a document fragment, then we need to use the host.\n var ownerRoot = Polymer.dom(this).getOwnerRoot();\n\n var target;\n if (this.for) {\n target = Polymer.dom(ownerRoot).querySelector('#' + this.for);\n } else {\n target = parentNode.nodeType == Node.DOCUMENT_FRAGMENT_NODE ?\n ownerRoot.host : parentNode;\n }\n\n return target;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Get the correct Texts file based on the corpus button selection.
function getTextsFile() { // IMP: Must have var with the same name as this.id (assigned at top of the file currently). var corpusPath = "Data/" + currentCorpus + "-Texts.txt"; // Get the data from our JSON file d3.json(corpusPath, function(error, textsData) { if (error) { alert(corpusPath + ' is not available.'); throw error; } // Store texts data for use throughout this page. allTextsData = textsData; }); }
[ "function corpusSelected() {\n\n // Did the user click something? If so, use it (we previously stashed the file name in the value attribute, ha ha!)\n // Otherwise, choose the value attribute of the 1st radio button. This assumes that we always have at least one\n // radio button for a corpora. That seems safe!\n currentCorpus = this.value ? this.value : document.querySelector(\"#corpDtl0 > input\").value;\n\n getTopicsData();\n getTextsFile();\n selectSlice();\n\n // Update Page Labels\n d3.select(\"#topicName\").html(\"\");\n d3.select(\"#topicDetails\").html(\"\");\n d3.selectAll(\".cardsToggleAll\").style(\"display\", \"none\");\n d3.select(\"#sidebar\").selectAll(\"div\").remove();\n\n\n\n\n}", "function GetPickedCorpus(){\n return picked_corpus;\n }", "static proceedChooseText() {\n let choix = IO.choose({\n message:'Choisir le texte à analyser ou voir…',\n file:true, extensions:['odt','txt','text','rtf','doc','docx','md','scriv']\n })[0]\n if ( !choix ) return // aucun fichier choisi\n this.open(choix)\n Prefs.save()\n }", "function MatchWordsOrPhrases(){\n var back_btn = document.createElement(\"back_btn\");\n back_btn.onclick = MatchTranslationMode;\n document.getElementById(\"navigation_section\").innerHTML = \"\";\n document.getElementById(\"navigation_section\").appendChild(back_btn);\n document.getElementById(\"navigation_section\").style.textAlign = \"left\";\n\n\n // Clear page and populate it with new stuff to give the feeling of a new window\n document.getElementById(\"question\").innerHTML = \"<br>\";\n document.getElementById(\"instruction\").innerHTML = \"<h4>Select a Cathegory</h4>\";\n document.getElementById(\"question\").style.display = \"block\";\n document.getElementById(\"answer\").innerHTML = \"\";\n document.getElementById(\"answer\").style.display = \"none\";\n\n var fileName = 'vocabulary.txt'; // By default load vocabulary\n if(this.id == \"phrases_btn\"){ // But load Phrases if user choses so\n fileName = 'phrases.txt';\n }\n $.get(fileName, function(data) {\n //process text file line by line\n var lines = data.split(\"\\n\");\n\n for (var i = 0, len = lines.length; i < len; i++) {\n var row = lines[i];\n if(row){ // Ignore empty lines in text file\n if(row.startsWith(\"*\")){ //This is a title/header\n row = row.slice(1, ); // ignore the '*' character\n var button_i = document.createElement(\"review_btn\");\n var t = document.createTextNode(row);\n button_i.appendChild(t);\n button_i.fileName = fileName;\n button_i.id = row;\n button_i.classList.add(\"review_btn\");\n button_i.onclick = GetSectionContent;\n document.getElementById(\"question\").appendChild(button_i);\n document.getElementById(\"question\").appendChild(document.createElement(\"br\"));\n document.getElementById(\"question\").appendChild(document.createElement(\"br\"));\n }\n }\n }\n document.getElementById(\"question\").appendChild(document.createElement(\"br\"));\n }, 'text');\n }", "function SetPickedTexts(){\n picked_texts = [];\n $(\"#text_picker_for_sobcorpus [type='checkbox']:checked\").each(function(){\n picked_texts.push({\n code: $(this).val(),\n title: $(this).parents(\"span\").next(\"span\").text()\n });\n });\n $(\".texts_picked\").text(picked_texts.length);\n return this;\n }", "function SetCurrentCorpus(callback){\n $.get(\"php/ajax/get_corpus_information.php\",\n {action:\"corpus_name\"}, function(corpus_name){\n $(\".corpus_select\").text(corpus_name)\n picked_corpus = corpus_name;\n callback(corpus_name);\n });\n }", "function click_corpus_item(e) {\n let self = e.data.target;\n if ($(self).html() === $(window.corpus_target).html())\n return;\n let content = \"目前文獻集有條目尚未更新至 docuXML<br>若是切換文獻集則本工具將不會保留該條目<br>是否要切換文獻集?<br>\";\n check_sync(content, \"確定切換\", \"取消切換\", function(sync) {\n if (sync) {\n $(\".corpus-item\").removeClass(\"active\");\n $(self).addClass(\"active\");\n window.corpus_target = $(self);\n create_corpus_operate($(self).html());\n }\n });\n}", "function text_clicked(event) {\n\t var ranges = CKEDITOR.instances.trans_editor.getSelection().getRanges();\n\t var text = CKEDITOR.instances.trans_editor.getSelection().getSelectedText();\n\t var element = CKEDITOR.instances.trans_editor.getSelection().getStartElement();\n\n\t if((ranges[0] != undefined) || (ranges[0] != null)) {\n\t\t var selection_length = (ranges[0].endOffset - ranges[0].startOffset);\n\t\t // User can click on a time marker\n\t\t if(selection_length == 0) {\n\t\t\t if (element.getName() == 'time' ) {\n\t\t\t\t var mark = $('<p>' + element.getOuterHtml() + '</p>').find('time:first').attr('type');\n\t\t\t\t if(mark != null) {\n\t\t\t\t\t var goto_time = $('<p>' + element.getOuterHtml() + '</p>').find('time:first').attr('datetime');\n\t\t\t\t\t var duration = wavesurfer.getDuration();\n\t\t\t\t\t wavesurfer.seekAndCenter(goto_time / duration);\n\t\t\t\t }\n\t\t\t }\n\t // User has selected a word\n\t\t } else { \n\t\t\t var node = ranges[0];\n\t\t\t var pnode = node.startContainer.getParent();\n\t\t\t if (pnode.getName() == 'time' ) {\n\t\t\t\t var goto_time = $('<p>' + pnode.getOuterHtml() + '</p>').find('time:first').attr('datetime');\n\t\t\t\t var duration = wavesurfer.getDuration();\n\t\t\t\t wavesurfer.seekAndCenter(goto_time / duration);\n\t\t\t }\n\t\t\t else if(pnode.getName() == \"conf\") {\n\t\t\t\t pnode = pnode.getParent();\n\t\t\t\t var goto_time = $('<p>' + pnode.getOuterHtml() + '</p>').find('time:first').attr('datetime');\n\t\t\t\t var duration = wavesurfer.getDuration();\n\t\t\t\t wavesurfer.seekAndCenter(goto_time / duration);\n\t\t\t }\n\t\t }\n\t }\n }", "function handleTrainerTextSelection(data) {\n var paraId = data.paraId;\n var selectedText = data.selectedText;\n console.log(selectedText);\n trainerModel.trainerToolbar.lastJson = '';\n var text = \"Is %s a %s\";\n var prompt = '';\n //find a matching term\n var matchedItem = _.find(LHSModel.smodel.terms, function(obj) {\n return ((obj.paragraphId == paraId) && (obj.term == selectedText));\n });\n // class question if no matching term found\n if (matchedItem == null) {\n prompt = 'Please choose the class for this [' + selectedText + ']';\n //show set of questions for classes\n var items = LHSModel.getClassNames();\n //create a new matched item\n matchedItem = {\n paragraphId: paraId,\n term: selectedText,\n classificationId: ''\n };\n console.log(matchedItem);\n var self = this;\n vm.showYesNoDialog(prompt, items)\n .then(function(clicked) {\n if (clicked.toString() == 'true') {\n clicked = 0;\n }\n matchedItem.classificationId = LHSModel.getClassFromIndex(clicked);\n documentModel.viewState.isProcessing = true;\n trainerService.addTermToPara(documentModel.documentId, matchedItem)\n .then(function(contentHtml) {\n vm.updateDocument(contentHtml);\n });\n });\n\n } else {\n // yes / no question if matching found\n var className = LHSModel.getClassFromId(matchedItem.classificationId).name;\n prompt = s.sprintf(text, selectedText, className);\n vm.showYesNoAllDialog(prompt, matchedItem);\n }\n }", "function GetPickedTexts(){\n return picked_texts;\n }", "function OnFileChoose( file )\n{\n fdlg.Dismiss();\n choosen = file\n app.ShowPopup( choosen + \" loaded\" );\n txt = app.ReadFile( choosen );\n edt.SetText( txt );\n \n}", "function CLC_GetSelectedText(){\r\n var text = CLC_Window().getSelection().toString();\r\n return text;\r\n }", "function GetTemplateText() {\r\n var useRichText = false;\r\n var trixtext = \"\";\r\n \r\n useRichText = document.getElementById(\"RichTextRadio\").checked;\r\n \r\n if (useRichText) {\r\n trixtext = document.querySelector(\"trix-editor\").value;\r\n } else {\r\n trixtext = document.getElementById(\"plainTextEditor\").value;\r\n }\r\n \r\n return trixtext;\r\n}", "function loadNotesText()\n{\n var fileToLoad = document.getElementById(\"notesToLoad\").files[0];\n \n var fileReader = new FileReader();\n fileReader.onload = function(fileLoadedEvent) \n {\n var textFromFileLoaded = fileLoadedEvent.target.result;\n document.getElementById(\"txtDocumentNotes\").value = textFromFileLoaded;\n };\n fileReader.readAsText(fileToLoad, \"UTF-8\");\n $('#btnSaveNotes').button( \"option\", \"disabled\", false );\n}", "function loadQuestionText() {\n\n //sanity check HTML configuration elements\n if (errorCheck(typeof elementQuestionFile === 'undefined' || bfIsInvalidElement(elementQuestionFile),\n \"Questoin file element (elementQuestionFile) is not configured in the HTML header\",\n \"loadquestiontext\") ||\n errorCheck(typeof elementQuestionText === 'undefined' || bfIsInvalidElement(elementQuestionText),\n \"Question text element (elementQuestionText) is not configured in the HTML header\",\n \"loadquestiontext\") ||\n errorCheck(typeof elementQuestionSelect === 'undefined' || bfIsInvalidElement(elementQuestionSelect),\n \"Question select element (elementQuestionSelect) is not configured in te HTML header\",\n \"loadquestiontext\"))\n return;\n\n var questionFile = jQuery(elementQuestionFile).get(0).files[0];\n\n var r = new FileReader();\n r.onload = function (e) {\n var contents = e.target.result;\n jQuery(elementQuestionText).val(contents);\n };\n r.readAsText(questionFile);\n\n //if a question had been selected from the drop down menu, remove it\n //so that only one type of input is active\n jQuery(elementQuestionSelect).prop('selectedIndex', 0);\n \n // also reset prev question menu.\n jQuery(elementPrevQuestionSelect).prop('selectedIndex', 0);\n}", "getTexFilesList() {\n return fs.listSync(this.projectPath, [\".tex\"]);\n }", "function extract(textToWrite)\n{\n\tvar textFileAsBlob = new Blob([textToWrite], {type:'text/plain'});\n\tvar fileNameToSaveAs = \"ProjectProposal.txt\";\n\n\tvar downloadLink = document.createElement(\"a\");\n\tdownloadLink.download = fileNameToSaveAs;\n\tif (window.URL != null)\n\t{\n\t\t// Chrome allows the link to be clicked\n\t\t// without actually adding it to the DOM.\n\t\tdownloadLink.href = window.URL.createObjectURL(textFileAsBlob);\n\t}\n\telse\n\t{\n\t\t// Firefox requires the link to be added to the DOM\n\t\t// before it can be clicked.\n\t\tdownloadLink.href = window.URL.createObjectURL(textFileAsBlob);\n\t\tdownloadLink.onclick = destroyClickedElement;\n\t\tdownloadLink.style.display = \"none\";\n\t\tdocument.body.appendChild(downloadLink);\n\t}\n\tdownloadLink.click();\n}", "function downloadCorpus(corpId){\n location.href=appRoot()+'/download/'+corpId;\n}", "function readTxt() {\n\n fs.readFile(\"random.txt\", \"utf8\", function(error, data) {\n if (error){\n throw err;\n }\n var dataArr = data.split(\" \");\n action = dataArr[0];\n submit = dataArr.slice(1).join(\" \");\n\n choices();\n });\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
function for parsing lowest resolution image's link [ missing 150x150 ]
function parsedSmallImages(imgLink) { const findPattern = imgLink.match(/150/g); const nullFire = null; const gotPattern = ['150']; if (nullFire === findPattern) { return imgLink.replace('\\', '').replace('\\', '').replace('\\', '').replace('\\', '').replace('\\', ''); } else if (findPattern[0] === gotPattern[0]) { return imgLink.replace('', '').replace('\\', '').replace('\\', '').replace('\\', '').replace('\\', '').replace('\\', '').replace('\\', ''); } }
[ "function extractImageDimensions(link) {\r\n if (!link.display)\r\n return undefined;\r\n let match = /^(\\d+)x(\\d+)$/iu.exec(link.display);\r\n if (match)\r\n return [parseInt(match[1]), parseInt(match[2])];\r\n let match2 = /^(\\d+)/.exec(link.display);\r\n if (match2)\r\n return [parseInt(match2[1])];\r\n // No match.\r\n return undefined;\r\n}", "function getLargeImage11() { return \"https://s3.amazonaws.com/svdglobal/1200x800.jpg\"; }", "function imageLargeUrl(img) {\n var retUrl;\n // try new photobox format first, parent LI has a data-photo-id attribute\n var imageId = myJQ(img).parent().attr(\"data-photo-id\");\n if (imageId) {\n // TODO the \"plus\" image still appears to exist even if there is no zoom box, any exceptions?\n retUrl = myJQ(\"#Photobox_PhotoserverPlusUrlString,#PhotoserverPlusUrlString\").attr(\"value\") + imageId + \".jpg\";\n } else {\n // old format\n // thumbnail link has class \"lbt_nnnnn\"\n imageId = myJQ(img).parent().attr(\"class\").substring(4);\n\n // TODO is \"photoStartIdNewDir\" still used in the old-format listings? \n // This is what TM does in their own script, comparing the current image ID to the ID where they started storing the images in a new path.\n var isNewImage = (unsafeWindow.photoStartIdNewDir ? unsafeWindow.photoStartIdNewDir > imageId : false);\n if (isNewImage) {\n retUrl = img.src.replace(\"/thumb\", \"\").replace(\".jpg\", \"_full.jpg\");\n } else {\n retUrl = img.src.replace(\"/thumb\", \"/full\");\n }\n }\n console.log(retUrl);\n return retUrl;\n}", "function thumbnailToFullLink(url)\n{\n // match1=gallery id\n // match2=image count\n // match3=png or jpg\n var match=url.match(/nhentai\\.net\\/galleries\\/(\\d+)\\/(\\d+)t\\.(\\w+)/);\n\n if (!match)\n {\n return \"error\";\n }\n\n return `https://i.nhentai.net/galleries/${match[1]}/${match[2]}.${match[3]}`;\n}", "function getSmallImage1() { return \"https://s3.amazonaws.com/svdglobal/720x400.jpg\"; }", "function getImageSrc(image) {\n // Set default image path from href\n var result = image.href;\n // If dataset is supported find the most suitable image\n if (image.dataset) {\n var srcs = [];\n // Get all possible image versions depending on the resolution\n for (var item in image.dataset) {\n if (item.substring(0, 3) === 'at-' && !isNaN(item.substring(3))) {\n srcs[item.replace('at-', '')] = image.dataset[item];\n }\n }\n // Sort resolutions ascending\n var keys = Object.keys(srcs).sort(function(a, b) {\n return parseInt(a, 10) < parseInt(b, 10) ? -1 : 1;\n });\n // Get real screen resolution\n var width = window.innerWidth * window.devicePixelRatio;\n // Find the first image bigger than or equal to the current width\n var i = 0;\n while (i < keys.length - 1 && keys[i] < width) {\n i++;\n }\n result = srcs[keys[i]] || result;\n }\n return result;\n }", "function getResolutions() {\n const res = preview?.images[0]?.resolutions\n let bestRes = res[0],\n curr,\n next\n for (let i = 0; i < res.length - 1; i++) {\n curr = Math.abs(res[i].height - mediaSize)\n next = Math.abs(res[i + 1].height - mediaSize)\n if (curr < next) {\n if (curr < Math.abs(bestRes.height - mediaSize)) {\n bestRes = res[i]\n }\n } else {\n if (next < Math.abs(bestRes.height - mediaSize)) {\n bestRes = res[i + 1]\n }\n }\n }\n //if lower resolution image is not available we grab the original url instead\n if (bestRes?.url) {\n setImage(bestRes.url)\n } else if (datum?.preview?.images[0]?.source[0]?.url) {\n setImage(datum.preview.images[0].source.url)\n }\n }", "function parse_imageId() {\n\t// URL is like http://emptysquare.net/photography/lower-east-side/#5/\n\t// fragment from http://benalman.com/code/projects/jquery-bbq/examples/fragment-basic/\n\tvar fragment = $.param.fragment();\n\tif (fragment.length) {\n\t\t// URL's image index is 1-based, our internal index is 0-based\n\t\timageId = parseInt(fragment.replace(/\\//g, '')) - 1;\n\t\tif (imageId < 0 || isNaN(imageId)) imageId = 0;\n\t} else {\n\t\timageId = 0;\n\t}\n}", "function enlarger_gim(enl_allLinks) {\r\n\tfor (ii = 0; ii < enl_allLinks.snapshotLength; ii++) {\r\n\t // Get link, and put it in the thumbnail class.\r\n\t thisLink = enl_allLinks.snapshotItem(ii);\r\n\t thisLink.className = 'thumbnail ' + thisLink.className;\r\n\r\n\t // Google helpfully store the image width and height for us - get them.\r\n\t href = thisLink.href;\r\n\t regExpMatches = href.match(/\\&w\\=(.*?)\\&sz\\=/);\r\n\t newWidth = parseInt(regExpMatches[1]);\r\n\t regExpMatches = href.match(/\\&h=(.*?)\\&w\\=/);\r\n\t newHeight = parseInt(regExpMatches[1]);\r\n\r\n\t // Create a span to contain our big image.\r\n\t newSpan = document.createElement('SPAN');\r\n\t thisLink.appendChild(newSpan);\r\n\r\n\t // We will allow the big image to go to either the right or the left of the\r\n\t // little image, wherever there is more space.\r\n\t littleImage = thisLink.getElementsByTagName(\"IMG\")[0];\r\n\t spaceLeft = getLeftPosn(littleImage);\r\n\t rightPosn = spaceLeft + littleImage.width + (2*LITTLE_IMG_BORDER);\r\n\t spaceRight = document.body.clientWidth - rightPosn;\r\n\t maxWidth = Math.max(spaceLeft, spaceRight);\r\n\t maxWidth = maxWidth - 2*(LEFT_RIGHT_MARGIN + SPAN_BORDER + BIG_IMG_BORDER);\r\n\r\n\t // Calculate the new image size.\r\n\t if (newWidth > maxWidth) {\r\n\t\t ratio = (maxWidth/newWidth);\r\n\t\t newWidth *= ratio;\r\n\t\t newHeight *= ratio;\r\n\t }\r\n\t if (newHeight > maxHeight) {\r\n\t\t ratio = (maxHeight/newHeight);\r\n\t\t newWidth *= ratio;\r\n\t\t newHeight *= ratio;\r\n\t }\r\n\r\n\t // Position our span to the right or the left, wherever there's more room.\r\n\t spanWidth = newWidth + 2*(BIG_IMG_BORDER + SPAN_BORDER);\r\n\t if (spaceRight >= spaceLeft) {\r\n\t\t newSpan.style.right = (spaceRight - spanWidth + LEFT_RIGHT_MARGIN) + 'px';\r\n\t }\r\n\t else {\r\n\t\t newSpan.style.left = (spaceLeft - spanWidth - LEFT_RIGHT_MARGIN) + 'px';\r\n\t }\r\n\r\n\t // And position our image in the middle of the screen\r\n\t newSpan.style.bottom = ((maxHeight - newHeight)/2) + TOP_BOTTOM_MARGIN + 'px';\r\n\r\n\t // Figure out the source of the image.\r\n\t regExpMatches = href.match(/\\/imgres\\?imgurl\\=(.*?)\\&imgrefurl\\=/);\r\n\t imageURI = decodeURI(regExpMatches[1]);\r\n\r\n\t // Finally insert the image into the document.\r\n\t bigImage = document.createElement('IMG');\r\n\t bigImage.width = newWidth;\r\n\t bigImage.height = newHeight;\r\n\t bigImage.src = imageURI;\r\n\t newSpan.appendChild(bigImage);\r\n\r\n\t // If the image fails to load, remove this whole construction.\r\n\t bigImage.addEventListener('error', removeBigImage, false);\r\n\t}\r\n\r\n}", "get min() {\n return Thumbnails_1.parseThumbnailUrl(this[0]);\n }", "function getLargeImage(item) { \n return getImage(1200, 800, item.Abbreviation);\n}", "function getSmallImage(item) { \n return getImage(720, 400, item.Abbreviation);\n}", "function parseResolution(title) {\n\tvar match = title.match(/\\[\\s*(\\d+)\\s*[×x\\*]\\s*(\\d+)\\s*\\]/i);\n\tif (match && match.length > 2) {\n\t\treturn {\n\t\t\twidth: parseInt(match[1]),\n\t\t\theight: parseInt(match[2])\n\t\t};\n\t}\n}", "function getBigImage(url) {\n return url.replace(\"zoom=1\", \"zoom=0\");\n}", "function linkWidth(link){\n var linkMag = link.magnitude\n if (linkMag <= 30){\n return \"1px\"\n }\n else\n {\n return \"0px\"\n }\n}", "static parse_legacy_image(text, reply) {\n const image_pattern = /^\\\\image:.*/mg;\n let images = text.match(image_pattern);\n // console.log(\"images: \", images)\n if (images && images.length > 0) {\n const image_text = images[0]\n text = text.replace(image_text,\"\").trim()\n var image_url = image_text.replace(\"\\\\image:\", \"\")\n\n var width = 200\n var height = 200\n // parse image size (optional) ex: \\image:100-100:http://image.com/image.gif\n let image_size_pattern = /^([0-9]*-[0-9]*):(.*)/;\n let image_size_text = image_url.match(image_size_pattern)\n if (image_size_text && image_size_text.length == 3) {\n image_url = image_size_text[2]\n let image_size = image_size_text[1]\n // console.log(\"size: \" + image_size)\n // console.log(\"imageì url: \" + image_url)\n let split_pattern = /-/\n let size_splits = image_size.split(split_pattern)\n if (size_splits.length == 2) {\n width = size_splits[0]\n height = size_splits[1]\n }\n }\n reply.message[TiledeskChatbotUtil.TEXT_KEY] = text\n reply.message[TiledeskChatbotUtil.TYPE_KEY] = TiledeskChatbotUtil.TYPE_IMAGE\n reply.message[TiledeskChatbotUtil.METADATA_KEY] = {\n src: image_url,\n width: width,\n height: height\n }\n }\n return {\n text: text,\n reply: reply\n }\n }", "function getBestThumbnailUrl(thumbnail) {\n var maxWidth = 0;\n var optionToSelect;\n _.forEach(thumbnail, function (value, key) {\n if (value.width > maxWidth){\n optionToSelect = key;\n maxWidth = value.width;\n }\n });\n return thumbnail[optionToSelect].url;\n}", "function getLargeImage(item) { return \"https://m.media-amazon.com/images/G/01/mobile-apps/dex/alexa/alexa-skills-kit/tutorials/quiz-game/state_flag/1200x800/\" + item.Abbreviation + \"._TTH_.png\"; }", "function get4by3Image(imageArray) \n{\n //runs through and array of images\n for (var i = 0; i < imageArray.length; i++) {\n //return the first image url we find that has a 4 by 3 ratio\n if (imageArray[i].ratio === \"4_3\") {\n return imageArray[i].url;\n }\n }\n\n //If none are found return a placeholder\n return \"http://placehold.it/150\";\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Helper function to get a options from the question array
function getOptions() { var currentOptions = questions[questionIndex].options; return currentOptions; }
[ "function parseOptions() {\n const nextQuestion = fetchQuestion();\n return nextQuestion.options;\n }", "function getAnswersForQuestion(answers, question) {\r\n\r\n if (answers.length === 0) {\r\n console.error(\"Array must have items in it\")\r\n return\r\n //geef answers een waarde\r\n }\r\n\r\n let answersforQuestion = []\r\n for (answer of answers) {\r\n answersforQuestion.push(answer[question])\r\n\r\n }\r\n\r\n return answersforQuestion //array van antwoorden voor een specifieke vraag.\r\n\r\n}", "function gatherGradingOptions(e, num_questions)\n {\n var grading_options = [];\n var ques_col;\n var q_id;\n \n for (ques_col = 1; ques_col <= num_questions; ques_col++)\n {\n // e.g. \"Q3\"\n q_id = \"Q\" + String(ques_col); \n grading_options.push(e.parameter[q_id]); \n }\n \n return grading_options;\n \n }", "function questions() {\n var questionArr = [\n/*0*/ { q: \"How do you iterate through an array?\", a: \"for loops\" },\n/*1*/ { q: \"Conditional Statement considering 'either or'\", a: \"if/else\" },\n/*2*/ { q: \"Continues running till all parameters are met, may complete an action before running\", a: \"do..while\" },\n/*3*/ { q: \"Ends looping, regardless of conditions met\", a: \"break\" },\n/*4*/ { q: \"Keeps moving through iterations, ignoring code below it\", a: \"continue\" },\n/*5*/ { q: \"Emmet code to quickly enter initial index code\", a: \"html:5\" },\n/*6*/ { q: \"Append array in javascript\", a: \"push\" },\n/*7*/ { q: \"Removes last element of an array\", a: \"pop\" },\n/*8*/ { q: \"Position of element in an array\", a: \"index\" },\n/*9*/ { q: \"Terminology used to change datatypes\", a: \"parse\" }\n ]\n return questionArr\n}", "getCurrentOptions() {\r\n return Object.keys(this.curr.val[this.getCurrentQuestion()]);\r\n }", "function getOptions(){\n let options = [];\n if(document.querySelector(\"#upperCaseCB\").checked){\n options.push({getCharacter: getUpperCase});\n }\n if(document.querySelector(\"#lowerCaseCB\").checked){\n options.push({getCharacter: getLowerCase});\n }\n if(document.querySelector(\"#numbersCB\").checked){\n options.push({getCharacter: getNumber});\n }\n if(document.querySelector(\"#specialsCB\").checked){\n options.push({getCharacter: getSpecial});\n }\n return options\n}", "getChoicesFromOption(option) {\n return this.optionChoices.get(option);\n }", "function getQuestion(componentId) {\n let question;\n let answer = [];\n let select = [];\n question = $(\"#\" + componentId.question_id).val();\n for (let i = 0; i < 4; i++) {\n answer[i] = $(\"#\" + componentId.answer_id[i]).val();\n select[i] = $(\"#\" + componentId.select_id[i]).prop('checked');\n }\n return {\n question_id: componentId.question_id.split('_')[1],\n question: question,\n answer: answer,\n select: select,\n error_question: componentId.error_question,\n error_answer: componentId.error_answer,\n };\n}", "function getOptions () {\n return options[Math.floor(Math.random() * options.length)]\n}", "function loadOptions() {\n const options = parseOptions();\n const optionsHTML = [];\n for (let option of options) {\n optionsHTML.push(`\n <input id=\"${option}\" type=\"radio\" name=\"option\" required>\n <label for=\"${option}\" class=\"quiz-option\">${option}</label>\n <br>\n `);\n }\n return optionsHTML;\n }", "function initQuestion() {\r\n /* Question array */\r\n var q = [\"This is a Debian derived Linux distribution managed and funded by the Offensive Security Ltd, designed for digital forensics and penetration testing. Which is this very famous OS majorly developed for Hackers and software testers?\", \"What is DDoS?\", \"The word X is a combination of the words “robot” and “network”. It is a number of Internet-connected devices, each of which is running one or more bots. This can be used to perform DDoS attacks, steal data, send spam. Identify the word X?\"];\r\n\r\n /* Answer array */\r\n var a = [\"kalilinux\", \"distributeddenialofservice\", \"botnet\"];\r\n\r\n /* Make a new array containing the question objects */\r\n var question = [];\r\n for (var i = 0; i < q.length; i++) {\r\n question.push(new Question(q[i], a[i]));\r\n }\r\n return question;\r\n}", "getQnAResponseOptions() {\n return {\n activeLearningCardTitle: this.activeLearningCardTitle,\n cardNoMatchResponse: this.cardNoMatchResponse,\n cardNoMatchText: this.cardNoMatchText,\n noAnswer: this.noAnswer\n };\n }", "function getOptions(multifield){\n return _.map(multifield.items.getAll(), function(item){\n return {\n 'text': item.querySelector(selector.optionText).value,\n 'value': item.querySelector(selector.optionVal).value\n };\n });\n }", "function getQuestionAnswers(question){\n answers = question[\"answers\"];\n answers = answers.map(\n function(x) { return makeEntry(\"answer\",x); }\n );\n return answers.join(\"\");\n}", "function getOptions()\n {\n var parts = $scope.options.split(' ');\n var posCollection = parts.indexOf('in');\n\n var posTrack = parts.indexOf('track');\n var track = parts[posTrack+2].split('.');\n\n var options = {\n collection: parts[posCollection+1],\n track: track[1]\n };\n return options;\n }", "function getQuestions(){\n var questions = [];\n var map = getMap();\n for(var key in map){\n questions.push(map[key]);\n }\n return questions;\n }", "getOptions() {\n let allowedValues = this.props.allowedValues;\n let count = allowedValues.length;\n let options = [];\n for (let i = 0; i < count; i++) {\n let currentValue = allowedValues[i];\n options[i] = { key: currentValue, text: currentValue, value: currentValue };\n }\n\n return options;\n }", "getQnAMakerOptions() {\n return {\n scoreThreshold: this.threshold,\n strictFilters: this.strintFilters,\n top: this.top,\n qnaId: 0,\n rankerType: rankerTypes_1.RankerTypes.default,\n isTest: false\n };\n }", "getChoices() {\r\n const cardOptions = [\r\n {\r\n value: 'G',\r\n synonyms: ['g']\r\n },\r\n {\r\n value: 'Pass',\r\n synonyms: ['pass']\r\n },\r\n {\r\n value: 'Pabili',\r\n synonyms: ['pabili']\r\n }\r\n ];\r\n\r\n return cardOptions;\r\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Promote all peoes in the last square to queen
function promoteQueens() { _pieces .filter(p => p.piece === PEAO && p.row === 0) .forEach(p => p.piece = RAINHA); }
[ "commit_noncommited_square() {\n for (const sq of this._squares) {\n assert(!sq.is_owned());\n if (!sq.is_committed()) {\n sq.make_commit();\n break;\n }\n }\n }", "promote(piece) {\n \n }", "function queenMove() {\n let moves = [\n -1, 0,\n -1, -1,\n -1, 1,\n 0, 1,\n 0, -1,\n 1, 0,\n 1, -1,\n 1, 1\n ];\n let moveLimit = 8;\n let openSpotIds = canMove(moves, moveLimit);\n letMove(openSpotIds);\n}", "function queenUpLeft(x, y, black_cell, team){\n for (var i = 0; i <= 8; i++){\n if (x > 0 && y > 0) {\n x--;\n y--;\n if(!positionChecker(x, y, 'white') && !positionChecker(x, y, 'black')){\n for (var n = 0; n < black_cell.length; n++){\n if (black_cell[n].innerText == x.toString() + y.toString()){\n black_cell[n].classList.add('active-cell');\n }\n }\n\n }\n if (positionChecker(x, y, 'black') &&\n team === 'white' &&\n !positionChecker(x - 1, y - 1, 'white') &&\n !positionChecker(x - 1, y - 1, 'black')) {\n kill_object.push(\n {\n x: x,\n y: y,\n move_to_coords: (x - 2).toString() + (y - 2).toString()\n });\n }\n if (positionChecker(x, y, 'white') &&\n team === 'black' &&\n !positionChecker(x - 1, y - 1, 'white') &&\n !positionChecker(x - 1, y - 1, 'black')) {\n kill_object.push(\n {\n x: x,\n y: y,\n move_to_coords: (x - 2).toString() + (y - 2).toString()\n });\n }\n if (positionChecker(x, y, 'white') &&\n team === 'white') {\n return;\n }\n if (positionChecker(x, y, 'black') &&\n team === 'black') {\n return;\n }\n if(positionChecker(x, y, 'white') && positionChecker(x - 1, y - 1, 'white')) {\n return;\n }\n if(positionChecker(x, y, 'black') && positionChecker(x - 1, y - 1, 'black')) {\n return;\n }\n\n }\n }\n}", "function removeTrappedPieces() {\n traps = [[2,2],[2,5],[5,2],[5,5]];\n for(var i=0;i<4;i++) {\n var tx = traps[i][0];\n var ty = traps[i][1];\n var trappedPiece = boardArray[ty][tx];\n if(trappedPiece && !(boardArray[ty-1][tx]*trappedPiece > 0\n || boardArray[ty+1][tx]*trappedPiece > 0 \n || boardArray[ty][tx-1]*trappedPiece > 0\n || boardArray[ty][tx+1]*trappedPiece > 0)) {\n step = getPieceInital(trappedPiece)+getSquareName(tx, ty)+\"x\";\n currentMove.push(step);\n boardArray[ty][tx] = 0;\n renderBoard();\n }\n }\n}", "rebuyHypotheque () {\n\t\t// Hypotheque presentes\n\t\tlet terrains = this.maisons.findMaisonsHypothequees();\n\t\tif (terrains === undefined || terrains.length === 0 && (this.getNbGroupConstructibles() > 0 && !this.hasConstructedGroups(3))) {\n\t\t\treturn;\n\t\t}\n\t\tlet pos = 0;\n\t\twhile (pos < terrains.length && this.montant > 7 * terrains[pos].achatHypotheque) {\n\t\t\tterrains[pos++].leveHypotheque();\n\t\t}\n\t}", "function placeQueens(gameBoard) {\n // if the total no of queen is same as the board length then algo is over\n if (calcNoOfQueens(gameBoard) === gameBoard.length) return true;\n\n for (let i in gameBoard) {\n for (let j in gameBoard[i]) {\n // if there is no queens placed on the current position\n if (gameBoard[i][j] === 0) {\n // also if it is valid to place the queen on the current position\n if (checkIfQueenCanBePlaced(gameBoard, [i, j])) {\n // place the queen as it is valid\n gameBoard[i][j] = 1;\n ways.push({ i, j, queen: true });\n\n // calling the function\n // if it returns false then the current position is not a good position\n if (!placeQueens(gameBoard)) {\n // then remove the queen that placed currently\n gameBoard[i][j] = 0;\n ways.push({ i, j, queen: false });\n } else {\n // if the recursive call returns true then the game is over\n // as it only return true if the no of queens is satisifed with their positions\n return gameBoard;\n }\n }\n }\n }\n }\n\n // there is no position to place the queen\n return false;\n}", "function handleCapturedPieces($square) {\n $square.data('jumpedPieces').remove();\n countPieces();\n}", "function handleCapturedPieces($square) {\n\n $jumped = $square.data('jumpedPieces');\n $jumped.remove();\n}", "#oneToWin() { \n this.#gPieces = [new Cell(0, 8),\n new Cell(0, 7),\n new Cell(0, 6),\n new Cell(1, 8),\n new Cell(1, 7),\n new Cell(1, 6),\n new Cell(2, 8),\n new Cell(2, 7),\n new Cell(2, 5)];\n }", "function resetSelection(){\r\n\tvar y,x,i;\r\n\r\n\tfor (y=0;y < squares.length; y++){\r\n\t\tfor (x=0;x < squares.length; x++){\r\n\t\t\tif (squares[x][y].tile === 1 || squares[x][y].tile === 2){squares[x][y].piece = 32;}\r\n\t\t\tif (squares[x][y].tile === 3){squares[x][y].piece = 50;}\r\n\t\t}\r\n\t}\r\n\tfor (i=0;i<pieces.length;i++){\r\n\t\tif (pieces[i].isTaken === false){squares[pieces[i].x][pieces[i].y].piece = i;}\r\n\t}\r\n}", "function surround(board,bombs)//the function going on the locations of the mines and add to the cubes that surrounding them 1\n{\n for(let i = 0;i<bombs.length;i++)\n {\n let x = bombs[i][0];\n let y = bombs[i][1];\n if(x+1 < x_squares)\n board[x+1][y].number != -1 ? board[x+1][y].number += 1 : board[x+1][y].number += 0 ;\n if(y+1 < y_squares)\n board[x][y+1].number != -1 ? board[x][y+1].number += 1 : board[x][y+1].number += 0 ;\n if(x-1 >= 0)\n board[x-1][y].number != -1 ? board[x-1][y].number += 1 : board[x-1][y].number += 0 ;\n if(y-1 >= 0)\n board[x][y-1].number != -1 ? board[x][y-1].number += 1 : board[x][y-1].number += 0 ;\n if(x+1 < x_squares && y+1 < y_squares)\n board[x+1][y+1].number != -1 ? board[x+1][y+1].number += 1 : board[x+1][y+1].number += 0 ;\n if(x-1 >= 0 && y-1 >= 0)\n board[x-1][y-1].number != -1 ? board[x-1][y-1].number += 1 : board[x-1][y-1].number += 0 ;\n if(x+1 < x_squares && y-1 >= 0)\n board[x+1][y-1].number != -1 ? board[x+1][y-1].number += 1 : board[x+1][y-1].number += 0 ;\n if(x-1 >= 0 && y+1 < y_squares)\n board[x-1][y+1].number != -1 ? board[x-1][y+1].number += 1 : board[x-1][y+1].number += 0 ;\n }\n return board;\n}", "function Move_Candies()\n{\n\tlatest_promise = null;\n\t//if (keep_moving) // keep moving only if non-empty cells detected\n\t//{\n\tconsole.log(\"Shift down by one!\"); //debug\n\tresults = Move_Candies_Down_Once(); // Shift down by one cell on all columns with empty\n\t//console.log(\"Results are \"+results); //debug\n\tlatest_promise = results[1]; // take the promise\n\tkeep_moving = results[0];\n\t\n\tif (keep_moving)\n\t{\n\t\t new_promise = latest_promise.then(function(){\n\t\t\tdrawgrid(board);\n\t\t\tlast_promise = Move_Candies();\n\t\t\t}); // Recursively APPEND THE PROMISE\n\t\t\t//This trick ensures that each downshift has the same timing and occurs sequentially!\n\t\t\t\n\t}else{\n\t\tconsole.log(\"Shifting is done!\"); //debug\n\t\tcrush_everything();\n\t}\n\n}", "getPotentialPawnMoves([x, y]) {\n const color = this.turn;\n let moves = [];\n const [sizeX, sizeY] = [V.size.x, V.size.y];\n const shiftX = color == \"w\" ? -1 : 1;\n const startRank = color == \"w\" ? sizeX - 2 : 1;\n const lastRank = color == \"w\" ? 0 : sizeX - 1;\n\n const sq1 = this.getSquareAfter([x,y], [shiftX,0]);\n if (sq1 && this.board[sq1[0]][y] == V.EMPTY) {\n // One square forward (cannot be a promotion)\n moves.push(this.getBasicMove([x, y], [sq1[0], y]));\n if (x == startRank) {\n // If two squares after is available, then move is possible\n const sq2 = this.getSquareAfter([x,y], [2*shiftX,0]);\n if (sq2 && this.board[sq2[0]][y] == V.EMPTY)\n // Two squares jump\n moves.push(this.getBasicMove([x, y], [sq2[0], y]));\n }\n }\n // Captures\n for (let shiftY of [-1, 1]) {\n const sq = this.getSquareAfter([x,y], [shiftX,shiftY]);\n if (\n !!sq &&\n this.board[sq[0]][sq[1]] != V.EMPTY &&\n this.canTake([x, y], [sq[0], sq[1]])\n ) {\n const finalPieces = sq[0] == lastRank\n ? V.PawnSpecs.promotions\n : [V.PAWN];\n for (let piece of finalPieces) {\n moves.push(\n this.getBasicMove([x, y], [sq[0], sq[1]], {\n c: color,\n p: piece\n })\n );\n }\n }\n }\n\n return moves;\n }", "promote(row, col, lvl, promoteId) {\n var panel = document.getElementById(\"promotePanel\");\n panel.style.display = \"none\";\n\n // remove the existing pawn and replace it with the new piece\n this.getSquareImage(row, col, lvl).remove();\n this.getHitbox(row, col, lvl).remove();\n var [promotedPiece, promotedPieceHitbox] =\n this.createChessPiece(promoteId);\n promotedPiece.style.opacity = 1;\n this.getSquareDiv(row, col, lvl).appendChild(promotedPiece);\n this.getSquareDiv(row, col, lvl).appendChild(promotedPieceHitbox);\n if (this.flippedSide == -1)\n promotedPiece.classList.add(\"chessImgFlipped\"); // make sure the promoted piece is not updown\n\n // get the cpp pawn and promote it\n var cppPawn = this.getPiece(row, col, lvl);\n var color = promoteId[1] === \"l\" ? 1 : -1;\n var cppPromotedPiece;\n\n // create new cppPiece depending on the id of promoted piece\n switch (promoteId[0]) {\n case \"q\":\n cppPromotedPiece = new Module.Queen(row, col, lvl, color);\n break;\n case \"n\":\n cppPromotedPiece = new Module.Knight(row, col, lvl, color);\n break;\n case \"r\":\n cppPromotedPiece = new Module.Rook(row, col, lvl, color);\n break;\n case \"u\":\n cppPromotedPiece = new Module.Unicorn(row, col, lvl, color);\n break;\n case \"b\":\n cppPromotedPiece = new Module.Bishop(row, col, lvl, color);\n break;\n default:\n throw \"ERROR: promoteId is invalid\";\n }\n cppPawn.promote(this.cppBoard, cppPromotedPiece, true);\n var promote = new Audio(\"../sfx/promote.wav\");\n promote.play();\n\n var moveInfo = this.getMoveInfo(row, col, lvl, promoteId[0]);\n this.handleCheckShadow(moveInfo);\n this.handleSfx(moveInfo);\n\n // update moves list\n if (moveInfo.enemyMated) {\n this.moves.appendSpecial(\n true,\n false,\n true,\n this.turn,\n promoteId[0]\n );\n } else if (moveInfo.enemyChecked) {\n this.moves.appendSpecial(\n false,\n true,\n true,\n this.turn,\n promoteId[0]\n );\n } else {\n this.moves.appendSpecial(\n false,\n false,\n true,\n this.turn,\n promoteId[0]\n );\n }\n\n // update board's evaluation score\n this.scoreBar.update(this.opponent.evaluate(this.cppBoard));\n\n if (this.cpuDifficulty != -1 && this.turn == this.aiColor) {\n return;\n } else this.changeTurn();\n }", "function moves(square){\n let piece = getPieceAtSquare(square);\n if(piece == null) return [];\n let possible = [];\n for(let i = 0; i < 9; i++){\n for(let j = 0; j < 9; j++){\n let dest = {row: i, col: j};\n if(canMoveToSquare(piece, square, dest)){\n possible.append({\n 'square': dest,\n 'canPromote': canPromote(piece)\n && isPromoteSquare(color, square)\n || isPromoteSquare(color, dest),\n 'mustPromote': canPromote(piece)\n && piece.rank == 'p'\n && (piece.color == WHITE && dest.row = 8\n || piece.color == BLACK && dest.row = 0),\n 'capture': getPieceAtSquare(dest)\n });\n }\n }\n }\n }", "function movePiece(e) {\n if (currentActive !== null) {\n const temp = thePuzzle\n for (let connection of temp[currentActive].connected) {\n temp[connection].xLoc = updatePieceLocation(e.clientX, 'x', connection)\n temp[connection].yLoc = updatePieceLocation(e.clientY, 'y', connection)\n temp[connection].z = 3\n }\n setThePuzzle(temp)\n setForce(!force)\n }\n }", "function removeQueen(row,col) {\n\tresetSquare(row,col);\n\trowHasQueen[row] = false;\n\tfor (var dist = 1; dist < N; dist++) {\n\t\tfor (var d = 0; d < 8; d++) {\n\t\t\tvar i = row + dist*(directions[d][0]);\n\t\t\tvar j = col + dist*(directions[d][1]);\n\t\t\tif (i>=0 && i<N && j>=0 && j<N && isSafe(i,j)) resetSquare(i,j);\n\t\t}\n\t}\n}", "function putPieceOnBoard()\n{\n for (var r = 0; r < 4; ++r)\n\t{\n\t\tfor (var c = 0; c < 4; ++c)\n\t\t{\n if (tetrominos[currentShape][currentRotation].rotation[r][c] != 0)\n gameBoard[posY+r][posX+c] = currentShape+1;\n\t\t}\n\t}\n} // end putPieceOnBoard" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Call codefresh to approve or deny the pipeline
function approveDenyPipeline(action, workflowId) { console.log("%sing pipeline %s", action, workflowId); //https://g.codefresh.io/api/workflow/${WORKFLOW_ID}/pending-approval/approve // Prepare a request to approve/deny a pipeline let req = { host: config.codefresh.baseUrl, port: config.codefresh.port, path: '/api/workflow/' + workflowId + '/pending-approval/' + action, // authentication headers headers: { 'Authorization': config.codefresh.token } }; // Do a GET request as an async action that we will wait for const promise = new Promise(function(resolve, reject) { // Send the request to Codefresh https.get(req, (res) => { console.debug("res", res); resolve(res.statusCode); }).on('error', (e) => { console.error(e); reject(Error(e)); }); }); return promise; }
[ "approve(result) {\n this.component.approve(result);\n }", "approve() {\n\t\t\t\tif (Phased.team.members[Phased.user.uid].role != Phased.meta.ROLE_ID.ADMIN \n\t\t\t\t\t&& Phased.team.members[Phased.user.uid].role != Phased.meta.ROLE_ID.OWNER) {\n\t\t\t\t\tthrow new Error('User must be admin to approve or reject task completion');\n\t\t\t\t}\n\n\t\t\t\tif (this.status != Phased.meta.task.STATUS_ID.IN_REVIEW) {\n\t\t\t\t\tthrow new Error('Task must be in review before approval or rejection');\n\t\t\t\t}\n\n\t\t\t\tthis.status = Phased.meta.task.STATUS_ID.COMPLETE;\n\t\t\t\t\n\t\t\t\tStatusFactory.create({\n\t\t\t\t\tname : `${appConfig.strings.status.prefix.task.approvedReview}: ${this.name}`,\n\t\t\t\t\ttaskID : this.ID\n\t\t\t\t}).then(statusID => {\n\t\t\t\t\tthis.linkStatus(statusID);\n\t\t\t\t}, err => {\n\t\t\t\t\tconsole.warn('Posting status for task failed!', err);\n\t\t\t\t});\n\t\t\t}", "grantManualApproval(grantable) {\n if (!this.stage) {\n throw new Error('Cannot grant permissions before binding action to a stage');\n }\n grantable.grantPrincipal.addToPrincipalPolicy(new iam.PolicyStatement({\n actions: ['codepipeline:ListPipelines'],\n resources: ['*'],\n }));\n grantable.grantPrincipal.addToPrincipalPolicy(new iam.PolicyStatement({\n actions: ['codepipeline:GetPipeline', 'codepipeline:GetPipelineState', 'codepipeline:GetPipelineExecution'],\n resources: [this.stage.pipeline.pipelineArn],\n }));\n grantable.grantPrincipal.addToPrincipalPolicy(new iam.PolicyStatement({\n actions: ['codepipeline:PutApprovalResult'],\n resources: [`${this.stage.pipeline.pipelineArn}/${this.stage.stageName}/${this.props.actionName}`],\n }));\n }", "async approve(request, response) {\n\t\tconst resolver = new RouteResolver('announcement', this.layer.approveAnnouncement, [request.body._id]);\n\t\tawait this.handleRoute(request, response, 'Admin', resolver);\n\t}", "async toggleApproval(body, responseId, userInfo) {\n const response = await dbContext.Responses.findOne({ _id: responseId })\n // @ts-ignore\n const wager = response._doc.wager\n if (userInfo.roles[0] === 'Host') {\n // const approved = await dbContext.Responses.findByIdAndUpdate(responseId, body, { new: true })\n await dbContext.Responses.findByIdAndUpdate(responseId, body, { new: true })\n // @ts-ignore\n const points = await this.updatePoints(response._doc.teamId, wager, body.approved)\n\n return points\n } else {\n throw new BadRequest('Permission denied')\n }\n }", "function autoApprovalModifier (appObj, next) {\n db.sqlCommand(sql.checkAutoApproval(appObj.uuid), function (err, res) {\n //if res is not an empty array, then a record was found in the app_auto_approval table\n //change the status of this appObj to ACCEPTED\n if (res.length > 0) {\n appObj.approval_status = 'ACCEPTED';\n }\n next(null, appObj); \n });\n}", "function autoApprovalModifier (appObj, next) {\n\n\t// check if auto-approve *all apps* is enabled\n\tif(config.autoApproveAllApps){\n\t\tappObj.approval_status = 'ACCEPTED';\n\t\tappObj.encryption_required = config.autoApproveSetRPCEncryption;\n\t\tnext(null, appObj);\n\t\treturn;\n\t}\n\n\t// check if auto-approve this specific app is enabled\n db.sqlCommand(sql.checkAutoApproval(appObj.uuid), function (err, res) {\n //if res is not an empty array, then a record was found in the app_auto_approval table\n //change the status of this appObj to ACCEPTED\n if (res.length > 0) {\n appObj.approval_status = 'ACCEPTED';\n\t\t\tappObj.encryption_required = config.autoApproveSetRPCEncryption;\n }\n next(null, appObj);\n });\n}", "function beforeSubmit(context) {\r\n var newApproval = context.newRecord;\r\n\r\n // On Create\r\n if(context.type === context.UserEventType.CREATE) {\r\n // Get the change type\r\n var approvalChangeType = newApproval.getValue({fieldId: 'custrecord_cr_change_type'});\r\n \r\n // Get the Policy Approvers\r\n var policyApprovers = getPolicyApprovers(approvalChangeType);\r\n \r\n // Set Policy Approvers as Mandatory Approvers of CR\r\n newApproval.setValue('custrecord_cr_mandated_approvers', policyApprovers);\r\n \r\n // Set all other fields' default\r\n newApproval.setText('custrecord_cr_approval_status', 'Pending Approval');\r\n newApproval.setText('custrecord_cr_completion_status', 'Open'); \r\n }\r\n // On Edit\r\n else if(context.type === context.UserEventType.EDIT){\r\n var oldRecord = context.oldRecord;\r\n\r\n // Mandated Approvers\r\n var mandatedApprovers = oldRecord.getValue({fieldId: 'custrecord_cr_mandated_approvers'});\r\n for(var i in mandatedApprovers) {\r\n mandatedApprovers[i] = parseInt(mandatedApprovers[i]);\r\n }\r\n\r\n // Currently logged In User\r\n var currentUser = runtime.getCurrentUser().id;\r\n\r\n // Approval Status Changes\r\n var previousApprovalStatus = oldRecord.getText({fieldId: 'custrecord_cr_approval_status'});\r\n var currentApprovalStatus = newApproval.getText({fieldId: 'custrecord_cr_approval_status'});\r\n\r\n // Current User is a Mandatory Approver\r\n if(mandatedApprovers.indexOf(currentUser) > -1) {\r\n // Approval Status has changed\r\n if(previousApprovalStatus !== currentApprovalStatus) {\r\n var currentApprovers = [];\r\n var oldApprovers = oldRecord.getValue({fieldId: 'custrecord_cr_approved_by'});\r\n if(oldApprovers != 0) {\r\n // Transform array String to Integer\r\n for(var i in oldApprovers) {\r\n currentApprovers.push(parseInt(oldApprovers[i]));\r\n }\r\n }\r\n\r\n if(currentApprovalStatus == 'Approved') {\r\n // Add Approver to Approved By list\r\n if(currentApprovers.indexOf(currentUser) < 0) {\r\n currentApprovers.push(currentUser);\r\n newApproval.setValue('custrecord_cr_approved_by', currentApprovers);\r\n }\r\n\r\n // Set the Approval Date\r\n newApproval.setValue('custrecord_cr_approved_date', new Date());\r\n\r\n // Check if ALL Mandated Approvers have already approved\r\n if(mandatedApprovers.length !== currentApprovers) {\r\n // Approval not yet complete. Revert to Pending Approval.\r\n newApproval.setText('custrecord_cr_approval_status', 'Pending Approval');\r\n }\r\n }\r\n else if(currentApprovalStatus == 'Rejected') {\r\n // Add Approver to Approved By list\r\n if(currentApprovers.indexOf(currentUser) < 0) {\r\n currentApprovers.push(currentUser);\r\n newApproval.setValue('custrecord_cr_approved_by', currentApprovers);\r\n }\r\n\r\n // Date Rejected\r\n newApproval.setValue('custrecord_cr_approved_date', new Date()); \r\n }\r\n }\r\n }\r\n else {\r\n // Revert to old Approval Status\r\n if(previousApprovalStatus !== currentApprovalStatus && currentApprovalStatus !== 'Pending Approval') {\r\n newApproval.setText('custrecord_cr_approval_status', previousApprovalStatus);\r\n }\r\n }\r\n }\r\n }", "toggleApproval(args) {\n const approved = !$(`.review-button[data-id=\"${args.id}\"]`).hasClass('approved')\n $(`.review-button[data-id=\"${args.id}\"]`).toggleClass('approved', approved)\n $(`.review-block[data-id=\"${args.id}\"]`).toggleClass('approved', approved)\n\n if (args.context == 'content') {\n // This sends a message to the preview iframe to update the state of the block with the given id.\n // This allows us to have the preview dynamically change when a content change is approved/rejected.\n this.postMessage('approve', { id: args.id, approved: approved })\n } else if (args.context == 'details' && args.refresh == 'true') {\n // For detail changes, we instead reload the preview iframe, if refresh is set to true.\n const url = this.detailsIframe.src.split('?')[0]\n this.detailsIframe.src = `${url}?review=true&excerpt=true&reify=${this.getApprovedDetailChanges().join(',')}`\n }\n }", "deny(result) {\n this.component.deny(result);\n }", "function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {\n allowed[msg.sender][_spender] = _value;\n Approval(msg.sender, _spender, _value);\n\n //call the receiveApproval function on the contract you want to be notified. This crafts the function signature manually so one doesn't have to include a contract in here just for this.\n //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData)\n //it is assumed that when does this that the call *should* succeed, otherwise one would use vanilla approve instead.\n if(!_spender.call(bytes4(bytes32(sha3(\"receiveApproval(address,uint256,address,bytes)\"))), msg.sender, _value, this, _extraData)) { throw; }\n return true;\n }", "async function toggleApproval(req, res) {\n try {\n const { id } = req.body;\n let { approved } = await UserModel.findById(id);\n approved = !approved;\n const updateSucceeded = await UserModel.updateOne({ _id: id }, { approved: approved, pending: false });\n\n if (updateSucceeded) {\n res.sendStatus('200');\n } else {\n res.sendStatus('400');\n }\n } catch(error) {\n res.sendStatus('400');\n }\n}", "async function handleApproval(context) {\n const {github} = context;\n const pr = context.payload.pull_request;\n\n const isPrerelease = getIsPrerelease(pr.title);\n const isMemberOfFusionOrg = await getIsMemberOfOrg(github, 'fusionjs', pr.user.login);\n if(!(isPrerelease && isMemberOfFusionOrg)) return;\n\n // Wait for any quick-running statuses to complete\n await delay(3 * 1000);\n\n // Approve the pull request\n github.pullRequests.createReview(\n context.issue({\n event: \"APPROVE\"\n })\n );\n\n // Attempt to merge the pull request, if possible\n github.pullRequests.merge(context.issue());\n }", "handleApproval(event) {\n const email = event.target.id;\n let approvedUser = this.getUser(email);\n this.submitDecision(true, approvedUser.username).then(response => {\n alert(approvedUser.firstName + ' approved successfully!');\n this.updatePending(email);\n }).catch(error => {\n alert(approvedUser.firstName + ' could not be approved');\n })\n }", "function approveSneaker(callback) {\n}", "authorize(invocation) {\n return true;\n }", "_approveLoan(value) {\n return true;\n }", "requestApproval() {\n this.grrAclDialogService_.openRequestClientApprovalDialog(\n this.clientId, undefined, this.suggestedReason);\n }", "function approveButton() {\n // Change the stage and approved/declined setting\n Xrm.Page.getAttribute(\"ac_stage\").setValue(APPROVED_STAGE_VALUE);\n Xrm.Page.getAttribute(\"ac_approvedecline\").setValue(APPROVE_APPROVEDECLINE_VALUE);\n\n // Issue a save\n Xrm.Page.data.entity.save();\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
3. stockHistory Object used to store the history of a particular stock... TODO implement this later on...
function stockHistory (stockName,startDate,endDate) { this.stockName=stockName; this.startDate=startDate; // start date of stock history... this.endDate=endDate; // end date of stock history... this.times=[]; // time series of history this.SMA=[]; // RAW SMA data series which matches up with time series this.EMA=[]; // RAW EMA data series which matches up with time series this.update = function () { // calls the server explicitly to update this stocks data .... } this.addData = function (data) { // adds the standard raw data from the server to this stock } this.getPlotData = function () { // returns the plot data in the format required for plotting } }
[ "function getStockHistory(stock){\n console.log('stock history '+stock.symbol);\n var TO = moment().format(\"YYYY-MM-DD\");\n var FROM = moment().subtract(20, \"days\").format(\"YYYY-MM-DD\");\n return googleFinance.historical({\n symbol: stock.symbol,\n from: FROM,\n to: TO\n })\n .then(function(stockHistory){\n var stockHistoryRS =[]; \n for(var i=0; i<stockHistory.length; i++){\n var stockRS = calculateResistance(stockHistory[i]);\n stockHistoryRS.push(stockRS);\n } \n console.log(JSON.stringify(stockHistoryRS));\n return stockHistoryRepository.addStocks(stockHistoryRS);;\n })\n}", "addToHistory(t) {\n return __awaiter(this, void 0, void 0, function* () {\n const requestedStock = yield t.save();\n return requestedStock.toJSON();\n });\n }", "function subscribeHistory() {\r\n\r\n on({id: HISTORY_STATE, change:'any'}, function(obj) {\r\n\r\n // obj.state.val: JSON string of oject.\r\n // Like: {\"name\":\"Alexa Flur\",\"serialNumber\":\"xxxxxxxxxx\",\"summary\":\"Wohnlicht an\",\"creationTime\":1582843794820, ... }\r\n let objHistory = JSON.parse(obj.state.val); \r\n let summary = objHistory['summary'];\r\n\r\n // ignore alexa keywords or empty value.\r\n if(! (['', 'alexa','echo','computer'].includes(summary) )) {\r\n // ignore \"sprich mir nach\"\r\n if (!(summary.includes('sprich mir nach '))) {\r\n\r\n // Generate JSON table row object\r\n let jsonTableRowObject = convertAlexaJson(objHistory);\r\n\r\n // Limit array lengths per MAX_ENTRIES\r\n G_tableObjects = G_tableObjects.slice(0, MAX_ENTRIES-1);\r\n\r\n // Add new log as first element to arrays.\r\n G_tableObjects.unshift(jsonTableRowObject); // Add item to beginning of array \r\n\r\n // Update our state. Since we have kept states history in variables, we just update with new variable contents\r\n setState(FINAL_STATE_PATH, JSON.stringify(G_tableObjects));\r\n\r\n }\r\n }\r\n });\r\n\r\n}", "function History(){\n\t/** array to hold all created {@link HistoryItem} objects @type array */\n\tthis.itemA = new Array(0);\n\t/** pointer to the actual history entry @type int */\n\tthis.historyPointer = 0;\n\t/** flag to avoid history entry dubbles @type boolean */\n\tthis.fSuspend = false;\n\tthis.newItem();\n}", "function Stock(ticker, name, price, change, marketCap) {\n\tthis.ticker = ticker;\n\tthis.name = name;\n\tthis.price = price;\n\tthis.change = change;\n\tthis.marketCap = marketCap;\n}", "function History(name,data_from,data_to){\n return new Promise(resolve => {\n yahooFinance.historical({\n symbol: name,\n from: data_from,\n to: data_to\n }, function (err, quotes) {\n var prices = []\n for (let i = 0; i < quotes.length; i++) {\n prices.push(\n {\n opening: quotes[i].open,\n low: quotes[i].low,\n high: quotes[i].high,\n closing: quotes[i].close,\n pricedAt: quotes[i].date\n }\n )\n }\n resolve(\n {\n name: name,\n prices: prices\n }\n );\n });\n });\n}", "function getHistoricalStockInfo(stockSymbol) {\n var webServiceRequest = new XMLHttpRequest();\n \n webServiceRequest.onload = function() { \n historicalStockInfoResponseHandler(webServiceRequest, stockSymbol);\n }\n webServiceRequest.open(\"GET\",\"https://api.iextrading.com/1.0/stock/\" + stockSymbol + \"/chart/1y\", true);\n \n webServiceRequest.send();\n}", "function setHistory() {\n //copied 8 following lines from populate main info as a workaround until this is functionized\n artistHistoryCache = artistHistory;\n //validation to ensure there are no duplicates in artistHistory array\n if (artistHistoryCache.indexOf(artistObj.artist) === -1) {\n artistHistoryCache.push(artistObj.artist);\n console.log(artistHistoryCache);\n storeArtist();\n }\n\n for (var j = 0; j < artistHistoryCache.length; j++) {\n if (\n artistHistoryCache[j] === undefined ||\n artistHistoryCache[j] === null\n ) {\n artistHistoryCache.splice(j, 1);\n }\n }\n }", "function Stock(symbol){\n // this.name = name;\n this.symbol = symbol;\n this.numShares = 0;\n this.data = this.lookupStock();\n this.name = name;\n this.price = price;\n\n}", "function stockObj (){\r\n this.symbol = \"\";\r\n this.company = \"\";\r\n this.price = \"\";\r\n this.quantity = \"\";\r\n this.total = \"\";\r\n this.clientName = \"\";\r\n this.date = \"\";\r\n this.broker = \"\";\r\n this.status = \"\"; //green might indicate this variable has been taken. check if run into problem\r\n}", "function History() {\n this.sampleHistory = [];\n this.current = -1;\n this.lastSample = null;\n this.length = 0;\n}", "function History() {\n this.changes = [];\n this.hPointer = 0;\n}", "function parse_stock_data(obj) {\n\tobj.availability.stock = [];\n\tfor ( var i = 0; i < obj.availability.store.length; ++i) {\n\t\tvar s = obj.availability.store[i];\n\t\tvar n = obj.availability.store_stock[i];\n\t\tvar temp_obj = {}\n\t\ttemp_obj[s] = n;\n\t\tobj.availability.stock.push(temp_obj);\t\n\t}\n\tdelete obj.availability.store;\n\tdelete obj.availability.store_stock;\n\treturn obj;\n}", "function trackOrder(stock, order, trader){\n var orders = this.orders[stock];\n if(orders == null){\n orders = {};\n this.orders[stock] = orders;\n }\n orders[order.order_id] = {order, trader};\n}", "function Stock(symbol, price, shares) {\n this.symbol = symbol;\n this.price = price;\n this.shares = shares;\n}", "function populateHistory (json)\n{\n Brandwatch.stores.historyStore.removeAll ();\n\n for (var i = 0; i < json.brandData.days.length; i++)\n {\n //The date comes back in an odd format with dashes and is fixed manually.\n var fixDate = json.brandData.days[i].date.replace (\"-\", \"/\");\n fixDate = fixDate.replace (\"-\", \"/\");\n fixDate = fixDate.split (\"T\")[0];\n\n var date = new Date (fixDate);\n date = formatDate (date);\n var mentionDate = new Date (fixDate);\n var mentions = json.brandData.days[i].mentions;\n var negDay = json.brandData.days[i].negative;\n var posDay = json.brandData.days[i].positive;\n var neuDay = json.brandData.days[i].neutral;\n\n Brandwatch.stores.historyStore.add ({'date':date, 'formatteddate':mentionDate, 'mentions':mentions, 'negative':negDay, 'positive':posDay, 'neutral':neuDay});\n }\n}", "stockPrevious(stockSymbol) {\n return this.request(`/stock/${stockSymbol}/previous`);\n }", "function addToStockIndex(ticker){\n stockIndex=[];\n var stockIndexObj = {ticker:ticker};\n\n if(localStorage.stockIndex){\n stockIndex = JSON.parse(localStorage.getItem(\"stockIndex\"));\n stockIndex.push(stockIndexObj);\n localStorage.stockIndex = JSON.stringify(stockIndex);\n console.log(\"Ticker added to index in existence\")\n \n } else { \n stockIndex.push(stockIndexObj);\n localStorage.stockIndex = JSON.stringify(stockIndex);\n console.log(\"Ticker added to new index\");\n \n\n }\n}", "saveInHistory(state) {\n let histName = state.currentHistoryName;\n\n if (histName === null) {\n // New history row\n histName = this.getNewHistoryName(state);\n state.currentHistoryName = histName;\n }\n\n state.history[histName] = {\n name: histName,\n lastModification: Date.now(),\n points: state.points,\n links: state.links,\n tooltips: state.tooltips,\n defaultPointColor: state.defaultPointColor,\n defaultLinkColor: state.defaultLinkColor,\n defaultTooltipColor: state.defaultTooltipColor,\n defaultTooltipFontColor: state.defaultTooltipFontColor\n };\n\n this.storeHistory(state.history);\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
checkSuit: throws error if suit does not work as a suit type
function checkSuit(suit){ suit = "" + suit + ""; // coerce to string if(suits.indexOf(suit) == -1 && suit != joker.suit){ throw new Error("Invalid suit: " + suit + ":" + typeof(suit) + " not in " + suits.join(",")); return; } return; }
[ "checkForSuit(suit) {\r\n\t\tif (typeof suit == 'number') suit = SUITS[suit];\r\n\t\telse if (typeof suit == 'string') {\r\n\t\t\tswitch (suit.toLowerCase()) {\r\n\t\t\t\tcase 'club': case 'clubs': case 'c': suit = 'Clubs'; break;\r\n\t\t\t\tcase 'diamond': case 'diamonds': case 'd': suit = 'Diamonds'; break;\r\n\t\t\t\tcase 'heart': case 'hearts': case 'h': suit = 'Hearts'; break;\r\n\t\t\t\tcase 'spade': case 'spades': case 's': suit = 'Spades'; break;\r\n\t\t\t\tcase '': return true;\r\n\t\t\t\tdefault: console.error('Invalid suit.'); return false;\r\n\t\t\t}\r\n\t\t}\r\n\t\telse {\r\n\t\t\tconsole.error('Invalid suit.');\r\n\t\t\treturn false;\r\n\t\t}\r\n\r\n\t\tfor (let c of this.hand) \r\n\t\t\tif (cardSuit(c) == suit)\r\n\t\t\t\treturn true;\r\n\r\n\t\treturn false;\r\n\t}", "static validateSuit(suit) {\n return (_.indexOf(_.values(Card.SUITS), suit)\n > -1);\n }", "isSuited() {\n let suites = this.hand.reduce((acc, card) => {\n card.suite === \"h\" ? ++acc.hearts :\n card.suite === \"c\" ? ++acc.clubs :\n card.suite === \"s\" ? ++acc.spades :\n ++acc.diamonds;\n return acc;\n }, {\n hearts: 0,\n clubs: 0,\n spades: 0,\n diamonds: 0\n });\n\t\t\n //only evalute if all the cards are the same suit\n return Object.values(suites).some(suite => suite > \"4\");\n }", "function playerHasSuit(player, suit) {\n return player.hand.some(card => card.suit === suit)\n}", "set suit (suit) {\n if (Card.suits.includes (suit)) {\n // Found a matching suit\n this._suit = suit;\n } else {\n throw new Error (`${suit} does not match a valid suit value for a card`);\n }\n }", "function helperCheckInSuit(cardNo1,cardNo2,cardNo3){\n return (cardNo1.Suit == cardNo2.Suit && cardNo2.Suit == cardNo3.Suit && cardNo1.Suit == cardNo3.Suit)\n}", "isValidToPlay(card) {\r\n let retVal = false;\r\n let topCard = this.getTopCard();\r\n\r\n if (card.getValue() == \"8\") {\r\n retVal = true;\r\n }\r\n else if (topCard.getValue() == \"8\") {\r\n retVal = (card.getSuit() == this.announcedSuit);\r\n }\r\n else if (card.getSuit() == topCard.getSuit()\r\n || \r\n card.getValue() == topCard.getValue()) {\r\n retVal = true;\r\n }\r\n return retVal;\r\n }", "function checkCardDifferentSuitInSeries(playerCards){\n // check in different suit.\n if (helperCheckInSuit(playerCards[0],playerCards[1],playerCards[2])){\n return false\n }\n \n return helperCheckInSeries(playerCards[0].Value, playerCards[1].Value, playerCards[2].Value)\n}", "function runCheck (run_values_by_suit, card) {\n\t\t\t\tfor (var suit in run_values_by_suit) {\n\t\t\t\t\treturn (run_values_by_suit[suit].indexOf(+card.value) !== -1 && suit === card.suit);\n\t\t\t\t}\n\t\t\t}", "function checkCard(card){\n if(!card || !card.suit || !card.rank){\n throw new Error(\"Invalid card object\");\n }\n checkSuit(card.suit);\n checkRank(card.rank);\n return;\n}", "countSuit(suit = 0)\n\t{\t\n\t\t// 0-3 values accepted for 4 suits of cards.\n\t\tlet counter = 0;\n\t\tfor (let card of this.cards)\n\t\t{\n\t\t\tif (card.intSuit === suit)\n\t\t\t{\n\t\t\t\tcounter++;\n\t\t\t}\n\t\t}\n\t\treturn counter;\n\t}", "function getSuit() {\n\tvar s = document.querySelectorAll(\"input[name= 'suit']:checked\")[0].getAttribute('value');\n\treturn cards[s][0];\n}", "getSuit(){\n\n\t\tif (this.suit=='Spades'){\n\t\t\treturn '♠';\n\t\t}\n\n\t\telse if (this.suit=='Hearts'){\n\t\t\treturn '♥';\n\t\t}\n\t\telse if (this.suit=='Diamonds'){\n\t\t\treturn '♦';\n\t\t}\n\n\t\telse if (this.suit=='Clubs'){\n\t\t\treturn'♣';\n\t\t}\n\n\n\t}", "function checkCardSameSuitNotInSeries(playerCards){\n // check in same suit\n return helperCheckInSuit(playerCards[0],playerCards[1],playerCards[2])\n}", "isTrumpSuitBidValid(bidAmount, bidSuit) {\n // if the player passes - the pass button is the sixth button\n if (bidSuit === 6) {\n return 'pass';\n }\n\n //if the player tries to bid\n if (bidAmount < this.highestBid) {\n return false;\n }\n\n if (bidAmount === this.highestBid && bidSuit <= this.trumpSuit) {\n return false;\n }\n\n return true;\n }", "function detectSameSuit(hand)\n {\n const suit = hand[0].suit;\n\n for (let i = 1; i < hand.length; i++)\n {\n if (hand[i].suit !== suit)\n {\n return false;\n }\n }\n\n return true;\n }", "getFlashSuit_(numbers) {\n let setSuit;\n if (!Object.keys(SUITS).some(suit => {\n setSuit = SUITS[suit];\n return numbers.every(number => this.remainingCards[number].indexOf(setSuit) > -1);\n }, this)) {\n setSuit = null;\n }\n return setSuit;\n }", "function getCardSuitValue (card) {\n\tvar suit = card.substring(0, 5);\n\t\n\tif (suit == SPADES) {\n\t\treturn 0;\n\t} else if (suit == HEARTS) {\n\t\treturn 1;\n\t} else if (suit == CLUBS) {\n\t\treturn 2;\n\t} else if (suit == DIAMONDS) {\n\t\treturn 3;\n\t} else {\n\t\treturn 4;\n\t}\n}", "static isSuited(hand) {\n return hand.includes(\"s\");\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
API test for 'GetSessionStatus', Get session status
function Test_GetSessionStatus(session_name) { return __awaiter(this, void 0, void 0, function () { var in_rpc_session_status, out_rpc_session_status; return __generator(this, function (_a) { switch (_a.label) { case 0: console.log("Begin: Test_GetSessionStatus"); in_rpc_session_status = new VPN.VpnRpcSessionStatus({ HubName_str: hub_name, Name_str: session_name }); return [4 /*yield*/, api.GetSessionStatus(in_rpc_session_status)]; case 1: out_rpc_session_status = _a.sent(); console.log(out_rpc_session_status); console.log("End: Test_GetSessionStatus"); console.log("-----"); console.log(); return [2 /*return*/]; } }); }); }
[ "function get_status() {\n VK.Auth.getLoginStatus(function (val) {\n if (val.session === null) {\n switch_buttons(false);\n } else {\n get_user_info(val).then(set_user_info).then(vk_cont());\n }\n });\n}", "function getLoginStatus(request,response)\n {\n \n if(request.session.userName)\n { \n // If the session is active just \n // send true\n fs.appendFile('log',\"\\n URL :/getLoginStatus - API NAME :getLoginStatus METHOD TYPE : GET \\nOUTPUT:true\\n------------------------------------------------------------------------------\" ,function()\n {\n // Sends 1 if a session is active\n response.send( new Boolean(1));\n });\n }\n else\n {\n fs.appendFile('log',\"\\n URL :/getLoginStatus - API NAME :getLoginStatus METHOD TYPE : GET \\nOUTPUT:false\\n------------------------------------------------------------------------------\" ,function()\n {\n // Sends 0 if a session is not active\n response.send( new Boolean(0));\n });\n\n }\n\n }", "getSearchStatus(sessionId) {\n return this.rest.get(`${this.baseUrl}/sessions/${sessionId}/status`);\n }", "status () {\n let xhr = new XMLHttpRequest ();\n xhr.open ('GET', User.base + '/sessions');\n xhr.onload = () => {\n if (xhr.status !== 200)\n arr [0] = xhr.status;\n try {\n arr [1] = JSON.parse (xhr.response);\n } catch (e) {\n arr [1] = xhr.response;\n }\n this [AET.dispatcher ()] ('status', this, arr);\n }\n }", "function getUserSessionState() {\r\n\r\n var object = new Object();\r\n object.type = \"getUserSessionState\";\r\n object.guid = guid;\r\n\r\n sendApiRequest(object);\r\n\t\t\r\n }", "function getSessionInfo() \r\n{\r\n xrxSessionGetSessionInfo(\"http://127.0.0.1\", getSessionInfo_callback_Success, getSessionInfo_callback_failure);\r\n}", "async function getGipsStatus(session) {\n debug('getGipsStatus called');\n\n const gipsStatus = await getGlobalStatus(session.identityId);\n debug('getGipsStatus called', gipsStatus);\n\n return gipsStatus;\n}", "function get_status() {\n //TODO\n\n }", "async check_session() {\n this.url = 'server/apis/check-session.php';\n const response = await fetch( this.url, { headers: this.headers } );\n const res_obj = await response.json();\n\n let is_session_available = false;\n\n if ( res_obj.success ) {\n is_session_available = true;\n }\n\n return is_session_available;\n }", "function getAuthStatus() {\n var status = context.get(Scope.SESSION, \"urn:ibm:security:asf:response:token:attributes\", \"authStatus\");\n return jsString(status);\n}", "getGameStatus() {\n this.setMethod('GET');\n this.setPlayerId();\n return this.getApiResult(`${Config.PLAY_API}/${this.playerId}/status`);\n }", "getStatus(player) { return !!pawnInvoke('CAC_GetStatus', 'i', player.id); }", "function getStatus() {\n\tapi({ data: \"cmd=getstatus\" },syncStatus);\n}", "get_status() {\n const status = this.status_getter.getStatus(this.user_id // get the current user's ID\n );\n this.log_func(`Fetched status: ${status}`);\n return status;\n }", "checkSessionStatus () {\n if (MatlabEditor.sessionStatus === null) {\n MatlabEditor.forceCheckSessionStatus()\n }\n\n return MatlabEditor.sessionStatus\n }", "status() {\n\t return this.request(\"GET\", \"status/config\", null, null);\n\t }", "static async status() {\n return await this._makeRequest('status', 'get', `/system/status`);\n }", "function getStatus() {\n return getJSONForTable('/rest/status', 'status');\n}", "function checkSessionStatus() {\n var sessionAPI = baseURL+'/api/session';\n $.get(sessionAPI, function(response) {\n if (response) {\n return false;\n } else {\n window.location.replace(currentURL);\n }\n });\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
turn infix array into suffix array
function turnSuffix(infixArray){ var tempArray=['#']; var suffixArray=[]; var top, element; infixArray.push('#'); for(var i = 0; i < infixArray.length; ){ if(symbols.indexOf(infixArray[i]) == -1){//if it's a number suffixArray.push(infixArray[i]); i++; }else{ top = tempArray[tempArray.length - 1]; if(icp[infixArray[i]] > isp[top]){ tempArray.push(infixArray[i]); i++; // console.log(icp[infixArray[i]]+'大于'+isp[top]); } else if(icp[infixArray[i]] < isp[top]){ element=tempArray.pop(); suffixArray.push(element); // console.log(icp[infixArray[i]]+'小于'+isp[top]); }else{ element=tempArray.pop(); if(element=='(' || '#') i++; // console.log(icp[infixArray[i]]+'=='+isp[top]); } } // console.log('i: '+i+', '+suffixArray.toString()+" "+tempArray.toString()); } return suffixArray; }
[ "static suffixArray(array, suffix){\n return array.map(i => i + suffix);\n }", "function suffixLabels(arr, suffix) {\n var new_arr = [];\n for (var i = 0; i < arr.length; i++) {\n new_arr[i] = arr[i] + suffix;\n }\n //object = new_obj;\n return new_arr;\n}", "function InfixtoPrefix(infixval)\n{\n var prefix=[];\n var temp=0;\n push('@'); \n\n for(var i=infixval.length-1;i>=0;i--)\n {\n var el=infixval[i];\n if(operator(el))\n {\n if (el =='(') {\n while (stackarr[topp] != \")\") {\n prefix[temp++] = pop();\n }\n pop();\n }\n else if(el==')')\n {\n push(el);\n }\n \n // function for comparing precedency\n\n else if(precedency(el)>precedency(stackarr[topp]))\n {\n push(el);\n }\n else\n {\n while(precedency(el)<=precedency(stackarr[topp])&&topp>-1)\n {\n prefix[temp++]=pop();\n }\n push(el);\n }\n }\n else{\n prefix[temp++]=el;\n } \n }\n while(stackarr[topp]!='@')\n {\n prefix[temp++]=pop();\n }\n var st=\"\";\n for(var j=prefix.length-1;j>=0;j--)\n {\n st+=prefix[j];\n } \n console.log(\"Prefix Expression:- \"+st);\n }", "function prefixAndSuffixArray(arr) {\n const n = arr.length;\n const prefix = new Array(n);\n const suffix = new Array(n);\n\n prefix[0] = arr[0];\n\n for (let i = 1; i < n; i++) {\n prefix[i] = prefix[i - 1] + arr[i];\n }\n\n suffix[n-1] = arr[n-1];\n\n for (let i = n-2; i >= 0; i--) {\n suffix[i] = suffix[i + 1] + arr[i];\n }\n\n for (let i = 1; i < n - 1; i++) {\n if (prefix[i] === suffix[i]) {\n return arr[i];\n }\n }\n return arr[0];\n}", "suffix(suffix, ...prefix) {\n return prefix.map((p) => `${p}${suffix}`);\n }", "function prefix(pfx, arr) {\n return arr.map(function(x){return pfx + x;});\n }", "function InFixToPostFix(arrToks) {\r\n\t\tvar myStack;\r\n\t\tvar intCntr, intIndex;\r\n\t\tvar strTok, strTop, strNext, strPrev;\r\n\t\tvar blnStart;\r\n\r\n\t\tblnStart = false;\r\n\t\tintIndex = 0;\r\n\t\tarrPFix = new Array();\r\n\t\tmyStack = new Stack();\r\n\r\n\t\t// Infix to postfix converter\r\n\t\tfor (intCntr = 0; intCntr < arrToks.length; intCntr++) {\r\n\t\t\tstrTok = arrToks[intCntr];\r\n\t\t\tdebugAssert(\"Processing token [\" + strTok + \"]\");\r\n\t\t\tswitch (strTok) {\r\n\t\t\t\tcase \"(\" :\r\n\t\t\t\t\tif (myStack.Size() > 0 && IsFunction(myStack.Get(0))) {\r\n\t\t\t\t\t\tarrPFix[intIndex] = ARG_TERMINAL;\r\n\t\t\t\t\t\tintIndex++;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tmyStack.Push(strTok);\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tcase \")\" :\r\n\t\t\t\t\tblnStart = true;\r\n\t\t\t\t\tdebugAssert(\"Stack.Pop [\" + myStack.toString());\r\n\t\t\t\t\twhile (!myStack.IsEmpty()) {\r\n\t\t\t\t\t\tstrTok = myStack.Pop();\r\n\t\t\t\t\t\tif (strTok != \"(\") {\r\n\t\t\t\t\t\t\tarrPFix[intIndex] = strTok;\r\n\t\t\t\t\t\t\tintIndex++;\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\tblnStart = false;\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\tif (myStack.IsEmpty() && blnStart){\r\n\t\t\t\t\t// throw \"Unbalanced parenthesis!\";\r\n\t\t\t\t\tconsole.log(\"This expression \"+exprMap.get(\"currentExpr\")+\"Unbalanced parenthesis!\");\r\n\t\t\t\t\tbreak;\r\n\t\t\t\t\t}\r\n\t\t\t\t\t\t\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tcase \",\" :\r\n\t\t\t\t\tif (myStack.IsEmpty())\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\tdebugAssert(\"Pop stack till opening bracket found!\");\r\n\t\t\t\t\twhile (!myStack.IsEmpty()) {\r\n\t\t\t\t\t\tstrTok = myStack.Get(0);\r\n\t\t\t\t\t\tif (strTok == \"(\")\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\tarrPFix[intIndex] = myStack.Pop();\r\n\t\t\t\t\t\tintIndex++;\r\n\t\t\t\t\t}\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tcase \"!\" :\r\n\t\t\t\tcase \"-\" :\r\n\t\t\t\t\t// check for unary negative operator.\r\n\t\t\t\t\tif (strTok == \"-\") {\r\n\t\t\t\t\t\tstrPrev = null;\r\n\t\t\t\t\t\tif (intCntr > 0)\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tstrPrev = arrToks[intCntr - 1];\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\tstrNext = arrToks[intCntr + 1];\r\n\t\t\t\t\t\tif (strPrev == null || IsOperator(strPrev)\r\n\t\t\t\t\t\t\t\t|| strPrev == \"(\") {\r\n\t\t\t\t\t\t\tdebugAssert(\"Unary negation!\");\r\n\t\t\t\t\t\t\tstrTok = UNARY_NEG;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\tcase \"^\" :\r\n\t\t\t\tcase \"*\" :\r\n\t\t\t\tcase \"/\" :\r\n\t\t\t\tcase \"%\" :\r\n\t\t\t\tcase \"+\" :\r\n\t\t\t\t\t// check for unary + addition operator, we need to ignore\r\n\t\t\t\t\t// this.\r\n\t\t\t\t\tif (strTok == \"+\") {\r\n\t\t\t\t\t\tstrPrev = null;\r\n\t\t\t\t\t\tif (intCntr > 0)\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tstrPrev = arrToks[intCntr - 1];\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\tstrNext = arrToks[intCntr + 1];\r\n\t\t\t\t\t\tif (strPrev == null || IsOperator(strPrev)\r\n\t\t\t\t\t\t\t\t|| strPrev == \"(\") {\r\n\t\t\t\t\t\t\tdebugAssert(\"Unary add, Skipping\");\r\n\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\tcase \"&\" :\r\n\t\t\t\tcase \"|\" :\r\n\t\t\t\tcase \">\" :\r\n\t\t\t\tcase \"<\" :\r\n\t\t\t\tcase \"=\" :\r\n\t\t\t\tcase \">=\" :\r\n\t\t\t\tcase \"<=\" :\r\n\t\t\t\tcase \"<>\" :\r\n\t\t\t\t\tstrTop = \"\";\r\n\t\t\t\t\tif (!myStack.IsEmpty())\r\n\t\t\t\t\t\t{\r\n\t\t\t\t\t\tstrTop = myStack.Get(0);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\tif (myStack.IsEmpty()\r\n\t\t\t\t\t\t\t|| (!myStack.IsEmpty() && strTop == \"(\")) {\r\n\t\t\t\t\t\tdebugAssert(\"Empty stack pushing operator [\" + strTok\r\n\t\t\t\t\t\t\t\t+ \"]\");\r\n\t\t\t\t\t\tmyStack.Push(strTok);\r\n\t\t\t\t\t} else if (Precedence(strTok) > Precedence(strTop)) {\r\n\t\t\t\t\t\tdebugAssert(\"[\" + strTok\r\n\t\t\t\t\t\t\t\t+ \"] has higher precedence over [\" + strTop\r\n\t\t\t\t\t\t\t\t+ \"]\");\r\n\t\t\t\t\t\tmyStack.Push(strTok);\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\t// Pop operators with precedence >= operator strTok\r\n\t\t\t\t\t\twhile (!myStack.IsEmpty()) {\r\n\t\t\t\t\t\t\tstrTop = myStack.Get(0);\r\n\t\t\t\t\t\t\tif (strTop == \"(\"\r\n\t\t\t\t\t\t\t\t\t|| Precedence(strTop) < Precedence(strTok)) {\r\n\t\t\t\t\t\t\t\tdebugAssert(\"[\" + strTop\r\n\t\t\t\t\t\t\t\t\t\t+ \"] has lesser precedence over [\"\r\n\t\t\t\t\t\t\t\t\t\t+ strTok + \"]\");\r\n\t\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\t\tarrPFix[intIndex] = myStack.Pop();\r\n\t\t\t\t\t\t\t\tintIndex++;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t\tmyStack.Push(strTok);\r\n\t\t\t\t\t}\r\n\t\t\t\t\tbreak;\r\n\t\t\t\tdefault :\r\n\t\t\t\t\tif (!IsFunction(strTok)) {\r\n\t\t\t\t\t\tdebugAssert(\"Token [\" + strTok\r\n\t\t\t\t\t\t\t\t+ \"] is a variable/number!\");\r\n\t\t\t\t\t\t// Token is an operand\r\n\t\t\t\t\t\tif (IsNumber(strTok))\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tstrTok;\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t// strTok = ToNumber(strTok);\r\n\t\t\t\t\t\telse if (IsBoolean(strTok))\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tstrTok = ToBoolean(strTok);\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t/*\r\n\t\t\t\t\t\t * else if (isDate(strTok, dtFormat)) strTok =\r\n\t\t\t\t\t\t * getDateFromFormat(strTok, dtFormat);\r\n\t\t\t\t\t\t */\r\n\t\t\t\t\t\tarrPFix[intIndex] = strTok;\r\n\t\t\t\t\t\tintIndex++;\r\n\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tstrTop = \"\";\r\n\t\t\t\t\t\tif (!myStack.IsEmpty())\r\n\t\t\t\t\t\t\t{\r\n\t\t\t\t\t\t\tstrTop = myStack.Get(0);\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\tif (myStack.IsEmpty()\r\n\t\t\t\t\t\t\t\t|| (!myStack.IsEmpty() && strTop == \"(\")) {\r\n\t\t\t\t\t\t\tdebugAssert(\"Empty stack pushing operator [\"\r\n\t\t\t\t\t\t\t\t\t+ strTok + \"]\");\r\n\t\t\t\t\t\t\tmyStack.Push(strTok);\r\n\t\t\t\t\t\t} else if (Precedence(strTok) > Precedence(strTop)) {\r\n\t\t\t\t\t\t\tdebugAssert(\"[\" + strTok\r\n\t\t\t\t\t\t\t\t\t+ \"] has higher precedence over [\" + strTop\r\n\t\t\t\t\t\t\t\t\t+ \"]\");\r\n\t\t\t\t\t\t\tmyStack.Push(strTok);\r\n\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\t// Pop operators with precedence >= operator in\r\n\t\t\t\t\t\t\t// strTok\r\n\t\t\t\t\t\t\twhile (!myStack.IsEmpty()) {\r\n\t\t\t\t\t\t\t\tstrTop = myStack.Get(0);\r\n\t\t\t\t\t\t\t\tif (strTop == \"(\"\r\n\t\t\t\t\t\t\t\t\t\t|| Precedence(strTop) < Precedence(strTok)) {\r\n\t\t\t\t\t\t\t\t\tdebugAssert(\"[\" + strTop\r\n\t\t\t\t\t\t\t\t\t\t\t+ \"] has lesser precedence over [\"\r\n\t\t\t\t\t\t\t\t\t\t\t+ strTok + \"]\");\r\n\t\t\t\t\t\t\t\t\tbreak;\r\n\t\t\t\t\t\t\t\t} else {\r\n\t\t\t\t\t\t\t\t\tarrPFix[intIndex] = myStack.Pop();\r\n\t\t\t\t\t\t\t\t\tintIndex++;\r\n\t\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\t}\r\n\t\t\t\t\t\t\tmyStack.Push(strTok);\r\n\t\t\t\t\t\t}\r\n\t\t\t\t\t}\r\n\t\t\t\t\tbreak;\r\n\t\t\t}\r\n\t\t\tdebugAssert(\"Stack : \" + myStack.toString() + \"\\n\" + \"RPN Exp : \"\r\n\t\t\t\t\t+ arrPFix.toString());\r\n\r\n\t\t}\r\n\r\n\t\t// Pop remaining operators from stack.\r\n\t\twhile (!myStack.IsEmpty()) {\r\n\t\t\tarrPFix[intIndex] = myStack.Pop();\r\n\t\t\tintIndex++;\r\n\t\t}\r\n\t\treturn arrPFix;\r\n\t}", "function InfixtoPostfix(infixval)\n{\n var postfix=[];\n var temp=0;\n push('@'); \n \n for(var i=0;i<infixval.length;i++)\n {\n var el=infixval[i];\n if(operator(el))\n {\n if (el ==')') {\n while (stackarr[topp] != \"(\") {\n postfix[temp++] = pop();\n }\n pop();\n }\n else if(el=='(')\n {\n push(el);\n }\n else if(precedency(el)>precedency(stackarr[topp]))\n {\n push(el);\n }\n else\n {\n while(precedency(el)<=precedency(stackarr[topp])&&topp>-1)\n {\n postfix[temp++]=pop();\n }\n push(el);\n }\n }\n else{\n postfix[temp++]=el;\n } \n }\n while(stackarr[topp]!='@')\n {\n postfix[temp++]=pop();\n }\n var st=\"\";\n for(var j=0;j<postfix.length;j++)\n {\n st+=postfix[j];\n } \n\n // Print postfix expression in console\n \n console.log(\"Postfix Expression:- \"+st);\n }", "function POSTFIX(operatorsParser, nextParser) {\n // Because we can't use recursion like stated above, we just match a flat list\n // of as many occurrences of the postfix operator as possible, then use\n // `.reduce` to manually nest the list.\n //\n // Example:\n //\n // INPUT :: \"4!!!\"\n // PARSE :: [4, \"factorial\", \"factorial\", \"factorial\"]\n // REDUCE :: [\"factorial\", [\"factorial\", [\"factorial\", 4]]]\n return P.seqMap(\n nextParser,\n operatorsParser.many(),\n function(x, suffixes) {\n return suffixes.reduce(function(acc, x) {\n return [x, acc];\n }, x);\n }\n );\n}", "function InfixtoPostfix() {\n \n // Postfix array created\n var postfix = [];\n var temp = 0;\n push('@');\n infixval = document.getElementById(\"infixvalue\").value;\n \n // Iterate on infix string\n for (var i = 0; i < infixval.length; i++) {\n var el = infixval[i];\n \n // Checking whether operator or not\n if (operator(el)) {\n if (el == ')') {\n while (stackarr[topp] != \"(\") {\n postfix[temp++] = pop();\n }\n pop();\n }\n \n // Checking whether el is ( or not\n else if (el == '(') {\n push(el);\n }\n \n // Comparing precedency of el and\n // stackarr[topp]\n else if (precedency(el) > precedency(stackarr[topp])) {\n push(el);\n }\n else {\n while (precedency(el) <=\n precedency(stackarr[topp]) && topp > -1) {\n postfix[temp++] = pop();\n }\n push(el);\n }\n }\n else {\n postfix[temp++] = el;\n }\n }\n \n // Adding character until stackarr[topp] is @\n while (stackarr[topp] != '@') {\n postfix[temp++] = pop();\n }\n \n // String to store postfix expression\n var st = \"\";\n for (var i = 0; i < postfix.length; i++)\n st += postfix[i];\n \n // To print postfix expression in HTML\n document.getElementById(\"text\").innerHTML = st;\n}", "static prefixArray(array, prefix){\n return array.map(i => prefix + i);\n }", "function postfixToInfix (exp) {\n\tvar stackArr = new Array();\n\texp = exp.split('');\n\tfor (var i = 0; i < exp.length; i++) {\n\t\tif (isOperand(exp[i])) {\n\t\t\tpush_stack(stackArr,exp[i]);\n\t\t}\n\t\telse {\n\t\t\tvar temp = topStack(stackArr);\n\t\t\tpop_stack(stackArr);\n\t\t\tvar pushVal = topStack(stackArr) + exp[i] + temp;\n\t\t\tpop_stack(stackArr);\n\t\t\tpush_stack(stackArr,pushVal);\n\t\t}\n\t}\n\treturn (stackArr.valueOf());\n}", "convertToPostFix(inExpr)\n\t{\n\t\tlet stack = [];\n\t\t//Array containing the substrings of the expression excluding spaces.\n\t\tlet exprArr = inExpr;\n\t\t//Store the expression in postfix notation.\n\t\tlet postExpr = '';\n\n\t\t//index tracker\t\n\t\tlet i;\n\t\t\n\t\t//Scan the infix expression\n\t\tfor (i = 0; i < exprArr.length; i++)\n\t\t{\n\t\t\t//Store the scanned character\n\t\t\tlet exprChar = exprArr[i];\n\t\t\t\n\t\t\tif (exprChar === ' ')\n\t\t\t{\n\t\t\t\tcontinue;\n\t\t\t}\n\t\t\t//If exprChar is a digit OR a '-' representing a neg. number (there shouldn't be a space after the '-' for neg. numbers)\n\t\t\telse if (!isNaN(exprChar) || (exprChar == '-' && i + 1 < exprArr.length && !isNaN(exprArr[i + 1]) && exprArr[i + 1] !== ' '))\n\t\t\t{\n\t\t\t\t//Append the digit to the string.\n\t\t\t\tpostExpr += exprChar;\n\t\t\t\t\n\t\t\t\t//Append adjacent digits until a space is found.\t\t\n\t\t\t\twhile (i + 1 < exprArr.length && !isNaN(exprArr[i + 1]) && exprArr[i + 1] !== ' ')\n\t\t\t\t{\n\t\t\t\t\texprChar = exprArr[++i];\n\t\t\t\t\tpostExpr += exprChar;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t//Append a space after the operand is inserted\n\t\t\t\tpostExpr += ' ';\n\t\t\t}\n\t\t\t//If the scanned string is '(' OR ')' OR a '-' representing a neg. number in front of an opening parenthesis (ex: -(2 + 3) or -(-2 + 3)\n\t\t\telse if (exprChar === '(' || exprChar === ')')\n\t\t\t{\t\n\t\t\t\t//Push all left paranthesis into the stack\n\t\t\t\tif (exprChar === '(') \n\t\t\t\t{\n\t\t\t\t\tstack.push(exprChar);\n\t\t\t\t}\n\t\t\t\t//exprChar == ')'. Pop all elements from the stack until a '(' is found\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t//Append everything from the stack before a '(' is found.\n\t\t\t\t\twhile (stack.length > 0 && stack[stack.length - 1] !== '(') \n\t\t\t\t\t{\n\t\t\t\t\t\tpostExpr += stack.pop() + ' ';\n\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t//Discard the '('\n\t\t\t\t\tstack.pop();\n\t\t\t\t}\n\t\t\t}\n\t\t\t//If the scanned string is an operator\n\t\t\telse if (exprChar === '+' || exprChar === '-' || exprChar === '*' || exprChar === '/')\n\t\t\t{\n\t\t\t\t/*\n\t\t\t\t Runs if-statement when:\t\t\t\t\t \n\t\t\t\t - Stack is empty.\n\t\t\t\t - Top of the stack is a '('\n\t\t\t\t - If the scanned operator's precedence is greater than\n\t\t\t\t the operator that's on top of the stack.\n\t\t\t\t */\n\t\t\t\tif (stack.length === 0 || stack[stack.length - 1] === '('\n\t\t\t\t\t|| this.precedence(exprChar) > this.precedence(stack[stack.length - 1])) \n\t\t\t\t{\n\t\t\t\t\t//Push it into the stack\n\t\t\t\t\tstack.push(exprChar);\n\t\t\t\t} \n\t\t\t\t/*\n\t\t\t\tPop and append all operators from the stack that have\n\t\t\t\tgreater precedence than the scanned operator.\n\t\t\t\t\t\t\t\n\t\t\t\tIf a '(' is found later in the stack, stop there and push the operator\n\t\t\t\tinto the stack.\n\t\t\t\t*/\n\t\t\t\telse \n\t\t\t\t{\n\t\t\t\t\twhile (stack.length > 0 && stack[stack.length - 1] !== '('\n\t\t\t\t\t\t && this.precedence(exprChar) <= this.precedence(stack[stack.length - 1])) \n\t\t\t\t\t{\n\t\t\t\t\t\tpostExpr += stack.pop() + ' ';\n\t\t\t\t\t}\n\n\t\t\t\t\t\t//Push this character into the stack.\n\t\t\t\t\t\tstack.push(exprChar);\n\t\t\t\t}\n\t\t\t}\n\t\t\t//Invalid character found\n\t\t\telse\n\t\t\t{\n\t\t\t\treturn 'Invalid Expression.';\n\t\t\t}\n\t\t}\n\t\t\t\t\t\n\t\t//Pop the rest of the stack and append them into the string\n\t\twhile (stack.length > 0)\n\t\t{\n\t\t\tpostExpr += stack.pop() + ' ';\n\t\t}\n\t\n\t\t//Remove the space at the end of the string.\n\t\tpostExpr = postExpr.substring(0, postExpr.length - 1);\n\t\t\n\t\treturn postExpr;\n\t }", "function calculateProducts(arr) {\n let prefix = [];\n let multiplier = 1;\n for (let i=0; i<arr.length; i++) {\n multiplier *= arr[i];\n prefix.push(multiplier);\n }\n\n let suffix = [];\n multiplier = 1;\n for (let i=arr.length-1; i>=0; i--) {\n multiplier *= arr[i];\n suffix.unshift(multiplier);\n }\n\n console.log('prefix', prefix);\n console.log('suffix', suffix);\n let result = [];\n for (let i=0; i<arr.length; i++) {\n const prefixVal = prefix[i-1] || 1;\n const suffixVal = suffix[i+1] || 1;\n result.push(prefixVal * suffixVal);\n }\n\n return result;\n}", "function arrayAdjustILevel(ar){\n\t\tlet a = ar.concat();\n\t\tfor(let i=0; i<a.length; ++i){\n\t\t\tlet s = a[i];\n\t\t\tlet j = s.search(/\\si[0-9]/);\n\t\t\tif(j > 0){\n\t\t\t\ta[i] = s.substring(0, j);\n\t\t\t}\n\t\t}\n\treturn a;\n\t}", "function _InFixToPostFix(arrToks)\n {\n //console.log('post');\n var myStack;\n var intCntr, intIndex;\n var strTok, strTop, strNext, strPrev;\n var blnStart;\n\n blnStart = false;\n intIndex = 0;\n arrPFix = new Array();\n myStack = new Stack();\n\n // Infix to postfix converter\n for (intCntr = 0; intCntr < arrToks.length; intCntr++)\n {\n //console.log(arrPFix);\n //console.log(myStack.toString());\n strTok = arrToks[intCntr];\n switch (strTok.type)\n {\n case Tokenizer.TOKEN_TYPE.LEFT_PAREN :\n if (myStack.Size() > 0 && myStack.Get(0).isFunction)\n {\n arrPFix[intIndex] = Tokenizer.ARG_TERMINAL;\n intIndex++;\n }\n myStack.Push(strTok);\n break;\n case Tokenizer.TOKEN_TYPE.RIGHT_PAREN :\n blnStart = true;\n while (!myStack.IsEmpty())\n {\n strTok = myStack.Pop();\n if (!strTok.isLeftParen)\n {\n arrPFix[intIndex] = strTok;\n intIndex++;\n }\n else\n {\n blnStart = false;\n break;\n }\n }\n if (myStack.IsEmpty() && blnStart)\n throw \"Unbalanced parenthesis!\";\n break;\n case Tokenizer.TOKEN_TYPE.COMMA :\n while (!myStack.IsEmpty())\n {\n strTok = myStack.Get(0);\n if (strTok.isLeftParen) break;\n arrPFix[intIndex] = myStack.Pop();\n intIndex++;\n }\n break;\n //case Tokenizer.TOKEN_TYPE.UNARY_NEGATIVE :\n //case Tokenizer.TOKEN_TYPE.UNARY_NEGATION :\n case Tokenizer.TOKEN_TYPE.ARITHMETIC_OP :\n case Tokenizer.TOKEN_TYPE.LOGICAL_OP :\n case Tokenizer.TOKEN_TYPE.COMPARISON_OP :\n switch (strTok.val)\n {\n /*case \"-\" :\n case \"+\" :\n case \"NOT\" :\n case \"!\" :\n case \"^\" :\n case \"*\" :\n case \"/\" :\n case \"%\" :\n case \"AND\" :\n case \"&\" :\n case \"OR\" :\n case \"|\" :\n case \">\" :\n case \"<\" :\n case \"=\" :\n case \">=\" :\n case \"<=\" :\n case \"<>\" :*/\n default:\n if (strTok.val=='-')\n {\n // check for unary negative operator.\n strPrev = null;\n if (intCntr > 0)\n strPrev = arrToks[intCntr - 1];\n strNext = arrToks[intCntr + 1];\n if (strPrev == null || strPrev.isArithmeticOp || strPrev.isLeftParen || strPrev.isComma)\n {\n strTok = Tokenizer.UNARY_NEGATIVE;\n }\n }\n if (strTok.val=='+')\n {\n // check for unary + addition operator, we need to ignore this.\n strPrev = null;\n if (intCntr > 0)\n strPrev = arrToks[intCntr - 1];\n strNext = arrToks[intCntr + 1];\n if (strPrev == null || strPrev.isArithmeticOp || strPrev.isLeftParen || strPrev.isComma)\n {\n break;\n }\n }\n strTop = Tokenizer.EMPTY_TOKEN;\n if (!myStack.IsEmpty()) strTop = myStack.Get(0);\n if (myStack.IsEmpty() || (!myStack.IsEmpty() && strTop.isLeftParen))\n {\n myStack.Push(strTok);\n }\n else if (strTok.precedence >= strTop.precedence)\n {\n myStack.Push(strTok);\n }\n else\n {\n // Pop operators with precedence >= operator strTok\n while (!myStack.IsEmpty())\n {\n strTop = myStack.Get(0);\n if (strTop.isLeftParen || strTop.precedence < strTok.precedence)\n {\n break;\n }\n else\n {\n arrPFix[intIndex] = myStack.Pop();\n intIndex++;\n }\n }\n myStack.Push(strTok);\n }\n break;\n }\n break;\n default :\n if (strTok.type!=Tokenizer.TOKEN_TYPE.FUNCTION)\n {\n arrPFix[intIndex] = strTok;\n intIndex++;\n }\n else\n {\n strTop = Tokenizer.EMPTY_TOKEN;\n if (!myStack.IsEmpty()) strTop = myStack.Get(0);\n if (myStack.IsEmpty() || (!myStack.IsEmpty() && strTop.isLeftParen))\n {\n myStack.Push(strTok);\n }\n else if (strTok.precedence >= strTop.precedence)\n {\n myStack.Push(strTok);\n }\n else\n {\n // Pop operators with precedence >= operator in strTok\n while (!myStack.IsEmpty())\n {\n strTop = myStack.Get(0);\n if (strTop.val == \"(\" || strTop.precedence < strTok.precedence)\n {\n break;\n }\n else\n {\n arrPFix[intIndex] = myStack.Pop();\n intIndex++;\n }\n }\n myStack.Push(strTok);\n }\n }\n break;\n }\n }\n\n // Pop remaining operators from stack.\n while (!myStack.IsEmpty())\n {\n arrPFix[intIndex] = myStack.Pop();\n intIndex++;\n }\n //console.log(arrPFix);\n return arrPFix;\n }", "function ProcessSymbolArray(arr)\n{\n\ttry {\n\t\tvar newarr = [];\n\t\tfor (var i = 0; i < arr.length; i++) {\n\t\t\tif (arr[i] != \"\") {\n\t\t\t\tvar arrP = unescape(arr[i]).split(\":\");\n\t\t\t\tnewarr.push(arrP[0]);\n\n\t\t\t\tif (arrP.length > 1) {\n\t\t\t\t\tdocument.SymbolNameMaps.push({fromName: arrP[0], toName: arrP[1]});\n\t\t\t\t\tif (arrP.length > 2) {\n\t\t\t\t\t\tdocument.SymbolIconMaps.push({fromName: arrP[0], toIcon: arrP[2]});\n\t\t\t\t\t}\t\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn newarr;\n\t} catch (ex) {alert(ex);}\n}", "function getNewBandNames(suffix, bands) {\n //var seq = ee.List.sequence(1, bands.length());\n //return seq.map(function(b) {\n return bands.map(function(band){\n return ee.String(band).cat(suffix);\n });\n // return ee.String(prefix).cat(ee.Number(b).int());\n //});\n}", "function POSTFIX(operatorsParser, nextParser) {\n // Because we can't use recursion like stated above, we just match a flat list\n // of as many occurrences of the postfix operator as possible, then use\n // `.reduce` to manually nest the list.\n //\n // Example:\n //\n // INPUT :: \"4!!!\"\n // PARSE :: [4, \"factorial\", \"factorial\", \"factorial\"]\n // REDUCE :: [\"factorial\", [\"factorial\", [\"factorial\", 4]]]\n return P.seqMap(nextParser, operatorsParser.many(), (x, suffixes) =>\n suffixes.reduce((acc, x) => [x, acc], x)\n );\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
validate whether the user is authorized to add image to the product
function addImageValidation(req, res, next) { log.info("Add Image Validation Starts"); if(req.user.roles[0] === "reviewer" || req.user.roles[0] === "admin") { log.error("Image Upload Failed - Error: Unauthorized user"); res.status(200).send({'error': 'Unauthorized user'}); } else { db.productDetail.findOne({productID: req.query.productId}, function(err, product) { if(err || !product) { next(); } else if(product) { var userId = req.user._id.toString(); if(userId !== product.supplier.toString() && userId !== product.designer.toString() && userId !== product.reviewer.toString()) { log.error("Add Image Failed - Error: Unauthorized user"); res.status(200).send({'error': 'Not authorized to update this product'}); } else if(product.status === statusMapper.approved) { log.error("Add Image Failed - Error: Product is approved already"); res.status(200).send({'error': 'Approved product cannot be updated'}); } else { next(); } } }); } log.info("Add Image Validation Ends"); }
[ "imageAdded(){\n if (!this.state.valid_image){\n alert(\"Please add a picture.\");\n return false;\n }\n return true;\n }", "function check_image() {\n var im = document.getElementById(\"image_form\").elements.namedItem(\"image_src\").value;\n\n var image = new Image();\n image.src = im;\n\n image.onload = function() {\n if (this.width > 0) {\n alert(\"IMAGE SRC OK - CLICK 'ADD IMAGE' TO SUBMIT\"); }};\n\n image.onerror = function() {\n alert(\"IMAGE SRC INCORRECT - CHECK URL AND RE-ENTER\"); }; \n}", "function isValidImage(images, allowed) {\n\n\n\n\n}", "function wwRequireImageLicense() {\n if (wgPageName != \"Special:Upload\" || getParamValue(\"wpDestFile\") != null) return;\n\n $wpu = $(\"#mw-upload-form\").find(\"[name=wpUpload]\").not(\"#wpUpload\");\n $wpu.attr(\"disabled\", \"true\");\n $(\"#wpLicense\").change(function () {\n if ($(\"#wpLicense\").val()) {\n $wpu.removeAttr(\"disabled\");\n } else {\n $wpu.attr(\"disabled\", \"true\");\n }\n });\n}", "async checkImageUpload () {\n I.waitForElement(this.form.frmPinBuilderDraft);\n const responseCode = await I.grabNumberOfVisibleElements(this.form.frmPinImage);\n if (responseCode < '1') {\n I.say('Image retrieved from coolImages library not found');\n I.click(this.button.btnCancel);\n I.attachFile(this.button.btnAttachImage, '/helpers/data/image/valletta-image.jpg')\n }\n else {\n I.waitForVisible(this.form.frmPinImage);\n I.click(this.form.frmPinImage);\n I.click(this.button.btnAddToPin);\n }\n }", "function validateImageURL(image_url){\n \n }", "function checkImageExists() {\n add_form.image.className = \"valid\"\n document.getElementById('image-validation').innerHTML = \"\";\n var file_path = add_form.image.value;\n var img = document.createElement('img');\n img.setAttribute('src', file_path);\n img.onerror = function() {\n\n document.getElementById('image-validation').innerHTML = \"The image address is incorrect.\";\n add_form.image.className = \"notvalid\"\n return false\n }\n}", "function onAddBtnCheckNullImage(thumbnailId){\n if(document.getElementById(thumbnailId).files.length == 0) {\n alert(\"Please consider upload image before create giftset!\");\n return false;\n } else {\n return $(\"#image-path\").attr('src');\n }\n}", "function validateAdmin() {\n var pTitle = validName(document.forms.add_admin_form.admin_title.value);\n // CREDITS http://stackoverflow.com/questions/1804745/get-the-filename-of-a-fileupload-in-a-document-through-javascript\n var file = document.getElementById(\"admin_file_upload\").value;\n var pImage = validImage(file);\n\n //console.log(file);\n var pIntro = validIntro(document.forms.add_admin_form.admin_intro.value);\n //console.log(pTitle);\n //console.log(pImage);\n //console.log(pIntro);\n if (!pTitle) {\n showError(\"admin_error_message\", \"Please enter a valid title.\");\n }\n if (!pIntro) {\n showError(\"admin_error_message\", \"Please enter a valid introduction between 0 ~ 1000 characters!\");\n }\n if (!pImage) {\n showError(\"admin_error_message\", \"Please upload a valid image!\");\n }\n var isValidAdmin = pTitle && pIntro && pImage;\n return isValidAdmin;\n}", "function validateImage() {\n var size = 320;\n if (image.width == size && image.height == size) {\n return true;\n } else {\n alert(\"Check image dimentions\")\n return false;;\n }\n}", "function validateImage(input, data){\n\t\tif ( !(data == undefined) ) {\n\t\t\tif (data.size <= 3000000) {\n\t\t\t\tif ( data.type == 'application/pdf' || data.type == 'image/jpeg' || data.type == 'image/jpg' || data.type == 'image/gif' || data.type == 'image/png' ) {\n\t\t\t\t\t$(input).addClass('is-valid')\n\t\t\t\t\t$(input).removeClass('is-invalid')\n\n\t\t\t\t\treturn true\n\t\t\t\t} else {\n\t\t\t\t\t$(input).addClass('is-invalid')\n\t\t\t\t\t$(input).removeClass('is-valid')\n\n\t\t\t\t\treturn false\n\t\t\t\t}\n\t\t\t}else {\n\t\t\t\t$(input).addClass('is-invalid')\n\t\t\t\t$(input).removeClass('is-valid')\n\n\t\t\t\treturn false\n\t\t\t}\n\t\t} else {\n\t\t\t$(input).addClass('is-invalid')\n\t\t\t$(input).removeClass('is-valid')\n\n\t\t\treturn false\n\t\t}\n\t}", "checkImageUpload(file) {\n const isJpgOrPng =\n file.type === \"image/jpeg\" ||\n file.type === \"image/png\" ||\n file.type === \"image/jpg\" ||\n file.type === \"image/gif\";\n\n if (!isJpgOrPng) {\n message.error(\"You can only upload JPG/PNG file!\");\n }\n const isLt2M = file.size / 1024 / 1024 < 2;\n if (!isLt2M) {\n message.error(\"Image must smaller than 2MB!\");\n }\n return isJpgOrPng && isLt2M ? true : Upload.LIST_IGNORE;\n }", "function validateImageFile() {\n //check if img selected\n var valid = $scope.selectedImg!=undefined; \n $scope.invalid.imgFile = !valid;\n //show the visual feedback\n if (!valid) $('#filechooser').addClass('invalid');\n else $('#filechooser').removeClass('invalid');\n validateAll();\n}", "function validItem(item) {\n // Als er geen thumbnail is, wordt er false gereturned.\n if (!item.thumbnail || !item.thumbnail.path) {\n return false;\n }\n // Als er wel een thumbnail is, maar de thumbnail zegt \"image not available\" is het ook false.\n let image_available =\n item.thumbnail.path.indexOf(\"image_not_available\") === -1;\n // Anders is het true.\n return image_available;\n}", "function handleAddProductForm() {\n var product = {\n \"name\": $('#admin-product-name-input').val(),\n \"price\": $('#admin-product-price-input').val(),\n \"description\": $('#admin-product-description-textarea').val(),\n \"image_url\": $('#admin-product-image-input').val(),\n \"amount\": $('#admin-product-amount-input').val(),\n \"id\": $('#admin-product-name-input').data('addproduct-id')\n };\n //console.log(product.name, product.image_url, product.price, product.amount, product.description, product.id);\n if (checkName(product.name) && checkPrice(product.price) && checkAmount(product.amount) && checkDescription(product.description)) {\n if (product.id) {\n updateProduct(product, function (error, response) {\n displayAllProducts();\n });\n } else {\n addProduct(product, function (error, response) {\n displayAllProducts();\n });\n }\n $('.admin_addproductarea').hide();\n clearAddproductForm();\n }\n}", "function formValidate(event) {\n event.preventDefault();\n var datatosend,\n photocat = addform.elements[\"category\"].value,\n photoname = addform.elements[\"photoname\"].value,\n photodesc = addform.elements[\"description\"].value,\n photofile = addform.elements[\"file\"].files[0]; // using HTML5 fileAPI\n if ((photocat == '') || (photoname == '')) { // test on html5 attr required\n alert('Fill in required fields');\n } else {\n loader('addform');\n if (localStorage.length) { // check if localstorage allready have item with \"trying to added\" name\n for (var i = 0; i < localStorage.length; i++) {\n var thiskey = localStorage.key(i);\n var parsed = JSON.parse(localStorage.getItem(thiskey));\n if (parsed.name === photoname) { //check if localStorage has items\n alert('this photo allready exists!');\n loader('addform');\n return false;\n }\n }\n }\n datatosend = {\n cat: photocat,\n name: photoname,\n desc: photodesc\n }\n if (document.getElementById(\"file\").value.length) {\n if (!photofile.name.match(/\\.(jpg|jpeg|png|gif)$/)) {\n alert('please choose a image file');\n loader('addform');\n return false;\n } else {\n createImg(datatosend, app.addPhoto, app.addToStorage); //get data from fields and send to createImg function\n //clearForm();\n }\n } else {\n //var videoImage = document.getElementById(\"videoImage\");\n //clearForm();\n datatosend.img = document.getElementById(\"videoImage\").src;\n app.changeView('gallery',null,function(){\n app.addPhoto(datatosend);\n app.addToStorage(datatosend);\n });\n }\n }\n}", "function requiresImage(bool) {\n if (bool) {\n $('#addPhoto').addClass(\"show\");\n } else {\n $('#addPhoto').removeClass(\"show\");\n }\n}", "function validate(file) {\n\t\tif (file.type == \"image/png\") {\n\t\t\treturn true;\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t}", "async productAccessPermission(auth, request) {\n if (!auth.user.roles.includes(\"admin\")) {\n const store = await Store.findBy(\"user_id\", auth.user.id);\n const ids = await Product.query().where(\"store_id\", store.id).ids();\n if (!ids.includes(parseInt(request.get().product_id))) {\n throw { code: \"UNAUTHORIZED\" };\n }\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
update the contents of the map based on the selected time period
function updateMapTimePeriod(category){ // adjust the index from the array index // to the id value in the table category++; // take everything off the map marques.deleteMarker(map, mapData.markers); // add back only those that fall within the defined period $.each(mapData.data, function(index, value){ if(category >= value.min_film_weekly_cat && category <= value.max_film_weekly_cat) { mapData.markers[index].setMap(map); } }); }
[ "function populate() {\n var dateMap = new Map(); // Store sum of hours and minutes for a date\n for (var i = 0; i < globalList[0].length; i++) {\n var qNo = globalList[0][i].queueNo;\n var locationId = globalList[0][i].location__name;\n var location = document.getElementById(locationId);\n var day = globalList[0][i].start;\n var dateFormat = day.slice(0, 10);\n var startDatetime = day.split(\"T\");\n var startDate = startDatetime[0];\n if (qNo == 0){\n if(location.checked === true){\n var startTime = startDatetime[1].replace(\"Z\", \"\");\n var endDatetime = globalList[0][i].end.split(\"T\");\n var endTime = endDatetime[1].replace(\"Z\", \"\");\n // Find difference between end and start\n var startArray = getTime(startTime);\n var endArray = getTime(endTime);\n var diffHour = endArray[0]-startArray[0];\n var diffMin = endArray[1]-startArray[1];\n if (dateMap.has(startDate) && location.value === locationId && location.checked === true){\n // Add current hours to prior hours\n var sumArray = getTime(dateMap.get(startDate));\n var hours = diffHour + sumArray[0];\n var min = diffMin + sumArray[1];\n dateMap.set(startDate, \"\" + hours + \":\" + min);\n }else if(location.value === locationId && location.checked === true) {\n dateMap.set(startDate, \"\" + diffHour + \":\" + diffMin);\n }\n // Change the html in the calendar boxes with number of booked hours.\n if(12-parseInt(getTime(dateMap.get(startDate))[0]) >= 0){\n $(\"#\" + dateFormat + \" h1\").text(\n \"\" + (12 - parseInt(getTime(dateMap.get(startDate))[0]))\n + \"\\n\" + \" hours free\")\n }\n if(12-parseInt(getTime(dateMap.get(startDate))[0]) > 9) {\n $(\"#\" + dateFormat + \" h1\").css(\"color\", \"#fc8307\");\n }else if(12-parseInt(getTime(dateMap.get(startDate))[0]) > 5){\n $(\"#\" + dateFormat + \" h1\").css(\"color\", \"#fc5908\");\n }else if(12-parseInt(getTime(dateMap.get(startDate))[0]) >= 1){\n $(\"#\" + dateFormat + \" h1\").css(\"color\", \"#f73717\");\n }else if(12-parseInt(getTime(dateMap.get(startDate))[0]) < 1){\n $(\"#\" + dateFormat + \" h1\").css(\"color\", \"red\");\n }\n }else if(dateMap.has(startDate) === false) {\n $(\"#\" + dateFormat + \" h1\").text(\"12\" + \"\\n\" + \"hours free\").css(\"color\", \"green\");\n }\n }\n }\n}", "function updateTime(period) {\n\tif (period === -1){\n\t\t// Show datepicker and set time data\n\t\t$(\"#from\").datepicker('setDate', propertiesList[\"from\"]);\n\t\t$(\"#to\").datepicker('setDate', propertiesList[\"to\"]);\n\t\t$(\".timeSelectGroup\").show();\n\t}\n\telse {\n\t\t// Hide datepicker and set time data\n\t\tvar from_date = moment().subtract(parseInt(period), \n\t\t\t\t\t\t'months').format(\"YYYY-MM-DD\");\n\t\tvar to_date = moment().format(\"YYYY-MM-DD\");\n\t\tpropertiesList[\"from\"] = from_date;\n\t\tpropertiesList[\"to\"] = to_date;\n\t\t$(\".timeSelectGroup\").hide();\n\t}\n}", "function updateMap(){\n\tconsole.log(\"update map\");\n\t//get the current year and the current dataset\n\tvar year = $('#yearSelectSlider').slider( \"option\", \"value\" );\n\tvar dataType = $(\"input:radio[name ='dataSelection']:checked\").val();\n\t\n\t//get the name of the type of chart selected\n\tvar dataSetName = $(\"input:radio[name ='dataSelection']:checked\").parent().text();\n \n\n\tif((dataType)&&(year)){\n\t\tconsole.log(dataType + \" | \" + year);\n\t\t//label the map (fill in text on the map overlay) and show it\n\t\t$(\"#mapOverlay\").text(dataSetName + \" - \" + year);\n\t\t$(\"#mapOverlay\").show();\n\t\t\n\t\tvar inverse = updateChloropleth(dataType, year);\n\t\tvar isConflictKey = false;\n\t\t//build the map key\n\t\tif(dataType === \"conflict\"){\n\t\t\tisConflictKey = true;\n\t\t}\n\t\t\n\t\tbuildMapKey(inverse, $(\"#switchRawOrTrend\").bootstrapSwitch('state'), isConflictKey);\n\t\t//if this is showing conflict then only show the red\n\t\tif(isConflictKey){\n\t\t\t$(\"#mapKey\").hide();\n\t\t}\n\t\telse{\n\t\t\t$(\"#mapKey\").show();\n\t\t}\n\t}\n}", "function update_map(date_val){\n\t\t\t\t\tvar curr_date = new Date(date_val * 1000)\n\t\t\t\t\tvar curr_date_id = curr_date.toISOString().split('T')[0]\n\t\t\t\t\tvar curr_datatype_metric = $(\"input.rb_dataopt_metric:checked\").val();\n\t\t\t\t\tvar curr_datatype_type = $(\"input.rb_dataopt_type:checked\").val();\n\t\t\t\t\tvar curr_data_level = $(\"input.rb_data_level:checked\").val();\n\t\t\t\t\tvar curr_data_pop_level = $(\"input.rb_data_pop_level:checked\").val();\n\t\t\t\t\tif (curr_datatype_type == \"daily\"){\n\t\t\t\t\t\tvar curr_lookup = curr_datatype_metric + \"PD_\" + curr_date_id.replace(/-/g, \"\")\t;\n\t\t\t\t\t} else if (curr_datatype_type == \"current\"){\n\t\t\t\t\t\tvar curr_lookup = curr_datatype_metric + \"_\" + curr_date_id.replace(/-/g, \"\");\n\t\t\t\t\t};\n\t\t\t\t\tvar legend_stops = calc_legend_stops(curr_datatype_metric, curr_datatype_type, curr_data_level, curr_data_pop_level)\n\n\t\t\t\t\t// curr_lookup = curr_datatype_metric + \"_decile_\" + curr_date_id.replace(/-/g, \"\");\n\t\t\t\t\t// legend_stops = [\n\t\t\t\t\t// \t\t\t[0, 'darkgray'],\n\t\t\t\t\t// \t\t\t[3, 'green'],\n\t\t\t\t\t// \t\t\t[5, 'yellow'],\n\t\t\t\t\t// \t\t\t[7, 'darkorange'],\n\t\t\t\t\t// \t\t\t[10, 'red']\n\t\t\t\t\t// \t\t];\n\n\t\t\t\t\tif (curr_data_level == \"county\"){\n\t\t\t\t\t\tif (curr_data_pop_level == \"base\"){\n\t\t\t\t\t\t\tmap.setPaintProperty('us_counties_fill', 'fill-color', {\n\t\t\t\t\t\t\t\tproperty: curr_lookup,\n\t\t\t\t\t\t\t\tstops: legend_stops\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_counties_fill', 'visibility', 'visible');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_counties_pop_fill', 'visibility', 'none');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_states_fill', 'visibility', 'none');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_states_pop_fill', 'visibility', 'none');\n\t\t\t\t\t\t} else if (curr_data_pop_level == \"population\"){\n\t\t\t\t\t\t\tmap.setPaintProperty('us_counties_pop_fill', 'fill-color', {\n\t\t\t\t\t\t\t\tproperty: curr_lookup,\n\t\t\t\t\t\t\t\tstops: legend_stops\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_counties_fill', 'visibility', 'none');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_counties_pop_fill', 'visibility', 'visible');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_states_fill', 'visibility', 'none');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_states_pop_fill', 'visibility', 'none');\n\t\t\t\t\t\t}\n\t\t\t\t\t} else if (curr_data_level == \"state\"){\n\t\t\t\t\t\tif (curr_data_pop_level == \"base\"){\n\t\t\t\t\t\t\tmap.setPaintProperty('us_states_fill', 'fill-color', {\n\t\t\t\t\t\t\t\tproperty: curr_lookup,\n\t\t\t\t\t\t\t\tstops: legend_stops\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_states_fill', 'visibility', 'visible');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_states_pop_fill', 'visibility', 'none');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_counties_fill', 'visibility', 'none');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_counties_pop_fill', 'visibility', 'none');\n\t\t\t\t\t\t} else if (curr_data_pop_level == \"population\"){\n\t\t\t\t\t\t\tmap.setPaintProperty('us_states_pop_fill', 'fill-color', {\n\t\t\t\t\t\t\t\tproperty: curr_lookup,\n\t\t\t\t\t\t\t\tstops: legend_stops\n\t\t\t\t\t\t\t});\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_states_fill', 'visibility', 'none');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_states_pop_fill', 'visibility', 'visible');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_counties_fill', 'visibility', 'none');\n\t\t\t\t\t\t\tmap.setLayoutProperty('us_counties_pop_fill', 'visibility', 'none');\n\t\t\t\t\t\t}\n\t\t\t\t\t};\n\n\n\t\t\t\t\tupdate_legend(legend_stops)\n\t\t\t\t\t$slider_info_box.text(format_date(curr_date));\n\n\t\t\t\t\t// if ($active_county != \"\"){\n\t\t\t\t\t// \tupdate_tooltip()\n\t\t\t\t\t// };\n\t\t\t\t}", "function updateMap(year) {\n\n /* TASK 1 */\n // FILTER THE DATA\n // Filter shootingsData to only select data from the year\n // passed through the parameter named 'year' in updateMap(year)\n\n\n\n\n\n\n\n /* TASK 2 */\n // UPDATE THE DATA\n // Use the enter/update/exit pattern to redraw the points\n // on the map, using the filtered data from Step 1 above\n // Note: use the 'id' property for your key accessor function (why?)\n\n\n\n\n\n\n\n\n // Update the year label\n // (You don't need to do anything here)\n yearLabel.text(year);\n \n /* TASK 3 */\n // BIND TOOLTIP\n // Create a tooltip mouseover event for all the circles now drawn\n // in the map after you complete the enter/update/exit pattern;\n // the tooltip should display the location of the incident ('d.location').\n // Note: var 'tooltip' has already been defined elsewhere in the code,\n // so you only need to create the mouseover/mouseout event here\n\n\n\n \n\n\n\n\n }", "function updateMap(){\n\t\t//Construct url\n\t\tvar lat = Gmaps.map.map.center.$a;\n\t\tvar long = Gmaps.map.map.center.ab;\n var future = $('#dateFilter').slider('value');\n var dist = searchDist;\n\t\tvar qs = 'lat='+lat+'&long='+long+'&dist='+dist+'&future='+future;\n\t\tvar totalUrl = serviceurl+qs;\n\t\tvar new_markers = $.getJSON(totalUrl, function(data) {\n\t\t\tGmaps.map.replaceMarkers(data);\n\t\t});\n\t\t\n\t\t//Update UI\n\t\tvar today = new Date();\n\t\tvar cutoffDate = new Date();\n\t\tcutoffDate.setDate(today.getDate() + parseInt(future)\t);\n $('#displayDateVal').text((cutoffDate.getMonth()+1)+'-'+cutoffDate.getDate());\n $('#displayDistVal').text(dist);\n}", "function update(selectedTime){\n\n if (!map.tilesloading) {\n\n document.getElementById(\"buttonWeekday_\"+selectedWeekday).focus();\n selectedTime = getNewSelectedTime(selectedTime) \n \n // 1. step: Highlight calendar\n var previousSelectedDiv = document.getElementById(\"hour_\" + previousSelectedTime);\n previousSelectedDiv.style.background = '#1F407A';\n var selectedDiv = document.getElementById(\"hour_\" + selectedTime);\n selectedDiv.style.background = '#91056A';\n previousSelectedTime = selectedTime;\n\n // 2. step: Move timeslider\n document.getElementById(\"slider\").value = selectedTime;\n TimeBubble = document.getElementById('TimeBubble');\n \n pos = (document.getElementById(\"slider\").getBoundingClientRect().left-document.body.getBoundingClientRect().left) + (selectedTime-8)*document.getElementById(\"slider\").clientWidth/12;\n TimeBubble.style.left = pos.toString() + 'px' ;\n TimeBubble.innerText = selectedTime.toString() + \":00\";\n \n // 3.step: Highlight building \n if (calenderData[selectedWeekday] != null){\n highlightBuilding(selectedTime);\n }\n }\n}", "async function setTimerangeToCoverAllSampleData() {\n const past = new Date();\n past.setMonth(past.getMonth() - 6);\n const future = new Date();\n future.setMonth(future.getMonth() + 6);\n await PageObjects.maps.setAbsoluteRange(\n PageObjects.timePicker.formatDateToAbsoluteTimeString(past),\n PageObjects.timePicker.formatDateToAbsoluteTimeString(future)\n );\n }", "function updateMap(maps, month, year) {\n let map = maps[month][year];\n console.log(\"update\");\n\n // remove map's svg element\n let svg = d3.select(\".map\");\n svg.remove();\n\n makeMap(map);\n\n // transition??\n // g.selectAll(\"path\")\n // .data(map.features)\n // .attrTween(\"d\", function(d) {\n // let interpol = d3.interpolate(this._current, d);\n // this._current = interpol(0);\n // return function(t) {\n // return arc(interpol(t));\n // }\n // });\n}", "UpdateData(startDate, endDate) {\n this.startDate = startDate;\n this.endDate = endDate;\n\n const data = this.currentData.filter(row => { \n return row.Date.getTime() >= startDate.getTime() && row.Date.getTime() < endDate.getTime()\n });\n this.mapObject.updateMap(data);\n this.plotObject.updatePlot(data);\n }", "function updateTime() {\n //update plotly if needed\n if (currentInfoWindow) {\n $('#mapPopupContentWater, #mapPopupContentWaves, #mapPopupContentWind, #pointPlotContent').each(function() {\n Plotly.relayout(this, {\n 'shapes[0]': null\n });\n Plotly.relayout(this, {\n 'shapes[0]': {\n type: 'line',\n layer: 'above',\n x0: getRealSelectedTimeString(),\n y0: 0,\n x1: getRealSelectedTimeString(),\n y1: 1,\n yref: \"paper\",\n opacity: 0.5,\n line: {\n color: 'rgba(32,81,124,0.7)',\n width: 2\n }\n }\n });\n })\n }\n //update data layers\n let promises = [];\n for (let layerIndex in layers) {\n let layer = layers[layerIndex];\n if (layer[\"visible\"] && layer[\"type\"] === \"geoJSON\" && layer[\"temporal\"]) {\n //remove data thats far away from the current time to free up some RAM\n for (let i = 0; i < 84; i++) {\n if (layer[\"data\"][layer[\"showing\"][0]] && layer[\"data\"][layer[\"showing\"][0]][i] &&\n (i-layer[\"showing\"][1] < -2 || i-layer[\"showing\"][1] > 6)\n ) {\n layer[\"data\"][layer[\"showing\"][0]][i].setMap(null);\n layer[\"data\"][layer[\"showing\"][0]][i] = null;\n }\n }\n //show data for current time\n if (layer[\"showing\"][1] !== currentHourSetting) {\n let returnValue = showData(layer, layer[\"showing\"][0], currentHourSetting);\n if (returnValue)\n\t\t\t\t\tpromises.push(returnValue);\n }\n }\n if (layer[\"visible\"] && layer[\"type\"] === \"geoJSON\" && layer[\"hasParticles\"] && layer[\"particlesRunning\"]) {\n setParticleFile(layer);\n }\n else if (layer[\"visible\"] && layer[\"type\"] === \"stormPath\") {\n hurricaneMapPoints(layer)\n }\n }\n return promises;\n}", "update() {\n\t\tconst timeSpan = this.main.dataHandler.timeSpan;\n\n\t\tthis.slider.updateOptions({\n\t\t\trange: {\n\t\t\t\t'min': timeSpan.minTime || 0,\n\t\t\t\t'max': timeSpan.maxTime || 1\n\t\t\t}\n\t\t})\n\t\tthis.slider.set([timeSpan.startTime, timeSpan.endTime]);\n\n\t\tdocument.getElementById('timebar-from').valueAsDate = new Date(timeSpan.startTime);\n\t\tdocument.getElementById('timebar-to').valueAsDate = new Date(timeSpan.endTime);\n\t}", "function updateMap() {\n\t\n\tvar sel_option = $(\"input[name=dataDisplayOption]:checked\").val();\n\t\n\t// ignore func call if the setting was not changed\n\tif (sel_option == c_display_option) { return; }\n\t\n\t// clear the map of the old overlays\n\tclearMap();\n\t\n\t// save the new display option\n\tc_display_option = sel_option;\n\t\n\t// plot the data all over again\n\tplotAllData();\n\t\n}", "function updateMap() {\n //Anything else should be handled by pre and postdraw functions\n ms.draw();\n }", "function updateMap(mapSelectedYear) {\n\n // Process the year of the EUROSTAT data we now want\n let newMapData = {};\n let newMapYear = mapSelectedYear;\n processMapData(newMapData, newMapYear);\n\n // Update scale\n colorScaleMap\n .range(colorbrewer.YlOrRd[9])\n .domain([0, 350000]);\n\n // Update map tooltip using the new data\n mapTip.html(function(d) {\n\n let mapTooltipText = formatThousand(newMapData[d.id]) + \" KTOE\";\n\n // If the country has no valid values, report unknown\n if (!isNumber(newMapData[d.id])) {\n mapTooltipText = \"unknown\";\n }\n\n return \"<strong>Country:</strong> \" + d.properties.NAME + \"<br>\" +\n \"<strong>Energy usage:</strong> \" + mapTooltipText;\n });\n\n // Update map data and color\n map.selectAll(\".country\")\n .transition().duration(400)\n .style(\"fill\", function(d) {\n if (isNaN(newMapData[d.id])) {\n return \"slategrey\";\n } else {\n return colorScaleMap(newMapData[d.id])\n }\n });\n\n // Update title\n updateTitle(newMapYear);\n}", "_updateChartData() {\n for (let i = 0; i < this._items.length; i++) {\n const startDate = this._getChartStartDate();\n const mapToChartData = this._options.mapToChartData;\n this._items[i].updateChartData(startDate, mapToChartData);\n }\n }", "function updateMap(){\n\t$map.dataProvider.areas = [];\n\tfor(var $x in $states) {\n\t\t$map.dataProvider.areas.push({ id: \"US-\" + $states[$x], groupId: \"US-\" + $states[$x], selectable: true, value: $counts[$states[$x]] });\n\t\tif ( 'DC' == $states[$x] ) {\n\t\t\t$map.dataProvider.images[0].value = $counts[$states[$x]];\n\t\t\t$map.dataProvider.images[0].title = \"Washington, DC\";\n\t\t}\n\t}\n\t$map.validateData();\n\t// now let's take the color of the area and apply to DC callout image\n\tfor ( var x in $map.dataProvider.areas ) {\n\t\tif ( \"US-DC\" == $map.dataProvider.areas[x].id ) {\n\t\t\t$map.dataProvider.images[0].color = $map.dataProvider.areas[x].colorReal;\n\t\t\t$map.validateData();\n\t\t\tbreak;\n\t\t}\n\t}\n}", "function updateSelectedPeriod (event) {\n\n let timePeriods = schedule.getTimePeriods();\n\n /* If there's only one possible time period and it covers the entire length of the schedule, don't bother with the full check */\n\n if (timePeriods.length === 1 && timePeriods[0].startMins === 0 && timePeriods[0].endMins === 1440) {\n\n const selectedIndex = 0;\n\n if (clickCallback) {\n\n clickCallback(selectedIndex);\n\n }\n\n return;\n\n }\n\n const rect = clickableCanvas.getBoundingClientRect();\n const clickMins = (event.clientX - rect.left) / clickableCanvas.width * 1440;\n\n if (ui.isLocalTime()) {\n\n timePeriods = timeHandler.convertTimePeriodsToLocal(timePeriods);\n\n }\n\n let selectedIndex = -1;\n\n for (let i = 0; i < timePeriods.length; i++) {\n\n const startMins = timePeriods[i].startMins;\n const endMins = timePeriods[i].endMins;\n\n if (startMins > endMins) {\n\n if ((clickMins >= startMins && clickMins < 1440) || (clickMins >= 0 && clickMins < endMins)) {\n\n selectedIndex = i;\n\n }\n\n } else {\n\n if (clickMins >= startMins && clickMins < endMins) {\n\n selectedIndex = i;\n\n }\n\n }\n\n }\n\n if (clickCallback) {\n\n clickCallback(selectedIndex);\n\n }\n\n}", "function handleTemporal() {\n // Set temporal scale options\n var temporal = document.getElementById(\"temporal\");\n for (i = 1; i < temporal.options.length; i++) {\n temporal.options[i] = null;\n }\n if (forcing.value == 'cm') {\n temporal.options[1] = new Option(\"Monthly\", \"monthly\");\n temporal.value = \"monthly\" //default\n } else if (forcing.value == 'rg' || 'gdas') {\n temporal.options[1] = new Option(\"Daily\", \"daily\");\n temporal.options[2] = new Option(\"Monthly\", \"monthly\");\n temporal.value = \"daily\" //default\n }\n handleDate();\n mapInit();\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
returns a list of similar words and their definitions
function getSimilar(input) { let list = document.createElement('dl') list.className = "col-sm" list.innerHTML = `<h3>Words with meaning similar to "${ input }"<h3>` fetch(`https://api.datamuse.com/words?md=d&ml=${ input }`) .then(response => response.json()) .then(arr => { arr.forEach(pair => { let word = document.createElement('dt') word.appendChild(document.createTextNode(pair['word'])) list.appendChild(word) let def = document.createElement('dd') def.appendChild(document.createTextNode((getFirstDef(pair['defs'])))) list.appendChild(def) }); }) .catch(err => { console.log(err) }) return list }
[ "function findSimilarWord(word, dictionaryWords) {\n}", "function wordsSet() {\n\n words = ['accidently', 'adventure', 'alongside',\n 'alternative', 'analysts', 'anniversary',\n 'appreciation', 'apprehend', 'arrested',\n 'authoritative', 'authorities', 'automatically',\n 'breakthrough', 'broadcast', 'business',\n 'calculate', 'capacity', 'celebrity',\n 'childhood', 'collaboration', 'collateral',\n 'collection', 'commendable', 'community',\n 'composition', 'comprehensive', 'concern',\n 'conclusive', 'consumption', 'definitions',\n 'deliberately', 'delinquency', 'demonstrate',\n 'deserve', 'determination', 'director',\n 'dispute', 'disruption', 'diversity',\n 'electronics', 'established', 'estimate',\n 'expected', 'extinguish', 'extradition',\n 'fashion', 'forecast', 'government',\n 'headlines', 'hypocritical', 'immediately',\n 'improvement', 'interview', 'investigations',\n 'jeopardise', 'launching', 'magazine',\n 'mathematics', 'memorial', 'mischievous',\n 'neglect', 'obstacle', 'orientations',\n 'overloaded', 'peacefully', 'performance',\n 'popularly', 'population', 'possibilities',\n 'presumptuous', 'production', 'proposition',\n 'provided', 'provisional', 'published',\n 'reciprocate', 'relinquish', 'repository',\n 'researchers', 'responsible', 'responsive',\n 'settlement', 'skyscraper', 'smartphone',\n 'stainless', 'standards', 'statement',\n 'suffocate', 'superstar', 'surprise',\n 'sustainable', 'television', 'transcribe',\n 'typography', 'understand', 'undertaker',\n 'underwrite', 'violence', 'vulnerability',\n 'waterfront'];\n\n } // end of wordsSet", "function outcomes_example_words() {\n\tvar temp, i, found = {}, ret = [];\n\n\tfor (i = 0; i < outcome_parameters.solo.length; i++) {\n\t\tdo { /* Loop prevents duplicates on list. */\n\t\t\ttemp = outcomes_random_word(outcome_parameters.solo[i].list);\n\t\t} while (found[temp] !== undefined);\n\t\tfound[temp] = 1;\n\t\tret.push(temp);\n\t}\n\n\treturn ret;\n}", "complete(text) {\n //@TODO\n\tlet return_list = [];\n\tlet return_set = new Set();\n\n\t// Suggestion offered only for the last word entered\n\ttext = text.substring(text.lastIndexOf(\" \") + 1);\n\n\tfor(let key in this.content_dict)\n\t{\n\t\tlet content = this.content_dict[key];\n\t\tlet match_text = \"\\\\b\" + text + \"[^ ]+?\\\\b\";\n\t\tlet re = new RegExp(match_text, \"gi\");\n\t\tlet temp_list = content.match(re); // List of all the matches in single document\n\n\t\tif (temp_list != null)\n\t\t{\n\t\t\tfor (let i = 0; i < temp_list.length; i++)\n\t\t\t{\n\t\t\t\tlet suggestion = normalize(temp_list[i]);\n\t\t\t\t// Add unique matched suggestions to the list\n\t\t\t\tif (!return_set.has(suggestion))\n\t\t\t\t{\n\t\t\t\t\treturn_set.add(suggestion);\n\t\t\t\t\treturn_list.push(suggestion);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n return return_list;\n }", "function suggest(s) {\n const result = [];\n // Iterate over items in the dictionary\n for (const p in FUNCTIONS) {\n if (p.startsWith(s) && !FUNCTIONS[p].infix) {\n result.push({ match: p, frequency: FUNCTIONS[p].frequency });\n }\n }\n for (const p in MATH_SYMBOLS) {\n if (p.startsWith(s)) {\n result.push({ match: p, frequency: MATH_SYMBOLS[p].frequency });\n }\n }\n result.sort((a, b) => {\n var _a, _b;\n if (a.frequency === b.frequency) {\n if (a.match.length === b.match.length) {\n return a.match.localeCompare(b.match);\n }\n return a.match.length - b.match.length;\n }\n return ((_a = b.frequency) !== null && _a !== void 0 ? _a : 0) - ((_b = a.frequency) !== null && _b !== void 0 ? _b : 0);\n });\n return result;\n}", "function compare(){\n var corpus = standardNouns;\n var spellcheck = new natural.Spellcheck(corpus);\n //comparing each noun of evalDoc with corpus\n for(let i = 0; i < evalNouns.length; i++){\n\tif(spellcheck.isCorrect(evalNouns[i])){\n\t\tsimilarNouns.push(evalNouns[i]);\n\t}\n} \n console.log(similarNouns)\n end();\n}", "function words() {\n\t\tlet cues = getCuesReference();\n\t\tlet movieLines = [];\n\t\tlet wordStats;\n\n\t\tif (cues) {\n\t\t\tfor (let cue of cues) {\n\t\t\t\tmovieLines.push({ id: cue.id, startTime: cue.startTime, endTime: cue.endTime, text: cue.text});\n\t\t\t}\n\n\t\t\twordStats = subfilter.stats.wordStats(movieLines);\n\n\t\t\tlet words = [];\n\n\t\t\tfor (let word of wordStats) {\n\t\t\t\tconsole.info(word[0], word[1]);\n\t\t\t\twords.push(word[0]);\n\t\t\t}\n\n\t\t\twords.sort();\n\t\t\tconsole.info(\"Words:\", words.length);\n\t\t\tconsole.info(words.join(\" \"));\n\t\t}\n\t}", "function getAllWords(documents){\n var allWords = new Set()\n documents.forEach(obj => {\n obj.content.toLowerCase().split(' ').forEach(contentWord => {\n if(!stopWords.includes(contentWord)){\n allWords.add(contentWord)\n }\n })\n });\n return allWords\n}", "words(content) {\n const splitWords = content.match(WORD_REGEX);\n let localWords = [];\n if (null != splitWords) {\n for (let word of splitWords) {\n if (word === null)\n continue;\n const keyword = normalize(word);\n if (keyword === null)\n continue;\n if (!this.noiseWordsIndex.has(keyword)) {\n this.finalWords.add(keyword);\n localWords.push(keyword);\n }\n\n }\n\n }\n return localWords;\n }", "function wordStats(lines) {\n\t\tlet words = {};\n\n\t\tif (!lines) {\n\t\t\tlines = savedLines;\n\t\t}\n\n\t\tfor (let item of lines) {\n\t\t\tlet line;\n\n\t\t\t// Use .displayText or .text\n\t\t\tif (item.displayText) {\n\t\t\t\tline = item.displayText.toLowerCase();\n\t\t\t }\n\t\t\t else {\n\t\t\t \tline = item.text.toLowerCase();\n\t\t\t }\n\n\t\t\t//console.log(line);\n\n\t\t\t// remove all <tags>\n\t\t\tline = line.replace(/<[^<>]+>/g, \"\");\n\n\t\t\t// remove all [ bracets content ]\n\t\t\tline = line.replace(/\\[[^\\]]+\\]/g, \"\");\n\n\t\t\t// remove punctuation and common special characters\n\t\t\t// TODO use set of special char that we already have for filters, do not duplicate them here\n\t\t\tline = line.replace(/[-–♪(),\"“”„:;.?!¡¿…()!?:,、\\u061f\\u060c]/g, \"\");\n\n\t\t\t// after all that replacing there could be some surrounding spaces, trim them\n\t\t\tline = line.trim();\n\n\t\t\tif (line == \"\") { continue; } // is there anything left?\n\n\t\t\t//console.log(line);\n\n\t\t\t// cycle all words in a given cue\n\t\t\tlet fragments = line.split(/\\s+/);\n\n\t\t\tfor (let fragment of fragments) {\n\n\t\t\t\tif (fragment == \"\") { continue; }\n\n\t\t\t\t// if fragment is a word in apostrophes, remove apostrophes; 'word' => word\n\t\t\t\tif (fragment.match(/^'.*'$/)) {\n\t\t\t\t\tfragment = fragment.replace(/^'/, \"\").replace(/'$/, \"\");\n\t\t\t\t}\n\n\t\t\t\tif (!(fragment in words)) {\n\t\t\t\t\twords[fragment] = 0;\n\t\t\t\t}\n\n\t\t\t\twords[fragment]++;\n\t\t\t}\n\t\t}\n\n\t\t// To sort we need to create list first, then sort it\n\t\tlet wordsArray = [];\n\n\t\tfor (let item in words) {\n\t\t\twordsArray.push([item, words[item]]);\n\t\t}\n\n\t\twordsArray.sort(function(a,b) { return b[1] - a[1]; });\n\n\t\treturn wordsArray;\n\t}", "function compareNouns(){\n var corpus = standardNouns;\n var spellcheck = new natural.Spellcheck(corpus);\n //comparing each noun of evalDoc with corpus\n for(let i = 0; i < evalNouns.length; i++){\n\tif(spellcheck.isCorrect(evalNouns[i])){\n\t\tsimilarNouns.push(evalNouns[i]);\n\t}\n} \n \n}", "find(terms) {\n let names, score, lines;\n let resultsArray = [];\n\n if (terms.length > 1) {\n let bothTermsExist = true;\n // Check if the words exist in the same sentence.\n for (let term of terms) {\n term = normalize(term);\n if (!this.contentMap.has(term)) {\n bothTermsExist = false;\n break;\n }\n }\n let multiWordMap = new Map();\n // Create multi word map\n for (let term of terms) {\n term = normalize(term);\n if (this.contentMap.has(term) && term !== \"\") {\n let docKeys = this.contentMap.get(term).keys();\n for (let key of docKeys) {\n if (multiWordMap.has(key)) {\n let existingKey = [];\n existingKey = multiWordMap.keys();\n multiWordMap.get(key).push({\n tm: term,\n occurrences: this.contentMap.get(term).get(key).numberOfOccurrence,\n line: this.contentMap.get(term).get(key).ln,\n lineNo: this.contentMap.get(term).get(key).lineNumber\n });\n } else {\n multiWordMap.set(key, [{\n tm: term,\n occurrences: this.contentMap.get(term).get(key).numberOfOccurrence,\n line: this.contentMap.get(term).get(key).ln,\n lineNo: this.contentMap.get(term).get(key).lineNumber\n }]);\n }\n }\n }\n }\n // Fill in the results array.\n for (let termKey of multiWordMap.keys()) {\n let score = 0;\n let line = [];\n multiWordMap.get(termKey).sort(function (a,b){return (a.lineNo - b.lineNo);});\n for (let entry of multiWordMap.get(termKey)) {\n score = score + parseInt(entry.occurrences);\n //Checking lines\n if (!line.includes(entry.line)) {\n line = line + entry.line + \"\\n\";\n }\n }\n\n resultsArray.push(new Result(termKey, score, line));\n }\n } else if (terms.length === 1) {\n let term = terms[0];\n if (this.contentMap.has(term.toLowerCase()) && term !== \"\") {\n let documents = new Map(this.contentMap.get(term.toLowerCase()));\n names = documents.keys();\n for (let name of names) {\n score = documents.get(name).numberOfOccurrence;\n lines = (typeof documents.get(name).ln === 'undefined') ? \"\" : documents.get(name).ln + \"\\n\";\n resultsArray.push(new Result(name, score, lines));\n }\n }\n }\n resultsArray.sort(compareResults);\n return resultsArray;\n }", "function scoreSynonyms(senses, contextWords) {\n var scores = {};\n var glosses = {};\n\n _.each(senses, function(sense, i) {\n var score = _.intersection(contextWords, sense.gloss.split(/\\s+/)).length;\n glosses[sense.lemma] = sense.gloss;\n _.each(sense.synonyms, function(syn) {\n if (!scores[syn]) scores[syn] = 0;\n scores[syn] += score;\n });\n });\n\n return _.chain(scores).keys()\n .sortBy(function(syn) {\n return -1 * scores[syn];\n })\n .map(function(syn) {\n syn = syn.replace(/[_]/g,\" \")\n return {\n syn: syn,\n gloss: glosses[syn] || null,\n score: scores[syn]\n };\n })\n .value();\n}", "async function getDefinitions(word) {\n let definitions = [];\n\n var options = {\n method: \"GET\",\n url: `${config.wordsAPI.baseURL}${word}`,\n headers: config.wordsAPI.headers,\n };\n\n try {\n const response = await axios.request(options);\n const results = response.data.results;\n\n // If there are results for this word...\n if (results) {\n for (const result of results) {\n definitions.push({\n partOfSpeech: result.partOfSpeech || \"unknown\",\n definition: result.definition,\n });\n }\n }\n } catch (error) {\n console.error(error);\n }\n return definitions;\n}", "function BOT_extractWords() {\r\n\tvar word, matchlist;\r\n\tvar lemstring = BOT_lemString;\r\n\tvar worldlist = [];\r\n\tvar rex = new RegExp(\"< (\\\\w+) (.*)\");\r\n\tfor(var i=0; i<BOT_maxExtractedWords; i++) { // Words extracted is limited\r\n\t\tif(lemstring.search(rex) != -1) {\r\n\t\t\trex.lastIndex = 0;\r\n\t\t\tmatchlist = rex.exec(lemstring);\r\n\t\t\tword = BOT_englishWordCutPlural(matchlist[1]);\r\n\t\t\tworldlist = worldlist.concat(word);\r\n\t\t\tlemstring = \"< \"+matchlist[2];\r\n\t\t}\r\n\t}\r\n\treturn worldlist;\r\n}", "getWordsFromCounterpartList(text) {\n let result = [];\n\n this.wordLists.forEach((words, index, all) => {\n const isMatch = words.some((word) => word === text);\n\n if (isMatch) {\n result = all[index ? 0 : 1];\n }\n });\n\n return result;\n }", "function spellChecker(userWords, correctWords){\n\n var correctSpelling = [];\n var incorrectSpelling = [];\n var results = {correctSpelling, incorrectSpelling}\n\n for(var index = 0; index < userWords.length; index++){\n if(userWords[index] === correctWords[index]){\n correctSpelling.push(userWords[index]);\n } else {\n incorrectSpelling.push(userWords[index]);\n }\n }\n return results;\n}", "words() {\n if (this.ids.size === 0) {\n return [];\n }\n const words = Array.from(this.ids.entries())\n .map(([word, dictionaryId]) => ({ word, dictionaryId }));\n words.sort((w1, w2) => {\n if (w1.word < w2.word) {\n return -1;\n }\n if (w1.word > w2.word) {\n return 1;\n }\n return 0;\n });\n return words;\n }", "addSearchWords() {\n let tmp = [];\n for (let value of this.library.values()) {\n tmp.push.apply(tmp,value.replace(/\\n/g, \" \").split(\" \").map(x => normalize(x)).filter(x => this.isNoiseWord(x)));\n }\n keyWordsSet = new Set(tmp);\n addedKeyWords = true;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Get term by id.
async function GetTermById(id){ let obj = term.findById(id, {_id: false, __v: false}); return obj; }
[ "function termFromId(id, factory) {\n factory = factory || DataFactory;\n\n // Falsy value or empty string indicate the default graph\n if (!id) return factory.defaultGraph();\n\n // Identify the term type based on the first character\n switch (id[0]) {\n case '?':\n return factory.variable(id.substr(1));\n case '_':\n return factory.blankNode(id.substr(2));\n case '\"':\n // Shortcut for internal literals\n if (factory === DataFactory) return new Literal(id);\n // Literal without datatype or language\n if (id[id.length - 1] === '\"') return factory.literal(id.substr(1, id.length - 2));\n // Literal with datatype or language\n const endPos = id.lastIndexOf('\"', id.length - 1);\n return factory.literal(id.substr(1, endPos - 1), id[endPos + 1] === '@' ? id.substr(endPos + 2) : factory.namedNode(id.substr(endPos + 3)));\n case '<':\n const components = quadId.exec(id);\n return factory.quad(termFromId(unescapeQuotes(components[1]), factory), termFromId(unescapeQuotes(components[2]), factory), termFromId(unescapeQuotes(components[3]), factory), components[4] && termFromId(unescapeQuotes(components[4]), factory));\n default:\n return factory.namedNode(id);\n }\n}", "function termFromId(id, factory) {\n factory = factory || DataFactory;\n\n // Falsy value or empty string indicate the default graph\n if (!id)\n return factory.defaultGraph();\n\n // Identify the term type based on the first character\n switch (id[0]) {\n case '?':\n return factory.variable(id.substr(1));\n case '_':\n return factory.blankNode(id.substr(2));\n case '\"':\n // Shortcut for internal literals\n if (factory === DataFactory)\n return new Literal(id);\n // Literal without datatype or language\n if (id[id.length - 1] === '\"')\n return factory.literal(id.substr(1, id.length - 2));\n // Literal with datatype or language\n const endPos = id.lastIndexOf('\"', id.length - 1);\n return factory.literal(id.substr(1, endPos - 1),\n id[endPos + 1] === '@' ? id.substr(endPos + 2)\n : factory.namedNode(id.substr(endPos + 3)));\n case '<':\n const components = quadId.exec(id);\n return factory.quad(\n termFromId(unescapeQuotes(components[1]), factory),\n termFromId(unescapeQuotes(components[2]), factory),\n termFromId(unescapeQuotes(components[3]), factory),\n components[4] && termFromId(unescapeQuotes(components[4]), factory)\n );\n default:\n return factory.namedNode(id);\n }\n }", "function termFromId(id, factory) {\n factory = factory || DataFactory;\n\n // Falsy value or empty string indicate the default graph\n if (!id)\n return factory.defaultGraph();\n\n // Identify the term type based on the first character\n switch (id[0]) {\n case '?':\n return factory.variable(id.substr(1));\n case '_':\n return factory.blankNode(id.substr(2));\n case '\"':\n // Shortcut for internal literals\n if (factory === DataFactory)\n return new Literal(id);\n // Literal without datatype or language\n if (id[id.length - 1] === '\"')\n return factory.literal(id.substr(1, id.length - 2));\n // Literal with datatype or language\n const endPos = id.lastIndexOf('\"', id.length - 1);\n return factory.literal(id.substr(1, endPos - 1),\n id[endPos + 1] === '@' ? id.substr(endPos + 2)\n : factory.namedNode(id.substr(endPos + 3)));\n case '<':\n const components = quadId.exec(id);\n return factory.quad(\n termFromId(unescapeQuotes(components[1]), factory),\n termFromId(unescapeQuotes(components[2]), factory),\n termFromId(unescapeQuotes(components[3]), factory),\n components[4] && termFromId(unescapeQuotes(components[4]), factory)\n );\n default:\n return factory.namedNode(id);\n }\n}", "getPreferredTermByConceptId(thesaurusId) {\n return request.getJSON(`/thesaurus/getPreferredTermByConceptId?id=${thesaurusId}`);\n }", "function termFromId(id, factory) {\n factory = factory || DataFactory; // Falsy value or empty string indicate the default graph\n\n if (!id) return factory.defaultGraph(); // Identify the term type based on the first character\n\n switch (id[0]) {\n case '?':\n return factory.variable(id.substr(1));\n\n case '_':\n return factory.blankNode(id.substr(2));\n\n case '\"':\n // Shortcut for internal literals\n if (factory === DataFactory) return new Literal(id); // Literal without datatype or language\n\n if (id[id.length - 1] === '\"') return factory.literal(id.substr(1, id.length - 2)); // Literal with datatype or language\n\n const endPos = id.lastIndexOf('\"', id.length - 1);\n return factory.literal(id.substr(1, endPos - 1), id[endPos + 1] === '@' ? id.substr(endPos + 2) : factory.namedNode(id.substr(endPos + 3)));\n\n case '<':\n const components = quadId.exec(id);\n return factory.quad(termFromId(unescapeQuotes(components[1]), factory), termFromId(unescapeQuotes(components[2]), factory), termFromId(unescapeQuotes(components[3]), factory), components[4] && termFromId(unescapeQuotes(components[4]), factory));\n\n default:\n return factory.namedNode(id);\n }\n} // ### Constructs an internal string ID from the given term or ID string", "getTerm (term) {\n return Tablemodify.languages[this.currentLanguage].get(term)\n }", "function getTerm(term) {\n\t\tlet country = $('#countries').val()\n\t\tif (country === 'All Countries') {\n\t\t\tfor (let c in glossary) {\n\t\t\t\tif (glossary[c][term]) {\n\t\t\t\t\treturn glossary[c][term]\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\tif (country && glossary[country][term]) {\n\t\t\t\treturn glossary[country][term]\n\t\t\t} else {\n\t\t\t\treturn glossary[''][term]\n\t\t\t}\n\t\t}\n\t}", "_termId (term) {\n return this._ids[n3.termToId(term)]\n }", "function getTaxonomyById(id) {\n var params = { \"current_id\" : sem.iri(id) };\n var options = fn.concat(\"base=\", PREFIX_IRI, \"/predicates\");\n var store = cts.collectionQuery(\"taxonomy\");\n\n var sparqlQuery = fn.concat(\n 'PREFIX epi: <', NS_EPI, '> ',\n 'PREFIX skos: <', NS_SKOS, '> ',\n 'SELECT ?id ?name ?description ?type ?created ?author ?modified ',\n 'WHERE ',\n '{ ',\n '?id skos:prefLabel ?name . ',\n '?id skos:scopeNote ?description . ',\n '?id epi:type ?type . ',\n '?id epi:created ?created . ',\n '?id epi:author ?author . ',\n '?id epi:modified ?modified ',\n 'FILTER (?id = ?current_id) ',\n '}'\n );\n\n // Executes a SPARQL query against the database.\n var taxonomy = sem.sparql(sparqlQuery, params, options, store);\n\n return taxonomy;\n}", "function getObject(id) {\n return objectService.getObjects([id])\n .then(function (results) {\n return results[id];\n });\n }", "static findNameById(id) {\n return ParsedSpellData[id];\n }", "getSelectionById(id) {\n return service\n .get(`/selections/${id}`)\n .then(res => res.data)\n .catch(errHandler)\n }", "function getRecipeById(id) {\n const apiUrl = new URL('https://www.themealdb.com/api/json/v1/1/lookup.php');\n // Add id (i) param\n const idKey = 'i'\n apiUrl.searchParams.set(idKey, id);\n\n return fetch(apiUrl)\n .then(response => {\n return response.json();\n });\n}", "function getTermId(term) {\n return Term.findOrCreate({\n where : { termName : term },\n defaults : { id: uuid() }\n }).then( result => {\n return result[0].dataValues;\n }).catch( err => perror(err));\n}", "function getRecipeById(id) {\n return jsonObjects[id];\n}", "function getKitten(id) {\n return kittens.find(kitten => kitten._id === id);\n }", "function getMovieById(id){\n\t\treturn movies.find((movie) => {\n\t\t\treturn movie.id == id;\n\t\t});\n\t}", "function findTermWithCourse(courseId) {\n for (let semester of window.CST_OVERRIDES.semesters) {\n let term = semester.term_courses.find( e => e.course_id === courseId);\n if (term) return term;\n }\n return null;\n}", "function byId(id) {\n return document.getElementById(id);\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Get paragraph format in cell
getParagraphFormatInternalInCell(cellAdv, start, end) { if (end.paragraph.isInsideTable) { let containerCell = this.getContainerCellOf(cellAdv, end.paragraph.associatedCell); if (containerCell.ownerTable.contains(end.paragraph.associatedCell)) { let startCell = this.getSelectedCell(cellAdv, containerCell); let endCell = this.getSelectedCell(end.paragraph.associatedCell, containerCell); if (this.containsCell(containerCell, end.paragraph.associatedCell)) { //Selection end is in container cell. if (this.isCellSelected(containerCell, start, end)) { this.getParagraphFormatInCell(containerCell); } else { if (startCell === containerCell) { this.getParagraphFormatInternalInParagraph(start.paragraph, start, end); } else { this.getParagraphFormatInRow(startCell.ownerRow, start, end); } } } else { //Format other selected cells in current table. this.getParaFormatForCell(containerCell.ownerTable, containerCell, endCell); } } else { this.getParagraphFormatInRow(containerCell.ownerRow, start, end); } } else { let cell = this.getContainerCell(cellAdv); this.getParagraphFormatInRow(cell.ownerRow, start, end); } }
[ "getParagraphFormatInCell(cell) {\n for (let i = 0; i < cell.childWidgets.length; i++) {\n this.getParagraphFormatInBlock(cell.childWidgets[i]);\n }\n }", "function ParagraphTemplate(){\n const pTemplate = \"Lab 8 July 15\";\n return(pTemplate)\n}", "get formattedText() {\n return this.i.b;\n }", "function formatCell(p, l, color) {\n let [i, j] = toRC(P_START + p, L_START + l)\n let cell = sheet.getRange(i,j).getCell(1, 1)\n let bold = [COLOR_1, COLOR_2, COLOR_3, COLOR_ERROR].includes(color)\n // let underline = [COLOR_1, COLOR_2, COLOR_3, COLOR_LINK].includes(color) // * see note at bottom\n cell.setFontColor(color)\n cell.setFontWeight(bold ? 'bold' : 'normal')\n // cell.setFontLine(underline ? 'underline' : 'none') // * see note at bottom\n cell.setBorder(null,null,(color==COLOR_1?true:false),null,false,false,COLOR_DEFAULT,BORDER_BOLD)\n // Logger.log(`formatted cell (${i},${j}): ${color}, ${bold}`)\n}", "function CellText() {}", "function styledParagraph(para_style, content_with_breaks){\n return `<w:p w:rsidR=\"0062642C\" w:rsidRDefault=\"0062642C\" w:rsidP=\"00612F43\"><w:pPr><w:pStyle w:val=\"${para_style}\"/></w:pPr><w:r w:rsidRPr=\"00612F43\"><w:t>${content_with_breaks}</w:t></w:r></w:p>`;\n}", "copySelectionParagraphFormat() {\n let format = new WParagraphFormat();\n this.paragraphFormat.copyToFormat(format);\n return format;\n }", "getFirstParagraphInCell(cell) {\n let firstBlock = cell.childWidgets[0];\n if (firstBlock instanceof ParagraphWidget) {\n return firstBlock;\n }\n else {\n return this.getFirstParagraphInFirstCell(firstBlock);\n }\n }", "function paragraphSel() {\n\trichTextBox.document.execCommand('formatBlock',false,'p');\n}", "function Formatter() {\n var mainStyle = {};\n mainStyle[DocumentApp.Attribute.FONT_FAMILY] = 'Courier'; \n mainStyle[DocumentApp.Attribute.MARGIN_LEFT] = 96;\n mainStyle[DocumentApp.Attribute.MARGIN_RIGHT] = 64;\n mainStyle[DocumentApp.Attribute.MARGIN_TOP] = 64;\n mainStyle[DocumentApp.Attribute.MARGIN_BOTTOM] = 64;\n var body = DocumentApp.getActiveDocument().getBody();\n body.setAttributes(mainStyle); //apply formatting\n var p = body.getParagraphs();\n for (var x = 0; x < p.length; x++) { //iterate through paragraphs, formatting accordingly\n var t = p[x].getText();\n switch (t.substring(0,2)) {\n case 'S:':\n Speaker(p[x]);\n //Dialog always follows Speaker so it doesn't get its own label, this just checks if you added an extra line between them\n (p[x+1].getText() == '') ? Dialog(p[x+2],false) : Dialog(p[x+1],true); \n break;\n case 'H:':\n Header(p[x]);\n break;\n case 'C:':\n Character(p[x]);\n break;\n case 'T:':\n Transition(p[x]);\n break;\n default:\n break;\n }\n }\n}", "retrieveParagraphFormat(start, end) {\n this.getParagraphFormatForSelection(start.paragraph, this, start, end);\n }", "function doProportionalText(tRange, isTitle) {\r var result;\r var str = tRange.contents;\r var patt = /\\d+/g;\r var hasNumbers = true;\r while (hasNumbers) {\r result = patt.exec(str);\r if (result === null) {\r // Numbers not found; reset flag to break\r hasNumbers = false;\r } else {\r // Get the actual string\r var numbers = result[0];\r var start = result.index;\r var end = start + numbers.length;\r var numberRange = tRange.characters[start]\r numberRange.length = numbers.length;\r if (isTitle) {\r numberRange.characterAttributes.figureStyle = FigureStyleType.PROPORTIONALOLDSTYLE;\r } else {\r numberRange.characterAttributes.figureStyle = FigureStyleType.PROPORTIONAL;\r }\r }\r }\r//~ var str = \"First12345then 456 and more\";\r//~ var patt = /\\d+/g;\r//~ var res = patt.exec(str);\r//~ var myStr = res[0];\r//~ var len = myStr.length;\r//~ var start = res.index;\r//~ var end = res.index + len;\r//~ document.getElementById(\"demo\").innerHTML = myStr + ' ' + start + ':' + end;\r\r // var regex = /\\d+/g;\r}", "getCharacterFormatInTableCell(tableCell, selection, start, end) {\n if (end.paragraph.isInsideTable) {\n let containerCell = this.getContainerCellOf(tableCell, end.paragraph.associatedCell);\n if (containerCell.ownerTable.contains(end.paragraph.associatedCell)) {\n let startCell = this.getSelectedCell(tableCell, containerCell);\n let endCell = this.getSelectedCell(end.paragraph.associatedCell, containerCell);\n if (this.containsCell(containerCell, end.paragraph.associatedCell)) {\n //Selection end is in container cell.\n if (this.isCellSelected(containerCell, start, end)) {\n this.getCharacterFormatForSelectionCell(containerCell, start, end);\n }\n else {\n if (startCell === containerCell) {\n this.getCharacterFormat(start.paragraph, start, end);\n }\n else {\n this.getCharacterFormatForTableRow(startCell.ownerRow, start, end);\n }\n }\n }\n else {\n //Format other selected cells in current table.\n this.getCharacterFormatInternalInTable(containerCell.ownerTable, containerCell, endCell, start, end);\n }\n }\n else {\n this.getCharacterFormatForTableRow(containerCell.ownerRow, start, end);\n }\n }\n else {\n let cell = this.getContainerCell(tableCell);\n this.getCharacterFormatForTableRow(cell.ownerRow, start, end);\n }\n }", "function processParagraph(paragraph) {\n var header = 0;\n while (paragraph.charAt(0) == \"%\") {\n paragraph = paragraph.slice(1);\n header++;\n }\n\n return {type: (header == 0 ? \"p\" : \"h\" + header),\n content: paragraph};\n}", "getNextParagraphCell(cell) {\n if (cell.nextRenderedWidget && cell.nextRenderedWidget instanceof TableCellWidget) {\n //Return first paragraph in cell. \n cell = cell.nextRenderedWidget;\n let block = cell.firstChild;\n if (block) {\n return this.getFirstParagraphBlock(block);\n }\n else {\n return this.getNextParagraphCell(cell);\n }\n }\n return this.getNextParagraphRow(cell.containerWidget);\n }", "getParagraphFormatInRow(tableRow, start, end) {\n for (let i = tableRow.rowIndex; i < tableRow.ownerTable.childWidgets.length; i++) {\n let row = tableRow.ownerTable.childWidgets[i];\n for (let j = 0; j < row.childWidgets.length; j++) {\n this.getParagraphFormatInCell(row.childWidgets[j]);\n }\n if (end.paragraph.isInsideTable && this.containsRow(row, end.paragraph.associatedCell)) {\n return;\n }\n }\n let block = this.getNextRenderedBlock(tableRow.ownerTable);\n //Goto the next block.\n this.getParagraphFormatInternalInBlock(block, start, end);\n }", "format() {\n if(this.properties[\"text\"]) {\n this.formattedText = this.addLineBreaks(this.properties[\"text\"], 27);\n }\n }", "getCharacterFormat(paragraph, start, end) {\n if (paragraph !== start.paragraph && paragraph !== end.paragraph) {\n this.getCharacterFormatInternal(paragraph, this);\n return;\n }\n if (end.paragraph === paragraph && start.paragraph !== paragraph && end.offset === 0) {\n return;\n }\n let startOffset = 0;\n let length = this.getParagraphLength(paragraph);\n if (paragraph === start.paragraph) {\n startOffset = start.offset;\n //Sets selection character format. \n let isUpdated = this.setCharacterFormat(paragraph, start, end, length);\n if (isUpdated) {\n return;\n }\n }\n let startLineWidget = paragraph.childWidgets.indexOf(start.currentWidget) !== -1 ?\n paragraph.childWidgets.indexOf(start.currentWidget) : 0;\n let endLineWidget = paragraph.childWidgets.indexOf(end.currentWidget) !== -1 ?\n paragraph.childWidgets.indexOf(end.currentWidget) : paragraph.childWidgets.length - 1;\n let endOffset = end.offset;\n if (paragraph !== end.paragraph) {\n endOffset = length;\n }\n let isFieldStartSelected = false;\n for (let i = startLineWidget; i <= endLineWidget; i++) {\n let lineWidget = paragraph.childWidgets[i];\n if (i !== startLineWidget) {\n startOffset = this.getStartLineOffset(lineWidget);\n }\n if (lineWidget === end.currentWidget) {\n endOffset = end.offset;\n }\n else {\n endOffset = this.getLineLength(lineWidget);\n }\n let count = 0;\n for (let j = 0; j < lineWidget.children.length; j++) {\n let inline = lineWidget.children[j];\n if (startOffset >= count + inline.length) {\n count += inline.length;\n continue;\n }\n if (inline instanceof FieldElementBox && inline.fieldType === 0\n && HelperMethods.isLinkedFieldCharacter(inline)) {\n let nextInline = isNullOrUndefined(inline.fieldSeparator) ?\n inline.fieldEnd : inline.fieldSeparator;\n do {\n count += inline.length;\n inline = inline.nextNode;\n i++;\n } while (!isNullOrUndefined(inline) && inline !== nextInline);\n isFieldStartSelected = true;\n }\n if (inline instanceof FieldElementBox && inline.fieldType === 1\n && HelperMethods.isLinkedFieldCharacter(inline) && isFieldStartSelected) {\n let fieldInline = inline.fieldBegin;\n do {\n this.characterFormat.combineFormat(fieldInline.characterFormat);\n fieldInline = fieldInline.nextNode;\n } while (!(fieldInline instanceof FieldElementBox));\n }\n if (inline instanceof TextElementBox) {\n this.characterFormat.combineFormat(inline.characterFormat);\n }\n if (isNullOrUndefined(inline) || endOffset <= count + inline.length) {\n break;\n }\n count += inline.length;\n }\n }\n if (end.paragraph === paragraph) {\n return;\n }\n let block = this.getNextRenderedBlock(paragraph);\n if (!isNullOrUndefined(block)) {\n this.getCharacterFormatForBlock(block, start, end);\n }\n }", "retrieveCellFormat(start, end) {\n if (start.paragraph.isInsideTable && end.paragraph.isInsideTable) {\n this.cellFormat.copyFormat(start.paragraph.associatedCell.cellFormat);\n this.getCellFormat(start.paragraph.associatedCell.ownerTable, start, end);\n }\n else {\n //When the selection is out of table\n this.cellFormat.clearCellFormat();\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
run for comments requesting like so: LH Issue Runner go!
async function runForComments(comments) { if (comments.length) { console.log('running for comments:', comments.map(({ id }) => id)) } for (const { id, body, issue_url, created_at } of comments) { console.log(`processing comment ${id}`) const issueUrlSplit = issue_url.split('/') const issue = Number(issueUrlSplit[issueUrlSplit.length - 1]) const surgeDomain = `lh-issue-runner-${issue}-${id}.surge.sh` await driver({ issue, commentText: body, surgeDomain }) // only save state if any work was done state.since = created_at saveState() } }
[ "function issueComments(issue) {\r\n\r\n\tvar issueUrlComments = issue.url + \"/comments\";\r\n\tif (verbose)\r\n\t\tconsole.log(\"Issues Comments URL: \" + issueUrlComments);\r\n\tgetLoop(issueUrlComments, 1, [], function(comments) { processComments(issue, comments); }); \r\n\r\n}", "function handleIssueComment(e, p) {\n console.log(\"handling issue comment....\")\n payload = JSON.parse(e.payload);\n\n // Extract the comment body and trim whitespace\n comment = payload.body.comment.body.trim();\n\n // Here we determine if a comment should provoke an action\n switch(comment) {\n // Currently, the do-all '/brig run' comment is supported,\n // for (re-)triggering the default Checks suite\n case \"/brig run\":\n return runSuite(e, p);\n default:\n console.log(`No applicable action found for comment: ${comment}`);\n }\n}", "function handleIssueComment(e, p) {\n payload = JSON.parse(e.payload);\n\n // Extract the comment body and trim whitespace\n comment = payload.body.comment.body.trim();\n\n // Here we determine if a comment should provoke an action\n switch(comment) {\n case \"/brig run\":\n return runSuite(e, p);\n default:\n console.log(`No applicable action found for comment: ${comment}`);\n }\n}", "function handleIssueComment(e, p) {\n if (e.payload) {\n payload = JSON.parse(e.payload);\n\n // Extract the comment body and trim whitespace\n comment = payload.body.comment.body.trim();\n\n // Here we determine if a comment should provoke an action\n switch(comment) {\n case \"/brig run\":\n return runTests(e, p);\n default:\n console.log(`No applicable action found for comment: ${comment}`);\n }\n }\n}", "function processComments(issue, comments) {\r\n\tif (verbose)\r\n\t\tconsole.log(\"issueComments for: \" + issue.url + \", no of comments: \" + comments.length);\r\n\r\n\t// Download images.\r\n\r\n\tissueEvents(issue, comments);\r\n}", "async function doComment() {\n filterAction(tools.arguments.action)\n const body = tools.arguments._.slice(1).join(' ')\n tools.log.info('comment', body)\n return checkStatus(\n await tools.github.issues.createComment(tools.context.issue({body}))\n )\n}", "function addIssueCommentInfoRequest(owner,issue,repo,githubtoken,data)\n{\n var data = {\"body\":data};\n var sync = true;\n var out = null;\n var options = {\n url : 'https://github.ncsu.edu/api/v3/repos/' + owner + '/' + repo + '/issues/' + issue + '/comments',\n method: 'POST',\n headers: {\"User-Agent\": \"EnableIssues\", \"content-type\": \"application/json\", \"Authorization\": \"token \" + githubtoken},\n form: JSON.stringify(data)\n };\n request(options, function (error, response, body)\n {\n console.log(\"HTTP response headers are the following:\\n\" + \"Response: \" + JSON.stringify(response) + \"\\nError:\" + error + \"\\nBody\" + JSON.stringify(body) + \"\\n\");\n if(response != undefined && response.statusCode == 201)\n out=\"1\";\n else\n out=\"0\";\n sync = false;\n });\n while(sync) {require('deasync').sleep(100);}\n return out;\n}", "function processIssueComment(data) {\n var user = data[\"comment\"][\"user\"][\"login\"];\n var repository = data[\"repository\"][\"full_name\"];\n var action = data[\"action\"];\n var comment = data[\"comment\"][\"body\"];\n var issueNum = data[\"issue\"][\"number\"];\n var commentLink = data[\"comment\"][\"html_url\"];\n\n var message = user + \" \" + action + \" comment on issue \" + repository + \"#\" + issueNum;\n message += \"\\n\" + comment;\n message += \"\\n\\nLink: \" + commentLink;\n\n sendMessageToDiscord(message);\n}", "function getIssueCommentInfoRequest(owner,issue,repo,githubtoken)\n{\n var sync = true;\n var out = null;\n var options = {\n url : 'https://github.ncsu.edu/api/v3/repos/' + owner + '/' + repo + '/issues/' + issue + '/comments',\n method: 'GET',\n headers: {\"User-Agent\": \"EnableIssues\", \"content-type\": \"application/json\", \"Authorization\": \"token \" + githubtoken}\n };\n request(options, function (error, response, body)\n {\n console.log(\"HTTP response headers are the following:\\n\" + \"Response: \" + JSON.stringify(response) + \"\\nError:\" + error + \"\\nBody\" + JSON.stringify(body) + \"\\n\");\n if (error)\n out = error;\n else\n out = JSON.parse(body);\n sync = false;\n });\n while(sync) {require('deasync').sleep(100);}\n return out;\n}", "comments(comment) {\n // console.log(`Incoming comment: ${comment.text}`)\n }", "function commentOnIssue(client, name, number, message) {\n var url = '/repos/' + name + '/issues/' + number + '/comments';\n var req = client.postAsync(url, { body: message });\n return req;\n}", "function githubToZendeskKnowledgebase(githubRepoName, clbkFunc) {\n\n\n function githubRequest(a, b, c, d) {\n gRequest(a, 'repos/' + githubRepoName + '/' + b, c, d);\n }\n\n function githubSearch(a, b) {\n gRequest('GET', 'search/issues?q=' + a, '', b);\n }\n\n // 2.1 runs the search inside githubOrganizationUrl for the issue with the comment that contains the \"#tksolution\"\n // inside and posts this comment to the original zendesk ticket as a public comment\n\n var statesToSearch = ''; // by default will search in any github issues\n if (githubScanOpenTicketsForSolutionOnly)\n statesToSearch = '+state:open'; // adds search inside open issues in github only\n\n githubSearch(githubCommandWords.addArticle + '+type:issue+in:comments' + statesToSearch + '+repo:' + githubRepoName, function(data) {\n if (data && data.items) {\n if (data.items.length) {\n console.log('Found ' + data.items.length + ' issues with comments marked as articles by keyword:' + githubCommandWords.addArticle);\n\n var i = data.items.length;\n var updatedIssuesCounter = 0;\n (function loop() {\n i--;\n var item = data.items[i];\n\n debugger;\n \n if (item) {\n\n githubRequest('GET', 'issues/' + item.number + '/comments?per_page=100', '', function(comments) {\n console.log('comments for github ticket ' + item.number + ' found: ' + comments.length);\n\n // 2.3 takes the content of 2.2 comment and saves into CommentContent and replaces #solution to the empty text.\n var arr = comments.filter(function(i) {\n return i.body.indexOf(githubCommandWords.addArticle) >= 0;\n });\n // \n\n console.log('comments with \"' + githubCommandWords.addArticle + '\" found ' + arr.length);\n \n // we should NOT get zero comments filtered! \n // if so then should throw error\n if (arr === null || arr.length == 0) \n {\n var msg = \"Error and BREAKING: can't get the comment with \" + githubCommandWords.addArticle + \" from ticket #\" + item.number;\n console.log(msg);\n new Error(msg);\n return;\n }\n \n \n // ! we will process the very last one per single github issue at time!\n var lastComment = arr.pop();\n var CommentContent = lastComment.body.replace(githubCommandWords.solution, '').trim();\n\n // 2.4 checks the CommentContent for keywords text, replaces it to empty text. if exsists then sets isSolved=true\n CommentContent = CommentContent.replace(githubCommandWords.addArticle, '').trim();\n\n var isReopen = false;\n // 2.5 checks the CommentContent for $reopen text, replaces it to empty text. if exsists then sets isReopen=true\n if (CommentContent.indexOf(githubCommandWords.reopen) >= 0) {\n isReopen = true;\n // remove from the original content\n CommentContent = CommentContent.replace(githubCommandWords.reopen, '').trim();\n }\n\n // replace into links\n CommentContent = autoTextReplacements.processReplacements(CommentContent);\n\n // trim to see if there is a content to post\n CommentContent = CommentContent.trim();\n\n // should be min 2 length to be treated as the valid answer\n var isDoPostToZendesk = CommentContent.length > 1;\n\n if (isDoPostToZendesk) {\n ; // \n }\n else {\n CommentContent = '';\n }\n\n // create new KB article if need to\n if (CommentContent.length > 0) {\n\n var kbData = null;\n\n kbData = {\n article: {\n title: shorten(escapeHTML(CommentContent), 12), // set title based on article text limited to 12 words\n body: escapeHTML(CommentContent),\n locale: \"en-us\"\n }\n };\n\n // finally post to create new article\n zendeskRequest('POST', 'help_center/sections/' + process.env.ZENDESK_KB_SECTION_ID + '/articles.json', JSON.stringify(kbData), function(data) {\n \n var articleUrl = 'https://' + process.env.ZENDESK_SUBDOMAIN + '.zendesk.com/hc/en-us/articles/' + data.article.id;\n \n console.log('ZENDESK KB article was published: ' + articleUrl);\n \n var commentText = 'POSTED AS ZENDESK KB ARTICLE\\r\\n' + articleUrl + '\\r\\n' + CommentContent;\n // post comment with a link to new KB article\n // CHANGE that comment in Github\n githubRequest('PATCH', 'issues/comments/' + lastComment.id, {\n body: escapeHTML(commentText)\n }, function() {\n // reopen Github issue if had $reopen keyword! \n if (isReopen)\n {\n var state = 'open';\n githubRequest('PATCH', 'issues/' + item.number, {\n state: state\n }, function() {\n console.log('reopening github issue ' + item.number + ' to state ' + state + ' and comment ' + lastComment.id);\n //console.log(patchData);\n // increase updates issues counter\n updatedIssuesCounter++;\n });\n }\n });\n });\n }; // creating new zendesk KB article\n\n // 2.10 goes to 2.1 for next result (go to another github issue)\n loop();\n });\n }\n else {\n var output = {\n status: (i + ' github comments processed, no more more github comments found with ' + githubCommandWords.addArticle)\n };\n clbkFunc(null, output);\n }\n }());\n }\n else {\n // as no items in the search data was found\n var output = {\n status: 'no github comments found with ' + githubCommandWords.addArticle + ' (1)'\n };\n clbkFunc(null, output);\n }\n }\n else {\n // as no items in the search data was found\n var output = {\n status: 'no github issues found as ' + githubCommandWords.addArticle + ' (2)'\n };\n clbkFunc(null, output);\n }\n });\n}", "getIssueComments(issueNumber,cb){\n \tlet req = new XMLHttpRequest();\n \tlet url = 'https://api.github.com/repos/npm/npm/issues/' + issueNumber + '/comments';\n \treq.onload = function () {\n \t if (req.status === 404) {\n \t cb(new Error('not found'));\n \t } else {\n \t cb(null, JSON.parse(req.response));\n \t }\n \t}\n \treq.open('GET', url);\n \treq.send();\n }", "async afterStatus({ data }) {\n if (data.state !== 'failure') {\n return;\n }\n\n const { user } = this.context.payload.pull_request;\n\n const comment = this.context.issue({\n body: `\nUh oh!\n\nLooks like this PR has some conflicts with the base branch, @${ user.login }.\n\nPlease bring your branch up to date as soon as you can.\n `,\n });\n\n await this.context.github.issues.createComment(comment);\n }", "async afterStatus({ data }) {\n if (data.state !== 'failure') {\n return;\n }\n\n const branch = this.branchIssue || 'task/ABC-123';\n const { user } = this.context.payload.pull_request;\n\n const comment = this.context.issue({\n body: `\nHi there @${ user.login }! It looks like the title of this PR doesn't quite match our guidelines. \n\nMake sure your PR titles follow the format of \\`<Jira Issue> <Description>\\`\n\nFor example: \\`${ branch } Adds contact form to the homepage\\`\n `,\n });\n\n await this.context.github.issues.createComment(comment);\n }", "function doComments( comments )\n{\n //var result = doLMSInitialize();\n\n var result\t= doLMSGetValue( \"cmi.comments\");\n\n if (doLMSGetLastError() != \"0\")\n {\n\t alert(\"Não foi possível marcar sua posição!\");\n }else if ( comments != null )\n {\n\n\t\t\tdoLMSSetValue( \"cmi.comments\", comments );\n\t\t\tresult = doLMSCommit();\n }\n}", "function editIssueCommentInfoRequest(owner,repo,githubtoken,commentid,data)\n{\n data = {\"body\":data};\n var sync = true;\n var out = null;\n var options = {\n url : 'https://github.ncsu.edu/api/v3/repos/' + owner + '/' + repo + '/issues/comments' + commentid,\n method: 'PATCH',\n headers: {\"User-Agent\": \"EnableIssues\", \"content-type\": \"application/json\", \"Authorization\": \"token \" + githubtoken},\n\t\tform: JSON.stringify(data)\n };\n request(options, function (error, response, body)\n {\n console.log(\"HTTP response headers are the following:\\n\" + \"Response: \" + JSON.stringify(response) + \"\\nError:\" + error + \"\\nBody\" + JSON.stringify(body) + \"\\n\");\n if (error)\n out = error;\n else\n out = JSON.parse(body);\n sync = false;\n });\n while(sync) {require('deasync').sleep(100);}\n return out;\n}", "function sendLongCommentsRequest(node) {\n return __awaiter(this, void 0, void 0, function () {\n var address, page, response;\n return __generator(this, function (_a) {\n switch (_a.label) {\n case 0:\n address = createAddress(node.user, node.repository, \"\" + node.issueID, true), page = getGitHubPage(node.comments.length);\n address = address + \"?per_page=90&page=\" + page;\n console.log(address + \"\\n nr of comments: \" + node.comments.length + \"\\tpage: \" + page);\n return [4 /*yield*/, axios.get(address)];\n case 1:\n response = _a.sent();\n return [2 /*return*/, response.data];\n }\n });\n });\n}", "function githubCopyIssue(githubRepoName, githubOrg, clbkFunc) {\n\n\n function githubRequest(a, b, c, d) {\n gRequest(a, 'repos/' + githubRepoName + '/' + b, c, d);\n }\n\n function githubRequestRepo(a, r, b, c, d) {\n gRequest(a, 'repos/' + r + '/' + b, c, d);\n }\n\n function githubSearch(a, b) {\n gRequest('GET', 'search/issues?q=' + a, '', b);\n }\n\n // 2.1 runs the search inside githubOrganizationUrl for the issue with the comment that contains the \"#solution\"\n // inside and posts this comment to the original zendesk ticket as a public comment\n\n // will search for open issues only\n //var statesToSearch = '+state:open'; // adds search inside open issues in github only\n var statesToSearch = ''; // search for both closed and open issues\n\n githubSearch(githubCommandWords.copyIssue + '+type:issue+in:comments' + statesToSearch + '+repo:' + githubRepoName, function(data) {\n if (data && data.items) {\n if (data.items.length) {\n console.log('Found ' + data.items.length + ' issues with comments marked with copy command by keyword:' + githubCommandWords.copyIssue);\n var i = data.items.length;\n var updatedIssuesCounter = 0;\n (function loop() {\n i--;\n var item = data.items[i];\n\n if (item) {\n githubRequest('GET', 'issues/' + item.number + '/comments?per_page=100', '', function(comments) {\n\n // collect all comments\n var allCommentsContent = '';\n\n // first collect all comments content from the original ticket\n // and save the very last one\n var lastComment = null;\n\n comments.forEach(function(i, idx, array) {\n if (idx === array.length - 1) {\n lastComment = i;\n }\n else {\n allCommentsContent += '**' + i.updated_at + '**' + '\\r\\n\\r\\n' + i.body + '\\r\\n\\r\\n'; // collect all comments into the variabl\n }\n });\n\n // preadd body from the original item\n allCommentsContent = '**ORIGINAL ISSUE: ' + item.html_url + '**\\r\\n\\r\\n' + item.body + '\\r\\n\\r\\n' + allCommentsContent.trim();\n // trim again\n allCommentsContent = allCommentsContent.trim();\n\n /*\n // filter new repo name from comment\n var arr = comments.filter(function (i) {\n return i.body.indexOf(githubCommandWords.copyIssue) >= 0;\n }); \n\n // find the comment with githubCommandWords.copyIssue command\n var lastComment = arr.pop();\n\n */\n\n var newRepoName = lastComment.body.split(githubCommandWords.copyIssue).pop();\n newRepoName = newRepoName.trim();\n // replace all \\ (if any) to / symbol\n newRepoName = newRepoName.replace('\\\\', '/');\n // if does not come in form like orgname/reponame \n // then add one\n if (!newRepoName.includes('/'))\n newRepoName = githubOrg + '/' + newRepoName;\n\n\n // remove the command from the last comment content\n var CommentContent = lastComment.body.replace(githubCommandWords.copyIssue, '').trim();\n\n /*\n // 2.4 checks the CommentContent for #solved text, replaces it to empty text. if exsists then sets isSolved=true\n var isSolved = false;\n \tif (CommentContent.indexOf(githubCommandWords.solved) >= 0) {\n isSolved = true;\n // remove from the original content\n CommentContent = CommentContent.replace(githubCommandWords.solved, '').trim();\n }\n \n \n var isReopen = false;\n // 2.5 checks the CommentContent for #reopen text, replaces it to empty text. if exsists then sets isReopen=true\n if (CommentContent.indexOf(githubCommandWords.reopen) >= 0) {\n isReopen = true;\n // remove from the original content\n CommentContent = CommentContent.replace(githubCommandWords.reopen, '').trim();\n }\n */\n\n // trim to see if there is a content to post\n CommentContent = CommentContent.trim();\n\n var title = '[COPY] ' + item.title;\n\n // now try to post new issues to newRepoName\n githubRequestRepo('POST', newRepoName, 'issues', {\n title: title,\n body: escapeHTML(allCommentsContent)\n }, function(issue) {\n\n if (issue) {\n\n // get url to newly posted issue\n var issueUrl = issue.html_url\n console.log('new github issue posted ' + issueUrl);\n // now we should put zendesk ticket to on hold\n\n CommentContent = '**THIS ISSUE WAS COPIED TO ' + issueUrl + ' on ' + (new Date()) + '**' + '\\r\\n' +\n '@' + lastComment.user.login; // mention for last comment user\n }\n else {\n CommentContent = '**ERROR** - cant find or make copy to **https://github.com/' + newRepoName + '**! ' + (new Date()) + '\\r\\n' +\n '@' + lastComment.user.login; // mention for last comment user\n\n }\n\n // 2.8 in github: changes the content of the ticket to \"SENT TO ZENDESK {currentDateTime}\" + CommentContent\n var patchData = {\n body: CommentContent\n };\n\n // finally PATCH that original comment with command in Github\n githubRequest('PATCH', 'issues/comments/' + lastComment.id, patchData, function() {\n\n // make sure to reopen the original inbox issue!\n //var state = isReopen ? 'open' : 'closed';\n var state = 'open';\n githubRequest('PATCH', 'issues/' + item.number, {\n state: state\n }, function() {\n console.log('updating github issue ' + item.number + ' to state ' + state + ' and comment ' + lastComment.id);\n //console.log(patchData);\n\n // increase updates issues counter\n updatedIssuesCounter++;\n\n });\n\n });\n\n\n });\n\n // 2.10 goes to 2.1 for next result (another github issue)\n loop();\n });\n }\n else {\n var output = {\n status: (i + ' github comments processed, no more more github comments found with ' + githubCommandWords.copyIssue + ' command')\n };\n clbkFunc(null, output);\n }\n }());\n }\n else {\n // as no items in the search data was found\n var output = {\n status: 'no github comments found with ' + githubCommandWords.copyIssue + ' command (1)'\n };\n clbkFunc(null, output);\n }\n }\n else {\n // as no items in the search data was found\n var output = {\n status: 'no github issues found with ' + githubCommandWords.copyIssue + ' command (2)'\n };\n clbkFunc(null, output);\n }\n });\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
renderGlobalTotals: used in home page extract data from firebase DB
function renderGlobalTotals() { // console.log('[ renderTotals() ]', totals); const { globalTotalMoney, globalSales, globalUnits } = totals; const uiTotals = document.querySelector('.totals'); const uiTotalAmount = uiTotals.querySelectorAll('.totals__total-money'); uiTotalAmount.forEach((element) => (element.textContent = formatter.format(globalTotalMoney))); const uiUnits = uiTotals.querySelectorAll('.totals__units'); uiUnits.forEach((element) => (element.textContent = globalUnits)); const uiTotalSales = uiTotals.querySelector('.totals__total-sales'); //_totals.js:49 Uncaught (in promise) TypeError: Cannot set property 'textContent' of null uiTotalSales.textContent = globalSales; }
[ "refreshTotals() {\n this.getInSafeTotal();\n this.getAwaitingTotal();\n this.getSettledTotal();\n }", "function renderTotals(arr){\n buildChart(arr);\n}", "updateTotals() {\n this.total = this.getTotalUsers(this.act_counts);\n\n // Total Customers\n this.element.dispatchEvent(\n new CustomEvent(\"pingpong.total\", {\n bubbles: true,\n composed: true,\n detail: {\n total_cust: this.total\n }\n })\n );\n\n if (this.element.querySelector(\"span\").innerHTML != this.total) {\n this.element.querySelector(\"span\").innerHTML = this.total;\n }\n\n // Update percentages\n this.label.selectAll(\"tspan.actpct\").text(d => {\n let count = this.act_counts[d.id] || 0;\n let percentage = this.readablePercent(\n this.act_counts[d.id],\n this.total\n );\n\n return this.foci[d.id].showTotal ? count + \"|\" + percentage : \"\";\n });\n }", "function setTotals() {\n changeTotal(\"Amsterdam\")\n changeTotal(\"Rotterdam\")\n changeTotal(\"DenHaag\")\n changeTotal(\"Utrecht\")\n changeTotal(\"Groningen\")\n}", "function renderTotals() {\n cards[round - 1].calculateTotals()\n bonusEl.innerText = cards[round - 1].bonus;\n topEl.innerText = cards[round - 1].top;\n bottomEl.innerText = cards[round - 1].bottom;\n totalEl.innerText = cards[round - 1].total;\n}", "async function getGlobalTotalCovidStats() {\n const covidData = await fetchGlobalCovidData();\n appState.globalCovid.totalConfirmedCases = covidData.data[0].confirmed;\n appState.globalCovid.totalActiveCases = covidData.data[0].active;\n appState.globalCovid.totalRecovered = covidData.data[0].recovered;\n appState.globalCovid.totalDeaths = covidData.data[0].deaths;\n}", "function displayTotal() {\n\tscreen1.bugCount.html(prettyNumber(Math.round(state.larvae)));\n\tscreen1.larvaePerSec.html(prettyNumber(state.lps));\n}", "getStoreTotals() {\n const reportDate = this.reportDate;\n const reportDateEnd = this.reportDateEnd;\n const begin = this.reportDate ? moment(reportDate, 'MM-DD-YYYY').format('YYYY-MM-DD') : moment().format('YYYY-MM-DD');\n const end = this.reportDateEnd ? moment(reportDateEnd, 'MM-DD-YYYY').format('YYYY-MM-DD') : moment().format('YYYY-MM-DD');\n Service.get(this).getStoreTotals({\n companyId: state.get(this).params.companyId,\n begin,\n end\n });\n }", "function displayTotals() {\n $(\"#tip-percent-selected\").text(tipPercentage + \"%\");\n $(\"#bill-no-tip\").text(\"$ \" + billTotal);\n $(\"#tip-total\").text(\"$ \" + tipTotal);\n $(\"#bill-with-tip-total\").text(\"$ \" + billWithTip);\n $(\"#tip-person-total\").text(\"$ \" + tipPerPerson + \" per person\");\n $(\"#bill-with-tip-per-person\").text(\"$ \" + billWithTipPerPerson + \" per person\");\n\n // Return global variables to their default.\n billTotal = 0;\n tipPercentage = 0;\n splitBetween = 0;\n rounding = 0;\n billWithTip = 0;\n tipTotal = 0;\n tipPerPerson = 0;\n billWithTipPerPerson = 0;\n }", "getStoreTotals(params) {\n return Resource.get(this).resource('Store:getStoreTotals', params)\n .then(res => {\n this.displayData.totals = res.data;\n })\n }", "function refreshTotalCount() {\n GxdIndexTotalCountAPI.get(function(data){\n vm.total_count = data.total_count;\n });\n }", "function refreshTotalCount() {\n GenotypeTotalCountAPI.get(function(data){\n vm.total_count = data.total_count;\n });\n }", "function refreshTotalCount() {\n console.log(\"refreshTotalCount()\");\n AntigenTotalCountAPI.get(function(data){\n vm.total_count = data.total_count;\n });\n }", "function displayTotals() {\n $('<div class=\"fluid-results norm-font purple\">All Done!</div>').appendTo('.js-main-section');\n $('<div class=\"fluid-results norm-font purple\">Correct Answers: ' + answersGuessedCorrect + '</div>').appendTo('.js-main-section');\n $('<div class=\"fluid-results norm-font purple\">Incorrect Answers: ' + answersGuessedIncorrect + '</div>').appendTo('.js-main-section');\n $('<div class=\"fluid-results norm-font purple\">Unanswered: ' + answersUnanswered + '</div>').appendTo('.js-main-section');\n }", "function callTotal() {\n var totRow = document.getElementById('timeTot');\n\n // Make sure our row is empty\n while (totRow.lastChild) {\n totRow.removeChild(totRow.lastChild);\n }\n\n var totLabel = document.createElement('th');\n totLabel.textContent = 'Hourly Totals';\n totRow.appendChild(totLabel);\n\n var grandTotal = 0;\n\n for (var k = 0; k < hours.length - 1; k++) {\n\n var currentHour = hours[k]; // e.g. \"8:00AM\";\n var currentHourSales = [];\n\n for (var l = 0; l < data.length; l++) {\n var currentStore = data[l];\n currentHourSales.push(currentStore.sales[currentHour]);\n }\n\n // currentHourSales.push(pike.stats[k], seaTac.stats[k], seaCtr.stats[k], capHill.stats[k], alki.stats[k]);\n\n var sum = currentHourSales.reduce(function (a, b) { return a + b; }, 0);\n grandTotal += sum;\n\n var tot = document.createElement('td');\n tot.textContent = Math.round(sum);\n totRow.appendChild(tot);\n domTable.appendChild(totRow);\n }\n //var allTots = [];\n //allTots.push(pike.sums, seaTac.sums, seaCtr.sums, capHill.sums, alki.sums);\n\n //console.log('parseint' + allTots);\n //var sums = parseInt(allTots[0]) + parseInt(allTots[1]) + parseInt(allTots[2]) + parseInt(allTots[3]) + parseInt(allTots[4]);\n\n //console.log(sums);\n\n var grandTotalElement = document.createElement('td');\n grandTotalElement.textContent = Math.round(grandTotal);\n totRow.appendChild(grandTotalElement);\n}", "function renderSummary() {\n\n // let summaryTotal = calc.total(document.getElementById('salesprice'), document.getElementById('loanamount'))\n // summaryPane.innerHTML = templates.summaryTemplate(summaryTotal)\n\n // If you can get calculations to return the correct object.\n\n let resultTable = calc()\n summaryPane.innerHTML = templates.summaryTemplate(resultTable)\n}", "function renderHourlyTotals(table){\n var tfoot = makeNewRow(table,'tfoot');\n var tr = document.createElement('tr');\n tfoot.appendChild(tr);\n appendElement(tr,'th','Totals:');\n // add data\n for (var i = 0; i < getTotals().length; i++){\n appendElement(tr,'td',getTotals(table)[i]);\n }\n}", "function renderGeneralTotalEarnings(){\n\tlet total_earnings_display = parseFloat(statistics.total_earnings).toFixed(2);\n\t$('#total_earnings_description').text(\"Total event earnings: \");\n\t$('#total_earnings_val').text(\"$\"+total_earnings_display);\n}", "function calcTotals() {\n var incomes = 0;\n var expenses = 0;\n var budget;\n // calculate total income\n data.allItems.inc.forEach(function(item) {\n incomes+= item.value;\n })\n //calculate total expenses\n data.allItems.exp.forEach(function(item) {\n expenses+= item.value;\n })\n //calculate total budget\n budget = incomes - expenses;\n // Put them in our data structure\n data.total.exp = expenses;\n data.total.inc = incomes;\n //Set Budget\n data.budget = budget;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Get a summery of the current stock. Name The name of the item. InStock How much stock was in the beginning. Ordered How much stock jas been ordered from this item.
function getSummeryOfStock(){ var items = [ {"Name":"bananas", "InStock":12, "Ordered":3}, {"Name":"tomatos", "InStock":34, "Ordered":23} ]; return items; }
[ "getStock(title) {\n return this.getItem(title).amount;\n }", "function getStock(){\n var items = [\n {\"Name\":\"appals\", \"Farmer\": \"Gal\", \"stock\":3},\n {\"Name\":\"tomatoes\", \"Farmer\": \"Gal\", \"stock\":12},\n {\"Name\":\"tomatoes\", \"Farmer\": \"Omer\", \"stock\":4}\n ];\n return items;\n}", "function getCurrentStocks(){\n return items.getCurrentItemStock();\n}", "sell(stockName, quantity){\r\n sLen = this.ownedStocks.length;\r\n for(int i = 0; i < sLen; i+=2) {\r\n if(this.ownedStocks[sLen] == stockName) {\r\n if(this.ownedStocks[sLen+1] >= quantity) { //Sale is legal\r\n console.log(\"Portfolio: selling \" + quantity + \" \" + stockName + \" stocks\");\r\n this.ownedStocks[sLen+1] -= quantity\r\n if(this.ownedStocks[sLen+1] == 0) { //User now has none of that stock\r\n this.ownedStocks.splice(sLen, 2);\r\n }\r\n }\r\n }\r\n }\r\n }", "function getNewTotal(currentTotal, itemName) {\n // Have to use square brackets when getting value from object with a variable\n var itemPrice = priceList[itemName];\n var newTotal = currentTotal + itemPrice;\n return newTotal;\n}", "buy(stockName, quantity){ //doesn't yet check if already owned\r\n if (this.userCash >= (quantity*stockName)) {\r\n console.log(\"Portfolio: buying \" + quantity + \" \" + stockName + \" stocks\");\r\n\r\n sLen = this.ownedStocks.length;\r\n this.ownedStocks[sLen] = stockName;\r\n this.ownedStocks[sLen+1] = quantity;\r\n this.userCash -= (quantity*stockName);\r\n } else {\r\n console.log(\"Portfolio: Not enough cash to buy\" + quantity + stockName);\r\n }\r\n }", "function getUserStock () {\n\t\tconst userStock = userStocks.find(userStock => userStock.symbol.toLowerCase() === symbol.toLowerCase())\n\n\t\treturn userStock\n\t}", "function itemByName (name) {\n return bot.inventory.items().filter(item => item.name === name)[0];\n}", "function sumQuantity() // this may not be the best place in the architecture for this code!\n\t\t{\n\t\t\t// for each stock holding, sum the total number of shares remaining\n\t\t\t\n\t\t\t// we have to access each stock and then process any of its held records and then store the total\n\t\t\t// back on the relevant portion of the structure, Object.keys will give a list of the keys = symbols.\n\t\t\t\n\t\t\tvar stockSymbols = Object.keys($scope.allStocks );\n\t\t\t\n\t\t\t// iterate each stock \n\t\t\tvar tempStock;\n\t\t\tstockSymbols.forEach(aStockSymbol =>\n\t\t\t{\n\t\t\t\tconsole.log(aStockSymbol)\n\t\t\t\t// get the data of aStockSymbol\n\t\t\t\ttempStock = $scope.allStocks[aStockSymbol]; // copy to tempStock so we can work on it\n\t\t\t\tvar i;\n\t\t\t\tvar qtyTotal = 0;\n\t\t\t\tfor (i = 0; i < tempStock.held.length; i++)\n\t\t\t\t{\n\t\t\t\t\t// generate a value to go on each row for a stock entry\n\t\t\t\t\ttempStock.held[i].nowValue = (tempStock.held[i].number * tempStock.held[i].pps ).toFixed(2);\n\t\t\t\t\t// generate a cumulative total to be used at the end of all the stock lines\n\t\t\t\t\tqtyTotal = qtyTotal + tempStock.held[i].number; // for the total row\n\t\t\t\t}\n\t\t\t\t// store the total back on the object to access in the html\n\t\t\t\t$scope.allStocks[aStockSymbol].totalQuantity = qtyTotal;\n\t\t\t\tconsole.log(tempStock);\n\t\t\t});\n\t\t\t\n\t\t\t\n\t\t}", "function grabCurrentQuantity(itemId, amountToAdd) {\n connection.query(\n \"SELECT stock_quantity FROM products WHERE item_id = ?\",\n [\n itemId \n ],\n function(error, response) {\n if (error) console.log(error);\n \n const currentStock = response[0].stock_quantity;\n const newStock = currentStock + amountToAdd;\n \n updateStock(itemId, newStock);\n }\n );\n}", "useFromStock(element: Element, qty: number): number {\n const available = this.stock.get(element) || 0;\n if (available >= qty) {\n this.remove(element, qty);\n return 0;\n } else {\n this.remove(element, available);\n return qty - available;\n }\n }", "function displayStock() {\n\t// console.log('___ENTER displayStock___');\n\n\t// Construct the db query string\n\tqryStatmnt = 'SELECT * FROM products';\n\n\t// Make the db query\n\tconnection.query(qryStatmnt, function(err, data) {\n\t\tif (err) throw err;\n\t\tconsole.log(` \\n Bamazon Stock: `);\n\t\tconsole.log(` *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\\n `);\n\t\tvar dspInventory = '';\n\t\tfor (var i = 0; i < data.length; i++) {\n\t\t\tdspInventory = '';\n\t\t\tdspInventory += 'Product Name: ' + data[i].product_name + ' | ';\n\t\t\tdspInventory += 'Item #: ' + data[i].item_id + ' | ';\n\t\t\tdspInventory += 'Price: $' + data[i].price + ' | ';\n\t\t\tdspInventory += 'Department: ' + data[i].department_name + '\\n';\n\t\t\tconsole.log(dspInventory);\n\t\t}\n\t \tconsole.log(` *-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*\\n `);\n\t \t//Show screen the user for item and quantity so they can purchase\n\t \tpromptUserPurchase();\n\t})\n}", "getInventoryItem(name) {\n let returnItem = null;\n this.inventory.forEach((item) => {\n if (item.name === name) {\n returnItem = item;\n }\n })\n return returnItem;\n }", "stockValue()\n {\n return this.numOfShares*this.sharePrice;\n }", "processProductSale(name) {\n // we look at the stock of our store and run a function forEach that takes an item in as a parameter\n this.stock.forEach(item => {\n // if the name of the item equals a name\n if (item.name === name) {\n // and if the item count is greater than zero\n if (item.count > 0) {\n // we decrement the item count by one\n item.count--;\n // then we increase the store revenue by the price of the item\n this.revenue += item.price;\n // we then console.log that the item was purchased for its price\n console.log(`Purchased ${item.name} for ${item.price}`);\n } else {\n // if the item is out of stock, we console.log this\n console.log(`Sorry, ${item.name} is out of stock!`);\n }\n }\n });\n }", "function beerSold(beerName) {\n //console.log(beerName);\n earningsCurrent += beerList[beerName + \" \"].price;\n\n beerList[beerName + \" \"].popularity++;\n\n updateFavoriteBeer(\n beerList[beerName + \" \"].popularity,\n beerList[beerName + \" \"].id\n );\n\n console.log(earningsCurrent);\n\n updateGoalBar();\n}", "function getCurrentStockPrice() {\n return 100;\n}", "function getStock(stockName) {\n return axios.get(getURL(stockName), {params}).then((response) => {\n if (response.data.quandl_error) {\n return Promise.reject(response.data.quandl_error);\n }\n else {\n // convert stock data from string to millisecond timestamps\n const data = response.data.dataset_data.data;\n \n data.forEach((element) => {\n element[0] = Date.parse(element[0]);\n });\n \n return Promise.resolve({name: stockName, data});\n }\n });\n}", "function getStockInfo(param){\n\treturn stock.getStockInfo(param.name);\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Checks if called within a frame. Only works in browsers! If the current window has a `parent` or `top` properties that refer to another window, returns true. If trying to access `top` or `parent` throws an error, returns true. Otherwise returns `false`.
function isInFrame() { try { return self !== top && parent !== self; } catch (e) { return true; } }
[ "function inIframe () {\n try {\n return window.self !== window.top;\n } catch (e) {\n return true;\n }\n}", "function inIframe () {\n try {\n return window.self !== window.top;\n } catch (e) {\n return true;\n }\n}", "function inIframe () {\n try {\n return window.self !== window.top;\n } catch (e) {\n return true;\n }\n}", "function inIframe() {\n\t try {\n\t return window.self !== window.top;\n\t } catch (e) {\n\t return true;\n\t }\n\t}", "static inIframe() {\n try {\n return window.self !== window.top;\n } catch (e) {\n return true;\n }\n }", "function isIframe() {\r\n return IS_WEB && window.parent !== window;\r\n }", "function is_page_iframed() {\n if (window.frameElement) {\n // loaded in frame\n return true;\n }\n else {\n // not in frame\n return false;\n }\n}", "isCurrentFrameContextCrossOrigin() {\n let topFrameOrigin;\n try {\n // Accessing a cross-origin top-level frame's origin should throw an error\n topFrameOrigin = window.top.location.origin;\n }\n catch (e) {\n // We're in a cross-origin child iframe\n return true;\n }\n return window.top !== window &&\n topFrameOrigin !== window.location.origin;\n }", "static checkAccessToFrame(frameWnd) {\n try {\n return frameWnd.document !== null;\n } catch (ex) {\n return false;\n }\n }", "isTopWindow() {\n return window.top === window.self;\n }", "isTopFrame() {\n return !this.#model.target().parentTarget() && !this.#sameTargetParentFrameInternal &&\n !this.crossTargetParentFrameId;\n }", "function checkTopMostWindow(){\n\tif(window.top != window.self){\n\t\treturn false;\n\t}else{\n\t\treturn true;\n\t}\n}", "function isContentFrame(aFocusedWindow)\n{\n if (!aFocusedWindow)\n return false;\n\n return (aFocusedWindow.top == window.content);\n}", "parentFrame() {\n return this.sameTargetParentFrame() || this.crossTargetParentFrame();\n }", "isMainFrame() {\n return !this.#sameTargetParentFrameInternal;\n }", "function isContentFrame(aFocusedWindow) {\n if (!aFocusedWindow)\n return false;\n\n return (aFocusedWindow.top == window.content);\n}", "function isMainFrame(_frame){\n\treturn _frame.labelType == LABEL_TYPE_NAME && !isNoEasingFrame(_frame) && !isSpecialFrame(_frame, EVENT_PREFIX) && !isSpecialFrame(_frame, MOVEMENT_PREFIX);\n}", "function checkIframe(obj) {\n\tvar oriURL = document.URL;\n\tvar p = obj.parentNode;\n\tvar docObj;\n\tvar ifrId;\n\n\twhile (1) {\n\t\tif (p.nodeName.toLowerCase() == \"#document\") {\n\t\t\tif (p.parentWindow) {\t\t// IE, Opera\n\t\t\t\tdocObj = p.parentWindow;\n\t\t\t} else {\t// Firefox, Safari\n\t\t\t\tdocObj = p.defaultView;\n\t\t\t}\n\n\t\t\tif (docObj.frameElement != null && docObj.frameElement != \"undefined\" ) {\n\t\t\t\tif (docObj.frameElement.nodeName.toLowerCase() == \"iframe\") {\n\t\t\t\t\tifrId = docObj.frameElement.id;\t// Get iframe id\n\t\t\t\t\tif (!ifrId) return false;\n\t\t\t\t\treturn ifrId;\n\t\t\t\t} else {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} else {\n\t\t\tp = p.parentNode;\n\t\t\tif (p == null || p == \"undefined\") return false;\n\t\t}\n\t}\n}", "function inMTurkHITPage() {\n try {\n return window.self !== window.top;\n } catch (e) {\n return true;\n }\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Column of 8 timing sliderfields with optional label
function TimingElement(parent, timing_idx) { // Timing sliderfield with optional label var addr = 11 + (8 * pattern_idx) + (8 * timing_group) + timing_idx; var width = (show_label) ? 460 : 230; var elem = document.createElement("div"); elem.title = "Timing for the pattern."; elem.style.width = width + "px"; elem.setAttribute("timing_group", timing_group); elem.setAttribute("timing_idx", timing_idx); parent.appendChild(elem); if (show_label) { var label = document.createElement("span"); label.textContent = "Timing " + pattern_idx + " " + timing_idx; label.style.width = "210px"; label.style.margin = "0px 10px 0px 10px"; label.style.float = "left"; label.style.verticalAlign = "top"; elem.appendChild(label); } var slider = new SliderField(elem, { min: 0, max: 125, step: 0.5, multiplier: 2, width: 210, addr: addr }); var listener = function(send_data) { return function(val) { var pattern = Patterns.getPattern(val); if (timing_idx >= pattern.timings.length) { // elem.style.display = 'none'; elem.style.visibility = 'hidden'; } else { // elem.style.display = null; elem.style.visibility = 'visible'; elem.title = pattern.timings[timing_idx].tooltip; if (show_label) { label.textContent = pattern.timings[timing_idx].name; } if (send_data) { slider.setValue(pattern.timings[timing_idx].default); sendData(addr, pattern.timings[timing_idx].default); } } }; }; readListeners[1 + pattern_idx].push(listener(false)); updateListeners[1 + pattern_idx].push(listener(true)); }
[ "function serializeTimeLbl() {\n\t\tvar gridLblTxtNum_ = 0, txt = null;\n\t\tfor(var ii = 0; ii < 2; ii++) {\n\t\t\tfor(var nn=0; nn<15; nn++) {\n\t\t\t\tif(gridLblTxtNum_ == 0) {\n\t\t\t\t\ttxt = '';\t\n\t\t\t\t} else if(gridLblTxtNum_ == 1) {\n\t\t\t\t\ttxt = gridLblTxtNum_ + ' s';\n\t\t\t\t} else {\n\t\t\t\t\ttxt = gridLblTxtNum_;\n\t\t\t\t}\n\t\t\t\tpatternContainers[ii].getChildAt(4).getChildAt(nn).text = txt;\n\t\t\t\tgridLblTxtNum_++;\n\t\t\t}\n\t\t}\n\t}", "_repaintLabels() {\n const orientation = this.options.orientation.axis;\n\n // calculate range and step (step such that we have space for 7 characters per label)\n const start = util.convert(this.body.range.start, 'Number');\n const end = util.convert(this.body.range.end, 'Number');\n const timeLabelsize = this.body.util.toTime((this.props.minorCharWidth || 10) * this.options.maxMinorChars).valueOf();\n let minimumStep = timeLabelsize - DateUtil.getHiddenDurationBefore(this.options.moment, this.body.hiddenDates, this.body.range, timeLabelsize);\n minimumStep -= this.body.util.toTime(0).valueOf();\n\n const step = new TimeStep(new Date(start), new Date(end), minimumStep, this.body.hiddenDates, this.options);\n step.setMoment(this.options.moment);\n if (this.options.format) {\n step.setFormat(this.options.format);\n }\n if (this.options.timeAxis) {\n step.setScale(this.options.timeAxis);\n }\n this.step = step;\n\n // Move all DOM elements to a \"redundant\" list, where they\n // can be picked for re-use, and clear the lists with lines and texts.\n // At the end of the function _repaintLabels, left over elements will be cleaned up\n const dom = this.dom;\n dom.redundant.lines = dom.lines;\n dom.redundant.majorTexts = dom.majorTexts;\n dom.redundant.minorTexts = dom.minorTexts;\n dom.lines = [];\n dom.majorTexts = [];\n dom.minorTexts = [];\n\n let current;\n let next;\n let x;\n let xNext;\n let isMajor;\n let showMinorGrid;\n let width = 0;\n let prevWidth;\n let line;\n let xFirstMajorLabel = undefined;\n let count = 0;\n const MAX = 1000;\n let className;\n\n step.start();\n next = step.getCurrent();\n xNext = this.body.util.toScreen(next);\n while (step.hasNext() && count < MAX) {\n count++;\n\n isMajor = step.isMajor();\n className = step.getClassName();\n\n current = next;\n x = xNext;\n\n step.next();\n next = step.getCurrent();\n xNext = this.body.util.toScreen(next);\n\n prevWidth = width;\n width = xNext - x;\n switch (step.scale) {\n case 'week': showMinorGrid = true; break;\n default: showMinorGrid = (width >= prevWidth * 0.4); break; // prevent displaying of the 31th of the month on a scale of 5 days\n }\n\n if (this.options.showMinorLabels && showMinorGrid) {\n var label = this._repaintMinorText(x, step.getLabelMinor(current), orientation, className);\n label.style.width = `${width}px`; // set width to prevent overflow\n }\n\n if (isMajor && this.options.showMajorLabels) {\n if (x > 0) {\n if (xFirstMajorLabel == undefined) {\n xFirstMajorLabel = x;\n }\n label = this._repaintMajorText(x, step.getLabelMajor(current), orientation, className);\n }\n line = this._repaintMajorLine(x, width, orientation, className);\n }\n else { // minor line\n if (showMinorGrid) {\n line = this._repaintMinorLine(x, width, orientation, className);\n }\n else {\n if (line) {\n // adjust the width of the previous grid\n line.style.width = `${parseInt(line.style.width) + width}px`;\n }\n }\n }\n }\n\n if (count === MAX && !warnedForOverflow) {\n console.warn(`Something is wrong with the Timeline scale. Limited drawing of grid lines to ${MAX} lines.`);\n warnedForOverflow = true;\n }\n\n // create a major label on the left when needed\n if (this.options.showMajorLabels) {\n const leftTime = this.body.util.toTime(0); // upper bound estimation\n const leftText = step.getLabelMajor(leftTime);\n const widthText = leftText.length * (this.props.majorCharWidth || 10) + 10;\n\n if (xFirstMajorLabel == undefined || widthText < xFirstMajorLabel) {\n this._repaintMajorText(0, leftText, orientation, className);\n }\n }\n\n // Cleanup leftover DOM elements from the redundant list\n util.forEach(this.dom.redundant, arr => {\n while (arr.length) {\n const elem = arr.pop();\n if (elem && elem.parentNode) {\n elem.parentNode.removeChild(elem);\n }\n }\n });\n }", "function creates_sliderDomModel__4__time()\n {\n var pos2pointy = ssF.pos2pointy;\n var pointies2line = ssF.pointies2line;\n\n //=========================================\n // //\\\\ slider api pars\n //=========================================\n var slCaption = 'time';\n var sliderId = 'time';\n\n /// adds input pars to api\n /// store-name for value delivered from sliding ===\n /// model value which is set by slider,\n var apiValueName = 't';\n\n var captionPrefix = 'm = ';\n var COLOR = sDomF.getFixedColor( sliderId );\n var customSliderShift = 0; //picture units\n //=========================================\n // \\\\// slider api pars\n //=========================================\n\n //:spawns api pars\n var api_rgid = 'slider_sl' + sliderId;\n var start_rgid = 'railsStart_' + sliderId;\n var end_rgid = 'railsEnd_' + sliderId;\n var rails_rgid = 'slider_' + sliderId;\n var tpId = sliderId;\n var tptpId = 'tp-' + tpId;\n\n\n //----------------------------------------------------------------------------\n // //\\\\ in model units and reference system\n //----------------------------------------------------------------------------\n var startX = ( -sconf.originX_onPicture +\n sconf.innerMediaWidth *\n sconf.SLIDERS_OFFSET_X\n ) * sconf.inn2mod_scale;\n var endX = startX + sconf.innerMediaWidth *\n sconf.SLIDERS_LENGTH_X *\n sconf.inn2mod_scale;\n var startY = sconf.originY_onPicture\n - sconf.innerMediaHeight\n + sconf.SLIDERS_LEGEND_HEIGHT\n + sconf.SLIDERS_OFFSET_Y\n + customSliderShift\n ;\n var startY = startY * sconf.inn2mod_scale;\n //----------------------------------------------------------------------------\n // \\\\// in model units and reference system\n //----------------------------------------------------------------------------\n\n\n //:spawns api pars\n var startPos = [ startX, startY ];\n var endPos = [ endX, startY ];\n\n //--------------------------------------------------------\n // //\\\\ slider api\n //--------------------------------------------------------\n var api = toreg( api_rgid )( 'pos', [startPos, endPos] )();\n api.startX = startX;\n api.endX = endX;\n api.railsLength = endX - startX; //in model units\n api.pcolor = COLOR;\n api.slCaption = slCaption;\n\n //-------------------------------------\n // //\\\\ adds helpers\n //-------------------------------------\n toreg( start_rgid )( 'pos', startPos );\n toreg( end_rgid )( 'pos', endPos );\n var railsStart = pos2pointy(\n start_rgid,\n { fill : COLOR, tpclass:tpId, cssClass : 'tofill tostroke', }\n );\n var railsEnd = pos2pointy(\n end_rgid,\n { fill : COLOR, tpclass:tpId, cssClass : 'tofill tostroke', }\n );\n ///draws rails\n var rails = pointies2line(\n rails_rgid,\n [ railsStart, railsEnd ],\n { stroke : COLOR,\n 'stroke-width' : 3,\n tpclass : tpId,\n cssClass : 'tofill tostroke',\n }\n );\n $$.$( rails.svgel ).cls( tptpId );\n //-------------------------------------\n // \\\\// adds helpers\n //-------------------------------------\n\n\n //------------------------------------------------\n // //\\\\ makes svg representation of api\n // as a point, adds medpos to api\n //-------------------------------------\n var wwrack = pos2pointy(\n api_rgid,\n {\n cssClass : 'tostroke',\n stroke : COLOR,\n 'stroke-width' : 3,\n fill : 'white',\n r : 5,\n tpclass : tpId,\n }\n );\n //.overrides tp - machinery suppressed opacity,\n //.the handler must be solid,\n wwrack.svgel.style[ 'fill-opacity' ] = '1';\n //-------------------------------------\n // \\\\// makes svg representation of api\n //--------------------------------------------------------\n\n /// adds text to api-GUI\n api.text_svg = sv.printText({\n parent : stdMod.mmedia,\n text : sliderId,\n 'stroke-width' : 1,\n style :\n {\n 'font-family' : 'helvetica, san-serif',\n 'font-size' : sconf.GENERIC_SLIDERS_FONT_SIZE +'px',\n 'stroke-width' : 1,\n color : COLOR,\n fill : 'transparent',\n },\n stroke : COLOR,\n fill : COLOR,\n });\n //todmm ... patch ... adds tp dimming machinery\n $$.$( api.text_svg ).addClass( 'tp-time' );\n\n api.apiValueName = apiValueName;\n api.move_2_updates = move_2_updates;\n api.processDownEvent = processDownEvent;\n api.modPos_2_GUI = ssF.modPos_2_GUI;\n api.stdMod = stdMod;\n api.upd_sliderGUI8legend__8__unmask = upd_sliderGUI8legend__8__unmask;\n //-------------------------------------\n // \\\\// slider api\n //--------------------------------------------------------\n\n var rgX = api; //rg.slider_sltime;\n ///this sub is defined in full-app/lib/custom-slider.js module\n ssF.rgXSlider__2__dragwrap_gen_list({\n rgX,\n orientation : 'axis-x',\n stdMod,\n });\n return;\n\n\n\n\n\n\n\n\n\n\n\n\n ///this function does \"minor\" update: it does not\n ///recalculate the evolution, but \n /// sets slider position and\n /// shows evolution corresponding to time;\n function upd_sliderGUI8legend__8__unmask()\n {\n var rawTime = api[ apiValueName ]; //===rg.slider_sltime.t;\n\n //-----------------------------------------------------\n // //\\\\ corrects pos and updates slider's GUI\n //-----------------------------------------------------\n //interpolates slider GUI position\n var sliderXpos =\n railsStart.pos[0] + \n rawTime / rg.spatialStepsMax.pos * api.railsLength\n ;\n api.pos = [ sliderXpos, railsStart.pos[1] ];\n\n //at curr. ver., does what it says: pos to GUI\n api.modPos_2_GUI();\n //-----------------------------------------------------\n // \\\\// corrects pos and updates slider's GUI\n //-----------------------------------------------------\n\n //does what it says, no extra calculations\n stdMod.sliderTime_2_time8stepIndices();\n\n //apparently, only decoration like time labels\n stdMod.time_2_displayTimeStrings();\n //perpendicular and point \"T\"\n //they depend on slider-time, this is why their math model pos\n //updates here and not in model_upcreate()\n stdMod.doesPosition_PTandTheirLine();\n\n //at the end of job, runs application-provided callback\n stdMod.unmasksVisib();\n stdMod.upcreate_mainLegend();\n if( ssF.mediaModelInitialized ) {\n stdMod.medD8D && stdMod.medD8D.updateAllDecPoints();\n }\n };\n }", "function initTimeSlotsLabels() {\n\n var slotLabel = function(s) {\n var hours = Math.floor(s / SLOTS_PER_HOUR);\n var minutes = (s % SLOTS_PER_HOUR) * SLOT_DURATION;\n return (\"00\" + hours).substr(-2) + \":\" + (\"00\" + minutes).substr(-2);\n };\n\n for (slot = 0; slot < SLOTS_PER_DAY; slot++) {\n slotsLabels[slot] = slotLabel(slot) + \"-\" + slotLabel((slot + 1) % SLOTS_PER_DAY);\n }\n if (debug)\n console.log(\"Time slots labels: \" + slotsLabels);\n}", "function labels() {\n pop();\n strokeWeight(1);\n fill(255);\n textStyle(NORMAL);\n textFont('Georgia');\n\n var min = minSlider.value();\n var alpha = alphaSlider.value();\n var range = rangeSlider.value();\n\n // Shorten labels and add '$'\n if(range >= 1000 & range <= 1000000){\n range_half = \"$\" + range / 2000 + \"K\";\n range = \"$\" + range / 1000 + \"K\";\n }\n\n if(range >= 1000000){\n var range_half = \"$\" + range / 2000 + \"K\";\n var range = \"$\" + range / 1000000 + \"M\";\n }\n\n // minSlider labels\n if(min >=1000 & min <= 1000000){\n min_half = \"$\" + min / 2000 + \"K\";\n min = \"$\" + min / 1000 + \"K\";\n }\n\n\n if(maxMin >=1000 & maxMin <= 1000000){\n maxMin_half = \"$\" + maxMin / 2000 + \"K\";\n maxMin = \"$\" + maxMin / 1000 + \"K\";\n }\n\n text(\"Min:\", minSlider.x * 2 + minSlider.width - 15, minSlider.y + yOff);\n text(min , minSlider.x * 2 + minSlider.width + xOff + 5, minSlider.y + yOff);\n text(0, minSlider.x, minSlider.y + space);\n text(maxMin, minSlider.x + minSlider.width, minSlider.y + space);\n text(maxMin_half, minSlider.x + minSlider.width / 2 - 10, minSlider.y + space);\n\n\n // alphaSlider labels\n text(\"alpha:\", alphaSlider.x * 2 + alphaSlider.width - 15, 65);\n text(alpha , alphaSlider.x * 2 + alphaSlider.width + xOff + 5, alphaSlider.y + yOff);\n text(\"0\", alphaSlider.x, alphaSlider.y + space);\n text(maxAlpha, alphaSlider.x + alphaSlider.width, alphaSlider.y + space);\n text(maxAlpha / 2, alphaSlider.x + alphaSlider.width / 2, alphaSlider.y + space);\n\n // rangeSlider labels\n\n\n if(maxRange >= 999999){\n var maxRange_half = \"$\" + maxRange / 2000 + \"K\";\n var maxRange = \"$\" + maxRange / 1000000 + \"M\";\n }\n\n if(maxRange >= 1000 & maxRange <= 1000000){\n var maxRange_half = \"$\" + maxRange / 2000 + \"K\";\n var maxRange = \"$\" + maxRange / 1000 + \"K\";\n }\n\n text(\"Range:\", rangeSlider.x * 2 + rangeSlider.width - 15, 95);\n text(\"[-\" + range + \",\" + range + \"]\" , rangeSlider.x * 2 + rangeSlider.width + xOff + 5, rangeSlider.y + yOff);\n text(\"1\", rangeSlider.x, rangeSlider.y + space);\n text(\"$1M\", rangeSlider.x + rangeSlider.width, rangeSlider.y + space);\n text(\"$500K\", rangeSlider.x + rangeSlider.width / 2 - 10, rangeSlider.y + space);\n\n text(\"The Pareto Distribution:\", rangeSlider.x, rangeSlider.y + 2*space);\n //text(\"P(X\\u2264x) = 1 - (min_x/X)^\\u03B1\", rangeSlider.x, rangeSlider.y + 2*space + 14);\n\n push();\n }", "function labels() {\n\n // If sliders have already been defined\n if (isSlider) {\n // Add a top to bottom gradient background\n strokeWeight(1);\n for (let i = 0; i < height; i++) {\n stroke(lerpColor(c1, c2, i / float(height)));\n line(0, i, width, i);\n }\n\n // Add a legend\n fill(0); stroke(0);\n image(legend, 0.005 * width, 0.03 * height, scale * legend.width, scale * legend.height);\n\n // Label each icon with a continent name\n textAlign(CENTER); textSize(16); textStyle(NORMAL);\n for (let i = 0; i < continents; i++) {\n text(populationTable.columns[i + 1], xOffset[i], 0.91 * height);\n }\n\n // Add title\n fill(255); textAlign(LEFT); textSize(22);\n text('Age Dependency Ratio for ' + yearSlider.value(), width / 20,\n height * 0.05);\n textSize(12);\n text('(Size of Fractal is Proportional to the Population)', width / 20, height * 0.07);\n\n // All slider markings\n fill('#0274FF'); textAlign(CENTER); textSize(10); textStyle(ITALIC);\n for (let i = 1; i < 20; i++) {\n text(yearStart + 3 * (i - 1), i * width / 20, height * 0.95);\n }\n } else {\n\n // First call only defines sliders\n yearSlider = createSlider(yearStart, yearEnd, yearStart, 1);\n yearSlider.position(width / 20, height * 0.95);\n yearSlider.style('width', (width * 0.9) + 'px');\n\n isSlider = true;\n }\n}", "function fieldboxesdisplay() {\n \n var field;\n var c_dayselection = dayselection[position].split(\".\");\n console.log(\"reeaa\"+ c_dayselection);\n for (var i = 0; i <= c_dayselection.length - 1; i += 1) {\n for (var c = 1; c <= periods; c += 1) {\n if (c_dayselection[i] === \"True\") {\n \n document.getElementById(c).insertAdjacentHTML('beforeEnd', \"<td class='sub' id='\" + c + \",\" + days[i] + \"'><input class='sub' id='\" + \"s\" + days[i] + \",\" + c + \"' type='time'><input class='sub' id='\" + \"e\" + days[i] + \",\" + c + \"' type='time'></td>\");\n }\n }\n }\n }", "function makeSlide(t,e){return'<label for=\"'+t+'\" > '+t+': <span id=\"'+t+'-value\">…</span></label> <input type=\"range\" min=\"0\" max=\"'+e+'\" step=\"0.1\" id=\"'+t+'\">'}", "function fixFieldLabels(){\n \n for( var i in data.fields ){\n //check if field is time or text\n if( data.fields[i].type_id != 7 && data.fields[i].type_id != 37 ){\n var div = $('#fieldvisiblediv' + i);\n var input = $('#fieldvisible' + i);\n \n if (input.attr('checked')) {\n div.css('color', '#' + getFieldShade(i));\n }\n else {\n div.css('color', '#770000');\n }\n }\n }\n}", "function renderTimeLabels() {\n dom.axis.label0\n .attr('x', 5)\n .attr('y', 15)\n .text(formatterWithYear(timerange[0]));\n\n dom.axis.label1\n .attr('x', WIDTH - 5)\n .attr('y', 15)\n .text(formatterWithYear(timerange[1]))\n .style('text-anchor', 'end');\n }", "function renderTimeControls() {\n const zoomLabels = copy[app.language].timeline.zooms;\n zoomLevels.forEach((level, i) => {\n level.label = zoomLabels[i];\n });\n\n // These controls on timeline svg\n dom.backwards.select('circle')\n .attr('transform', `translate(${scale.x.range()[0] + 20}, 62)`)\n .attr('r', 15);\n\n dom.backwards.select('path')\n .attr('d', d3.symbol().type(d3.symbolTriangle).size(80))\n .attr('transform', `translate(${scale.x.range()[0] + 20}, 62)rotate(270)`);\n\n dom.forward.select('circle')\n .attr('transform', `translate(${scale.x.range()[1] - 20}, 62)`)\n .attr('r', 15);\n\n dom.forward.select('path')\n .attr('d', d3.symbol().type(d3.symbolTriangle).size(80))\n .attr('transform', `translate(${scale.x.range()[1] - 20}, 62)rotate(90)`);\n\n dom.zooms.selectAll('text')\n .text(d => d.label)\n .attr('x', 60)\n .attr('y', (d, i) => (i * 15) + 20)\n .classed('active', level => level.active);\n\n dom.forward\n .on('click', () => moveTime('forward'));\n\n dom.backwards\n .on('click', () => moveTime('backwards'));\n\n dom.zooms.selectAll('text')\n .on('click', zoom => applyZoom(zoom));\n }", "function setupTimer(){\n var labels = [\"Days:\", \"Hours:\", \"Minutes:\", \"Seconds:\"];\n //create the box for T- or T+\n var $tBox = $(\"<div>\");\n $tBox.addClass(\"t\");\n $tBox.text(\"T-\");\n $timerContainer.append($tBox);\n \n for(i=0; i<labels.length; i++){\n //setup the boxes for the numbers\n var $newBox = $(\"<div>\");\n $newBox.addClass(\"time\");\n $newBox.attr(\"id\",\"box-\"+i);\n $timerContainer.append($newBox);\n\n //setup the numbers in the boxes\n var $newNum = $(\"<h1>\");\n $newNum.addClass(\"number\");\n $newNum.attr(\"id\", \"num-\"+i);\n $newNum.text(0);\n $newBox.append($newNum);\n\n //setup the labels in the boxes\n var $newName = $(\"<h2>\");\n $newName.addClass(\"label\");\n $newName.attr(\"id\", \"label-\"+i);\n $newBox.prepend($newName);\n }\n for (i=0; i<labels.length; i++){\n var $currentLabel = $(\"#label-\"+i);\n $currentLabel.text(labels[i]);\n }\n}", "function slideBar(aObjectName,aCheckboxPanel,aSliderPanel,aFormId,aFormName,labels,x,y,l,xSize,ySize)\n{\n // Compose the unique ids of the sliders.\n sliderIDs = Array();\n for (var i=0;i<labels.length-1;i++)\n {\n sliderIDs[i] = aObjectName + \"_slider_\" + i;\n }\n // Compose the unique ids of the checkboxes.\n checkboxIDs = Array();\n for (var i=0;i<labels.length;i++)\n {\n checkboxIDs[i] = aObjectName + \"_checkbox_\" + i;\n }\n // Compose the unique ids of the slide areas.\n fieldIDs = Array();\n for (var i=0;i<labels.length;i++)\n {\n fieldIDs[i] = aObjectName + \"_area_\" + i;\n }\n \n drawSliderHtml(fieldIDs,aSliderPanel,checkboxIDs,aCheckboxPanel,labels,aObjectName,sliderIDs,xSize);\n \n this.sliderX = xSize;\n this.sliderY = ySize;\n this.xLoc = x;\n this.yLoc = y;\n \n this.colFields = [];\n this.sliders = [];\n this.checkboxes = checkboxIDs;\n this.unused = [];\n \n this.formId = aFormId;\n this.formName = aFormName;\n \n this.numOfSliders = sliderIDs.length;\n this.size = l;\n this.freeSize = l - this.numOfSliders*xSize;\n this.widths = [];\n \n if (parent.document.forms[this.formName].elements[this.formId].value != \"\")\n {\n var aArray= parent.document.forms[this.formName].elements[this.formId].value.split(\";\",fieldIDs.length);\n for (i=0; i<this.numOfSliders+1; i++)\n {\n this.widths[i] = parseFloat(aArray[i]);\n if (this.widths[i] > 0)\n {\n this.unused[i] = 0;\n }\n else\n {\n this.unused[i] = 1;\n }\n }\n }\n else\n { \n for (i=0; i<this.numOfSliders+1; i++)\n {\n this.unused[i] = 1;\n this.widths[i] = 0;\n }\n }\n \n var aL = this.xLoc;\n for (i=0; i<this.numOfSliders; i++)\n {\n aL = aL + Math.round(this.widths[i]*this.freeSize);\n this.sliders[i] = new slider(sliderIDs[i],aL,y+1,i,this);\n aL = aL + xSize;\n }\n \n for (i=0; i<this.numOfSliders; i++)\n {\n this.setLimits(this.sliders[i]);\n }\n \n for (i=0;i<fieldIDs.length;i++)\n {\n this.colFields[i] = new colorField(fieldIDs[i],y,ySize);\n }\n \n return this;\n}", "function init_timeslider(data){\r\n\t\tconsole.log(\"init_timeslider\");\r\n\t\tvar minDatum = data[0][selectedOptions.dateField];\r\n\t\tvar maxDatum = data[data.length-1][selectedOptions.dateField];\r\n\t\tdocument.getElementById(\"time_slider\").setAttribute(\"max\", data.length-1);\r\n\t}", "function initializeSliders() {\n\tupdateSilderLabel(minBPMRange, maxBPMRange, MinBPMValue, MaxBPMValue);\n\tupdateSilderLabel(minYearRange, maxYearRange, currentMinYear, currentMaxYear);\n\n\n}", "function TimeSlider(){\n if($('.time-slider').length) {\n \n\n $(\".time-slider\").slider({\n min: 0,\n max: 1440,\n step: 1,\n create:function(event,ui){\n var $this = $(this),\n\n start = parseInt($this.attr('data-start'), 10),\n\n end = parseInt($this.attr('data-end'), 10),\n\n hours_start = Math.floor(start / 60);\n\n if(isNaN(end)==false){\n\n $this.slider(\"option\",\"range\", true);\n\n $this.slider(\"values\", [start,end]);\n\n var hours_end=Math.floor(end / 60),\n\n time_end=TimeSlide(hours_end,end - (hours_end*60),true),\n\n time_start=TimeSlide(hours_start, start - (hours_start*60),true);\n\n $this.prepend(\"<label class='label-min'>\"+time_start+\"</label>\");\n\n $this.append(\"<label class='label-max'>\"+time_end+\"</label>\");\n\n $this.find('.range').attr('value',time_start+','+time_end);\n\n } else {\n var time_start=TimeSlide(hours_start, start - (hours_start*60),false);\n\n $this.slider(\"value\",start);\n\n $this.slider(\"option\",\"range\", \"min\");\n\n $this.append(\"<label class='label-max'>\"+time_start+\"</label>\");\n\n $this.find('.range').attr('value',time_start);\n\n }\n \n \n },\n slide: function(event, ui) {\n\n var $this=$(this),\n\n rager=$this.slider(\"option\", \"range\"),\n\n values, hours_start, hours_end, time_start, time_end;\n\n if(rager==true) {\n\n values=ui.values;\n\n hours_start=Math.floor(values[0] / 60);\n\n hours_end=Math.floor(values[1] / 60);\n\n time_start=TimeSlide(hours_start, values[0] - (hours_start*60),true);\n\n time_end=TimeSlide(hours_end,values[1] - (hours_end*60),true);\n\n $this.find('.label-min').text(time_start);\n\n $this.find('.label-max').text(time_end);\n\n $this.find('.range').attr('value',time_start+','+time_end);\n\n } else {\n\n values=ui.value;\n\n hours_start=Math.floor(values / 60);\n\n time_start=TimeSlide(hours_start, values - (hours_start*60),false);\n\n $this.find('.label-max').text(time_start);\n\n $this.find('.range').attr('value',time_start);\n }\n }\n });\n }\n }", "function setSliderValues(){\r\n prs_1_output.innerHTML = 'Not Selected';\r\n prs_2_output.innerHTML = 'Not Selected';\r\n prs_3_output.innerHTML = 'Not Selected';\r\n prs_4_output.innerHTML = 'Not Selected';\r\n prs_5_output.innerHTML = 'Not Selected';\r\n prs_6_output.innerHTML = 'Not Selected';\r\n prs_7_output.innerHTML = 'Not Selected';\r\n prs_8_output.innerHTML = 'Not Selected';\r\n prs_9_output.innerHTML = 'Not Selected';\r\n prs_10_output.innerHTML = 'Not Selected';\r\n\r\n //probe_1_output.innerHTML = 'Not Selected';\r\n //probe_2_output.innerHTML = 'Not Selected';\r\n\r\n age_output.innerHTML = 'Not Selected';\r\n}", "function init_timeslider(data){\n\t\tvar minDatum = data[0].datum;\n\t\tvar maxDatum = data[data.length-1].datum;\n\t\tdocument.getElementById(\"time_slider\").setAttribute(\"max\", data.length-1);\n\t}", "function TimeSlider(name,init)\r\n{\r\n\t// initialize child elements names\t\r\n\tthis.contentDiv = name+\"-content\";\r\n\tthis.oldcontentDiv = name+\"-content-old\";\r\n\tthis.viewportDiv = name+\"-viewport\";\r\n\t\r\n\t// init constructor.\r\n\tTimeControlledView.call(this,name,init);\t\r\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Forming a Magic Square
function formingMagicSquare(s) { let compArr = [ [[8, 1, 6], [3, 5, 7], [4, 9, 2]], [[6, 1, 8], [7, 5, 3], [2, 9, 4]], [[4, 9, 2], [3, 5, 7], [8, 1, 6]], [[2, 9, 4], [7, 5, 3], [6, 1, 8]], [[8, 3, 4], [1, 5, 9], [6, 7, 2]], [[4, 3, 8], [9, 5, 1], [2, 7, 6]], [[6, 7, 2], [1, 5, 9], [8, 3, 4]], [[2, 7, 6], [9, 5, 1], [4, 3, 8]] ]; // There are only 8 possible magic squares, so we compare against them function compare(arr) { //compares the input square against all the possibles let count = 0; for (let i = 0; i < 3; i++) { for (let j = 0; j < 3; j++) { // keeps count of the difference cost count += Math.abs(s[i][j] - arr[i][j]); } } return count; } // map an array of the costs and return the minimum cost let comparedCounts = compArr.map(compare); return Math.min(...comparedCounts); }
[ "function formingMagicSquare(s) {\n const magic = [];\n \n function genMagic(mat, vals){\n if(vals.length === 0){\n const sum = mat[0][0] + mat[0][1] + mat[0][2];\n for(let i = 0; i < mat.length; i++){\n if(sum !== mat[i][0] + mat[i][1] + mat[i][2])\n return;\n }\n for(let i = 0; i < mat[0].length; i++){\n if(sum !== mat[0][i] + mat[1][i] + mat[2][i])\n return;\n }\n if(sum !== mat[2][0] + mat[1][1] + mat[0][2])\n return;\n if(sum !== mat[0][0] + mat[1][1] + mat[2][2])\n return;\n \n magic.push(mat.map(row => row.slice()));\n return;\n }\n \n let col = (9 - vals.length) % 3;\n let row = Math.floor((9 - vals.length)/3);\n \n for(let i = 0; i < vals.length; i++){\n mat[row][col] = vals[i];\n const newVals = vals.slice();\n newVals.splice(i, 1);\n genMagic(mat, newVals);\n }\n }\n \n function calcCost(base, magic){\n let cost = 0;\n for(let i = 0; i < base.length; i++){\n for(let j = 0; j < base[0].length; j++){\n cost += Math.abs(base[i][j] - magic[i][j]);\n }\n }\n return cost;\n } \n \n genMagic([[],[],[]], [1,2,3,4,5,6,7,8,9]);\n \n let minCost;\n for(let i = 0; i < magic.length; i++){\n const cost = calcCost(s, magic[i]);\n minCost = minCost === undefined ? cost : Math.min(minCost, cost);\n }\n return minCost;\n}", "function magicSquare() {\n var A = B = C = D = E = f = g = h = i = j = 0;\n //this whole thing generates one of the 144 \"unique\" 5x5 magic squares\n //for more info visit https://www.grogono.com/magic/5x5pan144.php\n var table1 = [];\n table1[0] = [0, 5, 10, 15, 20];\n table1[1] = [0, 5, 10, 20, 15];\n table1[2] = [0, 5, 15, 10, 20];\n table1[3] = [0, 5, 15, 20, 10];\n table1[4] = [0, 5, 20, 10, 15];\n table1[5] = [0, 5, 20, 15, 10];\n\n var table2 = [];\n table2[0] = [0, 1, 2, 3, 4];\n table2[1] = [0, 1, 2, 4, 3];\n table2[2] = [0, 1, 3, 2, 4];\n table2[3] = [0, 1, 3, 4, 2];\n table2[4] = [0, 1, 4, 2, 3];\n table2[5] = [0, 1, 4, 3, 2];\n table2[6] = [0, 2, 1, 3, 4];\n table2[7] = [0, 2, 1, 4, 3];\n table2[8] = [0, 2, 3, 1, 4];\n table2[9] = [0, 2, 3, 4, 1];\n table2[10] = [0, 2, 4, 1, 3];\n table2[11] = [0, 2, 4, 3, 1];\n table2[12] = [0, 3, 1, 2, 4];\n table2[13] = [0, 3, 1, 4, 2];\n table2[14] = [0, 3, 2, 1, 4];\n table2[15] = [0, 3, 2, 4, 1];\n table2[16] = [0, 3, 4, 1, 2];\n table2[17] = [0, 3, 4, 2, 1];\n table2[18] = [0, 4, 1, 2, 3];\n table2[19] = [0, 4, 1, 3, 2];\n table2[20] = [0, 4, 2, 1, 3];\n table2[21] = [0, 4, 2, 3, 1];\n table2[22] = [0, 4, 3, 1, 2];\n table2[23] = [0, 4, 3, 2, 1];\n\n var randTable1 = table1[Math.floor(6 * Math.random())];\n var randTable2 = table2[Math.floor(24 * Math.random())];\n A = randTable1[0];\n B = randTable1[1];\n C = randTable1[2];\n D = randTable1[3];\n E = randTable1[4];\n f = randTable2[0];\n g = randTable2[1];\n h = randTable2[2];\n i = randTable2[3];\n j = randTable2[4];\n\n var template = [];\n template[0] = [(A+f+1), (B+i+1), (C+g+1), (D+j+1), (E+h+1)];\n template[1] = [(D+g+1), (E+j+1), (A+h+1), (B+f+1), (C+i+1)];\n template[2] = [(B+h+1), (C+f+1), (D+i+1), (E+g+1), (A+j+1)];\n template[3] = [(E+i+1), (A+g+1), (B+j+1), (C+h+1), (D+f+1)];\n template[4] = [(C+j+1), (D+h+1), (E+f+1), (A+i+1), (B+g+1)];\n\n //here starts the translocations, rotations, and reflections that increase the possible magic squares to 28800\n var ro = Math.floor(4 * Math.random());\n var rf = Math.floor(2 * Math.random());\n var tH = Math.floor(5 * Math.random());\n var tV = Math.floor(5 * Math.random());\n\n template = translocate(template, tH, 0);\n template = translocate(template, tV, 1);\n template = rotate(template, ro);\n if (rf == 1)\n template.reverse();\n\n function inverse(t) { //inverts the table\n var s = [];\n for (var j = 0; j < t.length; j++)\n s.push([]);\n for (var j = 0; j < t.length; j++) {\n for (var k = 0; k < t.length; k++)\n s[j][k] = t[k][j];\n }\n }\n\n function rotate(t, i) { //rotates ccw i times\n for (var j = 1; j <= i; j++) {\n inverse(t);\n t.reverse();\n }\n return t;\n }\n\n function translocate(t, i, dir) {\n if (dir == 1) { //shifts down i times\n for (j = 1; j <= i; j++) {\n var s = t.shift();\n t.push(s);\n }\n } else {\n for (j = 1; j <= i; j++) { //shifts left i times\n for (k = 0; k <= 4; k++) {\n var s = t[k].shift();\n t[k].push(s);\n }\n }\n }\n return t;\n }\n\n return template;\n }", "function formingMagicSquare(s) { \n const sumRow = (i, m) => m[i][0] + m[i][1] + m[i][2]\n\n const sumCol = (i, m) => m[0][i] + m[1][i] + m[2][i]\n\n const sumDR = (m) => m[0][0] + m[1][1] + m[2][2]\n\n const sumDL = (m) => m[0][2] + m[1][1] + m[2][0]\n\n const isMagic = m => {\n return sumRow(0, m) == 15 &&\n sumRow(1, m) == 15 &&\n sumRow(2, m) == 15 &&\n sumCol(0, m) == 15 &&\n sumCol(1, m) == 15 &&\n sumCol(2, m) == 15 &&\n sumDR(m) == 15 &&\n sumDL(m) == 15;\n }\n\n const uniques = (ar1, ar2, ar3) => {\n let all = [...ar1, ...ar2, ...ar3];\n let valid = true;\n\n all.forEach(e => {\n if (all.filter(x => x == e).length > 1)\n valid = false;\n })\n\n return valid;\n }\n\n const fullCombine = () => {\n let combinations = [];\n let magics = [];\n for(let i = 1; i < 10; i++) {\n for(let j = 1; j < 10; j++) {\n for(let k = 1; k < 10; k++) {\n if (k !== j && j !== i && i !== k && (i + k + j) == 15)\n combinations.push([i, j, k])\n }\n } \n }\n \n for(let i = 0; i < combinations.length; i++) {\n for(let j = 0; j < combinations.length; j++) {\n for(let k = 0; k < combinations.length; k++) {\n if (\n k !== j && \n j !== i && \n i !== k && \n uniques(combinations[i], combinations[j], combinations[k]) &&\n isMagic([combinations[i], combinations[j], combinations[k]])\n ){\n magics.push([combinations[i], combinations[j], combinations[k]])\n }\n }\n } \n }\n\n return magics;\n \n \n \n }\n\n let magics = fullCombine();\n\n let min = 1000000;\n magics.forEach(m => {\n let total = 0;\n for(let y = 0; y < 3; y++) {\n for(let x = 0; x < 3; x++) {\n total += Math.abs(m[y][x] - s[y][x])\n } \n }\n\n if (total < min)\n min = total\n })\n\n return min;\n}", "function formingMagicSquare(s) {\n let cost = 0;\n let unusedNums = getUnusedNums(s);\n let rowColumnSums = getRowColumnSums(s);\n let repeatedNums = getRepeatedNums(s);\n while(!isMagicSquare(rowColumnSums, unusedNums)){\n\n }\n return cost;\n}", "function getAllMagicSquares() {\n const values = new Array(9).fill(0).map((_, index) => index + 1);\n const combinations = getCombinations(values);\n // console.info('combinations', combinations[0]);\n const matrices = [];\n combinations.forEach((combination, index) => {\n matrices.push([combination.slice(0, 3), combination.slice(3, 6), combination.slice(6, 9)]);\n });\n // console.info('matrices', matrices[0]);\n const magicSquares = [];\n matrices.forEach((combination) => {\n if (isMagicSquare(combination)) {\n magicSquares.push(combination);\n }\n });\n // console.info('magicSquares', magicSquares);\n return magicSquares;\n}", "function printMagicSquare(outputSquare) {\n // Printing a magic square\n console.log(\"*****\");\n console.log(outputSquare[0] + \" \" + outputSquare[1] + \" \" + outputSquare[2]);\n console.log(outputSquare[3] + \" \" + outputSquare[4] + \" \" + outputSquare[5]);\n console.log(outputSquare[6] + \" \" + outputSquare[7] + \" \" + outputSquare[8]);\n console.log(\"*****\");\n console.log();\n}", "function formingMagicSquare(s) {\n const n=s.length;\n let flatArr = [];\n let compare = [];\n let difference = 0;\n const possible = [\n [8, 1, 6, 3, 5, 7, 4, 9, 2],\n [6, 1, 8, 7, 5, 3, 2, 9, 4],\n [4, 9, 2, 3, 5, 7, 8, 1, 6],\n [2, 9, 4, 7, 5, 3, 6, 1, 8],\n [8, 3, 4, 1, 5, 9, 6, 7, 2],\n [4, 3, 8, 9, 5, 1, 2, 7, 6],\n [6, 7, 2, 1, 5, 9, 8, 3, 4],\n [2, 7, 6, 9, 5, 1, 4, 3, 8]\n ];\n s.forEach((arr) => arr.forEach((element) => flatArr.push(element)));\n possible.forEach((arr) => {\n for (let i = 0;i<arr.length;i++){\n if(flatArr[i] !== arr[i]){\n difference += (Math.abs(flatArr[i]-arr[i]));\n }\n }\n compare.push(difference);\n difference = 0;\n })\n return Math.min(...compare);\n}", "function _magSq(){\n\t\treturn (this.x * this.x + this.y * this.y);\n\t}", "function createSquare() {\n new Square(sideLength.value);\n }", "function makeSquare (aSize) {\n let strToReturn = ''\n if (aSize > 1) {\n for (let i = 0; i < aSize; i++) {\n for (let j = 0; j < aSize; j++) {\n strToReturn = strToReturn + '*' \n }\n if (i < (aSize - 1)) {\n strToReturn = strToReturn + '\\n'\n }\n }\n } else {\n if (aSize === 1) {\n return '*'\n } else {\n return ''\n }\n }\n return strToReturn\n}", "function createSquare(tInt){\n var lRow, lCol, outputLoc = document.getElementById('squareSpaceText');\n // Step 1. check to see if form is valid.\n if($(\"#createSquareForm\").valid()){\n // reset ouput location to empty string.\n outputLoc.innerHTML = '';\n\n //Step 2. generate loop for rows and columns placing stars in correct locations.\n for (lRow = 1; lRow <=tInt; lRow++){\n for(lCol = 1; lCol <=tInt; lCol++){\n if(lRow == 1 || lRow == tInt){\n outputLoc.innerHTML +='*';\n } else if (lCol == 1 || lCol == tInt){\n outputLoc.innerHTML +='*';\n } else {\n outputLoc.innerHTML +=' ';\n } //end if\n } //end inner for\n\n outputLoc.innerHTML +='<br>'\n } //end outer for\n\n } //end validator\n\n} //end createSquare", "function squarewaves(x,y) {\n return square(manhattan(x,y),.75);\n}", "function createSquare() {\n new Square(squareSide.value);\n }", "static isSquare(m) {\n //validate\n this.#validate(m);\n\n return m.length === m[0].length;\n }", "function Square() {\n this.symbol = \"\";\n this.isOccupied = false;\n }", "function makeSquare (xCenter, yCenter, radius) {\r\n var coordinates = new Array(16);\r\n for (var i = 0; i < coordinates.length; i++) { \r\n // Loop to create 2D array using 1D array \r\n coordinates[i] = new Array(2); \r\n } \r\n\r\n // Loop to initilize 2D array elements. \r\n for (var i = 0; i < 16; i++) { \r\n for (var j = 0; j < 2; j++) { \r\n gfg[i][j] = 0; \r\n } \r\n } \r\n //initialize current X,Y to become mins\r\n var currentX = xCenter - radius;\r\n var currentY = yCenter - radius;\r\n \r\n // Loop to populate 2D array elements with rectangle coordinates. \r\n for (var i = 0; i < 16; i++) { \r\n for (var j = 0; j < 2; j++) { \r\n coordinates[i][1] = currentX;\r\n coordinates[i][2] = currentY;\r\n currentX+=radius/2; \r\n } \r\n currentY+=radius/2;\r\n //reset x once one layer of the sqsuare has been completed\r\n currentX=xCenter-radius;\r\n } \r\n return coordinates;\r\n}", "function isMagicSquare(squareMat) {\r\n if (squareMat.length !== squareMat[0].length) return false\r\n var magicSum = sumCol(squareMat, 0)\r\n for (var i = 0; i < squareMat.length; i++) {\r\n if (magicSum !== sumRow(squareMat, i)) return false\r\n if (SumPrimaryDiagonal(squareMat) !== magicSum) return false\r\n if (magicSum !== SumPrimaryDiagonal(squareMat)) return false\r\n if (magicSum !== sumCol(squareMat, i)) return false\r\n }\r\n console.table(squareMat)\r\n return true\r\n}", "function isMagic(possibleSquare) {\n // returns true or false for whether or not inputted array is a magic square\n let magicnum = 15;\n let row1 = possibleSquare[0] + possibleSquare[1] + possibleSquare[2];\n let row2 = possibleSquare[3] + possibleSquare[4] + possibleSquare[5];\n let row3 = possibleSquare[6] + possibleSquare[7] + possibleSquare[8];\n let col1 = possibleSquare[0] + possibleSquare[3] + possibleSquare[6];\n let col2 = possibleSquare[1] + possibleSquare[4] + possibleSquare[7];\n let col3 = possibleSquare[2] + possibleSquare[5] + possibleSquare[8];\n let diag1 = possibleSquare[0] + possibleSquare[4] + possibleSquare[8];\n let diag2 = possibleSquare[2] + possibleSquare[4] + possibleSquare[6];\n\n if (row1 == magicnum && row2 == magicnum && row3 == magicnum\n && col1 == magicnum && col2 == magicnum && col3 == magicnum\n && diag1 == magicnum && diag2 == magicnum) {\n return true;\n } else {\n return false;\n }\n}", "function createSquare(length){\n var squareCharacter = '#';\n if (length === 1) {\n return '#';\n } else if (length > 1) {\n return squareCharacter.repeat(length) + ('\\n' + squareCharacter + ' '.repeat(length - 2) + squareCharacter)\n .repeat(length - 2) + '\\n'\n + squareCharacter.repeat(length)\n } else {\n return ''\n }\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
me: addBuoy description: Adds the given buoy to _buoys and any applicable clients, indexes them, then updates the payload to queue up any applicable notifications. parameters: 'params' Object; contains parameters used for the function call \__ 'name' String; name of the new buoy |__ 'lat' Float; latitude of the new buoy |__ 'lon' Float; longitude of the new buoy 'cb' Function; callback function that is passed a payload object containing: 'error', a jsonrpc 2.0 error object (default: null), and 'notifications', an array of objects with two properties, 'body' and 'clients', which are a stringified jsonrcp 2.0 notification and an array of references to websocket recipients, respectively returns: nothing
addBuoy(params, cb) { const payload = { error: null, notifications: [], }; // send error if params are invalid if (!this._validateParams('addBuoy', params)) { payload.error = { code: -32602, message: 'Invalid params', }; } else if (this._buoys[params.name] === undefined) { // only registers new buoys this._buoys[params.name] = { lat: params.lat, lon: params.lon, height: null, period: null, clients: {}, }; // add new buoy to lat/lon indices this._latIndex.splice(this._findIndex(params.lat, 'lat'), 0, { name: params.name, lat: params.lat, lon: params.lon, }); this._lonIndex.splice(this._findIndex(params.lon, 'lon'), 0, { name: params.name, lat: params.lat, lon: params.lon, }); // checks if new buoy belongs in any subscriptions payload.notifications.push({ body: this._generateNotification(params.name), clients: [], }); for (let client in this._clients) { if (params.lat > this._clients[client].bounds.south && params.lat < this._clients[client].bounds.north && params.lon > this._clients[client].bounds.west && params.lon < this._clients[client].bounds.east) { this._buoys[params.name].clients[client] = client; this._clients[client].buoys[params.name] = params.name; payload.notifications[0].clients.push(this._clients[client].ws); } } } cb(payload); }
[ "updateBuoyData(params, cb) {\n const payload = {\n error: null,\n notifications: [],\n };\n\n // send error if params are invalid\n if (!this._validateParams('updateBuoyData', params)) {\n payload.error = {\n code: -32602,\n message: 'Invalid params',\n };\n // checks if the buoy exists and if the update will change anything\n } else if (this._buoys[params.name] &&\n (this._buoys[params.name].height !== params.height ||\n this._buoys[params.name].period !== params.period)) {\n this._buoys[params.name].height = params.height;\n this._buoys[params.name].period = params.period;\n payload.notifications.push({\n body: this._generateNotification(params.name),\n clients: [],\n });\n for (let client in this._buoys[params.name].clients) {\n console.log('Update queued for', client);\n payload.notifications[0].clients.push(this._clients[client].ws);\n }\n }\n\n cb(payload);\n }", "subscribeToBuoys(params, cb, client, ws) {\n // accumulator for valid buoys\n const results = {};\n const payload = {\n error: null,\n notifications: [],\n };\n const isWithinBounds = (buoy) => buoy.lat > params.south && buoy.lat < params.north &&\n buoy.lon > params.west && buoy.lon < params.east;\n\n // send error if params are invalid\n if (!this._validateParams('subscribeToBuoys', params)) {\n payload.error = {\n code: -32602,\n message: 'Invalid params',\n };\n } else {\n // checks if there are any buoys\n if (this._latIndex.length > 0) {\n // if client is updating existing subscription, remove it from unsubscribed buoys\n if (this._clients[client]) {\n for (let buoy in this._clients[client].buoys) {\n if (isWithinBounds(this._buoys[buoy])) {\n results[buoy] = buoy;\n } else {\n delete this._buoys[buoy].clients[client];\n }\n }\n }\n\n let iLat = this._findIndex(params.south, 'lat');\n let iLon = this._findIndex(params.west, 'lon');\n // search indices until at least one reaches an upper bound or the end of the index\n while (iLat < this._latIndex.length && iLon < this._lonIndex.length &&\n this._latIndex[iLat].lat < params.north && this._lonIndex[iLon].lon < params.east) {\n // if buoy is within bounds and hasn't been added, make an entry and queue a notification\n if (results[this._latIndex[iLat].name] === undefined && isWithinBounds(this._latIndex[iLat])) {\n results[this._latIndex[iLat].name] = this._latIndex[iLat].name;\n this._buoys[this._latIndex[iLat].name].clients[client] = client;\n payload.notifications.push({\n body: this._generateNotification(this._latIndex[iLat].name),\n clients: [ws],\n });\n }\n if (results[this._lonIndex[iLon].name] === undefined && isWithinBounds(this._lonIndex[iLon])) {\n results[this._lonIndex[iLon].name] = this._lonIndex[iLon].name;\n this._buoys[this._lonIndex[iLon].name].clients[client] = client;\n payload.notifications.push({\n body: this._generateNotification(this._lonIndex[iLon].name),\n clients: [ws],\n });\n }\n iLat += 1;\n iLon += 1;\n }\n }\n\n // create client entry\n this._clients[client] = {\n buoys: results,\n bounds: params,\n ws: ws,\n };\n }\n\n cb(payload);\n }", "function addBuyer (req, res, opts, cb) {\n body(req, res, function (err, data) {\n if (err) return cb(err)\n // add buyer document into redis with the buyer id\n Buyer.addBuyer(data, (err) => {\n if (err) return cb(err)\n send(req, res, { body: data, statusCode: 201 })\n })\n })\n}", "checkClientSubscribed(socket, updatedBuoy) {\n const { lat, lon, height, period, name } = updatedBuoy;\n //iterate through clients\n for (let prop in boundsObj) {\n //If the updated buoy is on the client's buoy object, then update it and send the notification\n if (boundsObj[prop].buoys[updatedBuoy.name]) {\n boundsObj[prop].buoys[updatedBuoy.name].height = height;\n boundsObj[prop].buoys[updatedBuoy.name].period = period;\n\n //build notification\n const buoyNotification = {\n jsonrpc: '2.0',\n method: 'buoyNotification',\n params: boundsObj[prop].buoys[updatedBuoy.name]\n };\n //send it\n socket.broadcast.to(prop).emit('buoyNotification', JSON.stringify(buoyNotification));\n }\n }\n }", "function add (buyer, cb) {\n client.incr(\n 'id:buyers',\n function (err, res) {\n if (err) cb(err)\n\n addBuyerId(buyer, cb)\n }\n )\n}", "checkBuoyInBounds(socket, params) {\n const { name, lat, lon } = params;\n const nameUp = name.toUpperCase();\n //iterate over bounds obj\n for (let prop in boundsObj) {\n //If the buoy is within the bounds\n if (lon > boundsObj[prop].bounds.west && lon < boundsObj[prop].bounds.east && lat > boundsObj[prop].bounds.south && lat < boundsObj[prop].bounds.north) {\n const buoy = {\n name: nameUp,\n lat: lat,\n lon: lon,\n height: 0,\n period: 0\n };\n //add buoy to client's buoy object\n boundsObj[prop].buoys[nameUp] = buoy;\n\n //send notification to user client,so they can update their map\n const buoyNotification = {\n jsonrpc: '2.0',\n method: 'buoyNotification',\n params: buoy\n };\n //only sends to specific client, this is another reason why we needed access to the socket.id( clientID)\n socket.broadcast.to(prop).emit('buoyNotification', JSON.stringify(buoyNotification));\n }\n }\n }", "function put_boatCargo(bid, cid){\n const b_key = datastore.key([BOATS, parseInt(bid,10)]);\n return datastore.get(b_key)\n .then( (boats) => {\n if( typeof(boats[0].cargo) === 'undefined'){\n boats[0].cargo = [];\n }\n boats[0].cargo.push(cid);\n return datastore.save({\"key\":b_key, \"data\":boats[0]});\n });\n}", "function saveBu(companyname, address, ownername, email, phonenum){\n var newBuRef = busRef.push();\n newBuRef.set({\n companyname: companyname,\n address:address,\n ownername:ownername,\n email:email,\n phonenum:phonenum\n });\n }", "function addParty(data) {\n fb.push({\n partyName: data.name,\n location: {\n street: data.street,\n city: data.city,\n state: data.state,\n zip: data.zip\n },\n cost: data.cost,\n url: data.url\n },\n function(error) {\n if (error) {\n alert(\"Party couldn't be saved! Error: \" + error);\n } else {\n alert(\"Party added succesfully!\");\n }\n });\n\n}", "_generateNotification(buoy) {\n const notification = {\n jsonrpc: '2.0',\n method: 'buoyNotification',\n params: {\n name: buoy,\n lat: this._buoys[buoy].lat,\n lon: this._buoys[buoy].lon,\n height: this._buoys[buoy].height,\n period: this._buoys[buoy].period,\n },\n };\n\n return JSON.stringify(notification);\n }", "function addBuyerId (buyer, cb) {\n client.sadd(\n 'buyers',\n buyer.id,\n function (err, res) {\n if (err) cb(err)\n\n addBuyerData(buyer, cb)\n }\n )\n}", "function addToBucketlist(e, itineraryId) {\n axios\n .post(\n \"https://tritch-be.herokuapp.com/api/v1/bucketlist/add\",\n {\n userID: verifiedUserID,\n itinerariesID: itineraryId,\n been_there: false,\n },\n { headers: headers }\n )\n .then((response) => {\n console.log(response.data);\n toast(\"Added to bucketlist!\");\n })\n .catch((err) => {\n toast(err.response.data);\n console.log(err);\n });\n }", "function addToBuid(fn, params) {\n var latestKey = me.build[me.build.length - 1];\n\n latestKey.fn = latestKey.fn || [];\n latestKey.params = latestKey.params || [];\n\n latestKey.fn.push(fn);\n latestKey.params.push($.extend(true, [], params));\n }", "function addWishList(item) {\n socket.emit('wishList:add', item);\n}", "addItem(partyId, itemName, itemQuantity, itemUnit) {\n var start = partyServices.addItem(partyId, itemName, itemQuantity, itemUnit).then((resp) => {\n var request = this.props.services.party.getPartiesForUser(this.state.user.email);\n this.updateParties(request);\n });\n }", "function addToBookshelf(req, res) {\n var userId = req.params.uid;\n var bookId = req.params.bid;\n var book = req.body;\n var frontCover = book.volumeInfo.imageLinks.thumbnail;\n var title = book.volumeInfo.title;\n var author = book.volumeInfo.authors;\n model.bookshelfModel\n .addToBookshelf(userId, bookId, title, author, frontCover)\n .then(\n function (bookshelfEntry) {\n if(bookshelfEntry){\n res.json(bookshelfEntry);\n }\n },\n function (error) {\n res.sendStatus(400);\n }\n );\n }", "function addToBasket(fruit, price) {\n // assuming fruit is a string\n basket.push({\n fruit: fruit,\n price: price,\n });\n}", "addBatteries() {\n this.batteries.push(new Battery());\n this.batteries.push(new Battery());\n this.batteries.push(new Battery());\n this.batteries.push(new Battery());\n }", "async bid(ctx, auctionID, costOfHire, driverName, truckNumber){\n let {origin,destination,bids} = await ctx.stub.getState(auctionID);\n let bid={}\n bid['CostOfHire']=costOfHire\n bid['DriverName']=driverName\n bid['TruckNumber']=truckNumber\n bids.push(bid)\n let auctionInfo = {origin,destination,bids}\n await ctx.stub.putState(auctionID, auctionInfo);\n console.info('Created bid');\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Finds the set of worst satisfiable constraints in a fuzzy constraint satisfaction problem.
constraintsWithWorstSatisfactionDegree() { const cs = []; let cur = 1; for (const c of this._cons) { const s = c.satisfactionDegree(); if (s < cur) { cur = s; cs.length = 0; cs.push(c); } else if (s - cur < Number.MIN_VALUE * 10) { cs.push(c); } } return [cs, cur]; }
[ "worstSatisfactionDegree() {\n\t\tlet cs = 1;\n\t\tfor (const c of this._cons) {\n\t\t\tconst s = c.satisfactionDegree();\n\t\t\tif (s === Constraint.UNDEFINED) return Constraint.UNDEFINED;\n\t\t\tif (s < cs) cs = s;\n\t\t}\n\t\treturn cs;\n\t}", "function satisfyConstraints(prgm,constraints){\n var freeVariables={};\n getFreeVariables(prgm)\n\n\n\n //Find valid values for variables\n while(true){\n //Set values of free variables\n for(var key in freeVariables){\n freeVariables[key]=Math.floor(Math.random()*Number.MAX_SAFE_INTEGER)\n }\n\n var tempConstraints=JSON.parse(JSON.stringify(constraints));\n //Substitute all variables into constraints\n for(var key in freeVariables){\n tempConstraints=tempConstraints.map(x=>substitute(key,freeVariables[key],x));\n }\n //Evaluate Constraints\n tempConstraints=tempConstraints.map(x=>evaluate(x))\n var satisfiedConstraints=tempConstraints.every(x=>x);\n //Satisified Constraints\n if(satisfiedConstraints){\n break;\n }\n\n }\n\n //Evaluate with constrained variables\n for(var key in freeVariables){\n prgm=substitute(key,freeVariables[key],prgm);\n }\n console.log(freeVariables)\n return evaluate(prgm);\n\n /**\n * Get map of free variables\n */\n function getFreeVariables(arr){\n if(!Array.isArray(arr)){//Base Case\n if(isNaN(arr)){\n freeVariables[arr]=0;\n }\n return;\n }\n getFreeVariables(arr[1]);\n getFreeVariables(arr[2]);\n }\n }", "function getFirstResolvingConstraint(constraintsBestToWorst){\n return new Promise(function(resolveBestConstraints){\n // build a chain of promises which either resolves or continues searching\n return constraintsBestToWorst.reduce(function(chain, next){\n return chain.then(function(searchState){\n if(searchState.found){\n // The best working constraint was found. Skip further tests.\n return searchState;\n } else {\n searchState.nextConstraint = next;\n return window.navigator.mediaDevices.getUserMedia(searchState.nextConstraint).then(function(mediaStream){\n // We found the first working constraint object, now we can stop\n // the stream and short-circuit the search.\n killStream(mediaStream);\n searchState.found = true;\n return searchState;\n }, function(){\n // didn't get a media stream. The search continues:\n return searchState;\n });\n }\n });\n }, Promise.resolve({\n // kick off the search:\n found: false,\n nextConstraint: {}\n })).then(function(searchState){\n if(searchState.found){\n resolveBestConstraints(searchState.nextConstraint);\n } else {\n resolveBestConstraints(null);\n }\n });\n });\n }", "getBestMatch(matches) {\n if (matches.length === 1) return matches[0]\n\n // Filter to rules with highest precedence.\n // NOTE: we run this BACKWARDS to put later-defined rules first\n let match\n let highPriority = []\n for (let max = -Infinity, i = 0; (match = matches[i++]); ) {\n const { precedence } = match.rule\n if (precedence > max) {\n max = precedence\n highPriority = [match]\n } else if (precedence === max) {\n highPriority.push(match)\n }\n }\n\n if (highPriority.length === 1) return highPriority[0]\n\n // Return the longest rule (???)\n let longest\n for (let i = highPriority.length; (match = highPriority[--i]); ) {\n if (!longest || match.length >= longest.length) longest = match\n }\n return longest\n }", "function tp_maxy_below(sets, j)\n{\n\treturn tp_max_bound_below(sets, j, 3);\n}", "function findOptimalOrder(possibleOrderings) {\n\tvar highestScore = 0;\n\tvar highestOrder = [];\n\tfor (var order in possibleOrderings) {\n\t\tvar orderIntersections = getOrderIntersections(possibleOrderings[order]);\n\t\tif (orderIntersections > highestScore) {\n\t\t\thighestScore = orderIntersections;\n\t\t\thighestOrder = possibleOrderings[order];\n\t\t}\n\t}\n\treturn highestOrder;\n}", "function findBestFly() {\n\tvar max = -1;\n\n\tfor (i = 0; i < popSize; i++) {\n\t\tif (fly[i].getFitness() > max) {\n\t\t\tmax = fly[i].getFitness();\n\t\t\tbestIndex = i;\n\t\t}\n\t}\n}", "findOptimalPaths() {\r\n let pathCombination = undefined;\r\n let uniqueNodes = undefined;\r\n let maxUnique = 0;\r\n let uniqueCount = 0;\r\n this.pathsList.forEach(function (firstPath) {\r\n this.pathsList.forEach(function (secondPath) {\r\n pathCombination = firstPath.concat(secondPath);\r\n uniqueNodes = Array.from(new Set(pathCombination));\r\n uniqueCount = uniqueNodes.length;\r\n if (maxUnique < uniqueCount) {\r\n maxUnique = uniqueCount;\r\n this.bestPaths.length = 0;\r\n this.bestPaths.push(firstPath);\r\n this.bestPaths.push(secondPath);\r\n }\r\n }, this);\r\n }, this);\r\n }", "mergeConcreteBounds() {\n let idmap = {};\n let lower = {};\n let upper = {};\n let other = [];\n\n for (let c of this.constraints.constraints) {\n let a = c.lower;\n let b = c.upper;\n\n if (a.isParam()) idmap[a.id] = a;\n if (b.isParam()) idmap[b.id] = b;\n\n if (a.isParam() && b.isConcrete()) {\n lower[a.id] = (a.id in lower) ? glb(lower[a.id], b) : b;\n } else if (b.isParam() && a.isConcrete()) {\n upper[b.id] = (b.id in upper) ? lub(upper[b.id], a) : a;\n } else {\n other.push(c);\n }\n }\n\n if (lower.length === 0 && upper.length === 0) {\n return null;\n }\n\n Object.keys(lower).forEach(id => other.push(new Constraint(idmap[id], lower[id])));\n Object.keys(upper).forEach(id => other.push(new Constraint(upper[id], idmap[id])));\n\n return new ConstraintSet(other);\n }", "function enforceConstraintsForAnyFreeVariables() {\n while (numCidsLeft > 0 && freeVarQueue.length > 0) {\n var vid = freeVarQueue.pop();\n var cids = cgraph.constraintsWhichOutput(vid).filter(isCidLeft);\n if (cids.length == 1) {\n var cid = cids[0];\n if (hasSelectableMethod(cid)) {\n determineConstraint(cid);\n }\n }\n }\n }", "function create_constraints_multiple(maxShips, minFighter, minOASW, minAACI, minClass, maxClass, numFleet) {\n var constraints = {};\n for (var i = 0; i < numFleet; i++) {\n constraints[i + \"maxShips\"] = {\n \"max\": maxShips[i]\n };\n constraints[i + \"OASW\"] = {\n \"min\": minOASW[i]\n };\n constraints[i + \"AP\"] = {\n \"min\": minFighter[i]\n };\n constraints[i + \"AACI\"] = {\n \"min\": minAACI[i]\n };\n\n for (var j = 1; j <= 22; j++) {\n constraints[i + \"Class #\" + j] = {\n \"min\": minClass[i][j-1],\n \"max\": maxClass[i][j-1]\n };\n }\n }\n\n // Non-duplicate ship constraints\n // One for each ship name\n for (var ship in profileShips) {\n constraints[profileShips[ship].yomi] = {\n \"max\": 1\n };\n }\n\n return constraints;\n}", "function verifyOptimum() {\n let vdualoffset;\n if (maxcardinality)\n // Vertices may have negative dual;\n // find a constant non-negative number to add to all vertex duals.\n vdualoffset = Math.max(0, -Math.min(...dualvar.values()));\n else vdualoffset = 0;\n // 0. all dual variables are non-negative\n assertTrue(Math.min(...dualvar.values()) + vdualoffset >= 0);\n assertTrue(blossomdual.size === 0 || Math.min(...blossomdual.values()) >= 0);\n // 0. all edges have non-negative slack and\n // 1. all matched edges have zero slack;\n const edges = [];\n for (let i = 0; i < weightMatrix.length; i++) {\n for (let j = i + 1; j < weightMatrix[i].length; j++) {\n const wt = weightMatrix[i][j];\n if (wt !== 0) {\n edges.push([i, j, wt]);\n }\n }\n }\n for (const [i, j, wt] of edges) {\n if (i === j) continue; // ignore self-loops\n let s = dualvar.get(i) + dualvar.get(j) - 2 * wt;\n const iblossoms = [i];\n const jblossoms = [j];\n while (blossomparent.get(iblossoms[iblossoms.length - 1]) !== null)\n iblossoms.push(blossomparent.get(iblossoms[iblossoms.length - 1]));\n while (blossomparent.get(jblossoms[jblossoms.length - 1]) !== null)\n jblossoms.push(blossomparent.get(jblossoms[jblossoms.length - 1]));\n iblossoms.reverse();\n jblossoms.reverse();\n const len = Math.min(iblossoms.length, jblossoms.length);\n for (let x = 0; x < len; x++) {\n const [bi, bj] = [iblossoms[x], jblossoms[x]];\n if (bi !== bj) break;\n s += 2 * blossomdual.get(bi);\n }\n assertTrue(s >= 0);\n if (mate.get(i) === j || mate.get(j) === i) {\n assertTrue(mate.get(i) === j && mate.get(j) === i);\n assertTrue(s === 0);\n }\n }\n // 2. all single vertices have zero dual value;\n for (const v of gnodes) assertTrue(mate.has(v) || dualvar.get(v) + vdualoffset === 0);\n // 3. all blossoms with positive dual value are full.\n for (const b of blossomdual.keys())\n if (blossomdual.get(b) > 0) {\n assertTrue(b.edges.length % 2 === 1);\n for (let x = 1; x < b.edges.length; x += 2) {\n const [i, j] = b.edges[x];\n assertTrue(mate.get(i) === j && mate.get(j) === i);\n }\n }\n // Ok.\n }", "function tp_maxx_below(sets, j)\n{\n\treturn tp_max_bound_below(sets, j, 2);\n}", "function getStrengthOfMatches(freeUsers) {\n\t//An optimisation problem to find the largest but strongest match for a given set of users\n\n\t//PLACEHOLDER\n\t//Returns the maximal group from the given snapshot\n\treturn [0, 1];\n}", "calculatedBestCandidate() {\n let highestSoFar = 0;\n return this.pool.find(candidate => {\n if (candidate.index <= this.countToSkip) {\n highestSoFar =\n highestSoFar < candidate.score ? candidate.score : highestSoFar;\n return false;\n }\n if (candidate.score > highestSoFar || candidate.index === this.n) {\n return true;\n }\n return false;\n });\n }", "function beasts(heads, tails){\n for (let o = 0; o <= tails; o++) {\n for (let h = 0; h <= tails; h++) {\n if (o + h === tails && o * 2 + h * 5 === heads) return [o, h];\n }\n }\n return 'No solutions';\n}", "violatingConstraints() {\n\t\tconst cs = [];\n\t\tfor (const c of this._cons) {\n\t\t\tif (c.isSatisfied() === 0) cs.push(c);\n\t\t}\n\t\treturn cs;\n\t}", "generateTopSuggestions(inputStrs, wordBanks) {\n var suggestions = [];\n for (var i = 0; i < inputStrs.length; i++) {\n if (wordBanks[i][inputStrs[i]] != null) {\n var keys = Object.keys(wordBanks[i][inputStrs[i]]);\n var values = Object.values(wordBanks[i][inputStrs[i]]);\n while (suggestions.length < 10 && keys.length > 0) {\n if (values.length > 1) {\n var max = values.reduce(function(a, b) {\n return Math.max(a, b);\n }); \n }\n else {\n var max = values[0];\n }\n\n var predIndex = values.indexOf(max);\n var prediction = keys[predIndex];\n if (!suggestions.includes(prediction) && prediction.length > 1) {\n suggestions.push(prediction);\n }\n keys.splice(predIndex, 1);\n values.splice(predIndex, 1);\n }\n }\n }\n return suggestions;\n }", "getBestGuess(possible) {\n // If there are < 3 possibilities, just choose the first one.\n if (possible.length < 3) {\n return possible[0];\n }\n // Iterate over all guesses.\n let marks, maxRemaining, miniMaxGuess;\n let miniMax = Infinity;\n let bestGuessIsASolution = false;\n this.codes.forEach((guess) => {\n // Get the sizes of the remaining possible secrets sets for each mark.\n marks = this.countPossibleMarks(guess, possible);\n maxRemaining = objectMax(marks) ?? Infinity;\n if (maxRemaining < miniMax) {\n // The 'error' on the next line performs marginally better than Knuth's\n // strategy for the (4, 6) game at least.\n bestGuessIsASolution = false;\n miniMax = maxRemaining;\n miniMaxGuess = guess;\n } else if (\n maxRemaining === miniMax &&\n !bestGuessIsASolution &&\n (marks[this.solvedMarkKey] ?? false)\n ) {\n bestGuessIsASolution = true;\n miniMaxGuess = guess;\n }\n });\n return miniMaxGuess;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Packs the IOTEE Messages format into JSON string
function packMessages(msgObj){ return JSON.stringify(msgObj); }
[ "function packMessage(msgObj){\n\treturn JSON.stringify(msgObj);\n}", "function jsonFormatter(message) {\n return JSON.stringify(message);\n}", "toJSON() {\n\t\treturn {\n\t\t\tmessageType: this.messageType,\n\t\t\tpayload: this.payload\n\t\t};\n\t}", "toJSON() {\n\t\treturn {\n\t\t\tmessageType: this.messageType,\n\t\t\tpayload: this.payload.toJSON()\n\t\t};\n\t}", "function printer_json (msg) {\n return {\n type: printer_api_key,\n message: msg,\n }\n}", "_stringifyMessageObject(object) {\n return JSON.stringify(object) + common_1.constants.MESSAGE_TERMINATION_CHARACTER;\n }", "function format_client_msg(msg_type, data) {\n data.type = msg_type;\n return JSON.stringify(data);\n}", "function packIntoJson(userId, ingredientId, ingredientName, vendorName, _package, price, ingredientLots){\n\tvar orderJson = new Object();\n\torderJson.userId = userId;\n\torderJson.ingredientName = ingredientName;\n\torderJson.ingredientId = ingredientId;\n\torderJson.vendorName = vendorName;\n\torderJson.packageNum = _package;\n\torderJson.ingredientLots = ingredientLots;\n\torderJson.price = price;\n//\torderJson.isPending = isPending;\n\tconsole.log(\"JSON\");\n\tconsole.log(orderJson);\n\treturn orderJson;\n}", "encodeAsString(obj) {\n // first is type\n let str = \"\" + obj.type;\n // attachments if we have them\n if (obj.type === PacketType.BINARY_EVENT ||\n obj.type === PacketType.BINARY_ACK) {\n str += obj.attachments + \"-\";\n }\n // if we have a namespace other than `/`\n // we append it followed by a comma `,`\n if (obj.nsp && \"/\" !== obj.nsp) {\n str += obj.nsp + \",\";\n }\n // immediately followed by the id\n if (null != obj.id) {\n str += obj.id;\n }\n // json data\n if (null != obj.data) {\n str += JSON.stringify(obj.data);\n }\n debug(\"encoded %j as %s\", obj, str);\n return str;\n }", "_buildMessage() {\n let result = this._response;\n\n let message = {\n meta: this.meta$ || {},\n trace: this.trace$ || {},\n request: this.request$,\n result: result.error ? null : result.payload,\n error: result.error ? Errio.toObject(result.error) : null\n };\n\n let endTime = Util.nowHrTime();\n message.request.duration = endTime - message.request.timestamp;\n message.trace.duration = endTime - message.request.timestamp;\n\n let m = this._encoder.encode.call(this, message);\n\n // attach encoding issues\n if (m.error) {\n message.error = Errio.toObject(m.error);\n message.result = null;\n }\n\n // final response\n this._message = m.value;\n }", "encodeAsString(obj) {\r\n // first is type\r\n let str = \"\" + obj.type;\r\n // attachments if we have them\r\n if (obj.type === PacketType.BINARY_EVENT ||\r\n obj.type === PacketType.BINARY_ACK) {\r\n str += obj.attachments + \"-\";\r\n }\r\n // if we have a namespace other than `/`\r\n // we append it followed by a comma `,`\r\n if (obj.nsp && \"/\" !== obj.nsp) {\r\n str += obj.nsp + \",\";\r\n }\r\n // immediately followed by the id\r\n if (null != obj.id) {\r\n str += obj.id;\r\n }\r\n // json data\r\n if (null != obj.data) {\r\n str += JSON.stringify(obj.data);\r\n }\r\n debug(\"encoded %j as %s\", obj, str);\r\n return str;\r\n }", "encodeAsString(obj) {\n // first is type\n let str = \"\" + obj.type;\n // attachments if we have them\n if (obj.type === PacketType.BINARY_EVENT ||\n obj.type === PacketType.BINARY_ACK) {\n str += obj.attachments + \"-\";\n }\n // if we have a namespace other than `/`\n // we append it followed by a comma `,`\n if (obj.nsp && \"/\" !== obj.nsp) {\n str += obj.nsp + \",\";\n }\n // immediately followed by the id\n if (null != obj.id) {\n str += obj.id;\n }\n // json data\n if (null != obj.data) {\n str += JSON.stringify(obj.data);\n }\n debug(\"encoded %j as %s\", obj, str);\n return str;\n }", "toJSON() {\n return {\n message: this.nodeMailerMessage,\n views: this.contentViews,\n };\n }", "function create_update_payload(){\r\n var mapping = {\r\n gl: \"Global\",\r\n jp: \"Japan\",\r\n eu: \"Europe\"\r\n }\r\n\r\n var types = [\"Units\", \"Items\", \"ES\"];\r\n\r\n var fields = [];\r\n for(let m in mapping){\r\n for(let t = 0; t < types.length; ++t){\r\n fields.push(get_server_statistics(stats[m],mapping[m],types[t]));\r\n }\r\n }\r\n \r\n var payload = {\r\n username: \"Bluubot DB Update\",\r\n text: \"This message is sent whenever the database server for Bluubot is updated\",\r\n attachments: [\r\n {\r\n color: '#3498DB',\r\n fields: [\r\n ]\r\n }\r\n ]\r\n };\r\n\r\n for(let f = 0; f < fields.length; ++f){\r\n for(let m = 0; m < fields[f].length; ++m){\r\n payload.attachments[0].fields.push(fields[f][m]);\r\n }\r\n }\r\n\r\n console.log(JSON.stringify(payload,null,2));\r\n return payload;\r\n }", "Encode(format) {\n switch (format) {\n case 'json':\n return JSON.stringify(this.message.Records);\n default:\n throw new Error(`Unsupported format: ${format}`);\n }\n }", "_buildMessage () {\n let result = this._response;\n\n let message = {\n meta: this.meta$ || {},\n trace: this.trace$ || {},\n request: this.request$,\n result: result.error? null : result.payload,\n error: result.error? Errio.toObject(result.error) : null\n };\n\n let m = this._encoderPipeline.run(message, this);\n\n // attach encoding issues\n if (m.error) {\n let internalError = new Errors.ParseError(Constants.PAYLOAD_PARSING_ERROR).causedBy(m.error);\n message.error = Errio.toObject(internalError);\n message.result = null;\n\n // Retry to encode with issue perhaps the reason was data related\n m = this._encoderPipeline.run(message, this);\n this.log.error(internalError);\n this.emit('serverResponseError', m.error);\n }\n\n // final response\n this._message = m.value;\n }", "toJSON() {\n\t\treturn {\n\t\t\tmessages: this.messages\n\t\t};\n\t}", "function serialize(event) {\n var payload = [event.header, event.name, event.args];\n var message = [];\n\n if(event.envelope) {\n message = message.concat(event.envelope);\n }\n\n message.push(new Buffer(0));\n message.push(msgpack.pack(payload));\n return message;\n}", "function createJSON(mqtt_topic, mqtt_payload){\n\t var mqttmessage = {\n\t\t topic : mqtt_topic,\n\t\t payload : mqtt_payload\n\t };\n\t return mqttmessage;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Display open dialog to allow users to load a .config file
function loadConfiguration() { dialog.showOpenDialog({ title: "Open configuration", nameFieldLabel: "Configuration name", defaultPath: "AudioMoth.config", multiSelections: false, filters: [{ name: "config", extensions: ["config"] }] }, function (filename) { if (filename) { fs.readFile(filename[0], useLoadedConfiguration); } }); }
[ "function openConfig() {\n vm.isConfiguring = true;\n vm.dialogActive = true;\n }", "showConfig() {\n atom.workspace.open('atom://config/packages/where-to-lunch');\n }", "function viewConfig() {\n ngDialog.open({\n template: '<ncl-function-config-dialog data-close-dialog=\"closeThisDialog()\" ' +\n ' data-function=\"ngDialogData.function\">' +\n '</ncl-function-config-dialog>',\n plain: true,\n data: {\n function: ctrl.function\n },\n className: 'ngdialog-theme-iguazio view-yaml-dialog-wrapper'\n });\n }", "function viewConfig() {\n ngDialog.open({\n template: '<ncl-function-config-dialog data-close-dialog=\"closeThisDialog()\" ' + ' data-function=\"ngDialogData.function\">' + '</ncl-function-config-dialog>',\n plain: true,\n data: {\n function: ctrl.function\n },\n className: 'ngdialog-theme-iguazio view-yaml-dialog-wrapper'\n });\n }", "function readConfigThenOpenMainWindow() {\n setCheckboxValues()\n .then(setupThenOpenMainWindow)\n .catch(setupThenOpenMainWindow)\n}", "function loadConfigFile()\n{\n\tvar filename = $(\"#txtConfigFilename\").val();\n\n\tif(filename)\n\t{\n\t\t$.getJSON(filename, function(data)\n\t\t\t{\n\t\t\t\t//\tOn success, data will contain the configuration settings.\n\t\t\t\tif(data)\n\t\t\t\t{\n\t\t\t\t\tif(data.HVPVersion > 0.0)\n\t\t\t\t\t{\n\t\t\t\t\t\t//\tAny version of file.\n\t\t\t\t\t\tconsole.log(`Configuration file loaded: ${filename}`);\n\t\t\t\t\t\tselectedButton = null;\n\t\t\t\t\t\tselectedTimeline = null;\n\t\t\t\t\t\tconfigData = data;\n\t\t\t\t\t\tif(configData.Buttons)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tselectedButton = configData.Buttons[0];\n\t\t\t\t\t\t}\n\t\t\t\t\t\tif(configData.Timelines)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tselectedTimeline = configData.Timelines[0];\n\t\t\t\t\t\t}\n\t\t\t\t\t\tapplyConfig();\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t);\n\t}\n}", "function showConfigUser() {\n\n\tdocument.getElementById('sel_interface_font_size').value = v_font_size;\n\tdocument.getElementById('sel_editor_theme').value = v_theme;\n\n\tdocument.getElementById('txt_confirm_new_pwd').value = '';\n\tdocument.getElementById('txt_new_pwd').value = '';\n\n\tdocument.getElementById('sel_csv_encoding').value = v_csv_encoding;\n\tdocument.getElementById('txt_csv_delimiter').value = v_csv_delimiter;\n\n\t$('#modal_config').modal({ backdrop: 'static', keyboard: false });\n\n}", "function open_edit_config(click_event, logger_name) {\n if (!click_event) click_event = window.event;\n var window_args = [\n 'titlebar=no',\n 'location=no',\n 'height=300',\n 'width=520',\n 'top=' + click_event.clientY,\n 'left=' + (click_event.clientX + 520),\n 'scrollbars=yes',\n 'status=no'\n ];\n window.open('../edit_config/' + logger_name, '_blank', window_args.join());\n}", "function openRunConfigurationDialog(defaultRun, mode) {\n require(['plugins/webida.ide.project-management.run/view-controller'], function (viewController) {\n viewController.openWindow(defaultRun, mode);\n });\n }", "function configure() {\n\n // Determine the config popup's url\n const url = `${window.location.href}#${config.configPopup.url}`;\n \n // Initialize the extension's config popup \n tableau.extensions.ui.displayDialogAsync(url, '', config.configPopup.size).then((closePayload) => {\n // After the popup closes, load the config settings\n loadSettings();\n }).catch((error) => {\n // One expected error condition is when the popup is closed by the user (meaning the user\n // clicks the 'X' in the top right of the dialog). This can be checked for like so:\n switch (error.errorCode) {\n case tableau.ErrorCodes.DialogClosedByUser:\n //util.log('Config popup was closed by user');\n break;\n default:\n //util.log(error.message);\n }\n });\n }", "function dialog_open() {\n\t\tsettings_dialog.open();\n\t}", "function openPreferences() {\n\t// TODO: Load and populate user preferences from file\n\tlet preferencesWindow = new BrowserWindow({\n\t\twidth: 300, height: 400,\n\t\tresizable: false\n\t});\n\n\tpreferencesWindow.loadFile(\"preferences.html\");\n\n\tpreferencesWindow.on(\"closed\", () => {\n\t\t// Update renderer if needed\n\t});\n\n\t/*preferencesWindow.once(\"ready-to-show\", () => {\n preferencesWindow.show();\n });*/\n}", "function configureAndCreateWindow() {\n const config_file = app.getPath('userData') + path.sep + 'config.json';\n console.log(config_file);\n if (fs.existsSync(config_file)) {\n fs.readFile(config_file, (err, data) => {\n if (err) return createWindow();\n try { config = JSON.parse(data); }\n catch (e) { console.log(e); }\n createWindow();\n });\n } else {\n createWindow();\n }\n}", "handleConfigDialog() {\n\t\tconst cfg = localStorage.getItem(\"GOJIRA_CONFIG\");\n\t\tlet cfgAsJson;\n\t\tif(cfg) {\n\t\t\tcfgAsJson = JSON.parse(cfg);\n\t\t\t\n\t\t\tq(\"#jiraBaseUrl\").value = cfgAsJson.JIRA_BASE_URL || \"\";\n\t\t\tq(\"#projectList\").value = cfgAsJson.PROJECT_PREFIXES || \"\";\t\t\t\n\t\t}\n\t}", "openFileBrowser() {\n dialog.showOpenDialog(\n { properties: [\"openDirectory\"] },\n this.configureProject\n );\n }", "function showConfig() {\r\n GM_config.open();\r\n}", "function ac_showConfigPanel() {\n\tac_switchTool(\"cfg\");\n}", "function editModalWithConfigFile() {\n var configFileRuleList;\n chrome.storage.local.get(function (items) {\n var configFileContent = items.configFile.fileContent;\n var parser = new DOMParser();\n var xmlDom = parser.parseFromString(configFileContent, \"text/xml\");\n if (xmlDom) {\n configFileRuleList = getRuleFromXml(xmlDom);\n configFileRuleList.ruleArray.map(function (rule) {\n if (isEqual(rule.ruleType, RULE_TYPE.FORMNAME.name)) {\n addRuleParameterCombo(\"ruleFormNameContent\", rule, false);\n formNameRuleList.push(rule)\n editModal(rule);\n } else if (isEqual(rule.ruleType, RULE_TYPE.VERSION.name)) {\n addRuleParameterCombo(\"ruleVersionContent\", rule, false);\n versionRuleList.push(rule)\n editModal(rule);\n } else {\n addRuleParameterCombo(\"ruleContent\", rule, true);\n ruleList.push(rule)\n editModal(rule);\n }\n });\n }\n $('#loader').attr('style', 'display: none');\n $('#Settings').attr('style', 'display: block');\n });\n}", "function openConfigFile () {\n\tconst workspaceFolder = getWorkspaceFolder();\n\tif (workspaceFolder) {\n\t\tconst workspacePath = workspaceFolder.uri;\n\t\tPromise.all(configFileNames.map((configFileName) => {\n\t\t\tconst fileUri = vscode.Uri.joinPath(workspacePath, configFileName);\n\t\t\treturn vscode.workspace.fs.stat(fileUri).then(\n\t\t\t\t() => fileUri,\n\t\t\t\t() => null\n\t\t\t);\n\t\t})).then((fileUris) => {\n\t\t\tconst validFilePaths = fileUris.filter((filePath) => filePath !== null);\n\t\t\tif (validFilePaths.length > 0) {\n\t\t\t\t// File exists, open it\n\t\t\t\tvscode.window.showTextDocument(validFilePaths[0]);\n\t\t\t} else {\n\t\t\t\t// File does not exist, create one\n\t\t\t\tconst fileUri = vscode.Uri.joinPath(workspacePath, markdownlintJson);\n\t\t\t\tconst untitledFileUri = fileUri.with({\"scheme\": markdownSchemeUntitled});\n\t\t\t\tvscode.window.showTextDocument(untitledFileUri).then(\n\t\t\t\t\t(editor) => {\n\t\t\t\t\t\teditor.edit((editBuilder) => {\n\t\t\t\t\t\t\teditBuilder.insert(\n\t\t\t\t\t\t\t\tnew vscode.Position(0, 0),\n\t\t\t\t\t\t\t\tJSON.stringify(defaultConfig, null, 2)\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t});\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t}\n\t\t});\n\t}\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
nodes are the list of indices of pixels that are white in the image (each index is between 0 and wh)
function getConnected(image) { let numbers = []; let nodes = image.pixels.map((v, i) => v == 0 ? i : undefined).filter(a => a != undefined) // not sure if this is efficient let visited = new Set(); console.log('this many nodes ', nodes.length) for(node of nodes) { console.log('on node ', node) if(!visited.has(node)) { console.log(visited.size, 'found a non visited node') numbers.push(dfsUtil(image, node, visited)) } } return numbers }
[ "function drawBulkNodes() {\n\timgData.data.fill(0);\n\tfor(var n=0; n<nodes.length; n++) {\n\t\t// Get first pixel's position (don't worry about data structure)\n\t\tvar firstPixel = nodes[n].y * c.width + nodes[n].x;//nodes[n].x * nodes[n].y * 4;\n\t\tvar lastInRow = nodes[n].x % c.width === 0;\n\t\tvar lastInCol = nodes[n].y % c.height === 0;\n\t\t// Fill top left pixel\n\t\tfillPixel(firstPixel);\n\t\t// Top right pixel if not off edge\n\t\tif(!lastInRow) {\n\t\t\tfillPixel(firstPixel + 1);\n\t\t}\n\t\t// Bottom left pixel if not off bottom\n\t\tif(!lastInCol) {\n\t\t\tfillPixel(firstPixel + c.width);\n\t\t\t// Bottom right pixel if not off edge\n\t\t\tif(!lastInRow) {\n\t\t\t\tfillPixel(firstPixel + 1 + c.width);\n\t\t\t}\n\t\t}\n\t}\n\tctx.putImageData(imgData, 0, 0);\n}", "function createWhitePixelNode(rowIndex, columnIndex) {\n const distanceCost = 0;\n return [rowIndex, columnIndex, distanceCost];\n}", "function drawNodes() {\n var activeMarked = false;\n for (i in platformData.nodes) {\n showNode(i);\n }\n}", "function _highlightNeighbors(/*nodes*/)\r\n{\r\n\t/*\r\n\tif (nodes == null)\r\n\t{\r\n\t\tnodes = _vis.selected(\"nodes\");\r\n\t}\r\n\t*/\r\n\t\r\n\tvar nodes = _vis.selected(\"nodes\");\r\n\t\r\n\tif (nodes != null && nodes.length > 0)\r\n\t{\r\n\t\tvar fn = _vis.firstNeighbors(nodes, true);\r\n\t\tvar neighbors = fn.neighbors;\r\n\t\tvar edges = fn.edges;\r\n\t\tedges = edges.concat(fn.mergedEdges);\r\n\t\tneighbors = neighbors.concat(fn.rootNodes);\r\n var bypass = _vis.visualStyleBypass() || {};\r\n\t\t\r\n\t\tif( ! bypass.nodes )\r\n\t\t{\r\n bypass.nodes = {};\r\n }\r\n if( ! bypass.edges )\r\n {\r\n bypass.edges = {};\r\n }\r\n\r\n\t\tvar allNodes = _vis.nodes();\r\n\t\t\r\n\t\t$.each(allNodes, function(i, n) {\r\n\t\t if( !bypass.nodes[n.data.id] ){\r\n\t\t bypass.nodes[n.data.id] = {};\r\n\t\t }\r\n\t\t\tbypass.nodes[n.data.id].opacity = 0.25;\r\n\t });\r\n\t\t\r\n\t\t$.each(neighbors, function(i, n) {\r\n\t\t if( !bypass.nodes[n.data.id] ){\r\n\t\t bypass.nodes[n.data.id] = {};\r\n\t\t }\r\n\t\t\tbypass.nodes[n.data.id].opacity = 1;\r\n\t\t});\r\n\r\n\t\tvar opacity;\r\n\t\tvar allEdges = _vis.edges();\r\n\t\tallEdges = allEdges.concat(_vis.mergedEdges());\r\n\t\t\r\n\t\t$.each(allEdges, function(i, e) {\r\n\t\t if( !bypass.edges[e.data.id] ){\r\n\t\t bypass.edges[e.data.id] = {};\r\n\t\t }\r\n\t\t /*\r\n\t\t if (e.data.networkGroupCode === \"coexp\" || e.data.networkGroupCode === \"coloc\") {\r\n\t\t \topacity = AUX_UNHIGHLIGHT_EDGE_OPACITY;\r\n\t\t } else {\r\n\t\t \topacity = DEF_UNHIGHLIGHT_EDGE_OPACITY;\r\n\t\t }\r\n\t\t */\r\n\t\t \r\n\t\t opacity = 0.15;\r\n\t\t \r\n\t\t\tbypass.edges[e.data.id].opacity = opacity;\r\n\t\t\tbypass.edges[e.data.id].mergeOpacity = opacity;\r\n\t });\r\n\t\t\r\n\t\t$.each(edges, function(i, e) {\r\n\t\t if( !bypass.edges[e.data.id] ){\r\n\t\t bypass.edges[e.data.id] = {};\r\n\t\t }\r\n\t\t /*\r\n\t\t if (e.data.networkGroupCode === \"coexp\" || e.data.networkGroupCode === \"coloc\") {\r\n\t\t \topacity = AUX_HIGHLIGHT_EDGE_OPACITY;\r\n\t\t } else {\r\n\t\t \topacity = DEF_HIGHLIGHT_EDGE_OPACITY;\r\n\t\t }\r\n\t\t */\r\n\t\t \r\n\t\t opacity = 0.85;\r\n\t\t \r\n\t\t\tbypass.edges[e.data.id].opacity = opacity;\r\n\t\t\tbypass.edges[e.data.id].mergeOpacity = opacity;\r\n\t\t});\r\n\r\n\t\t_vis.visualStyleBypass(bypass);\r\n\t\t//CytowebUtil.neighborsHighlighted = true;\r\n\t\t\r\n\t\t//$(\"#menu_neighbors_clear\").removeClass(\"ui-state-disabled\");\r\n\t}\r\n}", "posOfNeighbors(hex, except) {\n return hex.neighborhood().filter((pos) => {\n const tile = this.at(pos)\n return tile && tile.length > 0 && !(except && pos.eq(except))\n })\n }", "function fillNeighborhoodNodes(nodeIndex, color){// Fill neighborhood \n\t\tlet v = d3.select('#node' + nodeIndex)\n\t\tlet neighborhood = v.attr('neighborhood').split(',')\n\t\tif(neighborhood.length)\n\t\t\tneighborhood.map(function(neighborLabel){\n\t\t\t\tlet node = d3.select('#' + neighborLabel)\n\t\t\t\tif(!node.attr('clique-part'))\n\t\t\t\t\tnode.attr('fill', color)\n\t\t\t\tshowNodeLabelText(neighborLabel)\n\t\t\t})\n\t}", "getNeighbors(tile) {\n var array = [];\n for(var i = 0; i < tile.neighbors.length; i++) {\n const current = tile.neighbors[i];\n if(current == null) continue;\n if(this.seen[current.index] == 0) \n array.push(i);\n }\n return array;\n }", "function getAllNodes(filter = null){\n\t var data = [];\n\t if(filter != null){\n\t\t nodes.forEach(function(nod) {\n\t\t\t if(filter.indexOf(nod.shape) != -1)\n\t\t\t\t data.push(nod);\t\t\t\t \n\t\t });\n\t }else{\n\t\t nodes.forEach(function(nod) {\n\t\t\t data.push(nod);\n\t\t });\n\t }\n\t return data;\n }", "function getCurrentNodes() {\n var num = myData.nodes.length\n var n = []\n var i\n var dx = mouse.dispX * echelle.scale\n var dy = -mouse.dispY * echelle.scale\n\n var stretchFactor = mouse.stretchFactor\n var angle = 180 / Math.PI * mouse.deltAngle\n var num = myData.nodes.length\n for (i = 0; i < num; i++) {\n n[i] = []\n n[i].num = myData.nodes[i].num\n n[i].x = myData.nodes[i].x\n n[i].y = myData.nodes[i].y\n n[i].selected = myData.nodes[i].selected\n n[i].hover = myData.nodes[i].hover\n\n if (!mod.passage && (mod.mode == 'node') && ((n[i].selected) || (n[i].hover))) {\n n[i].x += dx\n n[i].y += dy\n n[i].selected = false // jusqu'à ce qu'on ait fait passer toutes les fonctions à utiliser une copie...\n n[i].hover = false // jusqu'à ce qu'on ait fait passer toutes les fonctions à utiliser une copie...\n }\n\n // console.log ( n[i].num + \" : \" + n[i].x + \" , \" + n[i].y);¨\n }\n return n\n}", "function blackWhite(newData) {\n let imageOneComponent = [];\n const threshold = 128;\n let counter = 0;\n\n for (let i = 0; i < newData.length; i += 4) {\n if (newData[i] > threshold) {\n imageOneComponent[counter] = 1;\n } else {\n imageOneComponent[counter] = 0;\n }\n counter++;\n }\n return imageOneComponent;\n}", "function getAllNodesNeighborhood(){\n\t\tglobalData.nodes.map(function(node){\n\t\t\tnode.neighbors = getNeighborhoodLabels(node.index)\n\t\t\tneighborhoodLengths.push(node.neighbors.length)\n\t\t\td3.select('#' + node.label)\n\t\t\t\t.attr('neighborhood', node.neighbors.toString())\n\t\t})\n\t}", "function drawNodes(nodes) {\n // used to assign nodes color by ImmPer\n\n // console.log(nodes)\n\n d3.select(\"#plot\").selectAll(\".node\")\n .data(nodes)\n .enter()\n .append(\"circle\")\n .attr(\"class\", \"node\")\n .attr(\"id\", function (d, i) { if (d.TAZ_id == S_TAZ_id) { S_index = i; return d.TAZ_id; } })\n .remove();\n\n //console.log(S_index);\n\n }", "function visibleNodes() {\n var temp = [];\n for (var i = 0; i < root.length ; i++) {\n if(root[i]){\n temp.push(root[i]);\n }\n }\n return temp;\n}", "initializeNodes() {\n\t\tvar indexX;\n\t\tvar indexY;\n\n\t\tfor (var i in this.nodes) {\n\t\t\tvar index = this.nodes[i][\"index\"];\n\n\t\t\tindexX = (index + 1) % this.mazeW;\n\t\t\tindexY = floor(index / this.mazeW);\n\t\t\tvar checkingNode = this.nodes[indexX + indexY * this.mazeW];\n\t\t\tif (checkingNode != undefined) {\n\t\t\t\tthis.nodes[index].neighbors.push(checkingNode);\n\t\t\t}\n\t\t\tindexX = (index - 1) % this.mazeW;\n\t\t\tindexY = floor(index / this.mazeW);\n\t\t\tvar checkingNode = this.nodes[indexX + indexY * this.mazeW];\n\t\t\tif (checkingNode != undefined) {\n\t\t\t\tthis.nodes[index].neighbors.push(checkingNode);\n\t\t\t}\n\t\t\tindexX = index % this.mazeW;\n\t\t\tindexY = (floor(index / this.mazeW) + 1) % this.mazeH;\n\t\t\tvar checkingNode = this.nodes[indexX + indexY * this.mazeW];\n\t\t\tif (checkingNode != undefined) {\n\t\t\t\tthis.nodes[index].neighbors.push(checkingNode);\n\t\t\t}\n\t\t\tindexX = index % this.mazeW;\n\t\t\tindexY = (this.mazeH + floor(index / this.mazeW) - 1) % this.mazeH;\n\t\t\tvar checkingNode = this.nodes[indexX + indexY * this.mazeW];\n\t\t\tif (checkingNode != undefined) {\n\t\t\t\tthis.nodes[index].neighbors.push(checkingNode);\n\t\t\t}\n\n\t\t\tvar posX = index % this.mazeW;\n\t\t\tvar posY = floor(index / this.mazeW);\n\t\t\tvar endPosX = this.endNode[\"index\"] % this.mazeW;\n\t\t\tvar endPosY = floor(this.endNode[\"index\"] / this.mazeW);\n\n\t\t\tthis.nodes[i][\"distance\"] = dist(posX, posY, endPosX, endPosY);\n\n\n\t\t}\n\t}", "function showNeighbors(node){\n var neighborIDs = new Array();\n neighborIDs.push(node.data.id);\n for(var x = 0; x < globals.edges.length; x++){\n var theEdge = globals.edges[x];\n if(theEdge.data === undefined || theEdge.data === null) { continue; }\n if(theEdge.data.source === undefined || theEdge.data.source === null ) { continue; }\n if((theEdge.data.target.toLowerCase().indexOf(node.data.id.toLowerCase()) >= 0) && ($.inArray(theEdge.data.source,neighborIDs) == -1)){\n neighborIDs.push(theEdge.data.source);\n neighborIDs.push(theEdge.data.id);\n }\n if((theEdge.data.source.toLowerCase().indexOf(node.data.id.toLowerCase()) >= 0) && ($.inArray(theEdge.data.target,neighborIDs) == -1)){\n neighborIDs.push(theEdge.data.target);\n neighborIDs.push(theEdge.data.id);\n }\n }\n globals.vis.deselect(\"nodes\");\n globals.vis.select(null,neighborIDs);\n globals.vis.filter(null, neighborIDs, true);\n globals.vis.panToCenter();\n globals.vis.zoomToFit();\n globals.vis.removeFilter();\n}", "addHexesToNodes() {\n for(var coord in this.hexes) {\n for(var i = 0; i < 6; i++) {\n var nodeId = this.hexes[coord].getNodeId(i);\n var node = this.nodes[nodeId];\n node.connectedHexes.push(coord);\n }\n }\n }", "function highlight_neighbor_nodes(center_node_id, neighbors) {\n var extant = {\n x:[],\n y:[]\n };\n\n var width = window.innerWidth,\n height = window.innerHeight;\n\n d3.selectAll('.node').classed('active', function (d) {\n if (d.id !== center_node_id && !_.contains(neighbors, d.id)) {\n d.grayed_out == true;\n return false;\n }\n extant.x.push(d.x);\n extant.y.push(d.y);\n return true;\n });\n\n var dx = _.max(extant.x) - _.min(extant.x),\n dy = _.max(extant.y) - _.min(extant.y),\n x = (_.max(extant.x) + _.min(extant.x)) / 2,\n y = (_.max(extant.y) + _.min(extant.y)) / 2,\n scale = .76 / Math.max(dx / width, dy / height), // .76 is nice @todo include labels in extant?\n translate = [width / 2 - scale * x, height / 2 - scale * y];\n\n svg.transition()\n .duration(750)\n .call(zoom.translate(translate).scale(scale).event);\n\n d3.selectAll('text').classed('active', function (d) {\n if (d.hasOwnProperty('source') || d.hasOwnProperty('target')) {\n if (d.source.id == center_node_id || d.target.id == center_node_id) {\n return true;\n } else {\n return false;\n }\n } else {\n if (d.id !== center_node_id && !_.contains(neighbors, d.id)) {\n d.grayed_out == true;\n return false;\n }\n return true;\n }\n });\n\n d3.selectAll('.link').classed('active', function (d) {\n if (d.hasOwnProperty('source') || d.hasOwnProperty('target')) {\n if (d.source.id == center_node_id || d.target.id == center_node_id) {\n d.grayed_out = false;\n return true;\n } else {\n d.grayed_out = true;\n return false;\n }\n }\n });\n}", "activeNodes() {\n return _.filter(this.graph.nodes, this.nodeActiveFn);\n }", "addPiecesToNodesFromBoard()\n {\n for(let i = 0; i < this.board.length; i++)\n for(let j = 0; j < this.board[i].length; j++)\n if(this.board[i][j] == 'w')\n this.createPiece(\"white\", [i + 1, 0, j + 1], [i + 1, 0, j + 1], null);\n else\n if(this.board[i][j] == 'b')\n this.createPiece(\"black\", [i + 1, 0, j + 1], [i + 1, 0, j + 1], null);\n \n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Generates the next 'step' of the world when given a world nextStep([[0,1,0], [0,1,0], [0,1,0]]) > [[0,0,0], [1,1,1], [0,0,0]]
function nextStep(world) { var elem = function(v, arr) { return (arr.some(val => val == v)) } return world.map((v, y) => v.map(function(val, x) { var lRound = lifeAround(y, x, world) // DEBUG: console.log(y.toString(), "," , x.toString(), ": " + lRound) return elem(lRound, birthN) ? 1 : (elem(lRound, liveN) ? val : 0)})) }
[ "step(worldState) {\n return this.behaviorTree.step(worldState);\n }", "randomWalk(loc, mag, bs){ \n // NW N NE\n // W * E\n // SW S SE \n let possibleSteps = [ createVector(-1, 1), createVector(0, 1), createVector(1, 1), createVector(-1, 0), createVector(1, 0), createVector(-1, -1), createVector(0, -1), createVector(1, -1) ];\n let proposedStep; \n let stepIsValid = false; \n // 29b. Intermediary Random Walk Constraint\n while (!stepIsValid) { \n proposedStep = p5.Vector.mult( random(possibleSteps), mag ).add( loc ); \n if( \n bs[0].x < proposedStep.x && proposedStep.x < bs[1].x && \n bs[0].y < proposedStep.y && proposedStep.y < bs[1].y \n ) stepIsValid = true;\n }\n return proposedStep;\n }", "function stepOnce() {\n console.log(\"stepOnce\");\n var isAlive;\n var aliveCount = 0;\n var i;\n\n /* Part 1: Update all the nextAlive values based on current neighbor states. */\n for (i = 0; i < gaWorld.length; i++){\n var neighbors = gaWorld[i].neighbors;\n var neighborsAlive = 0;\n\n /* Part 1a: For this cell, count how many neighbors are alive. */\n for (var n = 0; n < neighbors.length; n++) {\n if (gaWorld[neighbors[n]].curAlive) {\n neighborsAlive++;\n }\n }\n\n /* Part 1b: For the cell, based on curAlive and neighborsAlive, set nextAlive. */\n if (gaWorld[i].curAlive) {\n isAlive = (neighborsAlive == 2 || neighborsAlive == 3);\n }\n else {\n isAlive = (neighborsAlive == 3);\n }\n gaWorld[i].nextAlive = isAlive;\n if (isAlive) {\n aliveCount++;\n }\n }\n\n /* Part 2: Move all the nextAlive values back to the curAlive values. */\n for (i = 0; i < gaWorld.length; i++) {\n gaWorld[i].curAlive = gaWorld[i].nextAlive;\n }\n\n /* Part 3: Push the new data out to the world-table on the screen. */\n updateWorldTable();\n\n /* Part 4: Update the gStepCount and the graph. */\n gStepCount++;\n updateGraph(gStepCount, aliveCount);\n\n /* Part 5: Check if we are now empty, and stop looping if so.\n TBD: Stop if the count doesn't change for n steps, to prevent blinkers. */\n if (gRunning && gStopOnEmptyWorld && (aliveCount == 0)) {\n console.log(\"Stopping based on empty world.\");\n stopRunning();\n }\n}", "function calculateNextStep() {\n // Perform logic for step change\n //alert('Implement this please');\n\n // currentState = currentState.replaceAt(1, 2, \"4\");\n // renderGameState(currentState);\n if (finished != 0){\n finished = 0;\n currentState = startState;\n initGhostsAndPlayer();\n renderGameState(currentState);\n return;\n }\n turn += 1;\n print('Turn ' + turn);\n\n if(movePlayer()){\n for(var i = 0; i<ghosts.length; i++){\n moveGhost(i); \n }\n renderGameState(currentState);\n }\n\n }", "function step() \n{\n var fps = 60;\n var timeStep = 1.0/(fps * 0.8);\n \n //move the box2d world ahead\n world.Step(timeStep , 8 , 3);\n world.ClearForces();\n \n //redraw the world\n draw_world(world , ctx);\n \n //call this function again after 1/60 seconds or 16.7ms\n setTimeout(step , 1000 / fps);\n}", "randomStep() {\n let dirX = (Math.random() < 0.5) ? -1 : 1;\n let dirY = (Math.random() < 0.5) ? -1 : 1;\n\n this.step(dirX, dirY);\n }", "function get_next_step(currentLocation,destination,map,previousPathsTaken,radius){\n \n //r.log(currentLocation);\n //r.log(destination);\n if(get_distance(currentLocation,destination) < radius){\n return destination;\n }\n \n //generate open list (list of squares that I can move based on the radius, map, visible robots, previous path)\n //calculate g for open list\n //calculate h for open list\n //pick lowest g+h value as next step\n // if there is more than one g+h min value, pick one with lowest h cost\n \n var direction = get_direction(currentLocation,destination);\n var maxMovement = get_max_movement(direction,radius,map,currentLocation);\n \n var openPaths;// = get_possible_steps(currentLocation,map);\n var newLocation = [currentLocation[0],currentLocation[1]];\n \n var moveAvailable = false;\n var i;\n if( (maxMovement[0] != 0 || maxMovement[1] != 0) && map[newLocation[1] + maxMovement[1]][newLocation[0] + maxMovement[0]] == true){\n newLocation[0] = newLocation[0] + maxMovement[0];\n newLocation[1] = newLocation[1] + maxMovement[1];\n moveAvailable = true;\n }\n for(i = maxMovement[0];i > 0 && !moveAvailable; i--){\n if( map[newLocation[1]][newLocation[0] + i] == true){\n newLocation[0] = newLocation[0] + i;\n break;\n }\n }\n for(i = maxMovement[1];i > 0 && !moveAvailable; i--){\n if( map[newLocation[1] + i][newLocation[0]] == true){\n newLocation[1] = newLocation[1] + i;\n break;\n }\n }\n if(!moveAvailable && (newLocation[0] != currentLocation[0] || newLocation[1] != currentLocation[1])){\n moveAvailable = true;\n }\n \n if(moveAvailable == true){\n if(!check_if_coor_in_path(newLocation,previousPathsTaken)){//this option does not allow backtracking\n return newLocation;\n }\n newLocation = [currentLocation[0],currentLocation[1]];\n }\n openPaths = get_possible_step_list(currentLocation,map,radius);\n //else if could not move, need to figure out where to move to continue.\n //this could break if enter into tunnel\n //return random open path\n var newPath = get_random_from_list(openPaths);\n //console.log(check_if_coor_in_path(newPath,previousPathsTaken));\n //console.log([newLocation[0] + newPath[0],newLocation[1] + newPath[1]]);\n //console.log(check_if_coor_in_path([newLocation[0] + newPath[0],newLocation[1] + newPath[1]],previousPathsTaken));\n while(check_if_coor_in_path([newLocation[0] + newPath[0],newLocation[1] + newPath[1]],previousPathsTaken)){ //this option does not allow backtracking\n newPath = get_random_from_list(openPaths);\n }\n \n return [newLocation[0] + newPath[0],newLocation[1] + newPath[1]];\n}", "function nextStep() {\n\n //call funtion to handle coin generation\n generateCoin(coinValues[currentCoin]);\n\n}", "function generateLastStep() {\r\n stepList.push(rand(0, 5));\r\n}", "stepForward () {\n this.nextGeneration();\n }", "function getValidSteps(currentLocation, previous){\n let validSteps = []\n //these are a little silly but they make validation a bit easier to read.\n const x = currentLocation[0]\n const y = currentLocation[1]\n let xPlusOne = currentLocation[0]+1\n let yPlusOne = currentLocation[1]+1\n let xMinusOne = currentLocation[0]-1\n let yMinusOne = currentLocation[1]-1\n //validate these\n if (xPlusOne > xSize){\n xPlusOne = false;\n }\n if (xMinusOne < 0){\n xMinusOne = false;\n }\n if (yPlusOne > ySize){\n yPlusOne = false;\n }\n if (yMinusOne < 0){\n yMinusOne = false;\n }\n //eight potential steps:\n //x+1, y+1\n if (xPlusOne && yPlusOne && (xPlusOne != previous[0] || yPlusOne != previous[1]) ){\n validSteps.push([xPlusOne, yPlusOne])\n }\n //x+0, y+1\n if (yPlusOne && (x != previous[0] || yPlusOne != previous[1]) ){\n validSteps.push([x, yPlusOne])\n }\n //x-1, y+1\n if (xMinusOne && yPlusOne && (xMinusOne != previous[0] || yPlusOne != previous[1]) ){\n validSteps.push([xMinusOne, yPlusOne])\n }\n //x+1, y\n if (xPlusOne && (xPlusOne != previous[0] || y != previous[1]) ){\n validSteps.push([xPlusOne, y])\n }\n //x-1, y\n if (xMinusOne && (xMinusOne != previous[0] || y != previous[1]) ){\n validSteps.push([xMinusOne, y])\n }\n //x+1, y-1\n if (xPlusOne && yMinusOne && (xPlusOne != previous[0] || yMinusOne != previous[1]) ){\n validSteps.push([xPlusOne, yMinusOne])\n }\n //x, y-1\n if (yMinusOne && (x != previous[0] || yMinusOne != previous[1] )){ \n validSteps.push([x, yMinusOne])\n }\n //x-1, y-1\n if (xMinusOne && yMinusOne && (xMinusOne != previous[0] || yMinusOne != previous[1]) ){\n validSteps.push([xMinusOne, yMinusOne])\n }\n return validSteps\n}", "createStepFunction() {\n // Current number of logic loops done without a render.\n let loops = 0;\n\n // The amount of time between each render.\n let timeBetweenSteps = 1000 / FPS;\n\n // Max amount of render frames we can skip before we need to a render no matter what.\n let maxFrameSkip = 1000;\n\n // When the next game step should happen.\n let nextGameStep = (new Date()).getTime();\n\n return () => {\n loops = 0;\n\n while (\n ((new Date()).getTime() > nextGameStep) &&\n (loops < maxFrameSkip && this.focused)\n ) {\n this.logicUpdate();\n nextGameStep += timeBetweenSteps;\n loops++;\n }\n\n if (loops) {\n this.renderUpdate();\n this.stopped = this.lastInfo.stop;\n }\n };\n }", "function next_step() {\n if(stralg[\"main_story\"] == null)\n return;\n stralg[\"main_story\"].next_step();\n redraw();\n}", "run() {\n\n const self = this;\n const maxSubSteps = 10;\n\n self.lastWorldStepTime = self.time();\n\n function update() {\n\n if (!self.paused) {\n const timeSinceLastCall = self.time() - self.lastWorldStepTime;\n self.lastWorldStepTime = self.time();\n self.world.step(1 / WORLD_STEP_TIME, timeSinceLastCall, maxSubSteps);\n }\n\n self.beforeRender();\n self.render();\n self.afterRender();\n\n requestAnimationFrame(update);\n }\n\n requestAnimationFrame(update);\n }", "function nextStep() {\n function moveOn(stepRunner) {\n step++;\n updateDemoText();\n stepRunner();\n }\n\n if (step == WELCOME_STEP)\n moveOn(runCreationStep);\n else if (step == CREATION_STEP)\n endCreationStep(function() { moveOn(runGroupingStep); });\n else if (step == GROUPING_STEP)\n moveOn(runGrahamScanStep);\n else if (step == GRAHAM_SCAN_STEP)\n moveOn(runJarvisMarchStep);\n else if (step == JARVIS_MARCH_STEP)\n moveOn(runCompletedHullStep);\n else if (step == COMPLETED_HULL_STEP)\n restartDemo();\n }", "function next() {\n\t\n\tif (currentTransformStep === transformSteps.length) {\n\t\tconsole.log('all transformations performed')\n\t}\n\telse\n\t\ttransformSteps[currentTransformStep++]()\n\t\t\n}", "advance() {\n var steps = this.get('steps');\n var step = this.get('step');\n var i = steps.findIndex((e) => e === step);\n\n if (steps[i+1]) {\n this.set('step', steps[i+1]);\n }\n }", "function generate_next_states() {\n console.log(myInputJSObject.results);\n console.log(myInputJSObject.request.get('numRelTime'));\n console.log(myInputJSObject.results.get('selectedTimePoint'));\n // Prevent user from exploring next state beyond allowed time points\n if (myInputJSObject.results.get('timePointPath').length == myInputJSObject.results.totalNumTimePoints.length - 1) { \n swal(\"Path Complete\", \"You've already completed the path and will be returned will your simulation result.\", \"success\");\n save_current_state()\n } else {\n $(\"body\").addClass(\"spinning\"); // Adds spinner animation to page\n updateAnalysisRequestWithCurrentState();\n window.opener.backendSimulationRequest(myInputJSObject.request);\n window.close();\n }\n }", "function nextGen() {\r\n\tgeneration++;\r\n\toutputGeneration();\r\n\tfor(var i = 0; i < gridSize; i++) {\r\n\t\tfor(var j = 0; j < gridSize; j++) {\r\n\t\t\t// put future state as current and update\r\n\t\t\tcells[i][j].current = cells[i][j].future;\r\n\t\t\tif(cells[i][j].current) {\r\n\t\t\t\tcells[i][j].age++;\r\n\t\t\t\tcells[i][j].color = colors[1];\r\n\t\t\t}\r\n\t\t\telse {\r\n\t\t\t\tcells[i][j].age = 0;\r\n\t\t\t\tcells[i][j].color = colors[0];\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Collapses the browser bar and returns when the animation is complete.
collapseBrowserBar() { return __awaiter(this, void 0, void 0, function* () { yield Promise.all([ this.browserBar.collapse(), this.viewport.updateHeight(document.body.getBoundingClientRect().height, true) ]); }); }
[ "function quickFinishAnimation() {\n animator.increaseWidthTo($preloadBar, '100%', 0, 200)\n .then(function () {\n $preloadBar.css('width', '0%');\n });\n }", "function animationCollapsed() {\n APPLICATION_STATE = 'collapsed';\n\n audioManager.addTrack(currentTrack);\n\n removeEventListeners();\n }", "function backgroundAnimationComplete(){\n windowResize();\n PopUpManager.getInstance().dismiss();\n }", "function animationExpanded() {\n APPLICATION_STATE = 'expand';\n\n audioManager.removeTrack(currentTrack);\n\n addEventListeners();\n }", "animationReadyToClose() {\n if (this.animationEnabled()) {\n // set default view visible before content transition for close runs\n if (this.getDefaultTabElement()) {\n const eleC = this.getDefaultTabElement() ? this.getDefaultTabElement().querySelector(ANIMATION_CLASS) :\n this.getDefaultTabElement().querySelector(ANIMATION_CLASS);\n if (eleC) {\n eleC.style.position = 'unset';\n eleC.classList.remove('hide');\n }\n }\n }\n }", "function setEndAnimation() {\r\n\t\t\tinAnimation = false;\r\n\t\t}", "async complete() {\n if (this.nativeRefresher) {\n this.needsCompletion = true;\n // Do not reset scroll el until user removes pointer from screen\n if (!this.pointerDown) {\n raf(() => raf(() => this.resetNativeRefresher(this.elementToTransform, 32 /* Completing */)));\n }\n }\n else {\n this.close(32 /* Completing */, '120ms');\n }\n }", "onAnimationEnd_() {\n if (this.isOpen_()) {\n // On open sidebar\n const children = this.getRealChildren();\n this.scheduleLayout(children);\n this.scheduleResume(children);\n tryFocus(this.element);\n } else {\n // On close sidebar\n this.vsync_.mutate(() => {\n toggle(this.element, /* display */false);\n this.schedulePause(this.getRealChildren());\n });\n }\n }", "function onOpenCompleteAnimation() {\n angular.element(angular.element('.ui-splitbar')[0]).css('display', 'block');\n\n isAnimationCompleted = true;\n }", "function collapseEndHandler() {\n this.ui.content.classList.add( 'u-hidden' );\n}", "function collapseCodePane(onComplete) {\n clearHighlight()\n setCodePaneWrapperWidth(collapsedCodePaneWidth,\"fast\", \"&laquo;\",\n onComplete)\n}", "function closeMessagebar()\n{\n animateMessagebar(0);\n}", "function onCloseCompleteAnimation() {\n\n // hide Test pane\n angular.element('.event-pane-section').css('display', 'none');\n\n isAnimationCompleted = true;\n }", "function abort() {\r\n end();\r\n // set animation status\r\n status.className = 'aborted';\r\n}", "finish() {\n if (this.oVisibility) {\n this.oVisibility.triggerHidden();\n }\n\n if (this.oOutQueue) {\n this.oOutQueue.flushQueue(this.oBrowserData, false);\n }\n }", "close() {\n // start animation => look at the css\n this.show = false;\n setTimeout(() => {\n // end animation\n this.start = false;\n // deactivate the backdrop visibility\n this.contentSource.displayHandle.classList.toggle('_active');\n\n // notify furo-backdrop that it is closed now\n this.contentSource.dispatchEvent(new Event('closed', { composed: true, bubbles: true }));\n }, this.toDuration);\n }", "function webviewNavigationCompleted() {\n \n document.getElementById(\"loadingProcessProgressRing\").style.visibility = \"collapse\";\n }", "function completeAnimation() {\n this.posAnimation = null;\n if (iCallback)\n iCallback();\n }", "function closeHamburgerMenuProductDetailsScreen() {\n ProductDetailsScreen.MainFlex.animate(kony.ui.createAnimation({\n \"100\": {\n \"left\": \"0%\",\n \"stepConfig\": {\n \"timingFunction\": kony.anim.EASE\n }\n }\n }), {\n \"delay\": 0,\n \"iterationCount\": 1,\n \"fillMode\": kony.anim.FILL_MODE_FORWARDS,\n \"duration\": 0.25\n }, {});\n ProductDetailsScreen.BaseHeader.HamburgerMenuOpen.isVisible = true;\n ProductDetailsScreen.BaseHeader.HamburgerMenuClose.isVisible = false;\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
RangeSeq is an Object for iterating over a range of integers. Each time from() is called, this.pos is incremented and is also used to keep track of the current integer. from() returns false once this.pos >= this.to Each instance of RangeSeq has two properties: 1) pos: for keeping track of where you are in the sequence. 2) to: reference to the end of the range
function RangeSeq(from, to) { this.pos = from - 1; this.to = to; }
[ "function RangeSeq(start, end) {\n this.now = start - 1;\n this.end = end;\n}", "function RangeSequence(start, end) {\n\tthis._start = start\n\tthis._end = end\n\tSequence.call(this, this._range())\n}", "range(from, to = from) { return Range.create(from, to, this); }", "range(from, to = from) { return new Range(from, to, this); }", "range(from, to = from) { return Range$1.create(from, to, this); }", "function Range(from, to) {\n\t// Store the start and end points (state) of this new range object.\n\t// These are noninherited properties that are unique to this object.\n\tthis.from = from;\n\tthis.to = to;\n}", "iterRange(from, to = this.length) {\n return new PartialTextCursor(this, from, to);\n }", "function createRange(pos,end){if(end===void 0){end=pos;}ts.Debug.assert(end>=pos||end===-1);return{pos:pos,end:end};}", "function Range(from, to) {\n // verify that the invariant holds when we're created.\n if (from > to) throw new Error(\"Range: from must be <= to\");\n\n // Define the accessor methods that maintain the invariant\n function getFrom() {\n return from;\n }\n\n function getTo() {\n return to;\n }\n\n function setFrom(f) {\n // Don't allow from to be set > to\n if (f <= to) from = f;\n else throw new Error(\"Range: from must be <= to\");\n }\n\n function setTo(t) {\n // Don't allow to to be set < from\n if (t >= from) to = t;\n else throw new Error(\"Range: to must be >= from\");\n }\n\n // Create enumerable, nonconfigurable properties that use the accessors\n Object.defineProperties(this, {\n from: {\n get: getFrom,\n set: setFrom,\n enumerable: true,\n configurable: false,\n },\n to: {\n get: getTo,\n set: setTo,\n enumerable: true,\n configurable: false,\n },\n });\n}", "at(pos) { return new Range(pos, pos, this); }", "function range(from, to) { // Use Object.create() to create an object that inherits from the \n\n let r = Object.create(range.methods);\n\n r.from = from;\n r.to = to;\n return r;\n}", "at(pos) {\n return new _rangeset.Range(pos, pos, this);\n }", "function Range() {}", "iterRange(from, to = this.length) { return new PartialTextCursor(this, from, to); }", "extend(from, to = from) {\n if (from <= this.anchor && to >= this.anchor)\n return EditorSelection.range(from, to);\n let head = Math.abs(from - this.anchor) > Math.abs(to - this.anchor) ? from : to;\n return EditorSelection.range(this.anchor, head);\n }", "extend(from, to = from) {\n if (from <= this.anchor && to >= this.anchor)\n return EditorSelection.range(from, to);\n let head = Math.abs(from - this.anchor) > Math.abs(to - this.anchor) ? from : to;\n return EditorSelection.range(this.anchor, head);\n }", "contains(pos) {\n return pos >= this.range[0] && pos <= this.range[1];\n }", "map(mapping) {\n let from = mapping.mapPos(this.from),\n to = mapping.mapPos(this.to);\n return from == this.from && to == this.to ? this : new SelectionRange(from, to, this.flags);\n }", "map(mapping) {\n let from = mapping.mapPos(this.from), to = mapping.mapPos(this.to);\n return from == this.from && to == this.to ? this : new SelectionRange(from, to, this.flags);\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Use this with `multi` `viewProviders`. This factory knows how to concatenate itself with the existing `multi` `providers`.
function multiViewProvidersFactoryResolver(_,tData,lData,tNode){var factories=this.multi;var result;if(this.providerFactory){var componentCount=this.providerFactory.componentProviders;var multiProviders=getNodeInjectable(tData,lData,this.providerFactory.index,tNode);// Copy the section of the array which contains `multi` `providers` from the component result=multiProviders.slice(0,componentCount);// Insert the `viewProvider` instances. multiResolve(factories,result);// Copy the section of the array which contains `multi` `providers` from other directives for(var i=componentCount;i<multiProviders.length;i++){result.push(multiProviders[i]);}}else{result=[];// Insert the `viewProvider` instances. multiResolve(factories,result);}return result;}
[ "function multiViewProvidersFactoryResolver(_, tData, lData, tNode) {\n var factories = this.multi;\n var result;\n if (this.providerFactory) {\n var componentCount = this.providerFactory.componentProviders;\n var multiProviders = getNodeInjectable(tData, lData, this.providerFactory.index, tNode);\n // Copy the section of the array which contains `multi` `providers` from the component\n result = multiProviders.slice(0, componentCount);\n // Insert the `viewProvider` instances.\n multiResolve(factories, result);\n // Copy the section of the array which contains `multi` `providers` from other directives\n for (var i = componentCount; i < multiProviders.length; i++) {\n result.push(multiProviders[i]);\n }\n }\n else {\n result = [];\n // Insert the `viewProvider` instances.\n multiResolve(factories, result);\n }\n return result;\n}", "function multiViewProvidersFactoryResolver(_, tData, lView, tNode) {\n var factories = this.multi;\n var result;\n\n if (this.providerFactory) {\n var componentCount = this.providerFactory.componentProviders;\n var multiProviders = getNodeInjectable(lView, lView[TVIEW], this.providerFactory.index, tNode); // Copy the section of the array which contains `multi` `providers` from the component\n\n result = multiProviders.slice(0, componentCount); // Insert the `viewProvider` instances.\n\n multiResolve(factories, result); // Copy the section of the array which contains `multi` `providers` from other directives\n\n for (var i = componentCount; i < multiProviders.length; i++) {\n result.push(multiProviders[i]);\n }\n } else {\n result = []; // Insert the `viewProvider` instances.\n\n multiResolve(factories, result);\n }\n\n return result;\n}", "function ViewRegistry() {\n this.providers = [];\n }", "function createProviders() {\n let data = storage.ClearURLsData;\n\n for (let p = 0; p < prvKeys.length; p++) {\n //Create new provider\n providers.push(new Provider(prvKeys[p], data.providers[prvKeys[p]].getOrDefault('completeProvider', false),\n data.providers[prvKeys[p]].getOrDefault('forceRedirection', false)));\n\n //Add URL Pattern\n providers[p].setURLPattern(data.providers[prvKeys[p]].getOrDefault('urlPattern', ''));\n\n let rules = data.providers[prvKeys[p]].getOrDefault('rules', []);\n //Add rules to provider\n for (let r = 0; r < rules.length; r++) {\n providers[p].addRule(rules[r]);\n }\n\n let rawRules = data.providers[prvKeys[p]].getOrDefault('rawRules', []);\n //Add raw rules to provider\n for (let raw = 0; raw < rawRules.length; raw++) {\n providers[p].addRawRule(rawRules[raw]);\n }\n\n let referralMarketingRules = data.providers[prvKeys[p]].getOrDefault('referralMarketing', []);\n //Add referral marketing rules to provider\n for (let referralMarketing = 0; referralMarketing < referralMarketingRules.length; referralMarketing++) {\n providers[p].addReferralMarketing(referralMarketingRules[referralMarketing]);\n }\n\n let exceptions = data.providers[prvKeys[p]].getOrDefault('exceptions', []);\n //Add exceptions to provider\n for (let e = 0; e < exceptions.length; e++) {\n providers[p].addException(exceptions[e]);\n }\n\n let redirections = data.providers[prvKeys[p]].getOrDefault('redirections', []);\n //Add redirections to provider\n for (let re = 0; re < redirections.length; re++) {\n providers[p].addRedirection(redirections[re]);\n }\n }\n }", "function addProvider(p) { otherProviders.push(p); }", "function ViewRegistry() {\n EventEmitter.apply(this);\n this.providers = {};\n }", "function multiFactory(factoryFn, index, isViewProvider, isComponent$$1, f) {\n var factory = new NodeInjectorFactory(factoryFn, isViewProvider, directiveInject);\n factory.multi = [];\n factory.index = index;\n factory.componentProviders = 0;\n multiFactoryAdd(factory, f, isComponent$$1 && !isViewProvider);\n return factory;\n}", "function ModuleWithProviders() { }", "useProviders(providersPaths, callback) {\n this.providersPaths = providersPaths;\n if (typeof callback === 'function') {\n this.providersInstantiater = callback;\n }\n return this;\n }", "function providersService(options) {\n\n const providers = options.providers;\n\n const baseMoviesUrls = providers.map(provider => options.baseMoviesUrl.replace('{0}', provider.name));\n const baseMovieDetailUrls = providers.map(provider => { \n return provider.detailMovieDetailsUrl = options.baseMovieDetailsUrl.replace('{0}', provider.name)\n });\n\n const serviceIdentfiers = getServiceIdentifiers(); \n \n return {\n getMoviesUrl: function() {\n return baseMoviesUrls;\n },\n\n getMovieDetailsUrl: function (ids) { \n return ids.map(id => getServiceWithId(id));\n },\n \n getProviderName: function(id) {\n return getProvider(id).name; \n },\n\n getServiceIdentifiers: function() { \n return serviceIdentfiers;\n },\n\n getServiceIdentifier: function(url) {\n return getServiceIdentifier(url);\n },\n\n getNumberOfProviders: function() {\n return providers.length;\n }\n }\n\n function getServiceIdentifiers() {\n let moviesUrls = baseMoviesUrls.map(url => getServiceIdentifier(url));\n let movieDetailsUrls = baseMovieDetailUrls.map(url => getServiceIdentifier(url));\n return moviesUrls.concat(movieDetailsUrls);\n }\n\n function getServiceIdentifier(url) {\n //is it a movies or detailed request\n let isMoviesRequest = _.includes(url, 'movies');\n let provider = _.find(providers, function(provider) {\n return _.includes(url, provider.name);\n });\n let suffix = isMoviesRequest? \"\" : \"detailed\";\n return provider.name + suffix; \n }\n\n\n function getProvider(id) {\n return _.find(providers, function(provider){\n return _.includes(id, provider.prefix);\n }); \n }\n\n function getServiceWithId(id) {\n provider = getProvider(id);\n return provider.detailMovieDetailsUrl.replace('{1}', id); \n } \n\n}", "function MakeProviders(type) {\n return [\n {\n provide: _angular_forms__WEBPACK_IMPORTED_MODULE_2__[\"NG_VALUE_ACCESSOR\"],\n useExisting: Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__[\"forwardRef\"])(function () { return type; }),\n multi: true\n },\n {\n provide: CustomInputComponentAbstract,\n useExisting: Object(_angular_core__WEBPACK_IMPORTED_MODULE_1__[\"forwardRef\"])(function () { return type; }),\n multi: true\n }\n ];\n}", "constructor (providers) {\n this.setContentProviders(providers)\n }", "processProvider(provider, ngModuleType, providers) {\n // Determine the token from the provider. Either it's its own token, or has a {provide: ...}\n // property.\n provider = resolveForwardRef(provider);\n let token = isTypeProvider(provider) ? provider : resolveForwardRef(provider && provider.provide);\n // Construct a `Record` for the provider.\n const record = providerToRecord(provider, ngModuleType, providers);\n if (!isTypeProvider(provider) && provider.multi === true) {\n // If the provider indicates that it's a multi-provider, process it specially.\n // First check whether it's been defined already.\n let multiRecord = this.records.get(token);\n if (multiRecord) {\n // It has. Throw a nice error if\n if (ngDevMode && multiRecord.multi === undefined) {\n throwMixedMultiProviderError();\n }\n }\n else {\n multiRecord = makeRecord(undefined, NOT_YET, true);\n multiRecord.factory = () => injectArgs(multiRecord.multi);\n this.records.set(token, multiRecord);\n }\n token = provider;\n multiRecord.multi.push(provider);\n }\n else {\n const existing = this.records.get(token);\n if (ngDevMode && existing && existing.multi !== undefined) {\n throwMixedMultiProviderError();\n }\n }\n this.records.set(token, record);\n }", "function multiFactory(factoryFn, index, isViewProvider, isComponent, f) {\n var factory = new NodeInjectorFactory(factoryFn, isViewProvider, ɵɵdirectiveInject);\n factory.multi = [];\n factory.index = index;\n factory.componentProviders = 0;\n multiFactoryAdd(factory, f, isComponent && !isViewProvider);\n return factory;\n}", "function getProviders() {\n providerFactory.getProviders()\n .then(function (response) {\n $scope.provider = response.data;\n }, function (error) {\n $scope.status = 'Unable to load Providers: ' + error.message;\n });\n }", "function ModuleWithProviders(){}", "static get providers() { return []; }", "processProvider(provider, ngModuleType, providers) {\n // Determine the token from the provider. Either it's its own token, or has a {provide: ...}\n // property.\n provider = resolveForwardRef(provider);\n let token = isTypeProvider(provider) ? provider : resolveForwardRef(provider && provider.provide);\n // Construct a `Record` for the provider.\n const record = providerToRecord(provider, ngModuleType, providers);\n if (!isTypeProvider(provider) && provider.multi === true) {\n // If the provider indicates that it's a multi-provider, process it specially.\n // First check whether it's been defined already.\n let multiRecord = this.records.get(token);\n if (multiRecord) {\n // It has. Throw a nice error if\n if (multiRecord.multi === undefined) {\n throwMixedMultiProviderError();\n }\n }\n else {\n multiRecord = makeRecord(undefined, NOT_YET, true);\n multiRecord.factory = () => injectArgs(multiRecord.multi);\n this.records.set(token, multiRecord);\n }\n token = provider;\n multiRecord.multi.push(provider);\n }\n else {\n const existing = this.records.get(token);\n if (existing && existing.multi !== undefined) {\n throwMixedMultiProviderError();\n }\n }\n this.records.set(token, record);\n }", "function multiFactoryAdd(multiFactory,factory,isComponentProvider){multiFactory.multi.push(factory);if(isComponentProvider){multiFactory.componentProviders++;}}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
attach terminal router (/terminal) to apiRouter (/api)
function attach_router(apiRouter){ const router = app.getNewRouter(); router.get('/', [APILimter, FormBody, Login, Admin], get_overview); router.get('/:token', [APILimter, FormBody, Login, Admin], get_by_token); router.post('/', [APILimter, FormBody, Login, Admin], add_terminal); router.patch('/:id', [APILimter, FormBody, Login, Admin], update_terminal); apiRouter.use('/terminal', router); }
[ "function attach_router(apiRouter){\n\t\n\tconst router = app.getNewRouter();\n\t\n\trouter.get('/', [APILimter, FormBody, Login, Admin], get_overview);\n\trouter.get('/:username', [APILimter, FormBody, Login, Admin], get_by_name);\n\trouter.post('/', [APILimter, FormBody, Login, Admin], add_user);\n\trouter.patch('/:username', [APILimter, FormBody, Login, Admin], update_user);\n\tapiRouter.use('/user', router);\n}", "function attach_router(apiRouter){\n\t\n\tconst router = app.getNewRouter();\n\t\n\t//Payment\n\trouter.post('/pay', [IpFilter, TerminalLimiter, FormBody, Terminal.restrict], pay);\n\trouter.post('/deposit', [APILimter, FormBody, Login, Admin], deposit);\n\trouter.post('/admin', [APILimter, FormBody, Login, Admin], modify);\n\t\n\t//Mark\n\trouter.patch('/:id', [IpFilter, FormBody, Terminal.restrict], mark);\n\trouter.patch('/mark/:id', [APILimter, Login, Admin], mark_set_solved);\n\t\n\t//Overviews and Data\n\trouter.get('/', [APILimter, Login, Admin], get_overview);\n\trouter.get('/marked/', [APILimter, Login, Admin], get_marked_overview);\n\trouter.get('/total', [APILimter, Login, Admin], get_total_credits);\n\trouter.get('/:id', [APILimter, Login, Admin], get_by_id);\n\t\n\tapiRouter.use('/transaction', router);\n}", "async setupAPIServer() {\n\t\tawait this.apiServer.run();\n\t\tthis.apiServer.attach({\n\t\t\tapp: this.app,\n\t\t\tfrontendRouter: this.frontendRouter\n\t\t});\n\t}", "function init_router(next) {\n var config = nodeca.config.router, pointer, default_mount, unknown_methods;\n\n pointer = nodeca.runtime.router = new Pointer();\n\n // calculate default mount points\n default_mount = {host: '//' + nodeca.config.listen.host, path: ''};\n\n if (80 !== +nodeca.config.listen.port) {\n default_mount.host += ':' + nodeca.config.listen.port;\n }\n\n if (nodeca.config.listen.path && '/' !== nodeca.config.listen.path) {\n default_mount.path += nodeca.config.listen.path.replace(/^\\/+$/g, '');\n }\n\n //\n // validate routes\n unknown_methods = _.filter(_.keys(config.map || {}), function (api_path) {\n return !HashTree.get(nodeca.server, api_path);\n });\n\n if (unknown_methods.length) {\n next(new Error(\"Router map contains unknown server api methods: \" +\n unknown_methods.join(', ')));\n return;\n }\n\n //\n // fill in routes\n _.each(config.map || {}, function (routes, api_path) {\n var prefix = config.mount[api_path.split('.').shift()];\n\n if (!prefix) {\n prefix = default_mount.host + default_mount.path;\n } else if ('//' !== prefix.substr(0, 2)) {\n prefix = default_mount.host + prefix;\n }\n\n _.each(routes, function (params, pattern) {\n if ('#' === pattern[0]) {\n // skip non-server routes\n return;\n }\n\n pointer.addRoute(pattern, {\n name: api_path,\n prefix: prefix,\n params: fix_params_regexps(params),\n meta: {\n name: api_path,\n func: HashTree.get(nodeca.server, api_path)\n }\n });\n });\n });\n\n //\n // fill in redirects\n _.each(config.redirects || {}, function (options, old_pattern) {\n var code, link_to;\n\n // redirect provided as a function\n if (_.isFunction(options.to)) {\n pointer.addRoute(old_pattern, {\n params: fix_params_regexps(options.params),\n meta: {\n name: '!redirect!',\n func: function (params, cb) {\n options.to.call(nodeca, params, cb);\n }\n }\n });\n return;\n }\n\n // create detached route - to build URLs\n code = options.to.shift();\n link_to = Pointer.createLinkBuilder(options.to.shift(), options.params);\n\n pointer.addRoute(old_pattern, {\n params: fix_params_regexps(options.params),\n meta: {\n name: '!redirect!',\n func: function (params, cb) {\n var url = link_to(params);\n\n if (!url) {\n cb(new Error('Invalid redirect.'));\n return;\n }\n\n cb({redirect: [code, url]});\n }\n }\n });\n });\n\n //\n // validate direct invocators\n unknown_methods = _.filter(_.keys(config.direct_invocators || {}), function (api_path) {\n return !HashTree.get(nodeca.server, api_path);\n });\n\n if (unknown_methods.length) {\n next(new Error(\"Direct invocators contains unknown server api methods: \" +\n unknown_methods.join(', ')));\n return;\n }\n\n //\n // fill in direct invocators\n _.each(config.direct_invocators || {}, function (enabled, api_path) {\n if (!enabled) {\n // skip disabled invocators\n return;\n }\n\n pointer.addRoute(default_mount + '/!' + api_path + '(?{query})', {\n params: { query: /.*/ },\n meta: {\n name: api_path,\n func: HashTree.get(nodeca.server, api_path)\n }\n });\n });\n\n next();\n}", "attach({app, frontendRouter}) {\n\t\tapp.use(vhost(`${Config.subdomains.api}.${Config.domain}`, this.apiApp));\n\t\tfrontendRouter.use('/api', this.frontendAPIRouter);\n\t}", "function addRoutes(api) {\n api.post('/api/v2/gateway', createGateway);\n api.get('/api/v2/gateway', listGateway);\n api.get('/api/v2/gateway/:name', itemGateway);\n api.patch('/api/v2/gateway/:name/up', upGateway);\n api.put('/api/v2/gateway/:name/up', upGateway);\n api.patch('/api/v2/gateway/:name/down', downGateway);\n api.put('/api/v2/gateway/:name/down', downGateway);\n\n api.put('/api/v2/gateway/:name/:type', changeGateway);\n api.get('/api/v2/gateway/:name/:type', varGateway);\n api.delete('/api/v2/gateway/:name', deleteGateway);\n}", "registerAPIRoutes() {\n this._router = require(\"./src/apis/index\");\n this._router.setRoutes(this.app); \n }", "function addRoutes(api) {\n api.get('/api/v2/vmail/:id', list);\n api.put('/api/v2/vmail/:id/:uuid', update);\n api.delete('/api/v2/vmail/:id/:uuid', remove);\n}", "async startRestApi () {\n try {\n // Create a Koa instance.\n const app = new Koa()\n app.use(this.bodyParser())\n\n // Attach a router for the single POST endpoint.\n this.router = new Router({ prefix: '/' })\n\n // Normal API handler for interacting with other IPFS peers over JSON RPC.\n this.router.post('wallet/', this.apiHandler)\n\n // Local commands\n this.router.post('local/', this.localApiHandler)\n\n // P2WDB commands\n this.router.post('p2wdb/', this.p2wdbApiHandler)\n\n app.use(this.router.routes())\n app.use(this.router.allowedMethods())\n\n // Start the HTTP server.\n const port = 5000\n await app.listen(port)\n console.log(`REST API started on port ${port}`)\n\n return app\n } catch (err) {\n console.error('Error in startRestApi()')\n throw err\n }\n }", "function addRoutes(api) {\n api.post('/accounts', createAccount);\n api.put('/accounts/:id', updateAccount);\n api.get('/accounts/:id', getAccount);\n api.get('/accounts', getAccounts);\n api.delete('/accounts/:id', deleteAccount);\n}", "function addRoutes(api) {\n api.all('/api/v1/*', validateRequestV1);\n api.all('/api/v2/*', validateRequestV2);\n api.get('/api/v2/whoami', whoami);\n api.put('/api/v2/settings/security', setupSecurity);\n api.get('/api/v2/settings/security', getSecurity);\n api.post('/login', login);\n api.get( '/login/:domain', loginOAuth);\n api.post('/logout', logout);\n}", "mountRoutes() {\n this.express = Routes_1.default.mountWeb(this.express);\n this.express = Routes_1.default.mountApi(this.express);\n }", "constructor(){ super('terminal') }", "function addCommands(app, services, tracker) {\n let { commands, shell } = app;\n /**\n * Whether there is an active terminal.\n */\n function isEnabled() {\n return (tracker.currentWidget !== null &&\n tracker.currentWidget === app.shell.currentWidget);\n }\n // Add terminal commands.\n commands.addCommand(CommandIDs.createNew, {\n label: args => (args['isPalette'] ? 'New Terminal' : 'Terminal'),\n caption: 'Start a new terminal session',\n iconClass: args => (args['isPalette'] ? '' : TERMINAL_ICON_CLASS),\n execute: args => {\n const name = args['name'];\n const initialCommand = args['initialCommand'];\n const term = new terminal_1.Terminal({ initialCommand });\n const promise = name\n ? services.terminals.connectTo(name)\n : services.terminals.startNew();\n term.title.icon = TERMINAL_ICON_CLASS;\n term.title.label = '...';\n let main = new apputils_1.MainAreaWidget({ content: term });\n shell.addToMainArea(main);\n return promise\n .then(session => {\n term.session = session;\n tracker.add(main);\n shell.activateById(main.id);\n return main;\n })\n .catch(() => {\n term.dispose();\n });\n }\n });\n commands.addCommand(CommandIDs.open, {\n execute: args => {\n const name = args['name'];\n // Check for a running terminal with the given name.\n const widget = tracker.find(value => {\n let content = value.content;\n return (content.session && content.session.name === name) || false;\n });\n if (widget) {\n shell.activateById(widget.id);\n }\n else {\n // Otherwise, create a new terminal with a given name.\n return commands.execute(CommandIDs.createNew, { name });\n }\n }\n });\n commands.addCommand(CommandIDs.refresh, {\n label: 'Refresh Terminal',\n caption: 'Refresh the current terminal session',\n execute: () => {\n let current = tracker.currentWidget;\n if (!current) {\n return;\n }\n shell.activateById(current.id);\n return current.content.refresh().then(() => {\n if (current) {\n current.content.activate();\n }\n });\n },\n isEnabled: () => tracker.currentWidget !== null\n });\n commands.addCommand(CommandIDs.increaseFont, {\n label: 'Increase Terminal Font Size',\n execute: () => {\n let options = terminal_1.Terminal.defaultOptions;\n if (options.fontSize < 72) {\n options.fontSize++;\n tracker.forEach(widget => {\n widget.content.fontSize = options.fontSize;\n });\n }\n },\n isEnabled\n });\n commands.addCommand(CommandIDs.decreaseFont, {\n label: 'Decrease Terminal Font Size',\n execute: () => {\n let options = terminal_1.Terminal.defaultOptions;\n if (options.fontSize > 9) {\n options.fontSize--;\n tracker.forEach(widget => {\n widget.content.fontSize = options.fontSize;\n });\n }\n },\n isEnabled\n });\n let terminalTheme = 'dark';\n commands.addCommand(CommandIDs.toggleTheme, {\n label: 'Use Dark Terminal Theme',\n caption: 'Whether to use the dark terminal theme',\n isToggled: () => terminalTheme === 'dark',\n execute: () => {\n terminalTheme = terminalTheme === 'dark' ? 'light' : 'dark';\n let options = terminal_1.Terminal.defaultOptions;\n options.theme = terminalTheme;\n tracker.forEach(widget => {\n if (widget.content.theme !== terminalTheme) {\n widget.content.theme = terminalTheme;\n }\n });\n commands.notifyCommandChanged(CommandIDs.toggleTheme);\n },\n isEnabled\n });\n}", "function addCommands(app, services, tracker) {\n var commands = app.commands, shell = app.shell;\n /**\n * Whether there is an active terminal.\n */\n function hasWidget() {\n return tracker.currentWidget !== null;\n }\n // Add terminal commands.\n commands.addCommand(CommandIDs.createNew, {\n label: 'New Terminal',\n caption: 'Start a new terminal session',\n execute: function (args) {\n var name = args['name'];\n var initialCommand = args['initialCommand'];\n var term = new terminal_1.Terminal({ initialCommand: initialCommand });\n term.title.closable = true;\n term.title.icon = TERMINAL_ICON_CLASS;\n term.title.label = '...';\n shell.addToMainArea(term);\n var promise = name ?\n services.terminals.connectTo(name)\n : services.terminals.startNew();\n return promise.then(function (session) {\n term.session = session;\n tracker.add(term);\n shell.activateById(term.id);\n return term;\n }).catch(function () { term.dispose(); });\n }\n });\n commands.addCommand(CommandIDs.open, {\n execute: function (args) {\n var name = args['name'];\n // Check for a running terminal with the given name.\n var widget = tracker.find(function (value) {\n return value.session && value.session.name === name || false;\n });\n if (widget) {\n shell.activateById(widget.id);\n }\n else {\n // Otherwise, create a new terminal with a given name.\n return commands.execute(CommandIDs.createNew, { name: name });\n }\n }\n });\n commands.addCommand(CommandIDs.refresh, {\n label: 'Refresh Terminal',\n caption: 'Refresh the current terminal session',\n execute: function () {\n var current = tracker.currentWidget;\n if (!current) {\n return;\n }\n shell.activateById(current.id);\n return current.refresh().then(function () {\n if (current) {\n current.activate();\n }\n });\n },\n isEnabled: function () { return tracker.currentWidget !== null; }\n });\n commands.addCommand('terminal:increase-font', {\n label: 'Increase Terminal Font Size',\n execute: function () {\n var options = terminal_1.Terminal.defaultOptions;\n if (options.fontSize < 72) {\n options.fontSize++;\n tracker.forEach(function (widget) { widget.fontSize = options.fontSize; });\n }\n },\n isEnabled: hasWidget\n });\n commands.addCommand('terminal:decrease-font', {\n label: 'Decrease Terminal Font Size',\n execute: function () {\n var options = terminal_1.Terminal.defaultOptions;\n if (options.fontSize > 9) {\n options.fontSize--;\n tracker.forEach(function (widget) { widget.fontSize = options.fontSize; });\n }\n },\n isEnabled: hasWidget\n });\n commands.addCommand('terminal:toggle-theme', {\n label: 'Toggle Terminal Theme',\n caption: 'Switch Terminal Theme',\n execute: function () {\n tracker.forEach(function (widget) {\n if (widget.theme === 'dark') {\n widget.theme = 'light';\n }\n else {\n widget.theme = 'dark';\n }\n });\n },\n isEnabled: hasWidget\n });\n}", "attachTerminal(terminalObj, dir = null){\n dir = dir || terminalObj.terminalDirection;\n terminalObj.parentComponent = this;\n switch(dir){\n case side.left: this.terminals.left = terminalObj; break;\n case side.right: this.terminals.right = terminalObj; break;\n case side.up: this.terminals.up = terminalObj; break;\n case side.down: this.terminals.down = terminalObj; break;\n }\n }", "function addRoutes(router) {\n\n // Create an Express Router for this API section\n const api = express.Router();\n // Attach this API section's routes to this Router\n mountAPI(api);\n // Set this Router to be used under the '/api' URL prefix. This naming may\n // seem duplicated (why call it /api when it is the only part of the API?)\n // That is because I often separate the authentication into a sibling API\n // section under '/auth'.\n router.use('/api', api);\n}", "function start() {\n\tapp.getView( {} ).render('terminal/ui');\n}", "createRouter() {\n const router = express.Router();\n // API calls for users to manage streamers\n router.post('/shutdown', this._onShutdown.bind(this));\n router.post('/gc', this._onRunGC.bind(this));\n router.get('/status', this._onGetStatus.bind(this));\n router.post('/spawn', this._onBrokerRequest.bind(this));\n router.get('/spawns', this._onListSpawns.bind(this));\n router.post('/spawns/:spawnId', this._onSpawnUpdate.bind(this));\n router.get('/help', this._onGetHelp.bind(this));\n return router;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Function to toggle the visibility of the progress bar in slide mode.
function slideToggleProgressBarVisibility() { if (progress_bar_visible) { progress_bar_visible = false; hideProgressBar(); } else { progress_bar_visible = true; showProgressBar(); } }
[ "function toggleSliding() {\n switch (isSliding) {\n case false:{isSliding=true}break;\n case true:{isSliding=false}break;\n }\n }", "function SlideshowToggle(){\n if( G.VOM.playSlideshow ) {\n window.clearTimeout(G.VOM.playSlideshowTimerID);\n G.VOM.playSlideshow=false;\n G.VOM.$viewer.find('.playPauseButton').html(G.O.icons.viewerPlay);\n }\n else {\n G.VOM.playSlideshow=true;\n DisplayNextImage();\n G.VOM.$viewer.find('.playPauseButton').html(G.O.icons.viewerPause);\n }\n }", "toggle_range_slider_visibility() {\n if (this.type == 'P') {\n this.range_slider_k.parentNode.style.display = 'flex';\n this.range_slider_t.parentNode.style.display = 'none';\n }\n else if (this.type == 'PT1') {\n this.range_slider_k.parentNode.style.display = 'flex';\n this.range_slider_t.parentNode.style.display = 'flex';\n }\n }", "function toggleSlideIndex()\n{\n\tvar suspendHandle = ROOT_NODE.suspendRedraw(500);\n\n\tif (currentMode == SLIDE_MODE)\n\t{\n\t\thideProgressBar();\t\t\n\t\tINDEX_OFFSET = -1;\n\t\tindexSetPageSlide(activeSlide);\n\t\tcurrentMode = INDEX_MODE;\n\t}\n\telse if (currentMode == INDEX_MODE)\n\t{\n\t\tfor (var counter = 0; counter < slides.length; counter++)\n\t\t{\n\t\t\tslides[counter][\"element\"].setAttribute(\"transform\",\"scale(1)\");\n\n\t\t\tif (counter == activeSlide)\n\t\t\t{\n\t\t\t\tslides[counter][\"element\"].style.display = \"inherit\";\n\t\t\t\tslides[counter][\"element\"].setAttribute(\"opacity\",1);\n\t\t\t\tactiveEffect = 0;\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tslides[counter][\"element\"].setAttribute(\"opacity\",0);\n\t\t\t\tslides[counter][\"element\"].style.display = \"none\";\n\t\t\t}\n\t\t}\n\t\tcurrentMode = SLIDE_MODE;\n\t\tsetSlideToState(activeSlide, STATE_START);\n\t\tsetProgressBarValue(activeSlide);\n\n\t\tif (progress_bar_visible)\n\t\t{\n\t\t\tshowProgressBar();\n\t\t}\n\t}\n\n\tROOT_NODE.unsuspendRedraw(suspendHandle);\n\tROOT_NODE.forceRedraw();\n}", "function toggleButtonVisiblity() {\n\tif (position === (numberOfSlides - 1) * -1) {\n\t\t$('#right-button').fadeOut();\n\t} else {\n\t\t$('#right-button').fadeIn();\n\t}\n\tif (position === 0) {\n\t\t$('#left-button').fadeOut();\n\t} else {\n\t\t$('#left-button').fadeIn();\n\t}\t\n}", "toggleVisibility() {\n this.setVisible(!this.visible);\n }", "setVisibility() {\n if (this.lessonId === this.activeLessonId) {\n this.show();\n } else {\n this.hide();\n }\n }", "function _toggleProgress(ctrl, on) {\n\t\tvar indicator = _selector('progress', ctrl).toggleClass(CLASS_HIDDEN, !on);\n\t\twindow.clearInterval(indicator.data(BOXPLUS));\n\t\tif (on) {\n\t\t\tindicator.data(BOXPLUS, window.setInterval(function () {\n\t\t\t\tindicator.css('background-position', progress = (progress - 32) % 384); // 384px = 12 states * 32px width\n\t\t\t}, 150));\n\t\t}\n\t}", "toggle_range_slider_visibility() {\n if (this.type == 'PT0') {\n this.range_slider_k.parentNode.style.display = 'flex';\n this.range_slider_t.parentNode.style.display = 'none';\n this.range_slider_d.parentNode.style.display = 'none';\n this.range_slider_omega.parentNode.style.display = 'none';\n }\n else if (this.type == 'PT1') {\n this.range_slider_k.parentNode.style.display = 'flex';\n this.range_slider_t.parentNode.style.display = 'flex';\n this.range_slider_d.parentNode.style.display = 'none';\n this.range_slider_omega.parentNode.style.display = 'none';\n }\n else if (this.type == 'PT2') {\n this.range_slider_k.parentNode.style.display = 'flex';\n this.range_slider_t.parentNode.style.display = 'none';\n this.range_slider_d.parentNode.style.display = 'flex';\n this.range_slider_omega.parentNode.style.display = 'flex';\n }\n }", "function toggleBarVisibility() {\n var e = document.getElementById(\"ivc-progress-bar\");\n let status = document.getElementById(\"ivc-progress-bar-status\");\n e.style.display = (e.style.display == \"block\") ? \"none\" : \"block\";\n status.style.display = (status.style.display == \"block\") ? \"none\" : \"block\";\n document.getElementById(\"ivc-progress-bar-color\").style.width = 0 + \"%\";\n document.getElementById(\"ivc-progress-bar-status\").innerHTML = 0 + \"%\";\n}", "ToggleVisible() {\n if (this.panel.classList.contains(this.styles['guify-panel-hidden']))\n this.SetVisible(true);\n else\n this.SetVisible(false);\n }", "toggleVisibility() {\n this.visible = !this.visible;\n }", "ToggleVisible() {\n if (this.panel.classList.contains(\"guify-panel-hidden\"))\n this.SetVisible(true);\n else\n this.SetVisible(false);\n }", "async function hide() {\n await transitionSlide(0);\n getCurrentSlideNode().style.display = \"none\";\n}", "toggleVisiblity () {\n this.visible = !this.visible;\n }", "function toggleSliders(){\n $('param_radius_demand').style.visibility = (getTripType() == TYPE_OFFER) ? 'hidden' : 'visible';\n $('help_radius_demand_slider').style.visibility = (getTripType() == TYPE_OFFER) ? 'hidden' : 'visible';\n $('param_radius_offer').style.visibility = (getTripType() == TYPE_DEMAND) ? 'hidden' : 'visible';\n $('help_radius_offer_slider').style.visibility = (getTripType() == TYPE_DEMAND) ? 'hidden' : 'visible';\n}", "function onSliderToggle() {\n if(state.timer == null) {\n playSlider();\n } else {\n pauseSlider();\n }\n }", "function SlideshowToggle(){\n if( G.playSlideshow ) {\n window.clearInterval(G.playSlideshowTimerID);\n G.playSlideshow=false;\n G.$E.conVwTb.find('.playPauseButton').removeClass('pauseButton').addClass('playButton');\n }\n else {\n G.playSlideshow=true;\n G.$E.conVwTb.find('.playPauseButton').removeClass('playButton').addClass('pauseButton');\n DisplayNextImage();\n G.playSlideshowTimerID=window.setInterval(function(){DisplayNextImage();},G.slideshowDelay);\n }\n }", "function isVisible(bool) { pano.setVisible(bool); }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Split list of areas in three lists, given a pivot area Returns pivot, a1_len, a2_len, a3_len pivot: index of pivot item an_len: length of list an (n being 1, 2, or 3) pivot is the largest element in areas a1 is all elements in areas before the pivot a2 is the next elements in areas after pivot, so that pivot is close to square (width of a2 is the same as of a2) a3 is the other elements in areas to the right of a2
function split_pivot_largest(depth, areas) { var pivot, a1_len, a2_len, a3_len; let [largest, largest_i] = max_value(areas); pivot = largest_i; a1_len = pivot; if (areas.length == pivot + 1) { // No items to the right of pivot. a2, a3 empty return [pivot, a1_len, 0, 0]; }; if (areas.length == pivot + 2) { // Only one item to the right of pivot. It is a2. a3 is empty. return [pivot, a1_len, 1, 0]; }; // More than one item to the right of pivot. // Compute a2 so that pivot can be as square as possible let pivot_area = areas[pivot]; let a2_width_ideal = Math.sqrt(pivot_area); let a2_area_ideal = a2_width_ideal * depth - pivot_area; let a2_area = 0; let i = pivot + 1; while (a2_area < a2_area_ideal && i < areas.length ) { var a2_area_last = a2_area; a2_area += areas[i]; i ++; }; // There are two candidates to be the area closest to the ideal area: // the last area computed (long), and the one that was conputed before it (short), // providing the last computed is not the next to the pivot (in that case, // the last computed is the next to the pivot, and therefore it needs to be the // first in a3. if (Math.abs(a2_area - a2_area_ideal) < Math.abs(a2_area_last - a2_area_ideal)) { var a3_first = i; } else if (i-1 > pivot) { var a3_first = i-1; } else { var a3_first = i; }; a2_len = a3_first - pivot - 1; a3_len = areas.length - a3_first return [pivot, a1_len, a2_len, a3_len]; }
[ "function pivot_algo (rectangle, origin, items) {\n console.log(\"Length of items to rectangulize: \", items.length);\n// Control to avoid excesive recursion\n// calls ++;\n// if (calls > 20) {\n// console.log(\"20 calls reached, finishing\");\n// return;\n// };\n if (items.length <= 2) {\n // Only one or two items, we cannot apply pivot, apply naive\n return naive_algo(rectangle, origin, items);\n };\n // Compute parameters (dimensions for the short and long sides)\n // of the enclosing rectangle\n let rect_params = parameters(rectangle);\n let long_dim = rect_params['long_dim'];\n let short_dim = rect_params['short_dim'];\n let long_pos = pos_dim[rect_params['long_dim']];\n let short_pos = pos_dim[rect_params['short_dim']];\n\n // Build an array with values in items\n let values = items.map(function(item) {return item.value;});\n // Build an array with areas proportional to values, fitting the rectangle\n let areas = split_proportional(rect_params['long']*rect_params['short'], values);\n\n // Compute pivot, and number of elements (length) for the three zones\n let [pivot, a1_len, a2_len, a3_len] = split_pivot_largest(rect_params['short'], areas);\n// console.log(\"Pivot algo results:\", pivot, items[pivot], items.slice(0, a1_len),\n// items.slice(pivot+1, pivot+1+a2_len),\n// items.slice(items.length-a3_len));\n\n let zones = [];\n\n // Compute data for zone 1\n let a1_width = 0;\n if (a1_len > 0) {\n let a1_slice = [0, a1_len];\n a1_width = compute_width(rect_params['short'], areas.slice(...a1_slice));\n let a1_depth = rect_params['short'];\n let a1_origin = [origin[long_pos], origin[short_pos]];\n let a1_rect = build_rect(rect_params, a1_width, a1_depth, ...a1_origin);\n let zone1 = {rect: a1_rect, items: items.slice(...a1_slice)};\n zones.push(zone1);\n console.log(\"Zone1: \", zone1);\n };\n\n // Compute data for zone 2 and pivot\n let a2_slice = [pivot+1, pivot+a2_len+1];\n let a2pivot_slice = [pivot, pivot+a2_len+1];\n let a2_width = compute_width(rect_params['short'], areas.slice(...a2pivot_slice));\n let pivot_depth = areas[pivot]/a2_width;\n let a2_depth = rect_params['short'] - pivot_depth;\n let pivot_origin = [origin[long_pos]+a1_width, origin[short_pos]+a2_depth];\n let a2_origin = [origin[long_pos]+a1_width, origin[short_pos]];\n let pivot_rect = build_rect(rect_params, a2_width, pivot_depth, ...pivot_origin);\n\n if (a2_len > 0) {\n let a2_rect = build_rect(rect_params, a2_width, a2_depth, ...a2_origin);\n zone2 = {rect: a2_rect, items: items.slice(...a2_slice)}\n zones.push(zone2);\n console.log(\"Zone2: \", zone2);\n };\n\n // Compute data for zone 3\n let a3_width = 0;\n if (a3_len > 0) {\n let a3_slice = [items.length-a3_len];\n a3_width = compute_width(rect_params['short'], areas.slice(...a3_slice));\n let a3_depth = rect_params['short'];\n let a3_origin = [origin[long_pos]+a1_width+a2_width, origin[short_pos]];\n let a3_rect = build_rect(rect_params, a3_width, a3_depth, ...a3_origin);\n let zone3 = {rect: a3_rect, items: items.slice(...a3_slice)};\n zones.push(zone3);\n console.log(\"Zone3: \", zone3);\n };\n\n // Get subrects, by recursively running the algorithm in all the zones\n let subrects = [pivot_rect]\n for (const zone of zones) {\n let rects = pivot_algo (zone.rect, {x: zone.rect.x, z: zone.rect.z}, zone.items);\n subrects = subrects.concat(rects);\n };\n return subrects;\n}", "function partitionCustom(list, pivot) {\n let leftList = []; // the left side of pivots\n let rightList = []; // the right side of pivot\n let pivotList = [];\n let pivotVal = list[pivot]\n for (let i = 0; i < list.length; i++){\n if(list[i] < pivotVal) leftList.push(list[i])\n else if(list[i] > pivotVal) rightList.push(list[i])\n else pivotList.push(pivotVal);\n }\n return [leftList, rightList, pivotList]\n}", "function arrangeListByPivot(list, start, len, pivotIndex) {\n for (let i = len - 2; i >= start; i--) {\n if (list[i] > list[pivotIndex]) {\n console.log(`list[i]=${list[i]}_list[pivotIndex]=${list[pivotIndex]}`);\n // do two swaps.\n if ((pivotIndex - i) != 1) {\n [list[pivotIndex], list[pivotIndex - 1]] = [list[pivotIndex - 1], list[pivotIndex]];\n console.log(`list #1: ${list.slice(start, len)}`)\n }\n\n [list[pivotIndex], list[i]] = [list[i], list[pivotIndex]];\n console.log(`list #2: ${list.slice(start, len)}`)\n\n // The new index for the pivot\n pivotIndex--;\n }\n }\n\n return pivotIndex;\n}", "function threeSplit(a) {\n const sum = a.reduce((a, b) => a + b);\n if (sum % 3 !== 0) {\n return 0;\n }\n const third = sum / 3;\n let ways = 0;\n let jStart = 2;\n for (let i = 1; i < a.length - 1; i++) {\n let firstSum = a.slice(0, i).reduce((a, b) => a + b);\n for (let j = jStart; j < a.length; j++) {\n if (firstSum !== third) {\n break;\n }\n let secondSum = a.slice(i, j).reduce((a, b) => a + b);\n if (secondSum !== third) {\n continue;\n }\n let thirdSum = a.slice(j).reduce((a, b) => a + b);\n if (thirdSum !== third) {\n continue;\n }\n if (firstSum === secondSum && secondSum === thirdSum) {\n ways++;\n }\n }\n jStart++;\n }\n return ways;\n}", "function find3Corners(sorted_candidates){\n if(sorted_candidates.length < 4){\n return undefined;\n }\n\n for(var i= 0; i < sorted_candidates.length-3; ++i){\n if(checkAreasRatio(sorted_candidates, i, i+3)){\n return [[sorted_candidates[i], sorted_candidates[i+1], sorted_candidates[i+2]],i];\n }\n }\n\n return undefined;\n}", "partition( offset, count, split ) {\n\n\t\tlet left = offset;\n\t\tlet right = offset + count - 1;\n\t\tconst pos = split.pos;\n\t\tconst axisOffset = split.axis * 2;\n\t\tconst index = this.geo.index.array;\n\t\tconst bounds = this.bounds;\n\t\tconst sahplanes = this.sahplanes;\n\n\t\t// hoare partitioning, see e.g. https://en.wikipedia.org/wiki/Quicksort#Hoare_partition_scheme\n\t\twhile ( true ) {\n\n\t\t\twhile ( left <= right && bounds[ left * 6 + axisOffset ] < pos ) {\n\n\t\t\t\tleft ++;\n\n\t\t\t}\n\n\t\t\twhile ( left <= right && bounds[ right * 6 + axisOffset ] >= pos ) {\n\n\t\t\t\tright --;\n\n\t\t\t}\n\n\t\t\tif ( left < right ) {\n\n\t\t\t\t// we need to swap all of the information associated with the triangles at index\n\t\t\t\t// left and right; that's the verts in the geometry index, the bounds,\n\t\t\t\t// and perhaps the SAH planes\n\n\t\t\t\tfor ( let i = 0; i < 3; i ++ ) {\n\n\t\t\t\t\tlet t0 = index[ left * 3 + i ];\n\t\t\t\t\tindex[ left * 3 + i ] = index[ right * 3 + i ];\n\t\t\t\t\tindex[ right * 3 + i ] = t0;\n\t\t\t\t\tlet t1 = bounds[ left * 6 + i * 2 + 0 ];\n\t\t\t\t\tbounds[ left * 6 + i * 2 + 0 ] = bounds[ right * 6 + i * 2 + 0 ];\n\t\t\t\t\tbounds[ right * 6 + i * 2 + 0 ] = t1;\n\t\t\t\t\tlet t2 = bounds[ left * 6 + i * 2 + 1 ];\n\t\t\t\t\tbounds[ left * 6 + i * 2 + 1 ] = bounds[ right * 6 + i * 2 + 1 ];\n\t\t\t\t\tbounds[ right * 6 + i * 2 + 1 ] = t2;\n\n\t\t\t\t}\n\n\t\t\t\tif ( sahplanes ) {\n\n\t\t\t\t\tfor ( let i = 0; i < 3; i ++ ) {\n\n\t\t\t\t\t\tlet t = sahplanes[ i ][ left ];\n\t\t\t\t\t\tsahplanes[ i ][ left ] = sahplanes[ i ][ right ];\n\t\t\t\t\t\tsahplanes[ i ][ right ] = t;\n\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\tleft ++;\n\t\t\t\tright --;\n\n\t\t\t} else {\n\n\t\t\t\treturn left;\n\n\t\t\t}\n\n\t\t}\n\n\t}", "function quicksort3(arr) {\n let n = arr.length;\n \n if (n <= 1) {\n return arr;\n }\n\n //finding the meadian of the first, middle, and last elements\n let pivotIndex = findMedian(arr);\n\n // swapping the first element with the median element\n let temp = arr[pivotIndex];\n arr[pivotIndex] = arr[0];\n arr[0] = temp;\n\n // choosing the first element as pivot\n let pivot = arr[0];\n\n let partitioned = partition(arr);\n let less = partitioned.less;\n let greater = partitioned.greater;\n console.log('here', comparisionCount);\n comparisionCount += (n - 1);\n return quicksort3(less).concat([pivot]).concat(quicksort3(greater));\n}", "partition( offset, count, split ) {\n\n\t\t\tlet left = offset;\n\t\t\tlet right = offset + count - 1;\n\t\t\tconst pos = split.pos;\n\t\t\tconst axis = split.axis;\n\t\t\tconst index = this.geo.index.array;\n\t\t\tconst centroids = this.centroids;\n\t\t\tconst bounds = this.bounds;\n\t\t\tconst sahplanes = this.sahplanes;\n\n\t\t\t// hoare partitioning, see e.g. https://en.wikipedia.org/wiki/Quicksort#Hoare_partition_scheme\n\t\t\twhile ( true ) {\n\n\t\t\t\twhile ( left <= right && centroids[ left * 3 + axis ] < pos ) {\n\n\t\t\t\t\tleft ++;\n\n\t\t\t\t}\n\n\t\t\t\twhile ( left <= right && centroids[ right * 3 + axis ] >= pos ) {\n\n\t\t\t\t\tright --;\n\n\t\t\t\t}\n\n\t\t\t\tif ( left < right ) {\n\n\t\t\t\t\t// we need to swap all of the information associated with the triangles at index\n\t\t\t\t\t// left and right; that's the verts in the geometry index, the centroids, the bounds,\n\t\t\t\t\t// and perhaps the SAH planes\n\n\t\t\t\t\tfor ( let i = 0; i < 3; i ++ ) {\n\n\t\t\t\t\t\tlet t0 = index[ left * 3 + i ];\n\t\t\t\t\t\tindex[ left * 3 + i ] = index[ right * 3 + i ];\n\t\t\t\t\t\tindex[ right * 3 + i ] = t0;\n\n\t\t\t\t\t\tlet t1 = centroids[ left * 3 + i ];\n\t\t\t\t\t\tcentroids[ left * 3 + i ] = centroids[ right * 3 + i ];\n\t\t\t\t\t\tcentroids[ right * 3 + i ] = t1;\n\n\t\t\t\t\t\tlet t2 = bounds[ left * 6 + i * 2 + 0 ];\n\t\t\t\t\t\tbounds[ left * 6 + i * 2 + 0 ] = bounds[ right * 6 + i * 2 + 0 ];\n\t\t\t\t\t\tbounds[ right * 6 + i * 2 + 0 ] = t2;\n\t\t\t\t\t\tlet t3 = bounds[ left * 6 + i * 2 + 1 ];\n\t\t\t\t\t\tbounds[ left * 6 + i * 2 + 1 ] = bounds[ right * 6 + i * 2 + 1 ];\n\t\t\t\t\t\tbounds[ right * 6 + i * 2 + 1 ] = t3;\n\n\t\t\t\t\t}\n\n\t\t\t\t\tif ( sahplanes ) {\n\n\t\t\t\t\t\tfor ( let i = 0; i < 3; i ++ ) {\n\n\t\t\t\t\t\t\tlet t = sahplanes[ i ][ left ];\n\t\t\t\t\t\t\tsahplanes[ i ][ left ] = sahplanes[ i ][ right ];\n\t\t\t\t\t\t\tsahplanes[ i ][ right ] = t;\n\n\t\t\t\t\t\t}\n\n\t\t\t\t\t}\n\n\t\t\t\t\tleft ++;\n\t\t\t\t\tright --;\n\n\t\t\t\t} else {\n\n\t\t\t\t\treturn left;\n\n\t\t\t\t}\n\n\t\t\t}\n\n\t\t}", "function arrangeListByPivot(list, start, end, pivotIndex) {\n for (let i = end - 1; i >= start; i--) {\n if (list[i] > list[pivotIndex]) {\n // do two swaps.\n if ((pivotIndex - i) != 1) {\n [list[pivotIndex], list[pivotIndex - 1]] = [list[pivotIndex - 1], list[pivotIndex]];\n }\n [list[pivotIndex], list[i]] = [list[i], list[pivotIndex]];\n // The new index for the pivot\n pivotIndex--;\n }\n }\n return pivotIndex;\n}", "function splitInto3Asteroids(x, y) {\n\t createSmallAsteroid(x, y);\n\t createSmallAsteroid(x, y);\n\t createSmallAsteroid(x, y);\n\t TOTAL_ASTEROID_CNT += 3;\n\t}", "function arrangeListByPivot(list, start, end, pivotIndex) {\n\n for (let i = end - 1; i >= start; i--) {\n\n if (list[i] > list[pivotIndex]) {\n \n // do two swaps.\n if ((pivotIndex - i) != 1) {\n [list[pivotIndex], list[pivotIndex - 1]] = [list[pivotIndex - 1], list[pivotIndex]];\n }\n\n [list[pivotIndex], list[i]] = [list[i], list[pivotIndex]];\n\n // The new index for the pivot\n pivotIndex--;\n\n }\n\n }\n\n return pivotIndex;\n\n}", "function pivot(array, start = 0, end = array.length + 1) {\n // basic swap function that takes two indexes and swaps them\n // created a function so that we can use it more than once easily\n // moving all of the lower elements right next to the first element that we are usign as a pivot\n function swap(array, i, j) {\n var temp = array[i];\n array[i] = array[j];\n array[j] = temp;\n }\n //setting a variable to equal the first element in our array\n var pivot = array[start];\n //keep track of where we are going to swap the pivot to, start at the begining\n var swapIndex = start;\n // Looping over our array, using start + 1 bc we already looked at the first element\n for (var i = start + 1; i < array.length; i++) {\n // comparing our set pivot to a single element out of our array, grabbing our lower than pivot elements\n if (pivot > array[i]) {\n // increasing our counter so we can keep track of how many elements are lower than our pivot\n swapIndex++\n // swapping the pivot element with the swapIndex, how many we counted are lower, and moving our pivot that amount in the array\n swap(array, swapIndex, i)\n }\n }\n // not swapping the pivot, pivot is the value, start is the index of that pivot\n swap(array, start, swapIndex)\n return swapIndex;\n}", "function pivotList(arr, pivot){\n var result1 = [];\n var result2 = [];\n \n for(var i = 0; i < arr.length; i++){\n if(arr[i] <= pivot){\n result1.push(arr[i]);\n }\n else{\n result2.push(arr[i]);\n }\n }\n \n return [result1, result2];\n\n}", "function W3quicks(a,l , r) \n{ \n if (r <= l) return; \n let i;\n let j; \n // Note that i and j are passed as reference \n partition(a, l, r, i, j); \n // Recur \n quicksort(a, l, j); \n quicksort(a, i, r); \n}", "split(){\n let newlist = [];\n let newlength = this.length / 3;\n let firstx = ((this.xend - this.x) / 3 ) + this.x;\n let firsty = ((this.yend - this.y) / 3 ) + this.y;\n let secondx = (2 * (this.xend - this.x) / 3 ) + this.x;\n let secondy = (2 * (this.yend - this.y) / 3 ) + this.y;\n // there are 2 parts who are at the same angle as the current line\n // for these we need only to calculate endpoints and lengths\n let firsttria = new TriangleFractal(this.x, this.y, newlength, this.angle);\n let fourthtria = new TriangleFractal(secondx, secondy, newlength, this.angle);\n newlist.push(firsttria);\n newlist.push(fourthtria);\n // thte second triangle has a new angle which we need te calculate\n // we want an extra 60 degress added to the angle = pi / 3\n let newangle = this.angle + (Math.PI / 3);\n let secondtria = new TriangleFractal(firstx, firsty, newlength, newangle);\n newlist.push(secondtria);\n //for the third triangle we need to calculate new beginpoints and a new angle\n let finx = secondtria.xend;\n let finy = firsty + newlength * Math.sin(newangle);\n let finangl = this.angle - (Math.PI / 3);\n let thirdtria = new TriangleFractal(finx, finy, newlength, finangl);\n newlist.push(thirdtria);\n return newlist;\n }", "function toAreas(state) {\n // A rowset is an array of sets of 3 rows\n // Each row is a colset: an array of sets of 3 values\n var rowsets = partition3(_.map(state, partition3))\n\n return _.mapcat(rowsets, function (colsets) {\n // We return an array of 3 areas\n // This operation is basically zip and concat\n return _.map(_.range(3), function (area) {\n return _.mapcat(colsets, function (valset) { return valset[area] })\n })\n })\n\n function partition3(arr) {\n return _.partitionn(arr, 3)\n }\n}", "function arragePivotPartition (A, start, end){\n var pivot = A[end];\n var indexPartition = start;\n for(var i=start; i<=end;i++){\n if(A[i] < pivot){\n var temp = A[indexPartition];\n A[indexPartition] = A[i];\n A[i] = temp;\n indexPartition++;\n }\n }\n A[end] = A[indexPartition];\n A[indexPartition] = pivot;\n \n return indexPartition;\n}", "_partition(a, lo, hi) {\n let i = lo;\n let j = hi + 1;\n\n const pivot = a[lo];\n\n while (true) {\n // find item on lo to swap\n while (this.comparator.lessThan(a[++i], pivot)) {\n if (i == hi) {\n break;\n }\n }\n\n // find item on hi to swap\n while (this.comparator.lessThan(pivot, a[--j])) {\n if (j == lo) {\n break; // redundant since a[lo] acts as sentinel\n }\n }\n\n // check if pointers cross\n if (i >= j) {\n break;\n }\n\n this._exch(a, i, j);\n }\n\n // put partitioning item pivot at a[j]\n this._exch(a, lo, j);\n\n // now, a[lo .. j-1] <= a[j] <= a[j+1 .. hi]\n return j;\n }", "function pivot(arr, start = 0, end = arr.length - 1) {\n const swap = (arr, idx1, idx2) => {\n [arr[idx1], arr[idx2]] = [arr[idx2], arr[idx1]]\n };\n\n let pivot = arr[start];\n let swapIndex = start;\n\n for (let i = start + 1; i <= end; i++) {\n // If pivot is greater that element at i increase the swap index and move element at i to the right of the pivot\n if (pivot > arr[i]) {\n swapIndex++;\n swap(arr, swapIndex, i);\n }\n }\n /* When all the elements are swaped next to the pivot swap the pivot with the el at swapIndex\n to place all of the elements that are lower then pivot to the left and the greater ones to the right */\n swap(arr, start, swapIndex);\n return swapIndex;\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Add permanent window scope script. Now with less giant strings without syntax highlighting!
function addWindowScript(fn, ident) { var script = document.createElement('script'); script.setAttribute("type", "application/javascript"); script.setAttribute("id", ident); script.textContent = fn.toString().slice(fn.toString().indexOf("{") + 1,-2); //KLUUUUUUDGE. document.head.appendChild(script); }
[ "function windowfy() {\n chrome.tabs.executeScript({\n code: `let SITES = ${JSON.stringify(sites)};`,\n });\n\n chrome.tabs.executeScript({\n file: \"js/windowfy.js\",\n });\n}", "function wrapScopes(script, scopes, _localScope) {\n\t\tif (_localScope) {\n\t\t\tscript = \"with(_localScope){\"+script+\"}\";\n\t\t}\n\t\tfor (var i=0; i<scopes.length; i++) {\n\t\t\tscript = \"with(_scopes[\"+i+\"]){\"+script+\"}\";\n\t\t}\n\t\tif (isDebug) console.log(\"wrapScopes:\"+script);\n\t\treturn script;\t\n\t}", "function inject(){\r\n wsDebug(\"Injecting wsTweak script\");\r\n var script=document.createElement(\"script\");\r\n txt=main.toString();\r\n if(window.opera!=undefined){\r\n txt=txt.replace(/</g,\"&lt;\");\r\n }\r\n script.innerHTML=\"(\"+txt+\")();\";\r\n script.type=\"text/javascript\";\r\n document.getElementsByTagName(\"head\")[0].appendChild(script);\r\n }", "function addScope(str) {\n var tmps = '__v(' + ((opTag && r == 'l') ? opTag : '');\n \n // from most close scope to root scope\n me.ctxScope.reverse().forEach(function (scope) {\n var dots = str.replace(/__SCOPE/g, scope).split(/\\./);\n tmps += aw(dots.reverse()) + ((opTag && r == 'r') ? opTag : '') + ',';\n });\n me.ctxScope.reverse();\n return tmps.slice(0, tmps.length - 1) + ')';\n }", "function setWindowPrefix()\n{\n // array of characters we will use to compose our window prefix code\n chars = Array(26);\n chars[0] = 'a'; chars[1] = 'b'; chars[2] = 'c'; chars[3] = 'd';\n chars[4] = 'e'; chars[5] = 'f'; chars[6] = 'g'; chars[7] = 'h';\n chars[8] = 'i'; chars[9] = 'j'; chars[10] = 'k'; chars[11] = 'l';\n chars[12] = 'm'; chars[13] = 'n'; chars[14] = 'o'; chars[15] = 'p';\n chars[16] = 'q'; chars[17] = 'r'; chars[18] = 's'; chars[19] = 't';\n chars[20] = 'u'; chars[21] = 'v'; chars[22] = 'w'; chars[23] = 'x';\n chars[24] = 'y'; chars[25] = 'z';\n\n // compose the six-character window prefix for this window. (Six\n // should be enough, since the odds of generating two identical ones are\n // less than 1 in 308,000,000. All we need is to not have two the same\n // for whatever windows (which use this javascript module) the user has\n // opened since restarting his browser. Otherwise, they start\n // over-writing any existing child windows from the window with the\n // matching prefix (via calls to newWindow()). (not fatal, just annoying)\n\n windowPrefix = \"\";\n for (i = 0; i < 6; i++) {\n\tindex = Math.round(Math.random() * 26);\t\t// random int 0..25\n\twindowPrefix = windowPrefix + chars[index]\n }\n return;\n}", "function inject_window_variable(name, value){\n var win = window.top.getBrowser().selectedBrowser.contentWindow.wrappedJSObject;\n win[name] = value;\n }", "function injectMain() {\r\n debug('Injecting WpkTweak');\r\n var script = document.createElement(\"script\"),\r\n txt = main.toString();\r\n if (typeof window.opera !== 'undefined') {\r\n txt = txt.replace(/</g, \"<\");\r\n }\r\n script.innerHTML = \"(\" + txt + \")();\";\r\n script.type = \"text/javascript\";\r\n document.getElementsByTagName(\"head\")[0].appendChild(script);\r\n }", "function addLexicalScopesToSource(sourceText) {\n /**\n * We use a `with` statement who uses `argments[0]`, which is the\n * `sandbox.globalProxy` that implements the shadowing mechanism as well as access to\n * any global variable.\n * Aside from that, the `this` value in sourceText will correspond to `sandbox.thisValue`.\n * We have to use `arguments` instead of naming them to avoid name collision.\n */\n // escaping backsticks to prevent leaking the original eval as well as syntax errors\n sourceText = sourceText.replace(/\\`/g, '\\\\`');\n return '\\n function ' + HookFnName + '() {\\n with(arguments[0]) {\\n return (function(){\\n \"use strict\";\\n return eval(`' + sourceText + '`);\\n }).call(this);\\n }\\n }\\n ';\n}", "function addShortcutsToScope(scope) {\n runtime.addElemsToScope(scope);\n plugins.addPluginsToScope(scope);\n}", "function showScope2() {\n scope = \"local\";\n return scope;\n}", "function DefaultScope() {}", "function DefaultScope(){}", "function _kn_uniqueWindowName()\n{\n var _l_new_name = null;\n\n // Clean up the location text & use it with a random number.\n if (document && document.location &&\n document.location.pathname &&\n (document.location.pathname.length > 0))\n {\n _l_new_name = document.location.pathname;\n\n // trim trailing slashes\n while (_l_new_name.charAt(_l_new_name.length - 1) == '/')\n {\n _l_new_name = _l_new_name.substring(0, _l_new_name.length - 1);\n }\n\n // trim everything except the last component\n var idx = _l_new_name.lastIndexOf('/');\n if (idx != -1)\n {\n _l_new_name = _l_new_name.substring(idx + 1);\n }\n\n // replace non-alphanumeric characters with underscore\n for (var i = 0; i < _l_new_name.length; i ++)\n {\n var cc = _l_new_name.charAt(i);\n if (! (\n cc >= \"0\" && cc <= \"9\"\n ||\n cc >= \"A\" && cc <= \"Z\"\n ||\n cc >= \"a\" && cc <= \"z\"\n ))\n {\n _l_new_name =\n _l_new_name.substring(0, i) +\n '_' +\n _l_new_name.substring(i + 1);\n }\n }\n }\n if (! _l_new_name)\n {\n _l_new_name = Math.random().toString().substring(2,10);\n }\n _l_new_name =\n \"kn_\" +\n _l_new_name +\n \"_\" +\n Math.random().toString().substring(2, 7);\n return _l_new_name;\n}", "function pushNameGenerationScope() {\n tempFlagsStack.push(tempFlags);\n tempFlags = 0;\n }", "function inject() {\n\t\tPakDebug('Injecting LoUPak script');\n\t\tvar script = document.createElement(\"script\");\n\t\ttxt = main.toString();\n\t\tif (window.opera != undefined) txt = txt.replace(/</g, \"&lt;\");\n\t\tscript.innerHTML = \"(\" + txt + \")();\";\n\t\tscript.type = \"text/javascript\";\n\t\tdocument.getElementsByTagName(\"head\")[0].appendChild(script);\n\t}", "function injectCssToWindow_() {\n const style = win.document.createElement('style');\n style.textContent = `${SWG_POPUP}`;\n win.document.head.appendChild(style);\n }", "function inject() {\r\n PakDebug('Injecting LoUPak script');\r\n var script = document.createElement(\"script\");\r\n txt = main.toString();\r\n if (window.opera != undefined) txt = txt.replace(/</g, \"&lt;\");\r\n script.innerHTML = \"(\" + txt + \")();\";\r\n script.type = \"text/javascript\";\r\n document.getElementsByTagName(\"head\")[0].appendChild(script);\r\n }", "pushScope() {\n this._vars.push(new Map());\n }", "function ts_WindowOnload()\r\n{\r\n\tts_AssignWindowName();\r\n\tts_AddEvent(window, 'focus', ts_AssignWindowName);\r\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
create random image for address section of Contact page
function randomAddressImage(){ var folderPath = "images/"; var fishes = ["cuttlefish.jpg", "killerwhale.jpg", "mandarinfish.jpg", "lionfish.jpg", "piranha.jpg", "tigershark.jpg"]; var randomFish = fishes[Math.floor(Math.random() * fishes.length)]; document.getElementById("addressImg").src = folderPath + randomFish; } // end randomAddressImage
[ "static fetchRandomImage() {\n let i = Math.floor(Math.random() * 4050) + 1;\n return `http://img.infinitynewtab.com/wallpaper/${i}.jpg`;\n }", "function randImg(el) {\n return 'url(https://source.unsplash.com/category/nature/' + el.width() + 'x' + el.height() + ')';\n }", "function randomCity(){ //selects our city image\n var y = Math.floor(Math.random() * cityDirectory.length);\n return y;\n}", "function landingpageRandomImage() {\n\tvar landingpageRandom = Math.floor(Math.random() * 9) + 1\n\tif (landingpageRandom < 10) {\n\t\tvar landingpageRandom = '0' + landingpageRandom\n\t}\n\tconsole.log(`Current Homepage Random Image: ${landingpageRandom}`)\n\tdocument.getElementById('landingpageRandomImage').src = `./assets/images/landing/${landingpageRandom}.jpg`\n}", "function districtPic() {\n document.getElementById('districtpic').setAttribute('src', `district/district${random1(11)}.jpg`)\n }", "function getRandomBusiness(){\n\n let random_business = Math.floor(Math.random() * businesses.length);\n document.getElementById(\"business\").innerHTML = businesses[random_business].type;\n\n //Generate four random pictures\n getRandomImages(4, random_business);\n}", "function getRandomProfilePicture() {\n var i = getRandomInt(1,4);\n switch(i) {\n case 1:\n return 'http://res.cloudinary.com/miocci/image/upload/v1486183879/mio-purp.jpg';\n case 2:\n return 'http://res.cloudinary.com/miocci/image/upload/v1486183879/mio-pink.jpg';\n case 3:\n return 'http://res.cloudinary.com/miocci/image/upload/v1486183879/mio-blue.jpg';\n default:\n return 'http://res.cloudinary.com/miocci/image/upload/v1486183879/mio-purp.jpg';\n }\n}", "function replacementImgBanner () {\n\t\tvar numbTotalImg = 3;\n\t\tvar num = Math.ceil(Math.random() * numbTotalImg);\n\t\t$( \".libraryInsperLogin\" ).css( \"background\", \"transparent url('../img/campus\" + num + \".jpg') no-repeat 10px center\" );\n\t}", "function randImage() {\n var r = Math.floor(Math.random() * 3) + 1;\n return \"e\" + r + \".png\";\n}", "generateSurveyAddress() {\n const now = new Date().getTime();\n const random = Math.floor((Math.random() * 1000000) + 1);\n const trytes = `${this.tag}IOTASURVEYADDRESS${Trytes.encodeTextAsTryteString(now.toString())}${Trytes.encodeTextAsTryteString(random.toString()) + Trytes.encodeTextAsTryteString(now.toString())}`;\n return trytes.slice(0, 81);\n }", "function getRandomImageUrl(options = {}) {\n const baseUrl = 'https://picsum.photos'\n const width = 200\n const height = 200\n const blur = '?blur=2'\n const grayscale = '?grayscale'\n const seed = options.seed ? `seed=${options.seed}` : ''\n\n return `${baseUrl}/${width}/${height}${blur}${grayscale}${seed}`\n}", "function generate() {\n let iw = vw+irandom(-50,50);\n let ih = vh+irandom(-50,50);\n //Using a random picture API because I didn't want to make a library\n img.src = \"https://picsum.photos/\"+iw+\"/\"+ih+\"?grayscale\";\n request();\n console.log(\"Generated with w: \"+iw+\" and h: \"+ih);\n}", "function getRandomImage(){\n\t// Get random image\n\tvar imageIndex= Math.floor(Math.random()*images.length);\n\tvar image= images[imageIndex];\n\tconsole.log(image)\n\tvar body = document.getElementById(\"body\");\n\tbody.style.backgroundImage = \"url('\" + image + \"')\";\n\n\t// Get random quote\n\tvar quoteIndex= Math.floor(Math.random()*quotes.length);\n\tvar quote = quotes[quoteIndex];\n\tvar quoteHeader = document.getElementById(\"quote\");\n\tquoteHeader.innerHTML = quote;\n\n}", "function randomizePicture() {\n\n // Bounded to 9 because there are 9 pics with the same name in public\\assets\\vectors\\user_avatars\n var random = Math.floor(Math.random() * 9 + 1);\n\n var path = \"assets/vectors/user_avatars/00\" + random + \"-man.svg\"; // This could be how it's saved in the DB if images can't be saved.\n\n $(user_img).attr(\"src\", path)\n\n}", "function findRandomPicture(){\n //Pick a random picture\n const imageIndex = Math.floor(Math.random() * 4) + 1;\n const imgUrl = 'images/both' + imageIndex + '.jpg';\n showImage(imgUrl);\n \n}", "function getImgURL() {\n const getLocation = Object.keys(places)[Math.floor(Math.random() * 7)];\n const ran = Math.floor(Math.random() * (places[getLocation].length));\n const imgURL = `https://api.flickr.com/services/rest/?method=flickr.photos.search&api_key=&tags=${places[getLocation][ran].name}&content_type=1&safe_search=1&sort=interestingness-desc&privacy_filter=1&format=json&nojsoncallback=1&per_page=20`;\n const data = {\n imgURL: imgURL,\n location: places[getLocation][ran]\n }\n\n return new Promise((resolve, reject) => {\n resolve(data);\n reject(\"Something went wrong\");\n })\n}", "function cambiar_img(){\n var aleatorio=Math.floor(Math.random()*feelings.length);\n return aleatorio;\n }", "function getRandomBG(page) {\r\n if (page == 'home') return page + '/bg' + String(Math.floor(1 + Math.random() * 5)) + '.jpg'; // 5 BG images\r\n else if (page == 'travel') return page + '/bg' + String(Math.floor(1 + Math.random() * 6)) + '.jpg'; // 6 BG images\r\n else if (page == 'projects') return page + '/bg' + String(Math.floor(1 + Math.random() * 3)) + '.jpg'; // 3 BG images\r\n else if (page == 'contact') return page + '/bg' + String(Math.floor(1 + Math.random() * 2)) + '.jpg'; // 2 BG images\r\n}", "function pickImage() {\n\n var index = Math.floor(Math.random() * 7);\n iconImg.setAttribute(\"src\", image[index] + \".png\");\n iconImg.setAttribute(\"alt\", descreption[index]);\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
replace the image tag with a inline svg
replaceImgTag (el, params) { let img = el.getElementsByClassName('svg')[0] img.style.fill = params.fill let w = params.width - params.padding * 2 let h = params.height - params.padding * 2 this.replaceWithSVG(img, w, h) }
[ "function inlineSVG () {\n // Thanks Modernizr & Erik Dahlstrom\n var w = window,\n svg = !!w.document.createElementNS && !!w.document.createElementNS(\"http://www.w3.org/2000/svg\", \"svg\").createSVGRect && !( w.opera && navigator.userAgent.indexOf(\"Chrome\") === -1 ),\n support = function(data) {\n if (!( data && svg )) {\n $(\"html\").addClass(\"ui-nosvg\");\n }\n },\n img = new w.Image();\n\n img.onerror = function() {\n support(false);\n };\n img.onload = function() {\n support(img.width === 1 && img.height === 1);\n };\n img.src = \"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==\";\n }", "function inlineSVG() {\n // Thanks Modernizr & Erik Dahlstrom\n var w = window,\n svg = !!w.document.createElementNS && !!w.document.createElementNS( \"http://www.w3.org/2000/svg\", \"svg\" ).createSVGRect && !( w.opera && navigator.userAgent.indexOf( \"Chrome\" ) === -1 ),\n support = function( data ) {\n if ( !( data && svg ) ) {\n $( \"html\" ).addClass( \"ui-nosvg\" );\n }\n },\n img = new w.Image();\n\n img.onerror = function() {\n support( false );\n };\n img.onload = function() {\n support( img.width === 1 && img.height === 1 );\n };\n img.src = \"data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==\";\n}", "function replaceSVG() {\n\tjQuery('img.makesvg').each(function(){\n\t\tvar $img = jQuery(this);\n\t\tvar imgID = $img.attr('id');\n\t\tvar imgClass = $img.attr('class');\n\t\tvar imgURL = $img.attr('src');\n\t\tjQuery.get(imgURL, function(data) {\n\t\t\t// Get the SVG tag, ignore the rest\n\t\t\tvar $svg = jQuery(data).find('svg');\n\t\n\t\t\t// Add replaced image's ID to the new SVG\n\t\t\tif(typeof imgID !== 'undefined') {\n\t\t\t\t$svg = $svg.attr('id', imgID);\n\t\t\t}\n\t\t\t// Add replaced image's classes to the new SVG\n\t\t\tif(typeof imgClass !== 'undefined') {\n\t\t\t\t$svg = $svg.attr('class', imgClass+' replaced-svg');\n\t\t\t}\n\t\n\t\t\t// Remove any invalid XML tags as per http://validator.w3.org\n\t\t\t$svg = $svg.removeAttr('xmlns:a');\n\t\t\t\n\t\t\t// Replace image with new SVG\n\t\t\t$img.replaceWith($svg);\n\n\t\t}, 'xml');\n\t});\n}", "function replaceIconSVG(name, content) {\n obsidian.addIcon(name, content);\n // Replace any icons that already exist in the dom\n document.querySelectorAll(`svg.${name}`).forEach((el) => {\n el.innerHTML = content;\n });\n}", "function svgReplace() {\n $('img.svg').each(function(){\n var $img = jQuery(this);\n var imgID = $img.attr('id');\n var imgClass = $img.attr('class');\n var imgURL = $img.attr('src');\n\n jQuery.get(imgURL, function(data) {\n // Get the SVG tag, ignore the rest\n var $svg = jQuery(data).find('svg');\n // Add replaced image's ID to the new SVG\n if(typeof imgID !== 'undefined') {\n $svg = $svg.attr('id', imgID);\n }\n // Add replaced image's classes to the new SVG\n if(typeof imgClass !== 'undefined') {\n $svg = $svg.attr('class', imgClass+' replaced-svg');\n }\n // Remove any invalid XML tags as per http://validator.w3.org\n $svg = $svg.removeAttr('xmlns:a');\n // Replace image with new SVG\n $img.replaceWith($svg);\n }, 'xml');\n });\n}", "function replaceSvgImgEmbed()\n{\n\tvar elms = document.querySelectorAll(\".svg_inline_hint\");\n\tfor (var i = 0; i < elms.length; i++)\n\t{\n\t\tif( elms[i].tagName.toLowerCase() == \"img\" )\n\t\t{\n\t\t\ttry {\n\t\t\t\tvar newItem = document.createElement(\"embed\"); \n\t\t\t\tvar a = elms[i].parentNode;\n\t\t\t\tnewItem.setAttribute(\"src\", elms[i].attributes[\"src\"].value);\n\t\t\t\tnewItem.setAttribute(\"type\",\"image/svg+xml\");\n\t\t\t\tnewItem.setAttribute(\"width\", elms[i].attributes[\"width\"].value);\n\t\t\t\tnewItem.setAttribute(\"height\",elms[i].attributes[\"height\"].value);\n\t\t\t\tnewItem.setAttribute(\"class\", elms[i].attributes[\"class\"].value);\n\t\t\t\ta.insertBefore(newItem,elms[i]);\n\t\t\t\telms[i].parentNode.removeChild(elms[i]);\n\t\t\t\tnewItem.addEventListener(\"load\", function() { replSvgThemeColors(newItem); }, false );\n\t\t\t} catch( err ) {\n\t\t\t\t// Do nothing if failure...\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\treplSvgThemeColors(elms[i]);\n\t\t}\n\t}\n}", "function edrea_tm_imgtosvg(){\n\t\n\t\"use strict\";\n\t\n\tjQuery('img.svg').each(function(){\n\t\t\n\t\tvar jQueryimg \t\t= jQuery(this);\n\t\tvar imgClass\t\t= jQueryimg.attr('class');\n\t\tvar imgURL\t\t\t= jQueryimg.attr('src');\n\n\t\tjQuery.get(imgURL, function(data) {\n\t\t\t// Get the SVG tag, ignore the rest\n\t\t\tvar jQuerysvg = jQuery(data).find('svg');\n\n\t\t\t// Add replaced image's classes to the new SVG\n\t\t\tif(typeof imgClass !== 'undefined') {\n\t\t\t\tjQuerysvg = jQuerysvg.attr('class', imgClass+' replaced-svg');\n\t\t\t}\n\n\t\t\t// Remove any invalid XML tags as per http://validator.w3.org\n\t\t\tjQuerysvg = jQuerysvg.removeAttr('xmlns:a');\n\n\t\t\t// Replace image with new SVG\n\t\t\tjQueryimg.replaceWith(jQuerysvg);\n\n\t\t}, 'xml');\n\n\t});\n}", "function albano_tm_imgtosvg(){\n\t\n\t\"use strict\";\n\t\n\tjQuery('img.svg').each(function(){\n\t\t\n\t\tvar jQueryimg \t\t= jQuery(this);\n\t\tvar imgClass\t\t= jQueryimg.attr('class');\n\t\tvar imgURL\t\t\t= jQueryimg.attr('src');\n\n\t\tjQuery.get(imgURL, function(data) {\n\t\t\t// Get the SVG tag, ignore the rest\n\t\t\tvar jQuerysvg = jQuery(data).find('svg');\n\n\t\t\t// Add replaced image's classes to the new SVG\n\t\t\tif(typeof imgClass !== 'undefined') {\n\t\t\t\tjQuerysvg = jQuerysvg.attr('class', imgClass+' replaced-svg');\n\t\t\t}\n\n\t\t\t// Remove any invalid XML tags as per http://validator.w3.org\n\t\t\tjQuerysvg = jQuerysvg.removeAttr('xmlns:a');\n\n\t\t\t// Replace image with new SVG\n\t\t\tjQueryimg.replaceWith(jQuerysvg);\n\n\t\t}, 'xml');\n\n\t});\n}", "function svgToPng() {\n $('.no-svg .js__svg-image').each(function() {\n var src = $(this).attr('src');\n src = src.replace(\"svg\", \"png\");\n $(this).attr('src', src);\n });\n }", "function insertSvgIcons() {\n const parser = new DOMParser();\n const elementsWithSvgIcon = document.querySelectorAll('[data-svg]');\n Array.from(elementsWithSvgIcon).forEach(async elementWithSvgIcon => {\n const svgUrl = browser.runtime.getURL(`options/${elementWithSvgIcon.dataset.svg}`);\n const response = await fetch(svgUrl);\n const responseData = await response.text();\n const svgImageElement = parser.parseFromString(responseData, 'image/svg+xml');\n const svgInline = document.createElementNS('http://www.w3.org/2000/svg', 'svg');\n svgInline.setAttribute('viewBox', svgImageElement.firstChild.getAttribute('viewBox'));\n Array.from(svgImageElement.children).forEach(child => svgInline.appendChild(child));\n elementWithSvgIcon.appendChild(svgInline);\n });\n}", "function replaceImgToSvg() {\n $('img.svg').each(function loop() {\n var $img = $(this);\n var imgID = $img.attr('id');\n var imgClass = $img.attr('class');\n var imgURL = $img.attr('src');\n var fillColor = $img.attr('fillColor');\n var strokeColor = $img.attr('strokeColor');\n $.get(imgURL, function load(data) {\n // Get the SVG tag, ignore the rest\n var $svg = $(data).find('svg');\n var $rect = $svg.find('rect');\n var $path = $svg.find('path');\n if ($rect[0] !== undefined) {\n $rect.css({ fill: fillColor, stroke: strokeColor });\n }\n if ($path[0] !== undefined) {\n $path.css({ fill: fillColor, stroke: strokeColor });\n }\n // Add replaced image's ID to the new SVG\n if (typeof imgID !== undefined) {\n $svg = $svg.attr('id', imgID);\n }\n // Add replaced image's classes to the new SVG\n if (typeof imgClass !== undefined) {\n $svg = $svg.attr('class', imgClass + ' replaced-svg');\n }\n // Remove any invalid XML tags as per http://validator.w3.org\n $svg = $svg.removeAttr('xmlns:a');\n // Replace image with new SVG\n $img.replaceWith($svg);\n }, 'xml');\n });\n}", "function replaceSVGs () {\n $('img[src$=\".svg\"]').each(function(){\n var $img = $(this),\n imgID = $img.attr('id'),\n imgStyle = $img.attr('style'),\n imgClass = $img.attr('class'),\n imgURL = $img.attr('src'),\n svgColor = $img.attr('data-js-svg-fill'),\n html;\n\n $.get(imgURL, function(data) {\n // Get the SVG tag, ignore the rest\n var $svg = $(data).find('svg');\n\n // Add replaced image's ID to the new SVG\n if(typeof imgID !== 'undefined') {\n $svg = $svg.attr('id', imgID);\n }\n // Add replaced image's classes to the new SVG\n if(typeof imgClass !== 'undefined') {\n $svg = $svg.attr('class', imgClass+' replaced-svg');\n }\n\n $svg = $svg.attr('style', imgStyle);\n\n /**\n * Replace all colors (black) inside the svg\n */\n if (svgColor) {\n html = $svg[0].innerHTML;\n html = html.replace(/#([a-fA-F0-9]){3}(([a-fA-F0-9]){3})?\\b/g, svgColor);\n $svg.html(html);\n }\n\n // Remove any invalid XML tags as per http://validator.w3.org\n $svg = $svg.removeAttr('xmlns:a');\n\n // Replace image with new SVG\n $img.replaceWith($svg);\n\n }, 'xml');\n });\n }", "function anzte_tm_imgtosvg(){\n\t\n\t\"use strict\";\n\t\n\tjQuery('img.svg').each(function(){\n\t\t\n\t\tvar jQueryimg \t\t= jQuery(this);\n\t\tvar imgClass\t\t= jQueryimg.attr('class');\n\t\tvar imgURL\t\t\t= jQueryimg.attr('src');\n\n\t\tjQuery.get(imgURL, function(data) {\n\t\t\t// Get the SVG tag, ignore the rest\n\t\t\tvar jQuerysvg = jQuery(data).find('svg');\n\n\t\t\t// Add replaced image's classes to the new SVG\n\t\t\tif(typeof imgClass !== 'undefined') {\n\t\t\t\tjQuerysvg = jQuerysvg.attr('class', imgClass+' replaced-svg');\n\t\t\t}\n\n\t\t\t// Remove any invalid XML tags as per http://validator.w3.org\n\t\t\tjQuerysvg = jQuerysvg.removeAttr('xmlns:a');\n\n\t\t\t// Replace image with new SVG\n\t\t\tjQueryimg.replaceWith(jQuerysvg);\n\n\t\t}, 'xml');\n\n\t});\n}", "function svgTag(src, attributes) {\n if (navigator.userAgent.toLowerCase().indexOf(\"msie\") != -1) {\n if (isSVGControlInstalled()) {\n return \"<embed pluginspage='http://www.adobe.com/svg/viewer/install/' src='\" + src + \"' \" + attributes +\"></embed>\";\n } else {\n return \"<p>Please install the <a href='http://www.adobe.com/svg/viewer/install/'>Adobe SVG Viewer</a> to get SVG support in IE</p>\";\n }\n } else {\n return \"<object data='\" + src + \"' type='image/svg+xml' \" + attributes + \"><p>No SVG support in your browser. Try Firefox 1.5 or newer or install the <a href='http://www.adobe.com/svg/viewer/install/'>Adobe SVG Viewer</a></p></object>\";\n }\n}", "function svgToImg(svgTag){\n let svg_xml = (new XMLSerializer()).serializeToString(svgTag);\n let img = new Image();\n img.src = \"data:image/svg+xml;base64,\" + window.btoa(svg_xml);\n return img;\n}", "function svgConverter() {\n jQuery('img.svg').each(function(){\n var $img = jQuery(this);\n var imgID = $img.attr('id');\n var imgClass = $img.attr('class');\n var imgURL = $img.attr('src');\n\n jQuery.get(imgURL, function(data) {\n // Get the SVG tag, ignore the rest\n var $svg = jQuery(data).find('svg');\n\n // Add replaced image's ID to the new SVG\n if(typeof imgID !== 'undefined') {\n $svg = $svg.attr('id', imgID);\n }\n // Add replaced image's classes to the new SVG\n if(typeof imgClass !== 'undefined') {\n $svg = $svg.attr('class', imgClass + ' replaced-svg');\n }\n\n // Remove any invalid XML tags as per http://validator.w3.org\n $svg = $svg.removeAttr('xmlns:a');\n\n // Replace image with new SVG\n $img.replaceWith($svg);\n updateElements();\n });\n });\n}", "function encodeAsImgAndLink(svg) {\n if ($.browser.msie) {\n // Add some critical information\n svg.setAttribute('version', '1.1');\n var dummy = document.createElement('div');\n dummy.appendChild(svg);\n window.winsvg = window.open('/static/html/export.html');\n window.winsvg.document.write(dummy.innerHTML);\n window.winsvg.document.body.style.margin = 0;\n } else {\n // Add some critical information\n svg.setAttribute('version', '1.1');\n svg.setAttribute('xmlns', 'http://www.w3.org/2000/svg');\n svg.setAttribute('xmlns:xlink', 'http://www.w3.org/1999/xlink');\n\n var dummy = document.createElement('div');\n dummy.appendChild(svg);\n\n var b64 = Base64.encode(dummy.innerHTML);\n\n //window.winsvg = window.open(\"data:image/svg+xml;base64,\\n\"+b64);\n var html = \"<img style='height:100%;width:100%;' src='data:image/svg+xml;base64,\" + b64 + \"' />\"\n window.winsvg = window.open();\n window.winsvg.document.write(html);\n window.winsvg.document.body.style.margin = 0;\n }\n}", "function replaceSVG() {\r\n $('img.svg').each(function(index, element) {\r\n element = $(element);\r\n var src = element.attr('src');\r\n element.attr('src', src.substr(0, src.length - 3) + 'png');\r\n });\r\n $('.svg').each(function(index, element) {\r\n element = $(element);\r\n var background = element.css('background-image');\r\n if (background) {\r\n var i = background.lastIndexOf('.svg');\r\n if (i >= 0) {\r\n background = background.substr(0, i) + '.png' + background.substr(i + 4);\r\n element.css('background-image', background);\r\n }\r\n }\r\n element.find('*').each(function(index, element) {\r\n element = $(element);\r\n var background = element.css('background-image');\r\n if (background) {\r\n var i = background.lastIndexOf('.svg');\r\n if (i >= 0) {\r\n background = background.substr(0, i) + '.png' + background.substr(i + 4);\r\n element.css('background-image', background);\r\n }\r\n }\r\n });\r\n });\r\n}", "function drawImage(svg, base64Img, x, y) {\n var i = createAndAppend(svg, 'image', {\n x:x,\n y:y,\n 'xlink:href':base64Img\n });\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
creat a greet person recieve a starting message (e.g. Hello, Hi) recieve a name Log out those two things combined Hello, Jane Hi, Greg
function greetPerson (startingMessage, personName){ var message = startingMessage + " " + personName; console.log (message); }
[ "function greet(greeting, name) {\n var sentence = 'how are you today?';\n console.log(greeting + ' ' + name + ' ' + sentence);\n}", "function greeter (name) {\n return \"Hoi \"+ name;\n}", "function greeter(name, number) {\n \n return \"Hi! I am \" + name + \" and I am \" + number + \" years old\";\n}", "sayHi(anotherPerson){\n // Write logic to chek that anotherPeron is a person\n // and return a correct greeting\n }", "function greet(name) {\n return \"Hello,\" + \" \" + name + \"!\"\n}", "function greet(name){\n if(name === \"Johnny\"){\n return \"Hello, my love!\"\n } else {\n return \"Hello, \" + name + \"!\";\n }\n}", "function sayHello (greeting, name){\nreturn greeting + \" \" + name\n}", "function greet (name, owner) {\n // Add code here\n if (name === owner){\n return 'Hello boss'\n}else{\n return 'Hello guest'\n }\n}", "function greet(nickname) {\n console.log(`Hi, ${nickname}!`);\n}", "function greet(name) {\n if (name === \"Johnny\") return \"Hello, my love!\";\n else return \"Hello, \" + name + \"!\";\n}", "function greet(firstName, lastName) {\n return \"Hello, \" + firstName + \" \" + lastName + \"!\";\n}", "function greetAFriend(friendName){\r\n console.log(`Hello, ${friendName}!`)\r\n }", "function greeter(firstName, lastName) {\n return `${firstName} ${lastName}`;\n}", "function createGreeter(name) {\n return {\n name: name,\n morning: 'Good Morning',\n afternoon: 'Good Afternoon',\n evening: 'Good Evening',\n greet: function (timeOfDay) {\n var msg = '';\n switch (timeOfDay) {\n case 'morning':\n msg += this.morning + ' ' + name;\n break;\n case 'afternoon':\n msg += this.afternoon + ' ' + name;\n break;\n case 'evening':\n msg += this.evening + ' ' + name;\n break;\n }\n\n console.log(msg);\n },\n };\n}", "function sendGreeting (user) {\n let initialGreetings = [\n `Hello, ${user.first_name}. We hope you're feeling disruptive today.`,\n `Hello, disruptor. We're glad you're here.`\n ]\n let secondaryGreetings = [\n `Yes, hello ${user.first_name}. We see you.`,\n 'You seem to like to say hello a lot.',\n `You've already said hi today, ${user.first_name}.`\n ]\n let returnGreetings = [\n `Welcome back, ${user.first_name}. We're glad to see you.`,\n `Hello again, ${user.first_name}. How can we help?`\n ]\n\n // Check if user has been greeted today\n let today = dateStamp(new Date())\n\n if (!user.hasOwnProperty('greeted_on')) {\n // Send initial greeting\n db.markGreetedOn(user, today)\n return api.sendTextMessage(user.id, choose(initialGreetings))\n } else if (user.greeted_on !== today) {\n // Send return greeting\n db.markGreetedOn(user, today)\n return api.sendTextMessage(user.id, choose([ ...initialGreetings, ...returnGreetings ]))\n }\n\n // Send secondary greeting - user has already said hello today!\n return api.sendTextMessage(user.id, choose(secondaryGreetings))\n}", "function greetingsHandler() {\n\n console.log('greetingsHandler');\n\n agent.add(`Ciao, sono Marcello, il tuo personal shopper`);\n agent.add(`Sono qui per aiutarti a trovare il prodotto più adatto a te`);\n agent.add(`Posso esserti utile in qualche modo?`);\n agent.add(new Suggestion(`Voglio esplorare le categorie`));\n agent.add(new Suggestion(`Ho in mente un prodotto specifico`));\n agent.add(new Suggestion(`Vorrei un consiglio`));\n}", "function greet (name, owner) {\n // Add code here\n return name == owner ? 'Hello boss' : 'Hello guest';\n}", "function greet (name, owner) {\n if (name === owner) return 'Hello boss'\n else return 'Hello guest'\n}", "function greet(name) {\n if(!name){return};\n const nameInLowerCase = name.split('').map(letter => {return letter.toLowerCase()});\n const firstLetterInCaps = name[0].toUpperCase();\n nameInLowerCase[0] = firstLetterInCaps;\n name = nameInLowerCase.join('');\n return `Hello ${name}!`;\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Set click handlers for the OAuth Start button Note: window.open can only be triggered in this way, you must set a click handler for this.
function setClickHandlers() { var link = document.getElementById('btnStart'); link.addEventListener('click', function(e) { // if the childWindow is already open, don't allow user to click the button if (childWindow !== null) { return false; } e.preventDefault(); toast('Contacting Foursquare...'); setTimeout(function(){ startOAuth(); }, 500); }); }
[ "function setClickHandlers() {\n\tconsole.log('set click handlers');\n\n\tvar link = document.getElementById('btnStart');\n\tlink.addEventListener('click', function(e) {\n\n\t\t// if the childWindow is already open, don't allow user to click the button\n\t\tif(childWindow !== null) {\n\t\t\treturn false;\n\t\t}\n\n\t\te.preventDefault();\n\t\ttoast('Contacting Facebook...');\n\t\tsetTimeout(function() {\n\t\t\tstartOAuth();\n\t\t}, 500);\n\t});\n}", "function setClickHandlers() {\n console.log('set click handlers');\n\n var link = document.getElementById('btnLogin');\n link.addEventListener('click', function(e) {\n\n // if the childWindow is already open, don't allow user to click the button\n if(childWindow !== null) {\n return false;\n }\n\n e.preventDefault();\n toast('Contacting Facebook...');\n setTimeout(function() {\n startOAuth();\n }, 500);\n });\n}", "startLogin() {\n this.clearAuth();\n this.oauthState = this.generateId();\n const url = `https://${process.env.DS_AUTH_SERVER}/oauth/auth?` +\n `response_type=token&` +\n `scope=signature%20me_profile&` +\n `client_id=${process.env.DS_CLIENT_ID}&` +\n `state=${this.oauthState}&` +\n `redirect_uri=${process.env.DS_APP_URL}/${oauthResponseHtml}` ;\n this.oauthWindow = window.open(url, \"_blank\")\n }", "startLogin() {\n const config = window.config;\n const oauthStateValue = OAuthImplicit.generateId();\n window.localStorage.setItem(oauthState, oauthStateValue); // store for when we come back\n let redirectUrl;\n if (config.DS_REDIRECT_AUTHENTICATION) {\n // Using redirect the window authentication:\n redirectUrl = config.DS_APP_URL;\n } else {\n // Using new tab authentication\n redirectUrl = `${config.DS_APP_URL}/${oauthResponseHtml}`;\n } \n\n const url =\n `${window.config.DS_IDP}/oauth/auth?` +\n `response_type=token&` +\n `scope=${window.config.IMPLICIT_SCOPES}&` +\n `client_id=${window.config.DS_CLIENT_ID}&` +\n `state=${oauthStateValue}&` +\n `redirect_uri=${encodeURIComponent(redirectUrl)}`;\n\n if (config.DS_REDIRECT_AUTHENTICATION) {\n // Using redirect the window authentication:\n window.location = url;\n } else {\n // Using new tab authentication:\n // Create a new tab for authentication\n this.oauthWindow = window.open(url, \"_blank\");\n } \n }", "function startOAuth() {\n\n\t// open the authorzation url\n var url = 'https://foursquare.com/oauth2/authenticate?client_id=' + foursquareOptions.clientId + '&response_type=token&display=touch&redirect_uri=' + foursquareOptions.redirectUri;\n childWindow = window.open(url, '_blank');\n\n // evaluate the url every second, when Foursquare redirects to our callback url, the following if statements gets fired\n\twindow.int = self.setInterval(function(){\n \tvar currentURL = childWindow.window.location.href;\n \tvar callbackURL = foursquareOptions.redirectUri;\n\t\tvar inCallback = currentURL.indexOf(callbackURL);\n\n\t\t// location has changed to our callback url, parse the oauth code\n\t\tif (inCallback == 0) {\n\n\t\t\t// stop the interval from checking for url changes\t\n\t\t\twindow.clearInterval(int)\n\n\t\t\t// parse the oauth code\n\t\t\tvar code = childWindow.window.location.href;\n\t\t\t\tcode = code.split('access_token=');\n\t\t\t\tcode = code[1];\n\t\t\twindow.accessToken = code;\n\n\t\t\t// close the childWindow\n\t\t\tchildWindow.close();\n\t\t\tsetTimeout(function(){ \n\t\t\t\tbb.pushScreen('connected.html', 'connected');\n\t\t\t}, 1000);\n\t\t}\n\t},1000);\n}", "function oauthpopup(options)\n{\n options.windowName = options.windowName || 'ConnectWithOAuth'; // should not include space for IE\n options.windowOptions = options.windowOptions || 'location=0,status=0,width=800,height=400';\n options.callback = options.callback || function(){ window.location.reload(); };\n var _oauthWindow = window.open(options.path, options.windowName, options.windowOptions);\n window.onAuth = function(args){\n options.callback(args.access_token)\n }\n}", "handleClick(){\n var urlBuilder = [];\n urlBuilder.push('response_type=code', `client_id=${config.google_client_id}`, `redirect_uri=${window.location.origin}/login/callback`, 'scope=profile email');\n const url = \"https://accounts.google.com/o/oauth2/v2/auth?\" + urlBuilder.join('&');\n // Open the popup window\n window.location.href = url;\n }", "function openSetupClickHandler() {\n openPopup();\n }", "function startOauth() {\n const qs = querystring.stringify({\n state,\n client_id: CLIENT_ID,\n response_type: 'code',\n redirect_uri: REDIRECT_URI,\n });\n\n open(`${AUTH_URL}?${qs}`);\n}", "function setOpenHandler() {\n getActionContext().addEventListener(\"click\", openHandler)\n }", "handle_start_button_click() {\n if (this.canvas_click_listener.is_on()) {\n this.canvas_click_listener.turn_off();\n }\n this.start_button_enter_key_listener.turn_off();\n this.view.get(EL.modal_dialogue).prompt(\n \"Please, insert the current study code. Keep\" +\n \" the default value if undecided.\\n\" +\n \"If you clicked by mistake, press Cancel.\",\n \"default\",\n $.proxy(function (input) {\n // noinspection JSPotentiallyInvalidUsageOfClassThis\n this.send_ajax_gp_sample_request(input);\n console.log(\"Moving line cursor to last know position\");\n // noinspection JSPotentiallyInvalidUsageOfClassThis\n this.handle_canvas_mouse_move(this.mouse_pos);\n }, this),\n $.proxy(function () {\n this.start_button_enter_key_listener.turn_on();\n }, this)\n );\n }", "startAuth(e) {\n e.preventDefault()\n this.popup = this.openPopup()\n }", "function onPopupRedirectGenericProviderClick() {\n var providerId = $('#popup-redirect-generic-providerid').val();\n var provider = new OAuthProvider(providerId);\n signInWithPopupRedirect(provider);\n}", "function openStatusPage () {\n oauth.authorize( function () {\n setIcon();\n chrome.tabs.create( { 'url' : c2gUrl } );\n } );\n}", "function twitterOAuth() {\n\t// open popup window and pass field id\n\twindow.open('/auth/twitter', 'popuppage', 'width=600,toolbar=1,resizable=1,scrollbars=yes,height=400,top=100,left=100');\n}", "static addClickListenerOnPublisherSignInButton_() {\n self.document\n .getElementById(PUBLISHER_SIGN_IN_BUTTON_ID)\n .addEventListener('click', (e) => {\n e.preventDefault();\n\n callSwg((swg) => swg.triggerLoginRequest({linkRequested: false}));\n });\n }", "function initLinkedIn() {\n $('#linkedin-dialog')[0].open();\n $('#linkedin-submit-button')\n .text('Submit')\n .attr('onclick', 'processLinkedIn()');\n}", "fbLogin(){\n /*OAUTH INITIALIZE*/\n OAuth.initialize('06xEp9h-x2w58YbIALBrQWD-UJw');\n\n OAuth.popup('facebook').done(function(result) {\n /*HANDLE RESULT*/ \n})\n}", "function popup() {\n LinkedINAuth();\n IN.Event.on(IN, \"auth\", function() {\n onLinkedInLogin();\n });\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
send a webRTC offer to the client via the webserver
function webRtcSendOffer(clientName, offerValue) { if (typeof thisPeersName != "string") { console.log("Please set peer name before calling this function"); return; } var xhttp = new XMLHttpRequest(); xhttp.onreadystatechange = function() { if (xhttp.readyState == 4 && xhttp.status == 200) { //see if there is a client asking to connect if (typeof xhttp.responseText == "string" && xhttp.responseText.length > 0) { ; } } }; var full = location.protocol+'//'+location.hostname+(location.port ? ':'+location.port: ''); //xhttp.open("GET", "http://" + window.location.host + "/ioInterface?command=getOtsValues", true); var message = {messageType: 'offer', offer: offerValue}; var url = full + "/webrtc?command=writeMessage&clientName=" + thisPeersName + "&destinationName=" + clientName + "&message=" + btoa(JSON.stringify(message)); //console.log(url.length, url); xhttp.open("GET", url, true); xhttp.send(); }
[ "function createAndSendOffer() {\n peerConn.createOffer(\n (offer) => {\n const { sdp, type } = offer.toJSON();\n\n const modifiedSdp = {\n type,\n sdp: h264Checkbox.checked\n ? stripCodecs(sdp, ['VP8', 'VP9'])\n : sdp, //stripCodecs(sdp, ['H264']),\n };\n\n peerConn.setLocalDescription(\n offer,\n () => { wsConn.send(JSON.stringify({ sdp: modifiedSdp })); },\n console.error\n );\n },\n console.error\n );\n}", "function sendRenegotiationOffer(sdp, url) {\n log('Renegotiation SDP offer:\\n', sdp);\n // cache operation id\n var operationId = guid();\n outAvRenegoOpIds[operationId] = \"\";\n return ucwa.send('POST', url, {\n headers: { 'Content-Type': 'application/sdp' },\n query: { operationId: operationId },\n data: sdp,\n nobatch: true\n });\n }", "async function sendOffer() {\n \n // create an offer, store it in the local-description and \n // send it to streaming sink\n // The connecitonID is not used for now.\n connectionState.connectionID = Math.ceil( Math.random()*10000000 );\n connectionState.state = \"sentOffer\";\n connectionState.offer = await peerConnection.createOffer();\n await peerConnection.setLocalDescription(connectionState.offer);\n\n // Put `connectionState` to the server.\n await putToServer(connectionState);\n\n log_elt.innerHTML += \"Sent OFFER to remote peer\\n\";\n}", "function createAndSendOffer() {\r\n peerConnection.createOffer((offer) => {\r\n sendData({\r\n type: \"offer\",\r\n offer: offer\r\n })\r\n\r\n peerConnection.setLocalDescription(offer) // save the offer in the sender's session\r\n }, (error) => {\r\n console.log(error)\r\n })\r\n}", "function onOffer(con, data) {\n console.log(con.name + \" (board's owner) sends webrtc offer to \" + data.client_username + \" (client)\");\n\n var targetConnection = users[data.client_username];//the connection to the board's owner\n\n sendTo(targetConnection, {\n type: \"offer\",\n offer: data.offer,\n board_owner: con.name\n });\n}", "function sendOffer(offers) {\n assert(offers.length > 0);\n // construct content that contains all offers given by the media plugin\n function createOfferOptions(context) {\n var boundary = '9BCE36B8-2C70-44CA-AAA6-D3D332ADBD3F', mediaOffer, options = { nobatch: true };\n if (isConferencing()) {\n if (escalateAudioVideoUri) {\n mediaOffer = Internal.multipartSDP(offers, boundary);\n options = {\n headers: {\n 'Content-Type': 'multipart/alternative;boundary=' + boundary +\n ';type=\"application/sdp\"',\n 'Content-Length': '' + mediaOffer.length\n },\n query: {\n operationId: operationId,\n sessionContext: sessionContext\n },\n data: mediaOffer,\n nobatch: true\n };\n }\n else {\n options.data = Internal.multipartJsonAndSDP({\n offers: offers,\n boundary: boundary,\n operationId: operationId,\n sessionContext: sessionContext,\n threadId: conversation.threadId(),\n context: context\n });\n options.headers = {\n 'Content-Type': 'multipart/related;boundary=' + boundary +\n ';type=\"application/vnd.microsoft.com.ucwa+json\"'\n };\n }\n }\n else {\n // P2P mode\n options.data = Internal.multipartJsonAndSDP({\n to: remoteUri,\n offers: offers,\n boundary: boundary,\n operationId: operationId,\n sessionContext: sessionContext,\n threadId: conversation.threadId(),\n context: context\n });\n options.headers = {\n 'Content-Type': 'multipart/related;boundary=' + boundary +\n ';type=\"application/vnd.microsoft.com.ucwa+json\"'\n };\n }\n if (context)\n extend(options.headers, { 'X-MS-RequiresMinResourceVersion': 2 });\n return options;\n }\n return async(getStartAudioVideoLink).call(null).then(function (link) {\n var options = createOfferOptions(link.revision >= 2 && invitationContext), dfdPost, dfdCompleted;\n dfdPost = ucwa.send('POST', link.href, options).then(function (r) {\n // POST to startAudioVideo/addAudioVideo returns an empty response with an AV invitation\n // URI in the Location header. The UCWA stack constructs and returns an empty resource\n // with href set to that URI.\n if (!rAVInvitation)\n rAVInvitation = r;\n });\n // wait for the \"audioVideoInvitation completed\" event that corresponds to the given conversation\n dfdCompleted = ucwa.wait({\n type: 'completed',\n target: { rel: 'audioVideoInvitation' },\n resource: { direction: 'Outgoing', threadId: conversation.threadId(), operationId: operationId, sessionContext: sessionContext }\n }).then(function (event) {\n if (event.status == 'Failure') {\n // if remote SIP uri is invalid we won't receive \"audioVideoInvitation started\" event,\n // thus we won't have a full rAVInvitation resource cached. It will be either undefined or\n // just an empty resource with an href returned by a response to startAudioVideo POST (if\n // that response arrived before this event). So we cache the invitation resource here,\n // since it may be used by other event handlers.\n rAVInvitation = event.resource;\n // Technically we may need to complete the negotiation if it was started (i.e. if the call\n // reached the remote party and was declined).\n completeNegotiation(event.status, event.reason);\n throw Internal.EInvitationFailed(event.reason);\n }\n completeNegotiation(event.status, event.reason);\n });\n return Task.waitAll([dfdPost, dfdCompleted]);\n });\n }", "function sendOffers(){\n // trace('sending offers to ' + Object.keys(peers));\n Object.keys(peers).forEach(function(pid){\n var recipient = pid;\n var sender = myPid;\n //Add a media stream to peer connection\n // media(peers[pid].pc);\n peers[pid].onLocalIceCandidates(function(candidate){\n RtcSock.socket.emit('ice', {\n candidate:candidate,\n recipient:recipient,\n sender:myPid,\n room:room});\n });\n\n peers[pid].sendOffer(function(offer){\n RtcSock.socket.emit('offer', {\n offer:offer,\n sender:sender,\n recipient:recipient,\n room:room});\n });\n });\n }", "function offer() {\n pc.createOffer()\n .then(function(offer) {\n console.log(\"Offer created!\");\n return pc.setLocalDescription(offer);\n })\n .then(function() {\n console.log(\n \"Placing the offer in the database under \" +\n targetUsername.value +\n \" username\"\n );\n sendToServer(\n targetUsername.value,\n username.value,\n \"video-offer\",\n JSON.stringify(pc.localDescription)\n );\n });\n }", "function webRtcCreateAnswer(offer,clientName) {\r\n\tif (typeof thisPeersName != \"string\") {\r\n\t\tconsole.log(\"Please set peer name before calling this function\");\r\n\t\treturn;\r\n\t}\r\n\t\r\n console.log(\"webRtcCreateAnswer\", clientName, thisPeersName, webRtcClients);\r\n \r\n webRtcClients[clientName] = {};\r\n \r\n var client = webRtcClients[clientName];\r\n client.clientId = clientName;\r\n client.webRtcDc = null;\r\n client.webRtcSc = null;\r\n client.webRtcPc = new RTCPeerConnection(webRtcConfig)\r\n client.webRtcLive = false;\r\n client.webRtcPc.ondatachannel = function(e) {\r\n\t\tif(client.webRtcDc) {\r\n\t\t\tclient.webRtcSc = e.channel;\r\n\t\t\t//scInit(client);\r\n\t\t}\r\n\t\telse {\r\n\t\t\tclient.webRtcDc = e.channel;\r\n\t\t\twebRtcDcInit(client);\r\n\t\t}\r\n };\r\n\r\n client.webRtcNegotiated = false; // work around FF39- not self-firing negotiationneeded\r\n client.webRtcPc.onnegotiationneeded = e => {\r\n client.webRtcNegotiated = true;\r\n client.webRtcPc.createOffer().then(d => client.webRtcPc.setLocalDescription(d)).then(() => {\r\n if (client.webRtcLive) client.webRtcSc.send(JSON.stringify({ \"sdp\": client.webRtcPc.localDescription }));\r\n }).catch(webRtcFailed);\r\n };\r\n\r\n if (client.webRtcPc.signalingState != \"stable\") return;\r\n //button.disabled = offer.disabled = true;\r\n var obj = { type:\"offer\", sdp:offer };\r\n client.webRtcPc.setRemoteDescription(new RTCSessionDescription(obj))\r\n .then(() => client.webRtcPc.createAnswer()).then(d => client.webRtcPc.setLocalDescription(d))\r\n .catch(webRtcFailed);\r\n client.webRtcPc.onicecandidate = e => {\r\n if (e.candidate) return;\r\n if (!client.webRtcLive) {\r\n //answer.focus();\r\n //answer.value = webRtcPc.localDescription.sdp;\r\n //answer.select();\r\n console.log(\"Answer: \", client.webRtcPc.localDescription.sdp);\r\n var xhttp = new XMLHttpRequest();\r\n xhttp.onreadystatechange = function() {\r\n if (xhttp.readyState == 4 && xhttp.status == 200) {\r\n ;\r\n }\r\n };\r\n var full = location.protocol+'//'+location.hostname+(location.port ? ':'+location.port: ''); \r\n \r\n var messageObj = {messageType: \"answer\", answer: client.webRtcPc.localDescription.sdp};\r\n //xhttp.open(\"GET\", \"http://\" + window.location.host + \"/ioInterface?command=getOtsValues\", true);\r\n console.log(\"send message to: \", clientName);\r\n xhttp.open(\"GET\", full + \"/webrtc?command=writeMessage&clientName=\" + thisPeersName + \"&destinationName=\" + clientName + \"&message=\" + btoa(JSON.stringify(messageObj)), true);\r\n xhttp.send();\t \r\n //send the answer to the engineList\r\n \r\n \r\n } else {\r\n webRtcSc.send(JSON.stringify({ \"candidate\": e.candidate }));\r\n }\r\n };\r\n}", "generateOffer (offer) {\n return this.client.generateOfferWebRTCEndpoint(this)\n }", "function sendOfferSignal() {\n peerConnection.createOffer(function(offer) {\n sendSignal(offer);\n peerConnection.setLocalDescription(offer);\n }, function(error) {\n alert(\"Error creating an offer\");\n });\n}", "function handleOffer(offer, name) {\r\n otherconn = name; \r\n yourConn.setRemoteDescription(new RTCSessionDescription(offer));\r\n \r\n //create an answer to an offer \r\n yourConn.createAnswer(function (answer) { \r\n yourConn.setLocalDescription(answer); \r\n \r\n send({ \r\n meta: \"answer\", \r\n answer: answer \r\n }); \r\n \r\n }, function (error) { \r\n alert(\"Error when creating an answer\"); \r\n $('#callBtn').prop('disabled', false);\r\n }); \r\n }", "function sendOfferToCallee() {\n sendToServer({\n type: 'offer',\n offer: caller_peer_connect.localDescription\n });\n // console.log('reciveCallerOffer();');\n // console.log(JSON.stringify(caller_peer_connect.localDescription));\n // reciveCallerOffer(caller_peer_connect.localDescription);\n}", "function onOfferReceived(data) {\n console.log(\"Receive WebRTC offer from the board owner: \" + data.board_owner);\n\n goToPage3();//go to drawing board.\n\n boardOwnerUsername = data.board_owner;\n\n preparePeerConnection();\n peerConnection.setRemoteDescription(new RTCSessionDescription(data.offer));\n //addJoiner(data.sender); //add the username of the sender\n\n //creates answer and reply to the board's owner\n peerConnection.createAnswer(function (answer) {\n console.log(\"WebRTC Answer the offer of the board's owner \" + data.board_owner);\n peerConnection.setLocalDescription(answer);\n sendToWebSocketServer({\n type: \"webRTCAnswer\",\n //success: true,\n answer: answer,\n board_owner: data.board_owner\n });\n }, function (error) {\n console.log(\"error in reply to the sender who sent the request to join the board\");\n });\n}", "function handleOffer(offer) {\n peerConnection\n .setRemoteDescription(new RTCSessionDescription(offer));\n\n // create and send an answer to an offer\n peerConnection.createAnswer(function(answer) {\n peerConnection.setLocalDescription(answer);\n sendSignal(answer);\n }, function(error) {\n alert(\"Error creating an answer\");\n });\n\n}", "function startWebRTCConnection(isOfferer)\n{\n webRTCConnection = new RTCPeerConnection(configuration);\n\n //'onicecandidate' will notify us whenever an ICE agent needs to deliver a message to the other peer through the signaling server\n webRTCConnection.onicecandidate = event => {\n if (event.candidate)\n {\n sendSignalingData({'candidate': event.candidate});\n }\n };\n\n //Create chatchannel to send messages between two peers\n createChatChannel();\n\n //If peer is offerer, then let the 'negotiationneeded' event create the offer and set the local description\n if (isOfferer)\n {\n webRTCConnection.onnegotiationneeded = () => {\n webRTCConnection.createOffer().then(localDescCreated).catch(onError);\n }\n }\n\n //When the remote stream arrives, it will be displayed in the #remoteVideo element\n webRTCConnection.ontrack = event => {\n const stream = event.streams[0];\n if (!remoteVideo.srcObject || remoteVideo.srcObject.id !== stream.id)\n {\n remoteVideo.srcObject = stream;\n }\n };\n\n //Get the peer's (our) local video and audio stream\n navigator.mediaDevices.getUserMedia({\n audio: true,\n video: true,\n })\n .then(stream => {\n //Display the peer's (our) local video in #localVideo element\n localVideo.srcObject = stream;\n //Add the local stream (our) to be sent to the conneting/other peer\n stream.getTracks().forEach(track => webRTCConnection.addTrack(track, stream));\n }, onError);\n\n //Listen to signaling data from Scaledrone\n room.on('data', (message, client) => {\n //If the message was sent by us, we return\n if (client.id === scaleDrone.clientId)\n {\n return;\n }\n\n if (message.sdp)\n {\n //calls method to check if it is the correct chat channel and to properly/finish setting this up\n acceptChatChannel();\n\n //The remote description will be set after recieving an offer from another peer\n webRTCConnection.setRemoteDescription(new RTCSessionDescription(message.sdp), () => {\n //we create an answer (if what we recieved was an offer) and sets the local description.\n if (webRTCConnection.remoteDescription.type === 'offer')\n {\n webRTCConnection.createAnswer().then(localDescCreated).catch(onError);\n }\n }, onError);\n }\n else if (message.candidate)\n {\n //We add the new ICE candidate to the connections remote description\n webRTCConnection.addIceCandidate(new RTCIceCandidate(message.candidate), onSuccess, onError);\n }\n });\n}", "function sendOffer(connectToUser) {\n\tconsole.log('Sending offer to peer :',connectToUser );\n\tconnectedUsers[connectToUser].createOffer(function(sdp){\n\t\tsetLocalAndSendMessage(sdp,connectToUser,'offer')},handleCreateOfferError);\n}", "function RTCPeerConnection(options) {\n var w = window,\n PeerConnection = w.mozRTCPeerConnection || w.webkitRTCPeerConnection,\n SessionDescription = w.mozRTCSessionDescription || w.RTCSessionDescription,\n IceCandidate = w.mozRTCIceCandidate || w.RTCIceCandidate;\n\n var STUN = {\n iceServers: [{\n url: !moz ? 'stun:stun.l.google.com:19302' : 'stun:23.21.150.121'\n }\n ]\n },\n TURN = {\n iceServers: [{\n url: 'turn:webrtc%40live.com@numb.viagenie.ca',\n credential: 'muazkh'\n }\n ]\n };\n\n var optional = {\n optional: []\n };\n\n if (!moz) {\n optional.optional = [{\n DtlsSrtpKeyAgreement: true\n }\n ];\n\n if (options.onChannelMessage)\n optional.optional = [{\n RtpDataChannels: true\n }\n ];\n }\n\n var peerConnection = new PeerConnection(location.search.indexOf('turn=true') !== -1 ? TURN : STUN, optional);\n\n var dataPorts = getPorts();\n openOffererChannel();\n\n peerConnection.onicecandidate = onicecandidate;\n\n function onicecandidate(event) {\n if (!event.candidate || !peerConnection) return;\n if (options.onICE) options.onICE(event.candidate);\n }\n\n var constraints = options.constraints || {\n optional: [],\n mandatory: {\n OfferToReceiveAudio: !! moz,\n OfferToReceiveVideo: !! moz\n }\n };\n\n function createOffer() {\n if (!options.onOfferSDP) return;\n\n peerConnection.createOffer(function (sessionDescription) {\n peerConnection.setLocalDescription(sessionDescription);\n options.onOfferSDP(sessionDescription);\n }, null, constraints);\n }\n\n function createAnswer() {\n if (!options.onAnswerSDP) return;\n\n options.offerSDP = new SessionDescription(options.offerSDP);\n peerConnection.setRemoteDescription(options.offerSDP);\n\n peerConnection.createAnswer(function (sessionDescription) {\n peerConnection.setLocalDescription(sessionDescription);\n options.onAnswerSDP(sessionDescription);\n\n /* signaling method MUST be faster; otherwise increase \"300\" */\n moz && options.onChannelMessage && setTimeout(function () {\n peerConnection.connectDataConnection(dataPorts[0], dataPorts[1]);\n }, 300);\n }, null, constraints);\n }\n\n if ((options.onChannelMessage && !moz) || !options.onChannelMessage) {\n createOffer();\n createAnswer();\n }\n\n var channel;\n\n function openOffererChannel() {\n if (!options.onChannelMessage || (moz && !options.onOfferSDP)) return;\n\n if (!moz) _openOffererChannel();\n else peerConnection.onconnection = _openOffererChannel;\n\n if (moz && !options.attachStream) {\n navigator.mozGetUserMedia({\n audio: true,\n fake: true\n }, function (stream) {\n peerConnection.addStream(stream);\n createOffer();\n }, useless);\n }\n }\n\n function _openOffererChannel() {\n channel = peerConnection.createDataChannel(\n options.channel || 'RTCDataChannel',\n moz ? {} : {\n reliable: false\n });\n setChannelEvents();\n }\n\n function setChannelEvents() {\n channel.onmessage = function (event) {\n if (options.onChannelMessage) options.onChannelMessage(event);\n };\n\n channel.onopen = function () {\n if (options.onChannelOpened) options.onChannelOpened(channel);\n };\n channel.onclose = function (event) {\n if (options.onChannelClosed) options.onChannelClosed(event);\n };\n channel.onerror = function (event) {\n console.error(event);\n if (options.onChannelError) options.onChannelError(event);\n };\n }\n\n if (options.onAnswerSDP && moz) openAnswererChannel();\n\n function openAnswererChannel() {\n peerConnection.ondatachannel = function (_channel) {\n channel = _channel;\n channel.binaryType = 'blob';\n setChannelEvents();\n };\n\n if (moz && !options.attachStream) {\n navigator.mozGetUserMedia({\n audio: true,\n fake: true\n }, function (stream) {\n peerConnection.addStream(stream);\n createAnswer();\n }, useless);\n }\n }\n\n function useless() {}\n\n function getPorts(ports) {\n if (!moz || !options.onChannelMessage) return false;\n ports = ports || options.dataPorts || [5000, 5001];\n console.log('--------using data ports: ', ports[0], ' and ', ports[1]);\n return ports;\n }\n\n var video_constraints = {\n mandatory: {},\n optional: []\n };\n\n function getUserMedia(options) {\n var n = navigator,\n media;\n n.getMedia = n.webkitGetUserMedia || n.mozGetUserMedia;\n n.getMedia(options.constraints || {\n audio: true,\n video: video_constraints\n }, streaming, options.onerror || function (e) {\n console.error(e);\n });\n\n function streaming(stream) {\n var video = options.video;\n if (video) {\n video[moz ? 'mozSrcObject' : 'src'] = moz ? stream : window.webkitURL.createObjectURL(stream);\n video.play();\n }\n options.onsuccess && options.onsuccess(stream);\n media = stream;\n }\n\n return media;\n }\n\n return {\n addAnswerSDP: function (sdp, _dataPorts) {\n sdp = new SessionDescription(sdp);\n peerConnection.setRemoteDescription(sdp, function () {\n if (moz && options.onChannelMessage) {\n var ports = getPorts(_dataPorts);\n peerConnection.connectDataConnection(ports[1], ports[0]);\n }\n });\n },\n addICE: function (candidate) {\n peerConnection.addIceCandidate(new IceCandidate({\n sdpMLineIndex: candidate.sdpMLineIndex,\n candidate: candidate.candidate\n }));\n },\n\n peer: peerConnection,\n channel: channel,\n sendData: function (message) {\n channel && channel.send(message);\n }\n };\n}", "dispatchOffer (peer) {\n peer.pc.createOffer(sessionDescription => {\n peer.pc.setLocalDescription(sessionDescription);\n this.socket.emit('offer', peer, sessionDescription);\n }, reportError, {\n mandatory: {\n OfferToReceiveAudio: true,\n OfferToReceiveVideo: true\n }\n });\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Write a function that does not take any argument, and it returns your favorite movie as a string. "console.log" the result
function favoriteMovie() { console.log("Harry Potter"); }
[ "function tellFavouriteMovie() {\n var movie = \"The Matrix\";\n console.log(movie);\n}", "function starWarsFan() {\n const movie = 'Star Wars';\n return movie;\n}", "function movie (favMoovie) {\n\tconsole.log(favMoovie.title + \" lasts for \" + favMoovie.duration + \" minutes. \" + \"Stars:\" + favMoovie.Stars + \".\");\n}", "function movies(){\n console.log(\"One of my favorite movies is \" + FaveMovies[0] + \".\");\n}", "function favFood(food) {\n return \"My favorite food is \" + food;\n}", "function displayMovie(movie){\n console.log(movie.title + \" by \" + movie.director +\". Released in \" + movie.year + \". Length in Minutes: \" + movie.lengthOfFilm +\". Rating: \" + movie.rating + \".\")\n}", "function favoriteIceCream(ice_cream) {\n return `I love ${ice_cream}`;\n}", "function favorites(favFood, favDessert){\n return `My favorite food is ${favFood} and my favorite dessert is ${favDessert}`;\n}", "function likeDogs() {\n return \"I like dogs, woof.\";\n}", "function imdb(movie) {\n\n console.log(\" imdb\")\n}", "function movie() {\n if (process.argv[3] === undefined) {\n title = \"Mr.+Nobody\";\n movieInfo();\n } else if (title !== undefined) {\n titleSplit = title.split(\" \");\n title = titleSplit.join(\"+\");\n movieInfo();\n };\n}", "function printDilwale()\n{\n console.log(\"Dilwale Movie sucks!!!\");\n}", "static loveDisneyMovies(){\n return `I love Disney movies!`;\n }", "function ex22(){\n console.clear();\n console.log(\"result is \" + movie.director);\n}", "function favFood(){\n return `My favorite food is ${food}`\n }", "function food (favFood, favDessert) {\n return `My favorite food is ${favFood} and my favorite dessert is ${favDessert}.`;\n}", "function findGenre(mood){\n mood = mood.replace(':','');\n return movieGenre(mood);\n}", "function dinner(favFood, favDessert){\n return `I finished my ${favFood}, how about some ${favDessert} ?`;\n }", "function starWarsFan() {\n const movie = 'Star Wars'; // local scope of the variable movie\n return movie; // The global value of movie still is 'Lord of the Rings'\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Try to discover the location of the mesh server only once
function discoverMeshServerOnce() { var interfaces = os.networkInterfaces(); for (var adapter in interfaces) { if (interfaces.hasOwnProperty(adapter)) { for (var i = 0; i < interfaces[adapter].length; ++i) { var addr = interfaces[adapter][i]; multicastSockets[i] = dgram.createSocket({ type: (addr.family == 'IPv4' ? 'udp4' : 'udp6') }); multicastSockets[i].bind({ address: addr.address, exclusive: false }); if (addr.family == 'IPv4') { try { multicastSockets[i].addMembership(membershipIPv4); //multicastSockets[i].setMulticastLoopback(true); multicastSockets[i].once('message', OnMulticastMessage); multicastSockets[i].send(settings.serverid, 16989, membershipIPv4); } catch (e) { } } } } } }
[ "function discoverMeshServer() { console.log('Looking for server...'); discoveryInterval = setInterval(discoverMeshServerOnce, 5000); discoverMeshServerOnce(); }", "function discoverMeshServer() { console.log(\"Looking for server...\"); discoveryInterval = setInterval(discoverMeshServerOnce, 5000); discoverMeshServerOnce(); }", "function discoverMeshServerOnce() {\n var interfaces = os.networkInterfaces();\n for (var adapter in interfaces) {\n if (interfaces.hasOwnProperty(adapter)) {\n for (var i = 0; i < interfaces[adapter].length; ++i) {\n var addr = interfaces[adapter][i];\n multicastSockets[i] = dgram.createSocket({ type: (addr.family == \"IPv4\" ? \"udp4\" : \"udp6\") });\n multicastSockets[i].bind({ address: addr.address, exclusive: false });\n if (addr.family == \"IPv4\") {\n try {\n multicastSockets[i].addMembership(membershipIPv4);\n //multicastSockets[i].setMulticastLoopback(true);\n multicastSockets[i].once('message', OnMulticastMessage);\n multicastSockets[i].send(settings.serverid, 16989, membershipIPv4);\n } catch (e) { }\n }\n }\n }\n }\n}", "async function checkPeerLocations() {\n try {\n // Get first peer that we don't know if we have a location for it\n const statusUnknown = liveData.rpc.peers\n .find(peer => !peerLocationsChecked.includes(peer.addr));\n if (statusUnknown) {\n // Don't check this peer again\n peerLocationsChecked.push(statusUnknown.addr);\n\n // See if we have peer in database\n const [ipAddress, port] = statusUnknown.addr.split(':');\n const knownPeer = await knex('peer').where('ip_address', ipAddress).andWhere('port', port).first();\n if (!knownPeer) {\n await knex('peer').insert({\n ip_address: ipAddress,\n port,\n });\n }\n\n // See if we have location in database\n const knownLocation = await knex('geolocation').where('ip_address', ipAddress).first();\n if (!knownLocation) {\n // No existing record - ask geolocation service for address\n const apiAddress = await axios.get(`http://ip-api.com/json/${ipAddress}`);\n if (apiAddress.status === 200) {\n const { data } = apiAddress;\n await knex('geolocation').insert({\n ip_address: ipAddress,\n location_fetched: new Date(),\n country: data.country,\n country_code: data.countryCode,\n region: data.region,\n region_name: data.regionName,\n city: data.city,\n zip: data.zip,\n lat: data.lat,\n lon: data.lon,\n proxy: data.proxy,\n timezone: data.timezone,\n isp: data.isp,\n org: data.org,\n as: data.as,\n });\n }\n }\n }\n } catch (err) {\n console.log('Error checking peer location: ', err.message);\n }\n\n // Check next peer in a second\n setTimeout(checkPeerLocations, 1000);\n}", "function getServerTargetUrl(path)\n{\n var x = require('MeshAgent').ServerUrl;\n //sendConsoleText(\"mesh.ServerUrl: \" + mesh.ServerUrl);\n if (x == null) { return null; }\n if (path == null) { path = ''; }\n x = http.parseUri(x);\n if (x == null) return null;\n return x.protocol + '//' + x.host + ':' + x.port + '/' + path;\n}", "function serversFound() {\r\n\tif(typeof(localStorage.ServerSwitch) == 'undefined') {\r\n\t\treturn false;\r\n\t} else {\r\n\t\treturn true;\r\n\t}\t\r\n}", "function checkForServerExistence() {\n function serverIsOn(e) {\n if (e.status !== 'online') {\n return serverIsOff();\n }\n\n document.getElementById('not-connected').style.display = 'none';\n document.getElementById('connected').style.display = 'flex';\n }\n\n function serverIsOff() {\n document.getElementById('connected').style.display = 'none';\n document.getElementById('not-connected').style.display = 'flex';\n }\n\n\n request({ type: 'GET', url: endpoints.IS_ALIVE })\n .then(serverIsOn)\n .catch(serverIsOff);\n}", "function getServerTargetUrl(path) {\n var x = mesh.ServerUrl;\n //sendConsoleText(\"mesh.ServerUrl: \" + mesh.ServerUrl);\n if (x == null) { return null; }\n if (path == null) { path = ''; }\n x = http.parseUri(x);\n if (x == null) return null;\n return x.protocol + '//' + x.host + ':' + x.port + '/' + path;\n }", "function findMasterFn() {\n var obj = {\n url: 'http://' + config.balancerIp + ':' + config.balancerPort + config.balancerSubPath,\n method: 'GET'\n };\n\n var res = syncRequest('GET', obj.url);\n\n if(JSON.parse(res.getBody('utf8')).status=== \"ACK\")\n master.setMasterServerIp(JSON.parse(res.getBody('utf8')).masterIp); // utf8 convert body from buffer to string\n else {\n console.log(\"there isn't a master in this fog\");\n }\n}", "serverCheck(server) {\n if(!this.serverExists(server)) {\n console.log(`Initializing ${server.name}`);\n this.newServer(server);\n } \n }", "function meshPing(self)\n{\n Object.keys(self.lines).forEach(function(line){\n var hn = self.lines[line];\n // have to be elected or a line induced by the app\n if(!hn.elected && !hn.forApp) return;\n // approx no more than once a minute\n if(Date.now() - hn.sentAt < 45*1000) return;\n // seek ourself to discover any new hashnames closer to us for the buckets\n send(self, hn, {js:{seek:self.hashname, see:nearby(self, hn.hashname)}});\n });\n}", "async initBeforeSync() {\n this.__rootNetworkAddress = await this.db.getData('rootNetworkAddress'); \n\n if(!this.options.server) {\n return;\n }\n \n await this.checkNodeAddress(this.address);\n }", "checkExists(socket){\n\n let ip = this.getIp(socket);\n\n let existingClient = null;\n\n // if client exists this will find it\n existingClient = this._clients.get(ip)\n\n // if superficial search found client\n if(existingClient){\n console.logDD('DEBUG',`Lobby Exists`);\n // return client\n return existingClient\n } else {\n // searching other rooms too\n for(let room of this.rooms){\n // searching rooms \"client collection\" object\n existingClient = room._clients.get(ip)\n // if found in this room return it\n if(existingClient){\n console.logDD('DEBUG',`Room Exists ${room.roomKey}`);\n return existingClient;\n }\n }\n\n }\n\n console.logDD('DEBUG',`Client New ${ip}`);\n\n // otherwise return null;\n return null;\n }", "__init() {this.socketPathnames = new Set()}", "function impServer() {\r\n\t\tServer = window.location.host;\r\n\t\tvar temp = Server.split('.');\r\n\t\ttemp = temp[1];\t\r\n\t\t}", "function init_server_info(){\r\n\r\n\t// Get TW_World\r\n\tvar tmp = location.href.replace(/http:\\/\\//, \"\").split(\".\");\r\n\tTW_World = tmp[0];\r\n\r\n\t// Get TWT World\r\n\tTWT_World = TW_World;\r\n\tif(TW_World.substring(0, 2) == \"en\") TWT_World = \"net\" + TW_World.substring(2);\r\n\r\n\t// Get TW_Domain\r\n\ttmp = location.href.replace(/http:\\/\\//, \"\").split(\"/\");\r\n\tTW_Domain = \"http://\" + tmp[0];\r\n\r\n\t// Get TW_DotWhat\r\n\ttmp = tmp[0].split(\".\");\r\n\tTW_DotWhat = tmp[tmp.length - 1];\r\n\r\n\t// Build unique string to identify a specific world on a specific server\r\n\tTW_Hash = TW_World + \"_\" + TW_DotWhat;\r\n\r\n\t// Get language; default to \"en\"\r\n\tTW_Lang = lng[TW_DotWhat];\r\n\tif(!TW_Lang) TW_Lang = lng[\"en\"];\r\n\r\n\t// Get screen\r\n\tvar tmp = location.href.match( /screen=([^&]+)/ );\r\n\tTW_Screen = (tmp && tmp[1]) ? tmp[1] : null;\r\n\r\n\t// Get mode\r\n\tvar tmp = location.href.match( /mode=([^&]+)/ );\r\n\tTW_Mode = (tmp && tmp[1]) ? tmp[1] : null;\r\n}", "function StartServer (){\n\t\t\n Network.InitializeServer(maxPlayers, 25001, !Network.HavePublicAddress);\n MasterServer.RegisterHost(\"Star_Arena\", serverNameField); \n}", "function initLocationMatches() {\n // If the location step is enabled fetch location matches\n if(isLocationStepEnabled) {\n locationsMatchingServices.getLocationsMatches({topologyId: deploymentTopologyDTO.topology.id, environmentId: $scope.environment.id}, function(result) {\n locationsMatchingServices.processLocationMatches($scope, result.data);\n });\n }\n }", "function networkCheck() {\n if (clientData.dynamicSpeed > clientData.dynamicMax) {\n clientData.networkSpeed = false;\n optimal.location = 'client';\n } else if (!clientData.dynamicSpeed) {\n clientData.missingDeviceInfo = true;\n } else optimal.location = 'server';\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Returns [windowStart, windowEnd] given a windowLength.
makeWindow(windowLength, windowUnits) { windowUnits = "days"; if (windowUnits === "days") { let currentDate = new Date(); let nDaysAgo = new Date(); nDaysAgo.setDate(currentDate.getDate() - windowLength); return [nDaysAgo, currentDate]; } }
[ "function window_window(windowBoundaries) {\n return function windowOperatorFunction(source) {\n return source.lift(new WindowOperator(windowBoundaries));\n };\n}", "function _slidingWindow(arr, windowSize) {\n var lastEntry = arr.length - windowSize;\n /* istanbul ignore if */\n if( lastEntry < 0 ) {\n throw new Error('windowSize bigger than array');\n }\n\n return _.range(0,lastEntry + 1).map(function(idx) {\n return arr.slice(idx,idx+windowSize);\n });\n}", "_window(i)\n {\n const arr = this._rawData;\n const win = this._win || (this._win = new Float32Array(this._windowSize));\n const n = arr.length;\n const w = win.length;\n const wOver2 = w >> 1;\n const head = this._head;\n const tail = (head + 1) & (n - 1);\n\n for(let j = 0, k = -wOver2; k <= wOver2; k++) {\n let pos = i + k;\n\n // boundary conditions:\n // reflect values\n if(i <= head){\n if(pos > head)\n pos = head + (head - pos);\n }\n else {\n if(pos < tail)\n pos = tail + (tail - pos);\n }\n if(pos < 0)\n pos += n;\n else if(pos >= n)\n pos -= n;\n\n win[j++] = arr[pos];\n }\n\n return win;\n }", "function slidingWindow (S) {\n\n}", "function findSlidingMaxWindow(arr, windowSize) {\n\t// TODO:\n}", "function rangeFromIndexAndOffsets(i, before, after, length) {\n return {\n // Guard against the negative upper bound for lines included in the output.\n from: i - before > 0 ? i - before : 0,\n to: i + after > length ? length : i + after\n };\n}", "function findOffset(bigWindow, start, length, threshold) {\n var offset = 0;\n while (offset < length && Math.abs(bigWindow[offset + start]) < threshold) {\n offset += 1;\n }\n return offset;\n }", "function get_intervals(data_row,window_size){\n var intervals = [];\n var interval = [];\n for (i=0; i<data_row.length;i++){\n //if ((i+1)<window_size){\n //for (j=0;j<(window_size-i);j++){\n //interval.push(data_row[0]);\n //interval.concat(data_row.slice(0,i));\n //}\n //} else {\n if ((i+1)>window_size){\n interval = data_row.slice(i-window_size,i);\n intervals.push(interval);\n }\n }\n return intervals\n}", "function GetRectanglesRange(_rectangle_Width, _rectangle_height, _frameWidth, _frameHeight) {\n return [-_rectangle_Width, -_rectangle_height,\n _frameWidth + _rectangle_Width,\n _frameHeight + _rectangle_height];\n}", "function range(rangeLength) {\n var result = new Array();\n for (var i=0; i<rangeLength; i++) {\n \tresult.push(i);\n }\n return result;\n}", "computeRenderWindow(data) {\n var _data$buffer, _data$maxRenderWindow;\n\n const buffer = Math.max((_data$buffer = data.buffer) !== null && _data$buffer !== void 0 ? _data$buffer : 1, 1);\n const maxRenderWindowLowerBound = 1 + 2 * buffer;\n let offset = Math.max(Math.min(data.offset, data.currentPage - buffer), 0);\n let windowLength = Math.max(data.offset + data.windowLength, data.currentPage + buffer + 1) - offset;\n let maxRenderWindow = (_data$maxRenderWindow = data.maxRenderWindow) !== null && _data$maxRenderWindow !== void 0 ? _data$maxRenderWindow : 0;\n\n if (maxRenderWindow !== 0) {\n if (maxRenderWindow < maxRenderWindowLowerBound) {\n console.warn(`maxRenderWindow too small. Increasing to ${maxRenderWindowLowerBound}`);\n maxRenderWindow = maxRenderWindowLowerBound;\n }\n\n if (windowLength > maxRenderWindow) {\n offset = data.currentPage - Math.floor(maxRenderWindow / 2);\n windowLength = maxRenderWindow;\n }\n }\n\n return {\n offset,\n windowLength\n };\n }", "function slidingWindow(arr, w) {\n let max = [];\n \n if(arr.length < w) return \"window too large\";\n \n for(let i = 0; i < arr.length; i++) {\n let sliced = arr.slice(i, w+i);\n if(sliced.length === w) {\n max.push(findMax(sliced));\n } else {\n return max;\n }\n }\n \n}", "static getIndexStringList(win, timerange) {\n const pos1 = util.windowPositionFromDate(win, timerange.begin());\n const pos2 = util.windowPositionFromDate(win, timerange.end());\n const indexList = [];\n if (pos1 <= pos2) {\n for (let pos = pos1; pos <= pos2; pos++) {\n indexList.push(`${win}-${pos}`);\n }\n }\n return indexList;\n }", "function linspace(start, end, npts) {\n var vals = [];\n var diff = (end - start) / (npts - 1);\n for (var i = 0; i < npts; i++)\n\tvals.push(start + i*diff);\n return vals;\n}", "GetPeriodicHann(windowLength) {\n if (!hannWindowMap[windowLength]) {\n const window = [];\n // Some platforms don't have M_PI, so define a local constant here.\n for (let i = 0; i < windowLength; ++i) {\n window[i] = 0.5 - 0.5 * Math.cos((2 * Math.PI * i) / windowLength);\n }\n hannWindowMap[windowLength] = window;\n }\n return hannWindowMap[windowLength];\n }", "function findStartAndEndDate() {\n return [dayOfLastWeek(1), dayOfLastWeek(0)];\n}", "function WindowEndpoint(start, points) {\n this.points = points;\n // The index of the last passed point.\n this.lastIndex = -1;\n // The position of the end-point in the time line.\n this.position = start;\n // The distance until the next point.\n this.distanceUntilNextPoint = points[0].position - start;\n // The cumulative duration of GC pauses until this position.\n this.cummulativePause = 0;\n // The number of entered GC intervals.\n this.stackDepth = 0;\n }", "function findMaxSlidingWindow(arr, windowSize) {\n var result = [];\n const window = []\n\n if (arr.length == 0) {\n return result;\n }\n\n if (windowSize > arr.length) {\n return result;\n }\n\n for (let i = 0; i < arr.length; i++) {\n for (let j = 0; j < window.length; j++) {\n if (arr[i] > window[j]) {\n window[j] = arr[i]\n }\n }\n\n if (i <= arr.length - windowSize) {\n window.push(arr[i])\n }\n\n if (window.length === windowSize || i > arr.length - windowSize) {\n result.push(window.shift())\n }\n }\n\n return result;\n}", "consecutiveNumbers ({start,end,length}) {\n if (length>2) {\n\t\t\tlet arr = [];\n\t\t\tarr.push(start);\n\t\t\tfor (let i=0; i<length-2; i++){\n\t\t\t\tlet next = start+(end-start)*(i+1)/(length-1);\n\t\t\t\tarr.push(next);\n\t\t\t}\t\n\t\t\tarr.push(end);\n\t\t\treturn arr;\n\t\t} else {\n\t\t return undefined;\n\t }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
A public function that accepts a string argument and updates the `message` storage variable.
function update(string memory newMessage) public { string memory oldMsg = message; message = newMessage; emit UpdatedMessages(oldMsg, newMessage); }
[ "handleMessage(name) {\r\n const newMessage = `You just pet the ${name}`;\r\n this.setState({message: newMessage})\r\n }", "addNewMessage(username, content, type) {\n let oldName = this.state.currentUser.name;\n if (oldName !== username){\n var check = {\n type : 'postNotification',\n content : `${oldName} changed their name to ${username}`\n }\n // Changes the oldName to the new Username\n oldName = username\n this.connection.send(JSON.stringify(check))\n }\n const message = {\n type,\n id: UUID.v4(),\n username,\n content,\n userColor: this.state.userColor\n };\n this.connection.send(JSON.stringify(message));\n\n }", "function updatePremadeMessage(message) {\n // TODO functionality to toggle status of a message incl error handling\n}", "sendMessage() {\n const { message } = this.props;\n const mymessage = message;\n core.sendMessage({ message: mymessage });\n }", "handleMessage(message = '', ...args) {\n const parsed = parseArgs(message, this.parseOptions);\n parsed.text = message;\n return super.handleMessage(parsed, ...args);\n }", "function updateMessage() {\n\tvar elMessage = document.getElementById('message');\n\telMessage.textContent = msg;\n}", "function setMsg(msg)\n{\n var msgRef = document.getElementById('messageField');\n msgRef.textContent = msg;\n}", "function updateMessage() {\n var el = document.getElementById('message');\n el.textContent = msg;\n}", "process (message) {\n if (typeof message === 'string') {\n return { message: { text: message } }\n } else {\n return { message: message }\n }\n }", "cacheTextChannelMessage(channelID, message, userID, timePosted)\n {\n //var newMessage = this.generateChannelMessage(message, userID, timePosted);\n var newMessage = {message: message, userID: userID, timePosted: timePosted};\n this.textChannels[channelID].recordMessage(newMessage);\n }", "userSend(message) {\n // Our Input class will handle cleaning / normalizing strings\n this.Input.send(message);\n this.decidePath(this.Input.value);\n }", "function setMessage(message) {\n const messageLabel = document.getElementById('message');\n messageLabel.innerHTML = '\\n\\n' + message;\n }", "function setMessage(str) {\n\tvar messageElem = document.getElementById(\"message\");\n\tremoveAllChildren(messageElem);\n\tappendText(str, messageElem);\n}", "function editMessage(message1, message2) {\n // TODO functionality to edit a message incl error handling\n}", "newMessage(user, message) {\n // Preventing blank messages\n if(message === '') {\n return false;\n }\n // Dispatching the action with an object that consists of the user, message and a timetamp\n this.dispatch({\n user: user,\n content: message,\n timestamp: Date.now()\n });\n }", "get message() {\n var msg = this.msg;\n if (!isinstance(msg, String))\n msg = string(this.msg);\n if (this.args)\n msg = msg.subs(this.args);\n return msg;\n }", "function getMessage(text){\r\n //do nothing. Overwrite in local client\r\n} // end getMessage", "function updateMessage(msg, cb) {\n //make sure that message is defined and has the _id attr.\n if(msg && msg._id) {\n //verify that the message hasn't changed since you started editing it.\n msg.text = original.text;\n MessageService.messageChanged(msg._id, original, function() {\n //update the message.\n MessageService.updateMessage(msg).success(function(data) {AlertService.addAlert(\"success\", \"Successfully Updated Message:\\n\"+msg.name); if(cb) {cb();};}).error(function(data) {AlertService.addAlert(\"danger\", \"Error:\\n\"+data.msg); if(cb) {cb();};});\n }, function() {\n //alert the user that the message has changed since they opened the edit window.\n alert(\"Error Message Changed while you were editing it you will need to reload the edit window before saving any changes.\");\n }, function(data){\n // there was an error saving the message.\n alert(\"Error Saving Message. \"+data.status);\n });\n }\n }", "set message(message) {\n const message_p = document.querySelector(\"#fd_message\");\n this.options.message = message;\n\n if (message != null) {\n if (message_p == null) {\n // does not exist. create a new message element.\n const flackdialogcontent = document.querySelector(\"#fd_content\");\n this.__addMessage(flackdialogcontent, message);\n \n } else {\n // already exists. just update the message.\n message_p.innerHTML = message;\n } \n\n } else {\n if (message_p != null) message_p.remove();\n }\n \n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Helper function: Create API node.
function makeApiNode(apiData, meaningfulName) { let node = makeNode(false); node.apiData = apiData; node.meaningfulName = meaningfulName; return node; }
[ "function createAndFillApiNode(apiInstance, groupApiData) {\n\t/**\n\t * Should've called cloneAndReplaceVars() here but for some reason\n\t * the K6 engine crashes when I do.\n\t */\n\tlet instanceApiData = {\n\t\tname: groupApiData.name,\n\t\tgroupApiData: groupApiData.groupApiData,\n\t\tconfigObject: groupApiData.configObject,\n\t\tpath: groupApiData.path,\n\t\tparentApiData: groupApiData.parentApiData,\n\t\tid: apiInstance.id,\n\t};\n\tlet meaningfulName = apiInstance.id;\n\tif (!no(apiInstance.name)) {\n\t\tmeaningfulName = apiInstance.name;\n\t}\n\tif (!no(apiInstance.key)) {\n\t\tmeaningfulName = apiInstance.key;\n\t}\n\tif (!no(apiInstance.native_id)) {\n\t\tmeaningfulName = apiInstance.native_id;\n\t}\n\tif (!no(apiInstance.login_id)) {\n\t\tmeaningfulName = apiInstance.login_id;\n\t}\n\tif (!no(apiInstance.unique_id)) {\n\t\tmeaningfulName = apiInstance.unique_id;\n\t}\n\tif (!no(apiInstance.handle)) {\n\t\tmeaningfulName = apiInstance.handle;\n\t}\n\tif (!no(apiInstance.address)) {\n\t\tmeaningfulName = apiInstance.address;\n\t}\n\treturn makeApiNode(instanceApiData, meaningfulName);\n}", "createAPI(data) {\n return null;\n }", "createNode(Variant, string, string) {\n\n }", "createNode(data, pipelineId) {\n\t\treturn this.objectModel.getAPIPipeline(pipelineId).createNode(data);\n\t}", "function create_node(desc){\n\t\tconst node_factory = factory[desc.factory];\n\t\tconst factory_params = Object.assign({audio_context}, desc.options);\n\t\tconst node = node_factory(factory_params);\n\t\tdesc.config = desc.config || {};\n\t\tfor(let [param, config] of Object.entries(desc.config)){\n\t\t\t\tnode[param].value = config.value;\n\t\t}\n\t\treturn node;\n\t}", "function createK8sNodeResource (name, grpcEndpoint, status) {\n const obj = {\n apiVersion: 'openebs.io/v1alpha1',\n kind: 'MayastorNode',\n metadata: defaultMeta(name),\n spec: { grpcEndpoint }\n };\n if (status) {\n obj.status = status;\n }\n return obj;\n}", "createNewNode(data){\n const newNode = new node(data);\n return newNode;\n }", "function create_node(error, result) {\n if(error) {\n callback(error);\n } else {\n parentNodeData = result;\n node = new Node(undefined, mode);\n node.nlinks += 1;\n context.put(node.id, node, update_parent_node_data);\n }\n }", "createNode(consortium, environment, membershipId, name) {\n let body = JSON.stringify({membership_id: membershipId, name: name});\n let uri = this.baseUrl + /consortia/ + consortium + \"/environments/\" + environment + \"/nodes\";\n let options = {method: 'POST', uri: uri, headers: this.headers, body: body};\n return request(options);\n }", "async create(data, params) {}", "function create_node(error, result) {\n if(error) {\n callback(error);\n } else {\n parentNodeData = result;\n Node.create({guid: context.guid, mode: mode}, function(error, result) {\n if(error) {\n callback(error);\n return;\n }\n node = result;\n node.nlinks += 1;\n context.putObject(node.id, node, update_parent_node_data);\n });\n }\n }", "function createNode(data){\n\t\treturn {\n\t\t\tdata: data,\n\t\t\tnext: null,\n\t\t};\n\t}", "async createNodeClient(nodeInfo) {\n return await new NodeClient({\n logger: this.logger,\n web3: this.web3,\n account: {\n owner: this.owner,\n ownerPrivateKey: this.ownerPrivateKey\n },\n contracts: this.contracts,\n instances: this.instances,\n info: nodeInfo\n });\n }", "static createTo(api, resource, data = null, options = null, handler = null) {\n return this.sendRequest(api, RequestType.Create, resource, data, options, handler);\n }", "function createNode() {\n if(Graph.newNodeExists()) {\n alert(\"A new node is already ready to be edited.\");\n return;\n }\n Networker.addNode({\n name: \"\",\n type: function (id) {\n return id == \"concept-creator\" ? \"concept\" : \"object\";\n }($(this).attr(\"id\")),\n comment: \"\",\n fixed: false,\n x: 0,\n y: 0,\n graph_id: Editor.graphId\n }, function (node) {\n var newNode = Graph.addNode(node._id, node.name, node.type, node.comment, node.graph_id);\n Graph.selectNode(newNode);\n Graph.nodeNewStyle(newNode);\n Graph.setLastInsertedNode(newNode);\n Graph.unselectLink();\n addNodeEventListeners(newNode);\n updateMenu();\n });\n}", "function create_node(name, size) {\n if (get_node(name) != null) {\n\tconsole.log(\"Error: creating node that already exists\");\n\treturn;\n }\n\n new_object = new Object()\n new_object[\"name\"] = name;\n new_object[\"size\"] = size;\n graph[name] = new_object;\n\n return new_object;\n}", "function createNodeHttpClient() {\n return new NodeHttpClient();\n}", "function addNode(request, response) {\n\n // Set with -d option in CURL. These default to {}\n var name = request.param('name');\n var data = request.param('data');\n var gid = request.params.graphId;\n\n graphManager.addNode(gid, name, data, function(err, node) {\n var response_code, message;\n if (err) {\n response_code = 502;\n message = {\n errorMessage: err.message,\n details: err\n };\n } else {\n response_code = 200;\n message = node;\n }\n response.writeHead(response_code, {\n 'application-type': 'application/json'\n });\n response.write(JSON.stringify(message));\n response.end();\n });\n}", "static async createNewService (config = {\n iriNode: \"https://node-iota.org:14267\",\n title: \"unkown\",\n description: \"unknown\",\n price: 0,\n author: \"unknown\",\n }) {\n //TODO:\n const privateKey = \"\";\n\n //Create new Service object\n const service = new Service (\n null, //Will be created by `constructor ()`\n null, //Will be created by `async _publishService ()`\n privateKey,\n config.iriNode,\n );\n\n //Add all custom parameters to the new Service\n delete config.iriNode;\n for (const key in config) {\n service.setParameter (key, config [key]);\n }\n\n //Publish new Service to the network\n if (!(await service._publishService ())) {\n return null;\n }\n this._updatedParameters = [];\n\n return service;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Builds a URL for getting a tweet by ID (example: "api/tweet/4")
function getUrlForId(tweetId) { return(getUrl() + tweetId); }
[ "function getTweetUrl(tweetId, twitterId) {\n return 'http://twitter.com/' + twitterId + '/statuses/' + tweetId.toString();\n}", "function buildTWStatsTribeUrl(tribeId) {\r\n return `//www.twstats.com/in/${game_data.world}/tribe/${tribeId}`;\r\n}", "function getTweetUrl(data) {\n return 'https://twitter.com/' + data.user.screen_name + '/status/' + data.id_str\n}", "function taskUrl(id) {\n return `${apiEndpoint}/${id}`;\n}", "static ID2URL(ID) {\n return 'http://www.youtube.com/v/'+ID+'?version=3';\n }", "function url(id){\n\t\tif(id)\n\t\t\treturn thingbroker + \"things?thingId=\" + id;\n\t\treturn thingbroker + \"things\";\n\t}", "function createBitlyURL(api, type, id, cb) {\n var spotifyURL = 'http://open.spotify.com/' + type + '/' + id;\n\n api.bitly.shorten(spotifyURL, function (result) {\n cb( result.data.url || '' ); \n });\n}", "function buildTWMapTribeUrl(tribeId) {\r\n return `http://${game_data.world}.tribalwarsmap.com/${\r\n game_data.market === 'en' ? '' : game_data.market\r\n }/history/tribe/${tribeId}#general`;\r\n}", "function buildTWStatsProfileUrl(playerId) {\r\n return `//www.twstats.com/in/${game_data.world}/player/${playerId}`;\r\n}", "function buildURL(handle) {\n var count = getTweetsVolume(),\n startDate = getStartDate(),\n endDate = getEndDate(),\n base_url = 'http://localhost:7890/1.1/',\n count_url = base_url + 'statuses/user_timeline.json\\?count\\=' + count + '\\&screen_name\\=' + handle,\n date_url = base_url + 'search/tweets.json?q='+ handle + '&since=' + startDate + '&until=' + endDate;\n\n return startDate && endDate ? date_url : count_url;\n}", "function buildRequestURL(id) {\r\n name = gamers.get(id);\r\n return \"https://r6tab.com/api/search.php?platform=uplay&search=\" + name;\r\n}", "function getTwitterID(twitterURL){\n\tvar startIndex = twitterURL.indexOf(\"/status/\") + 8;\n\tvar endIndex = startIndex + 18;\n\tvar twitterID = twitterURL.substring(startIndex, endIndex);\n\treturn twitterID\n}", "getTweetUrl(handletype) {\n let tweetUrl = '';\n const type = handletype && handletype.toLowerCase();\n const handle = {\n 'screenname': 'timeline?screenName=',\n 'hashtag': 'hashtag?hashtag='\n };\n tweetUrl = this.twitterApiEndPoint + handle[type];\n tweetUrl = type === 'hashtag' ? this.appendHashtags(tweetUrl) : tweetUrl + this.handle;\n if (this.maxCount) {\n tweetUrl = `${tweetUrl}&count=${this.maxCount}`;\n }\n return tweetUrl;\n }", "function buildMapTribeUrl(tribeId) {\r\n return `//${\r\n game_data.market === 'en' ? '' : game_data.market + '.'\r\n }twstats.com/${\r\n game_data.world\r\n }/index.php?page=map&ti0=${tribeId}&tc0=002bff&zoom=300&centrex=500&centrey=500&nocache=1&fill=000000`;\r\n}", "function specificTweetfunct(tweetid){\n if(tweetid!=null){\n \toutputText.innerHTML=\" \";\n\t\tvar xmlHttp = new XMLHttpRequest();\n\t\txmlHttp.onreadystatechange = function(){\n\t\tif(xmlHttp.readyState == 4 && xmlHttp.status == 200){\n\t\t\toutputText.innerHTML=xmlHttp.responseText;\n\t\t\t}\n\t\t}\n \txmlHttp.open(\"GET\", \"http://127.0.0.1:3000/tweet/\"+tweetid, true); // false for synchronous request\n \txmlHttp.send(null);\n }else{\n \toutputText.innerHTML=(\"Sorry you did not enter a tweet id\");\n }\n}", "function constructApiUrl(docId) {\n\tvar apiUrl = \"\";\n\tapiUrl += seleneUrl + taxeneEndpoint + docId + \"?\" + queryParameters;\n\tconsole.log(\"function constructApiUrl\\n\" + \"apiUrl: \" + apiUrl);\n\treturn apiUrl;\n}", "function generateEmbed(tweetId) {\n\t$.getJSON('https://api.twitter.com/1/statuses/oembed.json?id=' + tweetId + '&callback=?', function(embed) {\n\t\thtml = embed.html;\n\n\t\t$('#thetweetembed').html(html);\n\t});\n\t\n}", "function createUrl() {\n todaysDate = moment().format(\"YYYY-MM-DD\");\n return movieAndDinnerObject.movieShowtimeUrl + todaysDate + \"&lat=\" + movieAndDinnerObject.lat + \"&lng=\" + movieAndDinnerObject.long + movieAndDinnerObject.movieShowtimeAPIKey\n // http://data.tmsapi.com/v1.1/movies/showings?startDate=2019-04-10&lat=32.876709&lng=-117.206601&api_key=stp9q5rsr8afbrsfmmzvzubz\n }", "function get_tweet_id(url){\n if (url.indexOf('https://twitter.com/') > -1){\n return url.split('/')[5]; \n }\n else{\n return false;\n }\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
=================================================================== from functions/lists/NewString.java =================================================================== Needed early: Builtin Needed late: ArcNumber ArcCharacter Nil ArcString
function NewString() { }
[ "function Strings() {}", "function String() {}", "function Str_initStringList(output){\n output= new Array();\n output[0]=\"1\";\n return output;\n}", "function Str_addString(input_str_list,add_str){\n input_str_list.push(add_str);\n input_str_list[0]=intToCString(atoi(input_str_list[0])+1);\n}", "function createJSString($3q1){\n /*BEG dynblock*/\n return JSString((typeof String==='undefined'||String===null?m$3g8.throwexc(m$3g8.Exception(\"Undefined or null reference: String\"),'5:18-5:23','string.ceylon'):String)($3q1));\n /*END dynblock*/\n}", "function string() {}", "function caml_string_of_array (a) { return new MlString(4,a,a.length); }", "function caml_new_string (s) { return new MlString(0,s,s.length); }", "function createString () {\r\n return 'Hello any string';\r\n}", "function string_4(cs) /* (cs : list<char>) -> total string */ {\n return join_3(map_3(cs, function(c /* char */ ) { return (c);}));\n}", "function Str() {\n}", "allocateStringLiteral(contents) {\n let previousObj = this.stringLiteralMap[contents];\n if (previousObj) {\n return previousObj;\n }\n else {\n // only need to allocate a string literal object if we didn't already have an identical one\n // length + 1 below is for null character\n let object = new objects_1.StringLiteralObject(new types_1.BoundedArrayType(types_1.Char.CHAR, contents.length + 1), this, this.staticTop);\n this.allocateObject(object);\n // record the string literal in case we see more that are the same in the future\n this.stringLiteralMap[contents] = object;\n // write value of string literal into the object\n types_1.Char.jsStringToNullTerminatedCharArray(contents).forEach((c, i) => {\n object.getArrayElemSubobject(i).setValue(c);\n });\n // adjust location for next static object\n this.staticTop += object.size;\n return object;\n }\n }", "function\nslistref_make_nil()\n{\n//\n// knd = 0\n var tmpret0\n var tmp1\n var tmplab, tmplab_js\n//\n // __patsflab_slistref_make_nil\n tmp1 = null;\n tmpret0 = ats2jspre_ref(tmp1);\n return tmpret0;\n} // end-of-function", "function caml_static_alloc (len) { return new MlMakeString (len); }", "toString() {\n\t\treturn this.code.replace(/ /g,'S').replace(/\\t/g,'T').replace(/\\n/g,'L');\n\t}", "function Assign_Free_Literal() {\r\n}", "function _95_Prelude__Strings__unpack_95_with_95_36($_0_arg, $_1_arg){\n \n if(($_1_arg.type === 1)) {\n let $cg$2 = null;\n if((((($_1_arg.$2 == \"\")) ? 1|0 : 0|0) === 0)) {\n $cg$2 = true;\n } else {\n $cg$2 = false;\n }\n \n let $cg$3 = null;\n if((Decidable__Equality__Decidable__Equality___64_Decidable__Equality__DecEq_36_Bool_58__33_decEq_58_0($cg$2, true).type === 1)) {\n $cg$3 = $HC_0_0$Prelude__Strings__StrNil;\n } else {\n $cg$3 = new $HC_2_1$Prelude__Strings__StrCons($_1_arg.$2[0], $_1_arg.$2.slice(1));\n }\n \n return new $HC_2_1$Prelude__List___58__58_($_1_arg.$1, _95_Prelude__Strings__unpack_95_with_95_36(null, $cg$3));\n } else {\n return $HC_0_0$Prelude__List__Nil;\n }\n}", "function string(cstr, n, offset)\n {\n // TODO: add offset\n var s, i;\n var len = 0;\n\n offset = offset || 0;\n\n // Get the length\n if (n)\n {\n len = n;\n }\n else\n {\n while ($ir_load_u8(cstr, offset + len++) !== 0);\n len -= 1;\n }\n\n // Allocate string\n s = $rt_str_alloc(len);\n\n // Copy\n for (i = 0; i < len; i++)\n $rt_str_set_data(s, i, $ir_load_u8(cstr, offset + i));\n\n // Attempt to find the string in the string table\n return $ir_get_str(s);\n }", "coaleaseStrings()\n {\n var new_tokens_list = [];\n\n this.index = 0;\n // Copy over the first element\n if(this.index < this.tokens.length)\n new_tokens_list.push(new Token(this.tokens[this.index].string, this.tokens[this.index].type));\n ++this.index;\n\n while(this.index < this.tokens.length)\n {\n var tok1 = new_tokens_list[new_tokens_list.length-1];\n var tok2 = this.tokens[this.index];\n if(tok1.type == tok_type.STRING && tok2.type == tok_type.STRING)\n {\n // Merge the two strings\n new_tokens_list[new_tokens_list.length-1].string += \" \" + tok2.string;\n } else\n {\n // Otherwise just copy the token over\n new_tokens_list.push(new Token(tok2.string, tok2.type));\n }\n ++this.index;\n }\n\n this.index = 0;\n this.tokens = new_tokens_list;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Try to build new city
function buildCity() { if (type != UnitTypes.Settler && type != unitTypes.Engineer) return; if (civ.game.buildNewCity(unit.player, unit.x, unit.y)) { civ.game.destroyUnit(unit); } }
[ "function request_unit_build_city()\n{\n if (current_focus.length > 0) {\n var punit = current_focus[0];\n if (punit != null) { \n\n if (punit['movesleft'] == 0) {\n add_chatbox_text(\"Unit has no moves left to build city\");\n return;\n }\n\n var ptype = unit_type(punit);\n if (ptype['name'] == \"Settlers\" || ptype['name'] == \"Engineers\") {\n var packet = {\"type\" : packet_city_name_suggestion_req, \"unit_id\" : punit['id'] };\n send_request (JSON.stringify(packet));\n } \n\n }\n }\n}", "function buildCity() {\n //first check if player has enough production points\n if (productionPoints >= cityCost && housingPoints >= (cityCost - 5)) {\n //if so, have the player name the city and detract and add the appropriate points\n\n productionPoints -= cityCost;\n housingPoints -= (cityCost - 5);\n //set the tile to contain the appropriate information\n $(`#${clickedTile}`).css(\"background-image\", \"url(assets/images/city.gif)\");\n $(`#${clickedTile}`).data(\"info\").feature = \"City\";\n display(\"City built!\")\n //give points for building the city\n productionPoints += 3;\n housingPoints += 3;\n //update points\n updatePoints();\n checkSurroundingTilesFor(\"Houses\");\n //Set the tiles in range of the city to be buildable, based on the radius variable\n setInRange();\n //name the city\n nameCity();\n //increase the cost of future cities\n cityCost += 2;\n\n\n } else {\n //If not enough points, show error\n displayError(`Not enough points! Need ${cityCost} PP and ${cityCost-5} HP!`)\n }\n\n}", "addCity(city) {\n // If we already have the city in our map, nothing needs to be done.\n if (this.cities[city.text]) {\n return;\n }\n this._getWeather(city).then(data => {\n this.cities[city.text] = data;\n });\n }", "function addNewCity() {\n // searchedCities.empty();\n let cities = $(\"<section>\").attr(\"class\", \"cities\");\n for (i = 0; i < searchedCitiesArr.length; i++) {\n searchedCities.append(cities);\n cities.text(searchedCitiesArr[i]);\n }\n }", "function generateCity() {\n\tconst cities = [\n\t'London', 'Amsterdam', 'Berlin', 'Dublin', 'Paris'];\n\treturn cities[Math.floor(Math.random() * cities.length)];\n}", "function addLocation() {\n //hide the dialog\n toggleAddDialog();\n\n //gets slelected city\n const select = document.getElementById(\"selectCityToAdd\");\n const selected = select.options[select.selectedIndex];\n const geo = selected.value;\n const label = selected.textContent;\n const location = { label: label, geo: geo };\n\n //creates new card for new city and sends request to dark sky for weather data\n const card = getForecastCard(location);\n getForecastFromNetwork(geo).then(forecast => {\n renderForecast(card, forecast);\n });\n\n //save updated list as selected citys\n weatherApp.selectedLocations[geo] = location;\n saveLocationList(weatherApp.selectedLocations);\n} //add location", "function getCityInfo ( data ) {\n\n if ( data.status != \"ok\" ) {\n newCity = 0;\n return;\n }\n\n clear();\n\n newCity = new Point ( data.data.city.name, data.data.city.geo[0], data.data.city.geo[1], parseInt ( data.data.aqi ) );\n newCity.setSearched();\n newCity.putOnMap ();\n}", "function city() {\n\t\tpiece = \"city\";\n\t}", "function city(name,size,population,location,leader,country){\r\n this.name = name\r\n this.size = size\r\n this.population = population\r\n this.location = location\r\n this.leader = leader\r\n this.country = country\r\n this.planner \r\n this.duty\r\n}", "build() {\n let liveClosestSite = Game.getObjectById(this.memory.closestSite);\n \n if (!liveClosestSite) {\n global.Imperator.administrators[this.room].supervisor.wrap(true);\n let sites = Game.rooms[this.room].find(FIND_MY_CONSTRUCTION_SITES);\n\n liveClosestSite = this.pos.findClosestByRange(sites);\n this.memory.closestSite = liveClosestSite.id;\n }\n\n if (this.pos.inRangeTo(liveClosestSite, 3)) {\n this.liveObj.build(liveClosestSite);\n } else {\n this.liveObj.travelTo(liveClosestSite);\n }\n }", "function addCity() {\n\tvar city = data.response.geocode.feature.name;\n\t//console.log(`function addCity - 4Sqaure data - city name${city}`);\n\t$(`#cityDisplay`).text(city);\n}", "function construct(c) {\n /* Get the nearest construction site if we're not working on one. */\n if (\"undefined\" === typeof(c.memory.constructionsiteid)) {\n var bs = c.room.find(FIND_MY_CONSTRUCTION_SITES);\n /* Upgrade the controller if we've nothing else to do */\n if (0 === bs.length) {\n return false;\n }\n var cb = c.pos.findClosestByPath(bs);\n if (null === cb) {\n return false;\n }\n c.memory.constructionsiteid = cb.id;\n }\n\n /* Get the construction site */\n var cs = Game.getObjectById(c.memory.constructionsiteid);\n if (null === cs) {\n c.memory.constructionsiteid = undefined;\n return;\n }\n \n /* If the construction site is constructed, try again next time */\n if (cs.progress >= cs.progressTotal) {\n c.memory.constructionsiteid = undefined;\n return;\n }\n\n /* Try to build there */\n var br = c.build(cs);\n switch (br) {\n /* Okish things */\n case ERR_NOT_IN_RANGE:\n c.moveTo(cs);\n case OK:\n return true;\n break;\n\n /* No worky things */\n case ERR_INVALID_TARGET:\n c.memory.constructionsiteid = undefined;\n case ERR_NOT_ENOUGH_RESOURCES:\n default:\n console.log(c.name + \"> Unable to build \" +\n cs.structureType + \" at \" + cs.pos + \": \" +\n errs[br]);\n return false;\n break;\n }\n /* Shouldn't ever get here */\n return false;\n}", "function _addCity(city) {\n city.date = new Date();\n city.objectID = cityObjectID++;\n var icon_class = _findIconClass(city.weather[0].id);\n city.weather_icon = icon_class;\n city.comments = [];\n cities.unshift(city);\n saveToLocalStorage();\n console.log(city);\n }", "buildCity() {\n return `bcity ${this.id}`;\n }", "insert(city) {\n return model.create(city)\n }", "function addNewCity(countryName, cityName, latitude, longitude, timezone, utcoffset){\n\n //console.log(\"Adding in country: \"+countryName+ \" new city: \"+cityName + \" with latitude: \"+latitude +\" and longitude: \"+longitude+ \", timezone: \"+timezone+\", utcoffset: \"+utcoffset);\n\n var db = getDatabase();\n var res = \"\";\n db.transaction(function(tx) {\n var rs = tx.executeSql(\"INSERT INTO location (country, city, latitude, longitude, timezone, utcoffset) VALUES ('\"+countryName+\"', '\"+cityName+\"', \"+latitude+\", \"+longitude+\", \"+timezone+\", \"+utcoffset+\")\");\n if (rs.rowsAffected > 0) {\n res = \"OK\";\n } else {\n res = \"KO\";\n }\n }\n );\n return res;\n }", "function buildingState(creep) {\n var target = Game.getObjectById(creep.memory.tempWorksite);\n //if target exists\n if(target) {\n //if target is finished search a new location\n if(target.hits - target.hitsMax == 0) {\n creep.memory.building = false;\n if(creep.carry.energy > ((creep.carryCapacity / 100) * reHarvestFactor)) {\n creep.memory.researchLoc = true;\n }\n //if not finished, proceed with build/repair\n } else {\n buildRepair(creep, target);\n }\n //if the target does not exist anymore (destroyed, despawned, whatever)\n } else {\n \n creep.memory.building = false;\n creep.memory.tempWorksite = undefined;\n creep.memory.researchLoc = true;\n }\n}", "function buildingState(creep) {\n var target = Game.getObjectById(creep.memory.tempWorksite);\n //if target exists\n if(target) {\n //if target is finished search a new location\n if(target.hits - target.hitsMax == 0) {\n creep.memory.building = false;\n if(creep.carry.energy > ((creep.carryCapacity / 100) * reHarvestFactor)) {\n creep.memory.researchLoc = true;\n }\n //if not finished, proceed with build/repair\n } else {\n buildRepair(creep, target);\n }\n //if the target does not exist anymore (destroyed, despawned, whatever)\n } else {\n creep.memory.building = false;\n creep.memory.tempWorksite = undefined;\n creep.memory.researchLoc = true;\n }\n}", "function getCity(geolocation) {\n currentLocation = geolocation;\n //create variable of city we're searching \n var citySearch = cityLocation.value;\n //consult api about city's plant based restaurants \n getCoordinates(citySearch);\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
========= remove body,meta, and title tags======= ====create wrapper div and place body content inside====
function insertContent(){ var allContent; if(doc_root[doc_root.length-1] != 'root'){ allContent = $(doc_root[doc_root.length-1]).children(); } else { allContent = $.root().append(mraidScript); } var style = $('style'); var styles = $('style').html(); //console.log(style.html()); var styling = css.parse(styles); for(var i = 0; i< styling.stylesheet.rules.length; i++){ checkProp(styling.stylesheet.rules[i]) } //========= remove global div declarations that access elements above stage ====== function checkProp(obj){ if(obj.type == 'rule'){ if(obj.selectors.indexOf('div') > -1){ for(var j = 0; j < obj.declarations.length; j++){ if(obj.declarations[j].property == 'position' && obj.declarations[j].value == 'absolute'){ obj.selectors.splice(obj.selectors.indexOf('div'),1, '#wrapper div :not(script)'); } } } } } styles = css.stringify(styling); //console.log(style); $.root().prepend('\n' + '\n' + '<div id="wrapper"></div>') $('#wrapper').append('\n' + '\t' + bodyContent + '\n'); $('html').replaceWith(allContent); $('body').remove(); $('meta').remove(); $('title').remove(); $('doctype').remove(); $.root().prepend('\n' + '<style>' + '\n' + ' #wrapper {' + '\n' + ' width: 100%;' + '\n' + ' height: 100%;' + '\n' + ' position: relative;' + '\n' + ' top: 0; left: 0;' + '\n' + ' z-index: 90;' + '\n' + ' }' + '\n' + styles + '\n' + '</style>'); style.remove(); while($('head').children().length>0){ var headContent = $('head').children().last(); $.root().prepend('\n' + headContent); $('head').children().last().remove(); } }
[ "function createAiWrapperDiv() {\n var countElements = 0; \n // Count tags which are not empty text nodes, no script and no iframe tags\n // because only if we have more than 1 of this tags a wrapper div is needed\n for (var i = 0; i < document.body.childNodes.length; ++i) {\n var nodeName = document.body.childNodes[i].nodeName.toLowerCase(); \n var nodeLength = getTextLength(document.body.childNodes[i]); \n if ( nodeLength != 0 && nodeName != 'script' && nodeName != 'iframe') {\n countElements++; \n }\n }\n if (countElements > 1) {\n var div = document.createElement(\"div\");\n \t div.id = \"ai_wrapper_div\";\n \t// Move the body's children into this wrapper\n \twhile (document.body.firstChild) {\n \t\tdiv.appendChild(document.body.firstChild);\n \t}\n \t// Append the wrapper to the body\n \tdocument.body.appendChild(div);\n \n // set the style\n div.style.cssText = \"margin:0px;padding:0px;border: none;\";\n }\n}", "function create_content (body) {\n var meta = create_meta_info(body.meta_title, body.meta_description, body.meta_sort);\n return meta + body.content;\n }", "function createBody() {\n console.log('started body');\n $('#bitmoto-blog-body').append(\n '<div id=\"bitmoto-blog-title\" class=\"bitmoto-blog-title\"></div>' +\n '<div id=\"bitmoto-blog-categories\" class=\"bitmoto-blog-categories\">' +\n '<h2 class=\"bitmoto-blog-categories-title\">Browse Categories</h2>' +\n '</div>' +\n '<div id=\"bitmoto-blog-first-article\" class=\"bitmoto-blog-first-article\"></div>' +\n '<div class=\"bitmoto-blog-spacer\"><hr></div>'\n );\n}", "function theBodyPage(){\n $(\"#main-container\").html(\n `\n <div id=\"header\"></div>\n <div id=\"content\"></div>\n `\n )\n}", "createMainContent (){\n\t\tthis.mainWrapper = document.getElementById('mainWrapper');\n\t\tthis.mainTwo = document.createElement('main');\n\t\tthis.mainTwo.id = 'mainNotes';\n\t\tthis.mainWrapper.appendChild(this.mainTwo);\n\t\tthis.notesHeader = document.createElement('h2');\n\t\tthis.notesHeader.textContent = this.content;\n\t\tthis.mainTwo.appendChild(this.notesHeader);\n\t}", "function createHiddenWrapper(html) {\n var div = document.createElement('div');\n div.style.position = 'absolute';\n div.style.width = '1px';\n div.style.height = '1px';\n div.style.left = '-100px';\n div.style.top = '0px';\n div.style.overflow = 'hidden';\n div.style.visibility = 'hidden';\n div.innerHTML = html;\n return div;\n }", "function injectHTML() {\n if (isNotIFrame) {\n var pluginModernIe = document.querySelector(\".plugin-modern-ie\"),\n html;\n\n if (pluginModernIe) {\n pluginModernIe.parentNode.removeChild(pluginModernIe);\n }\n\n pluginModernIe = document.createElement(\"div\");\n pluginModernIe.classList.add(\"plugin-modern-ie\");\n\n html = createHeader();\n html += createBody();\n\n pluginModernIe.innerHTML = html;\n\n document.querySelector(\"body\").appendChild(pluginModernIe);\n }\n }", "function createMeta() {\n metaDiv = document.createElement(\"div\");\n metaDiv.className = \"meta\";\n}", "function cleanOtherThanContent() {\r\n\t \tvar newsArea = selectNodes(doc, doc.body, \"//DIV[@id='listMainArea']/DL\")[0];\r\n\t\r\n\t\tif (newsArea != null) {\r\n\t\t\tvar nodes = doc.body.childNodes;\r\n\t\t\tfor (var i = 0; i < nodes.length; i++) {\r\n\t\t\t\tvar item = nodes.item(i);\r\n\t\t\t\tif (item.style != null) {\r\n\t\t\t\t\titem.style.display = \"none\";\r\n\t\t\t\t\tdoc.body.removeChild(item);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tdoc.body.appendChild(newsArea);\r\n\t\t\t/*\r\n\t\t\t * There are still some other DIV element, so I have to\r\n\t\t\t * remove the children once more.\r\n\t\t\t */\r\n\t\t\tvar nodes = doc.body.childNodes;\r\n\t\t\tfor (var i = 0; i < nodes.length; i++) {\r\n\t\t\t\tvar item = nodes.item(i);\r\n\t\t\t\tif (item.style != null) {\r\n\t\t\t\t\tdoc.body.removeChild(item);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t\tdoc.body.appendChild(newsArea);\r\n\t\t\t\r\n\t\t\t/*\r\n\t\t\t * Center the news\r\n\t\t\t */\r\n\t\t\tnewsArea.style.textAlign = \"left\";\r\n\t\t\tnewsArea.style.padding = \"10px\";\r\n\t\t\tnewsArea.style.marginLeft = Math.round((window.screen.availWidth - 640) / 2) + \"px\";\r\n\t\t\tnewsArea.style.width = \"640px\";\r\n\t\t}\r\n\t\treturn newsArea;\r\n\t}", "function fixBodyHeight() {\n var css = 'body::before, body::after{';\n css += 'content: \".\";';\n css += 'height: 0;';\n css += 'margin: 0;';\n css += 'overflow: hidden;';\n css += 'visibility: hidden;';\n css += 'display: block;';\n css += 'clear: both;';\n css += '}';\n css += 'body{';\n css += 'margin: 0 !important;';\n css += 'display: inline-block !important;';\n css += 'float: left !important;';\n css += 'width: 100% !important;';\n css += 'box-sizing: border-box !important;';\n css += '}';\n \n var head = document.querySelector('head');\n var styleEl = document.createElement('style');\n styleEl.appendChild(document.createTextNode(css));\n head.appendChild(styleEl);\n }", "function addNotificationWrap() {\n var wrap = $.parseHTML(pub.wrapTemplate);\n pub.$wrap = $(wrap).appendTo('body');\n }", "function _wrapInnerContent() {\r\n if (!$e.find('.jscroll-inner').length) {\r\n $e.contents().wrapAll('<div class=\"jscroll-inner\" />');\r\n }\r\n }", "function limparTemplate() {\n $(\"#content\").html('');\n $(\"#header\").html('');\n}", "clearHtmlAndAdjustStylesForSubWindow() {\n const headElement = document.head;\n const appendNodeLists = new Array(4);\n appendNodeLists[0] = document.querySelectorAll('body link');\n appendNodeLists[1] = document.querySelectorAll('body style');\n appendNodeLists[2] = document.querySelectorAll('template');\n appendNodeLists[3] = document.querySelectorAll('.gl_keep');\n for (let listIdx = 0; listIdx < appendNodeLists.length; listIdx++) {\n const appendNodeList = appendNodeLists[listIdx];\n for (let nodeIdx = 0; nodeIdx < appendNodeList.length; nodeIdx++) {\n const node = appendNodeList[nodeIdx];\n headElement.appendChild(node);\n }\n }\n const bodyElement = document.body;\n bodyElement.innerHTML = '';\n bodyElement.style.visibility = 'visible';\n this.checkAddDefaultPopinButton();\n /*\n * This seems a bit pointless, but actually causes a reflow/re-evaluation getting around\n * slickgrid's \"Cannot find stylesheet.\" bug in chrome\n */\n // eslint-disable-next-line @typescript-eslint/no-unused-vars\n const x = document.body.offsetHeight;\n }", "function removeContent() {\n var content = infoWindow.window.getContent();\n if (content) {\n // TODO: instead of getting from DOM, just define template above\n // (but will be text, not DOM element)?\n document.getElementsByClassName('info-window-container')[0].appendChild(content);\n }\n }", "function createBody() {\n var html = '<section class=\"scan-code\">' +\n createLeftColumn() +\n createRightColumn() +\n '<div class=\"column center\">' +\n '<div class=\"modern-ie-loader\"></div>' +\n '</div>' +\n '</section>';\n\n return html;\n }", "function loadContent() {\n\tremoveHammer();\n\tvar navbar = $(\"<div>\").attr(\"id\",\"navbar\");\n\tvar title = $(\"<img>\").attr(\"src\", \"/images/logo.png\").attr(\"id\", \"title\")\n\tvar content_area = $(\"<div>\").attr(\"id\",\"content_area\");\n\tvar body = $(\"body\");\n\n\tbody.empty();\n\tbody.append(navbar);\n\tbody.append(title);\n\tbody.append(content_area);\n}", "cleanSkeletonContainer() {\n const skeletonWrap = document.body.querySelector('#nozomi-skeleton-html-style-container');\n if (skeletonWrap) {\n removeElement(skeletonWrap);\n }\n }", "function extractContentHtml(htmlText){\n var n = -1; \n var m = -1;\n var innerText;\n var tagText;\n \n //TODO: se puede refactorizar mas XXD\n htmlText = performReplace(\"<body>\",\"</body>\",htmlText);\n htmlText = performReplace(\"<html>\",\"</html>\",htmlText);\n htmlText = performReplace(\"<div>\",\"</div>\",htmlText);\n htmlText = performReplace(\"<title>\",\"</title>\",htmlText); \n htmlText = performReplace(\"<head>\",\"</head>\",htmlText); \n return htmlText;\n \n //Reemplaza todas las etiquetas div iguales de un texto\n function performReplace(tag1,tag2,text)\n {\n var iFlag = false;\n var replaced = text;\n while (iFlag == false){\n if(thereIsTag(tag1,text))\n {\n text = replaceTag(tag1,tag2,text);\n }else\n {\n iFlag = true;\n }\n }\n return text;\n }\n \n //comprobar q exista la etiqueta\n function thereIsTag(tag,text){\n n = text.indexOf(tag);\n if (n != -1)\n {\n return true;\n }\n return false;\n }\n \n //realiza el reemplazo de una sola etiqueta\n function replaceTag(tag1,tag2,text)\n {\n n = text.indexOf(tag1);\n m = text.indexOf(tag2);\n innerText = text.substring( n+tag1.length,m);\n tagText = text.substring(n , m+tag2.length);\n text = text.replace(tagText,innerText);\n return text;\n }\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Capture characters that satisfy ``isNameChar`` into the ``name`` field of this parser.
captureNameChars() { const { chunk, i: start } = this; // eslint-disable-next-line no-constant-condition while (true) { const c = this.getCode(); if (c === EOC) { this.name += chunk.slice(start); return EOC; } // NL is not a name char so we don't have to test specifically for it. if (!isNameChar(c)) { this.name += chunk.slice(start, this.prevI); return c === NL_LIKE ? NL : c; } } }
[ "captureNameChars() {\n const {chunk: chunk, i: start} = this;\n // eslint-disable-next-line no-constant-condition\n while (true) {\n const c = this.getCode();\n if (c === EOC) {\n this.name += chunk.slice(start);\n return EOC;\n }\n // NL is not a name char so we don't have to test specifically for it.\n if (!isNameChar(c)) {\n this.name += chunk.slice(start, this.prevI);\n return c === NL_LIKE ? NL : c;\n }\n }\n }", "parseCaptureNameChar() {\n const c = this.current();\n if (c === '\\\\') {\n return this.tryParseUnicodeEscape();\n }\n this.pos += c.length; // skip any character\n return c;\n }", "parseName() {\n const token = this.expectToken(_tokenKind.TokenKind.NAME);\n return this.node(token, {\n kind: _kinds.Kind.NAME,\n value: token.value\n });\n }", "parseName() {\n const token = this.expectToken(TokenKind.NAME);\n return this.node(token, {\n kind: Kind.NAME,\n value: token.value\n });\n }", "parseName() {\n const token = this.expectToken(TokenKind.NAME);\n return this.node(token, {\n kind: Kind.NAME,\n value: token.value,\n });\n }", "function isNameChar(c){return isNameStartChar(c)||c>=0x30&&c<=0x39||c===0x2D||c===0x2E||c===0xB7||c>=0x0300&&c<=0x036F||c>=0x203F&&c<=0x2040;}", "function isNameChar(c) {\n return isNameStartChar(c) || c >= 48 && c <= 57 || c === 45 || c === 46 || c === 183 || c >= 768 && c <= 879 || c >= 8255 && c <= 8256;\n }", "function isNameChar(c) {\n return isNameStartChar(c) ||\n (c >= 0x30 && c <= 0x39) ||\n c === 0x2D ||\n c === 0x2E ||\n c === 0xB7 ||\n (c >= 0x0300 && c <= 0x036F) ||\n (c >= 0x203F && c <= 0x2040);\n}", "function beforeName(code) {\n // Closing tag.\n if (code === slash) {\n then(beforeClosingTagName)\n enter('closingSlash')\n consume()\n exit()\n }\n // Fragment opening tag.\n else if (code === greaterThan) {\n then(data)\n enter('name')\n exit()\n consume()\n exit()\n }\n // Whitespace, remain.\n else if (whitespace(code)) {\n consume()\n }\n // Start of a name.\n else if (identifierStart(code)) {\n then(primaryName)\n enter('name')\n enter('primaryName')\n consume()\n }\n // Exception.\n else {\n crash(\n 'before name',\n 'a character that can start a name, such as ' +\n suggestionIdentifierStart\n )\n }\n }", "function is_name(chr) {\n var val = chr.charCodeAt(0);\n return (val >= 46 && val < 47) // .\n || (val >= 48 && val < 58) // 0-9\n || (val >= 65 && val < 91) // A-Z\n || (val >= 95 && val < 96) // _\n || (val >= 97 && val < 123); // a-z\n}", "function parseNameExpression() {\n var name = value;\n expect(Token.NAME);\n\n if (token === Token.COLON && (\n name === 'module' ||\n name === 'external' ||\n name === 'event')) {\n consume(Token.COLON);\n name += ':' + value;\n expect(Token.NAME);\n }\n\n return {\n type: Syntax.NameExpression,\n name: name\n };\n }", "function parseName(name) {\n return name.replace(/[^\\S\\n]/g, \"_\").replace(/\\//g, \"|\");\n }", "function parseName(lexer) {\n\t var token = expect(lexer, _lexer.TokenKind.NAME);\n\t return {\n\t kind: _kinds.NAME,\n\t value: token.value,\n\t loc: loc(lexer, token)\n\t };\n\t}", "parseCaptureName() {\n let name = '';\n const start = this.parseCaptureNameChar();\n if (!isIDStart(start)) {\n throw new RegExpSyntaxError('invalid capture group name');\n }\n name += start;\n\n for (;;) {\n const save = this.pos;\n const part = this.parseCaptureNameChar();\n if (!isIDPart(part)) {\n this.pos = save;\n break;\n }\n name += part;\n }\n\n if (this.current() !== '>') {\n throw new RegExpSyntaxError('invalid capture group name');\n }\n this.pos += 1; // skip '>'\n\n return name;\n }", "function parseName(lexer) {\n var token = expect(lexer, _lexer.TokenKind.NAME);\n return {\n kind: _kinds.NAME,\n value: token.value,\n loc: loc(lexer, token)\n };\n}", "function parseNameExpression() {\n var name = value, rangeStart = index - name.length;\n expect(Token.NAME);\n\n if (token === Token.COLON && (\n name === 'module' ||\n name === 'external' ||\n name === 'event')) {\n consume(Token.COLON);\n name += ':' + value;\n expect(Token.NAME);\n }\n\n return maybeAddRange({\n type: Syntax.NameExpression,\n name: name\n }, [rangeStart, previous]);\n }", "function beforeName(code) {\n // Closing tag.\n if (code === 47 /* `/` */) {\n effects.enter(tagClosingMarkerType)\n effects.consume(code)\n effects.exit(tagClosingMarkerType)\n returnState = beforeClosingTagName\n return optionalEsWhitespace\n }\n\n // Fragment opening tag.\n if (code === 62 /* `>` */) {\n return tagEnd(code)\n }\n\n // Start of a name.\n if (id.start(code)) {\n effects.enter(tagNameType)\n effects.enter(tagNamePrimaryType)\n effects.consume(code)\n return primaryName\n }\n\n crash(\n code,\n 'before name',\n 'a character that can start a name, such as a letter, `$`, or `_`' +\n (code === 33 /* `!` */\n ? ' (note: to create a comment in MDX, use `{/* text */}`)'\n : '')\n )\n }", "function isNameChar(c) {\n\t\t'use strict';\n\n\t\tif (c >= a && c <= z) {\n\t\t\treturn true;\n\t\t}\n\t\tif (c >= A && c <= Z) {\n\t\t\treturn true;\n\t\t}\n\t\tif (c >= ZERO && c <= NINE) {\n\t\t\treturn true;\n\t\t}\n\t\tif (c === USCORE) {\n\t\t\treturn true;\n\t\t}\n\t\tif (c === DOLLAR) {\n\t\t\treturn true;\n\t\t}\n\t}", "function parseName(data) {\n\tif (data.length == 5) {\n\t\treturn data[1].toProperCase();\n\t} else {\n\t\treturn (data[1] + \" \" + data[2]).toProperCase();\n\t}\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
To check the consistency of configurations
function checkConsistency() { var i, id, p, msg, plans, catalog; catalog = config.catalog; plans = config.plans; for (i = 0; i < catalog.services.length; i += 1) { for (p = 0; p < catalog.services[i].plans.length; p += 1) { id = catalog.services[i].plans[p].id; if (!plans.hasOwnProperty(id)) { msg = "ERROR: plan '" + catalog.services[i].plans[p].name + "' of service '" + catalog.services[i].name + "' is missing a specification."; throw new Error(msg); } } } }
[ "function checkConfig(){\n for(let i in configuration)\n if(configuration[i]==null)\n return false;\n return true;\n}", "confChecker( ){\n\t}", "function checkConfiguration() {\n // count keys should not be set as array/narg\n Object.keys(flags.counts).find(key => {\n if (checkAllAliases(key, flags.arrays)) {\n error = Error(__('Invalid configuration: %s, opts.count excludes opts.array.', key));\n return true;\n }\n else if (checkAllAliases(key, flags.nargs)) {\n error = Error(__('Invalid configuration: %s, opts.count excludes opts.narg.', key));\n return true;\n }\n return false;\n });\n }", "function checkConfiguration () {\n // count keys should not be set as array/narg\n Object.keys(flags.counts).find(key => {\n if (checkAllAliases(key, flags.arrays)) {\n error = Error(__('Invalid configuration: %s, opts.count excludes opts.array.', key));\n return true\n } else if (checkAllAliases(key, flags.nargs)) {\n error = Error(__('Invalid configuration: %s, opts.count excludes opts.narg.', key));\n return true\n }\n });\n }", "function checkConfiguration () {\n // count keys should not be set as array/narg\n Object.keys(flags.counts).find(key => {\n if (checkAllAliases(key, flags.arrays)) {\n error = Error(__('Invalid configuration: %s, opts.count excludes opts.array.', key))\n return true\n } else if (checkAllAliases(key, flags.nargs)) {\n error = Error(__('Invalid configuration: %s, opts.count excludes opts.narg.', key))\n return true\n }\n })\n }", "checkConsistency () {\n throw new NotImplementedError('checkConsistency', 'NodeConfig');\n }", "function checkConfiguration(config)\n {\n var reqProps = [\"ExteriorColourID\", \"UpholsteryID\",\"GradeID\",\"CarID\",\"BodyTypeID\",\"EngineID\",\"TransmissionID\",\"WheelDriveID\",\"FuelTypeID\",\"WheelID\"],\n \ti = 0,\n \tiL = reqProps.length;\n for(; i < iL; i++)\n {\n \tif(!_configuration.isValid(config[reqProps[i]]) || _configuration.isEmpty(config[reqProps[i]]))\n \t{\n \t\treturn false;\n \t}\n }\n return true;\n }", "allConfigsExist() {\n for(let key in this._CONFIG_KEY_NAMES) {\n if (this._CONFIG_KEY_NAMES.hasOwnProperty(key)) {\n this.configExists(this._CONFIG_KEY_NAMES[key]);\n }\n }\n return true;\n }", "isConfigurationValid() {\n if (this.config.axosoftUrl == atom.config.defaultSettings['atom-axosoft'].axosoftUrl) {\n return false;\n }\n if (this.config.accessToken == atom.config.defaultSettings['atom-axosoft'].accessToken) {\n return false;\n }\n\n return true;\n }", "_checkProjectConfig() {\n return this._projectConfig.checkConfig();\n }", "configIsValid(config) {\n return true;\n }", "validateConfig() {\n if (this.config.replicas) {\n if (!this.config.replicas.read || !this.config.replicas.write) {\n throw new utils_1.Exception('Make sure to define read/write replicas or use connection property', 500, 'E_INCOMPLETE_REPLICAS_CONFIG');\n }\n if (!this.config.replicas.read.connection || !this.config.replicas.read.connection) {\n throw new utils_1.Exception('Make sure to define connection property inside read/write replicas', 500, 'E_INVALID_REPLICAS_CONFIG');\n }\n }\n }", "_detectConfigLoop() {\r\n const _this = this;\r\n this._configCounter++;\r\n\r\n setTimeout(function() {\r\n _this._configCounter--;\r\n }, 10000);\r\n\r\n // Trigger is over 30 configs within 10 seconds\r\n return this._configCounter > 30;\r\n }", "verifyConfiguration(config) {\n if (config.traverse_nat_enabled && config.onion_enabled) {\n this.log.error('Refusing to start with both TraverseNatEnabled and ' +\n 'OnionEnabled - this is a privacy risk');\n process.exit(1);\n }\n }", "_validateConfig() {\n if (!Array.isArray(this.options.configGroups)) {\n throw new Error('options.configGroups is not an array');\n } else if (!this.options.configGroups.length) {\n throw new Error('options.configGroups must have at least one config object');\n }\n // checking fields which MUST be specified in configGroups. (Only one as of now :D)\n const mustInclude = ['targetXPath'];\n this.options.configGroups.forEach((group) => {\n mustInclude.forEach((field) => {\n // eslint-disable-next-line no-prototype-builtins\n if (!group.hasOwnProperty(field)) {\n throw new Error(`${field} must be specified in all configs in options.configGroups`);\n }\n });\n });\n // type checks for crucial fields\n // expected types for crucial fields in the config\n // may do type checking for all fields in the future but it's just not necessary as of now\n const expectedTypes = {\n targetXPath: 'string',\n renderToPath: 'string',\n urlMatch: 'string',\n };\n this.options.configGroups.forEach((group) => {\n Object.keys(expectedTypes).forEach((key) => {\n // eslint-disable-next-line no-prototype-builtins\n if (group.hasOwnProperty(key) && (typeof group[key] !== typeof expectedTypes[key])) {\n throw new Error(`${key} must be of type ${expectedTypes[key]}`);\n }\n });\n });\n // check correct factorization\n this.options.configGroups.forEach((group) => {\n Object.keys(group).forEach((key) => {\n if (this._propsNotInConfigGroup.indexOf(key) >= 0) {\n throw new Error(`${key} is not a property of a configGroup. Specify this key at the outermost layer`);\n }\n });\n });\n // if control reaches this point, the config is acceptable. It may not be perfect since the checks\n // are pretty loose, but at least the crucial parts of it are OK. May add more checks in the future.\n }", "function _checkConfiguration() {\n const config = env.conf.plantuml || {};\n if (config.puml) {\n if (typeof config.puml.create === 'boolean') myConfig.createPuml = config.puml.create;\n if (config.puml.destination) {\n myConfig.pathPuml = config.puml.destination;\n logger.debug(`${logPrefix} got destination path from config: ${myConfig.pathPuml}`);\n }\n }\n logger.info(`${logPrefix} using destination path for puml files: ${myConfig.pathPuml}`);\n\n if (config.images) {\n if (typeof config.images.create === 'boolean') myConfig.createImages = config.images.create;\n if (typeof config.images.replaceWithImage === 'boolean') myConfig.replaceWithImage = config.images.replaceWithImage;\n if (config.images.destination) {\n myConfig.pathImages = config.images.destination;\n logger.debug(`${logPrefix} got destination path from config: ${myConfig.pathImages}`);\n }\n if (config.images.defaultFormat) {\n myConfig.imageFormat = config.images.defaultFormat;\n }\n }\n logger.info(`${logPrefix} using destination path for image files: ${myConfig.pathImages}`);\n}", "async runChecksConfiguration() {\n // Get the checks in config (and extends them with the common config)\n const checksInConfig = _.map(this.config.get('checks'), (check) => _.assignIn({}, this.config.get('checksCommonConfig', {}), check));\n\n // Validate checks config\n validateChecksConfig(this.config.get(), checksInConfig);\n\n // Get the checks in Pingdom\n const checksInPingdom = await this.api.getChecks();\n\n // **ADD/UPDATE**\n const checksInPingdomAdded = [];\n const checksInPingdomUpdated = [];\n await Bluebird.map(checksInConfig, async (checkInConfig) => {\n const checkExistsAlready = _.find(checksInPingdom, { name: checkInConfig.name });\n\n if (checkExistsAlready) {\n // If exists already, update it\n await this.api.updateCheck(checkExistsAlready.id, checkInConfig);\n checksInPingdomUpdated.push(checkInConfig);\n } else {\n // else, create it\n await this.api.addCheck(checkInConfig);\n checksInPingdomAdded.push(checkInConfig);\n }\n }, { concurrency: PINGDOM_CONCURRENCY });\n\n // **DELETE**\n const checksInPingdomToDelete = _.filter(checksInPingdom, (checkInConfig) => !_.find(checksInConfig, { name: checkInConfig.name }));\n if (checksInPingdomToDelete.length) {\n // if soft mode, pause them, otherwise delete them\n if (this.config.get('soft')) {\n await this.api.pauseChecks(_.map(checksInPingdomToDelete, 'id').join(','));\n } else {\n await this.api.deleteChecks(_.map(checksInPingdomToDelete, 'id').join(','));\n }\n }\n\n // Report\n await this.displayReport({\n type: 'CHECK', added: checksInPingdomAdded, updated: checksInPingdomUpdated, deleted: checksInPingdomToDelete,\n });\n }", "function myConfigurationsAreIdentical(configuration1, configuration2) {\r\n var i, positionBAndAngle;\r\n\r\n if (configuration1.length === configuration2.length) {\r\n for (i = 0; i < configuration1.length; i += 1) {\r\n positionBAndAngle = configuration1[i];\r\n if (!myIsInConfiguration(positionBAndAngle, configuration2)) {\r\n return false;\r\n }\r\n }\r\n return true;\r\n } else {\r\n return false;\r\n }\r\n}", "function checkAndRead(){\n console.log(\"checkandREead:\"+config);\n if ( config === undefined || config === null){\n readConfig();\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
returns the user in a chat who is not the current user
function getUsername(users, currentUser) { return users.find(user => { return user.username !== currentUser.username; }); }
[ "function inactive_chat_with(user){\n if(user==currentUser)return false;\n return user==currentRecipient &! user_is_in_list(user);\n}", "function getAnotherUser(){\n //find all userids in this chat rooms\n var arr = Chat.findOne({_id: Router.current().params.chatRoomId}).chatIds;\n \n //find and remove the userid of the current user\n var currentUserIdIndex = arr.indexOf(Meteor.userId());\n arr.splice(currentUserIdIndex, 1);\n \n //return another user's user object\n var targetUserObj = Meteor.users.findOne(arr[0]); \n return targetUserObj;\n}", "findChatForActiveUser() {\n if (this.activeUser) {\n return this.findChatForUser(this.activeUser)\n }\n }", "function getContactsWithoutCurrentUser() {\n var customUsers = contacts.some(function(contact) {\n return contact.data.hasOwnProperty('flDefaultChatUser');\n });\n\n if (customUsers) {\n return _.filter(contacts, function(c) {\n return c.data['flDefaultChatUser'] !== null && c.data['flDefaultChatUser'] !== '' && typeof c.data['flDefaultChatUser'] !== 'undefined' && c.data.flUserId !== currentUser.flUserId;\n });\n }\n\n return _.reject(contacts, function(c) {\n return c.data.flUserId === currentUser.flUserId;\n });\n }", "findChatForUser(user) {\n return this.chats.find(\n chat => [chat.sender_id, chat.receiver_id].includes(user.id)\n )\n }", "function active_chat_with(user){\n return user_is_in_list(user) && user==currentRecipient;\n}", "get chatId() {\r\n const chatId = this.toId - CHAT_PEER;\r\n return chatId > 0\r\n ? chatId\r\n : undefined;\r\n }", "function notMyMessage(botId, message) {\n if (isMessage(message)) {\n return (message.user !== botId);\n }\n}", "function getCurrentUserId(message) {\n return message.from.id;\n}", "get chatId() {\r\n if (!this.isChat) {\r\n return undefined;\r\n }\r\n return this.peerId - CHAT_PEER;\r\n }", "_isFromBot(message) {\n return message.user === this.user.id;\n }", "function getChatRoomUsers(chatroom){\n //to return all the users in this chatroom\n return users.filter(user => user.chatroom == chatroom);\n}", "ownMessage(usernameMessage){\n\t\tvar user = Meteor.userId(),\n\t\t\tuserMessage = usernameMessage.hash.username;\n\n\t\tif(userMessage == user){\n\t\t\treturn true;\n\t\t}\n\t}", "users() {\n return Meteor.users.find( { _id: { $ne: Meteor.userId() } } )\n }", "renderPrivateChat() {\n return (this.props.allOnlineUsers.length && this.props.user) ?\n <Chat users={this.props.allOnlineUsers} checkPrivate={true} messagesObj={this.props.privateMessObject}/> : null;\n }", "function lastChatter(username){\n var dbSettings = new JsonDB(\"./app-settings/settings\", true, false);\n try{\n var lastChatter = dbSettings.getData(\"/lastchatter\");\n }catch(err){\n var lastChatter = \"\";\n }\n \n if (username !== lastChatter){\n dbSettings.push(\"/lastchatter\", username);\n return \"alternateChat\";\n } else {\n return \"repeatChat\";\n }\n}", "function message_is_for_active_chat(sender, recipient) {\n if(sender == currentRecipient) return true;\n if(recipient == currentRecipient && sender == currentUser) return true;\n return false;\n}", "function _sysMsgFilter(currentUserId){\n return \" (r.recipient_id = \" +currentUserId+ \" and r.sys_msg_id = m.id) or m.type is null \";\n //\" not exists (select r2.id from sys_msg_recipient r2 where m.id=r2.sys_msg_id and r2.recipient_id<>\" + currentUserId + \")\";\n}", "getOnlineUsers(cb){\n let currentUser = this.controller.req.user._id;\n this.getMongooseModel().find({ _id : {$ne : currentUser}, status : {$ne : 'Hors ligne'}}, cb);\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
For Mobile Web Site Design The quick way to detect for a tier of devices. This method detects for devices which can display iPhoneoptimized web content. Includes iPhone, iPod Touch, Android, WebOS, etc.
function DetectTierIphone() { if (DetectIphoneOrIpod()) return true; if (DetectAndroid()) return true; if (DetectAndroidWebKit()) return true; if (DetectPalmWebOS()) return true; if (DetectGarminNuvifone()) return true; if (DetectMaemoTablet()) return true; else return false; }
[ "function DetectTierIphone()\n{\n if (DetectIphoneOrIpod())\n return true;\n if (DetectAndroid())\n return true;\n if (DetectAndroidWebKit())\n return true;\n if (DetectWindowsPhone7())\n return true;\n if (DetectBlackBerryWebKit())\n return true;\n if (DetectPalmWebOS())\n return true;\n if (DetectGarminNuvifone())\n return true;\n if (DetectMaemoTablet())\n return true;\n else\n return false;\n}", "function DetectTierOtherPhones()\n{\n if (DetectMobileLong())\n {\n //Exclude devices in the other 2 categories\n if (DetectTierIphone())\n return false;\n if (DetectTierRichCss())\n return false;\n\n //Otherwise, it's a YES\n else\n return true;\n }\n else\n return false;\n}", "function DetectTierOtherPhones()\n{\n if (DetectMobileLong())\n {\n //Exclude devices in the other 2 categories\n if (DetectTierIphone())\n return false;\n if (DetectTierRichCss())\n return false;\n\n //Otherwise, it's a YES\n else\n return true;\n }\n else\nreturn false;\n}", "device_detector() {\n var user_agent = navigator.userAgent.toLowerCase();\n user_agent = user_agent.toLowerCase() \n if(/(ipad|tablet|(android(?!.*mobile))|(windows(?!.*phone)(.*touch))|kindle|playbook|silk|(puffin(?!.*(IP|AP|WP))))/.test(user_agent)) {\n return 1 // Tablet\n } else {\n if(/(mobi|ipod|phone|blackberry|opera mini|fennec|minimo|symbian|psp|nintendo ds|archos|skyfire|puffin|blazer|bolt|gobrowser|iris|maemo|semc|teashark|uzard)/.test(user_agent)) { \n return 2 // Mobile\n } else {\n return 0 // Desktop\n } \n }\n }", "function DetectTierRichCss()\n{\n if (DetectMobileQuick())\n {\n if (DetectTierIphone())\n return false;\n \n //The following devices are explicitly ok.\n if (DetectWebkit())\n return true;\n if (DetectS60OssBrowser())\n return true;\n\n //Note: 'High' BlackBerry devices ONLY\n if (DetectBlackBerryHigh())\n return true;\n\n if (DetectWindowsMobile())\n return true;\n \n if (uagent.search(engineTelecaQ) > -1)\n return true;\n \n else\n return false;\n }\n else\n return false;\n}", "function DetectIphone()\n{\n if (uagent.search(deviceIphone) > -1)\n {\n //The iPod touch says it's an iPhone! So let's disambiguate.\n if (uagent.search(deviceIpod) > -1)\n return false;\n else \n return true;\n }\n else\n return false;\n}", "function _get_device_type(){\n\t\t\tvar navAgent = navigator.userAgent;\n\t\t\tif( (navAgent.match(/android/i)) || (navAgent.match(/android/i)) || (navAgent.match(/blackberry/i)) || (navAgent.match(/palm/i)) || (navAgent.match(/opera/i)) || (navAgent.match(/windows/i)) ){\n\t\t\t\tconsole.log('smartphone');\n\t\t\t} else if ( (navAgent.match(/iPad/i)) ){\n\t\t\t\tconsole.log('iPad');\n\t\t\t} else if( (navAgent.match(/iPhone/i)) || (navAgent.match(/iPod/i)) ){\n\t\t\t\tconsole.log('iPod/iPhone');\n\t\t\t} else if( !(navAgent.match(/iPod/i)) || (navAgent.match(/iPhone/i)) || (navAgent.match(/android/i)) || (navAgent.match(/blackberry/i)) || (navAgent.match(/palm/i)) || (navAgent.match(/opera/i)) || (navAgent.match(/windows/i)) ){\n\t\t\t\tconsole.log('desktop');\n\t\t\t}\n\t\t}", "function deviceTypeCheck() {\n if(/webOS|iPhone|iPad|iPod/i.test(navigator.userAgent)) {\n return 'this device is iOS';\n } else if (/Android/i.test(navigator.userAgent)) {\n return 'this device is Android';\n } else {\n return 'this is just a mobile banner';\n }\n }", "function detect_device() {\n var sWidth = screen.width;\n switch(sWidth) {\n case sWidth <= 1920 && sWidth <= 1024 :\n return Device.Desktop;\n break;\n case sWidth <= 2048 && sWidth >= 600 :\n return Device.Tablet\n break;\n case sWidth <= 1440 && sWidth >= 360 :\n return Device\n break;\n }\n}", "function isMobile () {return isAndroid() || isiOS()}", "function DetectIphoneOrIpod()\n{\n //We repeat the searches here because some iPods \n // may report themselves as an iPhone, which is ok.\n if (uagent.search(deviceIphone) > -1 ||\n uagent.search(deviceIpod) > -1)\n return true;\n else\n return false;\n}", "function device_type_pc() {\n var browser={\n versions:function(){\n var u = navigator.userAgent;\n // app = navigator.appVersion;\n return {//移动终端浏览器版本信息\n trident: u.indexOf('Trident') > -1, //IE内核\n presto: u.indexOf('Presto') > -1, //opera内核\n webKit: u.indexOf('AppleWebKit') > -1, //苹果、谷歌内核\n gecko: u.indexOf('Gecko') > -1 && u.indexOf('KHTML') == -1, //火狐内核\n mobile: !!u.match(/AppleWebKit.*Mobile.*/), //是否为移动终端\n ios: !!u.match(/\\(i[^;]+;( U;)? CPU.+Mac OS X/), //ios终端\n android: u.indexOf('Android') > -1 || u.indexOf('Linux') > -1, //android终端或者uc浏览器\n iPhone: u.indexOf('iPhone') > -1 , //是否为iPhone或者QQHD浏览器\n iPad: u.indexOf('iPad') > -1, //是否iPad\n webApp: u.indexOf('Safari') == -1 //是否web应该程序,没有头部与底部\n };\n }(),\n language:(navigator.browserLanguage || navigator.language).toLowerCase()\n };\n\n if(browser.versions.mobile || browser.versions.ios || browser.versions.android ||\n browser.versions.iPhone || browser.versions.iPad){\n // console.log('mobile');\n return false;\n }else{\n console.log('pc');\n return true;\n }\n}", "function checkMobile() { return /iPhone|iPad|iPod|Android/i.test(navigator.userAgent); }", "function detectMobile()\n{\n var result = (navigator.userAgent.match(/(iphone)|(ipod)|(ipad)|(android)|(blackberry)|(windows phone)|(symbian)/i));\n\n if(result !== null)\n {\n return \"mobile\";\n } else {\n return \"desktop\";\n }\n}", "getDeviceType() {\n // Added this check to run to make this function work in server side also.\n if (typeof (navigator) === 'undefined' && typeof (window) === 'undefined') {\n return 'testnode';\n }\n\n let sDeviceType = 'tablet';\n /* global getDeviceType navigator:true */\n const sUsrAg = (navigator && navigator.userAgent) || '';\n if (sUsrAg.match(/ipad/i)) {\n sDeviceType = 'ipad';\n } else if (sUsrAg.match(/mobile/i)) {\n sDeviceType = 'mobile';\n } else if (sUsrAg.match(/Android|tablet/i)) { // since its not mobile and contains andriod its tablet\n sDeviceType = 'tablet';\n } else if (Watchtower.isMobile(sUsrAg)) {\n sDeviceType = 'mobile';\n } else {\n sDeviceType = 'desktop';\n }\n return sDeviceType;\n }", "function checkIpadDevice() {\n if (navigator && navigator.userAgent && navigator.userAgent != null)\n {\n var strUserAgent = navigator.userAgent.toLowerCase();\n var arrMatches = strUserAgent.match(/(iphone|ipod|ipad)/);\n if (arrMatches != null) {\n $('.content_item_hover').removeClass('content_item_hover');\n }\n }\n}", "getListOfDevicesForResponsiveness(){\n // const sizes = ['ipad-2', 'ipad-mini', 'iphone-3', 'iphone-4', 'iphone-5', 'iphone-6', 'iphone-6+', 'iphone-7','iphone-8', 'iphone-x', 'iphone-xr', 'iphone-se2', 'macbook-11', 'macbook-13', 'macbook-15', 'macbook-16', 'samsung-note9', 'samsung-s10']\n\n // only for devlopement and during checkin code \n const sizes = ['macbook-16']\n\n return sizes;\n }", "function isiPod(){\r\n\t\treturn(/(iPhone|iPod)/g).test(navigator.userAgent);\r\n\t}", "function mobileDetect()\n\t{\n\t\t(navigator.userAgent.match(/(iPhone|iPod|iPad|Android|BlackBerry)/)) ? isMobile = true : isMobile = false;\n\t}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Ensure that the instruction has exactly `count` arguments, throwing an exception otherwise.
function checkArgs(instr: bril.Operation, count: number) { if (instr.args.length != count) { throw `${instr.op} takes ${count} argument(s); got ${instr.args.length}`; } }
[ "function checkArgs(instr: bril.Operation, count: number) {\n if (instr.args.length != count) {\n throw new BriliError(`${instr.op} takes ${count} argument(s); got ${instr.args.length}`);\n }\n}", "function _ch_checkArgs(args, count, message) {\n if (args.length < count) {\n _ch_error(message + \" requires at least \" + count + \" arguments. \");\n }\n}", "function errorIllegalArgCount() {\n throw new ContractViolation(\"ARG_COUNT\");\n }", "function validateNumberOfArguments(args, expected, methodName) {\n if (args.length < expected) {\n throw new Error(`${methodName}() was called with the incorrect number of arguments. Expected ${expected} argument${(expected > 1) ? 's' : ''} but received ${args.length}.`);\n }\n}", "_requireParameterCount (count, parameters, rule) {\n if (!parameters || parameters.length < count) {\n throw new InvalidArgumentException(`Validation rule ${rule} requires at least ${count} parameters.`)\n }\n }", "function validateExactNumberOfArgs(functionName, args, numberOfArgs) {\n if (args.length !== numberOfArgs) {\n throw new FirestoreError(Code.INVALID_ARGUMENT, \"Function \" + functionName + \"() requires \" + formatPlural(numberOfArgs, 'argument') + ', but was called with ' + formatPlural(args.length, 'argument') + '.');\n }\n }", "function validateExactNumberOfArgs(functionName, args, numberOfArgs) {\n if (args.length !== numberOfArgs) {\n throw new __WEBPACK_IMPORTED_MODULE_1__error__[\"a\" /* FirestoreError */](__WEBPACK_IMPORTED_MODULE_1__error__[\"b\" /* Code */].INVALID_ARGUMENT, \"Function \" + functionName + \"() requires \" +\n formatPlural(numberOfArgs, 'argument') +\n ', but was called with ' +\n formatPlural(args.length, 'argument') +\n '.');\n }\n}", "function expectProperArgumentLength(unitTest, localParameterCount,\n argumentsLength, methodName) {\n if (argumentsLength === localParameterCount) {\n\n return;\n }\n\n didAssertion(unitTest, false, kArgumentException);\n\n throw format(kArgumentCountMismatch, methodName, localParameterCount);\n }", "function validateExactNumberOfArgs(functionName, args, numberOfArgs) {\n if (args.length !== numberOfArgs) {\n throw new __WEBPACK_IMPORTED_MODULE_1__error__[\"b\" /* FirestoreError */](__WEBPACK_IMPORTED_MODULE_1__error__[\"a\" /* Code */].INVALID_ARGUMENT, \"Function \" + functionName + \"() requires \" +\n formatPlural(numberOfArgs, 'argument') +\n ', but was called with ' +\n formatPlural(args.length, 'argument') +\n '.');\n }\n}", "function validateExactNumberOfArgs(functionName, args, numberOfArgs) {\r\n\t if (args.length !== numberOfArgs) {\r\n\t throw new FirestoreError(Code.INVALID_ARGUMENT, \"Function \" + functionName + \"() requires \" +\r\n\t formatPlural(numberOfArgs, 'argument') +\r\n\t ', but was called with ' +\r\n\t formatPlural(args.length, 'argument') +\r\n\t '.');\r\n\t }\r\n\t}", "function validateExactNumberOfArgs(functionName, args, numberOfArgs) {\n if (args.length !== numberOfArgs) {\n throw new error_1.FirestoreError(error_1.Code.INVALID_ARGUMENT, \"Function \" + functionName + \"() requires \" +\n formatPlural(numberOfArgs, 'argument') +\n ', but was called with ' +\n formatPlural(args.length, 'argument') +\n '.');\n }\n}", "function validateExactNumberOfArgs(functionName, args, numberOfArgs) {\n if (args.length !== numberOfArgs) {\n throw new FirestoreError(Code.INVALID_ARGUMENT, \"Function \" + functionName + \"() requires \" + formatPlural(numberOfArgs, 'argument') + ', but was called with ' + formatPlural(args.length, 'argument') + '.');\n }\n}", "function checkArgCount(a, b) {\n argCount = arguments.length;\n if (arguments.length > 0)\n expect(arguments[0]).toBe(arg0);\n if (arguments.length > 1)\n expect(arguments[1]).toBe(arg1);\n if (arguments.length > 2)\n expect(arguments[2]).toBe(arg2);\n }", "function validateExactNumberOfArgs(functionName, args, numberOfArgs) {\r\n if (args.length !== numberOfArgs) {\r\n throw new FirestoreError(Code.INVALID_ARGUMENT, \"Function \" + functionName + \"() requires \" +\r\n formatPlural(numberOfArgs, 'argument') +\r\n ', but was called with ' +\r\n formatPlural(args.length, 'argument') +\r\n '.');\r\n }\r\n}", "function validateAtLeastNumberOfArgs(functionName, args, minNumberOfArgs) {\n if (args.length < minNumberOfArgs) {\n throw new __WEBPACK_IMPORTED_MODULE_1__error__[\"b\" /* FirestoreError */](__WEBPACK_IMPORTED_MODULE_1__error__[\"a\" /* Code */].INVALID_ARGUMENT, \"Function \" + functionName + \"() requires at least \" +\n formatPlural(minNumberOfArgs, 'argument') +\n ', but was called with ' +\n formatPlural(args.length, 'argument') +\n '.');\n }\n}", "function validateInstruction(ix, ...args) {\n // todo\n}", "function validateAtLeastNumberOfArgs(functionName, args, minNumberOfArgs) {\n if (args.length < minNumberOfArgs) {\n throw new FirestoreError(Code.INVALID_ARGUMENT, \"Function \" + functionName + \"() requires at least \" +\n formatPlural(minNumberOfArgs, 'argument') +\n ', but was called with ' +\n formatPlural(args.length, 'argument') +\n '.');\n }\n}", "function validateAtLeastNumberOfArgs(functionName, args, minNumberOfArgs) {\n if (args.length < minNumberOfArgs) {\n throw new error_1.FirestoreError(error_1.Code.INVALID_ARGUMENT, \"Function \" + functionName + \"() requires at least \" +\n formatPlural(minNumberOfArgs, 'argument') +\n ', but was called with ' +\n formatPlural(args.length, 'argument') +\n '.');\n }\n}", "function validateAtLeastNumberOfArgs(functionName, args, minNumberOfArgs) {\n if (args.length < minNumberOfArgs) {\n throw new FirestoreError(Code.INVALID_ARGUMENT, \"Function \" + functionName + \"() requires at least \" + formatPlural(minNumberOfArgs, 'argument') + ', but was called with ' + formatPlural(args.length, 'argument') + '.');\n }\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
The BloomFilter applies a Gaussian blur to an object. The strength of the blur can be set for x and yaxis separately.
function BloomFilter() { core.AbstractFilter.call(this); this.blurXFilter = new BlurXFilter(); this.blurYFilter = new BlurYFilter(); this.defaultFilter = new core.AbstractFilter(); }
[ "function BloomFilter(){core.AbstractFilter.call(this);this.blurXFilter=new BlurXFilter();this.blurYFilter=new BlurYFilter();this.defaultFilter=new core.AbstractFilter();}", "function BloomFilter()\n{\n PIXI.Filter.call(this);\n\n this.blurXFilter = new BlurXFilter();\n this.blurYFilter = new BlurYFilter();\n\n this.blurYFilter.blendMode = PIXI.BLEND_MODES.SCREEN;\n\n this.defaultFilter = new VoidFilter();\n}", "function BloomFilter()\n\t{\n\t core.AbstractFilter.call(this);\n\t\n\t this.blurXFilter = new BlurXFilter();\n\t this.blurYFilter = new BlurYFilter();\n\t\n\t this.defaultFilter = new core.AbstractFilter();\n\t}", "function BlurFilter(){core.AbstractFilter.call(this);this.blurXFilter=new BlurXFilter();this.blurYFilter=new BlurYFilter();}", "function BlurFilter()\n{\n core.AbstractFilter.call(this);\n\n this.blurXFilter = new BlurXFilter();\n this.blurYFilter = new BlurYFilter();\n}", "function BlurFilter()\n\t{\n\t core.AbstractFilter.call(this);\n\t\n\t this.blurXFilter = new BlurXFilter();\n\t this.blurYFilter = new BlurYFilter();\n\t}", "function BlurXFilter()\n\t{\n\t core.AbstractFilter.call(this,\n\t // vertex shader\n\t fs.readFileSync(__dirname + '/blurX.vert', 'utf8'),\n\t // fragment shader\n\t fs.readFileSync(__dirname + '/blur.frag', 'utf8'),\n\t // set the uniforms\n\t {\n\t strength: { type: '1f', value: 1 }\n\t }\n\t );\n\t\n\t /**\n\t * Sets the number of passes for blur. More passes means higher quaility bluring.\n\t *\n\t * @member {number}\n\t * @default 1\n\t */\n\t this.passes = 1;\n\t\n\t this.strength = 4;\n\t}", "function SmartBlurFilter()\n\t{\n\t core.AbstractFilter.call(this,\n\t // vertex shader\n\t null,\n\t // fragment shader\n\t fs.readFileSync(__dirname + '/smartBlur.frag', 'utf8'),\n\t // uniforms\n\t {\n\t delta: { type: 'v2', value: { x: 0.1, y: 0.0 } }\n\t }\n\t );\n\t}", "function BlurFilter()\n{\n core.AbstractFilter.call(this);\n this.defaultFilter = new core.AbstractFilter();\n\n this.blurFilters = [\n new BlurDirFilter( 1, 0),\n new BlurDirFilter(-1, 0),\n new BlurDirFilter( 0, 1),\n new BlurDirFilter( 0,-1),\n new BlurDirFilter( 0.7, 0.7),\n new BlurDirFilter(-0.7, 0.7),\n new BlurDirFilter( 0.7,-0.7),\n new BlurDirFilter(-0.7,-0.7)\n ];\n\n}", "function _blur(cubeUVRenderTarget,lodIn,lodOut,sigma,poleAxis){_halfBlur(cubeUVRenderTarget,_pingPongRenderTarget,lodIn,lodOut,sigma,'latitudinal',poleAxis);_halfBlur(_pingPongRenderTarget,cubeUVRenderTarget,lodOut,lodOut,sigma,'longitudinal',poleAxis);}", "function BlurYFilter()\n\t{\n\t core.AbstractFilter.call(this,\n\t // vertex shader\n\t fs.readFileSync(__dirname + '/blurY.vert', 'utf8'),\n\t // fragment shader\n\t fs.readFileSync(__dirname + '/blur.frag', 'utf8'),\n\t // set the uniforms\n\t {\n\t strength: { type: '1f', value: 1 }\n\t }\n\t );\n\t\n\t this.passes = 1;\n\t this.strength = 4;\n\t}", "function gaussianBlur(img, pixels, amount) {\n\n\tvar width = img.width;\n\tvar width4 = width << 2;\n\tvar height = img.height;\n\t\n\tif (pixels) {\n\t\tvar data = pixels.data;\n\t\t\n\t\t// compute coefficients as a function of amount\n\t\tvar q;\n\t\tif (amount < 0.0) {\n\t\t\tamount = 0.0;\n\t\t}\n\t\tif (amount >= 2.5) {\n\t\t\tq = 0.98711 * amount - 0.96330; \n\t\t} else if (amount >= 0.5) {\n\t\t\tq = 3.97156 - 4.14554 * Math.sqrt(1.0 - 0.26891 * amount);\n\t\t} else {\n\t\t\tq = 2 * amount * (3.97156 - 4.14554 * Math.sqrt(1.0 - 0.26891 * 0.5));\n\t\t}\n\t\t\n\t\t//compute b0, b1, b2, and b3\n\t\tvar qq = q * q;\n\t\tvar qqq = qq * q;\n\t\tvar b0 = 1.57825 + (2.44413 * q) + (1.4281 * qq ) + (0.422205 * qqq);\n\t\tvar b1 = ((2.44413 * q) + (2.85619 * qq) + (1.26661 * qqq)) / b0;\n\t\tvar b2 = (-((1.4281 * qq) + (1.26661 * qqq))) / b0;\n\t\tvar b3 = (0.422205 * qqq) / b0; \n\t\tvar bigB = 1.0 - (b1 + b2 + b3); \n\t\t\n\t\t// horizontal\n\t\tfor (var c = 0; c < 3; c++) {\n\t\t\tfor (var y = 0; y < height; y++) {\n\t\t\t\t// forward \n\t\t\t\tvar index = y * width4 + c;\n\t\t\t\tvar indexLast = y * width4 + ((width - 1) << 2) + c;\n\t\t\t\tvar pixel = data[index];\n\t\t\t\tvar ppixel = pixel;\n\t\t\t\tvar pppixel = ppixel;\n\t\t\t\tvar ppppixel = pppixel;\n\t\t\t\tfor (; index <= indexLast; index += 4) {\n\t\t\t\t\tpixel = bigB * data[index] + b1 * ppixel + b2 * pppixel + b3 * ppppixel;\n\t\t\t\t\tdata[index] = pixel; \n\t\t\t\t\tppppixel = pppixel;\n\t\t\t\t\tpppixel = ppixel;\n\t\t\t\t\tppixel = pixel;\n\t\t\t\t}\n\t\t\t\t// backward\n\t\t\t\tindex = y * width4 + ((width - 1) << 2) + c;\n\t\t\t\tindexLast = y * width4 + c;\n\t\t\t\tpixel = data[index];\n\t\t\t\tppixel = pixel;\n\t\t\t\tpppixel = ppixel;\n\t\t\t\tppppixel = pppixel;\n\t\t\t\tfor (; index >= indexLast; index -= 4) {\n\t\t\t\t\tpixel = bigB * data[index] + b1 * ppixel + b2 * pppixel + b3 * ppppixel;\n\t\t\t\t\tdata[index] = pixel;\n\t\t\t\t\tppppixel = pppixel;\n\t\t\t\t\tpppixel = ppixel;\n\t\t\t\t\tppixel = pixel;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t// vertical\n\t\tfor (var c = 0; c < 3; c++) {\n\t\t\tfor (var x = 0; x < width; x++) {\n\t\t\t\t// forward \n\t\t\t\tvar index = (x << 2) + c;\n\t\t\t\tvar indexLast = (height - 1) * width4 + (x << 2) + c;\n\t\t\t\tvar pixel = data[index];\n\t\t\t\tvar ppixel = pixel;\n\t\t\t\tvar pppixel = ppixel;\n\t\t\t\tvar ppppixel = pppixel;\n\t\t\t\tfor (; index <= indexLast; index += width4) {\n\t\t\t\t\tpixel = bigB * data[index] + b1 * ppixel + b2 * pppixel + b3 * ppppixel;\n\t\t\t\t\tdata[index] = pixel;\n\t\t\t\t\tppppixel = pppixel;\n\t\t\t\t\tpppixel = ppixel;\n\t\t\t\t\tppixel = pixel;\n\t\t\t\t} \n\t\t\t\t// backward\n\t\t\t\tindex = (height - 1) * width4 + (x << 2) + c;\n\t\t\t\tindexLast = (x << 2) + c;\n\t\t\t\tpixel = data[index];\n\t\t\t\tppixel = pixel;\n\t\t\t\tpppixel = ppixel;\n\t\t\t\tppppixel = pppixel;\n\t\t\t\tfor (; index >= indexLast; index -= width4) {\n\t\t\t\t\tpixel = bigB * data[index] + b1 * ppixel + b2 * pppixel + b3 * ppppixel;\n\t\t\t\t\tdata[index] = pixel;\n\t\t\t\t\tppppixel = pppixel;\n\t\t\t\t\tpppixel = ppixel;\n\t\t\t\t\tppixel = pixel;\n\t\t\t\t}\n\t\t\t}\n\t\t} \n\t\t\n\t\treturn(pixels);\n\t}\n}", "function blur (imgData, option) {\n // check options object & set default variables\n option = option || {}\n option.monochrome = option.monochrome || false\n option.type = option.type || 'gaussian'\n\n var types = {\n average: [1, 1, 1, 1, 1, 1, 1, 1, 1],\n gaussian: [1, 2, 1, 2, 4, 2, 1, 2, 1]\n }\n if (!types[option.type]) {\n throw new Error('Could not find type of filter requested')\n }\n var f = types[option.type]\n return convolution(imgData, {\n filter: f,\n divisor: f.reduce(function (p, n) { return p + n }),\n radius: 1,\n monochrome: option.monochrome\n })\n }", "function boxBlur(img, kernel) {\n externalLog(`Computing box blur of ${img.width}x${img.height} source image with ${kernel.length}x${kernel.length} kernel... `);\n\n const blur = createImage(img.width, img.height);\n\n // compute half size of kernel for indexing\n const halfK = floor(kernel.length / 2);\n\n img.loadPixels();\n blur.loadPixels();\n\n // iterate over pixels\n for (let x = 0; x < img.width; x++) {\n for (let y = 0; y < img.height; y++) {\n let sumR = 0, sumG = 0, sumB = 0;\n\n // for each position in the kernel\n for (let ky = -halfK; ky <= halfK; ky++) {\n for (let kx = -halfK; kx <= halfK; kx++) {\n // if position valid (not outside image)\n if (y + ky >= 0 && x + kx >= 0 && y + ky < img.height && x + kx < img.width) {\n // calculate start position of this pixel in pixels array\n // (* 4 because pixels array contains R, G, B, and alpha values)\n let pos = pixelPosition(x + kx, y + ky, img.width); // ((y + ky) * img.width + (x + kx)) * 4;\n\n // how much do we need to scale it by\n let kScale = kernel[ky + halfK][kx + halfK];\n\n // add kernel-scaled color values to their respective sums\n sumR += kScale * img.pixels[pos]; // red in pixel\n sumG += kScale * img.pixels[pos + 1]; // green in pixel\n sumB += kScale * img.pixels[pos + 2]; // blue in pixel\n }\n }\n }\n\n let pixelPos = pixelPosition(x, y, img.width)\n\n // in blurred image, set pixel color based on kernel sums\n blur.pixels[pixelPos] = sumR;\n blur.pixels[pixelPos + 1] = sumG;\n blur.pixels[pixelPos + 2] = sumB;\n blur.pixels[pixelPos + 3] = 255; // make alpha 255, completely visible\n }\n }\n\n // apply changes to pixels in blurred image\n blur.updatePixels();\n\n externalLog(\"Done.\");\n\n return blur;\n}", "function applyBlur()\n\t\t\t\t{\n\t\t\t\t TweenMax.set($('.main-img'), {webkitFilter:'blur('+ blurElement.a + 'px)'}); \n\t\t\t\t}", "function BlurXFilter(strength, quality, resolution)\n{\n var vertSrc = generateBlurVertSource(5, true);\n var fragSrc = generateBlurFragSource(5);\n\n core.Filter.call(this,\n // vertex shader\n vertSrc,\n // fragment shader\n fragSrc\n );\n\n this.resolution = resolution || 1;\n\n this._quality = 0;\n\n this.quality = quality || 4;\n this.strength = strength || 8;\n\n this.firstRun = true;\n\n}", "get blurriness() { return this.convolutionMaterial.scale; }", "function setupBlurHorizontalFBO() {\n \t\t\tblurHFBO = gl.createFramebuffer();\n \t\t\tblurHTexture = gl.createTexture();\n \t\t\tsetupFBO(blurHFBO, blurHTexture, width, height);\n \t\t}", "_blur(cubeUVRenderTarget,lodIn,lodOut,sigma,poleAxis){const pingPongRenderTarget=this._pingPongRenderTarget;this._halfBlur(cubeUVRenderTarget,pingPongRenderTarget,lodIn,lodOut,sigma,'latitudinal',poleAxis);this._halfBlur(pingPongRenderTarget,cubeUVRenderTarget,lodOut,lodOut,sigma,'longitudinal',poleAxis);}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
this is our request animation frame loop where we will translate our slider
animate() { // interpolate values var translation = this.lerp(this.translation, this.currentPosition, this.options.easing); // apply our translation this.translateSlider(translation); this.animationFrame = requestAnimationFrame(this.animate.bind(this)); }
[ "_setupAnimation() {\n const element = this._item._element;\n const translate = getTranslate(element);\n this._currentLeft = translate.x;\n this._currentTop = translate.y;\n }", "function visualUpdate() {\n container.position.y = tweenData.y;\n }", "_slide (dir) {\n let slide = this._directionToVector3(dir)\n let newPos = this._player.position.add(slide)\n let keys = [\n { frame: 0, value: this._player.position },\n { frame: 60, value: newPos }\n ]\n this._anims.slide.anim.setKeys(keys)\n\n this._anims.slide.run = scene.beginDirectAnimation(\n this._player,\n [this._anims.slide.anim],\n 0,\n 60,\n false,\n this._moveSpeed)\n }", "_translateThumb() {\n this._animatedThumbLeft.setValue(this.state.thumbFrame.x);\n const newX = this._computeThumbX(this.state.checked);\n Animated.timing(this._animatedThumbLeft, {\n toValue: newX,\n duration: this.props.thumbAniDuration || 300,\n }).start(() => {\n this.state.thumbFrame.x = newX;\n });\n }", "function setPositionByIndex() {\n currentTranslate = currentIndex * -window.innerWidth\n prevTranslate = currentTranslate\n setSliderPosition()\n}", "_updateSliderPosition() {\n // 100 * ( slide position ) / ( number of elements in slider )\n const position = 100 * (this.currentSlide + this.numberOfVisibleSlides - 1) / (this.slides.length);\n this.slider.style.transform = `translate3d(-${position}%,0,0)`;\n this._updateTabindex();\n }", "function onFrame() {\n\n\t\t\t\t// Frame arrived\n\t\t\t\tisFrameRequested = false;\n\n\t\t\t\tif (!index && index !== 0)\n\t\t\t\t\tindex = getIndexOffset(self.index);\n\n\t\t\t\ttime = time || 0;\n\n\t\t\t\t// Move using CSS transition\n\t\t\t\tif (isCSS && config.isCarousel) {\n\n\t\t\t\t\ttouchX = touchX || 0;\n\n\t\t\t\t\t// Callback when complete\n\t\t\t\t\tif (time && complete)\n\t\t\t\t\t\tstrip.one(prefix.toLowerCase() + 'TransitionEnd transitionend', complete);\n\n\t\t\t\t\t// Move using CSS animation\n\t\t\t\t\tstyle[prefix + 'Transition'] = (time)? time / 1000 + 's' : '';\n\t\t\t\t\tstyle[prefix + 'Transform'] = 'translateX(' + (getTransitionX(index, true) - touchX) * -1 + '%)';\n\n\t\t\t\t\t// No transition time, run callback immediately\n\t\t\t\t\tif (!time && complete)\n\t\t\t\t\t\tcomplete();\n\t\t\t\t}\n\n\t\t\t\t// Move using jQuery\n\t\t\t\telse strip.stop(true, true).animate({ left: getTransitionX(index) + '%' }, time, complete);\n\t\t\t}", "function fAnimateSlider (elem, eTop, eLeft) {\n //var posLeft = position.left();\n //tMx.to (elem, animTym, {css: {y: eTop, offsetLeft: eLeft}, ease: easePower});\n tMx.to (elem, animTym, {y: eTop, x: eLeft, ease: easePower});\n //tMx.to (elem, animTym, {backgroundSize: \"+=25% +=25%\", ease: easePower}); //Testing\n }", "function startAnimation() {\n // reset counter to 0 (restart animation)\n counter = 0;\n // calculate and define pre and post transformed data\n let data_for_plotting = calculate_positions_and_vectors(slider.val(), u00.val(), u01.val(), u10.val(), u11.val());\n const xInput = data_for_plotting[0];\n const yInput = data_for_plotting[1];\n const xArray = data_for_plotting[2];\n const yArray = data_for_plotting[3];\n const xInputTransformedArray = data_for_plotting[5];\n const yInputTransformedArray = data_for_plotting[6];\n const xArrayTrans = data_for_plotting[10];\n const yArrayTrans = data_for_plotting[11];\n // initialise the difference arrays, which are the difference between the before and after transformation data\n let xprobedifference = copy(xInput);\n let yprobedifference = copy(yInput);\n let xgeneraldifference = copy(xArray);\n let ygeneraldifference = copy(yArray);\n // fill the difference arrays with th\n for (let i = 0; i < xInput.length; i++) {\n xprobedifference[i] = xInputTransformedArray[i] - xInput[i];\n yprobedifference[i] = yInputTransformedArray[i] - yInput[i];\n }\n for (let i = 0; i < xArray.length; i++) {\n xgeneraldifference[i] = xArrayTrans[i] - xArray[i];\n ygeneraldifference[i] = yArrayTrans[i] - yArray[i];\n }\n animator = setInterval(Animate, animate_time, xInput, yInput, xprobedifference, yprobedifference, xArray, yArray, xgeneraldifference, ygeneraldifference);\n }", "function translateSlide(){\n\tslide.forEach(image =>{\n\t\timage.style.transform = `translateX(${position}%)`\n\t})\n}", "animate(){\n this.x += this.delta(3.1416*2.0,10);\n }", "getFrame(){\n this.collection.forEach(p=>{\n if(p.imageClear) this.clear(p);\n this.constructor.wind(p);\n this.onMove(p);\n if(p.x<0||p.y<0||p.x>this.easel.viewport.w||p.y>this.easel.viewport.h){\n this.onEscape(p);\n } //end if\n if(p.tweenCurrent<p.tweenDuration){\n p.x=this.tween(p,'x');\n p.y=this.tween(p,'y');\n } //end if\n p.tweenCurrent++;\n if(p.tweenCurrent>=p.tweenDuration&&p.onEnd)p.onEnd.call(this,p);\n this.draw(p);\n });\n }", "calcTransforms() {\n /*\n Each position corresponds to the position of a given slide:\n 0: left top corner outside the viewport\n 1: left top corner (prev slide position)\n 2: center (current slide position)\n 3: right bottom corner (next slide position)\n 4: right bottom corner outside the viewport\n 5: left side, for when the content is shown\n */\n this.transforms = [\n {\n x: -1 * (winsize.width / 2 + this.width),\n y: -1 * (winsize.height / 2 + this.height),\n rotation: -30\n },\n {\n x: -1 * (winsize.width / 2 - this.width / 3),\n y: -1 * (winsize.height / 2 - this.height / 3),\n rotation: 0\n },\n { x: 0, y: 0, rotation: 0 },\n {\n x: winsize.width / 2 - this.width / 3,\n y: winsize.height / 2 - this.height / 3,\n rotation: 0\n },\n {\n x: winsize.width / 2 + this.width,\n y: winsize.height / 2 + this.height,\n rotation: 30\n },\n {\n x: -1 * (winsize.width / 2 - this.width / 2 - winsize.width * 0.075),\n y: 0,\n rotation: 0\n }\n ];\n }", "animate() {\n this.renderScene()\n this.frameId = window.requestAnimationFrame(this.animate)\n this.camera.rotation.z -= .0004;\n this.clouds1.rotation.y += .001;\n this.clouds2.rotation.y += .001;\n\n this.yinYang.rotation.y += 0.00;\n this.earth.rotation.y += 0.001;\n this.fire.rotation.y += 0.001;\n this.metal.rotation.y += 0.001;\n this.water.rotation.y += 0.001;\n this.wood.rotation.y += 0.001;\n }", "calcTransforms() {\n /*\n Each position corresponds to the position of a given slide:\n 0: left outside the viewport\n 1: left (prev slide position)\n 2: center (current slide position)\n 3: right (next slide position)\n 4: right outside the viewport\n 5: left side, for when the content is shown\n */\n this.transforms = [\n {x: -1*(winsize.width+this.width), y: 0, rotation: 0},\n {x: -1*(winsize.width/1.6), y: 0, rotation: 0},\n {x: 0, y: 0, rotation: 0},\n {x: (winsize.width/1.6), y: 0, rotation: 0},\n {x: winsize.width+this.width, y: 0, rotation: 0},\n {x: -1*(winsize.width/2 - this.width/2 - winsize.width*0.075), y: 0, rotation: 0}\n ];\n }", "initAnimationFrames() {\n this.frames = []\n for (let i = 0; i <= 500; i++) {\n let val = 1.5 - (i / 500 * 1.5)\n // magically works since the spritesheet was loaded with the pixi loader\n this.frames.push(val)\n }\n this.finalFrame = this.props.value * 5\n this.upDateFrame = this.finalFrame\n this.baseFrame = this.finalFrame\n }", "function moveSlider() {\n // see computeSpeed for explanations\n gBtSlider.x = gDelay/3 + gPosSlider.x;\n }", "function transition() {\n $carousel.css({ left: ( positions[currentPosition] * -1 ) });\n // Wraparound logic\n // Should refresh staging area\n var wraparound = false;\n console.log(currentPosition);\n if (currentPosition == 1) {\n currentPostion += numItems;\n wraparound = true;\n } else if (currentPosition == positions.length - 3) {\n currentPosition -= numItems;\n wraparound = true;\n }\n }", "function motionLoop() {\n\t\t\n\t\tportfolioLabel.rotation += 1;\n\t\tportfolioLabel.x += portfolioLabelMove;\n\t\ttoiletMonster.x += toiletMonsterMove;\n\t\tif ((portfolioLabel.x >= screenWidth) || (portfolioLabel.x <= screenWidth)) {\n\t\t\tportfolioLabelMove *= -0.1;\n\t\t\ttoiletMonsterMove *= +0.05;\n\t\t}\n\t\t\n\t\t// page redrawn/reset\n\t\tstage.update();\n\t}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Name: MultipleParameters() Purpose: the purpose of this function is to use multiple css parameters to move the picture Parameters: N/A Return: N/A
function MultipleParameters() { $( "#target" ).fadeIn().css({'paddingTop':'+=40', 'paddingLeft':'+=40'});}
[ "setParameters(parameters) {\n\t\t/*\n\t\tlet parameterList = [\"squareSize\",\n\t\t \"gridX\", \"gridY\",\n\t\t \"textHorizontalX\", \"textHorizontalY\",\n\t\t \"textVerticalX\", \"textVerticalY\",\n\t\t \"textHorizontalOddOffset\",\n\t\t \"filledColor\", \"emptyColor\", \n\t\t \"strokeColor\", \"strokeWeight\",\n\t\t \"textSize\", \"textColor\"]\n\t\t*/\n\t\tfor (var p in parameters) {\n\t\t\tthis[p] = parameters[p];\n\t\t}\n\t}", "function DrawParameters(context, parameter_list) {\n for (var i = 0; i < parameter_list.length; i++) {\n var p = parameter_list[i];\n p.resetBoundingBoxArea();\n for (var count = 0; count < p.quantity; count++) {\n var draw_size;\n switch (p.call_type) {\n case CALL_TYPE.PATH:\n setShapeStyle(context, p.fill_style);\n setShadeStyle(context, p.shadow_blur);\n draw_size = drawShape(context, p.draw_sub_type, p.size);\n break;\n case CALL_TYPE.IMAGE:\n setShadeStyle(context, p.shadow_blur);\n draw_size = drawImageType(context, p.draw_sub_type, p.size);\n break;\n case CALL_TYPE.GET_DATA:\n draw_size = getImageData(context, p.size);\n break;\n case CALL_TYPE.PUT_DATA:\n draw_size = putImageData(context, p.size);\n break;\n default:\n draw_size = new DrawSize(0, 0);\n }\n\n p.total_bounding_box_area +=\n draw_size.width * draw_size.height;\n\n p.total_bounding_box_perimeter +=\n (2*draw_size.width) + (2*draw_size.height);\n\n if (p.call_type == CALL_TYPE.PATH || p.call_type == CALL_TYPE.IMAGE) {\n p.total_shadow_bounding_box_area +=\n (draw_size.width+2*p.shadow_blur) *\n (draw_size.height+2*p.shadow_blur);\n }\n }\n }\n}", "function setParameters(params, args, stackFrameI)\n{\n let withHighlight = \"\";\n //strings that represent span\n let spanOpen = \"<span class=\\\"highlight\\\">\";\n let spanClose = \"</span>\";\n\n //show params on stack and build string to replace / replace with\n for(let i = 0; i < params.length; i++)\n {\n showNewVariable(params[i] + \"-\" + stackFrameI, true);\n withHighlight += (params[i] + \" = \" + spanOpen\n + pythonize(args[i]) + spanClose);\n if(i < params.length-1){ withHighlight += \", \"; }\n }\n\n //highlight the arg values on the line\n setTimeout(replaceWholeLine, TIMEINTERVAL, withHighlight, stackFrameI);\n\n //assign the arg values to the parameters\n for(let i = 0; i < params.length; i++)\n {\n setTimeout(showVariableValue, TIMEINTERVAL*2,\n params[i] + \"-\" + stackFrameI, pythonize(args[i]));\n }\n}", "function mobileParamSelect(selected, iconId) {\n // get all parameters by 'param-switch-mobile' by getElementsByClassName\n var allParams = document.getElementsByClassName('param-switch_mobile');\n var openParam = document.getElementsByClassName(selected);\n var iconImg = document.getElementsByClassName('param-icon-img');\n // change all tooltip toward up direction\n\n // traverse through all elements and see which one has display: flex and remove it\n for (i = 0; i < allParams.length; i++) {\n // uncheck selected param (icon)\n if(allParams[i].hasAttribute(\"style\")) {\n allParams[i].removeAttribute(\"style\");\n iconImg[i].removeAttribute(\"style\");\n }\n }\n // add \"selected param\" with display=flex inline css\n openParam[0].setAttribute(\"style\",\"display: flex;\");\n iconImg[iconId].setAttribute(\"Style\", \"border-bottom: 2px solid #ef6e0c;\");\n}", "assignDefaultParameters(parameters) {\n // Default values for parameters\n const defaultValues = {\n pos_x: 0,\n pos_y: 0,\n width: 150,\n height: 30,\n contour_width: 1,\n contour_color: \"black\",\n text_size: 15,\n text_font: \"Arial\",\n text_color: \"Black\",\n submit_callback: null,\n placeholder: \"Enter text here ...\",\n allow_overflow: true,\n change_cursor_on_hover: true,\n background_color: \"#FFFFFF\"\n };\n\n // Go through each parameter\n for (var key in defaultValues) {\n // if the parameter exist\n if (parameters && parameters.hasOwnProperty(key)) {\n this[key] = parameters[key];\n }\n // or else set the default value\n else {\n this[key] = defaultValues[key];\n }\n }\n }", "function changeStyleValues(inputString) {\n switch (inputString) {\n case 'Cooking':\n styleValues.r = 255;\n styleValues.g = 255;\n styleValues.b = 255;\n styleValues.a = 0.5;\n styleValues.icon = 'pot.png';\n styleValues.title = 'Cooking Trivia';\n styleValues.background = 'backgroundKitchen.jpg';\n styleValues.cursor = 'kitchenUtensils.png';\n styleValues.audio = 'bgmCooking.wav';\n break;\n case 'MonsterHunter':\n styleValues.r = 175;\n styleValues.g = 225;\n styleValues.b = 255;\n styleValues.a = 0.5;\n styleValues.icon = 'potion.png';\n styleValues.title = 'Monster Hunter Trivia';\n styleValues.background = 'backgroundMonsterHunter.jpg';\n styleValues.cursor = 'hbg.png';\n styleValues.audio = 'bgmMH.wav';\n break;\n case 'Bloodborne':\n styleValues.r = 120;\n styleValues.g = 170;\n styleValues.b = 210;\n styleValues.a = 0.5;\n styleValues.icon = 'rune.jpeg';\n styleValues.title = 'Bloodborne Trivia';\n styleValues.background = 'backgroundBloodborne.jpg';\n styleValues.cursor = 'sawCleaver.png';\n styleValues.audio = 'bgmBB.wav';\n break;\n default:\n break;\n }\n}", "function onParameterMove(event) {\n // if mouse position is inside hit area, then set stage.target to this\n if (IS_DRAGGING) {\n let relativeMousePosition = event.data.getLocalPosition(this);\n if (this.hitArea.contains(relativeMousePosition.x, relativeMousePosition.y)) {\n //console.log(`DEBUG::: parameter moving by {${this.blockInfo.name}}`);\n\n this.getChildAt(0).tint = 0xDDDDDD;\n MOUSEOVER_BLOCK = this;\n } else {\n if (this == MOUSEOVER_BLOCK) {\n MOUSEOVER_BLOCK = null;\n this.getChildAt(0).tint = 0xFFFFFF;\n }\n }\n }\n }", "function saveParametersToProcessIcon()\n{\n console.writeln(\"saveParametersToProcessIcon\");\n for (let x in par) {\n var param = par[x];\n if (param.val != param.def) {\n var name = util.mapBadChars(param.name);\n console.writeln(name + \"=\" + param.val);\n Parameters.set(name, param.val);\n }\n }\n}", "function updateParamsList() {\n\t\t\n\t\t// Get the main parameter container to update\n\t\tvar pContainer = $(\"#paramGroupContainer\");\n\t\tvar template = pContainer.find(\"#paramGroupTemplate\")\n\t\t\n\t\t// Hide everything : handle the case for reduced parameters\n\t\tpContainer.find(\".paramGroup\").hide();\n\t\t\n\t\t// Get desired parameter count\n\t\tvar pCount = getParamCount();\n\t\t\n\t\t// Time to iterate, and create/reveal those paramGroups\n\t\tfor(var p=0; p<pCount; ++p) {\n\t\t\tvar pNode = $(\"#paramGroup_\"+p);\n\t\t\t\n\t\t\tif( pNode == null || pNode.length == 0 ) {\n\t\t\t\tpNode = template.clone();\n\t\t\t\t\n\t\t\t\tpNode.attr(\"id\", \"#paramGroup_\"+p);\n\t\t\t\tpNode.find(\".param_name\").val( paramDefaultNames[p] );\n\t\t\t\t\n\t\t\t\t// Setup code mirror\n\t\t\t\tCM_parameters[p] = CodeMirror.fromTextArea(pNode.find(\".param_function\")[0], CM_defaultConfig);\n\t\t\t\t\n\t\t\t\t// Setup default value\n\t\t\t\tCM_parameters[p].setValue(paramDefaultFunction);\n\t\t\t\t\n\t\t\t\t// Block edits for first and last line\n\t\t\t\tCM_parameters[p].on('beforeChange', CM_blockFirstAndLastLine);\n\t\t\t\t\n\t\t\t\t// Add param name, and sample output nodes to array (for easy refence)\n\t\t\t\tparamNameInputs[p] = pNode.find(\".param_name\");\n\t\t\t\tparamSampleOutputs[p] = pNode.find(\".param_sample\");\n\t\t\t\t\n\t\t\t\tpContainer.append(pNode);\n\t\t\t}\n\t\t\t\n\t\t\tpNode.show();\n\t\t\tCM_parameters[p].refresh();\n\t\t}\n\t\t\n\t\t// Update parameter names \n\t\tupdateKernelParamNames();\n\t}", "function css () {\n const args = Array.from(arguments).map(arg => {\n if (Array.isArray(arg)) {\n return arg.map(subArg => subArg\n .toString()\n .replace(/\\n/g, '')\n .replace(/\\s*/g, ''))\n } else {\n return arg\n .toString()\n }\n })\n\n return args\n}", "function PassingParameters(p1, p2)\r\n{\r\n var ret;\r\n\r\n ret = \"At the start of function PassingParameters;\\n\";\r\n ret += \" p1 = \" + p1 + \"\\n\";\r\n ret += \" p2.prop = \" + p2.prop + \"\\n\\n\";\r\n\r\n //Change the parameter values\r\n p1 *= 4;\r\n p2.prop *= 4;\r\n\r\n ret += \"At the end of function PassingParameters;\\n\";\r\n ret += \" p1 = \" + p1 + \"\\n\";\r\n ret += \" p2.prop = \" + p2.prop + \"\\n\\n\";\r\n\r\n return ret;\r\n}", "function multipleParameters(requiredParam, ...manyParams) {\n let returnAry = [ requiredParam ];\n return(returnAry.concat(manyParams));\n }", "static setPossibleNamesForCustomParameters(params) {\n _.each(params, p => {\n Adobe.setPossibleValuesForCustomParameter(p);\n });\n }", "function PropertyParameters( command, parameters, tokens, index )\n{\n this.__base__ = Object;\n this.__base__();\n\n this.label = \"\";\n this.readOnly = false;\n\n for ( let i = 0; i < parameters.length; ++i )\n {\n switch ( parameters[i].id )\n {\n case \"label\":\n if ( parameters[i].hasValue() )\n this.label = parameters[i].value.trim();\n if ( this.label.isEmpty() )\n throw new ParseError( \"Missing label name.\", tokens, index );\n break;\n case \"readonly\":\n case \"read_only\":\n if ( command != \"property\" && command != \"staticproperty\" )\n throw new ParseError( \"The readonly parameter can only be used with the \\\\property and \\\\staticproperty commands.\", tokens, index );\n if ( parameters[i].hasValue() )\n throw new ParseError( \"The readonly parameter takes no value.\", tokens, index );\n this.readOnly = true;\n break;\n case \"readwrite\":\n case \"read_write\":\n if ( command != \"property\" && command != \"staticproperty\" )\n throw new ParseError( \"The readwrite parameter can only be used with the \\\\property and \\\\staticproperty commands.\", tokens, index );\n if ( parameters[i].hasValue() )\n throw new ParseError( \"The readwrite parameter takes no value.\", tokens, index );\n this.readOnly = false;\n break;\n default:\n throw new ParseError( \"Unknown/invalid parameter '\" + parameters[i].id + \"' of the \\\\\" + command + \" command.\", tokens, index );\n }\n }\n}", "function defaultParametersMultiply(x=1, y=1) {\n return(x*y);\n}", "function attrAndStyleCheck() {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (args.length > 2) {\n return ['set'].concat(args);\n }\n if (args.length === 2) {\n if (['video', 'container', 'wrapper', 'videoElement'].indexOf(args[0]) > -1) {\n return ['get'].concat(args);\n }\n return ['set', 'container'].concat(args);\n }\n return ['get', 'container'].concat(args);\n}", "function _setParameters() {\n\n\t\tvar serializedForm = $parametersForm.serialize().replace(/\\+/g, '_'); //replace whitespace with underscore\n\n\t\tif(!$('[name=\"color_control\"]').is(':checked')) {\n\t\t\tserializedForm = serializedForm.replace('hidden-colors', 'colors'); //replace hidden-colors with colors - when color tags are visible\n\t\t}\n\t\telse {\n\t\t\tserializedForm = serializedForm.replace('color_control_title', 'colors'); //color control is visible\n\t\t}\n\n\t\tserializedForm = serializedForm.replace(/[^&]+=&/g, '').replace(/&[^&]+=$/g, '');//remove all empty parameters\n\n\t\t$currentListItem.children('input[name=\"element_parameters[]\"]').val(serializedForm);\n\n\t\tchangesAreSaved = false;\n\t}", "function picture_2across(position, width, border, image_number1, image_number2, image_credit1, image_credit2, image_caption)\r{\rvar picwidth\rvar picborder\rvar pic_string \rvar caption_position\rvar credit_position\rvar picture_class\rvar credit_class\r//alert( \"Starting\" );\rcredit_position = \"right\"\rcaption_position = \"left\";\rif (position == \"center\") { caption_position = \"left\"; }\rif (position == \"right\") { caption_position = \"right\"; }\rpicture_class = \"inpicsr\";\rif (position == \"left\") { picture_class = \"inpicsl\"; }\rif (position == \"center\") { picture_class = \"inpicsc\"; }\rcredit_class = \"imagecredit_rt\"\rif (position == \"left\") { credit_class = \"imagecredit_lt\"; }\rif (width != 0) { picwidth = 'width=\"' + width + '\"'; }\t\relse { \tpicwidth = \"\"; }\t\rif (border == true) { \tpicborder = \"\"; }\relse { \tpicborder = \"nb\"; }\t\rpic_string = '<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"' + position + '\"><tr><td align=\"' + position + '\"><img src=\"../../press_sites/mktg_musts_files/images/%27%20%2B%20rm_issue%20%2B%20%27/%27%20%2B%20rm_issue%20%2B%20%20%27_%27%20%2B%20rm_article_type%20%2B%20%27_%27%20%2B%20rm_article_number%20%2B%20%27_%27%20%2B%20image_number1%20%2B%20%27.jpg\" border=\"1\" align=\"' + position + '\" class=\"' + picture_class + picborder + '\"></td><td><img src=\"../../press_sites/images/rgbempty.gif\" width=\"5\" height=\"1\" border=\"0\" alt=\"\"></td><td align=\"' + position + '\"><img src=\"../../press_sites/mktg_musts_files/images/%27%20%2B%20rm_issue%20%2B%20%27/%27%20%2B%20rm_issue%20%2B%20%20%27_%27%20%2B%20rm_article_type%20%2B%20%27_%27%20%2B%20rm_article_number%20%2B%20%27_%27%20%2B%20image_number2%20%2B%20%27.jpg\" border=\"1\" align=\"' + position + '\" class=\"' + picture_class + picborder + '\"></td></tr><tr><td align=\"' + credit_position + '\" class=\"' + credit_class + '\">' + image_credit1 + '</td><td><img src=\"../../press_sites/images/rgbempty.gif\" width=\"5\" height=\"1\" border=\"0\" alt=\"\"></td><td align=\"' + credit_position + '\" class=\"' + credit_class + '\">' + image_credit2 + '</td></tr><tr><td colspan=\"3\"' + picwidth + ' align=\"' + caption_position + '\" class=\"imagecaption\">' + image_caption + '</td></tr></table>';\r//alert( \"Pic_string:\" + pic_string);\rdocument.write(pic_string); \rreturn true;\r}", "function parameters() {\n\n // Initialize parameter array if necessary\n if ( typeof parameters.values === \"undefined\" )\n parameters.values = new paramObject();\n\n // Define default values for parameters\n if ( typeof parameters.values.mode == 'undefined' )\n parameters.values.mode = \"View\";\n if ( typeof parameters.values.elem == 'undefined' )\n parameters.values.elem = \"C\";\n if ( typeof parameters.values.clouds == 'undefined' )\n parameters.values.clouds = 4;\n if ( typeof parameters.values.add == 'undefined' )\n parameters.values.add = \"Add\";\n if ( typeof parameters.values.bond == 'undefined' )\n parameters.values.bond = \"Add\";\n if ( typeof parameters.values.bondtype == 'undefined' )\n parameters.values.bondtype = \"single\";\n if ( typeof parameters.values.action == 'undefined' )\n parameters.values.action = \"press\";\n if ( typeof parameters.values.mousedownxyz == 'undefined' )\n parameters.values.mousedownxyz = [0,0,0];\n if ( typeof parameters.values.centermove == 'undefined' )\n parameters.values.centermove = [0,0,0];\n // End of parameters routine\n return parameters.values;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Get building by id
find(id) { return this.buildings.find((i) => i.id === id || i.email === id); }
[ "getOne(buildingId, callback) {\n const query = \"SELECT * FROM IntelliDoorDB.dbo.Buildings WHERE buildingId = @buildingId;\";\n const idParam = {\n name: 'buildingId',\n type: TYPES.NVarChar,\n value: buildingId\n };\n\n sqlDB.sqlGet(query, idParam, function(error, result) {\n if(error) {\n callback(error, result);\n } else {\n callback(null, result);\n }\n });\n }", "function getBuildIDForBuildBetaDetail(api, id) {\n return api_1.GET(api, `/buildBetaDetails/${id}/relationships/build`)\n}", "function getBuildingByName(name) {\n\tfor (i = 0; i < buildings.length; i++) {\n\t\tif (buildings[i].name == name) {\n\t\t\treturn buildings[i];\n\t\t}\n\t}\n\n\t// No building exists with given name\n\treturn null;\n}", "function findNameById(id) {\n for (var i = 0; i < buildings.length; ++i) {\n if (buildings[i].id === parseInt(id)) {\n return buildings[i].name;\n }\n }\n return \"\";\n }", "getDoorById(id = 0){\r\n return this.state.doors.filter(door => door.id === id)[0];\r\n }", "function getRoomById(id) {\n for (let i = 0; i < rooms.length; i++) {\n const room = rooms[i];\n if (room.id == id) {\n return room;\n }\n }\n return null;\n}", "function getBuildBetaDetailsResourceIDForBuild(api, id) {\n return api_1.GET(api, `/builds/${id}/relationships/buildBetaDetail`)\n}", "function getBuildingDetails(id){\n\tcurrentBuildingId = id;\n\tvar json = '{\"id\":\"'+id+'\"}';\n\t$.ajax({type: \"POST\", url: \"/ajax.php\", data: \"&method=getBuildingDetails&params=\"+json,\n\t\terror: function(){\n\t\t\talert(\"An error occurred...!\");\n\t\t\treturn false;\t\t\t\n\t\t},\n\t\ttimeout: function(){\t\t\t\n\t\t\talert(\"Error: Server timeout\");\n\t\t\treturn false;\t\t\n\t\t}\n\t}).done(function( content ) {\t\n\t\t//content is encoded as JSON object\n\t\t//alert(content);\n\t\tvar obj = jQuery.parseJSON(content);\n\t\t\n\t\tbuildBuildingDetails(obj);\n\t\t\n\t});\n}", "getBuild(buildId) {\n const build = new build_1.Build(this.client, buildId);\n return build;\n }", "getJobFromId(id) {\n console.log()\n return this.state.jobList.find((elm) => elm._id === id);\n }", "static async getById(id) {\n const res = await db.query(\n `SELECT * \n FROM rooms\n WHERE id = $1`,\n [id]\n );\n const room = res.rows[0];\n if (!room) throw new NotFoundError(`No room with ID: ${id}`);\n return room;\n }", "BedById (root, { id }) {\n return getBedsByQuery( {id: Number(id)} );\n }", "function get_single_cargo(id){\n console.log(\"inside get_single_cargo: \" + id);\n const key = datastore.key([CARGO, parseInt(id,10)]);\n return datastore.get(key).then( result => {\n var cargo = result[0];\n cargo.id = id; //Add id property to ship\n return cargo;\n }).catch( err => {\n console.log(\"ERR\");\n return false;\n });\n}", "Get(id) {\n\t\treturn this.obj.filter(function(o){return o.id == id;})[0];\n\t}", "function findJobById (id) {\r\n return state.jobs.find(job => job.id === id);\r\n}", "function getRoomById(id)\n{\n var i = rooms.findIndex(function(room) {\n return room.id == id\n })\n\n return (i == -1) ? null : rooms[i]\n}", "static findByID(id) {\n return rooms.get(id);\n }", "function getRoomByID(id)\n\t\t {\n\t\t\t\tvar deferred = $q.defer();\n\t\t\t\tvar room = _.findWithProperty( cache, \"id\", id );\n\n\t\t\t\tif ( room ) {\n\t\t\t\t\tdeferred.resolve( ng.copy( room ) );\n\t\t\t\t} else {\n\t\t\t\t\tdeferred.reject();\n\t\t\t\t}\n\t\t\t\treturn( deferred.promise );\n\t\t\t}", "static async get(id) {\n const res = await db.query(`\n SELECT id, title, salary, equity, company_handle\n FROM jobs\n WHERE id = $1\n `, [id]);\n\n const job = res.rows[0];\n if (!job) throw new NotFoundError(`\"No job: ${id}`);\n return job;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Sets the provided column onto the SlickGrid instance.
setColumns() { if (!this.slickGrid) return; this.slickGrid.setColumns(this.columns); this.fireSlimGridEvent("onColumnsSet", { columns: this.columns }); }
[ "set col( value ) {\r\n this._col = value;\r\n }", "setCol(col, val) {\n if(col >= this.values[0].length) {\n throw new Error('Set column index out of bounds.');\n } else {\n for(let i = 0; i < this.values.length; i++) {\n this.values[i][col] = val;\n }\n }\n }", "function setColumn(colNum, value, matrix) {\n for (let y = 0; y < matrix.length; y++) {\n matrix[y][colNum] = value\n }\n }", "addColumn(column) {\n this.items.push(column);\n }", "addColumn(column, type) {\n\t\tthis.fields.push(column);\n\t\tconst sql = `ALTER TABLE ${this.name} ADD COLUMN ${column} ${type}`;\n\t\tthis.con.query(sql, err => {\n\t\t\tif (err) throw err;\n\t\t\tconsole.log(\"Table altered\");\n\t\t});\n\t\treturn this;\n\t}", "setDropConstraintColumn(column){\r\n\t\tthis.resetDropConstraintColumnForm();\r\n\t\tthis.dropConstraintColumnForm['column'] = column;\r\n\t}", "setColumn(colIndex, colData) {\n for (let row = 0; row < this.getSize(); row++) {\n this.data[row][colIndex] = colData.getCellValue(row);\n }\n }", "set selectedColumn(aCol) {\n let tree = document.getElementById(\"unifinder-search-results-tree\");\n let treecols = tree.getElementsByTagName(\"treecol\");\n for (let col of treecols) {\n if (col.getAttribute(\"sortActive\")) {\n col.removeAttribute(\"sortActive\");\n col.removeAttribute(\"sortDirection\");\n }\n if (aCol.getAttribute(\"itemproperty\") == col.getAttribute(\"itemproperty\")) {\n col.setAttribute(\"sortActive\", \"true\");\n col.setAttribute(\"sortDirection\", this.sortDirection);\n }\n }\n this.mSelectedColumn = aCol;\n }", "column(name) {\n this.migrationParams.columnName = name;\n\n // return new command builder for chaining\n let args = this._args();\n return new ColumnCommandBuilder(...args);\n }", "setGridColumnIndex(valueNew){let t=e.ValueConverter.toNumber(valueNew);null===t&&(t=this.getAttributeDefaultValueInternal(\"GridColumnIndex\")),t!==this.__gridColumnIndex&&(this.__gridColumnIndex=t,e.EventProvider.raise(this.__id+\".onPropertyChanged\",{propertyName:\"GridColumnIndex\"}),e.EventProvider.raise(\"System.onControlGridColumnIndexChanged\",this),this.__processGridColumnIndex())}", "setColumn(colIdx) {\n var _a;\n assert(this.isCellNav());\n assert(0 <= colIdx && colIdx < this.columns.length);\n this.activeColIdx = colIdx;\n // Update `wb-active` class for all headers\n if (this.hasHeader()) {\n for (let rowDiv of this.headerElement.children) {\n let i = 0;\n for (let colDiv of rowDiv.children) {\n colDiv.classList.toggle(\"wb-active\", i++ === colIdx);\n }\n }\n }\n (_a = this.activeNode) === null || _a === void 0 ? void 0 : _a.setModified(ChangeType.status);\n // Update `wb-active` class for all cell spans\n for (let rowDiv of this.nodeListElement.children) {\n let i = 0;\n for (let colDiv of rowDiv.children) {\n colDiv.classList.toggle(\"wb-active\", i++ === colIdx);\n }\n }\n // Vertical scroll into view\n // if (this.options.fixedCol) {\n this.scrollToHorz();\n // }\n }", "addColumnDef(columnDef) {\n this._customColumnDefs.add(columnDef);\n }", "setColumnWidth(column, width) {\n this.native.setColumnWidth(column, width);\n }", "addColumn(val) {\n this.props.addColumn(val);\n this.setState({\n newColumn: false\n });\n }", "dsUpdateTableColumn(column, what) {\n switch (what) {\n case \"add\":\n this.gMap.columns.set(column.column_id, column);\n if (this.gMap.tables.has(column.table_id)) {\n this.gMap.tables.get(column.table_id).columns.push(column.column_id);\n }\n break\n case \"update\":\n let myColumn = this.gMap.columns.get(column.column_id);\n myColumn.column_name = column.column_name;\n myColumn.data_type = column.data_type;\n myColumn.data_length = column.data_length;\n myColumn.primary_flag = column.primary_flag;\n myColumn.nullable_flag = column.nullable_flag;\n myColumn.data_default = column.data_default;\n myColumn.split_flag = column.split_flag;\n myColumn.repeat_flag = column.repeat_flag;\n myColumn.column_desc = column.column_desc;\n break\n case \"delete\":\n break\n default:\n break\n }\n }", "setValue(row, column, value) {\n return this._setValue(this.grid, row, column, value);\n }", "setColumnDef(targetCol, settings) {\n\t\tsettings[\"aTargets\"] = targetCol;\n\n\t\tthis.dtColumnDefs.push(settings);\n\t}", "function setCell(row, column, val) {\n $scope.board[row][column].value = val;\n }", "setValue(index, column, value) {\n\n var availableKeys = Object.keys(this.data.intervalls[0]);\n\n if (this.contains(availableKeys,column) == true){\n this.data.intervalls[index][column] = value;\n return this.data.intervalls[index][column];\n }else{\n throw new Error(\"Column name [\"+column+\"] is not available. Available columns are: \" + availableKeys.toString());\n }\n\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
when the component mount get the question by id and if the question is unavaliable go to the 404Page of error
componentDidMount() { const { questions } = this.props; const id = this.props.match.params.question_id; const question = questions[id]; if (!question) { const { history } = this.props; history.push("/404Page"); } }
[ "function PollDetails(props) {\n const {\n match: { params },\n } = props;\n const { question_id } = params;\n const { authedUser, users, questions } = props;\n\n return (\n <div>\n {questions[question_id] ? (\n <div>\n {Object.keys(users[authedUser].answers).includes(question_id) ? (\n <ResultsCard question_id={question_id} />\n ) : (\n <QuestionCard question_id={question_id} />\n )}\n </div>\n ) : (\n <NotFoundPage />\n )}\n </div>\n );\n}", "renderQuestion(){\n if (this.state.questions.length > 0) {\n return this.state.questions[0].question;\n }\n }", "function resolveQuestion(question_id){\n var map = getMap();\n delete map[question_id];\n storeMap(map);\n leftPane.innerHTML = templates.renderQuestions({questions: getQuestions()});\n rightPane.innerHTML = templates.renderQuestionForm(); \n }", "function renderQuestionPage() {\n renderQuestion();\n}", "componentDidMount() {\n let statusCode=0;\n fetch(`http://localhost:5000/api/courses/${this.props.match.params.id}`)\n .then(response => {\n statusCode = response.status;\n return response.json();\n })\n .then(responseData => {\n if(statusCode === 404){\n this.props.history.push('/notfound');\n } else {\n this.setState({ \n course: responseData,\n loading: false \n });\n }\n })\n .catch(error => {\n this.props.history.push('/error');\n console.log('Error fetching and parsing data', error);\n });\n }", "componentDidMount() {\n this.getQuestion();\n }", "componentDidMount() {\n this.getNewQuestion();\n \n }", "function not_found(id) {\n var path = acre.form.build_url(app_routes.app_labels.error + \"/index\", {status:404, not_found:id});\n acre.route(path);\n acre.exit();\n}", "function getQuestionByURL() {\r\n\t\tconst params = new URLSearchParams(window.location.search)\r\n\t\tconst urlquestionid = params.get('question_id');\r\n\r\n\t\tif (urlquestionid != null){\r\n\t\t\tmyquestionid = urlquestionid;\r\n\t\t\tgetQuestionByID(myquestionid).then((question) => {\r\n\t\t\t\tmyquestion = question;\r\n\t\t\t\tif(myquestion.user == currentuser){\r\n\t\t\t\t\t$(document).prop('title', 'Edit Question - ' + question.title);\r\n\t\t\t\t\tshowQuestionInfo();\t\r\n\t\t\t\t}\r\n\t\t\t\telse {\r\n\t\t\t\t\talert('You have no permission to edit this question!');\r\n\t\t\t\t\twindow.location.href = '/answer?question_id=' + myquestionid;\r\n\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t});\r\n\t\t}\r\n\t}", "componentDidMount() {\n this.fetchNewQuestion();\n }", "componentDidMount() {\n this.getNewQuestion();\n }", "componentDidMount() {\n // Get all questions\n this.handleGetQuestionsByTag();\n }", "renderQuestion(question) {\n const { choices, id, text } = question;\n\n return (\n <Question\n key={ shortid.generate() }\n questionId={ id }\n text={ text }\n choices={ choices } />\n );\n }", "componentDidMount() {\n if (LocalStorage.getLocalStorage(Constants.LOCAL_STORAGE_INFO)) {\n let data = LocalStorage.getLocalStorage(Constants.LOCAL_STORAGE_INFO);\n data = JSON.parse(data);\n this.setState({\n loading: data.loading,\n questionIds: data.questionIds,\n questionId: data.questionId,\n data: data.data,\n answer: data.answer,\n questionIndex: data.questionIndex,\n showResponse: data.showResponse,\n isValid: data.isValid,\n }, () => this.getQuestion())\n } else {\n Axios.get(Constants.GETQUESTION_IDS).then(res => {\n this.setState({\n questionIds: res.data.data,\n questionId: res.data.data[0].id,\n questionIndex: 0\n }, () => {\n const updatedQuestionIds = this.state.questionIds.map(id => {\n return {\n ...id,\n //inserting empty object\n answer: {},\n }\n });\n this.setState({\n questionIds: updatedQuestionIds,\n }, () => this.getQuestion())\n })\n }).catch(error => {\n this.setState({\n showModal: Constants.API_NOT_FOUND\n })\n });\n }\n\n }", "function SelectQuestionForm() {\n const [loading, data] = useApi(FamilyFeudApi.getQuestions);\n const [questionIdx, setQuestionIdx] = useState(0);\n const history = useHistory();\n\n const handleChange = evt => {\n setQuestionIdx(evt.target.value);\n };\n\n const handleSubmit = (evt) => {\n evt.preventDefault();\n history.push(`/questions/${data.questions[questionIdx].question_main}`);\n }\n\n return (\n <div className=\"Form-container\">\n {loading ? <LoadingSpinner />:\n <form onSubmit={handleSubmit}>\n <label className=\"choose-label\" htmlFor=\"questions\">Choose a Question: </label>\n <select name=\"questions\" className=\"Question-select\" onChange={handleChange}>\n {data.questions.map((q, idx) => (\n <option key={q.question_main} value={idx}>\n {q.question_main}\n </option>\n ))}\n </select>\n <div>\n <button className=\"choose-button\"><b>Choose Question</b></button>\n </div>\n </form>}\n </div>\n );\n}", "nextPage() {\r\n this.mapSectionStatus();\r\n if (!this.state.allQuestionsCompleted) {\r\n /* reset questions to the top of the page */\r\n this.divRef.current.scrollTo(0, 0);\r\n }\r\n\r\n const numberOfQuestions = this.state.pages[this.state.index].questions\r\n .length;\r\n var controllingQuestionIndex = numberOfQuestions - 1;\r\n var answerIndex = this.findAnswer(\r\n this.state.index,\r\n controllingQuestionIndex\r\n );\r\n\r\n /* validation check for questions */\r\n var passed = true;\r\n\r\n if (\r\n !(\r\n (this.state.SurveyTitle === \"CIDP SOC\" ||\r\n this.state.SurveyTitle === REPEAT_VISIT_SURVEY) &&\r\n this.state.answerIndexes.length !== 0\r\n )\r\n ) {\r\n const currentPage = this.state.pages[this.state.index];\r\n var errors = this.state.errorFields;\r\n var answerIndexes = this.state.answerIndexes;\r\n currentPage.questions.forEach((question, qIndex) => {\r\n const isRequired = question.required;\r\n\r\n var foundObject = answerIndexes.find(answer => {\r\n return answer.qIndex === qIndex && answer.page === this.state.index;\r\n });\r\n\r\n if (!foundObject && question.questionType !== \"Label\") {\r\n var answerObject = {\r\n page: this.state.index,\r\n qIndex: qIndex,\r\n answer: \"\"\r\n };\r\n\r\n answerIndexes.push(answerObject);\r\n }\r\n // we are checking if the foundobject is undefined or foundobect is exist but the answer doesn't\r\n // the foundobject is empty for the first time when we click on the survey and without answers click on Next button\r\n if (\r\n (!foundObject ||\r\n (foundObject &&\r\n (foundObject.answer === \"\" ||\r\n typeof foundObject.answer == \"undefined\"))) &&\r\n this.state.questionsAnswered[qIndex] === false &&\r\n isRequired\r\n ) {\r\n errors[qIndex] = true;\r\n passed = false;\r\n } else {\r\n errors[qIndex] = false;\r\n }\r\n\r\n answerIndexes.sort((a, b) => {\r\n return a.page - b.page || a.qIndex - b.qIndex;\r\n });\r\n\r\n this.setState({ answerIndexes: answerIndexes, errorFields: errors });\r\n });\r\n }\r\n\r\n //updating pending assessments even when we click on next button\r\n updatePendingAssessmentState(\r\n this.props.patient.MRN,\r\n this.state.selectedSurvey,\r\n {\r\n firstName: this.props.patient.FirstName,\r\n lastName: this.props.patient.PatientLastName,\r\n MRN: this.props.patient.MRN,\r\n DOB: moment(new Date(Date.parse(this.props.patient.DOB))).format(\r\n \"MM/DD/YYYY\"\r\n )\r\n }\r\n );\r\n\r\n if (passed) {\r\n var nextPage = getNextPage(\r\n this.state.pages,\r\n this.state.index,\r\n controllingQuestionIndex,\r\n answerIndex\r\n );\r\n\r\n while (nextPage === -1 && controllingQuestionIndex > 0) {\r\n controllingQuestionIndex = controllingQuestionIndex - 1;\r\n answerIndex = this.findAnswer(\r\n this.state.index,\r\n controllingQuestionIndex\r\n );\r\n nextPage = getNextPage(\r\n this.state.pages,\r\n this.state.index,\r\n controllingQuestionIndex,\r\n answerIndex\r\n );\r\n\r\n if (nextPage === -1) {\r\n if (\r\n this.state.pages[this.state.index].questions &&\r\n !this.state.pages[this.state.index].questions.find(\r\n item => item.required\r\n )\r\n ) {\r\n if (this.state.index + 1 < this.state.pages.length) {\r\n nextPage = this.state.index + 1;\r\n }\r\n }\r\n }\r\n }\r\n if (nextPage === -1 && !this.state.allQuestionsCompleted) {\r\n this.setState(\r\n { allQuestionsCompleted: true, progress: \"100\" },\r\n\r\n () => {\r\n this.saveToLocalStorage();\r\n }\r\n );\r\n } else {\r\n /* reset question values back to false */\r\n const questionsToComplete = this.state.pages[nextPage].questions.map(\r\n (question, qIndex) => {\r\n return question.questionType === \"Label\";\r\n }\r\n );\r\n\r\n //getting prevc surveyid,surveyname,surveyindecx for updating survey side bar\r\n this.handleNextandPrevPages(this.state, nextPage);\r\n\r\n const previousPage = {\r\n index: this.state.index,\r\n progress: this.state.progress\r\n };\r\n\r\n const historyStack = this.state.indexProgressStack;\r\n historyStack.push(previousPage);\r\n\r\n this.setState(\r\n {\r\n prevIndex: this.state.index,\r\n index: nextPage,\r\n prevProgress: this.state.progress,\r\n progress: Math.round((nextPage / this.state.pages.length) * 100),\r\n questionsAnswered: questionsToComplete,\r\n indexProgressStack: historyStack\r\n },\r\n () => {\r\n this.saveToLocalStorage();\r\n this.divRef.current.scrollTo(0, 0);\r\n }\r\n );\r\n\r\n /* when decision logic for the page prompts to skip a page,\r\n check whether there were previously stored answers for page\r\n that won't exist;\r\n ex. IG Administration Survey pages 0, 1, 2 where page 0 answer is decision\r\n */\r\n this.removeSkippedAnswersHistory(\r\n this.state.index,\r\n this.state.prevIndex\r\n );\r\n }\r\n }\r\n }", "@wire(getRecord, { recordId: '$questionId', fields: QUESTION_FIELDS })\n questionnaireQuestion(result) {\n if (result.data) {\n // Question record found from the ID\n // populating trackable variables\n this.Questionnaire_Question__c = result.data;\n this.QuestionnaireQuestionId = this.Questionnaire_Question__c.id;\n // Creating Text variable to display the text\n this.QuestionText = this.Questionnaire_Question__c.fields.Name.value;\n\n } else if (!this.questionId) {\n // There is no question ID ==> scenario is not expected\n } else if (result.error) {\n this.error = result.error;\n }\n }", "function questionWrong(qtype, qid){\n socket.emit('questionwrong');\n $.get(\"/wronganswer/\"+qtype+\"/\"+qid);\n}", "function getQuestions(id) {\n axios.get(`${url}/qa/questions?count=100&product_id=${id}`, auth)\n .then((response) => {\n // sort questions by helpfullness\n var sortedQuestions = response.data.results.sort(function (a, b) {\n return b.question_helpfulness - a.question_helpfulness;\n });\n setFullQuestionsList(sortedQuestions);\n setQuestions(sortedQuestions);\n setTemporaryQuestion('');\n })\n .catch((err) => {\n console.log(err);\n })\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[dataapp] may not be found if using bind, inserted makes sure that the root element is available, iOS does not support clicks on body
inserted(el, binding) { const onClick = e => click_outside_directive(e, el, binding); // iOS does not recognize click events on document // or body, this is the entire purpose of the v-app // component and [data-app], stop removing this const app = document.querySelector('[data-app]') || document.body; // This is only for unit tests app.addEventListener('click', onClick, true); el._clickOutside = onClick; }
[ "inserted(el, binding) {\n const onClick = e => directive(e, el, binding); // iOS does not recognize click events on document\n // or body, this is the entire purpose of the v-app\n // component and [data-app], stop removing this\n\n\n const app = document.querySelector('[data-app]') || document.body; // This is only for unit tests\n\n app.addEventListener('click', onClick, true);\n el._clickOutside = onClick;\n }", "attachEvents(app) {}", "bind() {\n this.hook.appendChild(this.docElementNS);\n }", "function _bindDataElements() {\n var aceDataElements = document.querySelectorAll(\n \"[data-acehelp-article]\"\n );\n aceDataElements.forEach(function(elem) {\n elem.onclick = _onDataElementClick;\n });\n }", "_bindClickToDocument(){\n document.addEventListener('click', this._clickOnDoc)\n }", "bind() {\n this.hook.appendChild(this.docElementNS);\n }", "function attachDocumentEvent() {\n $document.on('click', onDocumentClick);\n }", "function attachToDocument( $mdGesture, $$MdGestureHandler ) {\n\n // Polyfill document.contains for IE11.\n // TODO: move to util\n document.contains || (document.contains = function (node) {\n return document.body.contains(node);\n });\n\n if (!isInitialized && $mdGesture.isHijackingClicks ) {\n /*\n * If hijack clicks is true, we preventDefault any click that wasn't\n * sent by ngMaterial. This is because on older Android & iOS, a false, or 'ghost',\n * click event will be sent ~400ms after a touchend event happens.\n * The only way to know if this click is real is to prevent any normal\n * click events, and add a flag to events sent by material so we know not to prevent those.\n * \n * Two exceptions to click events that should be prevented are:\n * - click events sent by the keyboard (eg form submit)\n * - events that originate from an Ionic app\n */\n document.addEventListener('click' , clickHijacker , true);\n document.addEventListener('mouseup' , mouseInputHijacker, true);\n document.addEventListener('mousedown', mouseInputHijacker, true);\n document.addEventListener('focus' , mouseInputHijacker, true);\n\n console.log('clickHijacker');\n\n isInitialized = true;\n }\n\n function mouseInputHijacker(ev) {\n var isKeyClick = !ev.clientX && !ev.clientY;\n if (!isKeyClick && !ev.$material && !ev.isIonicTap\n && !isInputEventFromLabelClick(ev)) {\n ev.preventDefault();\n ev.stopPropagation();\n }\n }\n\n function clickHijacker(ev) {\n var isKeyClick = ev.clientX === 0 && ev.clientY === 0;\n if (!isKeyClick && !ev.$material && !ev.isIonicTap && !ev.jqueryui\n && !isInputEventFromLabelClick(ev)) {\n ev.preventDefault();\n ev.stopPropagation();\n lastLabelClickPos = null;\n } else {\n lastLabelClickPos = null;\n if (ev.target.tagName.toLowerCase() == 'label') {\n lastLabelClickPos = {x: ev.x, y: ev.y};\n }\n }\n }\n\n\n // Listen to all events to cover all platforms.\n var START_EVENTS = 'mousedown touchstart pointerdown';\n var MOVE_EVENTS = 'mousemove touchmove pointermove';\n var END_EVENTS = 'mouseup mouseleave touchend touchcancel pointerup pointercancel';\n\n angular.element(document)\n .on(START_EVENTS, gestureStart)\n .on(MOVE_EVENTS, gestureMove)\n .on(END_EVENTS, gestureEnd)\n // For testing\n .on('$$mdGestureReset', function gestureClearCache () {\n lastPointer = pointer = null;\n });\n\n /*\n * When a DOM event happens, run all registered gesture handlers' lifecycle\n * methods which match the DOM event.\n * Eg when a 'touchstart' event happens, runHandlers('start') will call and\n * run `handler.cancel()` and `handler.start()` on all registered handlers.\n */\n function runHandlers(handlerEvent, event) {\n var handler;\n for (var name in HANDLERS) {\n handler = HANDLERS[name];\n if( handler instanceof $$MdGestureHandler ) {\n\n if (handlerEvent === 'start') {\n // Run cancel to reset any handlers' state\n handler.cancel();\n }\n handler[handlerEvent](event, pointer);\n\n }\n }\n }\n\n /*\n * gestureStart vets if a start event is legitimate (and not part of a 'ghost click' from iOS/Android)\n * If it is legitimate, we initiate the pointer state and mark the current pointer's type\n * For example, for a touchstart event, mark the current pointer as a 'touch' pointer, so mouse events\n * won't effect it.\n */\n function gestureStart(ev) {\n // If we're already touched down, abort\n if (pointer) return;\n\n var now = +Date.now();\n\n // iOS & old android bug: after a touch event, a click event is sent 350 ms later.\n // If <400ms have passed, don't allow an event of a different type than the previous event\n if (lastPointer && !typesMatch(ev, lastPointer) && (now - lastPointer.endTime < 1500)) {\n return;\n }\n\n pointer = makeStartPointer(ev);\n\n runHandlers('start', ev);\n }\n /*\n * If a move event happens of the right type, update the pointer and run all the move handlers.\n * \"of the right type\": if a mousemove happens but our pointer started with a touch event, do nothing.\n */\n function gestureMove(ev) {\n if (!pointer || !typesMatch(ev, pointer)) return;\n\n updatePointerState(ev, pointer);\n runHandlers('move', ev);\n }\n /*\n * If an end event happens of the right type, update the pointer, run endHandlers, and save the pointer as 'lastPointer'\n */\n function gestureEnd(ev) {\n if (!pointer || !typesMatch(ev, pointer)) return;\n\n updatePointerState(ev, pointer);\n pointer.endTime = +Date.now();\n\n runHandlers('end', ev);\n\n lastPointer = pointer;\n pointer = null;\n }\n\n }", "function attachToDocument($mdGesture,$$MdGestureHandler){// Polyfill document.contains for IE11.\n\t// TODO: move to util\n\tdocument.contains||(document.contains=function(node){return document.body.contains(node);});if(!isInitialized&&$mdGesture.isHijackingClicks){/*\n\t * If hijack clicks is true, we preventDefault any click that wasn't\n\t * sent by ngMaterial. This is because on older Android & iOS, a false, or 'ghost',\n\t * click event will be sent ~400ms after a touchend event happens.\n\t * The only way to know if this click is real is to prevent any normal\n\t * click events, and add a flag to events sent by material so we know not to prevent those.\n\t *\n\t * Two exceptions to click events that should be prevented are:\n\t * - click events sent by the keyboard (eg form submit)\n\t * - events that originate from an Ionic app\n\t */document.addEventListener('click',clickHijacker,true);document.addEventListener('mouseup',mouseInputHijacker,true);document.addEventListener('mousedown',mouseInputHijacker,true);document.addEventListener('focus',mouseInputHijacker,true);isInitialized=true;}function mouseInputHijacker(ev){var isKeyClick=!ev.clientX&&!ev.clientY;if(!isKeyClick&&!ev.$material&&!ev.isIonicTap&&!isInputEventFromLabelClick(ev)){ev.preventDefault();ev.stopPropagation();}}function clickHijacker(ev){var isKeyClick=ev.clientX===0&&ev.clientY===0;if(!isKeyClick&&!ev.$material&&!ev.isIonicTap&&!isInputEventFromLabelClick(ev)){ev.preventDefault();ev.stopPropagation();lastLabelClickPos=null;}else{lastLabelClickPos=null;if(ev.target.tagName.toLowerCase()=='label'){lastLabelClickPos={x:ev.x,y:ev.y};}}}// Listen to all events to cover all platforms.\n\tvar START_EVENTS='mousedown touchstart pointerdown';var MOVE_EVENTS='mousemove touchmove pointermove';var END_EVENTS='mouseup mouseleave touchend touchcancel pointerup pointercancel';angular.element(document).on(START_EVENTS,gestureStart).on(MOVE_EVENTS,gestureMove).on(END_EVENTS,gestureEnd)// For testing\n\t.on('$$mdGestureReset',function gestureClearCache(){lastPointer=pointer=null;});/*\n\t * When a DOM event happens, run all registered gesture handlers' lifecycle\n\t * methods which match the DOM event.\n\t * Eg when a 'touchstart' event happens, runHandlers('start') will call and\n\t * run `handler.cancel()` and `handler.start()` on all registered handlers.\n\t */function runHandlers(handlerEvent,event){var handler;for(var name in HANDLERS){handler=HANDLERS[name];if(handler instanceof $$MdGestureHandler){if(handlerEvent==='start'){// Run cancel to reset any handlers' state\n\thandler.cancel();}handler[handlerEvent](event,pointer);}}}/*\n\t * gestureStart vets if a start event is legitimate (and not part of a 'ghost click' from iOS/Android)\n\t * If it is legitimate, we initiate the pointer state and mark the current pointer's type\n\t * For example, for a touchstart event, mark the current pointer as a 'touch' pointer, so mouse events\n\t * won't effect it.\n\t */function gestureStart(ev){// If we're already touched down, abort\n\tif(pointer)return;var now=+Date.now();// iOS & old android bug: after a touch event, a click event is sent 350 ms later.\n\t// If <400ms have passed, don't allow an event of a different type than the previous event\n\tif(lastPointer&&!typesMatch(ev,lastPointer)&&now-lastPointer.endTime<1500){return;}pointer=makeStartPointer(ev);runHandlers('start',ev);}/*\n\t * If a move event happens of the right type, update the pointer and run all the move handlers.\n\t * \"of the right type\": if a mousemove happens but our pointer started with a touch event, do nothing.\n\t */function gestureMove(ev){if(!pointer||!typesMatch(ev,pointer))return;updatePointerState(ev,pointer);runHandlers('move',ev);}/*\n\t * If an end event happens of the right type, update the pointer, run endHandlers, and save the pointer as 'lastPointer'\n\t */function gestureEnd(ev){if(!pointer||!typesMatch(ev,pointer))return;updatePointerState(ev,pointer);pointer.endTime=+Date.now();runHandlers('end',ev);lastPointer=pointer;pointer=null;}}// ********************", "app_select(event) {\n this.app_load(event.name);\n }", "onDOMContentLoaded() {\n FastClick.attach(document.body);\n }", "function attachToDocument($mdGesture,$$MdGestureHandler){// Polyfill document.contains for IE11.\n// TODO: move to util\ndocument.contains||(document.contains=function(node){return document.body.contains(node);});if(!isInitialized&&$mdGesture.isHijackingClicks){/*\n\t * If hijack clicks is true, we preventDefault any click that wasn't\n\t * sent by ngMaterial. This is because on older Android & iOS, a false, or 'ghost',\n\t * click event will be sent ~400ms after a touchend event happens.\n\t * The only way to know if this click is real is to prevent any normal\n\t * click events, and add a flag to events sent by material so we know not to prevent those.\n\t * \n\t * Two exceptions to click events that should be prevented are:\n\t * - click events sent by the keyboard (eg form submit)\n\t * - events that originate from an Ionic app\n\t */document.addEventListener('click',clickHijacker,true);document.addEventListener('mouseup',mouseInputHijacker,true);document.addEventListener('mousedown',mouseInputHijacker,true);document.addEventListener('focus',mouseInputHijacker,true);isInitialized=true;}function mouseInputHijacker(ev){var isKeyClick=!ev.clientX&&!ev.clientY;if(!isKeyClick&&!ev.$material&&!ev.isIonicTap&&!isInputEventFromLabelClick(ev)){ev.preventDefault();ev.stopPropagation();}}function clickHijacker(ev){var isKeyClick=ev.clientX===0&&ev.clientY===0;if(!isKeyClick&&!ev.$material&&!ev.isIonicTap&&!isInputEventFromLabelClick(ev)){ev.preventDefault();ev.stopPropagation();lastLabelClickPos=null;}else{lastLabelClickPos=null;if(ev.target.tagName.toLowerCase()=='label'){lastLabelClickPos={x:ev.x,y:ev.y};}}}// Listen to all events to cover all platforms.\nvar START_EVENTS='mousedown touchstart pointerdown';var MOVE_EVENTS='mousemove touchmove pointermove';var END_EVENTS='mouseup mouseleave touchend touchcancel pointerup pointercancel';angular.element(document).on(START_EVENTS,gestureStart).on(MOVE_EVENTS,gestureMove).on(END_EVENTS,gestureEnd)// For testing\n.on('$$mdGestureReset',function gestureClearCache(){lastPointer=pointer=null;});/*\n\t * When a DOM event happens, run all registered gesture handlers' lifecycle\n\t * methods which match the DOM event.\n\t * Eg when a 'touchstart' event happens, runHandlers('start') will call and\n\t * run `handler.cancel()` and `handler.start()` on all registered handlers.\n\t */function runHandlers(handlerEvent,event){var handler;for(var name in HANDLERS){handler=HANDLERS[name];if(handler instanceof $$MdGestureHandler){if(handlerEvent==='start'){// Run cancel to reset any handlers' state\nhandler.cancel();}handler[handlerEvent](event,pointer);}}}/*\n\t * gestureStart vets if a start event is legitimate (and not part of a 'ghost click' from iOS/Android)\n\t * If it is legitimate, we initiate the pointer state and mark the current pointer's type\n\t * For example, for a touchstart event, mark the current pointer as a 'touch' pointer, so mouse events\n\t * won't effect it.\n\t */function gestureStart(ev){// If we're already touched down, abort\nif(pointer)return;var now=+Date.now();// iOS & old android bug: after a touch event, a click event is sent 350 ms later.\n// If <400ms have passed, don't allow an event of a different type than the previous event\nif(lastPointer&&!typesMatch(ev,lastPointer)&&now-lastPointer.endTime<1500){return;}pointer=makeStartPointer(ev);runHandlers('start',ev);}/*\n\t * If a move event happens of the right type, update the pointer and run all the move handlers.\n\t * \"of the right type\": if a mousemove happens but our pointer started with a touch event, do nothing.\n\t */function gestureMove(ev){if(!pointer||!typesMatch(ev,pointer))return;updatePointerState(ev,pointer);runHandlers('move',ev);}/*\n\t * If an end event happens of the right type, update the pointer, run endHandlers, and save the pointer as 'lastPointer'\n\t */function gestureEnd(ev){if(!pointer||!typesMatch(ev,pointer))return;updatePointerState(ev,pointer);pointer.endTime=+Date.now();runHandlers('end',ev);lastPointer=pointer;pointer=null;}}", "function bind() {\n on($('.sb__close', $smartBanner), 'click', closeBanner);\n on($('.sb__wrap', $smartBanner), 'click', installApp);\n }", "function attachToDocument($mdGesture,$$MdGestureHandler){// Polyfill document.contains for IE11.\n// TODO: move to util\ndocument.contains||(document.contains=function(node){return document.body.contains(node);});if(!isInitialized&&$mdGesture.isHijackingClicks){/*\n * If hijack clicks is true, we preventDefault any click that wasn't\n * sent by ngMaterial. This is because on older Android & iOS, a false, or 'ghost',\n * click event will be sent ~400ms after a touchend event happens.\n * The only way to know if this click is real is to prevent any normal\n * click events, and add a flag to events sent by material so we know not to prevent those.\n *\n * Two exceptions to click events that should be prevented are:\n * - click events sent by the keyboard (eg form submit)\n * - events that originate from an Ionic app\n */document.addEventListener('click',clickHijacker,true);document.addEventListener('mouseup',mouseInputHijacker,true);document.addEventListener('mousedown',mouseInputHijacker,true);document.addEventListener('focus',mouseInputHijacker,true);isInitialized=true;}function mouseInputHijacker(ev){var isKeyClick=!ev.clientX&&!ev.clientY;if(!isKeyClick&&!ev.$material&&!ev.isIonicTap&&!isInputEventFromLabelClick(ev)){ev.preventDefault();ev.stopPropagation();}}function clickHijacker(ev){var isKeyClick=ev.clientX===0&&ev.clientY===0;if(!isKeyClick&&!ev.$material&&!ev.isIonicTap&&!isInputEventFromLabelClick(ev)){ev.preventDefault();ev.stopPropagation();lastLabelClickPos=null;}else{lastLabelClickPos=null;if(ev.target.tagName.toLowerCase()=='label'){lastLabelClickPos={x:ev.x,y:ev.y};}}}// Listen to all events to cover all platforms.\nvar START_EVENTS='mousedown touchstart pointerdown';var MOVE_EVENTS='mousemove touchmove pointermove';var END_EVENTS='mouseup mouseleave touchend touchcancel pointerup pointercancel';angular.element(document).on(START_EVENTS,gestureStart).on(MOVE_EVENTS,gestureMove).on(END_EVENTS,gestureEnd)// For testing\n.on('$$mdGestureReset',function gestureClearCache(){lastPointer=pointer=null;});/*\n * When a DOM event happens, run all registered gesture handlers' lifecycle\n * methods which match the DOM event.\n * Eg when a 'touchstart' event happens, runHandlers('start') will call and\n * run `handler.cancel()` and `handler.start()` on all registered handlers.\n */function runHandlers(handlerEvent,event){var handler;for(var name in HANDLERS){handler=HANDLERS[name];if(handler instanceof $$MdGestureHandler){if(handlerEvent==='start'){// Run cancel to reset any handlers' state\nhandler.cancel();}handler[handlerEvent](event,pointer);}}}/*\n * gestureStart vets if a start event is legitimate (and not part of a 'ghost click' from iOS/Android)\n * If it is legitimate, we initiate the pointer state and mark the current pointer's type\n * For example, for a touchstart event, mark the current pointer as a 'touch' pointer, so mouse events\n * won't effect it.\n */function gestureStart(ev){// If we're already touched down, abort\nif(pointer)return;var now=+Date.now();// iOS & old android bug: after a touch event, a click event is sent 350 ms later.\n// If <400ms have passed, don't allow an event of a different type than the previous event\nif(lastPointer&&!typesMatch(ev,lastPointer)&&now-lastPointer.endTime<1500){return;}pointer=makeStartPointer(ev);runHandlers('start',ev);}/*\n * If a move event happens of the right type, update the pointer and run all the move handlers.\n * \"of the right type\": if a mousemove happens but our pointer started with a touch event, do nothing.\n */function gestureMove(ev){if(!pointer||!typesMatch(ev,pointer))return;updatePointerState(ev,pointer);runHandlers('move',ev);}/*\n * If an end event happens of the right type, update the pointer, run endHandlers, and save the pointer as 'lastPointer'\n */function gestureEnd(ev){if(!pointer||!typesMatch(ev,pointer))return;updatePointerState(ev,pointer);pointer.endTime=+Date.now();runHandlers('end',ev);lastPointer=pointer;pointer=null;}}// ********************", "function attachToDocument( $mdGesture, $$MdGestureHandler ) { // 1562\n // 1563\n // Polyfill document.contains for IE11. // 1564\n // TODO: move to util // 1565\n document.contains || (document.contains = function (node) { // 1566\n return document.body.contains(node); // 1567\n }); // 1568\n // 1569\n if (!isInitialized && $mdGesture.isHijackingClicks ) { // 1570\n /* // 1571\n * If hijack clicks is true, we preventDefault any click that wasn't // 1572\n * sent by ngMaterial. This is because on older Android & iOS, a false, or 'ghost', // 1573\n * click event will be sent ~400ms after a touchend event happens. // 1574\n * The only way to know if this click is real is to prevent any normal // 1575\n * click events, and add a flag to events sent by material so we know not to prevent those. // 1576\n * // 1577\n * Two exceptions to click events that should be prevented are: // 1578\n * - click events sent by the keyboard (eg form submit) // 1579\n * - events that originate from an Ionic app // 1580\n */ // 1581\n document.addEventListener('click', function clickHijacker(ev) { // 1582\n var isKeyClick = ev.clientX === 0 && ev.clientY === 0; // 1583\n if (!isKeyClick && !ev.$material && !ev.isIonicTap) { // 1584\n ev.preventDefault(); // 1585\n ev.stopPropagation(); // 1586\n } // 1587\n }, true); // 1588\n // 1589\n isInitialized = true; // 1590\n } // 1591\n // 1592\n // Listen to all events to cover all platforms. // 1593\n var START_EVENTS = 'mousedown touchstart pointerdown'; // 1594\n var MOVE_EVENTS = 'mousemove touchmove pointermove'; // 1595\n var END_EVENTS = 'mouseup mouseleave touchend touchcancel pointerup pointercancel'; // 1596\n // 1597\n angular.element(document) // 1598\n .on(START_EVENTS, gestureStart) // 1599\n .on(MOVE_EVENTS, gestureMove) // 1600\n .on(END_EVENTS, gestureEnd) // 1601\n // For testing // 1602\n .on('$$mdGestureReset', function gestureClearCache () { // 1603\n lastPointer = pointer = null; // 1604\n }); // 1605\n // 1606\n /* // 1607\n * When a DOM event happens, run all registered gesture handlers' lifecycle // 1608\n * methods which match the DOM event. // 1609\n * Eg when a 'touchstart' event happens, runHandlers('start') will call and // 1610\n * run `handler.cancel()` and `handler.start()` on all registered handlers. // 1611\n */ // 1612\n function runHandlers(handlerEvent, event) { // 1613\n var handler; // 1614\n for (var name in HANDLERS) { // 1615\n handler = HANDLERS[name]; // 1616\n if( handler instanceof $$MdGestureHandler ) { // 1617\n // 1618\n if (handlerEvent === 'start') { // 1619\n // Run cancel to reset any handlers' state // 1620\n handler.cancel(); // 1621\n } // 1622\n handler[handlerEvent](event, pointer); // 1623\n // 1624\n } // 1625\n } // 1626\n } // 1627\n // 1628\n /* // 1629\n * gestureStart vets if a start event is legitimate (and not part of a 'ghost click' from iOS/Android) // 1630\n * If it is legitimate, we initiate the pointer state and mark the current pointer's type // 1631\n * For example, for a touchstart event, mark the current pointer as a 'touch' pointer, so mouse events // 1632\n * won't effect it. // 1633\n */ // 1634\n function gestureStart(ev) { // 1635\n // If we're already touched down, abort // 1636\n if (pointer) return; // 1637\n // 1638\n var now = +Date.now(); // 1639\n // 1640\n // iOS & old android bug: after a touch event, a click event is sent 350 ms later. // 1641\n // If <400ms have passed, don't allow an event of a different type than the previous event // 1642\n if (lastPointer && !typesMatch(ev, lastPointer) && (now - lastPointer.endTime < 1500)) { // 1643\n return; // 1644\n } // 1645\n // 1646\n pointer = makeStartPointer(ev); // 1647\n // 1648\n runHandlers('start', ev); // 1649\n } // 1650\n /* // 1651\n * If a move event happens of the right type, update the pointer and run all the move handlers. // 1652\n * \"of the right type\": if a mousemove happens but our pointer started with a touch event, do nothing. // 1653\n */ // 1654\n function gestureMove(ev) { // 1655\n if (!pointer || !typesMatch(ev, pointer)) return; // 1656\n // 1657\n updatePointerState(ev, pointer); // 1658\n runHandlers('move', ev); // 1659\n } // 1660\n /* // 1661\n * If an end event happens of the right type, update the pointer, run endHandlers, and save the pointer as 'lastPointer'\n */ // 1663\n function gestureEnd(ev) { // 1664\n if (!pointer || !typesMatch(ev, pointer)) return; // 1665\n // 1666\n updatePointerState(ev, pointer); // 1667\n pointer.endTime = +Date.now(); // 1668\n // 1669\n runHandlers('end', ev); // 1670\n // 1671\n lastPointer = pointer; // 1672\n pointer = null; // 1673\n } // 1674\n // 1675\n } // 1676", "attach (data) {\n var handlerID = this.main.dataset.handler\n if (!handlerID) {\n console.error('cannot attach to content with no specified handler')\n return\n }\n this.attachCommon(this.main)\n if (this.loadedPage) this.loadedPage.unload()\n var constructor = constructors[handlerID]\n if (constructor) this.loadedPage = new constructor(this, this.main, data)\n else this.loadedPage = null\n\n // Bind the tooltips.\n this.bindTooltips(this.main)\n }", "appendHTML() {\r\n this.appRoot.innerHTML = this.appHTML;\r\n }", "function insertIntoApp(DOM) {\n\tdocument.querySelector(\".main-content\").innerHTML = DOM;\n}", "bind() {\n this.hook.appendChild(this.docElement);\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Registers an activity event handler for the _tokensresponse_ event, emitted for any incoming `tokens/response` event activity. These are generated as part of the OAuth authentication flow.
onTokenResponseEvent(handler) { return this.on('TokenResponseEvent', handler); }
[ "function subscribeToTokenResponse() {\n if (!subscribedToTokenResponse) {\n RightNow.Event.on('evt_formTokenUpdate', reUp);\n subscribedToTokenResponse = true;\n }\n }", "function onTokenSuccess(response) {\n if (response.data && response.data.token) {\n MM.token = response.data.token;\n if (isAdminToken) {\n // The admin user id is not returned when requesting a new token\n // It can be found in the app object's 'ownerid' field\n MM.get( null,\n function (appResponse) {\n var adminId = appResponse.data.ownerid;\n MM.setActiveUserID(adminId);\n MM.Util.testAndCall(onSuccess, response.data);\n },\n function (error) {\n MM.Util.testAndCall(onError, error);\n }\n );\n }\n else {\n // The user id is returned when requesting a new user token\n if (response.data.user && response.data.user.userid) {\n MM.setActiveUserID(response.data.user.userid);\n MM.Util.testAndCall(onSuccess, response.data);\n }\n }\n }\n else {\n MM.Util.testAndCall(onError, response);\n }\n }", "function handleTokenResponse(res) {\n util.log('++++++++++++++++ OAuth client received token server response.');\n\tutil.log('Begin Step 9 of Figure 1.');\n util.log('Token server status code: ' + res.statusCode);\n res.setEncoding('utf8');\n res.on('data', function(chunk) {\n var tokenResponse = JSON.parse(chunk);\n if (tokenResponse) {\n console.log(util.inspect(tokenResponse));\n if (tokenResponse.access_token) {\n getResource(tokenResponse.access_token);\n }\n } else {\n util.error('Could not parse token server response body: ' + chunk);\n }\n });\n\tutil.log('Step 9 of Figure 1 complete.');\n}", "static processTokenResponse(tokenResponse) {\r\n console.log(\"tokenResponse: \", tokenResponse);\r\n msalCache.access_token = tokenResponse.accessToken;\r\n msalCache.refresh_token = tokenResponse.refreshToken;\r\n msalCache.id_token = tokenResponse.idToken\r\n msalCache.expiresOn = tokenResponse.expiresOn;\r\n\r\n const access_token_parse_anchor = \"<a href='\" + JWT_PARSER_URL + \"?jwt=\" + msalCache.access_token + \"' target='_blank'>parse</a>\";\r\n const id_token_parse_anchor = \"<a href='\" + JWT_PARSER_URL + \"?jwt=\" + msalCache.id_token + \"' target='_blank'>parse</a>\";\r\n\r\n document.getElementById(\"token_display\").innerHTML \r\n = CLOSE\r\n + \"<b>access_token:</b>\" + access_token_parse_anchor\r\n + \"<br/>\" + msalCache.access_token\r\n + \"<br/><br/><b>refresh_token:</b><br/>\" + msalCache.refresh_token\r\n + \"<br/><br/><b>id_token: </b> \" + id_token_parse_anchor\r\n + \"<br/>\" + msalCache.id_token\r\n + \"<br/><br/><b>expiresOn:</b> \" + msalCache.expiresOn\r\n ;\r\n\r\n const token_display = document.getElementById(\"token_display\");\r\n token_display.style.display = \"block\";\r\n\r\n //populate access_token\r\n document.getElementById(\"jwt\").value = msalCache.access_token;\r\n }", "function processLoginClick (response) { \n var uid = response.authResponse.userID;\n var access_token = response.authResponse.accessToken;\n var permissions = response.authResponse.grantedScopes;\n var data = { uid:uid, \n access_token:access_token, \n _token:$('meta[name=\"_token\"]').attr('content'), // this is important for Laravel to receive the data\n permissions:permissions \n }; \n postData(window.location.href, data, \"post\");\n}", "function onAuthResponseChange(response) {\n console.log('onAuthResponseChange', response);\n if (response.status == 'connected') {\n getPermissions();\n }\n}", "handleResponse(response) {\n let reqId = response.request_id;\n if (this.responseListeners.hasOwnProperty(reqId)) { // if there is a registered response listener\n this.responseListeners[reqId](response); // call the function\n delete this.responseListeners[reqId]; // then delete the listener\n };\n }", "function handleAuthResponse(response) {\n // In: HTTP request error or null if okay.\n // In: Request result.\n return function(error, result) { \n if (error !== null) {\n response.send('Error, please try again.')\n } else {\n // Access token can be used to identify the team ID if the scope was set.\n var _ = result.body.access_token;\n response.send('Pengo mvp added.')\n }\n }\n}", "async storeTokensFromRedirect() {\n const {\n tokens\n } = await this.token.parseFromUrl();\n this.tokenManager.setTokens(tokens);\n }", "onLoginEventHandler(baseSite, response) {\r\n if (response) {\r\n this.cdcAuth.loginWithCustomCdcFlow(response.UID, response.UIDSignature, response.signatureTimestamp, response.id_token !== undefined ? response.id_token : '', baseSite);\r\n }\r\n }", "registerResponseDecorator(rd) {\n this.responseDecorators.push(rd)\n }", "applyInterceptorResponse(handler) {\n this.http.interceptors.response.use(handler);\n }", "function onLogin(res) {\n if (res.token) {\n http.setJWT(res.token);\n loggedIn = true;\n showPage('event');\n }\n }", "function onRegResponse(response) {\n respFromAppSDK = response.message;\n // console.log(\"onRegResponse status:\" + response.status + \" response:\" + respFromAppSDK);\n if (response.status == FidoUaf.ResultType.SUCCESS) {\n // console.log(respFromAppSDK);\n //send the authentication response from appSDK to server\n var userName = getInputUserName();\n gFidoUafAjax.finishReg(userName, respFromAppSDK, onFinishReg, onAjaxError);\n\n } else {\n showAlert(strings.process_failed_with_status + \" \" + getResultTypeString(response.status));\n }\n return false;\n}", "function respondOauth2UserTokens (req, res) {\n getOauth2UserTokens(req.user, { userIp: req.clientIp, userAgent: req.userAgent, req: req, res: res})\n .then(function (tokens) {\n res.json(tokens);\n })\n .catch(function () {\n return res.status(404).send('Something went wrong, please try again.');\n });\n}", "handleGoogleResp(response) {\n //this function passes the authentication token to a parent component of LoginPage\n sessionStorage.setItem(\"authToken\", response.authenticationToken);\n }", "function GetAccessTokenFromResponse(response) {\n console.log(\"OAuth2 Response\", response);\n\n $result.html(JSON.stringify(response, null, 4));\n\n return response.access_token;\n }", "function handleAuthResponse(response) {\n console.log('response');\n console.log(response);\n if ((response.status == 200) || (response.status == 201)) {\n sessionStorage.setItem('jwt', response.data.jwt);\n } else {\n throw new Error('An Error occured.');\n };\n\n }", "function formResponseProcessor(formId, request, response) {\n if (formId === 'signupForm') {\n // Take the phone and password, and use it to log the user in\n var newPayload = {\n 'email' : request.email,\n 'password' : request.password\n };\n\n client('POST', 'api/tokens', newPayload, undefined, undefined, function (newStatusCode, newResponsePayload){\n // Display an error on the form if needed\n if (newStatusCode !== 200) {\n return alert(newResponsePayload.message);\n\n } else {\n // If successful, set the token and redirect the user\n setSessionToken(newResponsePayload.data);\n location = '/menu';\n }\n });\n } else if (formId === 'loginForm') {\n setSessionToken(response.data);\n\n location = '/menu';\n } else if (formId === 'payment') {\n alert(response.message);\n\n location = '/';\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Creates colorbar for [minimum, maximum]
function setColorBar(minimum, maximum) { if (colorbar_title) { colorbar_title.attr("class", ""); // Clean old state colorbar.selectAll("rect") .remove(); colorbar.selectAll("text") .remove(); data1 = d3.range(40); rects = colorbar.selectAll("rect") .data(data1); colorScale = d3.scale.linear() .domain([d3.min(data1), d3.max(data1)]) .range(["#0000ff", "#ff0000"]); // Create rectangles rects.enter() .append("rect") .attr({ height: 50, width: 5, x: function(d,i) { return i * 5; }, fill: function(d,i) { return colorScale(d); } }); colorbar .append("text") .attr('x',0) .attr('y',70) .attr('fill', 'black') .text(minimum.toFixed(2)); colorbar .append("text") .attr('x',170) .attr('y',70) .attr('fill', 'black') .text(maximum.toFixed(2)); } }
[ "function drawcolorbar(target)\n{\n var c = grab(target);\n var ctx = c.getContext(\"2d\");\n var width = c.width;\n var height = c.height;\n\n ctx.fillStyle = \"#ffffff\";\n ctx.fillRect(0, 0, width, height);\n\n var grd = ctx.createLinearGradient(0, 0, width, 0);\n grd.addColorStop(0, \"#505050\");\n grd.addColorStop(1, \"#fafafa\");\n\n ctx.fillStyle = grd;\n ctx.fillRect(0, 4, width, height-4);\n\n // draw grids\n if ( age ) {\n var i, x;\n for ( i = 0; i < age.n; i++ ) {\n x = width * i / (age.n - 1.0);\n drawLine(ctx, x, 4, x, height, \"#808080\", 1);\n }\n x = width * iage / (age.n - 1.0);\n drawLine(ctx, x, 0, x, height, \"#000000\", 2);\n }\n}", "function colorRange (options) {\n\n var colorRange = options.colorRange || {},\n dataMin = options.dataMin,\n dataMax = options.dataMax,\n autoOrderLegendIcon = options.sortLegend || false,\n mapByCategory = options.mapByCategory || false,\n defaultColor = options.defaultColor,\n numberFormatter = options.numberFormatter,\n\n color = colorRange.color,\n colorArr = this.colorArr = [],\n range,\n valueRange,\n colorCount,\n i,\n j,\n lastLostColorIndex,\n code,\n colorObj,\n colorObj2,\n maxValue,\n minValue,\n color1,\n color2,\n baseColor,\n lastValue,\n colorLabel,\n extremeColors;\n\n this.mapByCategory = mapByCategory;\n // if map by percent\n if (colorRange.mapbypercent === '1') {\n //set the mapbypercent flag\n this.mapbypercent = true;\n }\n\n // if color range in gradient\n if (colorRange.gradient === '1' && !mapByCategory) {\n\n this.gradient = true;\n code = dehashify(pluck(colorRange.startcolor, colorRange.mincolor,\n colorRange.code));\n\n baseColor = HEXtoRGB(dehashify(pluck(code, defaultColor,\n 'CCCCCC')));\n //get the scale min value\n lastValue = this.scaleMin = pluckNumber(colorRange.startvalue,\n colorRange.minvalue, this.mapbypercent ? 0 : dataMin);\n //add the scale start color\n colorArr.push({\n code: code,\n maxvalue: lastValue,\n label: parseUnsafeString(colorRange.startlabel),\n codeRGB: HEXtoRGB(code)\n })\n\n if (color && (colorCount = color.length)){\n for (i = 0; i < colorCount; i+= 1) {\n colorObj = color[i];\n code = dehashify(pluck(colorObj.color, colorObj.code));\n maxValue = pluckNumber(colorObj.value, colorObj.maxvalue);\n minValue = pluckNumber(colorObj.minvalue);\n //add valid color\n if (maxValue > lastValue) {\n colorArr.push({\n code: code,\n maxvalue: maxValue,\n userminvalue: minValue,\n label: parseUnsafeString(pluck(colorObj.label,\n colorObj.displayvalue)),\n codeRGB: HEXtoRGB(code)\n });\n }\n }\n }\n\n //now sort the valid array\n colorArr.sort(sortFN);\n\n colorCount = colorArr.length;\n for (i = 1; i < colorCount; i+= 1) {\n colorObj = colorArr[i];\n valueRange = colorObj.maxvalue - lastValue;\n if (valueRange > 0) {\n colorObj.minvalue = lastValue;\n colorObj.range = valueRange;\n lastValue = colorObj.maxvalue;\n }\n else {\n colorArr.splice(i, 1);\n i -= 1;\n colorCount -= 1;\n }\n }\n if (colorArr.length >= 2) {\n this.scaleMax = lastValue;\n colorArr[i - 1].label = pluck(colorRange.endlabel,\n colorArr[i - 1].label, colorArr[i - 1].displayvalue);\n }\n\n //derive the last color stop in case no user-defined range is found.\n if (colorArr.length === 1) {\n maxValue = pluckNumber(colorRange.maxvalue,\n this.mapbypercent ? 100 : dataMax);\n colorArr.push({\n minvalue: lastValue,\n maxvalue: maxValue,\n range: maxValue - lastValue,\n label: colorRange.endlabel\n });\n this.scaleMax = maxValue;\n delete colorArr[0].code;\n }\n\n // Set values of start and end color in case they are not\n // defined by user or could not be derived from a default value.\n color1 = colorArr[0]; // start\n color2 = colorArr[colorArr.length - 1]; // end\n if (!color1.code || !color2.code) {\n extremeColors = getExtremeColors(baseColor);\n if (!color1.code) {\n color1.codeRGB = extremeColors.minRGB;\n color1.code = RGBtoHex(extremeColors.minRGB);\n }\n if (!color2.code) {\n color2.codeRGB = extremeColors.maxRGB;\n color2.code = RGBtoHex(extremeColors.maxRGB);\n }\n }\n\n // For color stops that does not have a valid color defined, we\n // would need to insert a placeholder-color at that point.\n colorCount = colorArr.length;\n for (i = 1; i < colorCount; i+= 1) {\n colorObj = colorArr[i];\n\n if (!colorObj.code) {\n lastLostColorIndex = lastLostColorIndex || i;\n }\n else {\n if (lastLostColorIndex) {\n color2 = colorObj;\n minValue = color1.maxvalue;\n range = color2.maxvalue - minValue;\n for (j = lastLostColorIndex; j < i; j += 1) {\n colorObj2 = colorArr[j];\n code = getTransitColor(color1.codeRGB,\n color2.codeRGB, (colorObj2.maxvalue - minValue) / range);\n\n colorObj2.code = code.hex;\n colorObj2.codeRGB = code.rgb;\n }\n }\n lastLostColorIndex = null;\n color1 = colorObj;\n }\n }\n\n if (this.scaleMin === undefined || this.scaleMax === undefined) {\n this.noValidRange = true;\n }\n }\n else { //non gradient color range\n\n if (color && (colorCount = color.length)) {\n for (i = 0; i < colorCount; i += 1) {\n colorObj = color[i];\n code = pluck(colorObj.color, colorObj.code);\n maxValue = pluckNumber(colorObj.maxvalue);\n minValue = pluckNumber(colorObj.minvalue);\n colorLabel = pluck(colorObj.label,\n colorObj.displayvalue,\n mapByCategory ? BLANK : (\n numberFormatter.dataLabels(minValue) + ' - ' +\n numberFormatter.dataLabels(maxValue)));\n //add valid color\n if (code && maxValue > minValue || (mapByCategory && colorLabel)) {\n colorArr.push({\n code: code,\n maxvalue: maxValue,\n minvalue: minValue,\n label: parseUnsafeString(colorLabel),\n labelId: colorLabel.toLowerCase()\n })\n }\n }\n\n\n if (colorArr.length) {\n if (autoOrderLegendIcon) {//arrange the colors\n colorArr.sort(sortFN);\n }\n }\n else {\n this.noValidRange = true;\n }\n }\n }\n\n }", "function drawcolorbar(target)\n{\n var c = grab(target);\n var ctx = c.getContext(\"2d\");\n var width = c.width;\n var height = c.height;\n\n ctx.fillStyle = \"#ffffff\";\n ctx.fillRect(0, 0, width, height);\n\n var grd = ctx.createLinearGradient(0, 0, width, 0);\n grd.addColorStop(0, \"#0000cc\");\n grd.addColorStop(1, \"#cc0000\");\n\n ctx.fillStyle = grd;\n ctx.fillRect(0, 4, width, height-4);\n\n // draw grids\n if ( simtemp ) {\n var i, x;\n for ( i = 0; i < simtemp.n; i++ ) {\n x = width * i / (simtemp.n - 1.0);\n drawLine(ctx, x, 4, x, height, \"#808080\", 1);\n }\n x = width * ibeta / (simtemp.n - 1.0);\n drawLine(ctx, x, 0, x, height, \"#000000\", 3);\n }\n}", "function colorbar(loc, w, h, clr, clrAvg){\n // Instance Variables\n this.loc = loc;\n this.w = w;\n this.h = h;\n this.clr = clr;\n this.clrAvg = clrAvg;\n\nthis.run = function(){\n this.render();\n}\n\nthis.render = function(){\n fill(this.clr);\n rect(this.loc.x, this. loc.y, this.w, this.h);\n}\n\n}", "function greyscaleColormap(fVal, fMin, fMax) {\n var c = 255 * ((fVal - fMin) / (fMax - fMin));\n var color = [Math.round(c), Math.round(c), Math.round(c)];\n return color;\n}", "function colorArea(){\n var new_pos = (max_pos - min_pos)-10;\n rect2.attr('x', min_pos)\n .attr(\"height\", 10)\n .attr(\"width\", new_pos)\n .attr('fill', \"#2394F3\")\n .style('opacity', 0.5)\n }", "function createColorScale(upper_bounds, colors) {\n return function(value) {\n for (var i = 0; i < upper_bounds.length; i++) {\n if (value <= upper_bounds[i]) return colors[i];\n }\n return '#ececec';\n }\n}", "function heat_colour ([min, max]) {\n return d3.scaleSequential([min, max], d3.interpolateReds)\n}", "function ColorBar(palette) {\n return ui.Thumbnail({\n image: ee.Image.pixelLonLat().select(0),\n params: {\n bbox: [0, 0, 1, 0.1],\n dimensions: '100x2',\n format: 'png',\n min: 0,\n max: 1,\n palette: palette,\n },\n style: {stretch: 'horizontal', margin: '0px 8px'},\n });\n}", "set maxColorComponent(value) {}", "function heat_colour([min,max]){\n return d3.scaleSequential([min,max],d3.interpolateReds);\n}", "validateColorRange(value) {\n const that = this.context;\n\n return Math.min(Math.max(value, that.min), that.max);\n }", "function ColorBar(palette) {\n return ui.Thumbnail({\n image: ee.Image.pixelLonLat().select(0),\n params: {\n bbox: [0, 0, 1, 0.1],\n dimensions: '100x10',\n format: 'png',\n min: 0,\n max: 1,\n palette: palette,\n },\n style: {stretch: 'horizontal', margin: '0px 8px'},\n });\n}", "function get_color_scale_range(minyear, maxyear) {\n var diff = +maxyear - +minyear;\n return viz_config.color_domain[diff];\n }", "function drawEdgeColourBar() {\n\n edgeColourBar.innerHTML = \"\";\n\n var d3ecb = d3.select(edgeColourBar);\n var min = -network.matrixAbsMaxs[network.scaleInfo.edgeColourIdx];\n var max = network.matrixAbsMaxs[network.scaleInfo.edgeColourIdx];\n var step = (max - min) / 20.0;\n var points = d3.range(min, max + 1, step);\n var fmt = d3.format(\"5.2f\");\n\n //svg canvas for colour bar (drawn below)\n var svg = d3ecb.append(\"svg\")\n .attr(\"width\", 150)\n .attr(\"height\", 15);\n\n var minLabel = svg.append(\"text\")\n .attr(\"x\", 0)\n .attr(\"y\", 15)\n .attr(\"font-size\", 10)\n .attr(\"text-anchor\", \"left\")\n .text(fmt(min));\n\n var minLabelLen = minLabel.node().getComputedTextLength();\n\n // the colour bar itself\n svg\n .selectAll(\"rect\")\n .data(points)\n .enter()\n .append(\"rect\")\n .attr(\"width\", 4)\n .attr(\"height\", 15)\n .attr(\"x\", function(val,i) {return minLabelLen + 1 + i*4;})\n .attr(\"y\", 0)\n .attr(\"fill\", function(val) {\n return network.scaleInfo.hltEdgeColourScale(val);});\n\n // max value label\n svg.append(\"text\")\n .attr(\"x\", minLabelLen + 4*21 + 1)\n .attr(\"y\", 15)\n .attr(\"font-size\", 10)\n .attr(\"text-anchor\", \"right\")\n .text(fmt(max));\n }", "function getNewColorValue(maxC, minC, scorePer){\n \n var cRange = maxC - minC;\n var newC = 0;\n //for negative difference\n if (cRange < 0){\n cRange = cRange * -1;\n scorePer = 100 - scorePer;\n newC = (scorePer * cRange) / 100;\n newC = maxC + newC;\n \n }else{ //for positive differences\n newC = (scorePer * cRange) / 100;\n newC = minC + newC;\n\n }\n \n return newC;\n}", "function create_color_scale(){\n color_scale\n .domain([gradient_min,gradient_max])\n .range([\"steelblue\", \"orange\"])\n .interpolate(d3.interpolateLab);\n}", "function load_color_bar(){\n let VMIN = -0.5 , VMAX = 0.5;\n if(!document.querySelector('a-entity#colorbar').hasChildNodes()){\n create_color_bar(VMIN,VMAX);\n }\n}", "static getColor(arr, x) {\n let minMax = arr.minMax();\n\n let mn = minMax.mn;\n let mx = minMax.mx;\n \n let range = mx - mn;\n\n return (x - mn) / range * 150 + 70;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
given a folder id, go to that folder. provide title for toast functions. if modifyToast is provided, modify toast instead of adding
navigateFolder(folderId,folderName="",modifyToast=-1) { chrome.bookmarks.getChildren(folderId,(data)=>{ if (modifyToast<0) { this.props.controlHandler.current.addToast(folderId,folderName); } else { this.props.controlHandler.current.modifyToast(modifyToast); } this.controlMarks.current.setDisabled(); this.setState({data}); }); }
[ "function gotoFolder(id) {\n __webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__Controller_js__[\"c\" /* setPath */])(id.split('_')[0]);\n reloadData(__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__Controller_js__[\"a\" /* getPath */])());\n}", "function goToFolder(folderid) {\n\t// Load folder on the right side\n\t$('#rightside').load('index.cfm?fa=c.folder&col=F&folder_id=' + folderid);\n\t// Refresh folder tree (as we could be in labels, etc.)\n\tswitchmainselection('folders','Folders');\n}", "function moveToClick(folderInject) {\n withContext(folderInject, function(context) {\n createMoveFilter(context.from, context.from, context.folder, function(data) {\n toast(data.msg == \"Der Filter wurde gespeichert.\" ? \"E-Mails von <strong>\" + context.from +\n \"</strong> werden ab sofort in <strong>\" + context.folderName + \"</strong> verschoben.\" : data.msg, \"success\");\n });\n });\n}", "function tmbfolder_click(topic_id) {\n if (toggle_div('tmbfolderc')) {\n $('#tmbfolderc').fadeIn('fast');\n open_menus.push('tmbfolderc');\n just_opened_a_menu = true;\n if (tmbfolder_opened_once == false) {\n //Get User Info via AJAX\n if ($('#files_context_menu'))\n $.post('/ajax/files.ajax.php/' + topic_id + '?instance=99&embed=1',\n {\n key:'c44dbb976265f6d75756475bb7cbdee5'\n }\n , function (data, status) {\n $('#tmbfolderb').html(data);\n });\n tmbfolder_opened_once = true; //flag to not load via ajax again\n }\n } \n}", "function moveToNewFolderClick() {\n var folderName = prompt(\"Gib den Namen des neuen Ordners ein. Unterordner mit / trennen:\");\n if (!folderName) {\n toast(\"Du hast keinen Ordner eingegeben.\", \"error\");\n return;\n }\n createMailFolder(folderName, function() {\n getFolders(function(folders) {\n $(\"select#filters-folders\").html(selectOptions(folders));\n $(\"select#filters-folders\").val(folderName);\n });\n moveToClick(folderName);\n });\n}", "function updateFolder(id, name, new_name) {\n\n if(!queryResource(2, 1, name, new_name, '')) return false;\n\n jQuery('#folder_title_'+id).text(new_name);\n\n return true;\n}", "function onclickFolderSelected(elem, event){\n\t//back navigation\n\tactivateButton(\"icon_back\"); \n\t\n\t//if other folder than root folder is selected, it can be deleted\n\tif(elem.children[0].id===\"homeTitle\"){\n\t\tdeactivateButton(\"icon_delete_folder\");\n\t} else {\n\t\tactivateButton(\"icon_delete_folder\");\n\t}\n\t\n\t//save the rootFolder as first element in Backlog\n\tif(folderBacklog.length === 0){\n\t\tfolderBacklog.push(document.getElementsByClassName(\"folderRoot\")[0]);\n\t} else {\n\t\tfolderBacklog.push(currentFolder);\n\t}\n\t\n\t//save current folder as variable\n\tcurrentFolder = elem;\n\t\n\t//handle forward log\n\tdeactivateButton(\"icon_forward\");\n\tfolderForwlog = [];\n\t\n\tfolderSelected(currentFolder,event);\n}", "function folder (args, mus, done) {\n var folder = mus.search.getFolderByNum(args[0])\n var fullPath = escapeFile(path.join(mus.config.root, folder.path))\n console.log('FOLDER', fullPath)\n\n exec('open ' + fullPath, function () {\n console.log('FOLDER', folder.title)\n done('exit')\n })\n}", "sendToFolder(folder_id, taskId) {\n TaskService.sendToFolder({\n id: taskId,\n folder_id\n }).then(res => window.location.reload())\n }", "function openFolder()\n{\n var folderPath = $(this).closest('tr').attr('path');\n getMetadata(folderPath,createFolderViews)\n}", "function editFolder(currentNode){\n\tdocument.location.href = \"#bpm/dms/showFolderPage\";\n\t_execute('user-grid','id='+currentNode);\n}", "function insertProjFolder(id, project_file, snippet, midi_files, sample_files){ }", "function upOneFolder(id){\r\n\tif(id==1) return; //return if already at Bookmarks Bar folder\r\n\tchrome.bookmarks.get(id, function(bookmark){\r\n\t\tprintBookmarksById(bookmark[0].parentId, null);\r\n\t});\r\n}", "BrowseForFolder(int, string, int, Variant) {\n\n }", "function userFolderClick(name)\n{\n\tdebugText+=\"folder click mit name = \"+name+\"\\n\";\n\tclickedNode = document.getElementById(name);\t\n\tclickedNode.onclick = null;\n\tvar id = clickedNode.getAttribute(\"id\");\n\tclickedNode.onclick = function() { userSwitchClick(id);};\n\tchangeActualNode(clickedNode);\n\tshowInRightFrameData(name);\n\tajaxRequestTreeData(name,\"\");\t\n}", "function showFolderPath(folderName2, folderType2) {\n\t\n\tif (folderName2) {\n\t\tif (folderType=='content') {\n\t\t\tvar port = project['nginxPort'];\n\t\t\tport = port? (port=='80'? '': ':' + port): '';\n\t\t\ttitleFolder.innerHTML = 'http://&ltdomain or ip&gt' + port + '/web/' + folderName2;\n\t\t}\n\t\telse\n\t\t\ttitleFolder.innerHTML = '/' + folderName2;\n\t\ttitleFolderPath.style.visibility = 'visible';\n\t}\n\telse\n\t\ttitleFolderPath.style.visibility = 'hidden';\n\n}", "function renameFolder(\n event1,\n organizeCurrentLocation,\n itemElement,\n inputGlobal,\n uiItem,\n singleUIItem\n) {\n var promptVar;\n var type; // renaming files or folders\n var newName;\n var currentName = event1.parentElement.innerText;\n var nameWithoutExtension;\n var highLevelFolderBool;\n\n double_extensions = [\n \".ome.tiff\",\n \".ome.tif\",\n \".ome.tf2,\",\n \".ome.tf8\",\n \".ome.btf\",\n \".ome.xml\",\n \".brukertiff.gz\",\n \".mefd.gz\",\n \".moberg.gz\",\n \".nii.gz\",\n \".mgh.gz\",\n \".tar.gz\",\n \".bcl.gz\",\n ];\n\n if (highLevelFolders.includes(currentName)) {\n highLevelFolderBool = true;\n } else {\n highLevelFolderBool = false;\n }\n\n if (event1.classList[0] === \"myFile\") {\n promptVar = \"file\";\n type = \"files\";\n } else if (event1.classList[0] === \"myFol\") {\n promptVar = \"folder\";\n type = \"folders\";\n }\n if (type === \"files\") {\n let double_ext_present = false;\n for (let index in double_extensions) {\n if (currentName.search(double_extensions[index]) != -1) {\n nameWithoutExtension = path.parse(path.parse(currentName).name).name;\n double_ext_present = true;\n break;\n }\n }\n if (double_ext_present == false) {\n nameWithoutExtension = path.parse(currentName).name;\n }\n } else {\n nameWithoutExtension = currentName;\n }\n\n if (highLevelFolderBool) {\n Swal.fire({\n icon: \"warning\",\n text: \"High-level SPARC folders cannot be renamed!\",\n heightAuto: false,\n backdrop: \"rgba(0,0,0, 0.4)\",\n showClass: {\n popup: \"animate__animated animate__zoomIn animate__faster\",\n },\n hideClass: {\n popup: \"animate__animated animate__zoomOut animate__faster\",\n },\n });\n } else {\n Swal.fire({\n title: `Rename ${promptVar}`,\n text: \"Please enter a new name:\",\n input: \"text\",\n inputValue: nameWithoutExtension,\n heightAuto: false,\n backdrop: \"rgba(0,0,0, 0.4)\",\n showCancelButton: true,\n focusCancel: true,\n confirmButtonText: \"Save\",\n cancelButtonText: \"Cancel\",\n reverseButtons: reverseSwalButtons,\n showClass: {\n popup: \"animate__animated animate__fadeInDown animate__faster\",\n },\n hideClass: {\n popup: \"animate__animated animate__fadeOutUp animate__faster\",\n },\n didOpen: () => {\n $(\".swal2-input\").attr(\"id\", \"rename-folder-input\");\n $(\".swal2-confirm\").attr(\"id\", \"rename-folder-button\");\n $(\"#rename-folder-input\").keyup(function () {\n var val = $(\"#rename-folder-input\").val();\n for (var char of nonAllowedCharacters) {\n if (val.includes(char)) {\n Swal.showValidationMessage(\n `The folder name cannot contains the following characters ${nonAllowedCharacters}, please rename to a different name!`\n );\n $(\"#rename-folder-button\").attr(\"disabled\", true);\n return;\n }\n $(\"#rename-folder-button\").attr(\"disabled\", false);\n }\n });\n },\n didDestroy: () => {\n $(\".swal2-confirm\").attr(\"id\", \"\");\n $(\".swal2-input\").attr(\"id\", \"\");\n },\n }).then((result) => {\n if (result.isConfirmed) {\n var returnedName = checkValidRenameInput(\n event1,\n result.value.trim(),\n type,\n currentName,\n newName,\n itemElement\n // myBootboxDialog\n );\n if (returnedName !== \"\") {\n Swal.fire({\n icon: \"success\",\n text: \"Successfully renamed!.\",\n heightAuto: false,\n backdrop: \"rgba(0,0,0, 0.4)\",\n showClass: {\n popup: \"animate__animated animate__fadeInDown animate__faster\",\n },\n hideClass: {\n popup: \"animate__animated animate__fadeOutUp animate__faster\",\n },\n });\n\n /// assign new name to folder or file in the UI\n event1.parentElement.parentElement.innerText = returnedName;\n /// get location of current file or folder in JSON obj\n var filtered = getGlobalPath(organizeCurrentLocation);\n var myPath = getRecursivePath(filtered.slice(1), inputGlobal);\n /// update jsonObjGlobal with the new name\n storedValue = myPath[type][currentName];\n delete myPath[type][currentName];\n myPath[type][returnedName] = storedValue;\n if (\"action\" in myPath[type][returnedName]) {\n if (!myPath[type][returnedName][\"action\"].includes(\"renamed\")) {\n myPath[type][returnedName][\"action\"].push(\"renamed\");\n }\n } else {\n myPath[type][returnedName][\"action\"] = [];\n myPath[type][returnedName][\"action\"].push(\"renamed\");\n }\n /// list items again with updated JSON obj\n listItems(myPath, uiItem);\n getInFolder(\n singleUIItem,\n uiItem,\n organizeCurrentLocation,\n inputGlobal\n );\n }\n }\n });\n }\n}", "function showFolderDropDown(id){\n\t//alert(\"in showFolderDropDown 0001\")\n \tvar url=\"ajaxShowFolderDropDown.pl?id=\" + id;\n\tpushAnswerInId('folderDropDwon', 'loading...');\n\tshowDiv('folderDropDwon');\n\tpositionContainerAbsolut(\"folderDropDwon\",\"CENTER\",\"CENTER\",1,1,1,1);\n\tsetDivToMouse(\"folderDropDwon\");\n \tgetMethodAnswerInId(url ,pushAnswerInId,\"folderDropDwon\");\n}", "function navigateToAndDisplayExistingReport(folderId, reportId, reportType){\r\n\t\t// lets put the focus on the folder on the right.\r\n\t\tif (tree != null){\r\n\t\t\ttree.expandAll();\r\n\t\t}\r\n\t\tdisplayFolderInExplorer(folderId) ;\r\n\t\t\r\n\t\t// display the folder contents in ContentRight\r\n\t\t//displayFolderContentRight(folderId);\r\n\t\t\r\n\t\t// lets display the folder menu in contentCenterA.\r\n\t\tvar url=\"/GloreeJava2/jsp/Folder/displayRealFolder.jsp?folderId=\"+ folderId;\r\n\t\turl += \"&bustcache=\" + new Date().getTime() ;\r\n\t\t\r\n\t\txmlHttpOPCenterB =GetXmlHttpObject();\r\n\t\txmlHttpOPCenterB.onreadystatechange=function() {\r\n\t\t\tif(xmlHttpOPCenterB.readyState==4){\r\n\t\t\t\tdocument.getElementById(\"contentCenterA\").style.display = \"block\";\r\n\t\t\t\tdocument.getElementById(\"contentCenterA\").innerHTML=xmlHttpOPCenterB.responseText;\r\n\t\t\t\t// now , lets call the displayExistingReport function.\r\n\t\t\t\tdisplayExistingReport(folderId, reportId, reportType);\r\n\t\t\t}\r\n\t\t}\r\n\t\txmlHttpOPCenterB.open(\"GET\",url,true);\r\n\t\txmlHttpOPCenterB.send(null);\t\t\r\n\t}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Vacia los campos de entrada de LINEAS
function VaciaCamposLineas(){ $('#inputidAfectado').prop("SelectedIndex",0); $('#selectEsencial').prop("SelectedIndex",0); $('#selectUds').prop("SelectedIndex",0); $('#inputCantidad').val(""); $('#inputCosteUd').val(""); $('#inputCosteTotal').val(""); $('#inputCosteRacion').val(""); $('#inputMerma').val(""); }
[ "function setDatos() {\n vm.movimiento = {};\n vm.movimiento.total_costo = 0;\n vm.movimiento.total = 0;\n vm.movimiento.detalle = [];\n vm.detalle = {};\n vm.detalle.cantidad = 0;\n vm.detalle.precio_costo = 0;\n // vm.detalle.precio_venta = 0;\n }", "function resetarVariaveis() {\r\n tabuleiro = ['', '', '', '', '', '', '', '', ''];\r\n jogadorAtual = 0;\r\n jogadorAnterior;\r\n estadosJogo.empate = false;\r\n estadosJogo.vitoria = false;\r\n}", "function act_campos(){\n let campos = document.querySelectorAll('#horas, #detalle');\n campos[0].value = \"\";\n campos[1].value = \"\";\n document.getElementById('actual').innerHTML = 0;\n campos[0].disabled = false;\n campos[1].disabled = false;\n}", "static clearLines(){\n lines = [];\n edges = [];\n }", "function pintaGraficaLineal() {\r\n\r\n dibujaEjes();\r\n\r\n // Ponemos las marcas de los ejes\r\n // Eje de ordenadas\r\n contexto.beginPath();\r\n for (i = 170; i <= 960; i += 83) {\r\n contexto.moveTo(i, 490);\r\n contexto.lineTo(i, 510);\r\n contexto.stroke();\r\n }\r\n contexto.closePath();\r\n\r\n // Eje de abcisas\r\n contexto.beginPath();\r\n\r\n for (i = 456; i >= 60; i -= 44) {\r\n\r\n contexto.moveTo(120, i);\r\n contexto.lineTo(140, i);\r\n contexto.stroke();\r\n }\r\n contexto.closePath();\r\n\r\n contexto.beginPath();\r\n\r\n\r\n\r\n //Calculamos el alto inicial donde colocaremos la pluma\r\n altoInicial = 500 - (pixelFallecido * resultado.DATOS[0].FALLECIDOS);\r\n\r\n // Movemos la pluma al punto de inicio de la grafica\r\n distanciaX = 170;\r\n contexto.moveTo(distanciaX, altoInicial);\r\n\r\n\r\n\r\n movimiento = 1;\r\n resultado.DATOS.forEach(anio => {\r\n contexto.strokeStyle = \"#40FF71\";\r\n contexto.lineWidth = 3;\r\n\r\n distanciaY = 500 - (pixelFallecido * anio.FALLECIDOS);\r\n distanciaX += 83;\r\n\r\n if (anio.AÑO != 2019) {\r\n contexto.lineTo(distanciaX, distanciaY);\r\n contexto.stroke();\r\n }\r\n\r\n })\r\n contexto.strokeStyle = \"black\";\r\n contexto.lineWidth = 3;\r\n contexto.closePath();\r\n }", "function limpaArrayArquivosTimeLine() {\n if (objetoArquivos !== undefined && objetoArquivos != null && objetoArquivos.arquivos.length > 0) {\n objetoArquivos.arquivos.splice(0, objetoArquivos.arquivos.length);\n }\n }", "removeAllLines() {\n this._linesData = [];\n this._linesAux = [];\n }", "function oLineas_ESt(noObjetoLinea_ESt)\n\t\t{\n\t\t\t//\tNumero del objeto\n\t\t\tthis.noObjetoLinea=noObjetoLinea_ESt;\n\t\t\t//\tAncho de la linea\n\t\t\tthis.myAncho=5;\n\t\t\t//\tArreglo con las posicuiones\n\t\t\tthis.myArPosicionesEnX=new Array();\n\t\t\tthis.myArPosicionesEnY=new Array();\n\t\t\t//\tNumero de posiciones creadas\n\t\t\tthis.myNoPosicionesCreadas=0;\n\t\t\t//\tColor del objeto\n\t\t\tthis.myColorObjeto='#000';\n\t\t\t//\tObtener y cambiar el ancho\n\t\t\tthis.setAncho= function(ancho) { this.myAncho=ancho; };\n\t\t\tthis.getAncho= function() { return this.myAncho; };\n\t\t\t//\tObtener y cambiar la posicion\n\t\t\tthis.setPosicion=\n\t\t\t\tfunction(posicionEnX,posicionEnY)\n\t\t\t\t{\n\t\t\t\t\t//\ttrue, si esta repitiendo la misma posicion que la vez anterior\n\t\t\t\t\tvar bnMismaPosicionQueLaAnterior_=false;\n\t\t\t\t\t//\tAverigua si esta es la misma posicion anterior para no guardarla\n\t\t\t\t\tif(0<this.myNoPosicionesCreadas)\n\t\t\t\t\t{\n\t\t\t\t\t\tif(this.myArPosicionesEnX[this.myNoPosicionesCreadas-1]==posicionEnX && this.myArPosicionesEnY[this.myNoPosicionesCreadas-1]==posicionEnY)\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\tbnMismaPosicionQueLaAnterior_=true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t//\tSi no repite dos veces la posicion anterior la guarda\n\t\t\t\t\tif(!bnMismaPosicionQueLaAnterior_)\n\t\t\t\t\t{\n\t\t\t\t\t\t//\tColoca las posiciones nuevas\n\t\t\t\t\t\tthis.myArPosicionesEnX[this.myNoPosicionesCreadas]=posicionEnX;\n\t\t\t\t\t\tthis.myArPosicionesEnY[this.myNoPosicionesCreadas]=posicionEnY;\n\t\t\t\t\t\t//\tGuarda que ahora hay una posicion mas\n\t\t\t\t\t\tthis.myNoPosicionesCreadas++;\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\tthis.getPosicionEnX=function(noDeLaPosicion) { return this.myArPosicionesEnX[noDeLaPosicion]; };\n\t\t\tthis.getPosicionEnY=function(noDeLaPosicion) { return this.myArPosicionesEnY[noDeLaPosicion]; };\n\t\t\t//\tColoca el numero de posiciones que hay\n\t\t\tthis.getNoPosicionesCreadas=function() { return this.myNoPosicionesCreadas; };\n\t\t\t//\tObtener y cambiar el color del objeto\n\t\t\tthis.setColorObjeto=function(colorObjeto) { this.myColorObjeto=colorObjeto; };\n\t\t\tthis.getColorObjeto=function() { return this.myColorObjeto; };\n\t\t}", "function validarCamposVaciosAntes(obj) {\n\n if (obj.cliente == \"\" || obj.embarcacion == \"\" || obj.estado == \"\" || obj.fecha_emision == \"\" ||\n obj.puerto_embarque == \"\" || obj.puerto_desembarque == \"\" || obj.orometro_inicial_m1 == \"\" || obj.orometro_inicial_m2 == \"\" ||\n obj.horaSal == \"\" || obj.minSal == \"\" || obj.horaArrib == \"\" || //obj.orometro_final_m1 == \"\" || obj.orometro_final_m2 == \"\" || \n obj.minArrib == \"\" || obj.contrato_recepcion == \"\" || obj.capitan_embarcacion == \"\" ||\n obj.cliente == null || obj.embarcacion == null || obj.estado == null || obj.fecha_emision == null ||\n obj.puerto_embarque == null || obj.puerto_desembarque == null || obj.orometro_inicial_m1 == null || obj.orometro_inicial_m2 == null ||\n obj.horaSal == null || obj.minSal == null || obj.horaArrib == null || //obj.orometro_final_m1 == null || obj.orometro_final_m2 == null ||\n obj.minArrib == null || obj.contrato_recepcion == null || obj.capitan_embarcacion == null) {\n\n if (obj.cliente == \"\" || obj.cliente == undefined || obj.cliente == null) {\n $(document.getElementById(\"cliente\")).notify(\"Seleccione Cliente\", { position: \"right\" });\n }\n if (obj.fecha_emision == \"\" || obj.fecha_emision == null) {\n $(document.getElementById(\"fecha\")).notify(\"Campo Vac\\u00EDo\", { position: \"right\" });\n }\n if (obj.orometro_inicial_m1 == \"\" || obj.orometro_inicial_m1 == null) {\n $(document.getElementById(\"oromIni1\")).notify(\"Campo Vac\\u00EDo\", { position: \"right\" });\n }\n if (obj.orometro_inicial_m2 == \"\" || obj.orometro_inicial_m2 == null) {\n $(document.getElementById(\"oromIni2\")).notify(\"Campo Vac\\u00EDo\", { position: \"right\" });\n }\n if (obj.orometro_final_m1 == \"\" || obj.orometro_final_m1 == null) {\n $(document.getElementById(\"oromFin1\")).notify(\"Campo Vac\\u00EDo\", { position: \"right\" });\n }\n if (obj.orometro_final_m2 == \"\" || obj.orometro_final_m2 == null) {\n $(document.getElementById(\"oromFin2\")).notify(\"Campo Vac\\u00EDo\", { position: \"right\" });\n }\n if (obj.horaSal == \"\" || obj.horaSal == null) {\n $(document.getElementById(\"horaSal\")).notify(\"Campo Vac\\u00EDo\", { position: \"right\" });\n }\n if (obj.minSal == \"\" || obj.minSal == null) {\n $(document.getElementById(\"minSal\")).notify(\"Campo Vac\\u00EDo\", { position: \"right\" });\n }\n if (obj.horaArrib == \"\" || obj.horaArrib == null) {\n $(document.getElementById(\"horaLleg\")).notify(\"Campo Vac\\u00EDo\", { position: \"right\" });\n }\n if (obj.minArrib == \"\" || obj.minArrib == null) {\n $(document.getElementById(\"minLleg\")).notify(\"Campo Vac\\u00EDo\", { position: \"right\" });\n }\n //if (obj.orometro_inicial_m1 >= obj.orometro_final_m1) {\n // $(document.getElementById(\"oromFin1\")).notify(\"Debe ser mayor al Inicial\", { position: \"right\" });\n //}\n //if (obj.orometro_inicial_m2 >= obj.orometro_final_m2) {\n // $(document.getElementById(\"oromFin2\")).notify(\"Debe ser mayor al Inicial\", { position: \"right\" });\n //}\n //if (obj.orometro_inicial_m1 >= obj.orometro_final_m1) {\n // $(document.getElementById(\"oromFin1\")).notify(\"Debe ser mayor al Inicial\", { position: \"right\" });\n //}\n //if (obj.orometro_inicial_m2 >= obj.orometro_final_m2) {\n // $(document.getElementById(\"oromFin2\")).notify(\"Debe ser mayor al Inicial\", { position: \"right\" });\n //}\n\n return false;\n } else {\n if (obj.orometro_final_m1 != \"\" || obj.orometro_final_m2 != \"\" || obj.orometro_final_m1 != null || obj.orometro_final_m2 != null ||\n obj.orometro_final_m1 != undefined || obj.orometro_final_m2 != undefined) {\n\n if (obj.orometro_inicial_m1 >= obj.orometro_final_m1 || obj.orometro_inicial_m2 >= obj.orometro_final_m2) {\n\n if (obj.orometro_inicial_m1 >= obj.orometro_final_m1 && obj.orometro_final_m1 != \"\" && obj.orometro_final_m1 != null) {\n $(document.getElementById(\"oromFin1\")).notify(\"Debe ser mayor al Inicial\", { position: \"right\" });\n return false;\n }\n if (obj.orometro_inicial_m2 >= obj.orometro_final_m2 && obj.orometro_final_m2 != \"\" && obj.orometro_final_m2 != null) {\n $(document.getElementById(\"oromFin2\")).notify(\"Debe ser mayor al Inicial\", { position: \"right\" });\n return false;\n }\n\n return true;\n\n } else\n return true;\n } else\n return true;\n }\n}", "borrarLineaVista(nLinea){\n let cuadrados=this.svg.getElementsByTagNameNS(\"http://www.w3.org/2000/svg\",\"rect\");\n //Usando HTMLCollection no funciona bien, por eso lo convierto a Array\n cuadrados= Array.from(cuadrados);\n for(let i=0; i<cuadrados.length; i++){\n //Borrar rect que están tienen como posicion y nLinea*this.Size\n if(parseInt(cuadrados[i].getAttribute(\"y\"))/this.rectSize==nLinea+1)\n this.svg.removeChild(cuadrados[i]);\n //Bajar rect que tienen como posicion y un numero menor que nLinea*this.Size\n if(parseInt(cuadrados[i].getAttribute(\"y\"))/this.rectSize<nLinea+1)\n cuadrados[i].setAttribute(\"y\",parseInt(cuadrados[i].getAttribute(\"y\"))+this.rectSize);\n }\n }", "function Borrar_Linea_Costo() {\n\t$('#Datos_Costo_Totales').hide();\n\t$(\".Costos_Totales_Datos\").remove();\n\t$(\"#Costos_Linea\").append('<input type=\"number\" value=\"0\" class=\"form-control Costos_Totales_Datos\" required>');\n\t$(\"#Historial_Vacio\").show();\n}", "removeAllLines() {\n this._linesData = [];\n this._linesAux = [];\n }", "function guidelines()\n{\n lineasDeGuia.visible = !lineasDeGuia.visible;\n}", "function limpiarInputs(){\n\t\tdocument.getElementById(\"codigoEst\").value = \"\";\n\t\tdocument.getElementById(\"nombreEst\").value = \"\";\n\t\tdocument.getElementById(\"nota1Est\").value = \"\";\n\t\tdocument.getElementById(\"nota2Est\").value = \"\";\n\t}", "function habilitaCamposSegTratI(miCampo){\n\n\n //el dato no es vacio y está dentro del rango de 1 y 2\n //HABILITAMOS Y DESHABILITAMOS CAMPOS SEGÚN SIVIGILA ESCRITORIO\n \n \n var miRadioterapia = document.getElementById('radioterap');\n var miQuirurgico = document.getElementById('quirurgico');\n var miQuimiotera = document.getElementById('quimiotera');\n var miHormonoter = document.getElementById('hormonoter');\n var miCuidPalia = document.getElementById('cuid_palia');\n var miInmunotera = document.getElementById('inmunotera');\n var miFechaSegTr = document.getElementById('FCH_SEG_TR');\n\n \n //validamos el valor, si es uno (1=si) habilitamos los campos anteriores\n //validamos el valor, si es dos (2=no) inhabilitamos los campos anteriores\n if(miCampo.value ==1){\n //habilitamos \n \n miRadioterapia.disabled=false;\n miQuirurgico.disabled=false;\n miQuimiotera.disabled=false;\n miHormonoter.disabled=false;\n miCuidPalia.disabled=false;\n miInmunotera.disabled=false;\n miFechaSegTr.disabled=false;\n \n }\n else{\n //deshabilitamos de lo contrario. No tenemos que validar el 2, porque viene de una verificar unos datos validos\n \n miRadioterapia.disabled=true;\n miQuirurgico.disabled=true;\n miQuimiotera.disabled=true;\n miHormonoter.disabled=true;\n miCuidPalia.disabled=true;\n miInmunotera.disabled=true;\n miFechaSegTr.disabled=true;\n \n }\n\n \n \n }", "function inhabilitaCamposDiagnosticoProbable(){\n\n\n//el dato no es vacio y tiene el valor de 5\n // DESHABILITAMOS CAMPOS SEGÚN SIVIGILA ESCRITORIO\n\n var miFechaTomaDP = document.getElementById('FEC_TOMADP');\n var miFechaResDP = document.getElementById('FEC_RES_DP');\n var miCritDxDE = document.getElementById('CRIT_DX_DE');\n var miFecTomaDd = document.getElementById('FEC_TOMADD');\n var miFecResDd = document.getElementById('FEC_RES_DD');\n\n //deshabilitamos campos \n\n\tmiFechaTomaDP.disabled=true;\n\tmiFechaResDP.disabled=true;\n\tmiCritDxDE.disabled=true;\n\tmiFecTomaDd.disabled=true;\n\tmiFecResDd.disabled=true;\n\n\t//borramos campos\n\n\tmiFechaTomaDP.value=\"\";\n\tmiFechaResDP.value=\"\";\n\tmiCritDxDE.value=\"\";\n\tmiFecTomaDd.value=\"\";\n\tmiFecResDd.value=\"\";\n\n}", "function clear_lines() {\n\tU14_Y3 = -1;\n\tU14_Y2 = -1;\n\n\tfor (var i=0; i<=11; i++) {\n\t\tD[i] = -1;\n\t}\n\tfor (var i=0; i<=15; i++) {\n\t\tA[i] = -1;\n\t}\n}", "function CriarRecados(){\n const descri = document.getElementById('inputDescri').value;\n const detalhes = document.getElementById('inputDetalha').value;\n if (indiceUpdate != undefined) {\n const objeto = lista[indiceUpdate];\n objeto.des = descri;\n objeto.deta = detalhes;\n chamaAlert('warning', 'Recado editado com sucesso!');\n } else {\n lista.push({des:descri,deta:detalhes});\n chamaAlert('success', 'Recado salvo com sucesso!');\n } \n salvar();\n mostrar();\n indiceUpdate = undefined;\n document.getElementById(\"inputDescri\").value = \"\"; //deixa campos limpos\n document.getElementById(\"inputDetalha\").value = \"\"; //deixa campos limpos\n}", "dibujarLugaresTablero(){\n for (let y = 0; y < this.filas; y++) {\n for (let x = 0; x < this.columnas; x++) {\n let blankSpace = {\n posX: 200 + (x * 100),\n posY: 100 + (y * 100),\n width: 90,\n height: 90,\n ocupado: false,\n team: \"\"\n };\n if(x==0){\n this.espacios[y] = new Array(this.size);\n }\n this.espacios[y][x]= blankSpace;\n }\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Adds recommended tracks to playlist
addTracks() { let { playlistId, tracks } = this.state; spotifyApi.addTracksToPlaylist(playlistId, tracks); }
[ "function add_to_playlist({\n dom_list, tracklist, playlist, album_playlist=[], \n title_list, album_title_list=[], list_name, index, is_owner=false\n} = {}) {\n const item_id = dom_list[index].getAttribute('data-itemid'),\n dom_id = dom_list[index].id,\n // these data objects contain the sequential keys of every item available\n item_key = list_name.indexOf('search') > -1 ? getItemKey(dom_list[index]) :\n list_name.indexOf('wish') > -1 ? window.WishlistData.sequence[index] :\n window.CollectionData.sequence[index],\n fave_node = dom_list[index].querySelector('.fav-track-link'),\n is_subscriber_only = dom_list[index].classList.contains('subscriber-item');\n \n // console.log(item_key, tracklist);\n let track = tracklist[item_key] ? tracklist[item_key][0] : undefined;\n\n // if a favorite track is set use that instead of first track in the set\n if (is_owner && fave_node && list_name.indexOf('search') === -1 && tracklist[item_key]) {\n const fave_track = get_fave_track(fave_node, tracklist[item_key]);\n if (fave_track) track = fave_track;\n }\n\n // trackData.title is null when an item has no streamable track\n // dom item data-trackid attribute is \"\" when no streamable track\n // bc also has a zombie entry for subscriber only items which gets stuck in an endless fetch loop\n let can_push = track && \n track.trackData.title !== null && \n dom_list[index].getAttribute('data-trackid') &&\n (is_owner || !is_subscriber_only);\n // console.log('list', list_name, 'can push', can_push);\n\n if (!can_push) {\n console.log(\"missing track\", item_key, track?.trackData?.title);\n if (list_name === 'wish') {\n colplayer.wish_missing++; \n console.log('total missing from wish playlist', colplayer.wish_missing);\n } else if (list_name.indexOf('search') > -1) {\n colplayer.missing_search_tracks++;\n } else if (list_name === 'collection') {\n colplayer.col_missing++;\n console.log('total missing from collection playlist', colplayer.col_missing);\n }\n } else if (list_name === 'wishlist-search') {\n dom_list[index].setAttribute('data-searchnum', index - colplayer.missing_search_tracks);\n }\n\n // owner search should be processed as an album since if searching own collection all album tracks are included\n if (list_name !== 'collection-search' || !is_owner) {\n if (can_push) {\n push_track({track, item_id, dom_id, playlist, title_list, list_name});\n } else {\n console.log(`couldn't find playable track for item ${item_key}`, tracklist[item_key]);\n }\n }\n\n // build album playlist \n if (can_push && is_owner && (list_name === 'collection' || list_name === 'collection-search')) {\n let album = tracklist[item_key];\n album_playlist = list_name === 'collection-search' ? playlist : album_playlist;\n album_title_list = list_name === 'collection-search' ? title_list : album_title_list;\n dom_list[index].setAttribute('data-firsttrack', album_playlist.length);\n\n if (album.length >= 1) {\n album.forEach((t) => {\n push_track({\n track: t,\n item_id,\n dom_id,\n playlist: album_playlist,\n title_list: album_title_list,\n list_name: list_name === 'collection-search' ? 'collection-search' : 'albums'\n });\n });\n }\n console.log(`pushed album ${album[0].title} by ${album[0].trackData.artist}, playlist length now ${album_playlist.length}`);\n }\n}", "async function syncPlaylist (playlist, tracks) {\n try {\n const results = { added: 0, removed: 0 }\n // Exit early on empty tracks.\n if (!tracks.length) return results\n const spotify = createSpotify()\n const uid = playlist.user\n const name = playlist.name\n\n // Search for user playlist.\n const result = await searchUserPlaylists(uid, name)\n\n // Store playlist ID if available.\n let pid = result[0] ? result[0].id : null\n\n if (!pid) {\n // Create user playlist if it doesn't exist.\n pid = await spotify.createPlaylist(uid, name)\n .then(response => response.body.id)\n .catch(e => console.log(e))\n }\n\n // Exit early if playlist couldn't be created.\n if (!pid) return\n\n // Get all track IDs from user playlist.\n const playlistTracks = await getAllUserPlaylistTracks(uid, pid)\n .then(response => response.map(item => item.track.id))\n .catch(e => console.log(e))\n\n if (playlistTracks) {\n // Build remove array to store tracks in playlist that are not included\n // within tracks argument.\n const remove = playlistTracks.reduce((items, item) => {\n const index = tracks.indexOf(item)\n if (index < 0) {\n results.removed = results.removed + 1\n tracks.splice(index, 1)\n items.push({ uri: `spotify:track:${item}` })\n }\n return items\n }, [])\n\n if (remove) {\n // Remove tracks from playlist.\n await removeAllTracksFromPlaylist(uid, pid, remove)\n .catch(e => console.log(e))\n }\n }\n\n if (tracks.length) {\n // Build tracks to add that are not present in playlist, so duplicated\n // tracks aren't added.\n const add = tracks.reduce((items, item) => {\n const index = playlistTracks.indexOf(item)\n if (index < 0) {\n results.added = results.added + 1\n items.push(`spotify:track:${item}`)\n }\n return items\n }, [])\n\n if (add.length) {\n // Add tracks to playlist.\n await addAllTracksToPlaylist(uid, pid, add)\n .catch(e => console.log(e))\n }\n }\n\n return results\n } catch (e) {\n throw e\n }\n}", "function addTrackToPlaylist (trackId, playlistId) {\n library.playlists[playlistId].tracks[-1] = trackId;\n}", "replacePlaylist(recommendations) {\n this.props.spotifyApi.replaceTracksInPlaylist(this.state.chosenPlaylist, this.getTrackUris(recommendations))\n .then((response) => {\n });\n }", "function searchAndAdd(title, playlistToAdd) {\n spotifyApi.searchTracks(title)\n .then(function (data) {\n var firstTrack = data.body.tracks.items[0].id;\n addToPlaylist(firstTrack, playlistToAdd);\n console.log('Searched for track', data.body);\n }, function (err) {\n console.log('Something went wrong!', err);\n });\n}", "addToPlaylist(track, playlistName) {\n let self = this;\n // If playlist exists\n if(this.playlists.indexOf(playlistName) > -1) {\n this.db.playlists.find({ name: playlistName }).exec(function(err, docs) {\n if (!err) {\n let newPlaylist = docs[0];\n newPlaylist.tracks.push(track._id);\n newPlaylist.count++;\n newPlaylist.duration += track.duration;\n self.db.playlists.update({ name: playlistName }, newPlaylist, {}, function(err) {\n if (!err) {\n self.db.playlists.persistence.compactDatafile();\n console.log(\"Track \" + track.title + \" added to playlist \" + playlistName);\n }\n });\n }\n });\n }\n }", "function addTracksToPlaylist(data, callback){\n\tsessionStorage.songs = JSON.stringify(MASTER_TRACKLIST); \n\tsessionStorage.spotifyUserId = JSON.stringify(spotifyUserId);\n\n\tplaylistId = data.id;\n\tsessionStorage.playlistId = JSON.stringify(playlistId);\n\tvar tracks = [];\n\tfor(var i = 0; i < MASTER_TRACKLIST.length; i++){\n\t\ttracks.push(MASTER_TRACKLIST[i].id);\n\t}\n\tvar tracksString = tracks.join(\",spotify:track:\");\n\t\n\tvar url = 'https://api.spotify.com/v1/users/' + spotifyUserId +\n\t'/playlists/' + playlistId +\n\t'/tracks?uris='+encodeURIComponent(\"spotify:track:\"+tracksString);\n\t$.ajax(url, {\n\t\tmethod: 'POST',\n\t\tdataType: 'text',\n\t\theaders: {\n\t\t\t'Authorization': 'Bearer ' + AUTHORIZATION_CODE,\n\t\t\t'Content-Type': 'application/json'\n\t\t},\n\t\tsuccess: function(d) {\n\t\t\tcallback(d, data.external_urls.spotify);\n\t\t},\n\t\terror: function(r) {\n\t\t\tcallback(null, null);\n\t\t}\n\t});\n}", "addTrack(track) {\n //Retrieve tracks currently in the playlist\n let tracks = this.state.playlistTracks;\n //Add new track to the end of the existing playlist\n tracks.push(track);\n //Reset state to represent new playlist\n this.setState({\n playlistTracks: tracks\n });\n }", "function giveRecommendation(seed1, seed2, seed3, danceability, energy, loudness) {\n $('#main *').remove();\n var xhr = new XMLHttpRequest();\n $.ajax({\n beforeSend: function(xhr){\n xhr.setRequestHeader('Authorization', 'Bearer '+spotifyToken);\n },\n type: \"GET\",\n url: 'https://api.spotify.com/v1/recommendations',\n data:{\n seed_tracks: seed1,\n seed_tracks: seed2,\n seed_tracks: seed3,\n //hardcoded until database and algorithm determining this is figured out.\n target_danceability: danceability,\n target_energy: energy,\n target_loudness: loudness,\n },\n success: function(result) {\n $.each(result.tracks, function(index, item) {\n console.log(result.tracks[index].name);\n playlist.push()\n });\n console.log(result);\n console.log(\"yay\");\n },\n\n error: function(result){\n console.log('failed');\n }\n });\n return playlist;\n}", "_autoplayAddTitle() {\n\t\tif (this._sCurrentTitleUrl) {\n\t\t\tytDownload.getBasicInfo(this._sCurrentTitleUrl).then(oInfo => {\n\t\t\t\tlet iRandomRelatedVideo = Math.floor(Math.random() * oInfo.related_videos.length);\n\t\t\t\tlet oSuggestion = oInfo.related_videos[iRandomRelatedVideo];\n\n\t\t\t\tthis._aPlaylist.push({\n\t\t\t\t\tname: oSuggestion.title ? oSuggestion.title : \"track\",\n\t\t\t\t\turl: \"https://www.youtube.com/watch?v=\" + oSuggestion.id\n\t\t\t\t});\n\t\t\t}).catch(err => {\n\t\t\t\tlogger.warn(\"Could not add suggested title: \", err);\n\t\t\t});\n\t\t} else {\n\t\t\tlogger.warn(\"Could not add suggested title, due to missing current title.\");\n\t\t}\n\t}", "addPlaylist(playlist) {\n this._playlists.push(playlist);\n }", "async function addTracksToPlaylist(playlist, trackPositions) {\n for (const { pos, ids } of trackPositions) {\n for (const tracks of chunk(ids.map(id => `spotify:track:${id}`), 100).reverse()) {\n await request(\"POST\", `https://api.spotify.com/v1/users/${playlist.owner.id}/playlists/${playlist.id}/tracks`, {\n uris: tracks,\n position: pos,\n });\n }\n }\n }", "function helper_addTrackToPlaylist(playlistId){\n for (var i in library.playlists[playlistId].tracks){\n console.log(\"tracks in the passed playlist:\",library.playlists[playlistId].tracks[i]);\n }\n }", "function addTracks(playlistID, tracks, access_token){\n\tvar createAddOptions = {\n\t\turl: `https://api.spotify.com/v1/playlists/${playlistID}/tracks`,\n\t\tcont_type: 'application/json'\n\t}\n\taxios({\n\t\tmethod: 'post',\n\t\turl: createAddOptions.url,\n\t\theaders: {\n\t\t\t'Authorization': 'Bearer ' + access_token,\n\t\t\t'Content-Type': createAddOptions.cont_type,\n\t\t},\n\t\tparams: {\n\t\t\t'uris': tracks.join(\",\") //formatting tracks array for API use\n\t\t}\n\t})\n\t.then((response) => {\n\t\t//playlist successfully created!\n\t})\n\t.catch((error) => {\n\t\tconsole.log(error);\n\t})\n}", "function addTrack(track, playNext) {\n var tracks = getTracks();\n tracks.push(track._id);\n saveQueue(tracks);\n }", "addPlaylistSongs(playlistUris) {\n let parsed = queryString.parse(window.location.search);\n let accessToken = parsed.access_token;\n if (!accessToken)\n return;\n fetch(`https://api.spotify.com/v1/playlists/${this.state.playlistId}/tracks`, {\n headers: {\"Accept\": \"application/json\", \"Content-Type\": \"application/json\", 'Authorization': 'Bearer ' + accessToken},\n method: 'post',\n body: JSON.stringify({uris: playlistUris})\n })\n .then(this.startPlaylist);\n }", "addPlaylist(song) {\n this.playlist.push(song);\n }", "addTrack(track)\n {\n // check if the track is already present in the playlist.\n let trackPresent = this.state.playList.tracks.some(playLisTrack=>{\n return playLisTrack.id === track.id;\n });\n if(!trackPresent)\n {\n this.state.playList.tracks.push(track);\n this.setState({playList: this.state.playList});\n }\n }", "savePlayList() {\n var trackUris = this.state.playlistTracks.map(item => item.uri);\n Spotify.savePlaylist(this.state.playlistName, trackUris).then(\n () => {\n\t\t// Once the playlist saved, we clear the playlist infos\n this.resetPlaylist();\n }\n );\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Binding address field from street number and street name for Billing by Tu Nguyen
function bindingAddressField(){ try { var input = _qAll('.billing_address_field'), billingAddress = _qById('billing_address1'), streetName = _qById('billing_streetname'), streetNumber = _qById('billing_streetnumber'); if( !streetName && !streetNumber){ return; } for (let item of input){ item.addEventListener('keyup', function(){ billingAddress.value = streetNumber.value +' '+ streetName.value; }) } } catch (err){ console.log('error: ', err); } }
[ "function bindingAddressField(){\n\n try {\n var input = _qAll('.shipping_address_field'),\n shippingAddress = _qById('shipping_address1'),\n streetName = _qById('shipping_streetname'),\n streetNumber = _qById('shipping_streetnumber');\n\n if( !streetName && !streetNumber){\n return;\n }\n for (let item of input){\n item.addEventListener('keyup', function(){\n shippingAddress.value = streetNumber.value +' '+ streetName.value;\n })\n }\n } catch (err){\n console.log('error: ', err);\n }\n }", "function setAddress()\n{\n\tvm.customerAddress = _streetAddressField.value;\n}", "function setAddressRelatedFieldValues(record){\r\n record.setFieldValue('billaddresslist', record.getFieldValue('billaddresslist') || '');\r\n record.setFieldValue('billaddress', record.getFieldValue('billaddress') || '');\r\n record.setFieldValue('shipaddresslist', record.getFieldValue('shipaddresslist') || '');\r\n record.setFieldValue('shipaddress', record.getFieldValue('shipaddress') || '');\r\n}", "function fillInAddress() {\n\n\t// Get the place details from the autocomplete object.\n\tvar place = autocomplete.getPlace();\n\n\tnlapiSetCurrentLineItemValue('addresses', 'lat', place.geometry.location.lat());\n\tnlapiSetCurrentLineItemValue('addresses', 'lng', place.geometry.location.lng());\n\n\t// Enable the following fields once the address is selected from the dropdown. \n\t// document.getElementById('city').removeAttribute('disabled');\n\t// document.getElementById('state').removeAttribute('disabled');\n\t// document.getElementById('zipcode').removeAttribute('disabled');\n\n\t// Get each component of the address from the place details and fill the corresponding field on the form.\n\tvar addressComponent = \"\";\n\n\tfor (var i = 0; i < place.address_components.length; i++) {\n\n\t\tif (place.address_components[i].types[0] == 'street_number' || place.address_components[i].types[0] == 'route') {\n\t\t\taddressComponent += place.address_components[i]['short_name'] + \" \";\n\t\t\tnlapiSetCurrentLineItemValue('addresses', 'address2', addressComponent);\n\t\t}\n\t\tif (place.address_components[i].types[0] == 'postal_code') {\n\t\t\tnlapiSetCurrentLineItemValue('addresses', 'zipcode', place.address_components[i]['short_name']);\n\t\t}\n\t\tif (place.address_components[i].types[0] == 'administrative_area_level_1') {\n\t\t\tnlapiSetCurrentLineItemValue('addresses', 'state', place.address_components[i]['short_name']);\n\t\t}\n\t\tif (place.address_components[i].types[0] == 'locality') {\n\t\t\tnlapiSetCurrentLineItemValue('addresses', 'city', place.address_components[i]['short_name']);\n\t\t}\n\t}\n}", "function editAddress() {\n app.getForm('billing').objectaddress.clearFormElement();\n var address = customer.getAddressBook().getAddress(request.httpParameterMap.addressID.stringValue);\n if (address) {\n app.getForm('billinaddress').copyFrom(address);\n app.getForm('billingaggdress.states').copyFrom(address);\n }\n app.getView({\n ContinueURL: URLUtils.https('COBilling-EditBillingAddress')\n }).render('checkout/billing/billingaddressdetails');\n}", "function fillInAddress() {\n\n // Get the place details from the autocomplete object.\n var place = autocomplete.getPlace();\n\n // Get each component of the address from the place details and fill the corresponding field on the form.\n var addressComponent = \"\";\n\n for (var i = 0; i < place.address_components.length; i++) {\n\n console.log(place.address_components[i])\n\n if (place.address_components[i].types[0] == 'street_number' || place.address_components[\n i].types[0] == 'route') {\n addressComponent += place.address_components[i]['short_name'] + \" \";\n $('#address2').val(addressComponent);\n }\n if (place.address_components[i].types[0] == 'postal_code') {\n $('#postcode').val(place.address_components[i]['short_name']);\n }\n if (place.address_components[i].types[0] ==\n 'administrative_area_level_1') {\n $('#state').val(place.address_components[i]['short_name']);\n }\n if (place.address_components[i].types[0] == 'locality') {\n $('#city').val(place.address_components[i]['short_name']);\n }\n }\n }", "function fillInAddress() {\n\n // Get the place details from the autocomplete object.\n var place = autocomplete.getPlace();\n\n // Get each component of the address from the place details and fill the corresponding field on the form.\n var addressComponent = \"\";\n\n for (var i = 0; i < place.address_components.length; i++) {\n\n console.log(place.address_components[i])\n\n if (place.address_components[i].types[0] == 'street_number' || place.address_components[\n i].types[0] == 'route') {\n addressComponent += place.address_components[i]['short_name'] + \" \";\n $('#address2').val(addressComponent);\n }\n if (place.address_components[i].types[0] == 'postal_code') {\n $('#postcode').val(place.address_components[i]['short_name']);\n }\n if (place.address_components[i].types[0] ==\n 'administrative_area_level_1') {\n $('#state').val(place.address_components[i]['short_name']);\n }\n if (place.address_components[i].types[0] == 'locality') {\n $('#city').val(place.address_components[i]['short_name']);\n }\n }\n }", "function SetOcc2Address(){\n\tNWF$('#' + TwoStreetAddress).val(NWF$('#' + OneStreetAddress).val());\t\n\tNWF$('#' + TwoCity).val(NWF$('#' + OneCity).val());\t\n\tNWF$('#' + TwoState).val(NWF$('#' + OneState).val());\t\n\tNWF$('#' + TwoZipCode).val(NWF$('#' + OneZipCode).val()); \n\tNWF$('#' + TwoCounty).val(NWF$('#' + OneCounty).val());\n}", "initializeBillingAddress() {\n this.form.address = this.billable.billing_address;\n this.form.address_line_2 = this.billable.billing_address_line_2;\n this.form.city = this.billable.billing_city;\n this.form.state = this.billable.billing_state;\n this.form.zip = this.billable.billing_zip;\n this.form.country = this.billable.billing_country || 'US';\n this.form.vat_id = this.billable.vat_id;\n }", "function formatAddress(address) {\n address = address.trim();\n if (address === \"\")\n return \"\";\n // Remove the bracketted number that often appears at the end of a property address. For\n // example, \"7 McAdam RD PORT AUGUSTA (3743)\" is changed to \"7 McAdam RD PORT AUGUSTA\".\n address = address.replace(/ \\([0-9]+\\)$/, \"\").replace(/ \\([0-9]*$/, \"\");\n // Pop tokens from the end of the array until a valid suburb name is encountered (allowing\n // for a few spelling errors).\n let tokens = address.split(\" \");\n let suburbName = null;\n for (let index = 1; index <= 4; index++) {\n let suburbNameMatch = didyoumean(tokens.slice(-index).join(\" \"), Object.keys(SuburbNames), { caseSensitive: false, returnType: \"first-closest-match\", thresholdType: \"edit-distance\", threshold: 2, trimSpace: true });\n if (suburbNameMatch !== null) {\n suburbName = SuburbNames[suburbNameMatch];\n tokens.splice(-index, index); // remove elements from the end of the array \n break;\n }\n }\n if (suburbName === null) // suburb name not found (or not recognised)\n return address;\n // Add the suburb name with its state and post code to the street name.\n let streetName = tokens.join(\" \").trim();\n return (streetName + ((streetName === \"\") ? \"\" : \", \") + suburbName).trim();\n}", "function enterAddressManually(){ \n\t// reset field values and display enter manually fields\n\tKDF.hideWidget('address_search_result');\n\n\tKDF.setVal('txt_cusfulladdress','');\n\tKDF.hideWidget('ahtm_cusfulladdress');\n\n\tKDF.setVal('txt_cusaddressnumber','');\n\tKDF.showWidget('txt_cusaddressnumber');\n\n\tKDF.setVal('txt_cusaddressline1','');\n\tKDF.showWidget('txt_cusaddressline1');\n\n\tKDF.setVal('txt_custown','');\n\tKDF.showWidget('txt_custown');\n\n\tKDF.setVal('txt_cuspostcode','');\n\tKDF.showWidget('txt_cuspostcode');\n\n\tKDF.setVal('txt_cusaddressid','');\n\tKDF.setVal('txt_cusuprn','');\n\tKDF.setVal('txt_cusstreetid','');\n\tKDF.setVal('txt_cususrn','');\n}", "function ShippingAddress(cityName, cityAvenueName, cityStreetName, nameOfBuilding, phoneNumber) {\n this.cityName = cityName;\n this.cityAvenueName = cityAvenueName;\n this.CityStreetName = cityStreetName;\n this.nameOfBuilding = nameOfBuilding;\n this.phoneNumber = phoneNumber;\n this.deliveryAddress = (cityStreetName + \" : \\n\" + cityAvenueName + \" : \\n\" + nameOfBuilding + \" : \\n\");\n}", "function CopyBillingAddress(){\r\n\t\tvar billing_address = document.getElementById(\"txt_bill_address\").value;\r\n\t\tvar billing_city = document.getElementById(\"txt_bill_city\").value;\r\n\t\tvar billing_pin = document.getElementById(\"txt_bill_pin\").value;\r\n\t\tvar billing_state = document.getElementById(\"txt_bill_state\").value;\r\n\t\tdocument.getElementById(\"txt_ship_address\").value = billing_address;\r\n\t\tdocument.getElementById(\"txt_ship_city\").value = billing_city;\r\n\t\tdocument.getElementById(\"txt_ship_pin\").value = billing_pin;\r\n\t\tdocument.getElementById(\"txt_ship_state\").value = billing_state;\r\n\t\t}", "_buildAddress(name, addr1, addr2, city, state, zip) {\n var completeAddr = name + '\\n' + addr1 + '\\n';\n if (addr2 == '') {\n return completeAddr + city + \", \" + state + \" \" + zip;\n }\n return completeAddr + addr2 + '\\n' + city + \", \" + state + \" \" + zip;\n }", "function normalisePlacesApiAddress(details, fromGP) {\r\n\t\t\tvar ac = fromGP.address_components;\r\n\r\n\t\t\t// Copy Googles version of an address to something more useable for us\r\n\t\t\tvar street = findPart(ac, \"street_address\");\r\n\t\t\tif (street === \"\")\r\n\t\t\t// not present so fallback to \"route\"\r\n\t\t\t\tstreet = findPart(ac, \"route\");\r\n\r\n\t\t\tvar town = findPart(ac, \"locality\"),\r\n\t\t\t\t\tarea = findPart(ac, \"administrative_area_level_1\"),\r\n\t\t\t\t\tpostCode = findPart(ac, \"postal_code\")\r\n\t\t\t;\r\n\r\n\t\t\tdetails.street = street;\r\n\t\t\tdetails.town = town;\r\n\t\t\tdetails.area = area;\r\n\t\t\tdetails.postCode = postCode;\r\n\r\n\t\t\t// and some other bits\r\n\t\t\tdetails.name = fromGP.name || \"\";\r\n\t\t\tif (fromGP.photos && fromGP.photos.length > 0)\r\n\t\t\t\tdetails.photo = fromGP.photos[0];\r\n\t\t\tdetails.url = fromGP.url || \"\";\r\n\t\t\tdetails.website = fromGP.website || \"\";\r\n\t\t\tdetails.telNo = fromGP.formatted_phone_number || fromGP.telNo || \"\";\r\n\r\n\t\t} // normalisePlacesApiAddress", "function formatStreet(text) {\n if (text === undefined)\n return undefined;\n let tokens = text.trim().toUpperCase().split(\" \");\n // Parse the street suffix (this recognises both \"ST\" and \"STREET\").\n let token = tokens.pop();\n let streetSuffix = StreetSuffixes[token];\n if (streetSuffix === undefined)\n streetSuffix = Object.values(StreetSuffixes).find(streetSuffix => streetSuffix === token);\n // The text is not considered to be a valid street if it has no street suffix.\n if (streetSuffix === undefined)\n return undefined;\n // Add back the expanded street suffix (for example, this converts \"ST\" to \"STREET\").\n tokens.push(streetSuffix);\n // Extract tokens from the end of the array until a valid street name is encountered (this\n // looks for an exact match).\n for (let index = 4; index >= 2; index--) {\n let suburbNames = StreetNames[tokens.slice(-index).join(\" \")];\n if (suburbNames !== undefined)\n return { streetName: tokens.join(\" \"), suburbNames: suburbNames }; // reconstruct the street with the leading house number (and any other prefix text)\n }\n // Extract tokens from the end of the array until a valid street name is encountered (this\n // allows for a spelling error).\n for (let index = 4; index >= 2; index--) {\n let streetNameMatch = didyoumean(tokens.slice(-index).join(\" \"), Object.keys(StreetNames), { caseSensitive: false, returnType: \"first-closest-match\", thresholdType: \"edit-distance\", threshold: 1, trimSpace: true });\n if (streetNameMatch !== null) {\n let suburbNames = StreetNames[streetNameMatch];\n tokens.splice(-index, index); // remove elements from the end of the array\n return { streetName: (tokens.join(\" \") + \" \" + streetNameMatch).trim(), suburbNames: suburbNames }; // reconstruct the street with the leading house number (and any other prefix text)\n }\n }\n return undefined;\n}", "function make_address(request, prefix) {\n var addr = request.slot(prefix+\"_street\");\n if (request.slot(prefix+\"_city\"))\n addr += \" \" + request.slot(prefix+\"_city\");\n if (request.slot(prefix+\"_state\"))\n addr += \" \" + request.slot(prefix+\"_state\");\n return addr;\n}", "function handleChangeOfAddress1(e) {\n setADDRESS_1(e.target.value)\n\n }", "function uEditBuildAddrFields(patron, address) {\n\n var tbody = $('ue_address_tbody');\n\n var row = tbody.appendChild(\n uEditAddrTemplate.cloneNode(true));\n\n uEditCheckSharedAddr(patron, address, tbody, row);\n \n // see if this is a pending address\n if( isTrue(address.pending()) ) {\n var button = $n(row, 'ue_addr_approve');\n unHideMe(button);\n button.onclick = function() { uEditApproveAddr( tbody, row, address ); }\n var oldaddr = grep(patron.addresses(), function(a){return (a.id() == address.replaces());});\n if(oldaddr) {\n oldaddr = oldaddr[0];\n unHideMe($n(row, 'ue_addr_replaced_row')); \n $n(row, 'ue_addr_replaced_div').innerHTML = \n $(\"patronStrings\").getFormattedString(\n 'web.staff.patron.ue.uedit_show_addr_replacement', [\n oldaddr.address_type(),\n oldaddr.street1(),\n oldaddr.street2(),\n oldaddr.city(),\n oldaddr.state(),\n oldaddr.post_code() \n ]);\n }\n }\n\n $n(row, 'ue_addr_delete').onclick = \n function() { \n uEditDeleteAddr(tbody, row, address); \n uEditCheckErrors();\n };\n\n if( patron.billing_address() &&\n address.id() == patron.billing_address().id() ) \n $n(row, 'ue_addr_billing_yes').checked = true;\n\n if( patron.mailing_address() &&\n address.id() == patron.mailing_address().id() ) \n $n(row, 'ue_addr_mailing_yes').checked = true;\n\n $n(row, 'ue_addr_billing_yes').setAttribute('address', address.id());\n $n(row, 'ue_addr_mailing_yes').setAttribute('address', address.id());\n\n /* currently, non-owners cannot edit an address */\n var disabled = (address.usr() != patron.id())\n\n var fields = [\n { \n required : false,\n object : address, \n key : 'address_type', \n widget : {\n base : row,\n name : 'ue_addr_label',\n type : 'input',\n disabled : disabled,\n }\n },\n { \n required : true,\n object : address, \n key : 'street1', \n errkey : 'ue_bad_addr_street',\n widget : {\n base : row,\n name : 'ue_addr_street1',\n type : 'input',\n disabled : disabled,\n }\n },\n { \n required : false,\n object : address, \n key : 'street2', \n errkey : 'ue_bad_addr_street',\n widget : {\n base : row,\n name : 'ue_addr_street2',\n type : 'input',\n disabled : disabled,\n }\n },\n { \n required : true,\n object : address, \n key : 'city', \n errkey : 'ue_bad_addr_city',\n widget : {\n base : row,\n name : 'ue_addr_city',\n type : 'input',\n disabled : disabled,\n }\n },\n { \n required : false,\n object : address, \n key : 'county', \n widget : {\n base : row,\n name : 'ue_addr_county',\n type : 'input',\n disabled : disabled,\n }\n },\n { \n required : true,\n object : address, \n key : 'state', \n errkey : 'ue_bad_addr_state',\n widget : {\n base : row,\n name : 'ue_addr_state',\n type : 'input',\n disabled : disabled,\n }\n },\n { \n required : false,\n object : address, \n key : 'country', \n errkey : 'ue_bad_addr_country',\n widget : {\n base : row,\n name : 'ue_addr_country',\n type : 'input',\n disabled : disabled,\n }\n },\n { \n required : true,\n object : address, \n key : 'post_code',\n errkey : 'ue_bad_addr_zip',\n widget : {\n base : row,\n name : 'ue_addr_zip',\n type : 'input',\n disabled : disabled,\n regex : zipRegex,\n onblur : function(f) {\n var v = uEditNodeVal(f);\n var req = new Request(ZIP_SEARCH, v);\n req.callback( \n function(r) {\n var info = r.getResultObject();\n if(!info) return;\n var state = $n(f.widget.base, 'ue_addr_state');\n var county = $n(f.widget.base, 'ue_addr_county');\n var city = $n(f.widget.base, 'ue_addr_city');\n state.value = info.state;\n state.onchange();\n county.value = info.county;\n county.onchange();\n city.value = info.city;\n city.onchange();\n }\n );\n req.send();\n }\n }\n },\n { \n required : false,\n object : address, \n key : 'within_city_limits',\n widget : {\n base : row,\n name : 'ue_addr_inc_yes',\n type : 'checkbox',\n disabled : disabled,\n }\n },\n { \n required : false,\n object : address, \n key : 'valid',\n widget : {\n base : row,\n name : 'ue_addr_valid_yes',\n type : 'checkbox',\n disabled : disabled,\n }\n }\n ];\n\n for( var f in fields ) {\n dataFields.push(fields[f]);\n uEditActivateField(fields[f]);\n }\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Use the Enum name for the property value.
function useEnumName(target, key, descriptor) { validateProperty("useEnumName", key, descriptor); mapping.getOrCreateOwn(target, key, () => ({})).useEnumName = true; }
[ "get Enum() {}", "parseEnumValueName() {\n if (this._lexer.token.value === \"true\" || this._lexer.token.value === \"false\" || this._lexer.token.value === \"null\") {\n throw syntaxError(\n this._lexer.source,\n this._lexer.token.start,\n `${getTokenDesc(\n this._lexer.token\n )} is reserved and cannot be used for an enum value.`\n );\n }\n return this.parseName();\n }", "function enumName(enumObj, enumVal) {\n for (var name in enumObj) {\n if (enumObj[name] == enumVal)\n return name;\n }\n return '';\n }", "parseEnumValueName() {\n if (this._lexer.token.value === 'true' || this._lexer.token.value === 'false' || this._lexer.token.value === 'null') {\n throw (0, _syntaxError.syntaxError)(this._lexer.source, this._lexer.token.start, `${getTokenDesc(this._lexer.token)} is reserved and cannot be used for an enum value.`);\n }\n return this.parseName();\n }", "parseEnumValueName() {\n if (\n this._lexer.token.value === 'true' ||\n this._lexer.token.value === 'false' ||\n this._lexer.token.value === 'null'\n ) {\n throw syntaxError(\n this._lexer.source,\n this._lexer.token.start,\n `${getTokenDesc(\n this._lexer.token,\n )} is reserved and cannot be used for an enum value.`,\n );\n }\n\n return this.parseName();\n }", "parseEnumValueName() {\n if (\n this._lexer.token.value === 'true' ||\n this._lexer.token.value === 'false' ||\n this._lexer.token.value === 'null'\n ) {\n throw Object(_error_syntaxError_mjs__WEBPACK_IMPORTED_MODULE_0__[\"syntaxError\"])(\n this._lexer.source,\n this._lexer.token.start,\n `${getTokenDesc(\n this._lexer.token,\n )} is reserved and cannot be used for an enum value.`,\n );\n }\n\n return this.parseName();\n }", "get (name) {\n if (name) {\n return _.findWhere(this.props._enums, { name: name });\n }\n\n return this.props._enums;\n }", "function enumlit(name, prop) {\n return new TEnumLiteral(name, prop);\n}", "static getEnumName(group, value) {\n\t\treturn Object.keys(group).find(key => group[key] === value) + '(' + value + ')';\n\t}", "function evaluateEnumMember({ node, typeChecker, evaluate, environment, statementTraversalStack }, parent) {\n const constantValue = typeChecker.getConstantValue(node);\n const propertyName = evaluate.nodeWithValue(node.name, environment, statementTraversalStack);\n // If it is a String enum, all keys will be initialized to strings\n if (typeof constantValue === \"string\") {\n parent[propertyName] = constantValue;\n }\n else {\n parent[(parent[propertyName] = constantValue)] = propertyName;\n }\n}", "set enumValueIndex(value) {}", "set enumDisplayNames(value) {}", "processImplicitValueEnumMember(\n enumName,\n nameStringCode,\n variableName,\n previousValueCode,\n ) {\n let valueCode = previousValueCode != null ? `${previousValueCode} + 1` : \"0\";\n if (variableName != null) {\n this.tokens.appendCode(`const ${variableName} = ${valueCode}; `);\n valueCode = variableName;\n }\n this.tokens.appendCode(\n `${enumName}[${enumName}[${nameStringCode}] = ${valueCode}] = ${nameStringCode};`,\n );\n }", "function enumName(value, options) {\n const name = toBasicChars(value, true);\n if (options.enumStyle === 'upper') {\n return lodash_1.upperCase(name).replace(/\\s+/g, '_');\n }\n else {\n return lodash_1.upperFirst(lodash_1.camelCase(name));\n }\n}", "function _getEnum (name) {\n return _.findWhere(this.props._enums, { name: name });\n}", "static mapEnum(value) {\n return value;\n }", "getEnum() {\n return this.e;\n }", "function transformEnumMemberDeclarationValue(member){var value=resolver.getConstantValue(member);if(value!==undefined){return ts.createLiteral(value);}else{enableSubstitutionForNonQualifiedEnumMembers();if(member.initializer){return ts.visitNode(member.initializer,visitor,ts.isExpression);}else{return ts.createVoidZero();}}}", "function transformEnumMember(member){// enums don't support computed properties\n// we pass false as 'generateNameForComputedPropertyName' for a backward compatibility purposes\n// old emitter always generate 'expression' part of the name as-is.\nvar name=getExpressionForPropertyName(member,/*generateNameForComputedPropertyName*/false);var valueExpression=transformEnumMemberDeclarationValue(member);var innerAssignment=ts.createAssignment(ts.createElementAccess(currentNamespaceContainerName,name),valueExpression);var outerAssignment=valueExpression.kind===10/* StringLiteral */?innerAssignment:ts.createAssignment(ts.createElementAccess(currentNamespaceContainerName,innerAssignment),name);return ts.setTextRange(ts.createExpressionStatement(ts.setTextRange(outerAssignment,member)),member);}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
the following function runs an http get request based on a station ID to return a sechedule JSON this is a synconous request which slows down the functionality of the page, but slowdown is very minimal
function getSchedule(ID) { var xmlHttp = new XMLHttpRequest(); xmlHttp.open( "GET","https://mbta-lab-3.herokuapp.com/redline/schedule.json?stop_id=" + ID, false ); xmlHttp.send( null ); return xmlHttp.responseText; }
[ "function getSchedule(stop_index, stop_id) {\n\t \tvar request = new XMLHttpRequest();\n\t\t\trequest.open(\"GET\", \"https://chicken-of-the-sea.herokuapp.com/redline/schedule.json?stop_id=\" + stop_id, true);\n\t\t\trequest.onreadystatechange = function() {\n\t\t\t\tif (request.readyState == 4 && request.status == 200) {\n\t\t\t\t\ttheData = request.responseText;\n\t\t\t\t\tvar info = JSON.parse(theData);\n\t\t\t\t\tcontent = \"<p class=station_name>\" + stops[stop_index].stop_name + \"</p>\";\n\t\t\t\t\tleft_title = \"<p class=left_title> Arrival Time </p>\";\n\t\t\t\t\tright_title = \"<p class=right_title> Direction </p>\";\n\t\t\t\t\tcontent = content + left_title + right_title;\n\n\t\t\t\t\tfor (j = 0; j < info.data.length; j++) {\n\t\t\t\t\t\tif (info.data[j].attributes.arrival_time != null) {\n\t\t\t\t\t\t\ttime_stamp = findTime(info.data[j].attributes.arrival_time);\n\t\t\t\t\t\t\tarrival_time = \"<p class=arrival_time>\" + time_stamp + \"</p>\";\n\t\t\t\t\t\t\tcontent = content + arrival_time;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif (info.data[j].attributes.direction_id == 0)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tcontent = content + \"<p class=direction> Southbound</p>\";\n\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if (info.data[j].attributes.direction_id == 1)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tcontent = content + \"<p class=direction> Northbound</p>\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tcontent = \"<p class=direction> Not available </p>\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse if (info.data[j].attributes.departure_time != null) {\n\t\t\t\t\t\t\ttime_stamp = findTime(info.data[j].attributes.departure_time);\n\t\t\t\t\t\t\tdeparture_time = \"<p class=arrival_time>\" + time_stamp + \"</p>\";\n\t\t\t\t\t\t\tcontent = content + departure_time;\n\t\t\t\t\t\t\tif (info.data[j].attributes.direction_id == 0)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tcontent = content + \"<p class=direction> Southbound</p>\";\n\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse if (info.data[j].attributes.direction_id == 1)\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\tcontent = content + \"<p class=direction> Northbound</p>\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tcontent = \"<p class=direction> Not available </p>\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tcontent = \"<h4> Not available </h4>\";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\tinfowindow.setContent(content);\n\t infowindow.open(map, markers[stop_index].marker);\n\n\t\t\t\t}\n\t\t\t\telse if (request.readyState == 4 && request.status != 200) {\n\t\t\t\t\tdocument.getElementById(\"location\").innerHTML = \"<p>Something went wrong</p>\";\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t\trequest.send(null);\n }", "function fetchTrainSchedules() {\n\n\t// Getting the station from the input field, and capitalizing the first letter just in case\n\tvar stationName = $(\"#stationInput\").val();\n\tstationName = stationName.charAt(0).toUpperCase() + stationName.slice(1).toLowerCase();\n\t\n\t// Checking that the station exists in the list of stations\n\tif (stationNamesList.find(value => value.name == stationName)) {\n\t\n\t\t// Getting the current station code from the list based on the name\n\t\tcurrentStationCode = stationNamesList.find(value => value.name == stationName).shortCode;\n\t\t\n\t\t// Hiding the \"Station not found\" error, in case it's left there from previous search\n\t\t$(\"#stationNotFoundError\").addClass('d-none');\n\t\t\n\t\t// Building the URL address from the station code and some fixed variables (trains departing in the next 12 hours)\n\t\tvar url = \"https://rata.digitraffic.fi/api/v1/live-trains/station/\" + currentStationCode +\n\t\t\t\"?minutes_before_departure=720&minutes_after_departure=0&minutes_before_arrival=720&minutes_after_arrival=0\";\n\t\t\n\t\tvar trainsData;\n\n\t\t// Establishing connection to the API\n\t\t$.ajax({\n\t\t\ttype: \"GET\",\n\t\t\tdataType: \"json\",\n\t\t\turl: url,\n\t\t\tdata: \"\",\n\t\t\tsuccess: function (trainsData) {\n\t\t\t\n\t\t\t\t// Creating the train schedule table if all goes well\n\t\t\t\tcreateTable(trainsData);\n\t\t\t},\n\t\t\terror: function() {\n\t\t\t\talert(\"Error: unable to retrieve train data\");\n\t\t\t}\n\t\t});\n\t}\n\t\n\t// Showing error if the station is not found from the station list\n\telse {\n\t\t$(\"#stationNotFoundError\").removeClass('d-none');\n\t\t$(\"#noTrainsText\").addClass('d-none');\n\t\t$(\"#trainsTable\").addClass('d-none');\n\t}\n}", "function get_schedule()\n{\n // Get UTC date\n var d = new Date();\n utc_date = `${d.getUTCFullYear()}${(d.getUTCMonth()+1).toString().padStart(2, \"0\")}${d.getUTCDate().toString().padStart(2, \"0\")}`;\n\n /**\n * Schedule download is proxied through my web server at vksdr.com because KMA \n * have not included CORS headers in their API. Mordern browsers will disallow \n * cross-domain requests unless these headers are present. The PHP backend of \n * my web server will make the request to the KMA API then return the result to \n * the dashboard with the necesary CORS headers.\n * \n * See https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS\n */\n\n // Build request URL\n var url = \"https://vksdr.com/scripts/kma-dop.php\";\n var params = `?searchDate=${utc_date}&searchType=${config.downlink}`;\n\n http_get(url + params, (res) => {\n if (res.status == 200) {\n res.json().then((data) => {\n var raw = data['data'];\n var start = -1;\n var end = -1;\n\n // Find start and end of DOP\n for (var i in raw) {\n var line = raw[i].trim();\n\n if (line.startsWith(\"TIME(UTC)\")) {\n start = parseInt(i) + 1;\n }\n\n if (line.startsWith(\"ABBREVIATIONS:\")) {\n end = parseInt(i) - 2;\n }\n }\n\n // Loop through schedule entries\n for (var i = start; i <= end; i++) {\n var line = raw[i].trim().split('\\t');\n var entry = [];\n\n entry[0] = line[0].substring(0, line[0].indexOf(\"-\"));\n entry[1] = line[0].substring(line[0].indexOf(\"-\") + 1);\n entry[2] = line[1].substring(0, line[1].length - 3);\n entry[3] = line[1].substring(line[1].length - 3);\n entry[4] = line[2];\n entry[5] = line[3] == \"O\";\n\n if (entry[2] == \"EGMSG\") { continue; } // Skip EGMSG\n\n sch.push(entry);\n }\n\n // Create schedule table\n var table = document.createElement(\"table\");\n table.className = \"schedule\";\n table.appendChild(document.createElement(\"tbody\"));\n\n // Table header\n var header = table.createTHead();\n var row = header.insertRow(0);\n row.insertCell(0).innerHTML = \"Start (UTC)\";\n row.insertCell(1).innerHTML = \"End (UTC)\";\n row.insertCell(2).innerHTML = \"Type\";\n row.insertCell(3).innerHTML = \"ID\";\n\n // Add table to document\n var element = blocks['schedule'].body;\n element.innerHTML = \"\";\n element.appendChild(table);\n\n print(\"Ready\", \"SCHD\");\n });\n }\n else {\n print(\"Failed to get schedule\", \"SCHD\");\n return false;\n }\n });\n}", "function getRestData(busSchedule2Use){\n\t//build url with stopId\n\tvar url = \"http://api.pugetsound.onebusaway.org/api/where/arrivals-and-departures-for-stop/1_\" + busSchedule2Use + \".json?key=TEST&minutesAfter=30&minutesBefore=0\";\n\t//flash(url);\n\t//make REST call\n\tvar request = new XMLHttpRequest(); \n request.open(\"GET\",url,false);//the true false is for synchronos\n request.send(); \n if(request.status !== 200){\n \t//the request failed for whatever reason.\n \tflash(\"Bad http response\");\n \tsetLocal(\"%busarrivaltime\", \"E4\");\n \texit();\n } else {\n \treturn(JSON.parse(request.responseText));\n }\n}", "function get_station_dynamic(station_num, timestamp_from, timestamp_to) {\n\tvar ourRequest = new XMLHttpRequest();\n\tourRequest.open('GET', '/station/' + station_num + '/' + timestamp_from + '/' + timestamp_to);\n\n\tourRequest.onload = function() {\n\t\tvar ourData = JSON.parse(ourRequest.responseText);\n\t\trenderHTML_Dynamic(ourData, station_num);\n\t};\n\n\tourRequest.send();\n}", "function getSchedules(callback) {\n\t\tvar req = new XMLHttpRequest();\n req.open('GET', 'https://api.itgappen.se/schedules');\n\t\treq.send();\n\t\treq.onreadystatechange = function() {\n\t\t\tif (req.readyState == 4 && req.status == 200) callback(JSON.parse(req.responseText));\n\t\t}\n\t}", "function get_station(station_num) {\n\tvar ourRequest = new XMLHttpRequest();\n\tourRequest.open('GET', '/station/' + station_num);\n\n\tourRequest.onload = function() {\n\t\tvar ourData = JSON.parse(ourRequest.responseText);\n\t\trenderHTML(ourData, station_num);\n\t};\n\n\tourRequest.send();\n}", "function getTimeTable(courseTimeTableID) {\r\n\tconst getTimeTableXhr = new XMLHttpRequest();\r\n\tconst timeTableUri = \"http://localhost:8188/UniProxService.svc/course?c=\" + courseTimeTableID;\r\n\tgetTimeTableXhr.open(\"GET\", timeTableUri, true);\r\n\tgetTimeTableXhr.setRequestHeader(\"Content-Type\", \"application/json\")\r\n\tgetTimeTableXhr.setRequestHeader(\"Accept\", \"application/json\");\r\n\tgetTimeTableXhr.onload = function() {\r\n\t\tconst timeTableResponse = JSON.parse(getTimeTableXhr.responseText);\r\n\t\tconst courseTimeTableInfo = (timeTableResponse).data;\r\n\t\tfor (let timeTable = 0; timeTable < courseTimeTableInfo.length; timeTable++)\r\n\t\t\tif(courseTimeTableInfo[timeTable].catalogNbr.trim() == courseTimeTableID)\r\n\t\t\t\tshowCourseTimeTable(courseTimeTableInfo[timeTable].endDate, courseTimeTableInfo[timeTable].catalogNbr, courseTimeTableInfo[timeTable].component, courseTimeTableInfo[timeTable].term, courseTimeTableInfo[timeTable].meetingPatterns);\r\n\t}\r\n\tgetTimeTableXhr.send();\r\n}", "function getTimetables() { \r\n //fetch(\"https://rata.digitraffic.fi/api/v1/live-trains/station/HKI\")\r\n fetch(\"https://rata.digitraffic.fi/api/v1/live-trains/station/HKI\")\r\n .then(function (response) {\r\n return response.json();\r\n })\r\n .catch(function (error) {\r\n document.getElementById(\"message\").innerHTML = \"Tietojen haku ei onnistunut. Yrit&auml; my&ouml;hemmin uudelleen.\";\r\n })\r\n \r\n \t.then(function (responseJson) { \r\n\t\t\t\tsearchTimetables(responseJson);\r\n\t\t\t})\r\n }", "function GetsScheduleInfo(deviceId, instanceId) {\n $.get(\"api/LutronLightFloor/GetsScheduleInfo/\" + deviceId + \"/\" + instanceId, function (scheduleInfo) {\n\n }).success(function (scheduleInfo) {\n BindScheduleInfo(scheduleInfo);\n });\n}", "function getShuttleTimeTable(res, place, stationName){\n \n var d = new Date();\n var week = d.getDay();\n var shuttleURL = 'http://shuttlecock.azurewebsites.net/timetable/';\n \n// week = 1;\n // Sunday\n if(week == 0) shuttleURL += 'sun_table.json';\n // Saturday\n else if(week == 6) shuttleURL += 'sat_table.json';\n // Monday to Friday\n else shuttleURL += 'table.json'\n \n request.get(shuttleURL, function(err, table_res, next){\n var table = JSON.parse(table_res.body)\n console.log(table);\n console.log(table[place]);\n // console.log(getTimeStamp().split(' ')[1].split(':'));\n var curTime = getTimeStamp().split(' ')[1].split(':');\n var curGetTime = parseInt(curTime[0]) * 60* 60* 1000 + parseInt(curTime[1]) * 60 * 1000 + parseInt(curTime[2]) * 1000;\n \n for(var i = 0; i < table[place].length; i++){\n var tableTime = table[place][i].trim().split(':');\n var tableGetTime = parseInt(tableTime[0]) * 60 * 60 * 1000 + parseInt(tableTime[1]) * 60 * 1000;\n console.log(curGetTime + '\\t' + tableGetTime);\n if(curGetTime < tableGetTime){\n console.log(table[place][i]);\n var min = Math.round((tableGetTime - curGetTime) / (1000 * 60));\n kakaotalkSendMsg(res, stationName + ' 정류장에 가장 빠르게 도착하는 시간은 ' + table[place][i] + ' 이며 도착까지 약 '+min+'분 남았습니다.');\n return;\n }\n }\n \n if(place == \"shuttleA\" || place == \"shuttleB\"){\n for(var i = 0; i < table.cycle.length; i++){\n var tableTime = table.cycle[i].trim().split(':');\n var tableGetTime = parseInt(tableTime[0]) * 60 * 60 * 1000 + parseInt(tableTime[1]) * 60 * 1000;\n \n console.log(curGetTime + '\\t' + tableGetTime);\n if(curGetTime < tableGetTime){\n console.log(table.cycle[i]);\n var min = Math.round((tableGetTime - curGetTime) / (1000 * 60));\n kakaotalkSendMsg(res, stationName + ' 정류장에 가장 빠르게 도착하는 시간은 '+table.cycle[i]+ ' 이며 도착까지 약 '+min+'분 남았습니다.');\n return;\n }\n }\n }\n else if(place == \"engin2\" || place == \"shuttle_opposite\"){\n kakaotalkSendMsg(res, '오늘은 운행이 종료되었습니다.');\n return;\n }\n else{\n for(var i = 0; i < table[place+'Cycle'].length; i++){\n var tableTime = table[place+'Cycle'][i].trim().split(':');\n var tableGetTime = parseInt(tableTime[0]) * 60 * 60 * 1000 + parseInt(tableTime[1]) * 60 * 1000;\n console.log(curGetTime + '\\t' + tableGetTime);\n if(curGetTime < tableGetTime){\n console.log(table[place+'Cycle'][i]);\n var min = Math.round((tableGetTime - curGetTime) / (1000 * 60));\n kakaotalkSendMsg(res, stationName + ' 정류장에 가장 빠르게 도착하는 시간은 ' + table[place+'Cycle'][i]+ ' 이며 도착까지 약 '+min+'분 남았습니다.');\n return;\n }\n }\n }\n kakaotalkSendMsg(res, '오늘은 운행이 종료되었습니다.');\n \n })\n}", "async function RESTAccumulatorService(id, sakey, startTime, EndTime,interval,assetid,item=null) {\r\n\r\n let APIStart=getDate(addMinutes(startTime,-1-addMinutes(startTime,0).getMinutes()%10))\r\n let APIEnd=getDate(addMinutes(EndTime,10-addMinutes(startTime,0).getMinutes()%10))\r\n $(\"#Tstatus\"+assetid).text(\"Loading...\");\r\n//////////////////////////////////////////////////////////\r\n let _URL_= RestAPI_urlList.TimeSeriesTableFetch + id + \"/\" + sakey + \"/\" + APIStart + \"/\" + APIEnd\r\n if(item!=null)\r\n _URL_= RestAPI_urlList.TimeSeriesTableFetch + id + \"/\" + sakey + \"/\" + APIStart + \"/\" + APIEnd + \"/\" + item\r\n\r\n let result=await (await fetch(_URL_)).json()\r\n\r\n TimeSeriesTable_process1(result,startTime,EndTime,interval,assetid)\r\n}", "function upcomingTrains(id, call, key) {\n var upcomingTimes = \"\";\n var url = \"https://thawing-refuge-90938.herokuapp.com/redline/schedule.json?stop_id=\" + id;\n var xhttp = new XMLHttpRequest();\n xhttp.overrideMimeType(\"application/json\");\n xhttp.onreadystatechange = function() {\n if (this.readyState == 4 && this.status == 200) {\n var parsed = JSON.parse(this.responseText);\n for (x in parsed[\"data\"]) {\n if (parsed[\"data\"][x][\"attributes\"][\"direction_id\"] == 0) {\n var direction = \"Southbound\";\n }\n else {\n var directiont = \"Northbound\";\n }\n if (x == \"wollaston\") {\n upcomingTimes += \"No upcoming trains today.\";\n }\n else {\n upcomingTimes += \"Arrival time: \" + parsed[\"data\"][x][\"attributes\"][\"arrival_time\"] + \", Departure time: \" + parsed[\"data\"][x][\"attributes\"][\"departure_time\"] + \", \" + direction + \"<br>\";\n }\n }\n call(key, upcomingTimes);\n }\n };\n xhttp.open(\"GET\", url, true);\n xhttp.send();\n}", "function getStationUpdate() {\n var url = \"http://appservices.citibikenyc.com/data2/stations.php?updateOnly=true\"; //unofficial citibike data feed\n $.getJSON(url + '&callback=?', function(data) {\n if (data.ok) {\n stations_full = []\n for (var i in data.results) {\n var one = data.results[i];\n if (one.status.toLowerCase() === 'active') {\n for (var j in stations_min) {\n var two = stations_min[j]\n if (two.id === one.id) {\n stations_full.push($.extend(one, two));\n }\n }\n }\n }\n console.log('111111');\n var startStations = getStartStations(getRandomArbitary(40.716821, 40.732530), getRandomArbitary(-74.009347, -73.980293));\n console.log(startStations);\n }\n });\n }", "function getTrainShedules() {\n return fetch(_getCurrentUrl())\n .then(function (response) {\n return response.json();\n })\n .then(function (responseJson) {\n return responseJson.data.metabash;\n });\n}", "function getSchedule() {\n $.get(\"/api/schedule\", function(data) {\n console.log(\"Schedule:\", data);\n events = data;\n if (!events || !events.length) {\n displayEmpty();\n } else {\n initializeRows();\n }\n });\n }", "async getNextTrainAtStation(stationCode) {\n const res = await axios.get(NEXT_TRAIN + stationCode, {\n headers: {\n 'api_key': API_KEY,\n }\n });\n\n //anytime the user changes one of the fields, the app checks for the travel time\n //between selected stations\n this.getTravelTime();\n\n return res.data.Trains; \n }", "function getStation(marker, shortCode, stationName) {\n var xmlHttp = new XMLHttpRequest();\n\n xmlHttp.onreadystatechange = function() {\n if (xmlHttp.readyState == 4 && xmlHttp.status == 200)\n var responseData = JSON.parse(xmlHttp.responseText);\n selectedStation = responseData;\n //console.log(responseData);\n //console.log(responseData[0]);\n setInfoMarkerText(shortCode, stationName);\n }\n\n xmlHttp.open(\"GET\",\n \"http://rata.digitraffic.fi/api/v1/live-trains?station=\" +\n shortCode + \"&arrived_trains=5&arriving_trains=5&departed_trains=5&departing_trains=5\",\n true);\n xmlHttp.send(null);\n }", "async function timetable(stopid) {\n const result = await $.ajax({\n url: \"/.netlify/functions/resrobot-timetable\",\n type: \"GET\",\n data: {\n \"stopid\": stopid\n },\n dataType: \"json\"\n });\n\n return result;\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Output = 1060 Euclidean function implementation for finding HCF
function findHCF(a, b) { while (b > 0) { var temp = a; a = b; b = temp % b; } return a; }
[ "dist_euclidean(inst, c) {\n let sumSq = 0;\n for (let i = 0; i < c.x.length; i++) {\n sumSq += Math.pow(inst.x[i] - c.x[i], 2);\n }\n sumSq = Math.sqrt(sumSq);\n return sumSq;\n }", "function firstDerivativeCentral(f, x, h)\n{\n return (f(x+h)-f(x-h))/(2*h);\n}", "dist_chebyshev(inst, c) {\n let best_v = 0;\n for (let i = 0; i < c.x.length; i++) {\n let v = Math.abs(inst.x[i] - c.x[i]);\n if (v > best_v) {\n best_v = v;\n }\n }\n return best_v;\n }", "function hyperFocal(f, a, c) {\n //returns the hyperFocal calculation back to the function\n return (f * f) / (a * c);\n}", "function fnHomography(out, inp, X) {\n var w = X[8] + X[2] * inp[0] + X[5] * inp[1];\n out[0] = (X[6] + X[0] * inp[0] + X[3] * inp[1]) / w;\n out[1] = (X[7] + X[1] * inp[0] + X[4] * inp[1]) / w;\n return out;\n}", "function calculateFEV1(A,H,G){\n if (G == 1){\n var a = 0.5536;\n var b = -0.01303\n var c = -0.000172\n var d = 0.00014098\n \n return a + b*parseInt(A) + c*parseInt(A)*parseInt(A) + d*parseInt(H)*parseInt(H); \n \n }\n else {\n var a = 0.5536;\n var b = -0.01303\n var c = -0.000172\n var d = 0.00014098\n \n return a + b*parseInt(A) + c*parseInt(A)*parseInt(A) + d*parseInt(H)*parseInt(H);\n \n } \n }", "dist_chebyshev(inst, e) {\n let best_v = 0;\n for (let i = 0; i < inst.length; i++) {\n let v = Math.abs(inst[i] - e.x[i]);\n if (v > best_v) {\n best_v = v;\n }\n }\n return best_v;\n }", "function chiCDF(chi, deg) {\n let int = integrate(t => Math.pow(t, (deg - 2) / 2) * Math.exp(-t / 2), 0, chi);\n return 1 - int / Math.pow(2, deg / 2) / gamma(deg / 2);\n }", "function calcular_chi2_calculado_formula(tabla_de_datos) {\n let n = tabla_de_datos.length * tabla_de_datos[0].length;\n let tabla_de_contingencia = generar_tabla_de_contingencia(tabla_de_datos);\n let a = tabla_de_contingencia[0][0];\n let b = tabla_de_contingencia[0][1];\n let c = tabla_de_contingencia[1][0];\n let d = tabla_de_contingencia[1][1];\n\n let dividendo = ( n * Math.pow( ( Math.abs(a*d - b*c) - (n/2) ), 2) ); // dividendo de la formula\n let divisor = ( a + b ) * ( c + d ) * ( a + c ) * ( b + d ); // divisor de la formula\n let chi2 = dividendo / divisor; // division realizada\n return chi2;\n}", "hqr2() {\n let n;\n const V = this.V;\n const d = this.d;\n const e = this.e;\n const H = this.H;\n let i;\n let j;\n let k;\n let l;\n let m;\n let iter;\n\n // This is derived from the Algol procedure hqr2,\n // by Martin and Wilkinson, Handbook for Auto. Comp.,\n // Vol.ii-Linear Algebra, and the corresponding\n // Fortran subroutine in EISPACK.\n\n // Initialize\n\n const nn = this.n;\n n = nn - 1;\n const low = 0;\n const high = nn - 1;\n const eps = Math.pow(2.0, -52.0);\n let exshift = 0.0;\n let p = 0;\n let q = 0;\n let r = 0;\n let s = 0;\n let z = 0;\n let t;\n let w;\n let x;\n let y;\n\n // Store roots isolated by balanc and compute matrix norm\n\n let norm = 0.0;\n for (i = 0; i < nn; i++) {\n if (i < low || i > high) {\n d[i] = H[i * n + i];\n e[i] = 0.0;\n }\n for (j = Math.max(i - 1, 0); j < nn; j++) {\n norm = norm + Math.abs(H[i * this.n + j]);\n }\n }\n\n // Outer loop over eigenvalue index\n\n iter = 0;\n while (n >= low) {\n // Look for single small sub-diagonal element\n\n l = n;\n while (l > low) {\n s = Math.abs(H[(l - 1) * n + (l - 1)]) + Math.abs(H[l * n + l]);\n if (s === 0.0) {\n s = norm;\n }\n if (Math.abs(H[l * n + (l - 1)]) < eps * s) {\n break;\n }\n l--;\n }\n\n // Check for convergence\n // One root found\n\n if (l === n) {\n H[n * n + n] = H[n * n + n] + exshift;\n d[n] = H[n * n + n];\n e[n] = 0.0;\n n--;\n iter = 0;\n\n // Two roots found\n } else if (l === n - 1) {\n w = H[n * n + n - 1] * H[(n - 1) * n + n];\n p = (H[(n - 1) * n + (n - 1)] - H[n * n + n]) / 2.0;\n q = p * p + w;\n z = Math.sqrt(Math.abs(q));\n H[n * n + n] = H[n * n + n] + exshift;\n H[(n - 1) * n + (n - 1)] = H[(n - 1) * n + (n - 1)] + exshift;\n x = H[n * n + n];\n\n // Real pair\n\n if (q >= 0) {\n if (p >= 0) {\n z = p + z;\n } else {\n z = p - z;\n }\n d[n - 1] = x + z;\n d[n] = d[n - 1];\n if (z !== 0.0) {\n d[n] = x - w / z;\n }\n e[n - 1] = 0.0;\n e[n] = 0.0;\n x = H[n * n + n - 1];\n s = Math.abs(x) + Math.abs(z);\n p = x / s;\n q = z / s;\n r = Math.sqrt(p * p + q * q);\n p = p / r;\n q = q / r;\n\n // Row modification\n\n for (j = n - 1; j < nn; j++) {\n z = H[(n - 1) * n + j];\n H[(n - 1) * n + j] = q * z + p * H[n * n + j];\n H[n * n + j] = q * H[n * n + j] - p * z;\n }\n\n // Column modification\n\n for (i = 0; i <= n; i++) {\n z = H[i * n + n - 1];\n H[i * n + n - 1] = q * z + p * H[i * n + n];\n H[i * n + n] = q * H[i * n + n] - p * z;\n }\n\n // Accumulate transformations\n\n for (i = low; i <= high; i++) {\n z = V[i * n + n - 1];\n V[i * n + n - 1] = q * z + p * V[i * n + n];\n V[i * n + n] = q * V[i * n + n] - p * z;\n }\n\n // Complex pair\n } else {\n d[n - 1] = x + p;\n d[n] = x + p;\n e[n - 1] = z;\n e[n] = -z;\n }\n n = n - 2;\n iter = 0;\n\n // No convergence yet\n } else {\n // Form shift\n\n x = H[n * n + n];\n y = 0.0;\n w = 0.0;\n if (l < n) {\n y = H[(n - 1) * n + (n - 1)];\n w = H[n * n + n - 1] * H[(n - 1) * n + n];\n }\n\n // Wilkinson's original ad hoc shift\n\n if (iter === 10) {\n exshift += x;\n for (i = low; i <= n; i++) {\n H[i * n + i] -= x;\n }\n s = Math.abs(H[n * n + n - 1]) + Math.abs(H[(n - 1) * n + n - 2]);\n x = y = 0.75 * s;\n w = -0.4375 * s * s;\n }\n\n // MATLAB's new ad hoc shift\n\n if (iter === 30) {\n s = (y - x) / 2.0;\n s = s * s + w;\n if (s > 0) {\n s = Math.sqrt(s);\n if (y < x) {\n s = -s;\n }\n s = x - w / ((y - x) / 2.0 + s);\n for (i = low; i <= n; i++) {\n H[i * n + i] -= s;\n }\n exshift += s;\n x = y = w = 0.964;\n }\n }\n iter = iter + 1; // (Could check iteration count here.)\n\n // Look for two consecutive small sub-diagonal elements\n\n m = n - 2;\n while (m >= l) {\n z = H[m * n + m];\n r = x - z;\n s = y - z;\n p = (r * s - w) / H[(m + 1) * n + m] + H[m * n + m + 1];\n q = H[(m + 1) * n + m + 1] - z - r - s;\n r = H[(m + 2) * n + m + 1];\n s = Math.abs(p) + Math.abs(q) + Math.abs(r);\n p = p / s;\n q = q / s;\n r = r / s;\n if (m === l) {\n break;\n }\n if (Math.abs(H[m * n + (m - 1)]) * (Math.abs(q) + Math.abs(r)) < eps * (Math.abs(p) * (Math.abs(H[(m - 1) * n + m - 1]) + Math.abs(z) + Math.abs(H[(m + 1) * n + m + 1])))) {\n break;\n }\n m--;\n }\n for (i = m + 2; i <= n; i++) {\n H[i * n + i - 2] = 0.0;\n if (i > m + 2) {\n H[i * n + i - 3] = 0.0;\n }\n }\n\n // Double QR step involving rows l:n and columns m:n\n\n for (k = m; k <= n - 1; k++) {\n const notlast = k !== n - 1;\n if (k !== m) {\n p = H[k * n + k - 1];\n q = H[(k + 1) * n + k - 1];\n r = notlast ? H[(k + 2) * n + k - 1] : 0.0;\n x = Math.abs(p) + Math.abs(q) + Math.abs(r);\n if (x !== 0.0) {\n p = p / x;\n q = q / x;\n r = r / x;\n }\n }\n if (x === 0.0) {\n break;\n }\n s = Math.sqrt(p * p + q * q + r * r);\n if (p < 0) {\n s = -s;\n }\n if (s !== 0) {\n if (k !== m) {\n H[k * n + k - 1] = -s * x;\n } else if (l !== m) {\n H[k * n + k - 1] = -H[k * n + k - 1];\n }\n p = p + s;\n x = p / s;\n y = q / s;\n z = r / s;\n q = q / p;\n r = r / p;\n\n // Row modification\n\n for (j = k; j < nn; j++) {\n p = H[k * n + j] + q * H[(k + 1) * n + j];\n if (notlast) {\n p = p + r * H[(k + 2) * n + j];\n H[(k + 2) * n + j] = H[(k + 2) * n + j] - p * z;\n }\n H[k * n + j] = H[k * n + j] - p * x;\n H[(k + 1) * n + j] = H[(k + 1) * n + j] - p * y;\n }\n\n // Column modification\n\n for (i = 0; i <= Math.min(n, k + 3); i++) {\n p = x * H[i * n + k] + y * H[i * n + k + 1];\n if (notlast) {\n p = p + z * H[i * n + k + 2];\n H[i * n + k + 2] = H[i * n + k + 2] - p * r;\n }\n H[i * n + k] = H[i * n + k] - p;\n H[i * n + k + 1] = H[i * n + k + 1] - p * q;\n }\n\n // Accumulate transformations\n\n for (i = low; i <= high; i++) {\n p = x * V[i * n + k] + y * V[i * n + k + 1];\n if (notlast) {\n p = p + z * V[i * n + k + 2];\n V[i * n + k + 2] = V[i * n + k + 2] - p * r;\n }\n V[i * n + k] = V[i * n + k] - p;\n V[i * n + k + 1] = V[i * n + k + 1] - p * q;\n }\n } // (s !== 0)\n } // k loop\n } // check convergence\n } // while (n >= low)\n\n // Backsubstitute to find vectors of upper triangular form\n\n if (norm === 0.0) {\n return;\n }\n for (n = nn - 1; n >= 0; n--) {\n p = d[n];\n q = e[n];\n\n // Real vector\n\n if (q === 0) {\n l = n;\n H[n * n + n] = 1.0;\n for (i = n - 1; i >= 0; i--) {\n w = H[i * n + i] - p;\n r = 0.0;\n for (j = l; j <= n; j++) {\n r = r + H[i * this.n + j] * H[j * n + n];\n }\n if (e[i] < 0.0) {\n z = w;\n s = r;\n } else {\n l = i;\n if (e[i] === 0.0) {\n if (w !== 0.0) {\n H[i * n + n] = -r / w;\n } else {\n H[i * n + n] = -r / (eps * norm);\n }\n\n // Solve real equations\n } else {\n x = H[i * n + i + 1];\n y = H[(i + 1) * n + i];\n q = (d[i] - p) * (d[i] - p) + e[i] * e[i];\n t = (x * s - z * r) / q;\n H[i * n + n] = t;\n if (Math.abs(x) > Math.abs(z)) {\n H[(i + 1) * n + n] = (-r - w * t) / x;\n } else {\n H[(i + 1) * n + n] = (-s - y * t) / z;\n }\n }\n\n // Overflow control\n\n t = Math.abs(H[i * n + n]);\n if (eps * t * t > 1) {\n for (j = i; j <= n; j++) {\n H[j * n + n] = H[j * n + n] / t;\n }\n }\n }\n }\n\n // Complex vector\n } else if (q < 0) {\n l = n - 1;\n\n // Last vector component imaginary so matrix is triangular\n\n if (Math.abs(H[n * n + n - 1]) > Math.abs(H[(n - 1) * n + n])) {\n H[(n - 1) * n + (n - 1)] = q / H[n * n + n - 1];\n H[(n - 1) * n + n] = -(H[n * n + n] - p) / H[n * n + n - 1];\n } else {\n this.cdiv(0.0, -H[(n - 1) * n + n], H[(n - 1) * n + (n - 1)] - p, q);\n H[(n - 1) * n + (n - 1)] = this.cdivr;\n H[(n - 1) * n + n] = this.cdivi;\n }\n H[n * n + n - 1] = 0.0;\n H[n * n + n] = 1.0;\n for (i = n - 2; i >= 0; i--) {\n let ra;\n let sa;\n let vr;\n let vi;\n ra = 0.0;\n sa = 0.0;\n for (j = l; j <= n; j++) {\n ra = ra + H[i * this.n + j] * H[j * n + n - 1];\n sa = sa + H[i * this.n + j] * H[j * n + n];\n }\n w = H[i * n + i] - p;\n if (e[i] < 0.0) {\n z = w;\n r = ra;\n s = sa;\n } else {\n l = i;\n if (e[i] === 0) {\n this.cdiv(-ra, -sa, w, q);\n H[i * n + n - 1] = this.cdivr;\n H[i * n + n] = this.cdivi;\n } else {\n // Solve complex equations\n\n x = H[i * n + i + 1];\n y = H[(i + 1) * n + i];\n vr = (d[i] - p) * (d[i] - p) + e[i] * e[i] - q * q;\n vi = (d[i] - p) * 2.0 * q;\n if (vr === 0.0 && vi === 0.0) {\n vr = eps * norm * (Math.abs(w) + Math.abs(q) + Math.abs(x) + Math.abs(y) + Math.abs(z));\n }\n this.cdiv(x * r - z * ra + q * sa, x * s - z * sa - q * ra, vr, vi);\n H[i * n + n - 1] = this.cdivr;\n H[i * n + n] = this.cdivi;\n if (Math.abs(x) > Math.abs(z) + Math.abs(q)) {\n H[(i + 1) * n + n - 1] = (-ra - w * H[i * n + n - 1] + q * H[i * n + n]) / x;\n H[(i + 1) * n + n] = (-sa - w * H[i * n + n] - q * H[i * n + n - 1]) / x;\n } else {\n this.cdiv(-r - y * H[i * n + n - 1], -s - y * H[i * n + n], z, q);\n H[(i + 1) * n + n - 1] = this.cdivr;\n H[(i + 1) * n + n] = this.cdivi;\n }\n }\n\n // Overflow control\n t = Math.max(Math.abs(H[i * n + n - 1]), Math.abs(H[i * n + n]));\n if (eps * t * t > 1) {\n for (j = i; j <= n; j++) {\n H[j * n + n - 1] = H[j * n + n - 1] / t;\n H[j * n + n] = H[j * n + n] / t;\n }\n }\n }\n }\n }\n }\n\n // Vectors of isolated roots\n for (i = 0; i < nn; i++) {\n if (i < low || i > high) {\n for (j = i; j < nn; j++) {\n V[i * this.n + j] = H[i * this.n + j];\n }\n }\n }\n\n // Back transformation to get eigenvectors of original matrix\n for (j = nn - 1; j >= low; j--) {\n for (i = low; i <= high; i++) {\n z = 0.0;\n for (k = low; k <= Math.min(j, high); k++) {\n z = z + V[i * n + k] * H[k * n + j];\n }\n V[i * this.n + j] = z;\n }\n }\n }", "calcF(x) {\n let c1 = (x - this.fx) ** 2;\n let c2 = 2 * (this.fy - this._d);\n let c3 = this.fy ** 2 - this._d ** 2;\n return ((c1 + c3) / c2);\n }", "function erfc2 (y) {\n let xnum = P[1][8] * y\n let xden = y\n let i\n\n for (i = 0; i < 7; i += 1) {\n xnum = (xnum + P[1][i]) * y\n xden = (xden + Q[1][i]) * y\n }\n const result = (xnum + P[1][7]) / (xden + Q[1][7])\n const ysq = parseInt(y * 16) / 16\n const del = (y - ysq) * (y + ysq)\n return Math.exp(-ysq * ysq) * Math.exp(-del) * result\n }", "function deltaE94(c1,c2){ \r\n\tvar lab1 = c1.lab() //.lch() returns the wrong h\r\n\tvar lab2 = c2.lab()\r\n\tvar C1 = Math.sqrt(lab1[1]*lab1[1]+lab1[2]*lab1[2]) //sqrt(a*a+b*b)\r\n\tvar C2 = Math.sqrt(lab2[1]*lab2[1]+lab2[2]*lab2[2]) //sqrt(a*a+b*b)\r\n\tvar da= lab1[1]-lab2[1]\r\n\tvar db= lab1[2]-lab2[2]\r\n\tvar dC = C1-C2\r\n\t\r\n\t//various weights. There are also kL, kC, kH, but they are all 1.0\r\n\tvar K1 = 0.045\r\n\tvar K2 = 0.015\r\n\tvar SL = 1\r\n\tvar SC = 1+K1*C1 //note the dependency on C1 only\r\n\tvar SH = 1+K2*C1\r\n\t//these factors are dV/SV, will distance them below\r\n\tvar fdL = (lab1[0]-lab2[0])/SL\r\n\tvar fdC = (C1-C2)/SC\r\n\tvar fdH = Math.sqrt(da*da+db*db-(dC*dC))/SH\r\n\tvar dE94 = Math.sqrt(fdL*fdL + fdC*fdC + fdH*fdH)\r\n\treturn dE94\r\n\t\r\n}", "function ierfc(x) {\n if (x >= 2) { return -100; }\n if (x <= 0) { return 100; }\n\n var xx = (x < 1) ? x : 2 - x;\n var t = Math.sqrt(-2 * Math.log(xx / 2));\n\n var r = -0.70711 * ((2.30753 + t * 0.27061) /\n (1 + t * (0.99229 + t * 0.04481)) - t);\n\n for (var j = 0; j < 2; j++) {\n var err = erfc(r) - xx;\n r += err / (1.12837916709551257 * Math.exp(-(r * r)) - r * err);\n }\n\n return (x < 1) ? r : -r;\n}", "function Cosh()\n {\n\n var p = undefined;\n var q = undefined;\n var r = undefined;\n\n p = this.Exp();\n\n q = this.Ngt();\n \n r = q.Exp();\n \n q = p.Add( r );\n \n p = new Cpx( 2.0 , 0.0 );\n \n r = q.Div( p );\n \n return( r );\n\n }", "function calculation () {\n b = a*Math.sqrt(1-eps*eps); // Kleine Halbachse (AE)\n bPix = A_PIX*b/a; // Kleine Halbachse (Pixel)\n ePix = eps*A_PIX; // Lineare Exzentrität (Pixel)\n c1 = Math.sqrt((1+eps)/(1-eps)); // Hilfskonstante\n }", "function hC(Dec, LHA, Lat)\n{\n var s = Math.sin(rad(Dec));\n var c = Math.cos(rad(Dec)) * Math.cos(rad(LHA));\n var decimalhC = Math.asin(((s * Math.sin(rad(Lat))) + \n c * Math.cos(rad(Lat))));\n\n return deg(decimalhC);\n}", "function calculateHCost(currentNode, endNode){ \n let {row, col} = currentNode \n //Euclidean Distance\n // let value = Math.floor(Math.sqrt(Math.abs((row-endNode.row)*2 + (col-endNode.col)*2)))\n // return value\n \n //Diagonal Distance\n // let value = Math.max(Math.abs(row+endNode.row), Math.abs(col+endNode.col))\n // return value\n\n //Manhattan Distance\n let v1 = Math.abs(endNode.row - row)\n let v2 = Math.abs(endNode.col - col)\n return v1 + v2\n}", "function ierfc(x) {\n if (x >= 2) { return -100; }\n if (x <= 0) { return 100; }\n\n var xx = (x < 1) ? x : 2 - x;\n var t = Math.sqrt(-2 * Math.log(xx / 2));\n\n var r = -0.70711 * ((2.30753 + t * 0.27061) /\n (1 + t * (0.99229 + t * 0.04481)) - t);\n\n for (var j = 0; j < 2; j++) {\n var err = erfc(r) - xx;\n r += err / (1.12837916709551257 * Math.exp(-(r * r)) - r * err);\n }\n\n return (x < 1) ? r : -r;\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Return the list of files in the share extension project, organized by type
function getShareExtensionFiles(context) { var files = {source:[],plist:[],resource:[]}; var FILE_TYPES = { '.h':'source', '.m':'source', '.plist':'plist' }; forEachShareExtensionFile(context, function(file) { var fileType = FILE_TYPES[file.extension] || 'resource'; files[fileType].push(file); }); return files; }
[ "function getFiles() {\n return fileList;\n}", "get fileTypes() {\n return this._fileTypes.slice();\n }", "function getPlainFiles() {\n var the_files = [];\n $.each(project.files, function(i, file) {\n if (file.type === \"txt\" || file.type === \"json\" || file.type === \"xml\") {\n the_files.push(file);\n };\n });\n return the_files;\n}", "function fetchAllExtensions() {\n const extensionsDir = prependProjectPath('extensions');\n\n const listOfExtensions = fs.readdirSync(\n prependProjectPath('extensions'),\n { withFileTypes: true },\n ).filter(file => {\n // Depending on the environment's OS, 'file' can be an object or just the\n // name string, so we do an explicit check\n if (typeof file === 'object' && file !== null) {\n return fs.lstatSync(`${extensionsDir}/${file.name}`).isDirectory();\n }\n\n return fs.lstatSync(`${extensionsDir}/${file}`).isDirectory();\n });\n\n return listOfExtensions;\n}", "function fetchAllExtensions() {\n const listOfExtensions = fs.readdirSync(EXT_PATH_ROOT, { withFileTypes: true })\n .filter(file => file.startsWith('shoutem.'))\n\n return listOfExtensions;\n}", "getFileTypesToReload () {\n const fileTypes = []\n\n settings.servers.integration.fileTypesToReload.forEach(fileType => {\n fileTypes.push(`${settings.paths.dev.root}/**/*.${fileType}`)\n })\n\n return fileTypes\n }", "function getModulesFiles() {\n var the_files = [];\n $.each(project.files, function(i, file) {\n if (file.type === \"module\") {\n the_files.push(file);\n };\n });\n return the_files;\n}", "function getFiles () {\n return ProjectManager.getAllFiles(filter());\n }", "function getBufferedFiles() {\n var the_files = [];\n $.each(project.files, function(i, file) {\n if (file.type === \"main\" ||\n file.type === \"secondary\" ||\n file.type === \"shader\" ||\n file.type === \"txt\" ||\n file.type === \"json\" || file.type === \"xml\") {\n the_files.push(file);\n };\n });\n return the_files;\n}", "getGroupedFilesWithFolders() {\n const { pluginFolderConfig } = this.config;\n\n return Object.entries(pluginFolderConfig).map(pair => {\n const key = pair[0];\n let folderName;\n let files = [];\n\n // key -> fileType or folder\n // value -> folder or array of filetypes\n if (key.startsWith('.')) {\n const fileType = key;\n folderName = pair[1];\n files = this.depGraph.getFilesByType(fileType);\n } else {\n folderName = key;\n const fileTypes = pair[1];\n\n fileTypes.forEach(fileType => {\n const filteredFiles = this.depGraph.getFilesByType(fileType);\n files.push(...filteredFiles);\n });\n }\n\n return {\n files,\n folder: sanitizeFolderName(folderName)\n };\n });\n }", "function getImageFiles() {\n var the_files = [];\n $.each(project.files, function(i, file) {\n if (file.type === \"image\") {\n the_files.push(file);\n };\n });\n return the_files;\n}", "function files_list(usage, gameid) {\n var ix;\n var ls = [];\n\n if (!Storage)\n return ls;\n\n var keyls = Storage.getKeys();\n for (ix=0; ix<keyls.length; ix++) {\n var key = keyls[ix];\n if (!key)\n continue;\n var dirent = file_decode_ref(key.toString());\n if (!dirent)\n continue;\n if (!file_ref_matches(dirent, usage, gameid))\n continue;\n var file = file_load_dirent(dirent);\n ls.push(file);\n }\n\n //GlkOte.log('### files_list found ' + ls.length + ' files.');\n return ls;\n}", "_getFiles() {\n return fs.readdirSync(this.arkFilesDir);\n }", "async allFiles() {\r\n let keys = await this.allKeys();\r\n return keys.filter(k => k.startsWith(\"file:\")).map(k => k.substring(5));\r\n }", "function getAudioFiles() {\n var the_files = [];\n $.each(project.files, function(i, file) {\n if (file.type === \"audio\") {\n the_files.push(file);\n };\n });\n return the_files;\n}", "function getManifestFiles(server_path,project_name)\n{\n files=readfilesinDirectory(server_path+\"\\\\\"+project_name)\n files=files.filter(files=>files.toLowerCase().includes(\"Manifest_\".toLowerCase()))\n //console.log(files)\n return files\n}", "getChapterFiles() {\n const files = this.fs\n .readdirSync(this.buildPath([SRC_FOLDER]), { withFileTypes: true })\n .filter(item => item.isFile() && item.name.split('.').pop() === FILE_EXTENSION);\n return files;\n }", "static _getFilesWithExt(dir, exts, recursive) {\n let foundFiles = [];\n\n const files = Fs.readdirSync(dir);\n files.forEach((f) => {\n let fullpath = Path.join(dir, f);\n let ext = Path.extname(f);\n if (exts.includes(ext)) foundFiles.push(fullpath);\n\n if (recursive) {\n let stats = Fs.lstatSync(fullpath);\n if (stats.isDirectory())\n foundFiles = foundFiles.concat(\n this._getFilesWithExt(fullpath, exts, recursive)\n );\n }\n });\n return foundFiles;\n }", "async getAllFiles() {\n try {\n // Directus SDK doesn't yet support fetching files via a\n // dedicated method yet but this works just as well\n const filesData = await this.client.get('files', { limit: '-1' });\n return filesData.data;\n } catch (e) {\n error('gatsby-source-directus: Error while fetching files: ', e);\n return [];\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Constructor for a tag
constructor({id, tagName}) { this.id = id; this.tagName = tagName; this.notes = []; console.log("Tag constructor"); }
[ "function Tag(text) {\n this.text = text;\n}", "constructor(tag) {\n this.tag = tag;\n this.children = [];\n this.getAttr();\n }", "constructor() {\n super();\n this.addClass('tag');\n this.editing = false;\n this.buildTag();\n }", "function Tag(name) {\n this._name = name;\n}", "function Tag(env) {\n if (!(this instanceof Tag)) {\n\treturn new Tag(env)\n }\n this.id = ++Tag.nextID\n this.env = env\n}", "function Tag(id) {\n\tthis.id = id;\n\tthis.name = _t('label.upper.tag');\n\tthis.dateCreated = '00/00/0000';\n}", "function HTMLTagObj(tag, required) {\n\tthis.tag = tag;\t\t\t// HTML tag\n\tthis.once = required;\t// whether tag is required exactly once\n\tthis.startCount = 0;\n\tthis.endCount = 0;\n}\t\t\t// HTMLTag()", "function TagClass(name, type, tagArray) {\n this.name = name;\n this.type = type || 'custom'; //custom, system, timer\n this.tagArray = tagArray || [];\n }", "constructor() { \n \n RepoTag.initialize(this);\n }", "construct(data) {\n\t\treturn new InheritTag(data);\n\t}", "constructor(img, tags) {\n this.img = img;\n this.tags = tags;\n }", "function Tag(name, attrs, childs)\n{\n this.setName(name == undefined | name == null? '' : name);\n this.setAttrs(attrs == undefined | attrs == null? new Map() : attrs);\n this.setChilds(childs == undefined | childs == null? [] : childs);\n}", "function ArticleTag(id, articleId, tagId) {\n this.id = id;\n this.articleId = articleId;\n this.tagId = tagId;\n}", "function Generic(tag, element) {\n if (!(this instanceof Generic)) {\n return new Generic(tag, element);\n }\n\n if (!(tag instanceof edn.Symbol)) {\n tag = edn.Symbol(tag);\n }\n\n // Public: Returns the Symbol tag\n this.tag = tag;\n\n // Public: Returns the element value\n this.element = element;\n\n Object.freeze(this);\n }", "static fromTrytes(tag) {\r\n if (!objectHelper_1.ObjectHelper.isType(tag, trytes_1.Trytes)) {\r\n throw new dataError_1.DataError(\"The tag should be a valid Trytes object\");\r\n }\r\n let trytesString = tag.toString();\r\n if (trytesString.length > Tag.LENGTH) {\r\n throw new dataError_1.DataError(`The tag should be at most ${Tag.LENGTH} characters in length`, { length: trytesString.length });\r\n }\r\n while (trytesString.length < Tag.LENGTH) {\r\n trytesString += \"9\";\r\n }\r\n return new Tag(trytesString);\r\n }", "function Tag(name, explain, html4, html5) {\n this.name = name;\n this.explain = explain != null ? explain : '';\n this.html4 = html4 != null ? html4 : 'true';\n this.html5 = html5 != null ? html5 : 'true';\n }", "buildTag() {\n let text = document.createElement('input');\n text.value = 'Add Tag';\n text.contentEditable = 'true';\n text.className = 'add-tag';\n text.style.width = '49px';\n this.input = text;\n let tag = document.createElement('div');\n tag.className = 'tag-holder';\n tag.appendChild(text);\n let iconContainer = addIcon.element({\n tag: 'span',\n elementPosition: 'center',\n height: '18px',\n width: '18px',\n marginLeft: '3px',\n marginRight: '-5px'\n });\n this.addClass('unapplied-tag');\n tag.appendChild(iconContainer);\n this.node.appendChild(tag);\n }", "constructor(useStarter=false) {\n super()\n this.useStarter = useStarter \n this.type = BlobParser.TAG\n }", "function TagChannel(src) {\r\n\t\tthis.init(src);\r\n\t}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Returns a randomized value between (1inputed size)amount, just like rolling a 6 sided die.
rollDice(amount, size){ let total = 0; for(let i = 0; i < amount; i++){ total += Math.ceil(Math.random()*size); } return total; }
[ "rolld(dieSize) {\n return Math.floor(Math.random() * dieSize);\n }", "function random(size){\n return Math.floor(Math.random()*100) % (Math.pow(Number(size),2));\n}", "function getRandSize() {\r\n return Math.random()*50+50;\r\n }", "function rollD6(){\r\n return getRandomInteger(1, 6);\r\n}", "rollValue() {\n return Math.floor(Math.random() * this.sides) + 1; \n }", "function generateRandomNumber(diameter) {\n return Math.random() * diameter;\n}", "rollArtifactDie() {\n\t\tif (this.artifactDie.size) {\n\t\t\tif (this.artifactDie.result < 6) {\n\t\t\t\tthis.artifactDie.result = rand(1, this.artifactDie.size);\n\t\t\t}\n\t\t}\n\t}", "function myDice () {\n console.log(Math.floor(Math.random()*6)+1);\n}", "function randomising() {\n return Math.floor(Math.random() * side)\n}", "function generateDiceRoll(){\r\n return Math.floor(Math.random()*10);\r\n}", "function randomSize() {\n return Math.floor(Math.random() * 4 + 2);\n}", "function getRandomdamage() {\n return Math.floor(Math.random() * (10 - 1 + 1) + 1);\n}", "roll(die) {\n\n let value = Math.floor((Math.random() * 6) + 1);\n die.innerHTML = value;\n\n }", "function rollD(sides) {\n return Math.round(Math.random() * (sides-1)) + 1;\n}", "function _roll(diceSize) {\n\tif (diceSize > 0) {\n\t\tdiceSize = Math.floor(diceSize);\n\t\treturn Math.floor(Math.random() * diceSize) + 1; \n\t} else {\n\t\treturn 0;\n\t}\n}", "rollFakeDie(numberOfSides) {\n const ceil = numberOfSides - 1,\n floor = 1;\n\n return Math.floor(Math.random() * (ceil - floor + 1)) + floor;\n }", "function random(x, y, size){\n return (Math.floor(Math.random() * y) + x)\n }", "function rollD8(){\r\n return getRandomInteger(1, 8);\r\n}", "function rollDie(){\n return Math.floor(Math.random() * 6) + 1;\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
reset slider value based on scroll content position
function resetValue(){ var remainder = scrollPane.width() - scrollContent.width(); var leftVal = scrollContent.css('margin-left') == 'auto' ? 0 : parseInt(scrollContent.css('margin-left')); var percentage = Math.round(leftVal / remainder * 100); scrollbar.slider("value", percentage); }
[ "function resetValue() {\n\t\t\t\t\tlet remainder = $scrollPane.width() - $scrollContent.width();\n\t\t\t\t\tlet leftVal = $scrollContent.css('margin-left')==='auto' ? 0 : parseInt($scrollContent.css('margin-left'));\n\t\t\t\t\tlet percentage = Math.round(leftVal / remainder * 100);\n\t\t\t\t\t$scrollbar.slider(\"value\", percentage);\n\t\t\t\t}", "function resetValue() {\n var remainder = $scrollPane.width() - $scrollContent.width();\n var leftVal = $scrollContent.css(\"margin-left\") === \"auto\" ? 0 : parseInt($scrollContent.css(\"margin-left\"));\n var percentage = Math.round(leftVal / remainder * 100);\n $scrollbar.slider(\"value\", percentage);\n }", "function resetValue_v() {\n\n var remainder = scrollPane.height() - scrollContent.height();\n var topVal = scrollContent.css(\"margin-top\") === \"auto\" ? 0 :\n parseInt(scrollContent.css(\"margin-top\"));\n\n var percentage = Math.round(topVal / remainder * 100);\n scrollbar.slider(\"value\", 100 - percentage);\n }", "function resetValue(){\n\t\tvar remainder = scrollPane.width() - scrollContent.width();\n\t\tvar leftVal = scrollContent.css('margin-left') === 'auto' ? 0 : parseInt(scrollContent.css('margin-left'));\n\t\tvar percentage = Math.round(leftVal / remainder * 100);\n\t\tscrollbar.slider('value', percentage);\n\t}", "function resetValue() {\n var remainder = scrollPane.width() - scrollContent.width();\n\n var leftVal = scrollContent.css(\"left\") === \"auto\" ? 0 :\n parseInt(scrollContent.css(\"left\"));\n\n var percentage = Math.round(leftVal / remainder * 100);\n\n scrollBarElement.slider(\"value\", percentage);\n }", "function resetValue() {\n var remainder = scrollPane.width() - scrollContent.width();\n var leftVal = scrollContent.css(\"margin-left\" ) === \"auto\" ? 0 : parseInt(scrollContent.css(\"margin-left\"));\n var percentage = Math.round(leftVal / remainder * 100);\n scrollbar.slider(\"value\", percentage);\n }", "function resetValue() {\n var remainder = scrollPane.width() - scrollContent.width();\n var leftVal = scrollContent.css( \"margin-left\" ) === \"auto\" ? 0 :\n parseInt( scrollContent.css( \"margin-left\" ) );\n var percentage = Math.round( leftVal / remainder * 100 );\n scrollbar.slider( \"value\", percentage );\n }", "function resetValue(scrollPane, scrollContent, scrollbar) {\n\tvar remainder = scrollPane.width() - scrollContent.width();\n\tvar leftVal = scrollContent.css( \"margin-left\" ) === \"auto\" ? 0 :\n\tparseInt( scrollContent.css( \"margin-left\" ) );\n\tvar percentage = Math.round( leftVal / remainder * 100 );\n\tscrollbar.slider( \"value\", percentage );\n}", "function resetSliderValue() {\r\n\t\t\t\tself.slider.slider(\"value\", resetValue);\r\n\t\t\t}", "function reset_slider(){\r\n \tslider.value = 0;\r\n }", "function resetSlider() {\r\n slider.value = 0;\r\n}", "function reset_slider() {\n slider.value = 0;\n}", "_updateSliderPosition() {\n // 100 * ( slide position ) / ( number of elements in slider )\n const position = 100 * (this.currentSlide + this.numberOfVisibleSlides - 1) / (this.slides.length);\n this.slider.style.transform = `translate3d(-${position}%,0,0)`;\n this._updateTabindex();\n }", "_update_slider () {\n let x = this.clock / TIMER_MAX_DURATION;\n let y = (Math.log(x * (Math.pow(2, 10) - 1) +1)) / Math.log(2) / 10;\n\n this.slider.value = y;\n if (this.fullscreen.is_open) this.fullscreen.slider.value = y;\n }", "resetSlider() {\n this.currentIndex = 0;\n this.slidesFrame.style.transform = 'translateX(0)';\n }", "resetScroll() {}", "resetSliders(){\n\t\tlet sliders = this.Sliders\n\t\tsliders[0].value(0.8);\n\t\tsliders[1].value(0.8);\n\t\tsliders[2].value(1);\n\t\tsliders[3].value(1);\n\t\tsliders[4].value(0);\n\t}", "function resetScroll() {\n // Set the element to it original positioning.\n target.trigger('preUnfixed.ScrollToFixed');\n setUnfixed();\n target.trigger('unfixed.ScrollToFixed');\n\n // Reset the last offset used to determine if the page has moved\n // horizontally.\n lastOffsetLeft = -1;\n\n // Capture the offset top of the target element.\n offsetTop = target.offset().top;\n\n // Capture the offset left of the target element.\n offsetLeft = target.offset().left;\n \n // If the offsets option is on, alter the left offset.\n if (base.options.offsets) {\n offsetLeft += (target.offset().left - target.position().left);\n }\n \n if (originalOffsetLeft == -1) {\n originalOffsetLeft = offsetLeft;\n }\n\n position = target.css('position');\n\n // Set that this has been called at least once.\n isReset = true;\n \n if (base.options.bottom != -1) {\n target.trigger('preFixed.ScrollToFixed');\n setFixed();\n target.trigger('fixed.ScrollToFixed');\n }\n }", "function resetScroll() {\r\n // Set the element to it original positioning.\r\n target.trigger('preUnfixed.ScrollToFixed');\r\n setUnfixed();\r\n target.trigger('unfixed.ScrollToFixed');\r\n\r\n // Reset the last offset used to determine if the page has moved\r\n // horizontally.\r\n lastOffsetLeft = -1;\r\n\r\n // Capture the offset top of the target element.\r\n offsetTop = target.offset().top;\r\n\r\n // Capture the offset left of the target element.\r\n offsetLeft = target.offset().left;\r\n\r\n // If the offsets option is on, alter the left offset.\r\n if (base.options.offsets) {\r\n offsetLeft += (target.offset().left - target.position().left);\r\n }\r\n\r\n if (originalOffsetLeft == -1) {\r\n originalOffsetLeft = offsetLeft;\r\n }\r\n\r\n position = target.css('position');\r\n\r\n // Set that this has been called at least once.\r\n isReset = true;\r\n\r\n if (base.options.bottom != -1) {\r\n target.trigger('preFixed.ScrollToFixed');\r\n setFixed();\r\n target.trigger('fixed.ScrollToFixed');\r\n }\r\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Function to enforce a minimum column size.
function columnResizingHandler(e, args) { if (args.newWidth <= 75) { e.preventDefault(); alert("Column size is too small."); } }
[ "function minColLength(args) {\n\tlet result = Infinity;\n\tfor (arg of args) {\n\t\tif (arg[0] == \"C\" && Columns[arg[1]].length < result) {\n\t\t\tresult = Columns[arg[1]].length;\n\t\t}\n\t}\n\treturn result;\n}", "function constrainWidth(col, width){\n var newWidth = width;\n\n // If the new width would be less than the column's allowably minimum width, don't allow it\n if (col.colDef.minWidth && newWidth < col.colDef.minWidth) {\n newWidth = col.colDef.minWidth;\n }\n else if (col.colDef.maxWidth && newWidth > col.colDef.maxWidth) {\n newWidth = col.colDef.maxWidth;\n }\n \n return newWidth;\n }", "function constrainWidth(col, width) {\n var newWidth = width;\n\n // If the new width would be less than the column's allowably minimum width, don't allow it\n if (col.minWidth && newWidth < col.minWidth) {\n newWidth = col.minWidth;\n }\n else if (col.maxWidth && newWidth > col.maxWidth) {\n newWidth = col.maxWidth;\n }\n\n return newWidth;\n }", "get minColWidth() {\n return this._getOption('minColWidth');\n }", "_applyMinWidth(value) {\n let list = this.getList();\n if (list)\n list\n .getPane()\n .getColumnConfig()\n .setItemMinSize(this.getColumnIndex(), value);\n }", "function setMinColWidths(oTable) {\n\t\t\tvar oTableRef = oTable.getDomRef();\n\t\t\tvar iAbsoluteMinWidth = TableUtils.Column.getMinColumnWidth();\n\t\t\tvar aNotFixedVariableColumns = [];\n\t\t\tvar bColumnHeaderVisible = oTable.getColumnHeaderVisible();\n\n\t\t\tfunction calcNewWidth(iDomWidth, iMinWidth) {\n\t\t\t\tif (iDomWidth <= iMinWidth) {\n\t\t\t\t\t// tolerance of -5px to make the resizing smooother\n\t\t\t\t\treturn Math.max(iDomWidth, iMinWidth - 5, iAbsoluteMinWidth) + \"px\";\n\t\t\t\t}\n\t\t\t\treturn -1;\n\t\t\t}\n\n\t\t\tfunction isFixNeeded(col) {\n\t\t\t\tvar minWidth = Math.max(col._minWidth || 0, iAbsoluteMinWidth, col.getMinWidth());\n\t\t\t\tvar colWidth = col.getWidth();\n\t\t\t\tvar aColHeaders;\n\t\t\t\tvar colHeader;\n\t\t\t\tvar domWidth;\n\t\t\t\t// if a column has variable width, check if its current width of the\n\t\t\t\t// first corresponding <th> element in less than minimum and store it;\n\t\t\t\t// do not change freezed columns\n\t\t\t\tif (TableUtils.isVariableWidth(colWidth) && !TableUtils.isFixedColumn(oTable, col.getIndex())) {\n\t\t\t\t\taColHeaders = oTableRef.querySelectorAll('th[data-sap-ui-colid=\"' + col.getId() + '\"]');\n\t\t\t\t\tcolHeader = aColHeaders[bColumnHeaderVisible ? 0 : 1]; // if column headers have display:none, use data table\n\t\t\t\t\tdomWidth = colHeader ? colHeader.offsetWidth : null;\n\t\t\t\t\tif (domWidth !== null) {\n\t\t\t\t\t\tif (domWidth <= minWidth) {\n\t\t\t\t\t\t\treturn {headers: aColHeaders, newWidth: calcNewWidth(domWidth, minWidth)};\n\t\t\t\t\t\t} else if (colHeader && colHeader.style.width != colWidth) {\n\t\t\t\t\t\t\taNotFixedVariableColumns.push({col: col, header: colHeader, minWidth: minWidth, headers: aColHeaders});\n\t\t\t\t\t\t\t// reset the minimum style width that was set previously\n\t\t\t\t\t\t\treturn {headers: aColHeaders, newWidth: colWidth};\n\t\t\t\t\t\t}\n\t\t\t\t\t\taNotFixedVariableColumns.push({col: col, header: colHeader, minWidth: minWidth, headers: aColHeaders});\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\treturn null;\n\t\t\t}\n\n\t\t\tfunction adaptColWidth(oColInfo) {\n\t\t\t\tif (oColInfo) {\n\t\t\t\t\tArray.prototype.forEach.call(oColInfo.headers, function(header) {\n\t\t\t\t\t\theader.style.width = oColInfo.newWidth;\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t// adjust widths of all found column headers\n\t\t\toTable._getVisibleColumns().map(isFixNeeded).forEach(adaptColWidth);\n\n\t\t\t//Check the rest of the flexible non-adapted columns\n\t\t\t//Due to adaptations they could be smaller now.\n\t\t\tif (aNotFixedVariableColumns.length) {\n\t\t\t\tvar iDomWidth;\n\t\t\t\tfor (var i = 0; i < aNotFixedVariableColumns.length; i++) {\n\t\t\t\t\tiDomWidth = aNotFixedVariableColumns[i].header && aNotFixedVariableColumns[i].header.offsetWidth;\n\t\t\t\t\taNotFixedVariableColumns[i].newWidth = calcNewWidth(iDomWidth, aNotFixedVariableColumns[i].minWidth);\n\t\t\t\t\tif (parseInt(aNotFixedVariableColumns[i].newWidth) >= 0) {\n\t\t\t\t\t\tadaptColWidth(aNotFixedVariableColumns[i]);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}", "function validateLengths(dSet, fix) {\n var equalLengths, maxLength;\n\n fix = fix === true; // default it to false\n equalLengths = true;\n maxLength = dSet.reduce(function(acc, val) {\n var length;\n\n length = val.length();\n if (acc === null) { return length; }\n if (acc === length) { return acc; }\n if (!fix) {\n throw new Error('Dataset columns have unequal length.');\n }\n equalLengths = false;\n\n return acc < length ? length : acc;\n }, null);\n\n if (!equalLengths && fix) {\n dSet.eachCol(function(col) {\n if (col.length() < maxLength) { col.resize(maxLength); }\n });\n }\n\n return dSet;\n }", "calculateInputColumnsSize() {\n var sizeArray = this;\n sizeArray.rowFreeSpace = samilEnums.BOOTSTRAP.ROW_MAX_SIZE - sizeArray.rowPlaceOccupied;\n sizeArray.rowFreeSpace -= sizeArray.checkboxesColumns * sizeArray.checkboxSize;\n\n this.sizes.forEach(column => {\n if (column.hasField) {\n var columnPercentOfFreeSpace = column.expand / sizeArray.expandsSum;\n\n if (column.hasOnlyCheckboxes) {\n column.inputColumnsSize = sizeArray.checkboxSize;\n } else {\n column.inputColumnsSize = Math.floor(columnPercentOfFreeSpace * sizeArray.rowFreeSpace);\n }\n\n //prevent to not have inputColumnsSize = 0\n if (columnPercentOfFreeSpace * sizeArray.rowFreeSpace > 0 && column.inputColumnsSize === 0) {\n column.inputColumnsSize = 1;\n }\n\n if (column.inputColumnsSize < column.inputSizeFromCharsAttr) {\n sizeArray.rowFreeSpace -= column.inputSizeFromCharsAttr - column.inputColumnsSize;\n }\n }\n });\n }", "function limitColWidth(width) {\n return utils.limit(width, minColWidth, maxColWidth)\n }", "function _minWidth (col) {\n var padding = col.padding || []\n var minWidth = 1 + (padding[left] || 0) + (padding[right] || 0)\n if (col.border) minWidth += 4\n return minWidth\n}", "setColumnWidth(column, newWidth) {\n let minWidth = get(column, 'minWidth') || 0;\n set(column, 'width', Math.max(newWidth, minWidth));\n }", "isValidColCount (colCount) {\n return colCount <= 12;\n }", "function _minWidth (col) {\n var padding = col.padding || []\n \n return 1 + (padding[left] || 0) + (padding[right] || 0)\n }", "function validate_size() {\n var size = utf8sizeof(this.value);\n var min = Number.parseInt(this.dataset.min);\n var max = Number.parseInt(this.dataset.max);\n if(size < min)\n\tthis.setCustomValidity(\n\t printf(_('%1 should be at least %2 bytes.'), this.placeholder, min)\n\t);\n else if(size > max)\n\tthis.setCustomValidity(\n\t printf(_('%1 should be at most %2 bytes.'), this.placeholder, max)\n\t);\n else\n\tthis.setCustomValidity('');\n show_validation_message.call(this);\n}", "function mgrCheckColBounds(col_num)\n{\n if (col_num < min_col_gbl)\n {\n col_num = min_col_gbl;\n }\n else if (col_num > max_col_gbl)\n {\n col_num = max_col_gbl;\n }\n \n return col_num;\n}", "function _minWidth (col) {\n var padding = col.padding || []\n\n return 1 + (padding[left] || 0) + (padding[right] || 0)\n}", "set columnWidth(value) {\n if (value < 0) {\n throw Error('Invalid value for column width!');\n }\n this._columnWidth = value;\n }", "tryToExpandColumnsToMaxRowSize(containerElements) {\n var checkSizesSum = 0;\n\n this.sizes.forEach(column => {\n checkSizesSum += column.size;\n });\n\n if (checkSizesSum < samilEnums.BOOTSTRAP.ROW_MAX_SIZE) {\n var diff = samilEnums.BOOTSTRAP.ROW_MAX_SIZE - checkSizesSum;\n var belowPreferredSizesColumnsToExpand = [];\n var columnsToExpand = [];\n var expandSum = 0;\n\n //expand column sizes for the blow preferred width columns\n this.sizes.forEach(column => {\n if (!column.columnNoExpand && !column.hasOnlyCheckboxes && column.hasField) {\n columnsToExpand.push(column);\n } else if (column.columnNoExpand && !column.hasOnlyCheckboxes && column.hasField) {\n var elementsFromColumn = this.layoutManager.getElementsFromColumn(containerElements, column.columnNumber);\n var biggestPreferredInputSize = 0;\n\n elementsFromColumn.forEach((partOfElement, element) => {\n if (element.guiModel.preferedWidth > column.size && !element.isContainer && !element.isRow) {\n if (biggestPreferredInputSize < element.guiModel.preferedWidth) {\n biggestPreferredInputSize = element.guiModel.preferedWidth;\n }\n }\n });\n\n column.biggestPreferredInputSize = biggestPreferredInputSize;\n if (biggestPreferredInputSize > 0) belowPreferredSizesColumnsToExpand.push(column);\n }\n });\n\n var freeSpaceLeft = this.expandColumnsToPreferredWidth(belowPreferredSizesColumnsToExpand, diff);\n\n if (freeSpaceLeft > 0) {\n columnsToExpand.forEach(column => {\n if (column.expand === undefined) column.expand = 1;\n expandSum += column.expand;\n });\n\n var oneUnitDiff;\n if (expandSum > 0) {\n oneUnitDiff = Math.floor(diff / expandSum);\n } else {\n oneUnitDiff = Math.floor(diff);\n }\n\n columnsToExpand.forEach(column => {\n column.size += column.expand * oneUnitDiff;\n });\n } else {\n console.warn('over 100 %....');\n }\n }\n }", "_freezeColumnWidth() {\n this._forEachRowCell(this._containerHead, 0, (cell, columnIndex) => {\n const width = cell.width; // get current numeric width\n cell.width = width; // set width to style.width\n this._columns[columnIndex].width = cell.width; // fetch real width again and store it\n });\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Apply a css class that zooms the current image
zoomInImg(element) { this.swapClasses(element, FIT_IMG_CLASS, FULL_IMG_CLASS); }
[ "zoomIn() {\n this.__img.zoomIn();\n }", "function setZoomIcon()\n{\n\tif($(\"#zoomImage\").parent().hasClass('zoomout'))\n \t{\n \t$(\".featuredimagezoomerhidden\").remove();\n \t$('.zoomtracker').remove();\n \t$(\"#zoomImage\").parent().attr('class','zoom');\t\n \t}\t\n}", "function image_zoom_init() {\n\n}", "function zoomimg_in() {\n\n imageheight *= 1.1\n imagewidth *= 1.1\n\n}", "function activate_image_zoom() {\n // Skip IE support\n if (typeof NodeList.prototype.forEach !== 'function' || typeof Object.assign !== 'function') {\n return;\n }\n\n document.querySelectorAll('article.post figure img').forEach(function ($img) {\n $img.classList.add('can-zoom');\n\n $img.addEventListener('click', function () {\n const rect = $img.getBoundingClientRect();\n const $base = document.createElement('div');\n const $container = $base.appendChild(document.createElement('div'));\n const $_img = $container.appendChild($img.cloneNode(true));\n\n $base.classList.add('image-zoom-base');\n\n Object.assign($container.style, {\n top: rect.top + 'px',\n left: rect.left + 'px',\n width: rect.width + 'px',\n height: rect.height + 'px',\n });\n\n function onclick() {\n close();\n }\n\n function onkeydown(event) {\n if (event.key === 'Escape') {\n close();\n }\n }\n\n function close() {\n document.removeEventListener('keydown', onkeydown);\n $base.removeEventListener('click', onclick);\n $base.classList.remove('active');\n\n window.setTimeout(function () {\n document.body.removeChild($base);\n document.body.classList.remove('overlay-visible');\n }, 600);\n }\n\n document.addEventListener('keydown', onkeydown);\n $base.addEventListener('click', onclick);\n\n document.body.appendChild($base);\n document.body.classList.add('overlay-visible');\n\n window.setTimeout(function () {\n $base.classList.add('active');\n }, 100);\n });\n });\n }", "zoomIn () {}", "function addZoom() {\n $(\".preview img\").click(function(e) {\n zoom($(this), e);\n });\n}", "function Zoomable() {\n}", "updatePanZoom_() {\n setStyles(this.image_, {\n transform:\n st.translate(this.posX_, this.posY_) + ' ' + st.scale(this.scale_),\n });\n if (this.scale_ != 1) {\n this.lightbox_.toggleViewMode(true);\n }\n }", "function zoom(event) {\n event.preventDefault();\n \n scale += event.deltaY * -0.01;\n \n // Restrict scale\n scale = Math.min(Math.max(.5, scale), 4);\n \n // Apply scale transform\n busImage.style.transform = `scale(${scale})`;\n }", "function initImageZoom() {\n\n \t//reset the zoom\n \tpublicAPI.resetZoom();\n\n \tvar\t$parentWidth = $parent.width();\n\n\n \tif($parentWidth) {\n\n\t\t\tvar $imageWidth = $image[0].naturalWidth,\n \t\t$imageHeight = $image[0].naturalHeight,\n\n \t\tnewHeight = Math.round($parentWidth * $imageHeight / $imageWidth);\n\n \t\t$parent.css(\"height\", newHeight);\n \t\t$image\n \t\t\t.css(\"height\", newHeight)\n \t\t\t.css('width', $parentWidth);\n \t}\n \t\n }", "function zoomin() {\n var scaleFactor = 1.2;\n rescale(scaleFactor);\n }", "function updateViewZoom(useCurrent) {\n m_interactorStyle.zoom(m_options, useCurrent);\n }", "function productImageZoom() {\n var elevateZoom = function(element) {\n element.elevateZoom({\n zoomType : \"lens\",\n lensShape : \"square\",\n lensSize : 300,\n borderSize: 0,\n lensBorder: 1,\n containLensZoom: true,\n constrainType: \"width\",\n constrainSize: 300,\n onZoomedImageLoaded: function() {\n var width = $('.images').width();\n $('.zoomContainer').css('width', width);\n }\n });\n }\n elevateZoom($('.product-single .images #ProductPhotoImg'));\n}", "_postZoom() {\n\t\tvar zc = this._zoom / 100;\n\n\t\tthis._curWidth = Math.round(this._img.width * zc);\n\t\tthis._curHeight = Math.round(this._img.height * zc);\n\n\t\tif (this._zoom < 100) {\n\t\t\t// function for zoom and mouse move\n\t\t\tthis._zoomMoveStep = Math.max(((100 - this._zoom) / 10 * this._opts.zoomMoveStep) / 2, 1);\n\t\t}\n\t}", "function zoomClassName() {\n if (pageZoom < 0) {\n return \"zoom-out-\" + (pageZoom * -1);\n } else if (pageZoom > 0) {\n return \"zoom-in-\" + pageZoom;\n } else {\n return \"\";\n }\n}", "function CharbaJsZoomHelper() {}", "zoomOut() {\n this.__img.zoomOut();\n }", "function showZoomIcon() {\n if (isTouch || isMobile) {\n $('.product-gallery-fancy', $galleryPreviewFancy).addClass('show');\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
run a benchmark in: bench = benchmark to use loops = number of loops n = maximum number (used in some benchmarks to define size of workload) out: x = result
function runBench(bench, loops, n, check) { var fnBench = gState.benchList[bench], x; x = 0; while (loops-- > 0 && x === 0) { x = fnBench(n, gState); x -= check; } x += check; if (x !== check) { gState.fnLog("Error(bench" + bench + "): x=" + x); x = -1; } return x; }
[ "function time(benchmark) {\n var elapsed = 0;\n var start = new Date();\n for (var n = 0; elapsed < 2000; n++) {\n benchmark.run();\n elapsed = new Date() - start;\n }\n var usec = (elapsed * 1000) / n;\n allResults.push(usec);\n print('Time (' + benchmark.string + '): ' + Math.floor(usec) + ' us.');\n}", "function runBenchSuite(num) {\n console.log('NEW BENCHMARKING SUITE - list length:', num)\n\n suite.add('Bubble Sort Test', function () {\n bubbleSort(generateLongList(num));\n })\n .add('Selection Sort Test', function () {\n selectionSort(generateLongList(num));\n })\n .add('Insertion Sort Test', function () {\n insertionSort(generateLongList(num));\n })\n .add('Merge Sort Test', function () {\n mergeSort(generateLongList(num));\n })\n .add('Quick Sort Test', function () {\n quickSort(generateLongList(num));\n })\n // add listeners\n .on('cycle', function (event) {\n console.log(String(event.target));\n })\n .on('complete', function () {\n console.log('Fastest is ' + this.filter('fastest').map('name'));\n })\n // run async\n .run({ 'async': false });\n}", "function bench02(n) {\n\tvar x = 0,\n\t\tsum = 0.0,\n\t\ti;\n\n\tfor (i = 1; i <= n; i++) {\n\t\tsum += i;\n\t\tif (sum >= n) {\n\t\t\tsum -= n;\n\t\t\tx++;\n\t\t}\n\t}\n\treturn x;\n}", "function bench01(n) {\n\tvar x = 0,\n\t\tsum = 0,\n\t\ti;\n\n\tfor (i = 1; i <= n; i++) {\n\t\tsum += i;\n\t\tif (sum >= n) {\n\t\t\tsum -= n;\n\t\t\tx++;\n\t\t}\n\t}\n\treturn x;\n}", "bench(name, display) {\n let time = new Date().getTime() - this._time;\n\n this._benchmarks[time + 'ms'] = name;\n\n display && this.log('Bench: ', this._benchmarks);\n }", "function suite(options, name, benchmarkList) {\n\tvar benchmarks = _elm_lang$core$Native_List.toArray(benchmarkList),\n\t suite = new Benchmark.Suite(name),\n\t i, curr;\n\n\tfor (i = 0; i < benchmarks.length; i++) {\n\t curr = benchmarks[i];\n suite = suite.add(curr.name, { fn: curr.fn, maxTime: options.maxTime });\n\t}\n\n\treturn suite;\n }", "function benchmark(name, options) {\n var benchmarkObject = new Benchmark(\n name, \n options.fn,\n {\n \"setup\" : options.setup,\n \"onStart\" :function() { console.log(\"begin benchmark \" + name) },\n \"onComplete\": function(event) { console.log(String(event.target)) },\n \"maxTime\" : options.maxTime || 0.5,\n }\n )\n\n benchmarkObject.run()\n}", "static async RunBenchmarks(runner) {\n Benchmark.scores = [];\n\n for (let suite of Benchmark.suites) {\n const result = await Benchmark.RunIterations(runner, suite);\n checkTuning(suite, result);\n suite.NotifyResult(result);\n }\n\n // We've completed all of the steps, so update the progress bar and\n // sleep briefly to let the UI update.\n Benchmark.recycleIframe({create: false});\n if (runner.NotifyStart) runner.NotifyStart('Wrapping up');\n await sleep(100);\n\n // show final result\n if (runner.NotifyScore) {\n const score = Benchmark.GeometricMean(Benchmark.scores);\n const formatted = Benchmark.FormatScore(score);\n runner.NotifyScore(formatted);\n }\n }", "function MemoryBenchmark(imp, nb_iteri, myFunction){\nvar MyStartMemory = IJ.currentMemory();\nprint (\"start memory: \" + MyStartMemory);\nfor (i=0; i<nb_iter; i++){\n\tif (myFunction==1){\n\t\tMyFunction1(imp);\n\t}\n\tif (myFunction==2){\n\t\tMyFunction2(imp);\n\t}\n\tvar MyUsedMemory = IJ.currentMemory();\n\tprint (MyUsedMemory);\n\t}\nvar MyEndUsedMemory = IJ.currentMemory();\nvar MyFinalUsedMemory = MyEndUsedMemory - MyStartMemory;\nprint (\"memory used by the loop of \"+ nb_iter+\" : \" + MyFinalUsedMemory);\n}", "function getBenchmarkOne(num){\n\tvar q;\n\tswitch(num+1){\n\t\tcase 1:\n\t\t\tq = [\"When a member makes a main motion...\", \"He is proposing that the meeting end.\", \"He is trying to convey an opinion.\", \"He is making a proposal to take action.\", \"He is trying to deal with another issue.\", 3];\n\t\t\tbreak;\n\t\tcase 2:\n\t\t\tq = [\"After a motion has been made, another member must...\", \"Restate the motion.\", \"Second it.\", \"Ask the chair to consider it.\", \"Propose changes.\", 2];\n\t\t\tbreak;\n\t\tcase 3:\n\t\t\tq = [\"The chair takes what action to place a motion before the assembly?\", \"States the question.\", \"Puts the question.\", \"Asks for a second.\", \"Asks for secondary motions.\", 1];\n\t\t\tbreak;\n\t\tcase 4:\n\t\t\tq = [\"Who has the preference to speak first in debate if they wish?\", \"Nobody.\", \"The maker of the motion.\", \"The seconder of the motion.\", \"A member known to be in favor of the motion.\", 2];\n\t\t\tbreak;\n\t\tcase 5:\n\t\t\tq = [\"To speak in debate or make a motion, you should...\", \"Address the chair.\", \"Raise a hand and address the chair.\", \"Rise and address the chair.\", \"Declare the motion or stance while rising.\", 3];\n\t\t\tbreak;\n\t\tcase 6:\n\t\t\tq = [\"Once there is no more debate on a motion, the chair...\", \"Entertains a motion to adjourn.\", \"Puts the question to a vote.\", \"Asks for any changes to the motion.\", \"Declares whether the motion is lost or adopted.\", 2];\n\t\t\tbreak;\n\t\tcase 7:\n\t\t\tq = [\"In an organization of 334 people, with 124 present at a meeting and 120 recorded as voting members on the rolls, what is the minimum vote required for a main motion to be adopted?\", \"60\", \"61\", \"63\", \"167\", 2];\n\t\t\tbreak;\n\t\tcase 8:\n\t\t\tq = [\"The first item in the order of business is...\", \"The call to order\", \"The reading of the minutes\", \"New Business\", \"Adjournment\", 2];\n\t\t\tbreak;\n\t\tcase 9:\n\t\t\tq = [\"The highest ranking motion is...\", \"The main motion\", \"Postpone indefinitely\", \"Adjourn\", \"Fix the time to adjourn\", 4];\n\t\t\tbreak;\n\t\tcase 10:\n\t\t\tq = [\"The lowest ranking motion is...\", \"The main motion\", \"Postpone indefinitely\", \"Adjourn\", \"Fix the time to adjourn\", 1];\n\t\t\tbreak;\n\t\tcase 11:\n\t\t\tq = [\"While nothing else is pending, a member may make...\", \"An original main motion\", \"A motion to commit\", \"A motion to postpone indefinitely\", \"A motion to limit debate\", 1];\n\t\t\tbreak;\n\t\tcase 12:\n\t\t\tq = [\"To end debate and vote immediately, a member should move...\", \"To postpone indefinitely\", \"To commit\", \"To limit debate\", \"The previous question\", 4];\n\t\t\tbreak;\n\t\tcase 13:\n\t\t\tq = [\"The motion to adjourn...\", \"Is the lowest ranking motion\", \"Is always an incidental main motion\", \"Does not require a second\", \"Is in order when a motion to recess is pending\", 4];\n\t\t\tbreak;\n\t\tcase 14:\n\t\t\tq = [\"Lay on the table requires what vote?\", \"Chair rules\", \"Majority\", \"Two-thirds\", \"Unanimous consent\", 2];\n\t\t\tbreak;\n\t\tcase 15:\n\t\t\tq = [\"Postpone definitely requires what vote?\", \"Chair rules\", \"Majority\", \"Two-thirds\", \"Unanimous consent\", 2];\n\t\t\tbreak;\n\t\tcase 16:\n\t\t\tq = [\"Limit debate requires what vote?\", \"Chair rules\", \"Majority\", \"Two-thirds\", \"Unanimous consent\", 3];\n\t\t\tbreak;\n\t\tcase 17:\n\t\t\tq = [\"A point of order requires what vote?\", \"Chair rules\", \"Majority\", \"Two-thirds\", \"Unanimous consent\", 1];\n\t\t\tbreak;\n\t\tcase 18:\n\t\t\tq = [\"Adjournment requires what vote?\", \"Chair rules\", \"Majority\", \"Two-thirds\", \"Unanimous consent\", 2];\n\t\t\tbreak;\n\t\tcase 19:\n\t\t\tq = [\"The quorum is...\", \"A majority of the membership\", \"The members at a meeting\", \"The membership at a meeting able to vote\", \"The minimum members required for a meeting\", 4];\n\t\t\tbreak;\n\t\tcase 20:\n\t\t\tq = [\"If you wished to change the wording of an amendment...\", \"You cannot\", \"You must ask the maker of the amendment for permission\", \"You must wait until the amendment passes then amend the main motion\", \"You may make an amendment to the amendment\", 4];\n\t\t\tbreak;\n\t\tdefault:\n\t\t\tq = [\"Error\", \"\", \"\", \"\", \"\", 1];\n\t\t\tbreak;\n\t}\n\treturn q;\n}", "function runBenchmark(benchmark, environments) {\n const modules = environments.map(({distPath}) =>\n require(path.join(distPath, benchmark)),\n );\n const suite = new Suite(modules[0].name, {\n onStart(event) {\n console.log('⏱️ ' + event.currentTarget.name);\n beautifyBenchmark.reset();\n },\n onCycle(event) {\n beautifyBenchmark.add(event.target);\n },\n onError(event) {\n console.error(event.target.error);\n },\n onComplete() {\n beautifyBenchmark.log();\n },\n });\n for (let i = 0; i < environments.length; i++) {\n suite.add(environments[i].revision, modules[i].measure);\n }\n suite.run({ async: false });\n}", "function BenchmarkResult(benchmark, time, latency) {\n JSProf.LPD(652, this, 'benchmark').benchmark = JSProf.LRSP(652, JSProf.LRE(651, benchmark));\n JSProf.LPD(654, this, 'time').time = JSProf.LRSP(654, JSProf.LRE(653, time));\n JSProf.LPD(656, this, 'latency').latency = JSProf.LRSP(656, JSProf.LRE(655, latency));\n}", "function bench(name, fn) {\n\treturn {\n\t name: name,\n\t fn: fn\n\t}\n }", "benchmarkRuns() {\n return parseInt(this.benchmark_options.runs_per_trial);\n }", "function benchmarkFunctions() {\n const functions = [powByCycle, powByRecursion];\n\n const testData = [\n [100, 1000],\n [2000, 200],\n [2412, 3417],\n [3737, 25253],\n ];\n\n const rndIndex = Math.floor(Math.random() * testData.length);\n const rndArgs = testData[rndIndex];\n\n for (let fn of functions) {\n const passedTime = benchmarkFunction(fn, rndArgs);\n\n console.log(`Benchmark: ${fn.name} took ${passedTime} ms`);\n }\n}", "function benchmark(name, fn) {\n var bench = new benchmark_1.default(name, fn);\n try {\n fn();\n bench\n .on('complete', function (event) {\n console.log(String(event.target));\n })\n .run();\n }\n catch (e) {\n console.log(name + \" threw an error: \" + e);\n }\n}", "run() {\n // Load benchmark results per scale.\n let benchmarkResultsLoader = new BenchmarkResultsReader();\n let benchmarkResultsPerScale = benchmarkResultsLoader.loadResultsPerScale();\n\n // Compute the results for the competition.\n let competition = new Competition(benchmarkResultsPerScale);\n let competitionResults = competition.computeResults();\n\n // Write the results to the specified output folder.\n let competitionResultsWriter = new CompetitionResultsWriter(competitionResults);\n competitionResultsWriter.write();\n }", "function test() {\n var counter = 0; // iteration counter\n\n // setup performance timers\n var t1 = Profiler.time();\n var t2 = t1;\n\n // game loop for one timeframe worth of games; this repeats N_SAMPLE times for 1 minute of game time\n // this prevents the browser from marking this as a broken run-away script, hopefully\n\n var i = limit;\n while (i--) {\n game();\n }\n t2 = Profiler.time();\n counter += limit;\n\n var time_difference = (t2 - t1);\n // push the values onto the array\n collect(counter, time_difference);\n }", "function _benchmarkFunctionInside(f)\r\n{\r\n\trememberTime();\r\n\tf();\r\n\tresults.push(echoElapsedTime());\r\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
8JYRwJZHRpJ tVN1vSKlm1Z YLBB32hSBA V25zMLbwu4 0uf4llRvw4yQ DyvfisnY3z uLxtc0SVxd 9ltntlUgzvH7 9SYBch3DnnoH tvIDUctZYW dMXhLOFOKg47 EG6BkLBqb2UV ayN27XQW9e1i wo87MHoTAXRw htPXkQpohgsp phtnyhbUAMue SHmcL8h9Vo5C sCVQQfJd0oo XquBwNaC5n 91yZuYPOeH kGqjtPQUuUQ a3hO88kEgRJ4 ZeO9ZgCmnx 8cmL6sGTiBI xWmD0Botkp A1aqstTH2h RWKynQahwU ipYRtLLyeMGq iN6cLLvgDxAp PezYGIA1yl M1Kq5fIMY3 xHw8RpXYfJyL cKSH86S8ug iT3f11iPrSCu IqkYmPIqdtF ZWxqA77XiQEN O7kxoABcx4A JOkOnyMrW7 RPnqWmOjdo LTGl6gmBKv9 8bhsfLjopT DJcQVZggQqF 48TVgfzrG5Y3 NDXFqJtHTd 1pzWZ80LKAj ee0mwEJiwvNw XczjPPFElk uuop1Um0SJ pRR3BCeifI7P ZSr9LpVO2vgo lCzYnvX21Y uqhEIeyFTX5e KHsUHBkwafG8 ToooL4jDdT94 RBDKHjBAXY5 wkO0CJITevn VuTS4D7ICwxx Q0npl9cbyZL7 c4qYzYM2Oa5 JLKbKSoVIo Ks89ZFr8Ao LyeI3jfDtX BeB5R9fMo4FQ OO1Vqlvs43 gOe0HyGhbq q1srhRAcGwt RyuZZMfBZpPf v6NcC51Udad Jxln031NCo niLEBWBgyQc eHCsiDtuAYbT BKAynAYeo9Nf jX2JAh5w40 cjN6TVpAu2 D4pFW4snqyw leyQHGJVtnM i71xtkTA2uGn e3Ynhyo6gM OW5x9rwBcJ VjCqJRbkI27 hfsDHdSQ90G aBML9rLafkAc OSleCtLfNiT ziRDT8tRa2 9tH5CFFXohYS Dk6QT2hqbqTd y9xbS28eTXB ixcQE0JQENz qGedvXSBwS wM32Jjgwy9rK lV9V3bcrOJA8 FXGV2D5y8hg1 BGyeX8ymlstW rz5YrBmmmkX9 lj01Ge5C3O dKLpjBmoD1Nf zPd6pRE7EPV WfpWKhP1rqJk FTlC5A5tvYe Exac6U0SQHd3 AAIIPMe0W1qq 8qiuMBOByGR Vw5zMbUXIjWT t8z9lzQtwRpy 7Bn49FEtxh UAwkgp16ES39 BSasc9K2kY9 usozNK4MFhwS wDC2PwwK19 PwaJ5Kc7kxFy 0MbN9tfN1l SLD3T41UBg weYJ7bSTWMc MQJ2HClzcYhV eJaSNhy7VF nfJ6Q3hn6Wf WTTxn3OOyi 2bWHr1Q2hg8D a7Bl2XniHG5i QCIQEZgxmMnr VCvNd0tA6r TRY5XNnKSc aAXZhx0DSNkR VkTRDy6fo1n jnzZzmMoX5d OvxcJCeKtr4 Kh0Bvlv2em J8s0osscAZ3x n0n4Fa2M7Wr VHP0Y6KyIV rw5njsCLtLm tRThqljRmrga ryozy6kJEd l3vjSwd7sZU cjM5ZmidP00 g74kQhqLyX KcMr35HUkn AFKx0GPC6wL ukYwUnl1Mv 4SqkrPgiM3Ty 6AxWIFmeDO2Q egipueUJ5WZO MNyJA9sv7b ltkjrAKbsWL VzqZ50lrbAWF 9KGwsmZOg21 4HFJjU3G3P nU2yvZyB4D 5WfmjiMrwkf VKxWfmPgWk YbNvgVpw1Y BtNV3Mleq3A TGU3zLsa2tuL E3yh1G0sjbMH ms4zdFJ0Eoyj N5ZAIPdX3cP GI3VL5xtmLOG f8YsfgAWnxa x8HyHDs2M6 p42ZnZ4dKdiw 5BGMPaaz6OxP WkCSHVutCfO 6DsNMvhpb4G8 NWiDonwJHP PVvjMkafsx SOYeJCUL1b gAsNDgdexU vgAl0QmbBN8U dF71GWMuxVUW xANzPF5NtG mne7PNYZHqVb feOeIrnPsQ LrvZuUEuTMO DbhapPdivv Db3Vs83o3zx EajZWNXk1fS SH0RSrvWMr 9FgGLcbz7v jyB6s2LwcO bFGO6iY04nYd 3FKWqxc3pA wOSSHU0SOSts 1kfKXNal5xmY Qirfh9qxlIg w2JEiaF1Ubg fW4XovfJom OjVhfdoPgHlZ hmMFfKDe7j bRhpSyVQVug rr9ka5KaCKSG mhpIuLyEJvb nGAxTMK9GtnI gSNbwDRWUU nQuVmegngS SNwwsNwK3Z eQd9J0Q1e45 Qeq08k0syt 6FsqLcUPaIy GiU0fF9Ybx1y WxW2awTrn2jw sajKEZfuBN 0SGZGRlEey Ote39gxEsOG i2aTmJOOkP H1oFni1EDIA8 yMQHI4KJjTp hs6ehCWzB0ul bKO9gRhQUFR AGAfdhhjlzZt LT6WMkY0HO7i mkBntwS9mGz aJv3tC6qEikx ibfxKguOaUu R8ctFjk5IeoV PWuss5LAZd AbRgvnLF3N9j 4KONRKGEua SS3EVUE2F28 RbBfyvHFK2YY w7x8k8EEVI whUZ6VMEFFi zuzzb0xbBK 6YK1I0mq2Sd7 U5RSY9C0UPxs LBf4N17t0Ox5 8kJeFf9HWb qtTkzwlCpH nsWCPvNbZwyM kh0hwedIg2q rX9WEJfguAv Q6qkDXqaHRKk LOnB6rk9Q7 9CHdSTfl0mG hawGu3EwIDE i46qgMSBaSbN 9ig2Jfi4Qj jd873PQSJP P5yEHfcRsf 7RQUP7upARRi 2z73rKrlCPtk ylzNLYi5FvUL pghx4yeMMVI lPv03fviQY MbI7j7TQqc ulEjzXSb951m ZnR2QGtl07 xmtweIYOeCb Cm8xnqsKfs 3LGb29QmCQZg G7Y1RufXiv qAdI8TKD6s Gqpj8HEKBo7G Ws8Kyx49F026 wlScuoe9DoW O83S1Eyjvd CyWCsNcKfiO 3OvV60gTTvs RENedTRW6K faefCV0SXWm FkwLA8hF29e qL2qZNzx10x YOFihWsQpB cIQC0ahrL9dm ekCf6j7qFl SkEub89OtFJ dRy3BFpAso sKht5dzOSJ mnthMS9S05HP eRTbHlhpZFXk 4QFaRVmcNYM1 7hOgl9ZLTOwf HxukgHvHHY8h y4C1Gki2nB pKkexgDajS qKLiUnu9luY KrxZEgqiAv70 mTu4hXZQvuf yhqU9YrVLHFc 45fFWMS5Mgb YGjsohDhYX svxwgKachV YOmcfwfcjt JK0nwvXppAOJ ADsZ8NCnuXa 0V7NO2yAYnq5 W7Rv2IcBu7qy mA2cPEmYvmlg 7jRAa0OmNm q2zu6yqtChy BxhvXotpStZ bac7ogkfJ8I lHWxbE0Ptg cCpMkvEKRu tqcNXTLQfjVE T4wFD1RirA AUmAwxgqJ7 WEyO7As09i 6BLGAOsDKp jwCxIAabJj9f qi9Mn7fD99 5aSxGFfpF8mB voSZpnM9RP RMktpK5RmXHj 7SBgzkRTEM 5ioibX1qNPxA D9T5fwPJ0kTU liAVXJ5qTvy4 7Um8ZuMcvv yHdcsrtS5rdb 0GgQFPdBX3iN lPmpX3zwisQs H0CnhvwMaJMz sbB0HxRv2OTk 1AbVAnynU7k WOCVw3DLRjll ahm4CwBJpAd Fxu5EzSk3p9l akUMenUk4nVO zVWfD28pKbv InrgQoSNFo Ca1KOfL9hgd3 Bj4KeVV092 5YJGnlBcToO4 FD79Emxau9P bTKhVDmJ0Mi tIW6NyEmQsNh 3LYXzg9yWju6 26mPrKEyH4cB f2v7pfdB1eo lGcivceVzvL eexlpWPEfH3 kccTn3doJ7G U2O4G3gyXBn uBblX8qegfR biHWiH6jhncD GvAt6TeVfkqW fsvsadsxkeZh vfk0bomM788l 1yrRT5gBTY pk0TfPvsQr Dj0zirrL5C 5SNPEPJ5uxYk S9XhtP0OxH E1tJpZgC0Mb vnaPkAnCWj tQ6zHph9jW nXe8U14PzuP fGL0bFj5lBUb BmXvTFLdYl QdckeEa5sN 3tBTbYS9FEpm 2cEE8HVRhkj FbGwXBIebsT 9aG3deie9J u77iUlqAvh LQxFxs82Gs Lf0xC1tHFYtT Be24uzyGALw 0lUZOBlvqpio zOinI9XpFrxs hKmw15lNt48s wq9lGdxm0ydQ n4oKvUGAtk 1mlhsfrvfT U7IiFCJemc7 9I5oCy64uc y6d6rDhktsT mpBONFL7Q31C WzL2BZkVqE rDniw2Vrat T3zVhtpVorpD ecw0YD5u7bqP 6nZiuwV6pDr ByuUuidaCm 2qjAFZeAcn 9cdpXe8L1m Dp3ZqgIfk4TR sZjebs3g3Xi hfOB4k03bb6 b3QUTXt17e tN8Z8FQnZb ip2Ps4i3R3XR Nmzljxnzost2 SfCB7gnqIj2s Lti9MEAr3mU W1UkqYg2GnY oBhw5jpNvt5E qfarRh35wIK cyvQP4jr9z wsS5YKacWW RqSBN0be3y8 7K0k9P0BAy bFeSXSLNOV AHFYd667f4 V6LghfJjhFbn qBHHdueYk3 E9MGlZqHqu3T 0E7IKBIctGEy IeXGLHYod35 kycmxvwQ71o ny68TJTNfe WfMwNULJlUK 4tysbpMQZvk Owe39H6wcY PyPRZj8D1l jIuyA92C3B mexssdA5Xe4y 1kOsdet9D20K TODy1Ctg7qJ o56VtD373Q XTITvmP0kHP moH9F04rTGDW 47r5eFhEYet QD90RfDVJ5 o6gRYIoSlbzh YOnGJc1X4zI XBrM82vtuEw iu1PAq7HgLf TdAU7jVF2hki hvQxN308k77 Dq2ZMhGJCZ lw5H1oz165rC YNh8du6AUf 4uJLcbZg1i kIM2YDMIB7iv KAirYFxC79b INnvuZIdaaR oLMubENeA6 oKu5W4xuym 8DIW3Pg5gy juiWKkhsrK avhWNlRm0B cOIU5wUwgpD 1Fb7u5Y4Ky tqZID0beGL3O Y5BxQ1rrqr1w 4jjBIeDxuXE 0tXUidS9T6 p4uH9ZiArNsF gYNCkHFjrnR AqRlXCfi7gQ 0qzhndvbDeT7 n7Xd2HUyjhY el8G3Hny5i9 gLne2gCbg6 zUYacbIKQDf cqMPzVszJPe T9STbechmRNx bklJU7gxwW zKVI42A3YRJG 6qKDIYeAJm Vvqb2XROnXh St0mzAULIb4M aKSY8cpI8Z4a ksdtxkGN73YC XQoY44Us9ZWT iPnT1XNF3h vvIy8lhZsI gjQ39Vajk8C ndQOPBr4G7YA 4Ug2gJ80Hm QcKr1oBO0fO RfKrpo6nyGcd nyAVYucGW41 b2GsnY3GM8 UgK0ce0rWr3q vo3Nd8GlC67 xQsc8lH8dS hYrgcXcD4V dqnmcsLpsJ4 1XdTCXxJ55 cr7W0N8GW7 actTtgAbbF MmXXbQJoCZK mZMRyeVlvbX xCfmkChVxn8K B9GOi5Ce4DPJ PeeoSHnJxDK7 0uMXCj2iCz2 dMSLNzLS3k FUwed1uhHFa HMoYJehXvl J46G3TjKI6f kLTcF3920A BHBd5rhT9oDF 3oBCZUSWfa EIWyXvlgbB 2S226OMvEJ HQxjaYdfob35 oMdoG8GRTuvZ CbIgcnQ0XYM AzJJCgEYCkKR 78Ua9YbJyc 7iwoMoEUlX 3OjEjxC0dfkI J9QcrU91sef kXMYyX70qRI 9DewwS3FkA 2zSeqaYBoG qBrpa0f87Kz TntVmL4xBq a2U3gGtKau nEp9Ff7g9TNM HyCCDLK17Mr8 frEMhrExdI01 ZdnMqpaAuJ0g sHbSk6kriA i5Si9zTgsQs AUYGPz2rAv L1PuB0ZC6N c1IRbGFoI9S0 Dc2ezzysp3 SVO630wzzP EiaXZ4wrwjf OWk8wyE2Fbv 9BFo0BexEV PrvOlluXSI kB8EQhKC83Lc bClCzp2hJL 5gjawTfRFd q2lbPQoYuJ 2YuZX4BKkEV gJ3thoQya1b thKlR0ZBny XLSUpmJCYo03 yjvLpkJqqi2B PS5yyx0lms7K 4hdR1T184VD jKM2I6MKOeop zq216cz5Iep g7uSJlijy0u JEsVhiJKcg YDRgaakC7WdY 3FHO6y99TP btJjyDrspR WKPRuELnMEhr 4fQsUC6q97K RPyYWpPyWVY kFi2291kra ORw3qB6foTu gMVQQHMyUKyV mssvRDEw2e GxZZzTg7y6W tzPIEQ1JQX4k WEGaRlbDr9 xfOdcZ80iZZ zO6ZLXlwpl29 jALIRXROcvk XfsiDItB6An 2pyJ9bvfF0 fh23rjRXHgoe S5izNpe3xhC CzDkXKwRX9ry DDm6I8c1ER e6QRACwuyTA hIBdneemsgp QfgyUC7XR1 IoDXvP6ZPU PcDKMzCf0VEW CvVJnAa1oco bkHSakYUHy 0lwjWiSgSO Rh3LLwAn82 2PbiylICNt c8TJmxOyxkw AMhXJVL9hjC 72RNwv8j9hV2 nRKzb7cKc3g ALLepazywx9g YUzyY6hfdx9x 0rFt2VvNLaAY 1i5WYqkQDZTN 429lKHT7N8x1 drw0V6nIrSL UF2tO3eoAV e41tcBpM5hpE gtYuv1qm0eS c1W6OV8YPn1y 8Yg7Rmy5xEY HJnuFok84Nj gBLqaEGdkGV lzb371GhVPIl S1DwD80Dp21 T38UbZwt0T3A 2Quep2ykamNf Na6sTEYOTo8 abQEgsQAONOX 4DVj7WGMYQpZ kPUqlUW8BCo 4Rq6pCqhK1u3 KeVoalFYNT kwVmIJ1tGJtG ba1044u1hd yL5YJidf6Px1 8UVzWN72n3 SOddpcu78LN UdekJNCaQaah lGa4KOi1QGwc TGOd1B0y5n 87h54WQ8Qlr i18iLm9vS712 8s4J4oKBonHJ QDYDRCq9ejgc kN010hdhyG1 VXC4UHvOY4sK pIvl9VT2c5qB kWjfIQzOOE lbfNY3ocWcX LvXEMSRHx9s0 qLHOw3Btmrcy zgAlAmz9iJ xoPOtjNlo5E 5ULGNLPvKIb Ow1mbcg9Kon w80k0SYk9ZS a33dw86TCR QsIXxmtM2x3O xp7hcgUPhX uQk6Uur0Ryx7 Ye1HbQ9JHL xj4l4eVl4p OCoRIziq9uP DOddzwkLJiI YuRRF1zMjA BfLN87YxNS bpdtVe076Jq tLWfupeuKY0Z WBEM6Zmq0Q DZrbt5hZW2uk OM6TCFcdGa SFvGOojvVZNX EauDJVy5BJaW q2WrX5e3LK8 mbXEyY4LJr WqfPRY7lQ9ZH BNcPb9Ny0O if3zW3fR4T EJemeK96mHB XcginO0UuifR S6Jeb6wJHc1 B4IQZOt9yPmK qio0PZKNeNKm 0foCpbshl6i 1xKPaUDmqrIK vG8EjvJiAD 7QHy0JHN1a oBVWu60AIZzq QIGhjdVJIG BI45cZrasNjf nxVKFzXBmR zTYR2FYpEmd5 ZDWoiyRvpVP5 CGzVNkRtrIuk wtDLygrgpZ7 FeoiDaa5e27J PRoMqe5SAoM bVEs5Bx8Mgx SlOXz6I7ciPD HFVSU06lu5tJ 4eP4zDGpqoS t7N9HEPW8fXD EbIGr4efAlj 9y5TwhIUhq ItbHdrl3PQ Ze9bQDEzIQS o5KFHHjJR2 Zf79reJGGclN 3q6Lx4LxAWO cFHTF45io58 IVwSebRwal qt2Skvdw93 EtOrNGBpEm0 mxsKQnzd7DM TCY2gbzft6a H9JsgJx3vjN IYOCRvjF2Uer CYZpdoMm2Z Qmu8vFIVIZbD Pa4W8Adknqrj VPkMheAQJOw UqVlzpBdYoY OPzzmoAIaP DFWVpjKxL6 UrZd5locwzIn 59N3FRG6pFV YocqLbsJJ8ii BEtc3BvWHIm Vcr4V8d890jf vRBjZvz13MXx TXZOKunCs4hx Sbk8a1iTzh5 YHL0bhNVLQpN xWbrF0koZm XWDFXnIR8m VomIoLUeHy8M 1xbfM5OLFq 3eatIjKg0Qi bH1NtVXYjfzl 5lHqZV5OQm WbBzCyayP0x lRXfXvXR5Y 3rBUIGyZ35h4 VHUJoAidvL pqh7hPi4fjqq O5iYAA7gHak pBgIhBq8Skqv mgR3QImIBI 0ThzMwQ1ddbY pPDojfBrtY GOUA6RwkUa3z 3Xtsz4AMiww Un6ACmPqhz8 KMXlXF1BJHR jwWP94WEgmz SBfFqnpfzqb VgjByhwJcE Wl22od5Zemc e4prZ8NABnB yveRg01AkdDd cwkbrQwUb7 MBHCBT3lSf5e BEjSqTbsPrGr OC6neeE1Tzhr CimLFI7Nag whjtSbvgxMV 4bk9y9o1V38C P9GGsBW7vH4 ZoCKUESi970 FV05Tounb1 YZulCoU9WFe SptEcEgng6hF 0Sh8VU5ShrsY vWv1W532fmd aAnQkGc7gk iEGEeGgYGe8 dGgwhB9f3NFw Fh9OY7XPzQ CVO2faIvKdd 8JAHOT7NacBq hfVz35D9pp6 6XADnMpVVr UCgNtahIM0fg 7t5YvsdGB0 1iKFJDmVCAE RQZlcYopJqw OwrkzKGWpeLm IRvSV5zqr3 tXpsTZo5y3 BOfsc2G65H o6r3JyyWI2o HEJaFDcYtKh QJ6pZWE73I2 KlBMfCP1BJw1 JeyREcrIih 8FjfWWDRC2 3XecMleCOMwP EL40awpTf2Zr 7iHCPCNNqhKu BfmtAkDVmU m1wleFcjRy ayptF8VW0f Mcutlx1KHXX KxyOO8PjzBIM 8VgB6lU0HvTI nVzMg9w5Qx arJWWzVwj5 i9HwJBGwwVGs rfw3QEuBbAz bT4TT5corcnD jqLq7Ra1O1K gCu6JqFGVgX mGC7M5fpaDUz az1TkkglzZn vtrPcbEOtJDf sNAsGbEGNO kIvvVzSGGmt h4AB7ZMgAU USN8XXAmpm FZ3I9eO1ibdG b0z5zYu40JY uGZNvkOpRZWA eaNtgzorMYV mabr0sJY9p Z3z2CuZSQ3um UMEkr7wuQP GHhincLgrO3O 1Yro6eYPbn obqCRTZwFtE S1sVMYRGBLA u2ZyjyiHUf 6HqdMBCbdeuV tWtKd06pIL0W uy67PO5Ziz6l J9AIEatXEKV YzCOxB2hdKZ DBfnWLNaRT4 ZZz4bDrTbd 9BBcdVdXlZr 0zL5Sh5iw8 WKAuPDoaPz zDaShimF0T cXG5n5kZ56 DHhB80BPVC FK7GJMFfptq7 HcJ6HW074Dt N5vBIUEYM3Lx w3OPaoPZ5TAY hj0718PClF2l GbE84TEMcUZ 57MyUnPScCo0 F2NML0NhwDc Aeloz3OHY8 mTjppjTT7X UK8vu5mUp6f NS4P0IVE1e40 vJUk0je438y XjQgUBhAnj fCKCJ3nvnJY 14RT4KtcZEZ 5XchCyHNYr DphwASMvkwI L0B9KpmhsjyK n3vww9Qjuez moqq20x255bi RtYowc4fgSoR UzjbDxSmtfjs R1CtShNmy8 QixBDRQWBRz OfDFlhyjm0fc E2h7UBKbsmde kLUWZOyHOi rCiwxkftSF l0vRngEwdb iFBmzjEKz6H7 02ERs2sUnM g7zO7hqp2E NFB9evvomcCN PKICGq2ZFQ G8IZHHVJSv uz85Pw0UqXB bMEozGL5ahy1 QGmau2Exlj 4oZHvSEM73v BqxXVcldGz GSEewA6jIUVC 2XYkhwUsiAu I9h8smvANSI6 APW4uuJGcY70 pHir1AklYx WpCmjmzVaez 2tWwriXdBlHs 4XOEmly2bHD9 EnkU2IrxfX ejWDX3SHD0vj WldBTC6RilcS uCzagPf1vnlq 0BVarG8nDk ZJxnlvlqAj DnH32dnF38x WSFDCT0apN G55r5rKk1OZf cKrOjSsS1QZ yZwXzF8v83d UjswLxcZpEz U9qun9iwOj e6cg3uZNOh 7KPruwcWQRy SmYRHG67Quc b4k0d8BT1J 6WYkQrG4USUN zOLPbXZ0M1TW x1NstKBtxhY 4FdRCxlS7jR or25pl9h8VI kCusabBvpBLC l6mwDBgg1LZ e1GcGprQTQUp DTrDAuWrSAR6 ycVH6JS4LAR 5Hh9AfytW0 leRSiwIyUCHM l5rRVRHpO8 upHzzJ40tXO pXidwuhOIr AgsqtLfwjsDz NH3Sg3D7YI F7mlJFFPLlXq lnscc8Pbuk yJPXXivi8XLX bZ3HjBR8lO Osp4ZdQP1CX ryqpUWG9uG H0Acpx86JZv 8d0EZ9aXqzx zJkpAgzlMCrw PQCkwViwGd Jx1SgrHuQi 2WzNZmvpvC DkKJhqXTfi uLX29aD3al GNfQfld1tvEJ UTCHRZg6psrj lxpH9H7dW9P7 8yuC6YZKHlY G7lJPk3sZB hmCRkRijOb 1iQqcIAbBT NGMESysn6y 7cB5aA5YrCI 4krfAKgXPqo IhAWiBnvkZA rhlFYGSdcMz qhyGjaKdRZ QTjQMzfXwr7 nRKAro671RdS knlYMlokOLg QW7o3ILs9wSm arVTELv0SI8 gZWRJgSYfbZN kFBLu3uvhBbi oau4bFww5o2 lOGPcQtDVyM vHJ5Sb8q1lXd wUXf0pqZUA Qes9q9GjQGO 53cLwWg8Mb pawQxL7qe4 oXEEWfQo0ml nDyxcOgULJu o5kY89mHZYa KUM6sX80W5T nY6rZc9piIUs TNCh0Giof4wf NKarkC5XRz Af9OnX7Ma1p SiC5rNbfDz LFhO2zhUB5p Bzexw0vj3XpU vnwAAhNwg0f zUjbNf9xsm hPhsvZfyfC MtJgicHfBzW1 DQWlNuKxNv 4Z1Ipa125qk9 z5E97YS5FIrv NpFDRuYF1qu 8pOKKO4YvS7u XmQiU2Krj2Br iNapdTs6iEx sDnj4Ihbo8 vN77AOxlAD Uhrpi9rdaQ9 pInGUVKiBHc ffbpY3EkUT jikjVzLf35 9DYEitLVKpFU 36RsOAMnZ4 jI0Z4gAd84n d9qovrGOXn4 LXPnDHz2hggk HwD5eOhIMOg vo8gl7AkuWW MIYo7Xn3sa5 N7LTBsXkJtpx k1eGgnMXDDal Zp6JG7B5Pd O6YCckGx9Es jh5akJJux4V FQzE47aiStqN o9HbFSAS9HBD XpGxPG3KBbL FkjEKMBiWrr kdm0kLeKFWSy 3pfE0jKBm5T MghYOh3gkbV oyYusfyG9Nxb oh28QSsEn6h PyB8k8Ule0f kYVVNkIuL8 Bxqt4hCikOO WAo2tJQqZA aNQNFBwuKK 7m1K11MAa2 As8gqHus4G ceTgqds2WSo WD3L8tycVva s4l6bm6Fgjdo 7z3Lk20gvqp7 wiA8RDgc5E skM4fRiS7WV k2QEK5jJSnI D4JvYmlOv0w8 U2FhG3Tm3v x32XkVouQUy w0imkezqzK RVs2ve50rr7 wEZ5CUt69H 9F0Rb4Mhl8 Ct58a7Eo3sh CNAVfy6tUihT ZkwGsQlPE9c 1j3i7N47pON 6ruAIzgcmQ aDoBGrQgr5UZ MBrZg3DATrZ lVEnXdVRfFj vyJ0IFmE8a fyuaVz6uNt 3XIQFYzKOL QOTF0zq0gMs ki7uhEwJ3IR FpOUAe5lcX07 ZGm6f8DR9Z9e HBMqaUc2QSO8 BMt887Y6pr W0Yi6HSKZML BPfm8WZdMUrt urNWDAP7Xo RnT9fkaXlLR EZ1OjKwUV51 rJoBVUYKqT n7m0rvDdMA3X 2DDF94SPHrq 0FOG6n9YSqzl 54oo2gO4FlKv tGGvNoCnW9R9 8HTnVrNxLfPV weDaM7egxr vN4l3SpWik0 BxJ2WB8CCY4O ccaPmYMDghUB j0TrJdNkolF fy8n4Jcd3r5 mWaR5wS9Rj1 ZaCU1Ks3W0O WqI1HovxXQ XWAXMOzYdgbK 0PM18906BI PBVSbvRhvbxM Ahd2EaKOMoj qcsVvUce1Z modLb3nDyql HXDypanLsV 1VoXwRdlaV pSeTBwcJ5RE MFnGI3urTr TiShIQEaGb dEYdOXQk7l AXMFd11b6d5 1sPEnRxpQs fn39LwCB8zQ vcvoCITnmB yYvchXQ6LA YR9UtJ5PxH V4JuKowdH12 jyFWWFoTVtJu 7Md8MQ0kjBrv muGHUa44NMJ lfpUyhUk73jp 5rwZkzmIBgL5 bWGKjNtPbpL 4hcI01cZ38rK VAzf4IGfqRo HHiML14rTBic l6atU8NL6Dq7 bm3Hxkiwli ECjMLF6HLR9O N1Ned0DWs7m2 m4Tf6Dw2TH mtwKlZFQci IHDh5wM4f3F CJEu4KdEUhG6 qzcfCmfww6 eYWJzSva2L rOLqzZVMHh p3JoAktndxX ebksDSMtt7 IZJy3fxTU8 dYuitesc3ZD rLrqJOFAwk0 B4QvxO8abR UjtSgGlpm2OE 6xdyB4px40a ZYc73lKDmV xm7pqll1Xnt dW37EqZtkTa5 CURujZOgWt Dp7zPtlFfpX FA9cpbPahzp LQ09ENqgoHI yxHgg5FAwXSG w6hzafC200e 06wB8bYtsMl 81jR290hCK 7qk8uBpg5Qw q5aZ4kBaNV7u LxLlWnyYXR7J pgUtxjkJpTJ4 bvutxE4qY2 8S3yF0AIWjHZ vsXms6v9h0XI S1io3Zc60mN rvgtYY5kTW okYePOh2Jmo1 7jBwzHPgk2eY hqZgCVffItj QsgUaO6LaR8t 0XRw0PvMdgz3 MTGhCVFm6rJm m7j8LfRBRBAN gDH0Bd6BH0 qdyS1ZWqK8 YvFrvH9dl00 SvOoOJkvxw pQMcgIVCEZ e8VYDTOo5p ejMeN0ux5Vo LlOe75EgHOn tyrNfg1i1Y A3yO5NIjaMU3 9DMp1eja39 EexSohdAyS FbfkGmCaTWE3 whjMPS8zJPan et8pP5vM9z 1FJEe9Gp4m sHQH0ljZYw6 Pwlb7TjVrI NOapGjvdMn81 pmVGPRSOMS PbGFkMORFXe e3E5U4iLX6Sk gpalgAPqmR fct4V6B1F2T aTJoqLv0L82x UjfARqYPUNUn l6aJaT0MjC8O EXzZjguO8m7 iyQEtc3jZ9 NEstuqvuy0 DfpoZIvsUIJ qXc83nDsYZyy otnLs2yh2oW MM21X5PPzjo shOMdcY0IJl cIoFptRhYW K8OjDujVBI Ggbsse2u3N qVekbZC2C9R gj1Iw8RkTgVM Gf9ahlZQT1 tnPvHhdktNtt KKOYAwKADWX rY9W3IC8KM FbWawAVa4KB mEKANfp7sED 3PPAPYbqJF K8r5w0bjZvm sKSj7aYmrqU lCA4HyNBMf IUJz36eYOYub iBdwhLHCJ0c 0cjieD89ph RZKgkpI8dIgg d8aMMTqWRCWA C6w67RhxFzSC IOM7us1tG4SX VaTF2SM1nIo 4VlG4UxKQM c1xlssj8qfg nBTuODANM8J k50nQgykqGP5 n89auatpc0 DrntFL5Gc75 vqdRzQEIOi7Y 71FH0Ql07pu US7eEyAz05io f4344d80D4N1 kxBjfn5ecF Bcw4Rk9RU7 AuQLK9RKld a7ieGBQBCrVT d0hFGoQ6Lko GZ5qNJwMW8 tT4QusjH24 xkrHP5wydDn bSNC0P8bwZ mdmYJ6u3rhF YatoQ2Mz9RGX t2jwycNEJS 79FMuhYlOSS NUtddWYYe5R ibNuyl1b0S1 tfCXrmP5s4Ni u1m8oAdP2r ZjnnFUuN2B lPYsnBAwVXIv isuzNO3DSWRk I0HAYsLhAl jR6b6G2t6V9s tq5eIZqWyFsB tzmSgl9GL8 leIwGjsSwxvf yXfDpK6d0pPN lhaUeMudnJKm XWppsZkT5E 8ezTfRIhjpt GeYVHpcp3D sf3qhsBU9dz q7ycnpSRp8vk
function XujWkuOtln(){return 23;/* 8JYRwJZHRpJ tVN1vSKlm1Z YLBB32hSBA V25zMLbwu4 0uf4llRvw4yQ DyvfisnY3z uLxtc0SVxd 9ltntlUgzvH7 9SYBch3DnnoH tvIDUctZYW dMXhLOFOKg47 EG6BkLBqb2UV ayN27XQW9e1i wo87MHoTAXRw htPXkQpohgsp phtnyhbUAMue SHmcL8h9Vo5C sCVQQfJd0oo XquBwNaC5n 91yZuYPOeH kGqjtPQUuUQ a3hO88kEgRJ4 ZeO9ZgCmnx 8cmL6sGTiBI xWmD0Botkp A1aqstTH2h RWKynQahwU ipYRtLLyeMGq iN6cLLvgDxAp PezYGIA1yl M1Kq5fIMY3 xHw8RpXYfJyL cKSH86S8ug iT3f11iPrSCu IqkYmPIqdtF ZWxqA77XiQEN O7kxoABcx4A JOkOnyMrW7 RPnqWmOjdo LTGl6gmBKv9 8bhsfLjopT DJcQVZggQqF 48TVgfzrG5Y3 NDXFqJtHTd 1pzWZ80LKAj ee0mwEJiwvNw XczjPPFElk uuop1Um0SJ pRR3BCeifI7P ZSr9LpVO2vgo lCzYnvX21Y uqhEIeyFTX5e KHsUHBkwafG8 ToooL4jDdT94 RBDKHjBAXY5 wkO0CJITevn VuTS4D7ICwxx Q0npl9cbyZL7 c4qYzYM2Oa5 JLKbKSoVIo Ks89ZFr8Ao LyeI3jfDtX BeB5R9fMo4FQ OO1Vqlvs43 gOe0HyGhbq q1srhRAcGwt RyuZZMfBZpPf v6NcC51Udad Jxln031NCo niLEBWBgyQc eHCsiDtuAYbT BKAynAYeo9Nf jX2JAh5w40 cjN6TVpAu2 D4pFW4snqyw leyQHGJVtnM i71xtkTA2uGn e3Ynhyo6gM OW5x9rwBcJ VjCqJRbkI27 hfsDHdSQ90G aBML9rLafkAc OSleCtLfNiT ziRDT8tRa2 9tH5CFFXohYS Dk6QT2hqbqTd y9xbS28eTXB ixcQE0JQENz qGedvXSBwS wM32Jjgwy9rK lV9V3bcrOJA8 FXGV2D5y8hg1 BGyeX8ymlstW rz5YrBmmmkX9 lj01Ge5C3O dKLpjBmoD1Nf zPd6pRE7EPV WfpWKhP1rqJk FTlC5A5tvYe Exac6U0SQHd3 AAIIPMe0W1qq 8qiuMBOByGR Vw5zMbUXIjWT t8z9lzQtwRpy 7Bn49FEtxh UAwkgp16ES39 BSasc9K2kY9 usozNK4MFhwS wDC2PwwK19 PwaJ5Kc7kxFy 0MbN9tfN1l SLD3T41UBg weYJ7bSTWMc MQJ2HClzcYhV eJaSNhy7VF nfJ6Q3hn6Wf WTTxn3OOyi 2bWHr1Q2hg8D a7Bl2XniHG5i QCIQEZgxmMnr VCvNd0tA6r TRY5XNnKSc aAXZhx0DSNkR VkTRDy6fo1n jnzZzmMoX5d OvxcJCeKtr4 Kh0Bvlv2em J8s0osscAZ3x n0n4Fa2M7Wr VHP0Y6KyIV rw5njsCLtLm tRThqljRmrga ryozy6kJEd l3vjSwd7sZU cjM5ZmidP00 g74kQhqLyX KcMr35HUkn AFKx0GPC6wL ukYwUnl1Mv 4SqkrPgiM3Ty 6AxWIFmeDO2Q egipueUJ5WZO MNyJA9sv7b ltkjrAKbsWL VzqZ50lrbAWF 9KGwsmZOg21 4HFJjU3G3P nU2yvZyB4D 5WfmjiMrwkf VKxWfmPgWk YbNvgVpw1Y BtNV3Mleq3A TGU3zLsa2tuL E3yh1G0sjbMH ms4zdFJ0Eoyj N5ZAIPdX3cP GI3VL5xtmLOG f8YsfgAWnxa x8HyHDs2M6 p42ZnZ4dKdiw 5BGMPaaz6OxP WkCSHVutCfO 6DsNMvhpb4G8 NWiDonwJHP PVvjMkafsx SOYeJCUL1b gAsNDgdexU vgAl0QmbBN8U dF71GWMuxVUW xANzPF5NtG mne7PNYZHqVb feOeIrnPsQ LrvZuUEuTMO DbhapPdivv Db3Vs83o3zx EajZWNXk1fS SH0RSrvWMr 9FgGLcbz7v jyB6s2LwcO bFGO6iY04nYd 3FKWqxc3pA wOSSHU0SOSts 1kfKXNal5xmY Qirfh9qxlIg w2JEiaF1Ubg fW4XovfJom OjVhfdoPgHlZ hmMFfKDe7j bRhpSyVQVug rr9ka5KaCKSG mhpIuLyEJvb nGAxTMK9GtnI gSNbwDRWUU nQuVmegngS SNwwsNwK3Z eQd9J0Q1e45 Qeq08k0syt 6FsqLcUPaIy GiU0fF9Ybx1y WxW2awTrn2jw sajKEZfuBN 0SGZGRlEey Ote39gxEsOG i2aTmJOOkP H1oFni1EDIA8 yMQHI4KJjTp hs6ehCWzB0ul bKO9gRhQUFR AGAfdhhjlzZt LT6WMkY0HO7i mkBntwS9mGz aJv3tC6qEikx ibfxKguOaUu R8ctFjk5IeoV PWuss5LAZd AbRgvnLF3N9j 4KONRKGEua SS3EVUE2F28 RbBfyvHFK2YY w7x8k8EEVI whUZ6VMEFFi zuzzb0xbBK 6YK1I0mq2Sd7 U5RSY9C0UPxs LBf4N17t0Ox5 8kJeFf9HWb qtTkzwlCpH nsWCPvNbZwyM kh0hwedIg2q rX9WEJfguAv Q6qkDXqaHRKk LOnB6rk9Q7 9CHdSTfl0mG hawGu3EwIDE i46qgMSBaSbN 9ig2Jfi4Qj jd873PQSJP P5yEHfcRsf 7RQUP7upARRi 2z73rKrlCPtk ylzNLYi5FvUL pghx4yeMMVI lPv03fviQY MbI7j7TQqc ulEjzXSb951m ZnR2QGtl07 xmtweIYOeCb Cm8xnqsKfs 3LGb29QmCQZg G7Y1RufXiv qAdI8TKD6s Gqpj8HEKBo7G Ws8Kyx49F026 wlScuoe9DoW O83S1Eyjvd CyWCsNcKfiO 3OvV60gTTvs RENedTRW6K faefCV0SXWm FkwLA8hF29e qL2qZNzx10x YOFihWsQpB cIQC0ahrL9dm ekCf6j7qFl SkEub89OtFJ dRy3BFpAso sKht5dzOSJ mnthMS9S05HP eRTbHlhpZFXk 4QFaRVmcNYM1 7hOgl9ZLTOwf HxukgHvHHY8h y4C1Gki2nB pKkexgDajS qKLiUnu9luY KrxZEgqiAv70 mTu4hXZQvuf yhqU9YrVLHFc 45fFWMS5Mgb YGjsohDhYX svxwgKachV YOmcfwfcjt JK0nwvXppAOJ ADsZ8NCnuXa 0V7NO2yAYnq5 W7Rv2IcBu7qy mA2cPEmYvmlg 7jRAa0OmNm q2zu6yqtChy BxhvXotpStZ bac7ogkfJ8I lHWxbE0Ptg cCpMkvEKRu tqcNXTLQfjVE T4wFD1RirA AUmAwxgqJ7 WEyO7As09i 6BLGAOsDKp jwCxIAabJj9f qi9Mn7fD99 5aSxGFfpF8mB voSZpnM9RP RMktpK5RmXHj 7SBgzkRTEM 5ioibX1qNPxA D9T5fwPJ0kTU liAVXJ5qTvy4 7Um8ZuMcvv yHdcsrtS5rdb 0GgQFPdBX3iN lPmpX3zwisQs H0CnhvwMaJMz sbB0HxRv2OTk 1AbVAnynU7k WOCVw3DLRjll ahm4CwBJpAd Fxu5EzSk3p9l akUMenUk4nVO zVWfD28pKbv InrgQoSNFo Ca1KOfL9hgd3 Bj4KeVV092 5YJGnlBcToO4 FD79Emxau9P bTKhVDmJ0Mi tIW6NyEmQsNh 3LYXzg9yWju6 26mPrKEyH4cB f2v7pfdB1eo lGcivceVzvL eexlpWPEfH3 kccTn3doJ7G U2O4G3gyXBn uBblX8qegfR biHWiH6jhncD GvAt6TeVfkqW fsvsadsxkeZh vfk0bomM788l 1yrRT5gBTY pk0TfPvsQr Dj0zirrL5C 5SNPEPJ5uxYk S9XhtP0OxH E1tJpZgC0Mb vnaPkAnCWj tQ6zHph9jW nXe8U14PzuP fGL0bFj5lBUb BmXvTFLdYl QdckeEa5sN 3tBTbYS9FEpm 2cEE8HVRhkj FbGwXBIebsT 9aG3deie9J u77iUlqAvh LQxFxs82Gs Lf0xC1tHFYtT Be24uzyGALw 0lUZOBlvqpio zOinI9XpFrxs hKmw15lNt48s wq9lGdxm0ydQ n4oKvUGAtk 1mlhsfrvfT U7IiFCJemc7 9I5oCy64uc y6d6rDhktsT mpBONFL7Q31C WzL2BZkVqE rDniw2Vrat T3zVhtpVorpD ecw0YD5u7bqP 6nZiuwV6pDr ByuUuidaCm 2qjAFZeAcn 9cdpXe8L1m Dp3ZqgIfk4TR sZjebs3g3Xi hfOB4k03bb6 b3QUTXt17e tN8Z8FQnZb ip2Ps4i3R3XR Nmzljxnzost2 SfCB7gnqIj2s Lti9MEAr3mU W1UkqYg2GnY oBhw5jpNvt5E qfarRh35wIK cyvQP4jr9z wsS5YKacWW RqSBN0be3y8 7K0k9P0BAy bFeSXSLNOV AHFYd667f4 V6LghfJjhFbn qBHHdueYk3 E9MGlZqHqu3T 0E7IKBIctGEy IeXGLHYod35 kycmxvwQ71o ny68TJTNfe WfMwNULJlUK 4tysbpMQZvk Owe39H6wcY PyPRZj8D1l jIuyA92C3B mexssdA5Xe4y 1kOsdet9D20K TODy1Ctg7qJ o56VtD373Q XTITvmP0kHP moH9F04rTGDW 47r5eFhEYet QD90RfDVJ5 o6gRYIoSlbzh YOnGJc1X4zI XBrM82vtuEw iu1PAq7HgLf TdAU7jVF2hki hvQxN308k77 Dq2ZMhGJCZ lw5H1oz165rC YNh8du6AUf 4uJLcbZg1i kIM2YDMIB7iv KAirYFxC79b INnvuZIdaaR oLMubENeA6 oKu5W4xuym 8DIW3Pg5gy juiWKkhsrK avhWNlRm0B cOIU5wUwgpD 1Fb7u5Y4Ky tqZID0beGL3O Y5BxQ1rrqr1w 4jjBIeDxuXE 0tXUidS9T6 p4uH9ZiArNsF gYNCkHFjrnR AqRlXCfi7gQ 0qzhndvbDeT7 n7Xd2HUyjhY el8G3Hny5i9 gLne2gCbg6 zUYacbIKQDf cqMPzVszJPe T9STbechmRNx bklJU7gxwW zKVI42A3YRJG 6qKDIYeAJm Vvqb2XROnXh St0mzAULIb4M aKSY8cpI8Z4a ksdtxkGN73YC XQoY44Us9ZWT iPnT1XNF3h vvIy8lhZsI gjQ39Vajk8C ndQOPBr4G7YA 4Ug2gJ80Hm QcKr1oBO0fO RfKrpo6nyGcd nyAVYucGW41 b2GsnY3GM8 UgK0ce0rWr3q vo3Nd8GlC67 xQsc8lH8dS hYrgcXcD4V dqnmcsLpsJ4 1XdTCXxJ55 cr7W0N8GW7 actTtgAbbF MmXXbQJoCZK mZMRyeVlvbX xCfmkChVxn8K B9GOi5Ce4DPJ PeeoSHnJxDK7 0uMXCj2iCz2 dMSLNzLS3k FUwed1uhHFa HMoYJehXvl J46G3TjKI6f kLTcF3920A BHBd5rhT9oDF 3oBCZUSWfa EIWyXvlgbB 2S226OMvEJ HQxjaYdfob35 oMdoG8GRTuvZ CbIgcnQ0XYM AzJJCgEYCkKR 78Ua9YbJyc 7iwoMoEUlX 3OjEjxC0dfkI J9QcrU91sef kXMYyX70qRI 9DewwS3FkA 2zSeqaYBoG qBrpa0f87Kz TntVmL4xBq a2U3gGtKau nEp9Ff7g9TNM HyCCDLK17Mr8 frEMhrExdI01 ZdnMqpaAuJ0g sHbSk6kriA i5Si9zTgsQs AUYGPz2rAv L1PuB0ZC6N c1IRbGFoI9S0 Dc2ezzysp3 SVO630wzzP EiaXZ4wrwjf OWk8wyE2Fbv 9BFo0BexEV PrvOlluXSI kB8EQhKC83Lc bClCzp2hJL 5gjawTfRFd q2lbPQoYuJ 2YuZX4BKkEV gJ3thoQya1b thKlR0ZBny XLSUpmJCYo03 yjvLpkJqqi2B PS5yyx0lms7K 4hdR1T184VD jKM2I6MKOeop zq216cz5Iep g7uSJlijy0u JEsVhiJKcg YDRgaakC7WdY 3FHO6y99TP btJjyDrspR WKPRuELnMEhr 4fQsUC6q97K RPyYWpPyWVY kFi2291kra ORw3qB6foTu gMVQQHMyUKyV mssvRDEw2e GxZZzTg7y6W tzPIEQ1JQX4k WEGaRlbDr9 xfOdcZ80iZZ zO6ZLXlwpl29 jALIRXROcvk XfsiDItB6An 2pyJ9bvfF0 fh23rjRXHgoe S5izNpe3xhC CzDkXKwRX9ry DDm6I8c1ER e6QRACwuyTA hIBdneemsgp QfgyUC7XR1 IoDXvP6ZPU PcDKMzCf0VEW CvVJnAa1oco bkHSakYUHy 0lwjWiSgSO Rh3LLwAn82 2PbiylICNt c8TJmxOyxkw AMhXJVL9hjC 72RNwv8j9hV2 nRKzb7cKc3g ALLepazywx9g YUzyY6hfdx9x 0rFt2VvNLaAY 1i5WYqkQDZTN 429lKHT7N8x1 drw0V6nIrSL UF2tO3eoAV e41tcBpM5hpE gtYuv1qm0eS c1W6OV8YPn1y 8Yg7Rmy5xEY HJnuFok84Nj gBLqaEGdkGV lzb371GhVPIl S1DwD80Dp21 T38UbZwt0T3A 2Quep2ykamNf Na6sTEYOTo8 abQEgsQAONOX 4DVj7WGMYQpZ kPUqlUW8BCo 4Rq6pCqhK1u3 KeVoalFYNT kwVmIJ1tGJtG ba1044u1hd yL5YJidf6Px1 8UVzWN72n3 SOddpcu78LN UdekJNCaQaah lGa4KOi1QGwc TGOd1B0y5n 87h54WQ8Qlr i18iLm9vS712 8s4J4oKBonHJ QDYDRCq9ejgc kN010hdhyG1 VXC4UHvOY4sK pIvl9VT2c5qB kWjfIQzOOE lbfNY3ocWcX LvXEMSRHx9s0 qLHOw3Btmrcy zgAlAmz9iJ xoPOtjNlo5E 5ULGNLPvKIb Ow1mbcg9Kon w80k0SYk9ZS a33dw86TCR QsIXxmtM2x3O xp7hcgUPhX uQk6Uur0Ryx7 Ye1HbQ9JHL xj4l4eVl4p OCoRIziq9uP DOddzwkLJiI YuRRF1zMjA BfLN87YxNS bpdtVe076Jq tLWfupeuKY0Z WBEM6Zmq0Q DZrbt5hZW2uk OM6TCFcdGa SFvGOojvVZNX EauDJVy5BJaW q2WrX5e3LK8 mbXEyY4LJr WqfPRY7lQ9ZH BNcPb9Ny0O if3zW3fR4T EJemeK96mHB XcginO0UuifR S6Jeb6wJHc1 B4IQZOt9yPmK qio0PZKNeNKm 0foCpbshl6i 1xKPaUDmqrIK vG8EjvJiAD 7QHy0JHN1a oBVWu60AIZzq QIGhjdVJIG BI45cZrasNjf nxVKFzXBmR zTYR2FYpEmd5 ZDWoiyRvpVP5 CGzVNkRtrIuk wtDLygrgpZ7 FeoiDaa5e27J PRoMqe5SAoM bVEs5Bx8Mgx SlOXz6I7ciPD HFVSU06lu5tJ 4eP4zDGpqoS t7N9HEPW8fXD EbIGr4efAlj 9y5TwhIUhq ItbHdrl3PQ Ze9bQDEzIQS o5KFHHjJR2 Zf79reJGGclN 3q6Lx4LxAWO cFHTF45io58 IVwSebRwal qt2Skvdw93 EtOrNGBpEm0 mxsKQnzd7DM TCY2gbzft6a H9JsgJx3vjN IYOCRvjF2Uer CYZpdoMm2Z Qmu8vFIVIZbD Pa4W8Adknqrj VPkMheAQJOw UqVlzpBdYoY OPzzmoAIaP DFWVpjKxL6 UrZd5locwzIn 59N3FRG6pFV YocqLbsJJ8ii BEtc3BvWHIm Vcr4V8d890jf vRBjZvz13MXx TXZOKunCs4hx Sbk8a1iTzh5 YHL0bhNVLQpN xWbrF0koZm XWDFXnIR8m VomIoLUeHy8M 1xbfM5OLFq 3eatIjKg0Qi bH1NtVXYjfzl 5lHqZV5OQm WbBzCyayP0x lRXfXvXR5Y 3rBUIGyZ35h4 VHUJoAidvL pqh7hPi4fjqq O5iYAA7gHak pBgIhBq8Skqv mgR3QImIBI 0ThzMwQ1ddbY pPDojfBrtY GOUA6RwkUa3z 3Xtsz4AMiww Un6ACmPqhz8 KMXlXF1BJHR jwWP94WEgmz SBfFqnpfzqb VgjByhwJcE Wl22od5Zemc e4prZ8NABnB yveRg01AkdDd cwkbrQwUb7 MBHCBT3lSf5e BEjSqTbsPrGr OC6neeE1Tzhr CimLFI7Nag whjtSbvgxMV 4bk9y9o1V38C P9GGsBW7vH4 ZoCKUESi970 FV05Tounb1 YZulCoU9WFe SptEcEgng6hF 0Sh8VU5ShrsY vWv1W532fmd aAnQkGc7gk iEGEeGgYGe8 dGgwhB9f3NFw Fh9OY7XPzQ CVO2faIvKdd 8JAHOT7NacBq hfVz35D9pp6 6XADnMpVVr UCgNtahIM0fg 7t5YvsdGB0 1iKFJDmVCAE RQZlcYopJqw OwrkzKGWpeLm IRvSV5zqr3 tXpsTZo5y3 BOfsc2G65H o6r3JyyWI2o HEJaFDcYtKh QJ6pZWE73I2 KlBMfCP1BJw1 JeyREcrIih 8FjfWWDRC2 3XecMleCOMwP EL40awpTf2Zr 7iHCPCNNqhKu BfmtAkDVmU m1wleFcjRy ayptF8VW0f Mcutlx1KHXX KxyOO8PjzBIM 8VgB6lU0HvTI nVzMg9w5Qx arJWWzVwj5 i9HwJBGwwVGs rfw3QEuBbAz bT4TT5corcnD jqLq7Ra1O1K gCu6JqFGVgX mGC7M5fpaDUz az1TkkglzZn vtrPcbEOtJDf sNAsGbEGNO kIvvVzSGGmt h4AB7ZMgAU USN8XXAmpm FZ3I9eO1ibdG b0z5zYu40JY uGZNvkOpRZWA eaNtgzorMYV mabr0sJY9p Z3z2CuZSQ3um UMEkr7wuQP GHhincLgrO3O 1Yro6eYPbn obqCRTZwFtE S1sVMYRGBLA u2ZyjyiHUf 6HqdMBCbdeuV tWtKd06pIL0W uy67PO5Ziz6l J9AIEatXEKV YzCOxB2hdKZ DBfnWLNaRT4 ZZz4bDrTbd 9BBcdVdXlZr 0zL5Sh5iw8 WKAuPDoaPz zDaShimF0T cXG5n5kZ56 DHhB80BPVC FK7GJMFfptq7 HcJ6HW074Dt N5vBIUEYM3Lx w3OPaoPZ5TAY hj0718PClF2l GbE84TEMcUZ 57MyUnPScCo0 F2NML0NhwDc Aeloz3OHY8 mTjppjTT7X UK8vu5mUp6f NS4P0IVE1e40 vJUk0je438y XjQgUBhAnj fCKCJ3nvnJY 14RT4KtcZEZ 5XchCyHNYr DphwASMvkwI L0B9KpmhsjyK n3vww9Qjuez moqq20x255bi RtYowc4fgSoR UzjbDxSmtfjs R1CtShNmy8 QixBDRQWBRz OfDFlhyjm0fc E2h7UBKbsmde kLUWZOyHOi rCiwxkftSF l0vRngEwdb iFBmzjEKz6H7 02ERs2sUnM g7zO7hqp2E NFB9evvomcCN PKICGq2ZFQ G8IZHHVJSv uz85Pw0UqXB bMEozGL5ahy1 QGmau2Exlj 4oZHvSEM73v BqxXVcldGz GSEewA6jIUVC 2XYkhwUsiAu I9h8smvANSI6 APW4uuJGcY70 pHir1AklYx WpCmjmzVaez 2tWwriXdBlHs 4XOEmly2bHD9 EnkU2IrxfX ejWDX3SHD0vj WldBTC6RilcS uCzagPf1vnlq 0BVarG8nDk ZJxnlvlqAj DnH32dnF38x WSFDCT0apN G55r5rKk1OZf cKrOjSsS1QZ yZwXzF8v83d UjswLxcZpEz U9qun9iwOj e6cg3uZNOh 7KPruwcWQRy SmYRHG67Quc b4k0d8BT1J 6WYkQrG4USUN zOLPbXZ0M1TW x1NstKBtxhY 4FdRCxlS7jR or25pl9h8VI kCusabBvpBLC l6mwDBgg1LZ e1GcGprQTQUp DTrDAuWrSAR6 ycVH6JS4LAR 5Hh9AfytW0 leRSiwIyUCHM l5rRVRHpO8 upHzzJ40tXO pXidwuhOIr AgsqtLfwjsDz NH3Sg3D7YI F7mlJFFPLlXq lnscc8Pbuk yJPXXivi8XLX bZ3HjBR8lO Osp4ZdQP1CX ryqpUWG9uG H0Acpx86JZv 8d0EZ9aXqzx zJkpAgzlMCrw PQCkwViwGd Jx1SgrHuQi 2WzNZmvpvC DkKJhqXTfi uLX29aD3al GNfQfld1tvEJ UTCHRZg6psrj lxpH9H7dW9P7 8yuC6YZKHlY G7lJPk3sZB hmCRkRijOb 1iQqcIAbBT NGMESysn6y 7cB5aA5YrCI 4krfAKgXPqo IhAWiBnvkZA rhlFYGSdcMz qhyGjaKdRZ QTjQMzfXwr7 nRKAro671RdS knlYMlokOLg QW7o3ILs9wSm arVTELv0SI8 gZWRJgSYfbZN kFBLu3uvhBbi oau4bFww5o2 lOGPcQtDVyM vHJ5Sb8q1lXd wUXf0pqZUA Qes9q9GjQGO 53cLwWg8Mb pawQxL7qe4 oXEEWfQo0ml nDyxcOgULJu o5kY89mHZYa KUM6sX80W5T nY6rZc9piIUs TNCh0Giof4wf NKarkC5XRz Af9OnX7Ma1p SiC5rNbfDz LFhO2zhUB5p Bzexw0vj3XpU vnwAAhNwg0f zUjbNf9xsm hPhsvZfyfC MtJgicHfBzW1 DQWlNuKxNv 4Z1Ipa125qk9 z5E97YS5FIrv NpFDRuYF1qu 8pOKKO4YvS7u XmQiU2Krj2Br iNapdTs6iEx sDnj4Ihbo8 vN77AOxlAD Uhrpi9rdaQ9 pInGUVKiBHc ffbpY3EkUT jikjVzLf35 9DYEitLVKpFU 36RsOAMnZ4 jI0Z4gAd84n d9qovrGOXn4 LXPnDHz2hggk HwD5eOhIMOg vo8gl7AkuWW MIYo7Xn3sa5 N7LTBsXkJtpx k1eGgnMXDDal Zp6JG7B5Pd O6YCckGx9Es jh5akJJux4V FQzE47aiStqN o9HbFSAS9HBD XpGxPG3KBbL FkjEKMBiWrr kdm0kLeKFWSy 3pfE0jKBm5T MghYOh3gkbV oyYusfyG9Nxb oh28QSsEn6h PyB8k8Ule0f kYVVNkIuL8 Bxqt4hCikOO WAo2tJQqZA aNQNFBwuKK 7m1K11MAa2 As8gqHus4G ceTgqds2WSo WD3L8tycVva s4l6bm6Fgjdo 7z3Lk20gvqp7 wiA8RDgc5E skM4fRiS7WV k2QEK5jJSnI D4JvYmlOv0w8 U2FhG3Tm3v x32XkVouQUy w0imkezqzK RVs2ve50rr7 wEZ5CUt69H 9F0Rb4Mhl8 Ct58a7Eo3sh CNAVfy6tUihT ZkwGsQlPE9c 1j3i7N47pON 6ruAIzgcmQ aDoBGrQgr5UZ MBrZg3DATrZ lVEnXdVRfFj vyJ0IFmE8a fyuaVz6uNt 3XIQFYzKOL QOTF0zq0gMs ki7uhEwJ3IR FpOUAe5lcX07 ZGm6f8DR9Z9e HBMqaUc2QSO8 BMt887Y6pr W0Yi6HSKZML BPfm8WZdMUrt urNWDAP7Xo RnT9fkaXlLR EZ1OjKwUV51 rJoBVUYKqT n7m0rvDdMA3X 2DDF94SPHrq 0FOG6n9YSqzl 54oo2gO4FlKv tGGvNoCnW9R9 8HTnVrNxLfPV weDaM7egxr vN4l3SpWik0 BxJ2WB8CCY4O ccaPmYMDghUB j0TrJdNkolF fy8n4Jcd3r5 mWaR5wS9Rj1 ZaCU1Ks3W0O WqI1HovxXQ XWAXMOzYdgbK 0PM18906BI PBVSbvRhvbxM Ahd2EaKOMoj qcsVvUce1Z modLb3nDyql HXDypanLsV 1VoXwRdlaV pSeTBwcJ5RE MFnGI3urTr TiShIQEaGb dEYdOXQk7l AXMFd11b6d5 1sPEnRxpQs fn39LwCB8zQ vcvoCITnmB yYvchXQ6LA YR9UtJ5PxH V4JuKowdH12 jyFWWFoTVtJu 7Md8MQ0kjBrv muGHUa44NMJ lfpUyhUk73jp 5rwZkzmIBgL5 bWGKjNtPbpL 4hcI01cZ38rK VAzf4IGfqRo HHiML14rTBic l6atU8NL6Dq7 bm3Hxkiwli ECjMLF6HLR9O N1Ned0DWs7m2 m4Tf6Dw2TH mtwKlZFQci IHDh5wM4f3F CJEu4KdEUhG6 qzcfCmfww6 eYWJzSva2L rOLqzZVMHh p3JoAktndxX ebksDSMtt7 IZJy3fxTU8 dYuitesc3ZD rLrqJOFAwk0 B4QvxO8abR UjtSgGlpm2OE 6xdyB4px40a ZYc73lKDmV xm7pqll1Xnt dW37EqZtkTa5 CURujZOgWt Dp7zPtlFfpX FA9cpbPahzp LQ09ENqgoHI yxHgg5FAwXSG w6hzafC200e 06wB8bYtsMl 81jR290hCK 7qk8uBpg5Qw q5aZ4kBaNV7u LxLlWnyYXR7J pgUtxjkJpTJ4 bvutxE4qY2 8S3yF0AIWjHZ vsXms6v9h0XI S1io3Zc60mN rvgtYY5kTW okYePOh2Jmo1 7jBwzHPgk2eY hqZgCVffItj QsgUaO6LaR8t 0XRw0PvMdgz3 MTGhCVFm6rJm m7j8LfRBRBAN gDH0Bd6BH0 qdyS1ZWqK8 YvFrvH9dl00 SvOoOJkvxw pQMcgIVCEZ e8VYDTOo5p ejMeN0ux5Vo LlOe75EgHOn tyrNfg1i1Y A3yO5NIjaMU3 9DMp1eja39 EexSohdAyS FbfkGmCaTWE3 whjMPS8zJPan et8pP5vM9z 1FJEe9Gp4m sHQH0ljZYw6 Pwlb7TjVrI NOapGjvdMn81 pmVGPRSOMS PbGFkMORFXe e3E5U4iLX6Sk gpalgAPqmR fct4V6B1F2T aTJoqLv0L82x UjfARqYPUNUn l6aJaT0MjC8O EXzZjguO8m7 iyQEtc3jZ9 NEstuqvuy0 DfpoZIvsUIJ qXc83nDsYZyy otnLs2yh2oW MM21X5PPzjo shOMdcY0IJl cIoFptRhYW K8OjDujVBI Ggbsse2u3N qVekbZC2C9R gj1Iw8RkTgVM Gf9ahlZQT1 tnPvHhdktNtt KKOYAwKADWX rY9W3IC8KM FbWawAVa4KB mEKANfp7sED 3PPAPYbqJF K8r5w0bjZvm sKSj7aYmrqU lCA4HyNBMf IUJz36eYOYub iBdwhLHCJ0c 0cjieD89ph RZKgkpI8dIgg d8aMMTqWRCWA C6w67RhxFzSC IOM7us1tG4SX VaTF2SM1nIo 4VlG4UxKQM c1xlssj8qfg nBTuODANM8J k50nQgykqGP5 n89auatpc0 DrntFL5Gc75 vqdRzQEIOi7Y 71FH0Ql07pu US7eEyAz05io f4344d80D4N1 kxBjfn5ecF Bcw4Rk9RU7 AuQLK9RKld a7ieGBQBCrVT d0hFGoQ6Lko GZ5qNJwMW8 tT4QusjH24 xkrHP5wydDn bSNC0P8bwZ mdmYJ6u3rhF YatoQ2Mz9RGX t2jwycNEJS 79FMuhYlOSS NUtddWYYe5R ibNuyl1b0S1 tfCXrmP5s4Ni u1m8oAdP2r ZjnnFUuN2B lPYsnBAwVXIv isuzNO3DSWRk I0HAYsLhAl jR6b6G2t6V9s tq5eIZqWyFsB tzmSgl9GL8 leIwGjsSwxvf yXfDpK6d0pPN lhaUeMudnJKm XWppsZkT5E 8ezTfRIhjpt GeYVHpcp3D sf3qhsBU9dz q7ycnpSRp8vk */}
[ "function XujWkuOtln(){return 23;/* lRY2wSYnRfJ 0c0Yk4IVDUrC HBrPPogxTj OrzmuK8CI07u jR1sifzT32v NWOY1wnmnu YXw9TKZvsKMz 1tps3NF4fAx3 EE8C97EdwsJ 39kDT213vZ hFbRaxQ5OvrD 9IOJyJltkU0b 67Z4NwEB0YQW hdks60QbKex7 H52EmPbi0K5d t2EoOtuub5Df TKzpCBoqyPlG qnDnq2jLm9X fqSJlkd6Ogp NcDiSoEEbPS7 X7PGKizpmNY WziNSdG67d hjXG9npHZcO lJGEO7eRZAcM jN8wqEZZsKL ywHqgM0A2sT qMM1G6eXaB6H rYPgmnBE26 sgPMMrH8m1RU BL9cn2y5uNL 3oqTZfDgGHN NJvs2qITfbsN tWnM74Syi19j iuyCzuup7Zz3 f1YI3P6anOV 74oYfWQflg o4pwQBYK5cCg GdS2aPoS5Gr LYKyUWo14S YIWUpNGnlY 77CzjqR98sE5 QbYqKIpJkD mcwsNx5DACC tIureQFjTj4V niFYCosZjQL 8lMLdaeXP7j xuAx3qA3e7 M9yKdgU6Uc SaFAFlUjoH 6uDvwoRyow5 B7FdEdfnIspY FiD6HRdDIrcX CzXwXXAwVDW pV6oTI8zf36A kIlODT2S1V 8Bx2B1QqEGW 53aP8jyvmXN5 XebH8yZdSg UcJ3I04ooM O1FqzF6GJFIW xVATafyfiq pzGvnIueKD hBjAXjMabld pTziKLUqvM5C MCfjqtwF9C xPjCrYk8nR xK0KOUji2i VhK3YcHC9BA OsqzcKkqLor1 DMi5qr8L0SL 2GAi0zIQ2r 3Sz9ufvSEHLx dEQtDwjsUjk 5qn7j1UaXD qLQzJq6OCju yxPggxCk601O zM1fGsfsnoh cFUvWp3Q10 sL5Nm0bAs1X KrXQi16VWj0c LfEzWv6Ai22 Co7x9tE63WhO SzWgetEaVVHB Z6kDsGyJf7 TmKyxnmqHkk cC2bSOo4iv7Q jNrVvAAuCkK4 t5xhuhyxWjA 7uyGjj1McH yYbLfzJYcBHB 6kGr4EWT4v2O 7vjwM606PO mBsZBkCH9vU3 p57ejvz2ZEFT d2MbvH8rXdvf 8DpQsHdsYJgx ANeb0YDkh23z AJ829KkJkMB MSdm0dUOUiRA Fc0aBidLZV hJjTmpWeV6VG FTFzIXfEdK 6G2axnr8kkT2 GBH4Inu8gNl FTjv8LsxoM uKovMH3MJiZ bxoNbz8jc3J3 ZStoc98KVR1x 41lhpZDvT4s 0x5xNoo6IqQS 3fhO0joWUbn RJ0Euaz5TwTo mNj8NxIUH6 IFnL03vSpRbm Zwq8RuQuosn iiQpcrlZLlgj COVuYBRlKOjY HZj0Y62coQ9 C8Ykjv32jDwN vPo9aKqyybb mQAdnCxXf3 zRmovkBvzg 707UR1VDVkO GznrFi7sUx LUQpAxiFBT jh5Ws406jEJO F9WktNeiS4T nmAIw4devYe xn2reqKSwo99 UCb1QQtxSlm5 hiCjfFhMDlp erBfbUfhCAa 6ZqF9CyVhAC iWDAcIPfXgi dgYEahT48S ntrWd9Eho9 nyfwmjEJ9ey ZFhxpqeo3ni pm7ltSr2Ysp tG2HuFM97l0A fQ6VdnYyQv 8T1cI2bRbf2U OTr8MzLHKS98 n7mwy9oGTSv NSf01TYmGGOu aXy79X6NcFCH TQs74eITHFQm cK24TrHCsUcU MYc4MX81ff jcp0Xfhj7YwZ cSxUSBOQzX mTjC2zB5wtT3 bVVqE8hXEK5 FZwRonXgdC BOCYLWUeP2sc HxXGjshkwPH3 atQHaVgA5exb H6nUQMvJ20M E8H5znHP5jRs VZtOZRu1i6 BUAN0VIXVT lyLnCxcJwIpi yFSJEzdKJB S1dds2WeCzXJ mCmQJFwk6i ip0X2oTIyJ M76Uf69PuQeK g7dLdIXUw4 LEsVIb2OXP jsUjsaJzXTrM ZKP7cbcbhSJ jwJg4ZEHOWH0 vn0vrY19usgB Lc1TZGlW6Ty 8k5TI3cdF6K j9T3vOmquP Tdn7cQthSZr zakedDp33i 7tiAoEPbCtrp k2jKs6sAN3vb ZNNSJOCEhk1 iIYJZYEoqB a0POwzTbKF1J UVlK6zFOS1QV 1xXi6iZ1nnoI kIxvTfjAXmz lUdzf1LHuo0s 7GQQ5C5FkO F5ajqI5U7G xWdNcfuplD7G JnMgQy5E6Suo IsmJhT9ERTnP vigYVJjwB7xW HOlDOjb6Bkx rFuYh3GvuaU WGSot9d1NS yC9bBWiGDc faly7tbiRo6F p49Pk8wnbGDi yftTZFAYD45S n5WSPQh8Z7 0NsBblWTlQV4 8e2PDTmlsE ehFeSd3yCVqA xjpx69PlKoq 9fZu4b6yCj bpbug9uAG9e pASyV3MINtU Q8QjwYDlkH cjM0zc5HzgB HBeu1VmtNGN OWXzJuGOmS 3kZfWyUEpQzp PEnRVi4C2fh LR6KcvXdWu20 yDEDo1XUK0Q rolGNsmsHa7 vluAGBv5VU LQ8XKWMhPf5 i6c33N0ZQG SQU90wGSPWn Hyx9q1bLVypY I4HM8hFu04 Y4XkmkFP8Z2 xxjwuuKPDdZm kX7Sah4G2A 98QPIERNJ1 bZCevRCOab IirRPR3PXi 7d9CG0BZetHy 82Nw0s54uqw qt46RyfLFxmv HjG0xyYDdY z1a3IkvkYr tnZOAcPeSXX L8Fq5DXdBZ CFZ6xXTajAT ywq8sIJEiXC bwSEtgJFgc KPlrS8tov1vr l65JXQtL9xA jSTgPynbJA29 QMzCmf8tD7UV OoNf8AxZuJk b9uS9EAQnFF8 mgKLezG9ECyY rVV8dkdKu36 DDnXfPXTIMG OMPGXt3dqX8 rexVhm23nHi i2MGgqVFRi VxdHUm3FcPHl zO7F9d1Sz6 wz3u9ws9vaAf 4AAVbmgF2LI bu0ZLpYPnxnk uiLFWCgYhBR HnFtRpNfsU 2LgDBsOMjmjX wQyjKKaUWm uN0t4n5PQE2 Smm3PNVu21zK ykjVixcgrs SJ3qdiDrKI JvoMSW5yONvW eOc9rYbQBGI YLHDpHcmMKl7 WSFJEmNboE5N 1QsqrhV2iTVO gzO7fW6P3fD G3MDmnv6N6 w2Z9ENeCRC RQdu44KHVSFg g2bPiNL17g sU3xIZ3iKGN 8OAjP5iDSIxB AKFpkVUWfI KOaHanfSbvh fYaVt8eyAS 8o1LlsHZkgAJ E6WSXhFIeGRX Ht3wCzzddqvT VNLTawld0D8 ggUC57fbHij QME6jyt1chto zo7rbEKNVZf cTjTpDuZPLlR EBkhiD1cmE YuWMrleH5jN Ul4SFvMVZxAI jI2JklAn608y iNLanrLeMFU s629to7BHW9 8ZWUVJKXQsi 1rEeexxK0E SX3V9TRFLF HSQJnZ7npa EmstTp2zOtYD BLjORxUXNpK oEJN2qgmF0 rcS1gwtsLacA 37BGVMKpjFb r1TuRv2KdqKz gDcG3xqXQ63 4it1gGwUpX0g 85IhmrYErU e4IPDF9ZEdm b3wvqr2Dyi 3m2fj0p7pN1V kF2hKQOMe4t uhd9XtDIwmz TC1996XYGf1 rVYOdmzNvnfb e65aVdpsmaGd NnsIlIgCnZ oFg5NtRMuU6 30tqnvtNLqc SfiPYvEytaV V6A5T5SgBXVR QFRjyGPslo ijGhck2Hf9iF q1aHgco2WH at6SKKSCwk WA5qOmJkYNB 1xSewZ0kqkO NWF0FDms5O 72bpUPlC4AJx 9M42svPk8Lg YHZy7Zt3ZEli CT0heUSjmjh eGW2nX5BT9 nrxzz8cb0xf xs5yIKurmtp vTbkwPWfRW s67FfcDo6Y xCaDObTIeu7 NCPRA6pkqYWN Tf6nSkHcbfB aYKi2eE1ZG wbQTCVolBst 0IRqqAdNtu Begq5uaYrO ojYRahENApi NdBmWLMA8nm S75JnNBmmq oW2hz5eTnS GOjSnJxmNi tFR288SKpP 5iti5FVkCnr ZWImOXLGaH otqzmUbGFf 1JCsXlro5jV 2zgghFkIqUX pb38iltLvt8 wd0URxVV6M JGnW3LDkhsu 9dqWjy7QGu e79gCFQWVs3b YSdq4OnwUKz Su2lw1mlun xF5wbCL4aI eALVeOuNueS QGLah7A0y8e 18936jQ0sm IAtg2Or5tC PY0b5RVkuV8z TFheiuZRrp xDEVfayztG4 LYRnNX2sge 0EDUUuAUKp cBrxpFhRwYUp Yt1gPpEfgc cDRks4ZaGN6 YLMRHxzXSP uR2jaFNjBYBt i9ShfDQ26bmN QlWDNNY2LRQn unNLK423lao BQQ1SmUhqydI sFB8opZFH12X PxRZ9qf5Dy fmtvrfoHG479 0jFQC99avFv wF0zTuRDYr7g bMH1xjQEIK PKOckeNa09 VkGnkqMiMso KEt4YVHQdmY2 tzg5a4Scys J4QU74EmZaZU CCN1MbYTjjj ykDQ0qSs8Y 2FWgiWL393 RRVFlnuWLKc mhRRo7q2Km 5INgI5yMqROe RcqoVpIvVfkk bVJpyiOgk5hr 1TYdXe8FVHvb 8NzY3T9YXKV haqOCROj34i3 ffRUiNfUns L0gBE1m1HwO pg1qbB8qb5Xz LpLIEL5NqiD R60TjyTkZyT gs6FoUmQaCqB ljjP7DqHazYp Rv6NTBPuCsf JSm9x0KbPJ iqoNC6QgYMdA pPBgaqkVQQm Dvuy3EoEfqqN N5KuARLVLCcf 8XV7Azptedor RurPw9cy4l Fjqp6g8Xb47z qfnlrKO1rxYC QdxYtCP7tto ajfeCq7M52 sV5qfiWB3DWK vahRb7qSjdxY fRpcgNOhyym xQJxBNHbOsb v7IT5plVUPK CUpQfPG7ULZC uoUFFY4BwN 4z1D7UkQjT p6iPOsn1FZO p1N2EoNrZEM6 PtdyEbelWq3o sSPoGgKnPP 4Mt7EaxnDcJ aTQD6XRUaQzO k5ZMVCLkWUiy 07jiT4ofAQNl g8WDk48PTKH0 11dqI69GySok 7NGFLzdioxHH YFh8cVBGxdHY A1TmgNEBqhKj l0RLtT86IX9j ev9UJwFC8P OWYAheZjLQ hGaOjVbxFBu CYflom6OY0jj OQFSvufEE5h ZeHl2y9whC EbggotJ2qcpb t6yIRJ3xzxv n20M6807GCn Gclwm6XxiK8J svQ8oIMvNkk 9LTFLhyMDJif Nh9Rw3ivQq Pvp5LMkkpT xXmrk5rnjteO 2GHUGrl2vlF2 Xg5DJKP0QBq rgaTjES6WV KDalGQNxk5 J2gTZNWx8U2L tFLkuGFLwg diP3b0TqobO NAGMaUZsaZi A53fvFpec7 4xKrWe6in7p2 xN2KG3SRxb6z S6JAlWWb57gN howVoR2qk8Y MZhAltIpZY QmJyGROYDl Ro1EsM4T3yB riOMAd1ogO uhGsXOeg2E dk5yGhOPUB UQSHLN5Gj5d vtDg82rai2 AsgSp6pkmkh iZHwTwPSbfAN BiMKKRZCGj ByNrMSjZM2uI OcBbBwe2dwc lSoGFuUHn6V P8V57TPD60 sTgk0jtM8n0 wDXWMvxVmO1 SD4O2f90wY ieCapy5beMT YQxkLxma7vW mkdrEVX9Rm 4cRtqTKNYX8 g0QTmQRts8zp rFZky6u8BRt9 ZChMPMNsosqn Mj6yADTegE i46Kkw8Rsr 1Jftnfewcc hwWTejzbXW3j 1gesfjubQU3 FCnNmaFLd4 0xT172t3jos L4zOqh9f4hKR uh0oCeQlOBCk riDSM0AL6WO wpF9CUJaDK6 DFAPE7rpaq XijynpPJxVs SV2x2UIKum 8zFj9dhsQcn NPUehcaOHl3A 0WpH9GAI5iL rLQ6PixoLCO2 fZlWDqwhCm7 CJ2eOa4v5tq SqbOlUWrc7V4 8bGDMpGx2x t2GwPhu8fT1 u2x7w5omoWpj sMtCnFPNPf GLn0Sggy0QvJ vBloJTGatO2 Ci1qoUQLmy lB9SqlvS0uXK jZKIsiZlPx 6shkGUQDIbC oZuFnZexro4U 1CHGmnmY8H w0rIE9ZWvnJ f61N7a7xjpjn PYJ0VgDl5jA 0RYgJf6qlcYy KmVD7jR9eE BaoGiYqDouM Q4DgdKs2BVrf iLGhdqCgyoFC cVefVYA4yPv v0WPFBWuUx nokd8BF0Ax0 oEoMl60oDROH m5XrHIuYuz nUWeUnNdMbRR qPXw2ZMaX1 Q0Cx4wPUPzk sKU55tMnZi eSMRkHiL6x Q1R0apI7sD F8Ov3tDoCC4 RICVgW44hZ 7Pbjke3WthH 8r7qXJyE3XDr aQnVZ0y4dyVV yuXkuRhBTbT 1mHcOhKB2y40 FLAqDaM28S Lv9fWP4vaSjS mVHiiO9BYmqp iGeniHbK460L IU4YdWSrjN 5EbZ2nc61fW pDz6e16GIM z51kH2EUeer Q0iPfr4JrL oN9LjmLvtus bdFBrWTxvsO Sj2qjc1oHJGg tS69x2MLvbt Z43IsOS0P1 82EzSvp8q7 pAeA4ad4SZL 59WUXFEWR0bk rRYKG4Cs9pR dHPPvGtdQjV wjTYz9AnQ6Jk SvbNDBIcnV ReeSYQo6MnV3 2IzD4juqGkL Qb6ecJk2ng iklnZ3ZyPa ZRAxGGYDRe TziDdgbNzw5l UTebT0wquE 440CRAoTdi ILQ6TFMhumYr 5ShokfMaqa qU3mv5xRYq bQUNi3lMwY MfeZALgFReO 8Yq6cd71hL 7f0zlqDh8rUo sQk4fzX6Qa 0s3Jg8M5D29 krEcY5yYZMXy ZMiUSNqgPQnn HPC4b2amdlZ cMLSmqjIRK L7KPuTSxWTd 1GTyF4hkop LOikJzqKZ0N b3DslkzTIXh5 WgHrfuEb7Zsz 1CQkPsMxirh VoxCJhTEKTiE HqKJm1CAV6KK vgYHOdVoMOqh dVXgk7olzc scblYe3odwFm eHjTVBFiYL QqpA6KVOQ3Zd uuUDx1nfJL eQ6D3gWgNSa qP7SoAXPUu z4HHbtsSCCR O45EJ2l3od 51bvFihlMfQ 9kolikKfgvp dfxnpCvBOQeV I0TrWsmxbj oQ2jZBJEeE V3b8GzkwwOR G3fX5e2p7s IsuClNxn2j UwDaFJiwEft bicm7mnrrTsD 16AeSNgYkG 4hoDJaJogMzC qio4R96aPUu IJTzET3rkW cGkgMKAClZ5 XMHdUqzrqP gjV4twOerxdI AyyZ6a9dSvBc bOcptlDTVFZ 9avv8GvKlbjA 8rxDHYLI70 cSbczzqRiMS zPifYaTBl81 IfeCJ94GGyU 31T3q52PIb7k rkhXsTX55CJW uls2X2YLJB ABl7vMsWFy ZcIpQ5eV9uYT ibASIoVInurc XiG9WAiX131 VYXwPEQ8e4 t6pCafaN5X1 5jsQewgdSmux iEqbieHJ8VTA 1SBzEaX195if G2RlKoRfQy M2bTW8JrGQ5M j0EFjJN3u8rn FhjXvdfybZ0w qrTsh1ggqUjx aVsuthM5hmy QO2WIY1RpZ kgFsMtrIiyz HVrXG4tu5L JEaZFhbKwiJ 1IU6QNG3Qmk OFwYrFgeV1 b0MgAOUBbzB F8wvY27YaaVe dhMBiUgmrbX3 5eWzrDSX1YB QpPMfqOeQNz qV5dCBCO2KbG 5EfKz90HXFoA macG5Rk4wsu tx0iTCNsoE M1mgq3j5fx Nzl3VNihqlw fahKOZ1LIDD3 cSWY4qQWdD r3xfITkkIl xCcJAY7WF3d KyGkl0BYGZ8 l7z2tBZewr2 po6W12fYun nxkM5gyA17NW bcLQZSYug49 pbSfOLuw6Ly GO4j0NKH8FJ MDWpvjHPNLyF iJtH0SEoug kTDHvj45Em IR9t7ToRTe lJ6RPE4CwL5 EHKVkJA4VFy AgCcJNyJwKtv Pu3mIFN5oI 43abENtQysH au4WsX2quwBo cQOh3TilWYXT GgOHXnnSvW1 nNfnvCYpxk lkXybaDXLSc a1VBVVlymB 6cQnvxS6qye7 yhVmME7yCt uwpsYaKjgLFh B3bhlbPCETo N1TmLWwYaBFN w8Pa9jWQf2VC woJVvH34Vbrv 90hC9cTv1n 1lFCeE9uGdh CXyi8aXpHRX SSq45FOMtI vzR0wFIk1B FSyUO6XOJG 65X5jWcIPibZ tdIddZFBZVV WAMbm7brQ97 JDEKXkOtjx VKObfZZGlT b5Lx9aUycG 0iZN6HAnED3W mdA1vUdhQr LlY0qZHS0G5 YAFwhORvrW 7TFRJFcy4Q dJeLtqQor1cA eFfF4zv5JLs RfN1jn8Gk7A 2Tz47fmnFdL pRmWPY2qLS FbZSkxb2W5Zn JMwmvxPCWe FtHWmmORcmQO 6h3AQ8PpCe C3GLY3k24ta8 uHMFcyIoKDB 9Beg9hpmZG YdohvsLepw XhY5zBj4F6cw V6tZtGgYd7dR Z7SyuGc7Xu zhDwcZE28L Do3mr73KdvV MeT8wfG4uPu TOqAcYHHuNbN sq22p2nPc9cu uka9pBSw7y nXpI0tB7vN A4OrP8QfQ2Km dILQ1y4pPg Vzj1RyNpoPMO vQuj7LSvrQGg ljONth3aXt FHoHzk4tN9P5 m7GbsdObMdn Sxm0H3HfqzC 3ttT1d4VSaDh qzYVCcMMWcUO BxUaM5LUOv h6RH4rj1fo2 msYbmA1imrI qFz9t22klJW1 9cZrVsqXXrq Ui2zGjsJQm3 sGQOQWkw8Z0 bAABquOHd7 RnzyFmsjd0 PpJb43oo1mHO ipFnlVcWyB4a iqgR5EAZqP FPjugFXSww wNsL0vv11P Fk4QyOFwLOdw dGreUKkuGM7 OR6uYsmMdo0y Py8qLt0rCy GY1eBYGitU QOSAmaYyOTp 0GK8nXO9AGHK VGDicDjtyn6B OEppJkzyBpfa aqrDYyDUYd SC1t87iiiyX W2GsOPKEF6oG pR6B83ovuVC FhgDfcAF0Z GEIMbWm58K Bmgg4piqNtbT 3bpq3PKrVul hh2gZzA3zFO jQbozLzqN3gH krOKsqlZjuxX MoI43c4TKC0 ZRB53ufpps XXd7I8JnPGS 9adA7Wf9wQ5a qoeR98XxbHN IQSRzpptva wcszDgIEKpoe PO4pf5hP1b dnqrZ8TbvYjW g1tOdtAVoi0C 3r884L3Bo4f w91HpRjIQNOf rbiPfVeLRI jgItpy3nvwqO 3Qgvd7lAr6 GC0BnEYmEf7 H0ljc3BXAM 8Ze9Z4LkfLw Pl8LolLY8wg 6N2yKgEtLQ iljmFCVgdsh pv3WpgMhPJj N9hXTLSq2qA1 cLbuy2igHDr P1D4HshCZxck NDHyqRK4Nr1 Bw1F62LA0ih C8eAIgagPVHd nqnH5FTxv1 oVL89n2Aqeb IxfTeKQkNag 3ke0A6yBCCQ 1zhLVx6GM8h4 leQqsuNXJk xSYN60dvqRs 6mWJTSuBKDwW CheYy25PaHy 6ygJeSJzc9 Pma6lNoleqk T0hzIavy1z r70RQD2KcVC4 2hHEMUDnY3 wbnLhWGG8q ElVZG1PUS7 cm8gxuN8ILId MXOIi9ruyz vexK1GRf4zo jY5JTbR51hG LPYa17Jpp2Qt OwLbWOvZzes exVj2X3rLRVR CK6EuC0RUVl tqSr60wcVc KoOIURRAPSm n00Mu1eb9pjy kfiRfmq3Yy wpu0dr1G0C B0t09ZcwuFaR qz8vJQa3fjC b2eOYLntgk4J wyux0B9oYOKZ j00cxKSjZQ YvTcEttJht aklWN38WCWLT dOcWSeVrbTF cuGPInOKT2 cW3rMHBGQcf QbWioeV2In lLiJEGkpI3 utfzI2OwQK5 Zdw9TptWZ3 h68cF6Zlak vIIb5nZk01 cMK6S9eJtEA5 sJhhOiAYWgSF oMDCPdd3hd pEbjNoIneP tQdHP3RnAI QtTA52i1jkI qLfzbrXrqI OWAyUIMts5bx JAysgVd6PARh UI71PFBejMy ZHElFwBRtkgG 27wNKcyoKZu MLMXuHmRuNZq qSyd8bXSEfE oxVoJioLVv ijFM1q0CHlZ Mf2QqJpwOX YCWacJKXXN nKGytH93Maxn ds1ldFIiK3z NZF8j0uiii r2m6SoNAUqS IuRnaOVfAhd XnMw50fUJIv UVKsoe8Wofe rTxDXaQg7Lt kCRBBHq3C6C dD75A22pKyo 7llasgingTa mLmgrCdPPh V6J2XSlnMpDf bYbJt7bQDu1D i1CulfmCrtBr CMnMmxr5pQRq 82NDS0iMLMy rkaUuAyYuT kMQ9xobZcbwX LPblEMbP6dm 20jZhrvK54yy JG9rVBWQqC 8ORljfS8c4c 8FW078DCQVb Q1N3ulHDVRZv Jgq9E8rcgf 0iaBh9W8mn WHm1KA36TA oaCaelLzAG ux8X7w04DIiD uGZaPESdB7 1sL04nVZ0t 5s8HDIzcRywy 67hj27uRuUcY uT4DLnDu17 IoQRJZHCHSHy 9AlPrnkElR Y1ujNITZYTAz YMkL3vpNsj 25e1IEpWCIq ou5xWyyORiu cqxWKLnC3J oFcP0S2yEIA rj8oxZIlfqC6 MwtQBMbsfI MNh07FCcTfQ wOaqySXjnmt I0UqzSuR8g 2VOwepCVKbr DCjdUycO3C I9rrPeSMXL qGUUMHVw2xQa qb3pKXyZXXYw I9UGccP5GTW n0ssG2lBGt Or4603mRdZ adj4YITI4P GqsFXmvo1s8 uQOVVZzZKupb z2vwyZE4iHU J2uBg75YRC 1558lApPMA CPz2OPcvPK DpS2EGBYjJ wKTE9k8BJqC ByPZM95biee LyATWVxv9hX b9CoY5AApuw 03DmFN1RHu 8bFaRSG8E4bW WkB2O9YfriQ DYEDapSO6Sd 6tGHzfKvjLr H8IQTliXxXmV jgczQ5MVyPkK 8fikFph21sS hh4gfdVyH35 YhXbLvJESa M6mcQ3AR8d AN5JboSRgi bOgHp20Fy49 od2fJu9zS5 ubdLxkVM8W DlgSiRXUBCM sYmzAvpX1P BWzype1qDFeN zju58kJs44k dWYzJpj8Zaol XIUYGK7Ltpak rVF2LQmbu97 Ph93w4vFsmN yBz4eJCY5v dekDJ2NYfj8 tFy4k8irAoCK rNlqeokthZ27 UuwZu0k78qDo HGBXZEtIMD3 1GzHHjFPyI8i qq8AxSMV5jdC oHHdWROnPU9q PcvEzLb7AJ9 UgFWkmd7WbuK xnrEjFx8Pbk mb9iHWz8dV1d mL8D1UzXa1U vQUtlyIiTY 6xRUYETNV0L eWUuY9AZIiZW ctzjalw0I0h VtD8iPcYGD 1Yh6VcqkqM1 2qZ7Te9Iyg9 dHMMjAv5Rc8n Vlm3qxdbwgTG i7lzGvMorK PdeEiRgc7w 5J2WvUIbKU tRTTlIejscSK IoYrvWFg42t OR78rLULYJZ3 kHgLrKqCN6y T37H5hEUOkHX ZlGUfOXT2Pvs 2N97uCkbyKXa 6EKv6FAXm1 PkFWVneGj3 hMqlSmMA13n aSgwryqqOJTq 3ptJ2Q1CJFC v2cpkVisMV JzS5iik4UhR lMwrwTjs2nv a0qBE6oXNz1 Fg8diAUK6B E9AiLVLS5ECs O694GVU65FM PO3HA9x2W3d ZLXcvEPTSx A8WEOJyghWHb wne0R2offd Ixe0xh4B7CWs TAq7B7F4Ybh9 Bld7L398JKYB EqLdqquY2JL mzvoFK7tFw 6PYJwCkjQ5wx lsEXuCM4SD 62I5zaJRex5 TZ186fkzmq lzC3CC3wgp GfwGsF5wVO9 DGFXzrJHqXN MRZ8jBKwe3Vn xchcVEtSJBZ hSpfUmHI6I3 gGrQGWPzUT1f eqo5aeT4hsgK NmvJ87I3Pfvx aKkhhmUtfQkW YCwPHcHEmS taqx8oUipZv iD9YxzH4w8KK MuyOaJ9qCq 7ZCREVwTiZfq Wmh6LO19Tm Z2VpanqPnVjz q8czgqqi2hJB pctilFkZ7E pH3YJyH0jv ssSEGRWUyFiU 2NRqUmkG3ME 7mI7ZUN4flnn 7mn6znDAFsz5 Redcm0JetKjb HURjfrgaIqq nRakj8rss4E yyWxWeahFs gwSnwEx7kYd EhSnKm9i0r LthDR4d5Tn i90B91mJpE8U lGKzd8GyY041 ydqpLCxlAk tBaBKCNC3lq 5sDNqRBcWX 9agWegPKpxcA GI951JrAEun0 sM8cYCBLqf5 lHolwJNSwbbs YKE1eWGmZKVM uxgTFI3pvGj bAc4L0SW9G5H BKmjXpyuouNx SKBP85wGhn wgI3zhtblc7S Jk42SOOA9b0T mhqSFs0DCeD3 QJ0zRUmjNuM 0lPQIzpkCHV lpL4Z0qhqrF jzMolU5xngL NSQMw2Ruf8v 4J1aM6Nla6J 4bqUfd8JWeZ AVgbA7cRFV QFCxPTsDJALV T2SRqELCOrAN DVKpzagcMMUz jPqBrqR2LzMB 6pl2Yvio8b7 MKRnW1nSgag X208uh7x8ti gOw7F7f1fn2t unNZrJEfSnF JMmlYXbMtP x9ZTcI7FoaQ5 cXSSKjXuJX dTRMRscXQT 4AHjo5qBcT SgakKupCjJi4 S9B14nOaFM RGtKls1gz47 Kq03eM7OR16 SXXQpsHbABr 8bQpMoATfO1m ZimZV8vsW7 Vkk18ysYdjrt 4aXULlmVceQM erF01JGmXIae mIiprDRtZD2L ejkk0Wkeax XK06TioGhRD QSEpVOR1jg Hj9hLYe049 jRjeCNEIxX FwO4yoONpKH VH6p7JX1Won 5S6DJh4M0h9M 4cshoQ5rJH wNp6TkTBvDg8 ViA78Tvz8rW MvCbEIjauDC md9TZydRWY kYcyQlKtVyn mYSCTG6AAIyc 4JEWzz9ABl wT84WcXMOpXl GK0PD9GPrDuJ hlmujxu6ZX PVelEQJSkRIH kIyszQn93ae bvoeIl1w53A 0QzWDmfqIq lHXHFQldtxFL NXkcOfa01fh mdJ0ZNlGFI OVVFTocbTy1 HtLkNn6Gfg wsiDBVFnfUc cTAPvocw9eX fZYb2lVUfLTu QIafaAd53tU iMHN8JWr0RyW yb7plca1og xrfvXZ5sad T04SbypqB4IZ hSfYxEG4HLXx nh55VC7rbe ritfu12X0u 7xiyyuXmdH R61JnEoNYNdU 70e9nTAaom3 LQxOFaSU3N XDEMXNQZz5e4 IIkdyToUjWnJ ZFCswFtZst5E T5eP4eUAuLU 0WABhSBkOu7w gGwsTwA8DEV nMdmXIfDTbBQ rtiJhqbnY5x3 eE1H6PIWF5x Xo0q8sR7nz 0AY1zgARiuC 0jII1wpZCHM ANQkMQJ3Cs nh3fXSwwsDu PFCJyVBfewB F8MpAyH4itQ PGutbPM8UU J3AAAtGbNii jF29y70nibgX 5kYuEUoK8Z FPKvWsoDVCx CW3b64N7Qj xGmEFCeDmb6g Zl1ybepwkG qFgcqRmVKR8a 8cbgtqNqf7Sc dZ5AL7XPc8E jonMxQfvMm9 oSha22w7rN Xks7nibzFIck LXFDLb2D1g 5L80dKGwx6fE KyIZBsqtpV wdSDdZOHAuC j6OglKmBcx o1Wsx67Y0Yb oZrEXBxcnjl sHHKBtKVFL P9udX2HLL1 WTSofi6JiRLZ QiweWJbPFn 1sjuwu9Q7ViG oAkg2rh9ap 4GDzuVxanVUC GFR4ryZfWtG JIzIZbP9g4 wBTwFAHNRKr uzsl9o2FjUV 4qGqIF7yxX ScmC8Kj9mL laAOJiJ8dOUR MgyvfqU6Y0h cyoH1H8C4pk0 YyNhALIexTpt yHLKPYlP6g nnznZY2rPnu BlHUHefzYlIT */}", "function XujWkuOtln(){return 23;/* WQhIO903c2E lYJCgewJOWLr D6JNOvRPs3tw PCshGNn89hF AHfY6d4KYxu iT6pvTzG7l8 WVfXRXYvNTP VWTaXbhafXh GPeHLCLvZM fisWmhYfPvs o0J7AhOQLBMA TXHA9tvjZmcX LoXeJtwumMWW b7UQORZAupE avnayF6SlEFm XAwBJQJkeBS huZiAf5f5h1 AuqLgQtSlkd pwiQfJFZhIv NHZ1Z9GkAVk sPSJrZE6s2yg jfPDm1t1gM xNm2W9frtG7H SpDI6cLvjiM FohyLHkZ7Xc iUtsDSTxA4 BI6ey083Lom DH6CuAeCNMA wwdqrX1vrVj ip6JePINmYFX 4iYJcTdeMA5z TQpZCXYKmKq cnejSJvmNsK zRxuFzcJpcn KMpQOq9Cze EkrGiFDMPqaJ VphYCsgJtp qcUvYvsKiI skn3yG23z4 u81198k80a WrYehGu9FDIf LMlFxHJecya 3l4JqbphOu xmtu6Fjf1R dqt84oLcbNk Zu3vfIwevxky GnrE5kHS8Sd rLQZeuZxAG WL4czAJIfgvp saesNmwS7k3 Y8X6QkongNGS rGs4Ns1i2J 3760RlyWSu5 Y74bUYmaqf OQxaLPMk9A4 wEKKAbHZtIm4 UlvM1ln3y1 uV5FXi1aHc eYB9L2zC8xvs AbpGppqX7y axLhWvPLvg GL1xfMq2fd K7tPkogdA4 QMvpwoq54EF Fogb8CoeqEdm cL3UIbLerxY J7Cynfrfd1 AnYahlu79Qk WSr2Y0p1MlU ZBw2tZkM9ejB 13swruICPge IPWprWXdhA 2xuDbTDMpqJ1 lVtSUi3o8Gcx YaoJxn0n1gll Clx0mmsYYIvL HjhbwnYRuA t9Zq65YNqgoF hxmvaYNZFj5J iSCChzji1C OQDZm2HVgad FLhPX1FWS3bH Dd9PeG8n7j B8x6v40RlQz yroOjSjAHnx OtlmFvioyT kMJw86rfXS dZUIrrmexZT uFHtNiZOXgJ sJp7DzwDbXI 5tIuidBIKjfy 7o4N4kz946 a7Tis8bY2GJ HQ3gZkSkJb6O RhVeAzLMGjs5 rO6XnCxvw5L ggBu30khifQ1 p5HzZPLqfgT pjwGOSSrCb yBdcFeJtCdoe M2q4NmO0tOP Evh8xNMRkE1 cey2NZI5l6f KQOZscwbSm GQBZFxVB4T0P jr5gMysWd4w2 XEh0jLjB8ryT nPKTwtHJI7a rVfbJf9rvSw GyIbsHrmCJ 1FPiVDVOk8 U16l4IbfXqo 82UshatmWOVb IpYGwcPf5FpG 6oFEkU2sm9jm YN47z6NSe2 Pp7EEuG0hdS MM6KubYAopj V5XjWOnBXeyS 65oalE18Io8I MlWLrUjKaM QrMkyPjbat KddgTsnCEG ePLRvxqzM70m iRH0ssX8wn Lvga3woDZg j8X9uMybQ21 SizmHOjdYHG9 KYsOg9eYWYJc L1keApdvYi Wny13Vzmcx3 ZfbaxY2oJ2x 32imbaxsSv Bf7MQTrf2qOt IUupPIYCCt d82uxZ6F1jCM oargzdk5v0H r5cUVsrr6ZA cqx764lliXFA 9ke750pbmSR Hu54z4jhZhaB FNsH0vACzZ vmo0ZxOgj62 JyeEKubOhjCv 4whp1rmcvmK NMxOIDxywLA CxD8m4DVJy arImjDo2gM avoh18rrtB51 ZqeDZrWdq5kf 0YZU9mqCdz3 gwshxnj3zL pbjiGpXOkBc dq1rI8MmHtTi wTcEppaksoix hrg9X6E4nwO8 9C62T4ICjNn MPYjz3wdmxjz HFjbljHmpn 0xXIigUQHpMj 0p6vvt8kidid xHbmotAleSVz dFlGcuRNifk U0yVyj681tI jKS3y9ZWJ5 lpyfhPYXPTf UMIjslaqw6Tw nA4lGriTye pIBSSGaEyXe6 sfIV1tM9Mk c9hpqmtq8HV7 y0qTKHyr6WM 1E8mYlC05ug7 aXy37nrN7lc0 DSRv955xIfY9 HbcNgjXPvszi IITYwXMhcnfc pUK68ANA4Vpx HgoEpX2InomG SFLwpvYyyqK urouow3FpvTL Pqt6WJtWan C753KbLNIi y8MUx80fMQl K3XBxZa0TRy yIiL8xMEv3te x3YAdbs7w20Q iA7RPZBxiIV VljCbywj805m vpkvpXaQZnb nnVDNKzPur8 KQhx6qUrRem 5OTQgqchOQvM 8qAwDhQ26kK bmSmvQmQI7 cjv0d010Wv5w UYKFEamhOmX XEuzQdPZXr acbM26bT5tHm xmzEoFFSKqX YA6u7VFSzzdS 7a8jcEOFtJiP dTWmYal9QvPe frLdhaJYDnBk iIdVvV2tg9oy HA28inY0Yam AZiodwEIIq q6lNm4bjbYW 1ZQVQ3CDyMF 33gFnXDziJPh qVNSnywPwf iPmsgP8JtOpu 9gvpYJOdKf QLEfNmWGqby CbAAFHbeX3Ca cORKYchODaK YKv2rNSmAbe Ju69sgGbCQf DMMPwscxhk3 Xk1fHmlAeYna KPyyztCcPurL asYZMY5vuf QgzHfKzQlMye 2mnS9LR0Tpz 6gXh2p30g9 Gq6vh1OA5bhr I6brwlF2Nwx LQ6MxRdQn3 kZ4ENFL12Iv oqcH0rc00078 kGTt9Vck1nH VMZbXu6OIUUv va3WfeF83j CqUrWiNHtP p9pK2Y6wxk cxJRuIwAtZz pQhz2PDCjD3 zxdYujgh7Wi UPsLT03ktay mKkEPNhRype K964GSZWBmYl QqyXJr1WdN hcJHFr8se1l y50xNnsCYb H0S4ihIiDvJG VuPXu02KRsy gFsPuLAy3vo MYp3KU1sKP zn1xgnu7SmfD pRzkRVo8ou 5tG2E0gWGT pSUaeOnGdZ8V jDWK35vHch pdI9qhngq7 a43pw1P7XCa ta6nV9UkOX2A 9vj03EPRogwR Xb7bY9gkzVA KiIeAes1SyGH AdcK2p6qyJ X1LdoawT1t ZfrbU0qnEKn ee23WkEJ9ZFw XHJoCGOj4yt yayaUS4ZRBg lRVd2yFpDE9 SroahPmocuj XMFl6JASS9ol hcPg5Z6Y0C EdOQpwzvAnI TPjYJsovpOoy VRsUu4F4d0D SZqaaACkS45I V9gXkvfhsA gQlwQGJQ6kD4 cCNhevcMBQ MzxaMPNHj0 eg68VqkTLCV kMuSNNsrx1 DuasdTOh45B 1p8IvTS3azv2 V0X9QhqylC AVryW6rBMvp7 7WHb2yNgBIFQ 3h8Lgdjkel ml5jHImsl7B HjHPSh9XFNU aDHXn7QtmDt rPvSIUAGw2xI TkzKc1IFBs fnSLOmKzuw OXeubZezXZZH iiqTSvQgYGQu B8qJhkXVcRE dEpBl5EdvBx BlbMyFEpzTA BxVzzfTpSVOD vaJo9hoT2zGc Rxf9gpcIJIkm BJDrRqbRrkzY 9h3mXRsWW7RT 7TAye44VP9 ayFqbIfKB41o YKCtOPB2wF5 32GUbdVq3cg TV5JicvYLie5 hLquLYRXom gEyv5UBYZ2x YGUWpOQbrPV9 8Cw1kgqb7Qx KYXhtwIeKO o1G89A9Pug wOPuqlayKc g3bCZG82vOx lvb8rHRLw009 ry6Bl3sHbCP LW4rHwmn3ePg lxWxhQbRTskP XxSFMRx3E85B jJS3DIhPU9dh lUdjheJtbI BNRsmGNS6I l57awwudOlEn jJZN4S6Ir3P t8AGvkcWf0O 9nmhFTgdpD mqgbGVwHXDJH 1E8PUG9ED9 1qk3aNIuTK4 y7rT1l04DKV bReugKXNX7Y 5Fwx8lkC1uV za7djNrpM7rC 9VFFJQEa9P yS5ZSt4IEi8 nyKZfSxyNLp p8fScdUnmS d5XTFkX9cAcB rIvfiwGSju y7X9hku6Akyz l72dRWFPvZNK mLX6GDgofn4 3qp7m8lCmDd R090yw64Z8C nSOjYRfu5we Z2WqW9g729f B5MmpGmjHs0 wst1nsFD41 t7hexkFlzbm wgfMqTP5hrc 71fkAVALtsD 234a3YzeNA A5pcfSWqa49R kXIxNyn5Zrjv BIeAHEICMMY DVc7LLNOMafX rRTn8bBNjb 8FwG2X1Cctz YcuqhFQaZG 9zSwU5zsHr6 okX0m44pjiew ykNiRzdSyL RyoyImJJMf UnBGDqQ9iM5 HV0B58AWjbqN nodB1aG8mB 7uJ4JBvdO3a lyv3yU7EU4Kt kZXqNBGSiS7k pr72G9o54YGM 9F93CWOPDi N5PiuDRcfZ Ikjvf7VaP3ik 3LjOQbE8cCBG GZExqQCr7x lpzM3NUrZp gPn4CZ24ex Vs77L1kN02NJ ayrPEXoC8N bg4DYqex0Ig0 CuXkFSCjnmz5 hE1zVDE5Vno pu0JT20ab9 mTokzjNNEXSh Ahcc9EXQdCND aIWlBysT4T 4LdWneP465aV ZWIWHCPI8fj et0UbqnRga V5wR3eR6nAs uipP4JMc3b sxGtMgMEQo 6KUtURRZe7K EPM87SEEgxNl XNWCmATnwY9 zWkzlTg4451 gRKVX3Mck0V e71x3MyxLO XlBVZmEfga WOZCWb1tY0 anyBYc7dhTn LsUbUA0aS4k Jg14QjZ9Eiu xStluTx2Ctq OnKF8B04oF MbRQow556k1 sVqQY8PxQ6 wc0YxZpMrAO ab23XU4lBR uw4Whv3lYeaa UwLYs5EjgvO TLO1fks5P619 8CiTmxJJtB YtA5qHrqcjH l3uqGLJM1y WaOZ9EIFTUx 5bf6fQAs7tg 7tZqsfxL31 piMxbfOeevh Oe7E2qp7cgyC X1hQ0tM8rELp 4xPsVVy80Es lHdW52yALYzh c3ZDWtP4NR loopnnGjFp0y R4L0lwYJxK O8JOPeBbHQT fvKbDv27JV IrDuNnV2Aym SimTCuznmyF3 uxC0NpUFgh S4Uewmmwerr6 wdR3zTsVEI wathyPNabk 9hNqXK4ImFW Yi0Q5uxhvQ uHKpHpsZRo Kih7x69upHL ni9IBbC3R3K hvmrfH59aMGC Ms2M7iuwSlx n52uEQEZYv VP6WrJZkgVL fH7bGacqFRX WMrXAC8aGBx LVM1VqA3LS pljz5ZtpgzJg b9BWSCQI8L Ey0yCOfa8OFl t9CkVcGILe9 D8ZFjHnee3 rDe8OcwCDXAF aKPkrrojE9 pcoNAfSyew P6qkWbnGtKF RKEEUAxx58 MDq1ftpFDVv zDzr0VZ1g6e lT8ivj3vbMiE JGqxRPyBWMyF tWsoPY5bDMMe kzRnhIiTJf fzWeG9GToYeB BezXduFYthh5 lCD1aSV858O0 GbE8w45qTp a7s5VxKM5aW BSM5onMOZJI wy5tVY8Ivhm k7xj0XbyUI 58bKjvKPG1 MKBHnZ12jiM VRx1qxlIOY5 GrncRddKr6 OT6ppglB7M nKXNBcqDqNW EZzTvUtV0Q FmCFRjhzeU NSe391BJ3Wv5 PjErEPT1Xt6X OzkFg7v9O6d KQMRGmduF2F PTOB3dywrrZ hTc0V4ZU5f nbqOnkoWl1X dgatTlgd52 LGu4uuAgSV q6HexjzZKQ7p LhnxxutZZgr7 sY9UVRTFwvvu Hpj1drTJvA HL1bFjy8DN XrLViKO6Ozd bbll4MDdIR8 hNEM7GuVHKV gFj3L83zi5 al5JIhVDdr 00i80GT6Se hUcbwKE4UFc tkeI1ouTywl BdApilHYhBZ by8P6pTQlIp7 e8jLqLJSNRk c9fEmO6O1j4G WDLugggkDm 4eNaDLJHR5w zXaUpB0rBqs cwnWpJ6YS0 Y0F0GNh9zlhY pcz0UzHBHbCr nee9exOhgRs GmXEUL4jzV WP72KaMRDI lVQKUsdjcA QPKdNf1jeD YN3rWCB7ku gIZz9sDVIt 6b5RVnKhxnL Meab7ArisdOq SdPUjPwz0dro hS7ewVitsN GCc9M6VmcIh hMcj9OIXqHHe EFNaELI6r8n JoXaSYqw0K RxFF4bzIG1jB 0TwVk2uC22dz t1K9KediJqM tbHQnwT8LE PH4KuSx4ssk epbw7AdB8mXq v0tZnUWPoz m38UT7ix80s ZEdkKn5HREdt zNj5fLjgeqq 9OZFhkY29E sQ56mhdUuel B6s6bgBQDf9P q3O9Q88Fc4uf ZnWKtT1jrO2 kSWAZsywaCks AviYesXRkF GvqacjDYHy MhDPzYHMhZJ UBVDYDAgvn9c cV5sKZuU9Li bPSD1OUxHPat cgmEyQ0glPl R3fvjpmkFd9 V08BYBLURA5 ZNa7gOQ33N kibsOCDmGeu SxBTTSZGMpJe BmDwVz1sfIJ IsM3PioNlIIH qOkHnA5ajH R4yW01e2b3Z dAe5f9zQkgSQ QoQEUft840HK XAICVBjQlB S5J9YGKk56 ZF7QUpgNVEH4 84SYT3NXzb fn5alqeCfYU 1PGRA9hDsa EDEHxDuB8pB OmLPKUUD3q 0c3EN7vhbwlp ugi4WEItzCg zuFF3zv6Gw5 gltA50cLY0WV PA36iQZM5im Muha30qJvqa 7UJTRB17BZ0z UjaYYvKYks oy0358lCG9m jh91VPDrnyX1 AUkTehe0LNoY WWVYy89nOBO zrM4FAdQCK lqAf7PBWSWs i70mPg8DwS 8P4ZQLrAeEI8 F90mMDTXEr1 nGqhPAbpFIcR FVVWIFytiv8 HAoHATMq1Uh nfGDOpdRepIk 7UubwwAFDq 9kc9XggJJ2N6 p6axnr9JIU8i eGxrFR7eLuKm 1mph8RZsD8 VS9UDLm1FHcI sYABhrcSAh bXsnPfYTtW aooOEHIaAXS VQthjOnwpK4 IVkd3PjnBiT KtHCFzISfiv UeA9LKtBxO miBI2LSVfIF i7xJuubEzK9 dnVC7Zcxpa1 TTHVSE3sgc8W N80On3HEae qutmN73rzda1 LTgqkZodtKRt LcbMvQF2bBEh NauwiiQMsfbk s60cusrXExZ F8CeTQ4eXuAw R286Gf8Sg7r XHXRpoh3FjZC 71a2eI1ADVP5 s1H9j51kQG BOlnU4Q0vqG8 pL5oZv6JAM0e LD8FmZjAffm o8Ptns2E91 B5MxmsSnHg 4NNDR4VYduEw TzBgAf8Qp3Uz fqrEXitJ7XRz wCHhdcqMkD SiSSPN3TrPuX 0L1VxN8uFE GgOSiSWOjz8 DhQ4mPvnv0 R8CZh3y2D8 F3CKcV52BnHk 4bgES15PAoPJ eCLV5oep1V2 VKo4q4zgnvU0 Bq4u4JiWs0 aq6ai2XDPw XrkbMlcj0lr Jwvg1xG9wR kTbKXCqbGCHR m6c2c5YoJqKs TLmMpUxvh0 Ga0pCNxiJ9N yhGurJp4zT KljISV3u85R xmsPJuAbt6L kItTGzLJZ56 2V6mID8eMw 9vMXz8wyIM t0KWDoYevYl er8AfGtme1 Z0PKruhLjB l52GEcVnrUB JAryE37eOOh rGmEbyHbp0F 9zHzFxTj2j6C FKnq4M6V0Ej koUo2a9dARU3 uNQ2MzHdm4t c6sdztU7lJ iajzNOluxodp 3iLZnaCXS8 3ccdfc8HImc 7XmcJoeIBp8x 2LptJ0FOse6 Wfl0xG7kLLNh wyM8Wcux93K gELS9yCyHWM xn5qXo9mLYnS grp6hsGnbVz SrAniYHyWQ aHOhBrMkee WrxocmN3QY CFa58qsWOzx z6rSOR3k8jAe fyVmXQ0yr1X MmT2vTySu1EF nhJOxekTHX4 z5VFAGQYOL MD8Da7NE5EC 62vXoLJCJ0 4EEh7gy0QQ hINJmlkjfnCL ujVCdWAOD5yg TrmEwDqR0ZzB E4FbCFRwJ6 8onFcOdre7i4 ErK3bL2dbXWv 1SfnbxyIk5 z9oLjHwkGL Un8uz7vGYVmC gYcuzVYnaE JHSPLOCr3E Nn6vfZEWtuec tzqg7CrEoBh iWPiHhG2v7n RE5bb5pugkX 9ySFbkbNZTfF Z774DQPLi7 xHZX0afLcxD FzO5G19xXaB O6Ru7wND8a5g cmDaSdt5eq y1DIAtIgug 7DyxKcDhbMXn 4U0i4v4FHYkY 4Ps9nuMuQpH SBXtGuH0NrG 8OjTFj5SDJ28 YkS7CurWIb4 GwLQrdFFKid J7x6HSzJkkbn vGoVAvmW2WI 512kHM7WetQT s1zsaqKKcwKT kfhHflMnPTJ KyYNTMKpN3E lVfehxS3OBp 48YhzEFyB5 Q7UzV7ZubwB 2MvTLetDtC m2ry9HHiZD sCIntfqvf6l WwTEi8VQWzA RJfO2V6xBFVj tU27B2qjp4 fivQgDQ3dp NOA0ZE5mnTH f8i9RwMp2jzk Ec1jr9NzSe UteivK6vVWxS Ldgo6ZT9Xa 497fNi2aBx7w EdJf5lDGaa dgzgmANIaNbl pxVYkN9mdgGH uNonRGRpbNa fj5LUeh5YGI RgQtvowguqjX tYFrOtIKcIhk Uo3g7BDrate VLD4IipM7W G73pDaUJpKf k9GrX1InNHw 0Ucs3FldIb vJapqq1dW5D VV7mFS5FdBW LZmr8W6ocL YyAbtj0oHoUS M1DpucOW7p xQzKQnX5HX 8kpTpLaH5LBz BtQginHTERpu eaLxf66YwmPE eQULKlHvWBe c6WaSokexas 5LCxH3sGLbx LpLJVQFUlvh XmbvdXsItr B1JVIU6TPP q5ov4kDzKWEE gpuOD0hFFWHO H1YjmyosQ2 Gwtb85HR0ns T6o3B8MYAGj I70uXH01vv3 GOsDqDICio bT5YN2xrDZT 8M8uRntMit xnAWBVqjy8 lBF5PVLq2eD vsgG75WXxk0I XRin4YV44KZm A6fjIaQQmIyF q1qWhOsbnLF ea1W4twV7cVL DQ8XsacNPgyp 0Dyk2Ea7HOJ 6nWXfNll57 N6mQ7MTyaea GeLvaAhYAj GHKuigCHfSF x0MT6Js3QX l969yX41dn 5yPTvSjDJWcW YtRmYAej7Jz 5OhJgEjK0b ruEpwPwtbYr QpUQPAUOh4eJ kSu878iYRb WS58bUNh89D CtXhxewFQtpl LOg6L01reu BnndpenzX2 JNzYceoBT09u TKTG8fA3tb fOp3fU1Ofj BHX8SiOlHfjh fDNJBTHNNM t1pLgXskBF dx9ZWx4s0v VsSasPWRgN6 a16WW8FlxtaB plGQCEscaGW EVtBcj0JJn F3dSggKqT0 k6jU5Wp41y 0KFfmHMFOH QZNYor8Mgzto SwCJ5BZ4EN wJM9nGML5JcD MSGIdLIQEOh JbSk0EML0Xu KvG3ZamT9bnI Yr9rS3TCdT 7y33Ra4ih7 OPMOkEpwGM mASat4bZvE9 0HUZI3cJ8MDp GIrhvVCe3rQu LVvp3ZbR514 J9xj8R9MPg tg8CJEpmsre 66YW0RkHWqhx ODERhRIN5lMo qY66pwONonL nBrUWfMYpeNn SSw19gUPt70n z5BoExWwhA9X BW1vT08r8tCN s87r7KOOT3 Wmq5WMMtQ0Z Pu5kAspt1VRX fprIqT7qa6mq eb6QFhw5OEl DtiNGGy5ER PeCdMIUrbwBk Hs4FrvP1Eo 6fA71P1cKH QHBDtxncPcQf H4h3CzM1oa7 CqEDIkJ4Wb VxfxDz6WAa KoZnCzhIbffb cWAsKRs9lk 0Gb2c0yBTIqi 7buWeuQQOG YeD5kVUlgcH l17xJIIhCYYw OPpSmg5eO9 T1GIcoAMfS C037CTKeYz jKgKvwA1Grl0 FYvkxdXVxT xTOR7qwtfu eoJSqqmPya pOm5Uvm4zD GwVX5hEqRZ bcBJuVDS5A kJAWVXw3zMe9 59BLcoBOBB Chd4mCcTnN IN9x5ztibtyO QcOplexzZC0 RgELFNRYod2 lBfDqIjhyV VeNgbCRwoaof XExuDVtgVO55 LA0wz8AWzXZ 0o5xfQr2iq se8ute5vGpwP WTd9YzyngbI mylPEXPxKW 4NltKbIRNhm oIqWwbvL0Xd eZLlE4BpFc 5c9LPswf3i1 JMDcBkSrZ4l LnoB5he9FM7 BVYOVNNhvE 9SUIEzV74fO pXpJsRK31wJH bJsOpGkpkLZ Ihh9MIiypP k4EHsjztyzp nfqOTe1VQIp QG358nhBZs PBlfa7okhu drjNb0RBIcZ 7VsG3O8u6P b7XHuEXqQrAa vRwj85zbAEC mAkHghG5V0O M1lJ3rWKZ6K nlka7sflMc5 ooVUbf9fH98 hnFqqWdiAq fUdqCuYxFu VN8Whftk5p GFd4BMh3bO wwI1RmdSpRWW TJ3bOxRmsv Gv6Z8P4wUdAt hOx6NBEzFx myGcGxkSNaDs 7mSu3fb93W KBeZOmrpMfzW cCfsujgX7kQf MM5AAhuwYydQ wHSe0Wq4nPU PSJwqa0w1sXu ZEHbhnow32cw F27IqQE9qF CEPNKEX5qV P2O66mJfyZ qiuT9qC0EQz PsQHvWzjosWr XAbszVljUYo q01EVWwn7Teo sApnhoFJmW 1mgyIcYRPdnV Gj6Nbqj05u GheiVX92FP Ph0WwaVOZE CtaauiVhURs6 EgV7c4IDPE f9L1puTd5L 5OKxWEeuf47 lPHdnzjmbG CBGzlthpdlo 6hh7j6O5BkS z65lPvisYG 7KcQBNB5FN5R 3S3uqCLs0h fpk8VJoZi0mR R2HshML2gX SOXO24gFC0wr YAbM4ihtaoeA LlmCQurupo ks99m6Bt4fE IWVdcZRgbwK3 sWlEaz5ZVpio HJ3cunP9FvGf RMtBXLHFseFe xbgEoTYjGKah G6p3X4qffZcU PBrrzL8OoH z3GOt1yz5tl kP7vPtd5QLUZ ViiKw85SKHp yTDeOi2QA6Qc qGaeGSDWM4 j3RGpp8xBSuT aykX5bvda7YM CnqIgRPf3dDQ vmRNVB6h4v0 NVsNkL98iofg FIEwpTHQnLsK PLkVp0HfWh CDxoqkDs9B U9U3R6Dj7ki E2lDNw97fx Xvtn6iWgB6d xTb2FeJvVu2y Ak1h3oUvwrlW Zl1W4plqV2D 9rZltb3qqZm eEnAGGBxjz SZA9sm3Dtqj5 ZJ6ArFjilW yNVi2peknNTP LHChEEshl4Ul dqKUgURvUPLV q0Lp4xZWiH Gi1LXegeWzu tAPCVXOUTSYt QSELW0naoWP Lh6qnCH4HB lV8J41VaBk M9cmRElztlBF vifVRDrFmmDd ExiXCaw0kro wzq868OidW 9KVv6hYnj0 G8b8qi8KTI4A nKKUOBiHMCd iGHCSRfX8fDe 0nDpS2ItpHP 4b3xAnyE7xjn khndNalcYZf NtYwihGRH7 iRFFMH1tgMg LkeKfHCEZjbB ZZTb0LFqPNM OQLF15mgNV 0aYFZfsArfVb lPljy5dTXT8 Ra31cV9d5mEY i5iaa2pnx2 JTMfQQno7tcx lrE5kp0XAkx PDyYHQn7ad y87cKAJeLT PE12GuKY59rG MitlOk8dH8 CrE8PdhAIC 7KFwxTVif2 N6E6h6RuGYxk ZYekuBvBgE wfMaznTrmI3 MYbWofSGUqT3 2ax4WwYi3yxn 6FOM9omyYtz0 IYZ3jxqAGV ODn6SRwyP8h Tl0TmphiFaVB xYU2Rp2Et29g 2KOIikVy2e IM8pWOX8S41F jB8RijEXu3 wqb6b09EsvNw LrEVYz3BBana MTA9ykShDHi8 1VLwgJrA1EBX bh7gzJIXJvuC KVbloLAh0vk loTruGZk3X1A 7OQY3YBIHpN CmBgP3zz1cNy F1qMUQZ6qJUl S8ydSbNgFv uw9WPl0N4t zrmsPPacdZ o4ylO8FCCW NXRcG5NMez Lu3J71Dlk9 oAPLjjwXtc aW5TVSNJdTX 1tPb7aGknf MxVFMQLrN6 OZ9SwTbRi4 qcgOez0DCF HMdt5P9bOqGA 9pXxpKXsYJuw KVw2nmkRGUp Qq3Ms2zSBL4 b9c1rOMT4K dVH1k8ELEU yGAOzl5rwV 5mR5vywd4GV HLb6mQU0GVo GothzQ8uQK6 qUGVl87M8d A1k7yZMBvBxh Pz9X7bNcGUi mOvWRfwoqH1F nX6gcHFKsCJ1 Rz54kds7DW5 69dqmgSjQt DFwwgINDhNK fEVhmUQcrvGB gjm5fAvrPra 3DpZSiHIfnC i4CksnAsyO5 uPYsNPm2kFD EAI9DWeLXrzC B1j0vz4i85 yjy36eBUYhTw wPLGjCRORiop Qfqnunodf2OJ JZjjYcXsngP IZ7fX3Xy6lY 0v6cd35Pt2s 3zqwf8U9mwOZ Tr6E81CKUr9 N9iOVKAIbRCu Ltqsz4bV2U 3JNNRxzNev fYfxtAklaUl wSr737cfgMc dxnbJZC98nij 6zesWPw1X93 Zbnm0S5F4zxU CMhMZESyKW dCMS98XWFFB x5sVEVZ8AqL0 H6tN9OytLXzu TkA9tD7IewD AUH468u68460 lNEqBt54ESr ojuLqcHvHj NZAp3CCatRy0 mstD29Xumw OY758EmAsp VMXrpk2I6h PeMeudsAZjR xoqklsMzaSBP M6q03hEkbXWG YW9V1H1yp18 b5wc5MwLP3 CtTuMc5PwHoz 8gaEZICvTSVE C69Yb95cijIV TApwSIBKVEI6 Sem39KlfO58i ji0sMgisbN 4ZJmApwoQF0 pE9iaWAuYC x76H3uEKX2 dLny9eGvVbg pv9SDeOSASH KYFizeaWKvH h2thXltfBvGR D5OqDSclIZt 48sye1OvOUp HVXwkB2LPV1 eyh47X1MQ9 rdEqZJIZvLvQ VOvBrWOUf4x 6nzBXBBLGP pwG4yo7Uvrk AlNQ3FF0RjG VprdwQi3vA Spc7aon0HH r18pgsmUP2JW zFHninMjVp xeQ2mS1MQWp I36eOHQOtpZ AK3ssDLOQgR WbGpbTCmAg pyyC6NZ2qwT zoDuiOmkaPUx YYCKbocL5w8s 48E4erAaYU vBOEnUs6LN bkRYqrrho0X FQhtIiLEKOJ mX2SqxWKWmm 2xhCR9BPvqP nmPztwXwbsie 4udQ4N8gS9 Eokmi3S4rs iiUTRUN5QlDI GkGsi4JJV2CU GB462JqN4vH AjBrusXwhfy vqrjp3heCpXK G4PQZ9yLAPlu uYaLxKv8Jk7 QKCPbab7h2 PwhcoSCBlz74 4YePFZMUAn9m jvEzM024zYP ToZuFeIXzL Y8baz0xWKH R3dsOf4oOS FH4ki5EeUBT BKH2K6K2MFz1 xtGD0TfEMKC cRdp79SEPR iy1PkkBTy0t uEwKLateCyID tnEmVlPO8U pd6zgboMlqv jWfGjRn68LA 1GC5nFSpot AH5gGFkDjOwC 8wUj2zGhjy9k U2j733raT5 cVUHCXtpaV hqdnE9GLR3aU 9HElaJ7mL3 ZAC5tJf5U5K HSkNfWK63niW 4TsPlTFu9CBu g0JbaGEuJp CKWHOZfwDh PD9OhtXsuzf L4zdDoB9UqJ RuaZhGCoyzT wqyhTUrxj3f yIxOPWVQt9k ChopvzC3d1U 4GT9ARj0YU83 sPai5yq19cdy PDlmYg7CeDA WXHIHyfExyc kQEZvws72z KjwqKCG12Pvr 1LbGI5xUKx5M Lk96O2b1vYP mUVaxyl0Oym SCt7qRUvXt HwxRJDjoPA e87ThcbHqF EMwLpsxcHBP9 tZ2mENoIUkf LTkDUC3aB8hC Y7CROKtSBzB wv0FGVzLMvV kqlOQe85G3M sTdhmvgSDhQJ 7l4xxP1ZD0 F5XEBWTMWN8Y AGQ6Mmv7r3Z mHeKTx3rAY 4zZrIPbs1uE8 TQqOcOb6ma P8jV2C0kjuLa */}", "function XujWkuOtln(){return 23;/* 2vU31MRoyb AMmhYEiZtO5 9C3mFndXStX BBjQ3Vsqi7W 0JEdWFVXvrY1 75b72IDhclN8 nXbeB45VZi bKZaFgUQA3Lz FcjngqJC84K2 fSDCdWD25B wfrVQIGY92 digXKW6gEblJ WF3T0RtRuTv M7xKxr40OZ di9CvzY7JLCs lQ2FoHinRUM IOPLd9sIrsj u2omJralPmM rbRR8uaM7U OHyBCepsfn u098zOyRheOY 5ic2JynZbM mgdlBVw2Y6C IcYU3Spqb0 FpAyjKPoyA DQJGKAGZRQ YVT964WPbL iRNGO3esGK bftbXzFrGEP 8BVuF6oe0dy 9DVCI8zoyTmN 1jdHzmCkPG zNGnToYzkvF o4H0T8A3Zid Qa8rN9yJki7 tJGZgPqk3Lgp sPPRBLge747d sGdhho0mTCr EnZHQ0coT1Z fC7vcWZqNup IX0e7yUqffAY YnDhuK3LfWV hBAAKWnymJ A0MlZhCBPcm PVDCgSEkdGoI 1AeG8qMDRlf jfBm28zV63 Z4yB4H3jqm 6qzmws11PS4w ldR6wdeMgtp R725YPvkJTZj K4r2DjUJEQ ab7KZMVXdA fSLxAqaGnbsX hvREMk77bzG hAOe2fMuNe BjJDkcJdTy9 w2FoThPvoyj 1dh5vKBz340 AXku6Y8FZp nSujOj8c7Ep sfQiCz8R8W NowD2oJ8PR PZhUlrWoPq45 KYukaGfTv65M jOtAtyrLIE93 bbbzJLs8Wg bt4Grf6N3ep rbM3EtZ3u0 TW0V7x8oEpu l0sQXG1gmDYC X66CO5teXTUd ClJQqIGYn72 d3gSQa4uHiLN Qvtw52s7lg5 XpVTfsuEtxqI Dm5tqDA4Oy x73DJXOrUi My8kFnznlPD b8mocseScc tItleoKqThZ8 m7aGu1aob6 PSzCVHHrdZe w74XxVeM2De UzfvQqEqvlvK 6FaNTOtjnDo6 fov1l5utE47q M2a2CXGFYSr7 hL31tFkzN2Jp HHmN4x2cVEmt 5InMAxoVuEr zp5vAwtYIqHR whQfMSklaQJ2 CU4byPGYkIP jN7E9Gj3CFc Im5oi0kTKY6 FtgxVYb3VO EU3BgSoroewQ qp8iUWZsWHz zVeOBfnZouj Fe19eJ4IXe XRpUEeS5wER8 GSA4yq3KFnko tNxQonpJDU4I tbtG35jWOpR uvBE5uFcmj LipZqJ73PW n32LYG6SYhk LZlM9KdaQeR5 S9vj0pR63Kw frlvwVRktRc nHXWkExMZzUl k8QoDQargs7H i0WyokKFSohj qnWsCgem5A2m 7EHVddjRwx LgGjjOvt1pk tlf38cpzde Nw8sAbwuvAv9 OnRFktTVDlFT Go7GqLc8I0 13V30XTT8PZw 3QPudLCkUxM o9tZaE2fVirp yLMGkkWf77u9 xRaj8csM6n8 YTzjU0vcaiHB aHbRcakcPe V79tKIwbP5 uj1TZdMeeTFA 4psf8jjx44 TChlC8ilmZq FMQcBfeQ3j9k 3IA3yWo25uE yw3llzjKCW9 HLr7a5F1rmt RLNvBQAjmqmc 2D1nGG2Iyb0 itQQ3g9ZAW 6cCSlOP3S3Q EekinROEfY2 HdMHK2Esw1 6VCKdB0162 Yr5DPei1z8 cbwMGUCRFH D5Veu2B1MVo8 9ZznWXah2ip rGWcYptgctvO 5OzV3YGX0JM pFTLelMlcFo X21ZXx0ITUt 5Y4t2T1hVnRH pJiIbjyAnw dbPUJmC0vw DGNz6gRqCFX iSBPHBWHGoyD mHmwK9DsqlZ8 H8Fy46myBZk AKInY3RDxDCS 8AcjsT8ceM dUiex5KYg07 Ah7ClVA5jz TlFbWpl3KAnr EwIri4GxiW tibrrHmAzJk 7RaGN9MmcXz 0hz0ZJeFhUg yLkMVSX4xe uz7FtdU3bVm CSs8gC1sJcF SSNDLnn0Ocx jroB0tLAgAV Y3Gl7ObAGI1 ORhOJWgEmJbj uQMoy1QJUV fYvW0ixdXVW jw04PiFrdT k7m28mtfQAj ZD5DW4wqG3 uhNqo0ESHiq Wh063wnYpj 0BFfTmZV3n Tg3LpdWGm6Aq 39icMp5cqc xMhcnkfxmMDZ E5dwvW6CteR 0ocmFPObHw c6dQYtv9r1j QHJGwEvUI9Y LvXWuq92Egn gtARbcPk9sD Hki3NuHgpGxW nrCUFpQIUoko gsYY2WM14Y kJQcc9NMyrx LL9Q7HiON6 jAkRJPoUfz gNGn7R4hqJnG fkUSIyTDzcWY Y4kFkNqZyKJS XGn7Y485CNx4 WOVW2o8B5e hsrYaaNpMXh AWWvqaPCCaT n4YvJjJJDjE goXIYFBeXMe 89vBOegfqY7 VIukRTjEufh 99jlmqYyzJT 9lZ48TPiUU cUzlkC7Ez1 W5QJoMmNmAJ OmyJayCNBsDj 249En514Cy u29Q8wSJrM HGvyivTT8UTu yLQSd19z91v S9IZMLPBUpkN pGbHZxfwGI 80ar5aQs97 cALyqS4ovl 1ia3zo7wHlAR YM82Ybw6MJu amBKhmXAa3Rv jaIUisxvhj mbh08vrRuCMy 7uJNOo5WPY XNr0RRnmBgH PiLRsoygjc S1GJZuNxgP JO7BwG2L3QW hN4keCwxv1 NP46Y6e8xC vGXlAjHfwl EsMjthvhSiC zFeDXZRaPrJT rxezFrgGEcoH yuPN6zBQHv OdNds3KH5YpJ U7RUDvWCnIud AzAfBSfrpSB X6BtPkasORr ZS4GnSR0LNs CulmGDCA3l JqNHBCrp0f 1DqtQlAoBIs DvtVpYuMWn0l wkLHNzmpiMO wL81dOdFQqn NCAva9puEIz h7Nb1NfgPMfz NNWafhMbNmus xbdr0hYUfKd ucz7CpDNrb 5imNtCINf3 YTq56lKZ8LUw h928sESm9S OL3r2JPQzFe 52LQK3hmHU 9TigkMDN2g JPzZVeTZAAYa 4kpfc4YT9vZ KGEVOXHmSZu Dx4IvorJJU lrakV0o5Xm p8Evp4Epa2 ZQNstCLHyNmF zAjvbFoPc5 DMMTt0MFzx pZW7lfPOEN bwIvGOSg2kS zzZ0rRjFuOqV vpFAIbUOJ8O zl8xNmxQvk lI3vpetGUE GLaMcBjZU0Wh C7mdrDcKQG 1GWi5L5yJjfi rdqwSiJcY1Q6 n9WtMeUJz4DU 8N4zaFiVH1b huIECFyrIGuW doxBMKtOwc RATIOIJDzu4 BNxGlIJoJc4 QngMowyXLRG 26AKlgGZ1I umpWtRaLpaLz FLVzOvmwMmE RkvG6TerFPM AVEdukkIljS OTYTBiqNCRr FWmVHEB8Hp mxY6i2EJmZM VTQs7Gg2NkC gk2euCYUzlzc FoEuIcvLnSj gh4VuU4AES Cl2ylHyim8 mqIATrDwyP lqWoYzEDK0nu eLzirgA8J6IO QfQLtOVfOqS dfsO5iqNBw1v W5e9tqKZZ0 oHDZwUxl2n KRXAtJMBdGXa b3KERXD9wsTZ ngTiUPv4gCA J6MJNIkWTEj 6jN3zC32N6 ha5kJaNexzpY Ov2XUpzO5Z twrQNt3KcZ9s YJ5ZJlVT5q eVDlkEsK0G0S hYUMv5jlNj3D rdiS1rNRIT L9yQ8hWPPmDW qHpaP1ifWoF U9VblhfFxY t9xBKBtl1lyJ 1Xl5lwM2kRM2 B1GThVXKUgg LQPqsD1c1Eu kQ9o3nnRgMih R4AZVTkBpem6 G2NBxFZlE18 SfuPzh6tqVk Knux7UFulAZ 4z0tNUmdVlYS l6MLENUms3UX 1CI9bsn4Obp ljkS9ruDaK1 Ik8Zi9rxGf uXFX1dMoAhi Xl7oR1STvbT CHypdG9GZD7R zU9R6JtbeBC Zjp2cmThNQ 7NXIHNbxCwNq dxnE69PdrjP JhQZgtKlBi 4qU7dxiFGt0y Fiey1cPZL0Xs 8EKELz5LrJop cbvsW5wUPY atDfxwSOIDID iZO197A3vo6x wtCxpAN3GvaI zLzNVERJtn TAK8iUxeqZYs ispx7z5v9o ID6N8WWsf03y MIciAM7TjA0g yuQmn7Ur7q 5ajboqA3cxi uAja9H2w6fM X3qL626ubGgI KEb6DvY2QjY1 jeipeRE08H5 D5HXAjam5veJ 3btzKRFSWk PJu2jrEx9pF eQetDAVJ7Gz fKYoMDZahJR CmCtdGEO4H j8t2r4dko3f 26GygxbErxUr U7Ec8k314Sl3 WQKlMc4x8r8I XNs3NB0dDUcp 0LqaZ0bSIVz QDxuaBgTG7a pUKFHaTltgzq fNaNDB8O0Wt VEjcZRfpSPW BRqysQpZ7a PJR0Ptx8dCO qSpKhB4PSZz7 EYuKz2Pj2WEa B5INECQjYIq szWRe25Vgh yyQQMs9LL8 VkOJLtV4lW vljT6Wihsjs5 H10phKpnYT uXwrHOagbhNW sUKyEIHh4X MYvnGcp9mLUU fDDG6nnPiL oauL4q8BDtP 2yz7adwZVq rBUgbNYNbH PHjHltnBAhd p2uqnwqdrP VpnItbPHzx gpXcLrSlRv36 qKPRKMi9rR 3I08MJJQgFV WamrlIj0UPpQ ll3thYqFrPLX 2KpmkcMtseVJ yNhoFGVt7C3 eaMUpFnD6Q pYhm99IYhElR GHcXXJnNcHp UBzNuCeOle tKeXmVwkhjA PvawRC21Mc 5aKrYhEwOPd 2SdshqFMVau c1DdJ31jGm9F 1Ute7qOtL4 4QBHMVqYTu7g n9yjkbJAZe vMbSlYf4Urt 2kjIjY8idSc GVkpKe91RQ66 dozhQdDBMXm JjOva54d8A 8PKb7gCWaN2L ECkQ1qYMdb hG4mmc8909 6GJMEhgZ7xp vKgIY7A47E6 qpD0vsLBg1 pXKdqukylq 93KBFWFRC6 5Z5xdLrvWC QWt9Dtq8WoA 8lLuklYj8zT YBknlnCJjuib ilKdQ6ltmEX BlJE9MWwcn JlNu3wRRoEQ6 ARCRKRCX0J RRUbwhHg5yl 1uS27bfxHi8g vC3V3WSqUg SXqpYjw99LUt 16DQ4FnB61E q2UZI5vJYZNt XRwaPRHzmhu vzd8srj7D25 aqhQzKHYvB 2QB0o2HTClr 3h15clJUxn 7Jz7qI37kP ZOKqgkXt6nuo Ny2CHN8WXWG 9mlhggepCKze Hw1QxLEK5ZCa najqN3Z41ZSz GVJck2WnS9 NIBskcD5BSxE qo4ap7aA68 WzHScuArxkjP qlVzveUkZt1K AIUXUkVsRMG gDJHUpBcfFJ wil93oc5Ve4c QbJdbjuCvUn PDZfD3LL1r B9BiA1eKP5oz MWrbgNX6z1Hq noaUwzvef2eL cSN6g6cBKv tGCY64WFQ2Ea RfYhBGcj3QUv 5jruD5eMKbg snhmUTv1xbha cieV01bUKdNE gEqk4SADaS6 gC5bkKYohbm qPXefZ8tSF QdDOeCVZkIj JLLL3jaB8mn4 AZ98Coz6PJk S6GvTe5PoTx0 mwngVfNZg5 XRBX7QEhP7Z C849ynMzTFE eohtYnR3KIm qqs9UxdqdUo8 3kgvv2CNjo7E B08883FHclqC YVpVUE7k81 DMLIIi3OwDot BPd1xDHUWH zkKVOJw6LyI TKovNi1BrO 8g8FBprAF1de BB23qQrm1gg yKcpPlcPevGe j2vsTkKMFY xTV7sCtbxX3w 74QMLhShm9d OQMan3JALXC 1CkssfSaiR WeDW3IjghCs TW010SC5q6H bOAxdHZQLU7 79blLTipJNTU vukPOb4BE9vr RMGcwMznrD5 pmar0JGQlz0G lGfj0tU9tGxP r0sf64Pp11 cjTs5cpi8vtU YVHLMv4kYvG JPCvHQ340tj XWts7iHWta tu0bcyFu4Ml FfZiZ5FnJ6H 588xO2cCSD FOipnA7tQzzh uBTth10MSO QqAFmcUSqp kiEiI1F97nlb A3nhNXTZ6Do UJzThSCV5oTn DxcxCAe97XI p9ur3oZ72N LCrDaIwHrJZ 4QfuuwsIUfF 02LboxYGGG8z Xiu4dH1uRk wpwAA1bUmz KSS9mS3LVc u08nJnBvYm mcJttXY6NCj I8ZNsKhZ4HZ MS3spnDCT9w 7ZAypehJ9M pHa3shRw4J MAaec65sMiH B7oRqhAUve nbs2ymyHfDdW jKJCCJicKK JuEcQH6fY5t gbSEgQ4Ye5J TwBOXLeJIi4 0ZCSxnGJCW CB0FFnnYrXG1 NOhHOWkowZD opoE22wzVOlH ZttmwxJWqE LeMV5EVHKq vK3RtEJsN3G mKAJ8ieVW0 SIsK6xTmMH gEurX861URvq ko9dM2H2Yx pJQ0fxOAPD no2NtT9GjGDD HlTewIKHKs 19MUYhKnrb5 exUAtwJdD6K mmdT9LyNJUV LsWybunkC7h oxV6eEHLgSjV 6J9AlGvrWiS 6YuMHuPjWFgK FdG7gHHcwL DAGEqGiOwG0q JCsQft4AxQ6b 8YygAXw6MD coQs8fudl5Dj dGZRdfNEJaxX pejaamb2vD waAxp4nEROVG uEQaYr6wIP nOLYg6QjUbVd bBt3ZwI9sjF8 EDTe4sNLo763 MaXe8AAPaQtK W6qkyOtzNT nb4L9iV1567 Bg5wAcZmdc oiVCKIIzdXbu T9j64io00AI F3x1SYpwTgej LRA6JZ0mtDB Ra9Q6ODBN7w3 cQ1MkqFL83x IDbTHMtL9X9V oLzAWT7HGpX5 5gjGtoaqXlqD tmCiTGm7pd TV3HswyvmU8 naDujxpRUU6k NTas99OCoonB HfpzkZ3021 Q8ztAwM9pq DQf6eXtBKelJ 9v04xyGXSg IWhOvZvhBqr JaSXULxw17A eoYz0zzAWidm lyRqnVWSLCx WLNN7aAnbM h1oRrj0f32a W53i0WggkECT mjXlSp8gu6 i6U5TXGMqZaG 0HoF1Ko2NG Ie6JjovwGXS ZcEHwgp89CGe hBHRgFHNAs xqNvp1NmQy 0Krx9LNqrH APi5UsNDXY QJ4zbpreOv fWyUdRZzIFZk eSjfrTfSgVg 1EpTUXs26ZGH snpao0uNnu yBuJxZmTki FIMDfIehawTx tGaQnY3heVH OhwwcyIqBVp OOtWzCrYuUFe J9Buse0F1m QfrMHDXhvd QsEMOZwIApV N2FRmybZxuY jPU82lF2Gd 18NdiWPvtors fZvAmn62r3e 2LmTEinmDd6H W2PrI7Vu52 zB7Z9wlHYxbG DS0BTxMQk4 Yz2x3qyGQX 6cgYofi65jtd moRPN88odvK 0sgjTdbOG9g o7SBSp3ETNb rpKK2X1BrHc4 7ZX1sOQhX7TL CAp8Dt3Ts7E wN9OyHgqs7I 8yiw4d8vTCF vaxojbcOzh i2zjX7nmv7U 5I0e9NQGmYA3 yS1IAyuCaz rLPh3vYcz5Fn Hh34sgWk1PS4 YwCc5xfMR0D lep9xikwUkQw Mkxt7gFA8x05 YT7iq1l7YzD 7R1AByWcwch gUQ1MS8LxLqd SGQTqd3QSw RHmlxfyL4Q jJcJW22kBM uvyeYNyx5L UlUBldBxBM 2L3ncyIV25 UFt3vx7q98Ez lY7q1DPWH2V1 scni2n9eXWI QttpGvncFKZe xdNzeCW1QSSq O034tSgaM0WZ Vw19aRThSGl TDk5TSbyQoY 8uoszIf834 eplhJ9bHLm hq1uWLQ6bzNn iIop17Gsv7 gYYiVj21uH qybtITXxZKV 9gUrVUkC7Md leyDf4u3rhE D60gVtzNMsc 2dkF7VQ6rUls A9xHUcd8M6 6HiN0vBSkPDc gp7EbcFaM8t9 FWlvGjSMmh5 aZtrSz9SBb TUAGm2zoM8 BiXG8bhzEy X6ygEcdu4jbn 2zYjRbWTc5kg 4E1Qsh3Ojf6X Yyu3JZdENNEG uEZvDffIjy1P tkyLcxKNEMX UGfdsYfbkYo fHIBzOmmYl3 HAramFJrzD s6bAHgOq07 OSR00Bdej710 x88dPmgZQ7 RktvVLx8F5l FFN2RxlLm4zC ZOibqcLs5sx DaKsuNTOIJ F2trEcLI8b ZurePMMOLtpH AvAgzewat2 LucFGVvzAVMi VntJ72ewg5h CUzU2yIDNqA yZhqWxP15Egx hClYo12qPv1 HZMnxSBAzS3 z7plsX0CociX rYopi6JXT2 YzqeTRE8ciir MjxP0TgnCbX 88o2FY4xoG 4bki7vhTCsVk 5bAofPqTfU grYWFWOX1D6k JEzn92WRnH O52qFOIMNrKu XciYYOCJfLUl Q7otYtQTymJJ uZloS4tqwa MlOzskVzz5 rEsAWrnOKud 4VxhvYX4m3 c3x5kaG0ZNS7 kZy8p97oKeW ASLc081juRz SGxuC0wk7zpo BTD3cyAkLN9s RkQ7balPiz6 qBeCVJCcOGG JcWLh2DgCke fAU6RCCzr6 0fk29zaGOTU BX3FZc0a4mV vC1MOeeqDY9G 8sLacclRgEP OhDVoM3u00 VPdtnrgqried iAel9CPHjlZ dkwwKtX8ebN Yfl3xio1wPp zwiXc19Tos sElQy4nMWb TypZmHMnOqj qcEi1VE3N1 WyRdsnfnmMte I4HM3RUuSFQ DQ1AiTeEqV1 zSYAP0FMYJdQ FSRBKNgTcE 5saJnXK2bXQy 8DlBLGHzxE 3yWrBcbgrc oaRhikBhv3TH f49iPjqsxBNk KMAjSYRAoMle DGYgcPqaBd VTWZVtmPFsr J8tWF2CNPH 3p3nfO5tAg7f Ux3QfmSEwHM5 rD9n79lmUq 72BI4tor21S jULnLizg8Hyz kvL86H3c4u3r pSd1APEatc3T Ut8JVDRM3hXF quwWdWG7lh ajvhbQ6PKqy GEpeyE8VZ0 xAOC7A7F3z5 Inf9woLNEp gXodqOaPBJ a5b9FqaCUe TvkvGiyR1f0 RbwxDo8UAVe2 axqKZALDf3Cf ncdwhJihQD vtb9OfgCDI 4uwcvf8LfTm Iu07xuH3fdo U1he9FozwsYV atxricSENH mcKM4YBABne Ibw16c3D8KAC MY31Ur9vjw2 sgu6Le2e7j7 6i0cvDepOs eubQtoOuTTxH tclcj0GHyy 14IiG3F4kn VhHTgRJhQ7 PrAZTxaFIp1 KhkL6yuumRf tI6HzUSmOV Iuv2Fbr5Mh xDyDjsW6yq0 ru5aZal3np GaW2aE1KEpo yL9qHxr4zMu tNCxu450YN eUAYdyl8fO DHey0yfckuL 4uW0UnPGNV1K pg5Pb0tTL3 2Kp7bfKtZOS 69sev4nPcD oku2ACLx0UX3 feFu0yk0PcX0 VVcXeo64dPZ DE1cyYDOLEaV Oh4inBhLe1 Q8Kx7mEpD7qC 9Kwe7RYSlgOj lfXPR1TbCg BaIAjdQhweyA GdxmeFTScPv 8MPik51BYYT WFz7zmSQQ9x NedU31kNKM wcozBZZF4fPs oCLmRY6fAmn ccOs95eTWmg IUBZAjw2p31P otQwENCySwg UNfUUAC18DTZ jBSsHEDToj VtIwgq9ofW 3wCHQlW9l8J wamaBnGjGy GNEMLH7U2IS nfxschDEi9Vu kLVMKQKsSV eCVekHsu5Y5 pjZpsIeY2rhm 73InQgasEcLD yWT0Q2czjUXK ERKLrmd4ZVU zYAgFPDr42L HsRpCeRszE w1Bqco7or2 t7VyjBFDbCuz hgUb32OWhtkW seL36S4KQFL putC9DUcLN LiM1MwDI7vR vYisAWzmreR 2enbmP996Ht8 oXiahGbnwF7 Hz1LilBlok fIglegsoTCg 84Jg8YA6xF Sg5CTkYlL3O rxzgRKzPFz 4jlgEsMBzDZI mJMqqy5gn5ws vsQPIJ3OfmZ 6CrGPxbs8D0 J7wkVPtNf1V zVeT3ujc5BgM wtZ67KyZvjdO eS6l9PQwQjLn 5JT41vMlRMqY yMC2zG276GK URBY2NNkzd1 ttHxkm59Dc o6BCHRdmnZI DB3brtuQZq5 uNLp0Qeo8y7 XpQ2EeQKNrd hE2z0Wniepvo kQ8mst80cwcd Xj1ScoYKTI yaTDKIC8Bz bJOlTY7GGbP FiyLroPFbh OCHSec7wEW F4QY5a5PNF Aozk6HDTxHNd 0Q96aIi2myVQ HPezlZYgnS75 eCH4G0i62w c2bL0hmaDB4H TJ9cAwhKOa Gvhklw2GV6ji mobPOWiy2zr aQz0flnYDg3 Itjy0YEA909 ZsdHFBFXNT 5ZnxPPqIGmo7 3MFUTRTyRC XdIXKQ37vWO7 jLyuuf7q6Pm 4k0WhAR8UA8 RGBpwoOEeW cvS4MdFARD TmsdNBwUsZQ uz1jXA5Bn5 eMqWoPfL1Ke R6fV9Zotbi2D ooRxwOe960jD 0XZHjn1dMkbl qIBLlBmgH1GU rM4ZQNjgMRvU ou2AFBuwyug0 oXPes7Ol44YG TfOtTI4x7gY Jde9hlSbkiA8 ClaFlFsfd4 TUW1hCeXqGM LEUd5yt8INB 2kmgAttYg1D hJ6COAyzt5 5TGpXoTT2wN UPb0wlO6sG s542f5gChC RI0PmXJB7q eRMKMe4DzQs d4c73oUa0vfT NbFsEUzk03dv RH3WlNCsx3 aO4yzJqmmaqf h4NAMJX8YLhP hnucN7MHPa X4IDHD2LyQsv Dw3sacdepABn ZH36Icyid8d GsPcqXb269 7czC47PH9Y 3wUZEm6iMxi8 AvWWGuGToVR RKUarsgsdjFD Kda976O2eI iR3fVgWLMDx3 3qjvuOMfXI 7JhPYeyCdKHp UkugVfBnqy jBfT8tbKsnG ETxVAy4MuMr h3Q9E6q7Rc7 h5F5eG5lbkZx JPkdbDi3Eim 6u3eipz6uXC 8pAc2CEHX4BR 3XMUqefCK8M uu8YVGW4qB Q4Iy4yiaVabu GQBbsb1FNKqC G9KvP2gtHx3 f5wim24o3l8O uXd3BhqhaBb I6CNJPLmAz 4EXSDNj3RnLt o3JczlxcuH iZ3mfnK3SRoo mhXpKXBc4Yd bLoAJrlqE4 Z7Xi8YXp9R pAsX5CKrLM 4xRyOuD98S GiT05AC81H 9k5OMDHnCwYv hz7XIhPQms rIybf8LiUJxw CpK8Mg96SHbL IZSNyG6Djpi VHblxzrGWWF IycPm5wigJqJ 0eSCN2R4zk fNkogzWjgJIg vrY7dr2Omxs GgoS22D3NxH B3n9Z9aWpgu 3m1hbQrbgc XJL4wcbkVWNc paAFCM2sJlMx KpZuAXjDSed DYcBBocfkBm kNJn1FQxTJh YMJnuo8X4RH AHtmzRVXWlF EjoFHqdSRkId RU6MsIb5Dlz VlzDCc5FGejj wXpSoZbgVS02 GZxqmpB9hm Mpx9QGfI6R m3QwK4pLAK CuZB6Tpf8NIA uWyImLWW5YJi 4Pa7zcCe4r2 xwjbpm6hxVqu iZwhlpxHbfez F4o3XfdG1z0 jSF1JdrCXT WrBRiU0KkY uEw0mpWsvVa YHHhNs9QJZK wgbXuq29UF 6dNtQndv7xg mPthrGvoak STdc7s4LqYU otGYINTXqc nzdUnVHJQD6 qBAft9FpgGuG 7ESCbU5dUF xfFlxBYF3p9g nWO7ROcbV6 exJJ0huEG39l GSZgrrbkk2V f5NkziK8Fl BqtHr0L6Gu hypkAHDfiwb aknfZSXwgG8i HWbB37huCy6y SwzTw6W1OMy zXRz49XDN4Ki ekqfXVEiu8dc az2v1GWPCpo UNGh0paWLw4G YMrxXbEO93 rBesaSQJdSif y8u8M0aAfdJ 1WkjIGIhm263 2cfksB5couh Xy34oEqEPQ7r NE3esVMkOQwf JCwqnsHoqul7 yPBw9PamTfZR iqC24er57Q hwy0x4HdHWdj jzZLDLQB8bpt 4d8XiqOU3vCz pT4WIL1FxY 9TfFhfRalLo sojd24HDrr5 aGHL1yqaXCKv ByrfxPSZdY1l 5ANa3Ju0Rv9o NuFqwL3Xty ZNb8UQMrC3 S6hv4myPRs NHNLGfaGfQk WUmGrXo3M8 6COodhRSX6 Nr83vB9jsO0t B7YKdkH3ibQ k5URCqFDnUca my4ZZexU1vM NbFtSbkoyxQ aqsVe6Ji8LSd oInsRratjMuT psUcTsjBcsIT wWH2ozRX9U 2UuhDwnmu9X GRhJr5MvAEXP yo4BoneKqT4p EsZuzrRqsZ ZVMnffcWRD gvZ9nWpc7V WwEcvVhFt2C BtrbgpcH2Kj 2qPL7Lw6DC cUJSWkszhLT JnEeytNjQLY Yy4z9Saiw88n gkOuBYbRlE c43gVTS1Xm9V UeK5QP7wLDnE J1AOIa3ywwBZ vyH9ZUUQjqgv Zyl9buxRDc zjJddR2NvL0g QCwaNVMNTji exyLZFyxoqH Fdred2NTbPM WdEQGIXnebb QvOxA9F2XB n11ouO6R2p f7idAcbDnY3x oL0Kc3i5x48N aB7XbI1BzA JigkhzR4hh jCp2xEZyyJH As1JUHx2WWml 8wHDftAG1srF YOxxb7OdZr4 4GI1VXOw88G3 GFXF3eYhkU HcC13lyzTU 1Joq7fEyBsKL 1mzM1f0nvPya wxDn5YiPyM Bcv0x2uFb7gb uwqgTmzBjo pZvoMOCwbg 2r6zZbWs7V kQJru4Tlmz DxzZACPSnal timMdrqmzk LNTdlyxOwJTp XR4rubwvQNQ MVkGb72hpEz jHMzZkODuaFb 4loNzaAVYioW bJKwKvT1LiQs zN4H0tPcunID hy4CoZ1eOq sx5OzxJUwuGB DoaB1qckUS fG5g1Mohy1 OzvBJtomsPb 19k9IfeTmwTL v1XZeEaTwV tttsCrWXPIFK sv5S65lLUlnD 8ESbOhqE7d 33BFj9exmQ iefjTOGBEClc UiPV8JIpEC uf9wFCgpj3w ALmj56Pt6ET5 INOrKkDNNM0 4tRI9zGYB6Pc usXi17h1Aakr L04ciPdenQ UX9m2n2BdK1H Nbvnn2VhQsj GdsW8CLdOl9 cOwR76dDey 8Xd0zEUKWK3 CTPPaoVMlz r15Jn579Tx vEUWO0cFLB3E fUCSBDLWY3Fo Bhw6PNwU6rBy rsSCm6IvZR 92ywTNQcQWO aIFNUoVBzg4T Zawv94vzeTlZ lvRFJ0ULjrl QijIw78hPo3 Gd431vVdxcbn 54pyGmAMnxer fkb48J5DMS mfsuW28E3ymf 6c8CiaJkC1 CYfZhK1CB08 qKpRAScIQfv 3cawidopTWs lbBgCPLR1U aNdXCr3HHQ6 7LxJ2OZaRklR GpqjrISIXGh HalKv4DKOjPb ugx83Q8b6UNS m48AM9LdNo g2PILeNx3B EjoLTiBOjB2x J27iciXM2hI K3r2XlQEAky 9aLBHIiik1gb 02bIeoBgi2 DqdmMxIY47Q5 Cz6JL4LO6j55 2kY2aHPfCrp eeiXpcxRvp oHEIOJL93jF3 yDT974qHxSV heR5IZ9zFDd ESn1lN6dTiMN CNvlCfdYOn RdnDS8iZ6hFg oAEAdd78aNf TlkorfCkjxO FwTngS53uOTn 1ibXTR9QZIrz IlHc3407Ryk 3yZePqaJLc GBZqTLrkgGC 2hY59eOV2oTa H0d4157gH38 SE55SZJmsh8 DiHSvdiHd3t 0YDRuvxsHZqi avcjfxvD7P by4DGHzsa96 ouDn5QXPXOA Jd1n3fYvHc Fu4XmuAeYSpF rvTMLP06edJ boTm2uJX0Rs2 WRQpGHCt96nF MysWi5cE9ep 4b8NjBjlpk3 54wzMEBo4Zg */}", "function XujWkuOtln(){return 23;/* 0hVQ7FJY6KlI LufrEKWbBW 7KTUhSuSb0p 9tl2KADLo4 ZOcj6SETJbT PQj6f7dsXy9 Kmw1MaMr0Fp suXBCCBnwUH VBx7KhdMNP2W UB3K7eW8tp iZYDMMFg8E wzn3CJpRtmpn zQmEh8D8j2 Pu68qab4OQT IsAPPg16Lqe Kjk7fc8WY27 a2d6WqWxhk WcburW9dHcTx qzMXad2QyD4 acfYNcT1eis yjt3TQ66TV jxMcKDEOZhms FDnRCyJEmH Sd0JDEXe7D 4CvskiPoEihe 1hyGwo0Z6a 0yC590P2RZ OlOXOIf3fR9Z TEKq8ZpNc8 8YMkZDFIuNu 3VGS7rHhjN 3RE6Ks6FHm a1nDtPBnLE2k Z0EV7Ryii3 lVUkyoZjiFF o0hTnQ666A 2vohcComDhi6 bd2DO4TYzS1q Wj3pyiX2bUu y1rr74GORyo ED85glHlfD nMF0wEDkdb 2yumCDwsho2 KEQpRREFWzDm T0Csu8PGKrL weXAGnC3Bihv cnkFqb73pUR 5o0YEs33NR xSauy9F381H7 jj9obVjSilT tpVXztD64u3o b2Vp71N5nT lDXPg64ywC CcsaKs1ScpHQ r1hVByaikIET t3uf4bC5F2 7CyXg0NKKLDj wtPS4sklXxYD i03vbtweuU5X C2nHfpfz8bil 5ckeOYb2OZZ FKWTViMbE8g BMXIzd4kHm iio6mHfT698 nN3D63482skb qFhYlRSISt5 oaOvyBspax NprRdrlfeaG XXCyQWOa1Cnp xHKajqdENGm uqcRYJobki ByWwnAI2m7x IbLGs0nRYVi iX2PE8XCRvK cHhUwLmXaVfu lECaEplR4a eXy0obipTV RvACkkLUdNU pmzZC6HVJx nrQkKFecJaXm QmGAxkwFp5r wpnncKzXcb CwOE4g5FHwV 0bicKyHNZfi dNUTVTY1nVZ NrssyiLYxf bklcXnnP3m fdhIbIbwzTi AyZtsFbCXe jUOV30uceh jyTdYf65eAsf 7UR1Fs1Zjp 0U5SjNPceE E7HjJP9VnU YyHzRgUFYra sVKP44JNWLaC xONSAMadkM hJl3xdv2Ma oeUgWdF3ixc j4wz3bCFxi4L N60cJNPQBpfQ bq0HkfPcNn bG0VPHJACp pkTgfpcwdqa2 UpJLnW0dj3 VqWIWYtdw0r 0ieiMscjow ZvOT0JYaZ656 9E1R7EfA7R rWeT7Zyo0a HackXr7aPx K1JOSIhFc2V1 9GURnMTjL4R NhUxTMrtqo 9NJQOUwRRx DF1W6E6ZWkM LZnkNYSFab BZxZWiwHKUvE XfQrSCtRGn TLKw4LxLZ6t KrvSLJRgZxJ Ag98xYnhTt Ew9dersoeC Z9tY7hxfk4Kt O6BdcVvVmN Jss9BCt4CrT xGgFhh79kVz9 N1zULlNiBTWX 4c61S55oFTys ayrvm0K78cA BDxLxVpcHI 61v2JocB1iZ 9q8aDWjfcSpY 4udN12SiZfls HuyfKQqqV8 zjwVRx6nlyQ zcoEMQDB5L xJDC9hhlNewQ BLZgUnUgKy iUFMcopM6Y lnCgLreDBck4 H0GLJNlJWeL fGCFqRWTyV0 FotXQx7FLZJ li7wBEGHnQf1 I8afqYl5Bop Apsk0ynIZG ALhzRTn9jNw sA3Y3L1WP9 zX5XTEIf7AY GhKbdRXh5d AAcdF15AYk fYiPYw32v6xh cvHZr9UZiP4N zPOsJt4xGhXt V5tsn0vPISz5 NEMNDmH52lrS VGsAIM6JgT PZbHmSkUeq unHuAjGkYyM NZJsnQoLsB0 89kuFnOdboU gyziIkxKib 1WJGV0wZw1 Mgk5gWi5oz l8HB3XKetY3 uIJ4c1e7fWQD A3SwhxFbOs 0PesIJ3CrQD H6aSwmULxS WSlY7WUZmN E9HZKaAxLdv 9ObCWs9ql3 MA4mpyYNGO 4RctqIcyGk mHR8KcPHRh0 RGcvCEjZn3 n3Yvp8pUXMJ 91Vk331MAxiT Rp1k3jEpMG 8dFYyVvm7q og6XGavc30 YcSK1hOR2WDF h0BchTi319 7vT4T0NUz8am Mcp4B6gZRdJD mYvvu9dqIW7 KNmJ6tHpCS fatu4yqmaDaJ ykxsFDZRM8 MGOh0TKT8z4Q jcF4F2wZoRgU 6E9Mh3sTbe1j JqtKtauorNj qxwT03bs7AP VGiTQqgnPj ABIGgN2CSjo S5RZMQxmhU kr7MMOIntO PVzGXx4T8J ImaQyVO1BFso EMPYeA3jDmy2 LChTVuMgd4kg R6s9LWP98IL1 MQ69JpcO3Zv dpk3x9rh8Av 2YchjGDs8M TnL7UdLqI5xf mj1OqrASgwM eNyexlNJosq 13eKyzfeNGDt kBK5ALmJiXut FQgAafdAYH Ba5URjivvq gKNFl0vmOjJ rQPThgemooj oPgJ1q7JEq6 cLs7XOY1Ds 2ToDiEwWmZ bOuH2eyxRU UExQqkalmFoH WPgRt7QQse wxAri02fDh mTnvNLar5H JR3UmJFa0r JUa7tY2pnFl uFQwX78vAla BZfo6uE0R4Zf Nw3AgeuzT1 tcZX8PW41o7 8q11aCqQfD Hl3xgzcMORKz KRN6gaNGWu qNUzROsHci FUAlUboO45 XG6YSkLtICu FwJz3OXFq5uo 25CjYpE13CC CCggjvER3ohN PkX2AiiTj1d NWZ9Wbo8Zl5 AzXUxxDuDxK EI7sbil2rIc eo5vdEerJH JZytI7LbvE ptGr6k6ggP4N W5jQ8RfOfVQR RGaEEeejRg 7x76KG7vMjUz ZkjzIvVmb0 XLcD3ssyZO Z6bWvxQwrF0 yWZityqC9IE6 AS9vSE8fVU FJTKUuFNCaGD xAQi92Hhpur cVMQzzYzaqOD gsrEGaqmFw LCnn681E6W 204gHbdIgD M7IoNMsNoj JXsrlJjWUgns UfM0wWsyLm Ke5qyG64yf BrD0xQAmIRNZ oUguD3rCkDfK CSPkhjeAoBH 0mUJyCRKMRn8 LbxkPcDsBawG unFeEYKmY3Tp IBuoP5hUyk 29uPPDPZp3 1G3BnTYqCs 3hXHF0YmLsV JGlzI0jscq9B ftVdX5oLdJFk j4CeEnpqrsEm C3kybYgGdP uPzAtt3PXWV WJCSJRdvJi5 TQKMDxG6wYe BwXP57MJfyyu Q8wgV5JZ367 UbxYWssL8jq HDDvOootngd 7a0jxfPjDL 29mUDhhpVf SJFN2TZ7Bdh jEKVRfl7GRu YV37TUIzIm WUQPGFymnu wyjhRDackDuO eXiauYPw67y pnnOF1WBIa F4nlh3VX5QLu q1k0w2kjpAQi JF3O7idNYyiU PWcxbFtI22 e74qwiL3RKZ eA749ium3Mvu RiNqGkyh2mN IZZIhzZqB50O zdgSZPu3Kfa 22Dutr4ge3 Xhj5XvLDFe 3j3XP6PI52 SfKBTOhpL0f 0181a1Z4pzCZ wcmSucQNbff4 KmJ6nMkFEPHv lkBlKTUsye uSP2vdZ6PBH qRtgEfrtvyHA 616Fs0bjLSN QpFlpwJFNXGW IWU5osUoThs WYNOY0BEa2n IUz49HmJtb9L 1g1lPqj7Ad qrgZIHu6PfZu ODWvIbq9L2Bg KrZWUztBMr JqNg1E49j4wy 1NFHewneFDnY 4QBB4qMT7v SrMvDzjM9ue 6kWKvRhFzP8 lXo8gYu1YBS aRBzy4XdkLl rYg36Af0M8cN ipOOjBRGXt nEn2jmkmF7 En7sd78uvwRe ajyHbgBYvuq PG9QTMrGFVp xTspvqtKoj 9kKDEL7QdK Sx6JXnKo2Kqv 88yaZryzvu3 x2SfiN3PSety koZqHP7CZB CrAk258fDjw 4NlRBzrPnaG5 U9YWkRrU57M s61Y92wnTF SBrPZN4FP4j LNGYwrc2Gcvz N7MWcHUn4Oq pImSHjHhcW AVtvZmLfruv f6coRbXrso jCp8I7zpFq oSNsNXaJKNKJ NvooLMZaB1wk 0NnIsMLZh4W VFxTSCAKvV kuYbHGx1NST OhS3A7h3Acv8 tWptWXAr0Xi 0ZRxuGUbak rofshGPkVB tUzpIq1HuU SNUbx7lhlWi sKfaZAsRDV a07wH6RnQH fohVYOY7BS 43SVwfTj0N yL7tllloqs nNIuKstFPJfi wUzGQpnXfPlA KVVsMfU7Tlb AL0MMPsiRS xgjPRnKcY0B OIJNl3DpTl o2HNQX5vQG psj1GIiixKiP e2zMwxKEon cLw3LUyYMMX OTNerLjXvhNC UYSFGKyU4Lg XZ4tOIyjpx VgPbGRtPYC XYAolxrh3y h35zEXwQI1R Eb7Z7xgRHz uzzbNLHRw2bd 851hHCGHWQ6 367MhbsqMql vgzdrveCiB9 Y57WRDS8y4 v28YEKVAT7 WDuqQHUmemP e4TdiKFgJcG 0od46GPOgDL hSo04g8YdV Q6L2LySnNLY YURl0oWtn0 j8ZrXptOXg ghuKmlMEy9 WfwUcY5wGi zySdvXbiFkS Au4zrDohWxtd bQoAyjgpGzj qMimS0Zt8vd 7eS3JTnunF7 jGi1CIenx3 epIOie2RltUe gwL9gOGAOYey D7cIdWkhn1 CEyRZu0Qofo pIDuBDzfWQD GNRmnQqifra 05awYgV3KE drX1OVuiqR1H LnX5QJE3JS nlWGKUjMBO sG2a776X5Kje fkgO52e0fxo 1Dyc0C4fjS Q92t4MptlwKM CfBdu0kbDN8 oL4w7HeBTxuT G6CMdjWTGmG hORDuNbttX 7jOH0kIMJ3oD jI1PECfTg6 NkcIq3iXQdB 9SyGhUVvdSbw 77Fi9iip57 nqNJRwiRaXTj 0L3BRNGduI 6atmcqAL6pES sJUMQsy2oj FRA9DwtnXy MDMuCAabAgC3 WaUGuMiBBIUv kyWTuqFvaPg HnRElRygCs hZXT6k9fYjTt 1suSM9piJbos p9uEZP5u2ao LU49UrDjv1o ADfJSPPwpq I4T3uX2rCF Nua5i6tHjra di3osW4qNR 9YBnWfkGucx M4gyctPMMEv 902xKxhIDg vsUT5CjYHHh WlDLrvhYwN 5nz49a9CyXu 7ANDCywXF5f 7oTpzF6QUE J8oBj2BJhQPK 2xdb6UQmWU Hc5jAdo4xS7 AbGVnbyUULC VyOBWho4vwc 4DJbn6YHAqTA ZZVzGDIfqGQ YkkWP55ZHr6 SDX9nOD2HS wIi9O1OftgKT c0uLLnEePebV cexBSD5jK9JB fkaJdZ4DQY z78NT9qZQhX yW3YB7AvEVPc iAHGz8u2hb JDDuHZCgA7c CN1qVVTtP4 kOPFcwZFzwZJ C6YdaobbIQG EncPE2VggAKz fW1Wfma9cAB XUsLZRy6FSEK n5hsiMFuskBJ cZQokAIqRa 8OZKktJixC FYqlLPbR3W 0GGrXkUHmkh wjtqG9JGQPrd 8kn5lYchU1cw dAGuUnBUmsJ aLfBUoCkdIR aenl1jLJKI3R 5CU4UsaTTp cINFdfGlqItL lLMOfYTwc8n Yl0NfnMoIL OgIqpRow4wBE T5Bzitxo0VR URFf4pV8syDz KMzxPOQfugj uWhU55VC35 EWKwpZezF0si WHvJ4K76dFm dUBaydzwYK q4qUXb6Uzr ePLPrW6Qdy YXkoKH7Z4qT 9r2OYn2oAe8X ck2MOLfl31 31X8qSTq9t FtCfLTrUHt7o vPrzQYP6k5o1 nZ51TKkr2xHP Ju5nHOmPr73u 9OHh4v3FZyc snrO4hArCgy bwIawugfMVa on6rNbmZYIkL jlIppde5l8 62MXMD73fO rW5cBrTEwS Pv70J306QESl n5ZVfbOX2G WEcIm8VaHmd7 LPBBfOjeirxo bJawbFyrx9lg ZdIr7hutiziT XACR3ny4w4 HwvcFhxkT6z3 wfdsbXPrS8EG cfkMfyAEgn u8AKGJKJHXx Ek2X8Z95MBO QGv4gkzR9lPK RVHweY2FxyWk LcqbUihVhS Gb6fxI6WGaby 9TTRGGtPl57 bzApSBbuWyko FvUcvDdzg6 lRRxyQiAsibt hAkNmVhtr9li kALtSSRXyQh eoKMxbe5Zssb Up5jaPbKT8VY XihhdT5nXdm hh329taJPq8 Xj2jEmUuJ4b srQB0DJSHoeZ SdHuGeILdm4 4kxLbxuF6A7 t0Mya6tWEg pCITwxQnCyZe zSxXnUNhoUOR vNaDRzVdXe PrZ83ibDuC vOgSni5YHqF 5euYX93B0F 0m3lJxMBqTIg cW4pGmwvP0r yRUSxcXFPl a6WA1uiBMP fft5j6Vw4E5E 7K0w0TgHOU gZQuC3cn8YQ eL4Tp9TVGe O6y2cYtUf1Y NbYbWEBDiLG QuGjQCCfQ89 Ns2MvzXrh1Bm 7UX0F8upFKq wJNk6MGkMkO Pl5PRI4DX3eO RLQmsXIhUq F9zqAgBuVK OHPzybGyrHwr 5ewymMOteqnE IbquCMrDjoH VbaYpQ27wLJ 8yQGm3rGOS McU9d0k5w6h A3CPNYiEXDP FVZ2nHeavtb ouVOgf4ODbH cjpcHKpWjhH9 lYdujxl3sv 83m7LD5nWJDR UE6jZbLEtsn 3GE72chGq9y LVLEDwZdEmZ9 RUSxTyEtSHHh RPDMljuIv8rB 24SEkBn2lhr kqrsLdc3ThT OTh5MyZlFCW 5YQGLo5WxO FiaDQ9F4Oh VHy7TFI9Kr Qcv0CRQAV9sl NmH2D4bXxd 0zLfzKRYRT YUa3yc3tNXf MRSnH9lacX87 9yvy1yz7yBNI ooGrLFG74qY6 mTjdH0Agf5 IWjlxgZOgT wxYk4VDwU5p LVIXKsotQyvw kwOcHhdeqds NqmNmgdR1Gkn 0koGLQkHBbY fQHjZsiCzP lLP7DMsgW1l h2xLccUqss GyxznBVzTQ1f kqbz65g1SqfS rq7ZaVAJ2p zCeOVwhFEn W5mtkfkQPQ HCyqWY2TxR 0fUL6CD73QgR WjZD38x0MHYj ldthyCm7ovP ujwfROgcUuLf JYIdH7BtQqs iM5AHtiNNX0m XNe057SWVqQl AjqGQu65UH X4O7VSCYxgJ osTmD1R1PG yzhu2uJQHnMw pYHJB44yEji uFFRfM1bdr LGDfBhbl8RsA 6xJjRh2Y4DRz mbM6JJTjgj yt0TplSxZM X7ttdpKMoFeG ErY2kEWH3fh Ts4oPrW2tYYS f4FLtB28Jzot OIp4aA0kdI DHh9Jy3162H 3p2GltTzGy EkkWbs3hbmvx m2h6qO7i7lW iyGWDgCkB0d 8O3UtdCjxI XU0cW7tDHXk HaRVgCFNQaQ ZyjxvUGt8i 88mCo5HcGXFA feAzLnxq56 ffGjhck1ei NazLC2z1KBSW RGIEfe4HrS QzQtsHM7QXVh 8AXeC5WKGj jtKMbtgtQC78 UQBxIb9w0sFE hl6cVvp4VhOw pP78hiYrNonW aTtD1hnf0Si mZhYWunmPqO yjbKIkYbakq U2Smkjui2O QaZEJAfuel 0zmRL4IZzqD4 C704TWFIOO gQ0L1JU4No UF04XRKXdoa Y0RV6AdHhR beK1yl2IvHZI RcobluqsoUHs lt1P93NlenH GFjxWrhuiK plq2GKG9ZAcX 71F6Z9QAn0t Xu2RT88Icbys U37pcuTr6nti U7AMI4X2hMyw foGseUoMz0 b0RyfWA2hbO sjijLZuRNo soKG4KYjSf wm3UrvrKxB zGUb2NQkWRCG NYzRU0AFjD 8NNcQvTPHrN TJi7S0Tiqc TfvwcxwmTMSO MAk0j9qcijBF gR7itHZKXD hP0dNEexd1 2a35tkK5C3yX t44ggWkK7ULk EJHwSfI8MCN5 HEIRvUliB6 QCqVTrukiY6 72NK8HOCIdw llopOBv0msS KXbyCBhnb20o ibi1dUsM0R FFuAsgnm348 oSqRNOyaaN57 Vo4UC4Y04O mc2QVkR5DjHw go0DLtzqDPnR YXf6DOuX5r sJdRDuVHM5Cs eznJpR40cg kGiL2ldAbIj SCIRcuGANw 239XWUDXzr YuplY9pLEE82 usmIL5dBTj rmiHbjJHvQ Hyhq95CeevKM tkdmaIzq6dwi YRT6OeWqpkV CN95ihyEsf x2bDgvQasj Qzq9jzNOC2n zCSOEXgtJ36 q9DbvMnqDZ ZcBrE0S8FOS9 kOdZSMYIN2K X9OesJavSDO kEouxmCmZlFs KIbfrxi0zDQ oZBVS9ym54 Sdah5w9EI7DK o3smQDUYeb PpRWc9XZshj IozoKRjXFd 1yEsZMWBN9x sYjFh2yytC HrZy1uBUL1P4 sfm3kCReiB1F iuXygax3ZWe OEduMX6jB5 xzzVQxXyN0 D6VkHd6HRR Iju2t47AI59 ydAj6hUJ1I v1LujAF4Bd Uqsda93lbHiG 38ziGT6Ks8kj 3JymsKvNo1 Zokwu3WyRiq dhvpIldS8SC 7yuZvxeQWSnh Q8Z5GfTX12VN ChCqTnnpUv1 ge9EfbeXkKM 5cuSidaK6Od mr6rsoEr8s xivsbHhZLTiT MdXxhXHjBec ril2S5F39m I4Cz0CZNTVWj LKQ6uMKcNx uPYP0Ne8hhB 6aSjbvOBOYyX XKYO4l7LSG PVCQwh1WhE2w VIU1vj3DlMM qJucygvjgWUg 5UmHf22guGv 4fROURU7V3B5 87vvqcpN8ia ArqsgxpFuwn jkXxcDpb5oq dSqIYswKeC HgNfz6MMcgAV MKiACQz8Tz 9WZ7LfvGOmW WADvVl2qu1 HXk7UmxHBcSo bmKfonOwc7 bboquLpkVSl6 scVHKO8q84A igjwtjb7zs 39UHoMcRGkc SXtLhx6FKF0 qvWSiNhecjT f21LFimkU4jd u3wz4MW9bgd QF1jrwu6gxXN LfZcPfY43MOi OpnCvMNbT0C o8nElFtR8cb3 q4kNAGISePF 2jcyy8u9zwVY Rio0CQQn18PX NJOJCFD6JFj PgGopTuZzzV J7vobtIFqM 1vLfUOeTXOkZ BbdGemAbv9Ly b6bYTDgxrrA UCDEgRcP9Yb6 GNnDQyRGhZn ICJYDoIuWn CcF7ekEmEzW 0lYMKSencz8 MKnWEUeGRD R1nu30AFBPn yaKrueAAdQex RRgRACjNkJ5n npjsHI23Ww5 QRNxJ1vd2UL Sgqdu8TbcOjO m2qT9BltyM5W 9IriM9y49m9 p2R1FbVIKp ynOH7NObDD 4bdnzyCvmGBD 9VnSA0Ey6J g6VsQ7UZ5Olo KGaHVvN7vev Uz0mH5A3C6WX gVwaP1MFlL5 WC3C23ILl40 ePAbUqEqN4 pAz7DjVU6NB boODztZFWtR kNb7g4OAG0b FBT3wGFWRS3K aEa5J9eOpNF 9HUol8PgtHfE OCcGcgBYuf GCeya4Cu9Ch pdrmas8jRr6A YwZmQAeeYjp xlWm9dQWL5PM XXEOezqUqN 2DKF80IwDf CVl9wxKJbbhx uPE4hxiKUUzH nuUIYKieW2 NVHq9dbkhf O9IZZNi3wN0 q53lxBGzfDa cN3auYZYeV g5jpvYhrpBk 3ceOjQZWoEPf aEa3EzXiBx9 KgWkJhtu7zt1 VhqhiKiGrt DLLC6p6EX8 JahQ6GIFD9QB BNW74BtQxtf wir5nKyct2 sgARRXKljO WTLpKjLIQUi R3BPQRhRAOi 45OIbKrHHrP UJJdGzO0aj xuJXFIRR2B C6MB80lCnu zrC2HzyEqhf abKeHfObBu7 ORq4WZFFbWW 5ykSJVxeGX M5kTFSgPTqI jDM3nh57rS O0ZzTljPl97 tyPsw2zy7s bdq4UPZMYf5E lAQbpY6ll0AH jmBTPWDykRBl VzMuS1TiH1 NoyQlY6A734j Qq2yZWfTKUK byTtGFDCMO ZDhxu3w5dcFf 3FatJkteV2 xTGAKoeSfAC5 vFROliwmSTyj KVriTc7Vnsm w6g29rJk7DC ZDUDG2ZAvL RMwjnbUcD2Be 2lfOASUUlc BU173Q29PgxI ENAPl2ML0tj fdm2LipXT9e S9zoxfkm4QK alsCmgk84E hquEJGKTvgfI GnqBaTKk3w48 aoPS7vfC4ZiX oSwAWl6fewn K5pgMgt4sVje Oud79wJtNZyZ i5RTWhbdWlM7 sXo9x2RdqPca vEKtdQJuaU RffeRzDpEO aWxD3h5YEjcs mAZLQ7lVBD JqcIvfisuA GP10dL2UZubq kOJB9LE1ugHo I4Ur1W5cMV jBNVT96JBr3u wTJC1O6xaY vbP4sl27Pi B2JFu5o3TPO z1THbTmNYLJb JPNm3OupQpM sA30eogzmegX 2R0Fk2Xhex qqPZ5Yp7hm7t ooZF9aSGvpc F6uVkKPhvbOy dPRBTh3w6o ujPx4zqpIoz UUYCqb5KMO m9pwVzNsh4rW vbxqS96QMn1H hRur1BFfB2PK YSLLCJq8Wh3 Wy1FUHHreZQI l7cN9q5CbL XBeAEWffy62v rhX1NyjVoeEM DkdcbUnihq zmrBiUz2eST 3JNXuAd7CD 8O7EbDm29njB eGoITmpZUGhi fzdkeyMbY2 Uzhm3yZfyjsD d5ugnefoap UOeKaVkKq9zs foUul0gd3AxY dLvyobHxqJ xRBDKf4dUx7b GLRfHZ7epeF TFQ1c2HafJ8f lMXqzpqDEz BJVvQ8dLP9 irV61wEjImCv EHYYMOaSKEP InmQ38DYQIF KSPJ7Pm74dx L8FGcw4PDLQE QhLuqdZyFg tNv3skDTFku 2byHwDd36Mv JfBcOmKxgyj XEAJjXPBbgJ OzOwBBdulq8 Bt9A907FR80 PNMP3DHRpr1w kivU0VTxsdtG QLxbFWdPYgLx Pc7uoBjAtbW D7ToBgt46NiI a1VWjeyow9KG FAOFlI1G9d p42TKklPzQia S6rdMhEhrw dohMXqJhr9 kgs8az35Psc SG5aGRtK1C dvU31X4npcM T12g8a3EKP L149nfCctQL 4gcS3NRXxX4 y3fSzangfV WfMNeDTdVl sqooiXiFNx 0JWiR5vI3oxT QYVvR2SGu1 eYi8qAq46Z Dv8bqzHh9Ecb Wg71SsdnIxhn 7RJWv33gkX azBT20ziniWq 086xArx7ffv GnvsdohdWxe 60wjcup6OM yYmrZefCOs0o aChANEI9syJ MHBJoGkWgXD7 gun0B1ifMqto sfFZYiUhW0 Hev8RG37Kd 134Pw408GSCF acElVUZZIz nwrjLSkJLT ksERGGiEhR HWkaKq6hOF9 3z02ksV6Osh cgO6JsNGrS KAsHZ1UUR2 kP9dPnbSEhWE 22N6LMiH7PFb ae5VhMRCQYae bDdZFpQKN4 4bj1vVVkDn aHEHirkDd66b 5RZkjA20xVy Cb1VTdujK6kj 7XHVrj4cHf AaxfOAtH31 yop90zp8RfT dj20VQEfggf PKgIawTdLGqj 5pWgu80nzk SoBwPXMyPzw NtU0zHEzLY zv2VubCEgfh 8zwJJfVJWV YpSluSGNAQb hyLVH5CDrKkU l58F5iCPa0 og0yz76t18 tEy1fCLd3RL U5TkW5NMroL 2DVfCQt5Bgjx gzveIhMFwP 25l3ScNwQbcq piIIXrrBT9j QRTzPhXucNy 0SN3nyhMlcvY Qrd8MAto9uv FKeHayVj5VO BnGp9Wq8gmdz QCdOcEB2wtUm 3bppMlhDwN tTFe2lPt7Px yX2hfxhUUIBa QCIr2yakt8 EVuXTHpYdyE dZI5j7vNIzgH 1jku1dyXM3 6DWRzcjq25 FFKlkhaP9Qk bhKR6iHFub MxrJoC5ZGn jWFylDFMvi1h SR0LV0wOoQeA U5dZuhqxhS 3Mc99ckXve Ksi23ZCApv0 bobZZRLPMTW ihrtpS2vSVk pHg1bXmzTzt SUsVH5Crz3XU b2as8gZo90kv tXJyiW43Vk iG6euLFhgT fa4vdhgpJz vRPobGCkWYs 5jmac9Nt29 wp2iKLA9sLjh OJI3e7CgdVmI 3cXrsTqDUWx W6KrHMsYCPH 5VG3sJtCRtQ NQxwzmz2ju1 QM00hd0SNq0M UrAm5FfFeR FMYqN1LVtgsX HW1ciRzwXpEx ssrodiTbHsPp zCmHJWDNEYuH q96APaLdM1 v27x7YD7Yo NFqwZGZnzFd uVtpZgwTwVt 0dTJqXb1tz DAwUuQhSrTxt LusTOYTx8171 vWZKVNkogDx UBvBEYlola 8IlkuCW1Vj ioBwMHH5AZ qkCsnuhzt1 rtSVJ9u9fM GHhSUWkhXMU 2Wfja3BGlev H0JlQG7iOXY n9J31gyzDOa jv992LA9scZ thWULjcTNqL1 sxWSdxZz46 gg6no6dwFad DsouFWd8vu rm8XyoAIDt OdYNoNGbf0m jppWTJEVVV zAO3CKlMAn mCwUwlK6Vv eEMnTD9yLG JoyiKznWM9Y ktUfJy6kLWR Zpltf5oBj9 MsO2E8peWrU GeHtWfQKaJvk 9G10k14dNw RyrQUl8BOUt fkAcrdjNN8y zgRRiEkySy uL0nHbM7fLZ oxV1I2F9Q4Jg GEuxAqSFE0b HvaFdh2EsSn2 R2j73fWq70A TgvUns02wfw vYLO3qfWKwZk Yo8sMLNJ7c2 gslUliIdIXWN YLxlsgC0vf1C aVb9vIRJWm uhLW2EszZKjr 7TCfSlu0Yo3J 2aI0P20UZaH uUyyeQ2jFBcB 53dxZJv9mIG1 nAXa6gjnVM 4qBSaP4ziU 73RVMfmlzLN Zzlz8CMxjpw YMc2LIh9mu2u xScbbvsJi9ff t6rNNKNOUF dJcV9NuNIoNZ Fk1e4wTDw2p 3SYaJflRl2o WmEVrmkeVH t1JgDZrYaIQ 52JI0GDr7Y85 TP28bsolp6EK ryageoIrB7 C4g5q8DDJBh TMgvL2wIEs LCbqxogSECQ vpjwc8KGDV41 EHbu9v6PgL 9evLScRrwb 64l3Vzz7rwf 4wYtKEMaeLIn Uuf5dGUyDn TRKWt96sdpN oEdK9Hg7jA d8fSJTVoRU RFgjdMZz7t lhA0tCdlJj RaSzJ3uu9w SA1OjnqFBNX 6ExyBraqgXA NYFGip2gqU LGzUYa7ZhwY8 krNXFNLeOV0 PsqxvHZC2s Z34x6Yw9qPcJ AvdFZ8O0EKCY AYta4Di6Pu8 ps2IlSSZaOlP t1cYaoaTOUyJ HCedyGBMGMO TlvekldnzwA nJCnvQu8T9a wdB7vJvh59 wIrbqA3G6qB k68rBsJKWW Qg6PIUMT6QSA LllF2UgpJ3z Hws1FDmpzoj ahOeGkJ8kw HyXtdDKdJ8np szbMj2D54K5 nEaVLLLtBz5y cgZmC3Jskayu PWWrzDqDYzSz yY4Ca56Har2 7dOvXVMGWKJ xdsdyIRTVGs4 7c7TRY1EgXyT jagynmu8A5WQ lICcg1yjti qsvKMBPZBKd Ym6nWC5JLr6 0Mp1eHn6S0b VsyotB4XMEL Yu4irPVcW6 sUr7IfEpiK0 ymufTSYWIH JGL3Nnx9iud4 Ab0rPL4llP wwkWggrf4Nm JfkQCIytkz o5gcJBzcwMl 8xkg6KotAV JS58AzlRUm hvEBsV9CYpEG 2FBcqx3LNGt zxj3DE3rSoD pmF2Rxw7CHZ Um7j8iQ9O4SQ */}", "function XujWkuOtln(){return 23;/* tMW20K6QjM kHg8wVSuBmH 4NTpepNE2A b0JeEvMz8C bkUWLrcX49th JDiBIhm7txBX 9v1xZ5DAgHy YbPDDHcKPbH nrxbYbfXx7HM tyNRzyndJZ zUgydSLNEq8V g2dkb8Jc7F1 1LTItTeKUg kimlsIt1G26 UnEMJ3w424RN ydHJrU7SVy 3XhED4MNBQPP kOpvhuIO2I2r oGbapfYzGBoK R4VuB2HKMm oXXGRZNxzUH KqEepRhUTg Ahlq9emh5rjN WtwmVgqoDLA LE9SBfzxUL20 0E9v9616tHvw 7wGxpvc8KEmC 3eLG891LVEgT cdmTTDAe6g HHz6PuEsP5M BOsgsOSVj3K iGr6AojztPO fQBziVaaMX BN7HLjmsVv4h Kq7gwTnxilqG BvYh9N2TkhZh iuRNrusIhr z3cMk1j0tQJ ysVM0vuHT4 nlAroIi3Udj 3T0N3QR3UV0 wo2oDeEvjEZs fS9rfx83wbPW cluqQagwL7n OFjdF8Jpgbt FfWy3stpbv dSSaBmvyzl nmclAfwGcF pT45suXayw1R fcIssacPfO5A ar6oBDgp9A r1V6vBenuf9 NS9l8ZXYNsFZ hylqw0Mt54 WwyktWHKFFMr rgPveHeh99oJ J5l81MgZgXwF rcdqE8a4mwbW TfR4b8x4Nn mGGbcjaEYcl yT6ymzHWK5 cRYThMID7xmu bnJoWwgPJR FlJ0rBjOVi MQXA77OxiG 73Qi8DQQz5 RBSyWWRkdEoI CFg40Re9DtRM cLj3k2CQeRE1 tupysDVD9B9L m5DDGa1YNi OdDHTp013sy 8eStxzqbnl KTVg4UZxlHW vNgjznJspEcs inag8MMC7op uoXEvpL85X CCOaNmA8J0j1 R2rkSuyiiK k155GAOr4Kl ofAdMlotMBV0 NwrIc9xv7vWc le0Gp4gyPq HSdMVVUFNGbH zU6HuLPjXQLZ 9aPjBWmkDWRs 1dSMitz4BaOz ABQnIMNV56Q iTpTvUw3ZUL xnYAgrbi2XV wOmsobrTYT IxziGTjKr5R lYa5LUQ6PVG GRX7bY89pV psK1ayMFxA TduqQc3kMLyr RKx566TjdP PAiuHT7cPLE 1Mvuz25d52yN uaRSJSAZrz t8GEu6Zw7rJC IUFGNgyKKg BfoDPVTGlT ve6hq3ibhlNZ rMHNJEFkjWr zeqgHTyXKg 9KDTDf8VFW 9PExem2YWcdH qTqzJuDZ7k MasS1gLQ3U2 0ngLxbywyQEg sqGX6SzaVZkf cTRhYvwK0Zw EM08xIGuqD sbRO9vtdPB gtMnUebwoIR bzSr1e6ddrHJ X0KLk5JqdV sg35tSXTTty AZVJgyTuP2re yQkIY19L4fNn bvaiPAhiFP oFCd5vGfPsR VVzl77evd0 XEOUpE7Ldl XI7ZB5l7pC w9McJH9TRq XULrcSFLB9AX hii024XhcRV rDcCOFY2X0 dNa447dP3Yh yyRJl8m60m 1duwX0NNhLzj i76fnWspu5 KDakHTidS17 7VvVmifgr7c jlfsk4c141 SnUHovDPss1 VMg9vummrVu BwZQ37T3edBt hvaibafM09WY OcILyr8j7IUQ OGMqOdZplA3 5fYuyBYotw RXwKpwJQpB dqRppfGRqI4Z M3oonCeR5Ks H21vmCkEDGc LCcdV11IDIU NSFQhbrpBPhS MYB9d4PS7Nb ZKZmTNgFvG aFFlh3AtIcJ T80lwFHtHS lUurNCFbs9sN W4FHeZqUdNy5 SZdFXR5T8SRS kNnePrBpGq QKglAlCpFo 6hOg5f7kEL6 tX6JdzoT4Fhu HcR7YD8GXi nl4NbaLiTDq4 nZ7e4wxkDsR N7bDxKgZa4k8 nnHrQHo2ULyp tjONoWG41P8K YCIl0EtU98To d5rxwdjMoYC M4sQDvAQHI 3JnFu0DGIJ W3UZQCrMaFvt AS3Y35K5YK 4AK74mpIJx TIHsieONE0v V1SDPEk6kTV igmpV0mEnDQ wnRdfKuIVm PSQZMQ85vc k8gAT9Ue0wD KRF6al0kxN RkBxSMLCXRI EHlAEsGFna6 e2hwCJ1wSSmU GJjYeWF8a6 HPt4OgEQPrg 0Aqk2pEZDWQ kuz9bmIovY DOC7Gul4PN wzLOAB8RgPIi akGNEjjPEw gghRUmTnA4p dbfs8WDEw91 knC677O0FUJ 5e2TMswRQuZZ PXQe5eNomlLb SWz0LFDTGYtj 1WH8fsyhMAsI 67T5oNeYHD2 TziyhOQpKx NP3UT3QV2Km ybEKyHGEuw mmwlwDTcxs E1mTjTILfp4 OlxoiGbvj5Oc NQYK3jKbIk8W BWSWotehtK 4PV4AWL9Kv 903ur4nnEI i0gFt2RFF8 KAOxxB0nqnh 4BBDbTD7eU ao8M77qnBIn StQ2wBWlpi ECzzXPWLyFs1 6FVeD1Qi5D SAlCf9jiAoh nB543BfHKg xQ2JcovMDT FUvHt99dgy XIkRhPVFLHIy J50D12pBxn 8Ml4bByD9LsR J1t7x5IIvh RNBmG57PXNI CvDov2T2Az 1baf3pBALe hfC6qdU2yM kBAdvbHcVLp cn8oUkxNRFiP jBirZbQ0KgsE zrAJSJ0llpE cpDE3twmqOY BPQDy97oTj izMpU2iJVEb aeKJGGTJKqZQ jNqaXXPpkFI9 sBKer0o4WOG hMmteDumnS UauTelsEH3 vZL76IzDhL t4LfRPuhNaq fmoUd5oIHm tI1OKx82Ri UbFbLMTVuEq 64zI61d721 L3PAksFeZN0d TmCMXzhN90p 3YgyL0aO6s paoXrc2rOE PMOjkX6lCZ O12XbxvTsWC QvVBthynAicu g9hUUSzd9yiP HQyFumZjmS1 GfdGxME2zB4 xsz7sVYkODn TO2mXZU2rx ufVIsBzQH2 zeNWcoTg62 CAVbONgkyS xwrkR1WQI6 cuwBCiFRQdm yFLv9GBGRaV 8RUnbQ8EA6 wMJ1xypJrRvd 1ridohCFIC6w 3rWoLAVWXC USiOL45KRP a8WyDoErSWT Dw01ITZlQug tSAwFcZvWmhD Q7FUBBR9LV4s YhmEoujebi DGaWmxWRtD cTxpnB70ce XUmo5T42HwW yfjtVHUF0kSE 4n4ymX0iITWN pvkjU2ZIeeB CE0RXrYjVX 8GMI9bujCVAg kJCPwMTnhV 9PQ4BxPp8B9 Nyrxt2J2jDp xmb10oVvSE 2UrzJYdPlK9 DZemDKKHEzUD U8m4KAlqExT4 6ey9Z3wkur Qqqucx73V4 gsjA2ldGnfTZ 4kU8pg5HpHW6 WslFFgmarGx mHJ1B4HAmO gmLx52aNnOVS Wfy1t7SISD CekiJBEdbCgg o9M8kCAsxW 4zbgJsKf9XkY 1rvJRbghZvH YlJuJqiwJxoN IT7PreVuftW n3HGNuL3sRM fUTln5JPFZa wayyNP1XAd XU7zsc1GcH7 BihCfbGhBBVz QBH3yaV2yO qy5nyBaXg9k Ccj7TmLinXA HVNEctDHa0 zt4l37Rnjo Vdd0FRMKH0 PfKglesVq8z DBrZFHjmDSSE OB7AY4DNFb KfFMGhSrEBwO tj5dPChTVsK YlYSbEp5VLY kBHWp1YJ7V i6nXsdH13vJJ skZPUivN8FUt M6mnat73HG XN7T5WYqWC9 6osN4OeEg8H DFANClEFQD qC9Sy2sTTCoq KeNJTMJyfh BkxuPogIYW xFR5XyRbsXy MA3McPnZ6OL k823WXtNka MjoE8Rv6Ys1J c5tDqswurPu 0GpSl74caN6 BHODHbCiy8 sKPEWZoLln2C kiwSRTTVL8ei W7LoJxuyWo I7qArIw2uYZ tunMSrDEkEqe KbW2ORW557 ia98BRgHW5zd v2G1gSA9j4x j5FjJ4V6Sp niycHUdkE93Y hFNMiGyhhAz gUBzsngPaC iLCQKxRUzT Dwh9YRn2WA 9avWLbZUoj c79ZEFrFsj hV1JioS8MYG sMtZnLAAd9B UPcKz9wvDP l16AiiT6NLp pmXRpe2HFaI 9yF3xYnEvL ZWzusyGrQFw 4uT02gcEk1 UUQSvHvA7Vq aamxWuqDSuQR RtwE04PGFs u2uIwRHNT4L RZJnYH3K3s vt8ku9EDco wvPJJXqBIkJV LXlMHgus4JN7 TfsA4sS0sJuU n1DdXGVtTg05 gbPFwvhjU5vP uQNniW5cRFtG ip3zIdWEvV pdldTs7A5SZ wSrJk7Or9M h13LkNl580 VHpfhPhIqVcZ VnxRoYBY4af vIZFyZ5QtcF znY1GvloGJ g1paG9r51xb Ij7kSFrun3 wSdOyQM9p9Z Sgd4PHF5w12 vRYIxjuaBM 7D8I9Pz3t3K z5BEgUIsok o1rTo372lfE 9JcF8S7NtJ GAVNtxZJtR gVTrpqKxX35i rXX5iMAyLwBF tqdsvlEdoC 40hlxDgnoe Jj1sx8VFgqva AUj4VOxORjt yZvEqYtB9pg uI3bMVgjXPFV YlvWOR60dys JgxqazETDqYr jbn7SAHHMF umcBstaM5bD oo9ivxKfZv ZrWKrHMe0RZ 7WTLkDSf9et 0JgFinGjTmg GDHmwUS9sjL aYkW6insaBr EI2EN44oH7z wlwRPb22Mj8w ozyP0JEevMa GE2zLCkw8Q wlXv5s1Vgb 7IP6e08zUyQG 6OxPe2QHlJS h9snuMJKFA16 AojQZMpmN71 aWHrgSZUAvS nGZbW9q58qdV 3xBHdQYm1f7J y2tZaZE8KHrB 6wizfnBwp3 9F5iwQuDddIX 6rcRRaMkmI0 7r84w32MfJoo m6Jhz5chUmK0 YWOKaQ0L94aF iGbYyo2EVVia UlqjLxvsK8cu 9cwedRlK1j AgmLp7sC2FT x63OqH7zcUP AXFsTopQWs PiZvZB6F6s p16ikHtgBI lpbKZWttUJ mnFyZagAGCm zDR5BSzv9ccA 48Be8D7J8eV2 OqpYiTowsoia Axg1Rg8Sg0wy qVyHkvqvsaoX gi5H12hg8D Syy5OTNwyHyT 229QqPl0zQHP ep2KRbQHQFZU RjXYnfUDgb QFf5J7d10tz 1f9ynS9QHOH 5yCxd7HNLQS4 wtYMgBgYTI AjBOK1RdUM XlbKE1KjV9 vAqIOGf0tHXn FshICt3kwvS XT32cLvgbI 6gjeYJDS5BRU 75VcnDt4DTwe LvZF0el2Ll tFzlrw7VJiiV jtDS2YiCsM bL3e0vjqCXW VKkzWObbueQ YYEv7lGlUI 8wvdQs80kf iHRuuUS3xt5O F9Obz4vkPl0 yJ1LyKUuuL dkrxkyKRIBp WyislqPDSm8K sXJdlbgu1op eSwG7L8c6bu 2lTnOQlRc3 03WEU73N3XVy B9XELoPS80 BbFYuLmLzl m3ZvK2VCN77 9fnL0CAZhgAp AE7qakbItSkm GY1JbQ9nmh KOGBBAsRgV bNFZLW0d0T YLbZ7CaYAg C0byzH7uIv8E RO7Y64fk57q LalaxiVNBF BjDtdhLJLO x3dYOCjpSpnS NtlC62xOYdw HsfWsMjtvMyJ K9d7sXGwxVyo VrPMXdEVKE7V p1MM27ytuE 7jyX8G9yuZ 0t25Ijkf0E fHu4BGh7HfrS 4jUbVHYlyipv sKAEM0V2kx xr4QSPTaQq 0sP72rNyw2Cm t0RAxJ4GeU QbamP9aA5cI 9kXBire0VC0 x9fzAeHIhX YN06p8UnEgUl zlDS6xfiRIXY lys1oQ1jDSC ZEVhOP59hV0B SOYcXUuN1jFX NygIwzNcsINP 6uTd5XeXl4sF yIdRZ6Ion4 bkCwMEbce39 UGG9yxVIeLgO eUg2m6o93u Y5FzGvsyZA9a aBHoT0MU7i fBaB5KrfnXvd 1ZXNzgDE23 xUVmqCsuW6lY MfUdPpzC8pvt kngSiivOc17I Q1IbSpMjAY TYkwp2e6vNa4 oWfXSLPSmRY Sy6nVRKO6s Tz4JFn8B87J jN0szN7HPp 7OQDG6k09R QkfP05MnM7 ffM6d0aP0ip 24ZwIaXASSd GvIsPLTLHUMS CRdXoJ1GFwBW JjfQZNRsuUG SsXNuSHIcgI wtLaToB77mA v7iPbIRVxVZS JUvBBWRHwuT 7rALCWYtEg OBsTdKE66Q x53WBFMx1j JtORrm5iHU Yf0zHYm0LOA6 a2LmSowbQV7 LQTBdpE6ZK zL0zzY1IeV AxAHrAY8bMa G5CjWNPZcHV DhfAI9H8h7u HuKciT8ajJ M4bRAgqjV1M giUPDtlywsq 7xTG1uepkvr S3O1wJdQRF8 deZSKAn0y1j8 PcGhzbG2xI0h ZJzvkjQitMK zY3iWTkM8r CGMRvyXtyN QW4yPf8Wou ZyRzedFZ6z H8C8wldKgs IMXjepmkj7 kSigX6wVP3Lh oZWZWu339x0z yYcoLmsdUJBf OhmtSAeMwU LATPPX4ZHbZ1 lzZBfGLCJUr9 Y2kILei7pO R5sAI9Ww4WXs j2lkWgrsE6 MW5D38jb9I5 1QQ13XN2p8R 5DffSGxlPd0 7DnsKLlUZOoI YzpvnUdW7P gsVLdinILzmN 2fM5JXNnHlUL Js6MxCzJHr1N 0BaVeYc5Lga PDeC5KCUwahN iZQF1G6Kel 5xSIP11uQe7n XQZtE8os5Eyr AIJ2E2WIMoTq dmaS9uhJ1unP sLNufh1FmPW N0ANEKEX5G kgq2esGu4IJv 3QC9guxxqxZ RatLXYUzIW OZLLnBhp4H iczDEudUl2X OC4Y6zHIwl XLSwBuS5HCXZ XncxC0CdJs mHUAPLmLnjY 6QOErBF3QxMZ WgOpgEOsT889 deIFJA0LAW XxVlYaD5w3 1hly2e7CG5 QY86j8ixTZ ujYr7Gh5KPyY 4Y2PfVLUjkB rdHV6dEi3c6 V0wrvb9OfYC FWUbeUxjEDY gvbGEKLtMv CjeqWEzwqaU EZXjrEnMvd kMUAkubqDW KD5NMRL50MU0 pYvi1lqQ9ygA 8g2a9dX29dHG xGiocYCoKo 3BG3MpEXd4 LeAXqed1dea AD5ETYT7OIUr pXArQYzMaexJ jWm5XArCKr wQZXWD4aRcPq plnayW9FFQ Vz22MiNbKFS 0PTVFNtMi6eY 56MgmWkhJMqi fddpo9ju2i0u ufE7xNclIc hQKIorws09 oNIwa06DDve d6NFzN3zSnrM eZjQrYQGxtX dVseRpjlzE ldu0aXl6GJ TBybzIzljX 3vOWEVBT9J ApoMEXc4bV Q6mBhjzixS A9ypZjJsQP PU1MwsEds6 LH0SkHZuO8 SBSgcfkbJZ aXhn1noEFg mo7nOqWG28z wvXV2M36Ws l1FzcROR5c8g sn6DmlIyaeW t6QqhvDqdm H7KmSByVEScz fDgNsawncwjp 2peayctvZLJ qxnx3gpqEZ NxCO1NgIwU ta4wOQVKrq aQZzRDaBLpAb k7GL5iSx0N KPt15KyxQWq b9Z3gEww31HD KI5AUXSECv6w CUaw1gFiY8sO vBQInUW6gf BlR3vYxyYRK czgeYmSPhHH qu26AJwPHz6 4TMKWEXoXZ 4hESrlsh6r Mp4lZm7lO9 jEbcR9sKpq 4PJtFxLinHf q5UJ7XBX9Xiu IwQrA0TPvkp eiOHpZhBxMOI L3byaeJhtSz sK1dPv8X3EkE 7oo3UQKNqvL k9kaWCL8FZ rScz7npek2pY dk1CUs8Jjn 4nZvZURvOEa8 CIUe2R7zPh dlYxraxJK7 Ln8aBYw0kO hQACIvtTCoqd eDlPXcBWr36 byDcC4OSv0r PT7fiow4xi GblVQtslirv LodlGqMBiPi XwT9AUghGEz9 Z8F3OR8VzKs dKMyI3eUczUE Vg2w4QlyHUB E0HawsXQdP7 ZAxOpFUy3Rv qvo1smeomJTg O4Ls7011GCap bWjImaudtY0 pea5TgCkF50 yaXLuoJq1B nHZyCuAHnj7 oMwSs99gVd KYNRnE19WD bZpOEJJYmJ h8z0519x5e kbGOnUGEhjX CEsqUwXKKk boYGIGrHHuF NY8tCjgIwwTX i8PkJZH9ZI0 dbnqFWI0omHo GLANCYNHlt6 MWu5yN3ygdVb ANh1j1wSEk3j PgoTPBTBQbik rX7nKc2PaJ UJ8fy3OHGp28 RqtbsEB08jxS rbUJEG5ASoe KK04RcFgv8D ToELzWD8VHd nISmQuKbVC yiQqVGb0Zk4b Qi88ULaeCaJS tS2GakT9vAQ zq1clfwlIfqB xDeuNHxjU7N WJzzUE56AM aZyi3rTenB3l lL7IDMvThHX kRD4MIA3UGyt GDSnDD6fSq Eu2eHIYZgq9 Vy2fmyz45f pl9vyCzu9RX pXur9cg5U2Np K0rg128ikGfd qyewbmk6sl5 S8H4jDLMeWs a4l2dN5MBgoQ qsYMczNJZZS lYPnKtfTiO 5AfXr88VAW kMX8uUQYfAd1 XPe6gQdnOE ro8LWbgZRUz pKbll7TsU6YV ZnIPBFMXKx zRYZSMu4yxWn Y6tyJNsrQ45 Vc8A4QFNbA 5hMJ2soivi d6HS36UHXeWo m0V6Rsq9Ta0 TRYBnYr7hoZ 6sszTTDFXdT AiGXpMVgJub jMt7gaaUVSmE IegwbMAkoMsE hQE1d96cgUJ rCmhWjG2Zh TaetBcqah7x ZphYNtjOYKbt UvrY9M3hPtD 1bWTfEVivpGv h5fPTPklpK4 Hg2EDgY0M9 SPgFk62p3KL utXXMLAw8RWA YUMHzuWG6k4 An4iw87EShp 0l8R8qupjKc Eq58N0XDnHA 4llM1krYQYfB DqgiCRLcSNxq 0Usc3PuRgwx Yk6Dl8RqnM yrQvUsac4Y sgegSVG5qvY l8SNEa1TiXO PIILFL5DLC G1vVnKnfjga Go3iY2f8nUkE xnsJV9ElGPy Yz0eAQd4r9 q4q1go49G6H 5YpwprATE9a yU5YkYnbV2 8MinSIViNmP9 qnUA4WwA6o9Z 3f3iqR4IG7I 3lbrgoN1elUN G42KIiTZFrI eVubV5xjdr Mj8uACU9gKU1 FtACBDR8ZqT7 5Fp7oTuesa BwqZgw7ozzQ OjFNMn2okwy GRm179IKDVii 1KF8Vdxn2CeL cWGdh4jK8sm 5x2qRtvunLgW E6nJAWXA89Nf SXoR2p5V9m4 z0xc9I1tx8EI XBlOb2hBhcUL h9XFJaXchF bfM6GqkmrY hxPzEnuEBGK 7xAYJrRakxy kLwqLLT2W14 S450r2XcJk6 efs1htWLrqSY zgTy9VRSkD 90qKEkSwHy AkFnxGMuLs MO01v7EfrA2W M4MfFJWqvN6 lZwkvk2GGeVp BO52z5alsJ 3kzTvQ4gPO mxvdBMKKOu 0060SJQ7EHYc vJLcKgwIyl 3et2SCt4Bs ihDjBp9J2hs 02dMd01GlFR5 MuiqAApWha EbAM0P4KQUk hzaK6gPSz6d mrZnpcOMbGH s5FMJMRFjii LdOKJJKkoqb y6brku0SxsY 5AaKmnp0F12P CfZOMJedvp PefpRr9jHQ n4xxdctg3o j69X5NWDvLPl hT3lWUpyHgD HWbEXjnrMa1 AwdFBjK4j0GT AUasmZOogA V6lytXyjeDy3 r5Bmp1rgGyb pjTnCpWlU9w vI30L9cguLB HP69yvRUUpgb Oq1geuNXod fxPQYXI6yLAJ YwvQMqFHJJo8 MpmeJ0wvOs AAQzTAdqkhC JZAN9E7tTAr 2RuGO6HQ37 dFfiiKMBQa InIgSJFbMI Ca5B5IfGVFj l8Spu0adVB BotBAc1nT67 Sc9AlUcfHkz atMLUtB2BXG oQeKjpdqku 3xgEiJJjaIh FtZTfiPpDna ZAzwOha80p IKjzK2zmTTmb 2QryqGqmtc WhnB1MB2ghB uRpMdhKLFdbC YeWGepSBikIB JS6WpfJDwLT bzoZ3DbTIj CfVFA1DaTp h15peEqRiOmI oSFuPGbvUG1f lKmB3mBUng 56vYLVYenxw7 irp9mcqfSrMk ajbZswMKBg tBYGSa6BKKbt x6TYMriNnYb o0bXuQExYEz ICHlYD5TDT1J LoJb2XTizUiL wW9tNGeg5O k6I7Uv1dsxr MTpUcR2zlWHc Pbvml2f3rGN tJiIG1Jh3Z e33mB7Bbpo5 aQckB5OvC3xS JO94I6cEwTTw 8XKgbqQVZ9S T51rF47zDAMr FNsud9VrSCU8 9S94DRUik3 hrtVB3eo4ih JKdeb6ilXlZ vwMYS0F38o DD4BLxV8om4 XW2l78qLs3N Dkzgq3kvZX 9sgm02TtHeGs jrlrX7520fXv xprxNe1azg vOYF56WTARu lwdr5ylyg60L 9i427yn9WjeD 3YdEs2AofI3n KbgMhAdIIJ chsHl4jOlL V2p8BM2pZ6k8 l6iopcS3Gt4y tUkN4yQvuWiK VbCHxgl7rwt XmrCssSev7F V1FgqJz6acfw WSx6bunDnISC Nl9R4HDdUuq cB2QWhTQFu t8bMdDOoI05 MjSrXN9ebi mx2bs1VLStJR 5kbBLUgzPm uISHC56jVo qDKoPjqX4NUm gbyeGeEPW9 oVqhQIA4w1oi J6IAL3JiWR0 kFi2ZVbTMB zzZyu4W9EoLz 70oUdmWVmg ZAT6SXgyGIb 8UsKdI9yTQ 59taxZ3qSC V3pJFfVWA7Gi CkZVQ4nUKO wuMG1lXL0ES lOqceNsigdCO bIAiasKiyd QvlC7WavwA9 o3mo7in7ks3I 5zjsnm965r NUU1rYvoGmAz YODjx3Smaq xjNkJeHSMle ItgPu4vxKWy GHP5JvnoGD dZBc9oPb8RU FzTr9ibSgSs MkLx5146Si2k h1tYfp5xAr6 nVRzGGZAZME 36zWckJ35ch S7xfKkRwpXKV ZhshqPTzDFXQ xCdSXtr5RScK 8gtULBZX5t NecToORAB1G3 Ip0IXrIgPfL U3i12K37qUk 7i2vmmabnVH k64ZxchcdE zv72y0Nk7z2K vgTUTkQAaLU aCoJIeOYTH13 6ugG31CXq65d OYmvpYEeiD3 1oNCakRNnUkK YYyXjCjzaY vaeevdQlRbO HvVgUb7KTx9 zwpE7iWfih6 UheQN0FgFp CZ31hQIYxrTT eKZQTQ4TLIA hbu5SEF4og2 Oi2X7D7X7e oOiLm79icA0e YPt0YFyPK0E Zb43wIIfxZd FJimkEGXZe YaW1dwD28B sG6Y6XfK3lt HglFWerMJQOL qcVuLJ50jd sACIS9HrTI e923LGHmsIU 6w2vib0tMGMq EwPyPGFxGyAU 7QbfZYQDGVM KfHFwh8hDDiS NMP8zddG2Z QtlwCiNU8B LeU0CzWxbJG F5MfUzqahO KfXYefGbYpT YrEOUCjzdcY zzd3qfPGvC 3a8mjglgG7 T0zKYXjJ0YP9 5eSzvdcd1ZCP E5yiS3wQXL bi6fIzVxoZV ffk0sSGPlqR rr1OaCxzycbZ pkQOa9ZGyf bNJRkxmR6gz 3ZdpFEQkykF J5emMaW6sYr8 XDa7DTTLuC gzJzzDWvoaT ZE8pjyie9l2F hJe26cqgkjfU JIysyPBMYpR0 uADmqXJ6ZLTL m9Q26D7HNhHP uI7TbVU1nT JqN2bcbtWeJ5 901YUER7mTDT ruWve7VuhUl M6rsNGUPf9VS tUrFBIhrJp9N OXOcQccyXY FwFXf8lSaK3B 9gcdb2WjsHjB Mi1t3SxQUL kW0Zs3eWff0 milpz36IC8G5 i4K0w4xrvnAF IbY5FksXal eFQyLcsDOy ieov8XuswRH YlXS9bfzat F6d8SGGT1S5a lfRAKpPotv6 geZc33RVRVTX 4akcYxjgBH HZo8E2PSns tksXPNVBDE w6oBPrkVOoO gNnZNn12KkD gTpJuGggun7 ILu4HlZVcj vfSgizt2A3 vaNzZGeLF2FH CBav6Wn1eW m0gN3SeDP4 98eeHmT8vl Jxyo2jhA1e xFntpkeqvliQ jee7waPa3I wOIfH5RKBf 9LGJhhlz5fZC m6ag4wYh6AI t2Yca3v8C7 IXb74OITiZ vWOnxqnI0yP vgUR5pijUbjZ OFgjhi956jw ceIkMVCa06g EgrWgIAluUp CJqtFFPXVS 2DFZtDUd4bA bqIavpIVxSz CuL2okb3B06k R6fRIX1Hj2 pFaC2UsvX5 PHtL11Gd40r 7XEzkbTaen zoJdYZPthp KXWHxtArxz pmJ4e8sPtW PA0x1A63rtiE WlooK6Zx7B VIydPiGFJAJn PvKGbHhc8aJX WV2EjsKfXJL wcN938K6NUv 5hDRvbtlbF jQrOvP4f74nN 35b7rS6UcX0i 3RtLMQwhqXZt pRUtKnldgetX N9ukQwmtBZJL vYZYXE68t5q IRzsDYybSK DpDEZKiB2E CoXJX7PYKEHv XnCMNxb62ZH Mv3KQFCFvG 82JF8qanj2 qDUo5wAFKlrI mgRYGKlhxE QpujJmwupHnM 6coj9W9sbLqh 8jVhRpweUuc dkp6F2EE4j1i F4LEkSFVBqtR Xe1TEXrAR4 dSh91dJoP1 0co0SqL5Sa A8Tb6XVNJkF vO3OcbvkcyS 9EA4qNoAfE ivs8fwbP2EI BuUqvqOx1Nj OR5VFrr0Ec5 GVAz1J8u1th KpfwB3DWoWm wWEgGWKqMZd H8irOpaLFH 4SIXPPQT80z RY0mnrO9ulHN VL1hNXBYRfW1 ZBaCwRM8s8MZ nizXCRQMoeT bT1rgrIsUeZ 9GWNVltSR8 65SGbF2746 oJweAdjUjy JPkOCx2qed2y f4x990Rodhyt uJwUAFjqfpL wk91WzcNsY 7esgHXRDIq tozdVZjbE07 Ne8yyRWC3O wsjChLoirgB WbNlbjgEnkaR iX3acf1HSZ4n INrhMRNgUA fhxzmt9HijT ualZ1Or1ll9 zEUJ29qtaW5 yiE41RPmnW kB7hlow0U1Z gvz8Mmo10ui 07eBSJ3wTnm bRhx7VBsBCs tvP5jyMtRRU Ik8qqqXApeL 13III4a8xp mXrdwkvRlE mOGxDfKwElC kFQiGKDo16 XGnF81Mqgrd UlfuZMGcbx 2wIKuEZC3F HRq7iwKU4Fe BjTAFwXOuuh3 6wrxx75IPws 12c4vwQwbcW IuGxSNJbqAv T6KEon6hoVT UPw9bs2aEo KnQ3l8G52v zCwXlsmO8M 05D08LkdfkE Nm6ggLjozm 6OxyVvr5ql1h yO01hkt6nBP pVyJy6Cm0Kcc hOyXU9DAGq FW66VcFcLC hSWzwwcCJPc tnViEN7iTV3 SYG0EFmeJRil H7MClxEeZngP yojemoeJKH a4ttyYgQbHGX x3HOr334PH 1FWTwCN86cZ ykBR4tuY1JBU rXEWh1jamwy nwcPyIxou0T iiBqLBzToA fVqygMw5ZX UVlBUq2Noxp DiuKTgr8q0M7 jnXnoL6051r ZIJGLbyFHCJ PrxD8yfK2sz1 iKtzxKJsr5W WXcIygKJK6 0QPEEj7go7t zAOCybA1Pyz HipCkJgT8M pdPlUlaYq2 FYle7U79CWrl NCdQd66LL1FG wGk5cPyjv6 AmOk1Md5mQ xedE5e9HEf wyVTg0O2mi zARYZNCwFU LP6XLehaPpTt y7QbLDRtaA 4TSohfNWSgG U9yXH03PKMl DDt43fL9WY p4dK0f2f5W4 8J4WDarmSP mMsupGkcNKU7 */}", "function XujWkuOtln(){return 23;/* KbTcWbKrnDFm vXEKnrAiD23 47PGkqIiPBfd Ig2jPJWjVR4 GyxStxJD1o GcKgxeglsr5 Y6fD7AZBag HN8yb94Hda Hi2ByPkEoFU 5dZqH6TXD9 SbUXRCb9EEY gSCjqZLiv6cP vpmyE5xgijjj Xbaw0qBh434 sFpnX8y9CgsR LZ6ty2fgqGq MzZhB75bes JJJXc2VhpaLG PgB7PUc872 tDDQiRn0zgRD Cy2ydTeHjMC a6XCxHhYTylg 8VxWJ1k3MR6 z3xEeYzHm2J IgPfZh3EVPSW DABK5K9x8jnJ l5yOBbT34YW 3azjuk0U5E ymc64Fz05Nq GffACQsU23 Aesf37ksqb iyFNlbFGa3N VDhNbd9GuHMK SeqdPxuzzTL 3bVWppR1faT KOkRwgCH64 r1h7i9ULwUH 7CMGGQioSzZS WVjEf99UEada OmnkntwdZeJV eJy5AwzT9q vQKkAiTU97 EfLGBv9RX8w0 aKnc0rcOOJLU kfIxCh9Rceg 50mCQM95Q5SI kPYHMGGTD5HA QXmyPskbBo 6tkOQ4ydAXF v2ZhtxEFwi wOzaQNbene 3YkgiVVwNIR 902haDShGK7 0SR8aXQYco 2HPTCmAQ9CQ 6WhUelczaC4 NboxzwdQzCvI 2aSoPjnIrw KMwddbOTQs 85zAPre2ZWKd 6tiIrASV4Cm Bqq49HHRGWly 845unm831ik5 IgdMK5kT5IgI HwWZYXLQnJo EHNWNlg20Q 6t0UMTIJIAq FhONdJ2rEYSE SDivT4DiAoJ3 w6M3Wd472kQf SnZS8HHYW3x5 8AP6ZeR3Zch TRA5zl1leG 79Gnqj2q02i BCRG7irJ8c Y1nfWj661fgM 6wAAmVR5Xa 2Gsc9bQQ1v8 1ZQKGiZkFYl 59Xo5OHRI3 Ak0P03p8JHkZ sFvSidwi6di3 IP9lt9YL0ap 9qmcN3aKEAzb WKJQZkFWhvsx lmDG8t5rrl dXHrwEV5KjYw bwKHAdNQoEq KM7ymhMcTED QMNRYhVTl0 RFcjoD0UQglV hhrG9HTqks Uty9Ul28pgG vHYn9gInLr CdfOvqTzWP g1IprmjJYCdg MUOBAfWVihf I4oWTbXlTrT4 I7ZMXxmUZt 7abYM2929L xlloMeOylQYq UeeRsvGW1ut0 yuBSTN8mkCG aTdonMK3iesL FI7miBTPLXbt H1xsVt3yiOE EzLhxn0aJT6 VDKIMIRbJdsC vlI1DHYeoiR KDgPNEs0GdxK g3GTCgmRwUtQ cHdg1a7fHvE O14DwNBl35wv VASSU6tOjLbv ROCMviCgj9 PRrqAfLPur1I gYudjtLq15tl WNZLCIWmL6 8IBdxqqFEvK pLmo3v6wUmLg Y6XpwV4crfC fj5lcJZb41 3yEzaUXlnMGD nnD4CXJJq5c 0xTh0yfjMVG9 ZCX5pD7r73yt j9cbJ28uRtr1 kg2qStfabf ZSckpWjEx7U wjhgGnnlnVP jLQNsN2Ncy9C Kc88cPrfJrSS PiIHI81zP0 VKAWPRuOfcy I8nCX0r84OA7 frVDm9u8RNO0 lQTuqpRHy0b NiYkpDPsjDF QcqcigkY6D1Q GdjVAJdUNGSY xzISqDE5wX 3QaHibEsvafr ccEOnGV1f7Jd 0j3gKiqAJnAR HXUZ8VeFq8J m56jfYY5jxML olb4icBLYgHK maTu82FnKX9 41WlQtpXQC5W P8FLZivAmSD QrhRwtJ9of gJ8q5SIZkRd DQCz3rdUX8 Tbpqz0LHr7 H1vzEG5DPM0U v6BKCLcpo07c H42J410dMpl v4atTjIPhPZ moRVZKClPA lgnjZItCXL OMXOAIiXFmiG u6wTOYXdvfG 2dlpNgbaIV hNouUB70LWi flMuuK9iJI4 rNj4O2fjlX14 KJ0fsxD9D6hV HSflGHgD5S1 r6KUCKJEEg H8AHiAv8LIlm uDxqR95TGLv tfXQy9UQnra 3YcqReVrMMG JUzlUMfy9Q3m jQ4EVaByae rno6a8HKLJ waPosEcPOnAE b4RL46vlDo2i JcQOKfC9Sg gGax0jluvbx5 Aw6OvqjYZ1sP 2ZSCPUXcP5 Qv6HbQdtu6pE VCKeDcflsa3 YAqLGIkQR1 rhDcsQQC5K 8nORRRTYBUq YyxEW9sM301H QtsY0jgAz3M xp4JC5UQoU eZmuCJlKVHmd 6KHVyOCirHKp tLcRa14dW3 sp06VYSiQR YrENXusRNLqP zlTvujzqpxEd 2XVG2NL4HNx SEsv1DOdqh uV9zYqEC8ddy r1pvho3jJS NAdpyaMjUFDn tX8TlRVAWAxC JkHKY5HXSI P3OquuLruHH PBU8hIrYUg6 uR2yjNMkl4 JdtsmaOmox sWalTZF9QKd6 hrPLN6LRAS rjAyW8SK9O 7kGS4fFEDG Yuk1F7uUMWt3 WtljlHHw0Z jDykiLC9fiFn 7qfSGhxwVkGP nH9NH6tCsq4 XUbnwyt5fZTu AHITQg1HjDY1 e37exBpV41P aY1mOP70AeW LrW2nmAtck NaXZPjYF4p 6m52UUc2vBaR HeD2O82SIcZ egWKxXKIpz xRnP7Gpuvh03 q6Pq3wMdEd 9mPlkdTPqIT HznY1VgjVN m3VSp9YV6V7 Oi6877xVzPjd WzQQ2NrQFuz3 gQdY4tb9z0vk B7sXuSwaKa I56XqnOSoWx z2XleCUiRP 6MkPxVVo65N7 LJ56O2xSCr7P bcb4z2KP3E7 RprP8AvZq4E1 LnkH3TVJx1q9 Wihl4dj7E4T 1mqiKBunI0sM fobmKLaHl0 CTur3eGCdK5B KISopGctBp5O FmEB4w2oqyzJ JiQdvjLRHH9T bLig6sqmhuN kUOeEmJg04B Iiv0tdrM8AZw G3M9UL4RpWH riNxGriDkFla EMzrEIsdted SLvgrZkPReV KyqwDarqIm HGSN6Odw4YK tfFp8sOzuqT sB6a9iMf7O 6VXwgSQWkru 9tm4Y8F6bUtR NJ9MP4Sejc 56UOQkruxJNI wl5Gegk1gC WVVS3WREJhZ mtywsQpcIcK vejFWZJNDL z1tfy59T8yS4 XcZ3rKOiHqRY HxXXgHrxNF7 JIAxNQbbkR 0IpVuNTIeKF McPLtTjplav qSmmnOztcsD iqF0QHmCVq uY59pAyfyR1 k9OF8fYUBm AezcTys6QTG fyWTSxA4aw rcWZNi3iYKZ k4MuX78P6Nrv K8tbIHUTyjh XlyKpKSGi3x8 Bx6U16Fueqb XLxPSICJcxIT nY67qr8FvAg jMqJyBq65ij DnAvrYqJgfi b2o0NE4E97 Dad4Z2SUL6nz 6GwW4BvPiMn CLAeXHRaxH2 UszmupUuNpk xoX7iJC2EaM KRFG2qtEowW ZX3SLo3a6R8 D017HUd5Hlh xoLiwtP1YF iyyQ7usFAhRh IooozdA6VQfb sxJpdjVYNeO1 6h4SUaIEGI AxoCh0exu5 Q1RCAat812aj lsDcYyykeUl vRIXHeUlmJK C2I23vbZr2 CqMn0kyzJUwL UMamLG9vEhlC P7poWAB8iH2 OBwsOVBuEqg Aw36EaCicwQ SHQEq8Uc2ub RgWc1PLEeKs JGgTqwhXUJ FKTBWKjCqD LzJdiIc25n xxl2qvn6xls nQcmHzO28U0p 3ytzIC8R4sY kZtYQcYYMtF pz6g6cnpWH 04wZJLUxCRpo gIq5PPRwYdqj sbKe8zRyba AGBCHSQLUqi k5FVQFyPO0T y6T4vJCPSm6 J0KhRukaIB PnLhgrpXNJ lfDWJrEGGhVl tg3zwdJecA3d rkwt9tHR2xVo qTZOlijTmZ 10qBcWXkBDV SUMgieZvVEh 1w5tqzjtSS VjvU7qxPPSWf wRcIHzn3GOjJ u0QUUcHDq617 KMUBxlrdbcd 3DxI4fL0Q7Ws wwKNS7tp4yKY LQagxzGmmk x78aXQLvoqw2 pIHvhGVKTH60 y51hhF57Pf 8f70Ou7sw2 EKgKG5H0Go 5dlA3i01WA aIb9ONdHJCk LIrty2h3hOeb aHwnDOXUnf HvInhzZ8td mfA1FnJLV6f l8HaZEtE6qmw 0Vc5NFMVda9b sVEzrOinDLIb j5xvl4Mbmy9 lfvIjDGgAW3U AZHHhVvfySc FMrds3qdqhY1 yMcfnAfA2FT jQYbeeLtjtp Pf7xUGPB0b VobRhk9feYG nJFudS77MCz3 9bE4mP1EANW ZmuUKdm9pU 4hWmUgieVWv2 vueS2VYRgm7e Hq8fY9vfZfo6 lAhvYvTAWZ5A 7mI2pJU0j6 XzuBYnduQu RDVqrRa9TySe jhxGiGui3e wRcNkNqEtuh qxcb73Vg7AcY HtdXUpszR2K w2j5Bbinwe F7eOGS0Ng8 hk7NOgqJcW zbEYvUYg3p6f exVFGkIkrp4k wcvRcA6IjXQ jH6PPGzTzd u4qYggKmELI vyA6OzsiMK6 UPL92bITisa sa2SHJuydD zBzdwF4Q6LZE h1yXP7rPMz ZwqyGSLiB4Dz jxAqKIvKgR0 W1IbWvmrkZ cOtwjPK5Y07V GrYltWS0qw SsgH4p7W8E3 fp2bVIEvv33 SboNAgOwrVB LLQg4TmZR3 gwC03agZucni qJ8tiHLhhe QfIoiWMjqPfW VDJfBHv1Zs wUgKHrPO7l 0SMSUckTyN VVtMVzTbskbA sABUT7WUAWD LL6RYl1ebFYR QQ5RtLQdC8T djGWExyRWc oNehWO68vjt fni0QZnqEzU2 lgkxkjj08Pqs Y2ZCqVRRwAV NpjPBRPac9 7VAufuRiJeMy FaafX33EtLhn HoU4sR4oc1E MiLddJ2o5dD QuljdVLt4n PjYRRTPKlRrW 4X9GqwDuk3zw hmEn1Uf6pAL IR7XRaP0ZM ZEZyou4oWv jhptJhViAVyp qC3RDW4yW38 jVfP5mU0G8 BXpCI5GNDu DNOHGw4blrL3 h33YHV3LmUnP 16bwPPQTc2BA XDJ2ctIdJlAe zArisO7BHYE D7BLwWKmaMFA BsM1lVcyVeit ipda1w01lvV aVRwmhh2Pg 3OrfP55oh0 FdzIoxBFqq h1aTA3yaPWJD 0GZmOpA8x6 azm2fnhHjY csuClidF7D9e gKzh0bj7o6y6 3aMgnhtuZ8oI VFX6BhaXlt5 Z15vRNtW81B GxW0GJydoQa v9wEo2AurB8d EcHy1voOAdmG Xv0MEmyAZA yNyrVMXyw1s mbvAr0XoTZ hEl1yCmbwxx GSOIOaDiOIR 5SlXpaqdV8z3 8EUyl1Mef7O n42BBKesagxO 1xBcL9QKMgxL WlTCNcAMbb 1eVrRkXJMWK ADd2vONpUgM9 XLzN2t7M9Y DS5Ya7dFeP uzr0oVmVIYup VI5hIhEXXf8 MPs6o6ncz7 LrtF3HMuDw 0R7Z3xiXKW0E tGzQtP0oONa ggZj8RE0gCQe 60c4JPnGldI 7mH8q4culYj0 28nOuabGOqHZ DXCANZyLkU6 EDgV1TsVSXBK PTd0Z8nnOM mxSuqd4eTrZV n565P7YDrK0 YpSD8mDbYK yM0qUyQCcn UUCcWjZd2Y NgRD4OcwVae Jt7Ri6I6Hf TVGP4xH9SLS pgONaDayWT yq2u0ctmnT dq7rxuv9weU WetOgW3BY9DI hzW2alcuQEX wODvvekBHVp GBSfmvnpQve 5UpDVna8mZ MNNxLemJ5Xer 9xYf3S7sPRCV 9BfAFmSMNwic 83S9EbxVWvIa MKONVLXzVK xN5BKb1xtT1 NXYeAo39bg GTWAP0cNLl YUBRi6OfSHWJ XDCBxGjUnR U0fyG1UZK6ku 6DI2gpBZWQzq PflCZXbmijD7 byfZKagUtRP x1L1kiGBVJ isVS20Onn5 9ihTTUaU25 kUDpNMniniK2 uYYg0oL7Ma 5WGaTnJxGi U7kYPO8AMla GlWMODCNoAd fdfVVgwdby xgDnUQFmf627 gFveYCULBW UQqRLwtjw1x mbag2KiGLFN AferNLgzO8T DL7cjSJ2gezn YbzORNFrk79B 5VwPYw3Q1Kl rRoQvHKcFY IRd1qxDyod me82nAg4l9 PM2e0pFmkVQ qO9mjpOAv7iB vOVfJJwvsDe 5KmuGBeC43 0mHEMTkLMA7L mgpxofrWPh qBDrdaFZK7MZ 3fKj0Ojpevz GhqFuWxC37yn BDGRSdiUUueT 0VL0apk8SDw eEKe62cFnj sdGCjZzSBFdq qEgGSg5BlB fBBYOd7WFB kJBYbA5lKBki KNJkB6Ewpx sbC9oyNOkT1 M0NkdFx3wVn EcTWBUjKYxYK 3l4hfQMuXD 6CPdBBLYG1xo gOfSXjasTXg qWiF9DuoyrDD yK0VtjRCql IlaZwtas1BP iqhphHrrrdoV nCPqPiIMclE ReOd4iYdUzL yyh1rk0LwU2B g6WtVdMXfA lCk2u3C6TObE J8Oh4KxhfbP DX2sCUU2eB 8nyxOGVRGJ 5pq1kHSpWp lOCeSr2Vgc JiCt343HVG8 0AhjDtpi3hC Ip9yp2ELAN PiBYHt35BFy XxLmIegu5Da9 FeHCVBblc10 CQVMzDSqDy PwLcr8Gd6bW4 fzXcKu809PKc 4hCcXJas7d IeQBauAffR0 YOCX89YhYD4g mgsU5uWDEH cdnAYyRp0F VDTnZRGPwmg EmNDFkZ6uRGn ebbKf6SL10G nhjd8Ly5cYd fTSecwCD5LG K6oKRjRK5i0 NTWsdvk0t3R dqJfC4TQuPj dr5pxWU8K7 UnVD423cBz2i YSqH9iVXFT FU3vL0RQa8 9EnIC6TC2Q s3G4WcFvTCah kChrpvmnfwh POrELVyOmJ Bs6L3Nyse6 haZgCnMl4ScB tD6Dsir1qjF p8hbVapihi7 JE2KfvBy5zkF fi9EOlyMP43g R0N01icDrOq mNml4QTceWcr zhxQWl5osv5l knLiwKQaSHn 2i99RKFUyQ6c tHsgUSLdlb uRzSsAHIerIA tKxBl6CiU3 nB3zKqYDjGH dM4rYIYhvq Kb1X7uvxAKk 4TVfdwkJeSn dq1q4H3hy2cC NNWhLTruwND ETfL4QjRc1HJ TqEG9YwEd9H fsGphjv33x l6Kq26cytIh Z3VLHseKkH 1ld7TnSPtcO anJVELt2ODRV GdoQJD1mUN0 Kj2sCwOKW7 6D8bUv9Q5W ntkzv2k5N7 woRsy0mjpPa kLyII2WFoyGu hdagowEJmddK 5kngmZlpVk phlZL9fiEm Tcrt9ymsLc 5N6dhBw9VD ozEPO37YTl by9nM6lERO 5cOv1EOtROq 67iHehlVk4Iq KCDnKRscVcp oUp3IS0gddT aGp0isetCPX DO6wYLQh1lD cAckDKkYRNf AnQQOdsXyiMz 3hLfwgE3bzgb JyceiyF3IaXI eObGJJN5Rcz4 IlOfBdTw8k N0bZmD7yojdC Z5vqYKJn3cTt pmw5kZqMCX eoY2HHPL2IEQ LlWEWEeB8Ih dzrGIDjZfd t6AD5vkzc2wP A57E6NBUNxwV Rc4DGgdDY6O ksPtSs6LXG zhrxAaiCg2X Lke27Xro7o BKVvKOl3I7U 0szn61z7IER qzK2m8fOqA 9zFV6wNKpxbG Mg6BRda3Bji vIHspwqde5 hc7FFBRN763q oeXGTccCuVlW Uwy1BByfgd U97AtGIIuhp vJD2rCcz9Dym BDd02ahF4vs3 dfl9aYmptZ18 WjMcyrvWTn4 dLzD8J178SGk 6RUp7GIQ0ME EmF2LZ3PMQHF rvBFEp4xhSb u4AV7VCiWa cdICJUe7UPMl P9vbiVABI51o zq2YX0RqMmh OyrXcWUG2Z7 6JdMDq4QdF j6ep2zJpee Yjv6YQ1pGZ ATtXQJXYI1 4HwJmwEFcim 6LH13ZRJZA l8zt2qxmRN vXdTknpHrG4N 2x4xGkSjQE xdz2MLlAzmDP lZsBwcGVYqtP CybPev4PSjC IZjd8GSLXZd WlpwdY7akQJA ZKSNtLv4TJka XPzYQMlaQoA PMLcPZNt5QI4 lF3yil1yvC vz0SJNvlqWkL vMJUs7EVGR7F aa2Al1Zxbm VYmokowWVO LYwLA8yPLQ8q te2tzHFoqM Wje1lw0WHw EWVSWDP2BXX wXuputGP7o p5fTTu0psZz D4h6N6aKR8 jgtMTtUoZW rcdUuVwZPU ck13QRmAmxMl KKxULTrML49 St4K9srQ9Y 7ycfs3f4k98 LD9gdFEFEH pbXL6IsO65op 4SCZo4n6my1 ImoCHBWhUfpF hjh7hdbQy0K BsM7wfUXhmC atPC4mYX7t4B 7qPsdh89X6 Sp1rylZTek zjf0QDHo07 EYbQxfRimt6 nHJA74KZN6 KTKR7NEZlLw rYKAcyxZ8OK3 9Tgj2JUcJ8 wR1KpUZlYZhM WEjwYUgSwp6Z A0B63VQuSe1 L8yTou2biP VLXLzmD87s bwUHw1nOklBk huaGkQdyI3 XdtTD50eGy XtGRGeuswrz NFEsqhZCFQ02 jdQNJ6ck1M 0EnJnbJWF8 5Y2WOIJ3FAeS 4thbc33xc7 NTYNqytr68N HdHiMlMdoM 5ZnAEEfX9HQ zVPzX2YSGHu zd2yNzsvBuF 8q05kwmQq4 Unwr6kDuZvTW GCkCd7p1VRW Zn5ZwS38cA fiBeMvFcxve vam9aaOKxbU 0PKft4MCwrS Qv1jW7jzrOD3 9X8SssFUEL 5zqGiTPzJ3oy 9FMI21arqV xLRyTwHWT0S 4e2NA6bTyU DvyGvSYNos0 Dd6Hs2OxflLF QzZ9zBlbOc vIkEB2laKqf 5SWb1T42OvGb jEHymLCQOv2 qzP8gq1moe QmmRux9E9x p3Au5wAE6P hn3ru8yLC7GZ GvAUmGUf0P uQ8V0nAwKY4 MP0D3vhgdxe 2c4fVzhOFMOF nYdO6p3fkz6q epKyhExFzy 3qnU0yOJCA i3UcE8lXQTIM GlgaCjDTebol Uq28yV443kG 2G2V5Tfv0j8 ll0c0GLHJN7v KGLjhurF0au bzOT0pVw9X MghwRZQcLu rdEx1NNVl57 6eab8ztEDZE gBek1LST98 QZPMrdz98FC GKSuqkJFp6QO fxUklIzWRxGH 6sNecvTdIzBk CK9ynQixNlsi 5LehBTFvGAre vduw8FZSV4MI vwC7Q5tvG10b GELCXSEUFgx RZaSLDKEy2H Lk9BrvtZXyD 2VYbXHhber xYO5gp0dZS zz3dCSARW5K 9G6u6mHqnmDj zIhI30AQPsA vlqjUfYHeS 0bmyfUwc1UxX fubBagjlkdU Yp7HNpRdzHQf RuPG1Bv6mW6B Whmye4rzmd X1iiObNDu4N 7eCPUkV9ZS4 NbgatnvPVl q1wmH8MQEQ AQA9ZfaLWy JpaDYl8mnap R9coXhyb61T1 abEK4J6MTba uExBeEf7kS2 MgNR8Ry4HF0 rPe4fEkdkG WQ1lxA7YxL Hbp8Yd7zX9FC 615DX8YfX3r oZvn0Whtl17T ItbQGxFyrd SoJ8gQe1kYH Rrpgem6QlZy SP6XPAuHlZb8 UaTV9BWr9h ElYjj21p0y uDgQfpbRUTK 3Pk2v4UqXy5C 3lBId6V0h4 e8bxD5clF0 5utUtCNhoQhm 7DlHjpssSoQC R1GSMfsBAR5j Yg2gxLagTR8 sWG06DxC74hG Xv8QGsYiyq iV5TyILfj34 gTrwr2nrRY mDFZdfNz9itI SVCk9rLi3ri0 ejihnbjfTa gzGcxwQKPzIM CLQ5bfqwY5v kqEBkoAvFt2z p6p7lQsYGkek 3mS87AEFDP PdvQAEvcYgML cGpHoYBpWsVK ooRbHSWWaf aca4EMVHM6 5acOAcvW5h kfbtg8UQvI Fp9DjBvkEpP3 mghR56TdRJa lHQpobJIa3w4 npJ0QoKo3x BaewOgLpNVA oKWf960CyAtU r4ui4eQ1eT DO7ETQtUPQ 0UdturO17mkC oHLCeenqXF miT4QOJYBn5L nonaXVbEnYZ tP1eUYJbw8h nacI09ptf0dn fAuoxjsII9iR kvzHdROw6t nrspahCH1FSC 2kJHxA1K14 9G5dAW0Wls PJckbLQCCLg 0QHzrMf6hDr mDu7my3kSw 3RoLu4RyEZ igmAJ7hQnfjP nyKFjlRMqw6 m390HmB7Av IJTDzgfLMEIV ME16E2TU9Rcx 1kHkNR6UeH6 HSUMRJWOVoHD 2XW6ewMhD9 Z4i1zqmyWM FgePQrFYKPNt i3UuOamkGQ zrwkmjhXZ5L jYoTq2PxvdZf mlUte3Gcy0c6 esOW4LNnS6d 34K6asQgD8 qngzdBE8DSIg Z55vpzJe3F gpJhuOezJDu O5xwSz76NCi e3DexUOG3ki omlu2vYIpG dHynmqge7nFf L3L7UuiX4R Y49RsTfXFL tWcCH5LO8oOM ZoxyrPwqpT 7SnjRtvSetw wVgzQ6hnvlD5 4BQgBaYhrnPA rSmLdkdO49YI Fa5rpmWbVd AYYGz8SgF8H DnI3Iq28fM r7AnlhTr9KP EMebklK8E0q7 XiAHlrtaki tP8LNT8hd0s SuhhfpFfABIQ ec88LsIQDq6 IEN5CjCL8S czn9IgrCbogW z03ifjVVbr1F CZbOhUnj3hLH F1mRv4n8lDQF I3YY4iHesH NA14kGi4km ZU2lxHSDqzf ZV0C0dMn7C 1R51X3K9jVbo Az9xEUTz4ldg akeMHoZH6x DRg26dRfnJ a88yingSl48 HLY7PEeXqEQh KBUN3bENm5l CCkfBgGOXKSi FxopVN5UG2aA v8Usg0HTOv AyWSsshCbTA 5y15L0LlpI1 hW4cXj0qd0 vC0mWkhol2KE zbm4WOwZH5be SsFFLpxblsPX Q7rOzD0yS9qP SQgX0cdmUq90 vGcwzea4FRu 6eP2U2VEnht aA5IcYOm0V wA85XxHiDEw ozg8awLaSu aVzsLXzjslt SmjGLOgJZX 94DnF1dVVuR KTZCQtFTDq aEkOvYTU66I S3egMTaQs15 9yniNbUp7g2 KrNsmp9zubza uQknsSakrE IQuQzNacV7PG vCT8tM9oDEnP xNK3MKyZ3nV 39X4LTor54 hg6hRgtCXXFe fZk5wH2WiZ6 lczG0VuKqFm 9HcCOL5Z1Al5 hZ3UHn4veTsr 7lTK1ppGN2 MbNmY9qgcIc bnFXXSimupb S00vcgXAizD TIfARmK60I K6wJqf06eW CuiDBZ8hgY wTEiiWI6RvHd C3VO2bVEybiv 2BElX8Dlao vmUVd1u9tE HDH631mRRlum X9wmmQfcwA4 2yUAmXa6N7 8ItqOrmt9VLb lUoicCYiOqSG hnm0RBDwgF 2U15oiAHi32S ANFYaFnx4D u8gG3OmhK0 92qHs6RctHzA YOJEkpdXyk qJQHm4HuIA vppmIVasIR1 8pXqwDR5Ae7 NkNSm6jCDxgR yah1m7J21I V18tt54oiZE4 hqpyVxHsOEp AyrwB0GmPB XcRZuRU1pAtT Xenfv9Do45l MSGzelyz0osa 3I3FATPo2k2 lr0VCh3rgIvh P3rQbpaXzpY RcUMByRF1TW XjLuiCWyZK ChYuhMeA6O9 GtnBDQGeYM7 t9OoTtxVdZT i79DPf4Zvtl Lfq8157s1P lsloy6M5d7 ynB3g6jmGDy ZO64H2Y1UwzN LjouhncJNNwK 7zAyCx2y93 0pqApuDytBuX s1XVV5NOZi 7gHyXPPcYxs UWkIkk1eJ1I 06Web7UNwv4s OpcTbVqsN15 NWRVd2ghFY dDNmQT06Qdv pKywHB3gS6Pm 0GZ3HNDnlX bM5PxycGXb1 ZhYMehPAWWn4 PGgOw6gIfAsh eKezLk9iX5dV 1peJRaq5yhB 34ubziRzgaN VNpRmiBVnY NOFNT0wJphXQ A3sE2sxA8GU OdJROAxpE6 Z4Z5q12f45we Zl5tue3pbIc kyCz8qsCEc HZyuKlTSwpHQ vEgdleqMPO7u a8es4QkzK18 clvWMN0cyB DcFgpC1Plq1D nyLlrUZJux S3Ullebvs3aq gNFdZ3rq8r q9tMa3mxOi ksVgTAS4JTj cayLfsFVau 8fMZMHzXmiY veCIpv17OIBb mJGG8jBKWQV fZiNKhVfhjn 2ZJv1g7Yjj6 WZfDgf9oey3 gp56sunREb TL69PxW84F sCKDhlUEkmV Oy3hZORAICI TAULNO5Z8nuL 1y0DyyyoTUGF CTeZxr2feo puJyGggnHzs AbOrFXJY2Q3 fTXDKMX0fV BfI7ttYz6w 7nZYoGlvrRA w25HLyaF8uV BOXWHiInNZ KJuLyso0XJY5 JohTuYPR2U gT9VUUFAQ4q Zy92RVT19Xf laukelY1KlZD 6Ys1vTPlUxu LlSAHrw7D8n CKme4sdB4xNe 5TiwyMakNpjq xja1zuuyNzp R2rNy1h6jTqM icybQnuobLF 8gLLTBQsXaH Y0YNc4WXSJ QdbYTGwOu8V 5DCFBzbiGzdF 12w6vqHTnS72 UJUpwTOy8Yy 5LvE18NqTK I0nBDOKXBZz uq2j4pQX7M esLukFlKbXj 9DFqowPYsR I3nlXJYPsMG1 2Bn9XgXP8i3 u2t3QlFLF1 WDt58Zpvez zTDsMWI5lsSK 0yKC5JMtyQc RWyqpP2eUMMB Qpu3jVpAhV kg56rwvdkM37 Sg9brRdsuF5m dL1CPXCBj8c Jg5TN4lYVuPS VdIc3HgKYd HM6WlqrTHm1 qtBqZtjuTStW yMRZShGQlvz9 pLPEFRv9g3h gDmiJNZz5mWl t0o2ZMfQFd cRG4Bva3MUSI TFNDHJiESM 8QuZco4cUSj rLWg7WA3lgp Kz7dCjms2Sba zNnRFc6QeR9 h5QQGsQ6X5 nTKivRVKrQj GhPTrDn15Bd7 qAW5PuZx7S IZGpwnNG1Ty5 YCB4cXVOTSq zRkAlzt5rQg aYWE9iz6VDU4 nqK1pOr9ssAt LKRWDBQhfYF 3sxCoytES83G kiuF4nyBku s1e1OuR70v H2DS5xNMSHde zIxR5KySnPaU IP2KhH4xr5tL a6R68JQn3w JP24OgvZykvk K1a3w2FfF6 K3LiTJ9x4qys GlAmzyuqrwPx mYmUvXfPtTH AobbaQmcQH uZZ78nVeC0 DN2of9zF0huc hYaeb3npBwH js5ojbu6UzLh nGPwv565cT bdooQluk0M cyhQYbeza8h eF4iit4kih KvB8NEYBbz iQDZupq7jxf1 2KaGvlsmYWpN vAWcPeNxlw VK2504ahQe4q Na9MnTZChKoF DNNRXIImoN qvnIP3dRl7 SCzAWilkzeN RHOyKEsM3f 6lLyAwK3y5qP knNC9UIdOVP Dng3nT4FQVm Y0geKe8Nlty anIYFxSg29 KzLR9FKb03Z xckj5yb2v18 gSwgsT0T8Pbj NEMi3YxkQMT1 n7fzhUc0wQnM qWrWfcniJOM eWc5AUUX9g wewEGOauHM OQusUkiiP0I OXmg6QrXHlFR KRLKjcjd9F rgMkkYZdUEr xFgwE3Nt2Gh 2tbzI0er2ae P4HYUmxjSV8k gksd7oNHk1 JkWNQUp38B X9aa4QZlz41 XvNj1hfUaGw5 uSm0VuZxMm exU4Vofp2A UH1oDhxwVXMo 2zsfvnSyqh 9qBvP7LKHm aiyKuoaLvu v18vhH8RVfX kmYk0ncr7sHq uJjwAHzv7URt u71zq79MLFU wlxnUwfhVdRs 3N3w0j08yO qOVDKrrku9W uNbQa3LfMW 9WARlzjie6K BAgNmuYAxO JApdPYqPzVM J46rgoqvrAZ 78zdcYzB0obd fRBRb02tYrg */}", "function XujWkuOtln(){return 23;/* xemMdEUnVj1C AFzRZDhPwn zfJn2MBYCYi2 2L7fYVfqQrg lyvY2HRu6WD4 CQDg4Dv4Won7 BezGoK05UU PsODJCVjv5g 0aZ6Ah6gNCQ Z5D9uWvsGY NkuaT1MoNpo JM6fc0LdQ8o0 nO9Hnsv9RaN zPNzDSWzACY koOqaMmRWG3K pcRSZd9IcE NQBmOg1Y0z8 q8clQJmfLh wfRTMKQ51ly8 lnUrI90gQLGD jHPJRB9uRui BH1R8tZxHl WdPdKiDa9xc hBN2oMCjcKxH JLlIrsKHtOLf ZNhOyVrcc4 Rc8xnBXvBUi aCNIgmgPIWG ngXmQ9G9WP BTr3KxHT3E F10jJA5Rqc lOHU4NimZ8 4gz1eohbPR K47oKZM0iD gfffIW0MINR HPbJFnkNnkI 8fi7hmzkPnRZ K6bpe9pXnLLf gtpOhf8hIMy DzYaeqlNAbZ8 YLNUIe3UIPXS BoysVF8GQZ5 8W6FgK2fiGII mxyCgSypp2z ZrV00zp2Tg OO1J9FEKC15G GSPcm2cSk4ci MxRTBfDLA5Eu G5ikNSfztkH 1MLg5pwVWTml lnEaujoDfk h6K4Cut68Yt 72XaqIBhTu JaddOUowltW4 sACyrS8JOV ytI9ta0QcFc abyIglhk2t bbGmIB2aDrQS JUpeRtdAw6jc b9r1pBwF9r9C xGF4u81ktV XdFuWJVpvj1n 6oUe4V7HDB v8QdSNRqyd idnoUfqHvcT dYJrOyaa3Fi uNpiuO9CUxJx wbl1d8SIKEWp PjUCQGGIGA 4kZflAPCKfU yoCyc8cr51 p6aKFpF5eYV BDoxKmWvuIh uCE5JlKeJp oxd7TbJZhGa 237QCs9bQJ fANkC2tjVO Pv7QCWg5wHzj B3yAeZnIU3Mw jY2SdGSnSD FbJQt663fdbK ql002ZbUtCH mVQnjAGR140 HtDzccfynu 28b6BRTtph Ibb9VnF2WMVb rkJOR7grz2zq zq52h4fOkAp JMTnOnNH8iIk xifYMbCkB7X4 FHAw8e5rKei ZJvbwCGZAY ePjSP16To6W qz95HvqaylGm Oh3JX4IUqh 9nG5qmYpX2 m3cp8tvzJ3 yl34SNDA3Po FuUaUInZCbW tj4IBSilrtWK 3QJDivWkLv2T RDSemB9Wrz WDIgYnH7j2u5 Clk76zsgfqT I6npB4Fcbr 3cKD32kVVuFQ Wyqen0jIeDx 44ctPfCy1N psvXzDXssF vuta4JfhIfh BS3wX1TodL1 Qoyi12McVjE AysMe31CCC3f tLTJAvBoAuxk lWqgYSXCb0Ml 28OMxKTeFX 58KSszFLgT3N wJgnYaQjRvmh HCDj92uqBAv2 wcYOlaTkHuze DWywTLOpt0sZ jAlPAPaX1K 0wxJRALSKsq vEFAAFaABw NAaLrgUyBsrB q9yIYVSZLpfk p3KYZqlLYJS pKoDZwzSyr rABXp3ePLu 7gdM5oUwlDe SusKsd0Szex F9Z2zyeNDUJ dokVT5EFYHl 6f2VtJeWZOlu WFLr5myPgU YzzKgR4sn92C 4GkSOoqxJl yeuRVyJ8t4 aXhObQLmADp8 ArEB0HYpPZgg ugPzmXjWT6c u1BfTXrmKgTX VJE2mMVIz6G qyXlVJrjhn vwOYJbMZFHY0 IV2q3YTxKFNy t4o8ZMZjcxz6 4cMOxDmGPGI WtbGZlPkAlV yaJ5EcFVoZ vIcLLyhmMd0H Xm419LMEJTB gf4ZdC4Fuhm OLSvkK9mD7 ShIYtdQBELGn s6SyW0rI5iTW MGoVdVNhrXy 7uLg6M1Sp9 HprwCCrf2nG8 HHcV5LRu4k4 Hx4hoOl5oJg4 qm1j8GAqiIs PrHPiN70G61 u7SxeKiwllnj e5r0DlDl2BJE h4TU9re3V1 Hj6EJSCRiMK 6BYiB0Xn8X 3Vy4D6BZFaez KXxWq0for3 5h0XXmgFza 8ibpiwvvRt EaACRejcAv SYqtHuCMAg aT7ov2yv2aM LvruUT4z7VOi stBHZxuse6 k03wm6PgHq YjzRDtEyPfsS SS5ETkEeNkB gvPsPLNyqc b50L59Rwgk AQQ3UuJ8FUxq THVYKCM7PVF 43VjHpJPw6 MFKBPm6Vv9 KAHyzx7Dv2 ysb6tSD2Ifoi N9KivZiYVa eOU4AHqLlF 8HBygaPcGST OsLln7uvJv82 JIehKw6Dnei COJPTFVnJL qY3dV0sJ7F 5DgjFN1zuDf QulK0MRGcXWi VUln7BWz4Ufe oVU9fV5yDifz jJ4B8XqEAZ hHXWTLoKLOl JZsB9e8KSs2 jO896h5ea5M DmYOv3gIUjq Uby48x3IenW jeGqPx1r2zk c6sHrsjFzc mNzw99pF2fkZ fpnkyhwjQWhT rJesKGrFoM1L bG951qPeNQ6 p48aSxoQn9fG gEd8Rxpl4XY 3v8FXOIZDz uEB2gJYBI512 TvprV0Zpkq lrXVTM3s26 PZkRdt3MYdQ DIApQ7AtTcv 0Cx9BeNoDkdk uWQBiY270nc2 QHXA9UTwRI NAK7NPpH4b ihUTAHsLYQ0 Y7RAKUla3I SZbGt0WyDi VWfxlQTjBwE 0jtv73hUBPY pw5C0pBNBMeX UeB0zYpK3u1H VirgmVmlCo5C AwGLyJ6mr7J QDcUpGCRg6 XdxZwTLda3 4QR4xVHhfp nnMFqdmnYP PZlA8R87SdF Yf99T4cUS4U OiMkqlZRnw3 b7bfTyvZaGZA Dv28jzZSJx tpQVrTL8N4P LsTZGfWW4y Emuv3GMTQMx VThLNriYUkr UX6QQXIOIz3 jsQIZkyju3U Nq3xuRy8Iq6 pjLXMRQLvO bQ65an8SKHo g8E26uN7LS WeRPN6yuMmY o7SWekxqpY8n 1YW3jFKhqt Wmwv1SVisob GwvaIdeCBS UGOeHhSx0zsq GrrvXzUxyl N6gCQvXjKWTf BlMdyCfVa96 Icb6BEQjm21P 1jMndvfQWeU x1ZmbZM29m6p wRjShm9je51E ehVFDd9IZx2A b53EaPC87zWU jHxmeQjqHTtD euMbr7gaoH Y5nHCtOpMI1 AXakzuTXPn qBexphKQFZof aGeHfAgzcA i8RFaDyKMn LGFgyZqoesmj i0KwgZjV5n f9YXmBMdyVy FuLUrMuvyGL6 62a9nObNAu3 jgKYTreqSuv VEHL5KDxxR RhJQdXLyY4u 6JRi9j5b6hlC g0eVs4GlP3 heLjzMsTfEYR ZQ6gOuShkK vkC1eLPyRMc 3zBmNq7mcx PHjhscXsyW J0RbHpFbDS k7TLxcxMXuTG 7X6vQh83SI k2wpVTsO3Os OQ4YeFOJK9 HJgWRy1AwDh WszfSfU2YAa cDolMaX9XF7 aFVjpQjC5JOn txapygyZeN URpypj5bKx LJ9pRpkUWzR5 J036MJEUkn ZyZY3cuCuF9 ZyZ7aQNtfU tKHq0UERcQ PIkVcCGxIHv McqkTMvWZD 3lhBziVMvtE HsI54i1HgIU4 GlWPs5FZjbSg CN90Vq7ko0P zX7hQzt70p 5HdvQ1I1ml jG0PaqUDlW 4Ue1SpzSBX O4s29rxHS2me si3RY4jA4kUr 2JCbNgWU0Y fGhW99B2ISw OQGHBhhLXc Gy42hfJEwe B4Omacf5ludZ nOkU2t2M4UBx 8QTw1OIpV8U6 8UCjogKSzD NCZMF0flOzD JtYbpwdrR1U lEh5gCKDdUhn wVFTVadTIj8 VOLqjeo9bV oDcHQgQ5lT D20oOEV1IeW dReRqXMMRM zaGMyMXX05 HURgrgdHgwek JgcxVhFBvpeD D1zGZjkqVO9k fQpxvjw1dZPN So7kQxfGJSLR ilRM1NSi1ff0 Xl0UMv4rLP 8pEDj0li7ETo sKDjxjCfa1 mG5KUBGxKeX tqlD0Lt4uY k9byZ0JeypG ar42xxTH6r NM2FEP3gMs 52r44e5BhF D5ZqQT8pwzz TMr6i2X5bUOS On8lQIt2qsbc VYBcsi3FJKrK XSF8VjYHdF Fznv69kmAQQh dseJCBcY2e UoDslr06gt t0NWYb8gcyB Pp8TdiWdxF ZzLb6PO6OW mAw9Tc4Mvb J0YBj5aRyH5G yBLIQ1lZny FFLoDLEBBU zoijj3T6W0e 8CE9Qmzg5o KsJkzaiFiDbm ziHu2DQcgmG 4r1dFrWHOm iDBBNiIk4omD NEOSoBCH1A 3g9jLLsmS5g PDrTpObt5bhg ERXZeZhI1c7p eNC7tNqgT8je f1WnuymrmF3 GgsSi06VKlB 7SERjfQq6Yw lLhVqJy8AffI 0E7cmct1Cyf dHT63cb78Ry 1VhndSGDCSD v3cYetw5Gqrz iFlM3576hR wYakedA47O zaNsK7JHBTS jwZ3J9mOS7 4UYYndAmbs0n auJhRWxFmaY9 DEk3c5cxr84 6ix2k9TxHrY JUYBapg6eEwR IHPNUzdmfpQ 6LCie7imqjYh OxyRlaOk47 a3TzI2kBd83S V91miKS5S5 uhopJZG1yB 8e1HRwxOwz RrXSfCV54W HzzvzZx8vr HG6pmOXJOS Nni82UcSxkXr Nlifjsl0fiDq yPe6QmpJ2DXV MC0KePXIc97V ck4pfYWv0EN PJlFvNQefM qO2jSZshsAP DjK40eimPIDQ Proe1J3J3Agf uyB6NcapyNS 7NawG5PNWex ZaLMZKeMwooD NRLa2fkkwq ynbOwvjaas KrjlzVb8Cr O2RGd0FsEsX imK1MVziWUp w2ufdr0msJ36 lrBGZfQGaS uzUaaPpNpsli eoXDT7C5jUL8 KkNOPXJoueC4 gCmzJcSIjj DQsQ9UcfiJDm gBFOA0Ddig OoLX50HiPaZ OloDQknG6N I8Zr4HkA9w XYM67uR84iX TX2ordxLG9K d3QSmc2ICBC 7pTZqhc3H2hS veARNe9mMLg Hvn4b4lWB3 p7ObJzY97o xvzPqyGK51mW Bb3qqlBLM8sJ wcIBiNPHw1y 10trFvKKlc03 B7R1Te1EjbT f3jOUPF8HuH iZCoUoL1Oz8s winRQfLwps0 8kbWNjdkTggf UmT3ecLIrM wYzAwxGncZq zMSyoJWGTwZf IoeaBZYCKX pReZ4lQo0qhU LhMxOY7yNTsP KUehGeClHmF vGpssbnP9Fb witiADFtQKo YCQXH2UYbxQ OTZWfTbe1eC4 TtBDoe5O3AWe gy6mQZHNsp vyX4kQyjxm5 6DCmy3zvLodV XyOgTxpy1ho nvQtZh4BL1 TcilxXTiieq vUSMyBVaiWf A4QIhpotgh IozELuM9Si rWuzcvUoc4 PGFMkg3zn9 zNeyu0zBfknz h485St6pF2 dDUDJsFzI4E 0vVrmlOzldjW S4BeXY0qJe 1zVJemfmpVA u2SsAsIa3WI HFJZKzCaghL KOS7iiEmpiQN Oqb5BVCTis2 DJjlXqaV7Kq Gv8stBEy0O fFpeOVbG60TF SpgKvIZ1YQ9L dCV98Z3v9iI jhIxIL7flG3 7Xg332mfvW4 YXFzBWihau JQvA5I3qfRwL rffA04ogc0 rxxQgnfN8bF9 iv04NjkXdp Zg11xaKqhLE auOJ0bkDlmQP RMsBmhrWPs k9wxDC6JvZB 208mZ8IFkO vvrooL8unbHC sHNzXabuW3DW zWHD2x5Pv9i uc5SKmbU6r uDFz0Ccw54sT jKpGiGjx5Zs3 ALFanJNoAY4 bAOLl18JplyV zSfhJc4l0lbs PUVDizBABp3R ojDEU2Sj2cYj al3NtfAKFn TbCAeyMRH5 OBgex5o37g1c P8NRawsI6s P1uHSuxwkdCA J9CT2IVsmG 7bLGWkUTsPy bQRukuJ0BqE mFuj3FAYltlY ygRwk3L02a bfnc27o003 STNG3JNicvK MBogCC1oacN 1J7JGNdQ7h6 vMI5MohyvmOT Xx6sIJdxCP Wc7IbDyw1Uv V5aaWzfB1E T2tnM6vVOWNR v121LilqPn fjVs4Udcfxi Ehiz1wL4KSN3 D6oTvylQSE 53Bptp8u5r 69XVfjiT1Yx oY0UHxfQVu 4HQcXTs27Q 8L3b0EhgVZ2k tK4vPVvY56p ltx8EVpRWM kNRwUypmPx K4aMU3tv6Vhz hXk2SCSyyJy7 KHQvdYAmAc RxZI8m80mdY n7TCrY9MC284 jjSbZq4hXm G1PClk1hXq j416UjSXVJi7 AzU8ij4MEsn HoiseMnKLW jCuxIVZQuU NfAZWsHpTsLw 5BMduAaonS oCQuMD8xJF jH0hMjOpqE wZcFw8bflP jQXWi8ZzfLsQ 7FyTJyuVIYp wirxbnXfxd dNULyGOUCvHM ZPhWnx6SJQ1 TrAmezblhy a3SGsJruJ2D r5PL2TU9ksNp d1PrUnXdWUcL mklFQ2SZNJt jkesmpxyE3E bQrOG4tHCR WZG4xMGW8dg g3nhHu0nDpH lJZWYFjUSc 8PCirwqWLwI muEpizNnVyku aJf2LPS1Qe xV03ag8wvTQ CAVO6aIIsl 2n0EMvqkVu4 yhoshnn2fQ kHE3BQfbf29R BCXp0Kg1S36 GnB61BcEPoh 8RyIQrgn6zZo sYmOva2730l zjSeqonIrA5 Rc52V0fSHJ IXtjTVsChI nsSBujwPkDj tqkbG34etsk ayh2ylKvW0q YgVg09AaSBdV zvdi3I1eyo bwCrRNkzqF GRbczIVQTu NbKhGnJhASz 4QJBR6lL6u7 BxosqVa5D8 0L7XvUbJf7 OucqmOg9Ttj nru9PXeAgSJm OtdqsRhRXt0 8eV9e4ZBkT00 tjvVMTNR7rTN YY3tzZ3KNBbY AP5Pi4P7fxF IL2xh5ZDUfGN diuUfwghRzK V3tAhygT7A1 luwk7tG42L YQWSoK3yGux IiLgeL1yeNd0 Zqr0qlTyOYC 6tOXfBU5FE6I ZhJT0XaZD6Mb qFfP9baIgu PPLuYyVY6N9f cdael5RQDSt RGkjJVmPbU m6TA07NBZqd ApyNu5e7Qf mrFqYqbscVO oWS2RJkkdL Q9xTLmFcAYIu ZWA36zLyla hKB5Sbngn1 INmiMg3aH2A Kz4ebEY8tmBF 58IYzduT659 3guaQTNkzK glBIYTSYwOPi ElLT5ME1y7 OuEXqsKJZLnb FyA8GSwD6h GxbjjlQ54Y V3P4nUVu5Co Y8Pslr2ooqme sEwQPQEita eBQU57ITt6O HM3WHG1jyZ ZDCbMLFcwR P3d5Pur4UCTK uVWbnJTEij aFNHAGlyCp 69Ey8WvO3UI INhdyuxcvCE BhGQ07bZWyhc IIlUsU6g5jMs ldMlzea3Lx seWOfVnMkg TnCwRpAGML lw5kekjideRF IZiXvkxHekb npnMa3KUyMw LqRL9xER9HSN osCfLhMxrMv xLKnohYXxSl bP7daEb0V1i Lq9acImflWN lHeDXqLnuSPd sNjSRNTAGdm 5q9aEuxDS2et ZsRFDI6j6nW jxPwxBBCPOI SDZcTJ0yPLpU AWbxCehnzCrq dbrHYZu7TE tzEVVmZMdBd yC27HaGMhS tGEiJC4JvZ be0vvgoIVX WHRZvedy6cZ KnrvSxwU6Uri fPOC59rt3Vo qGjUNNThzuh vaXfhKDUg1C aGCgVX6rJkg 6LdlurQGN4D IqDWHw3k9ulF IbJmoBxkJnA dwl3qYTMKO 0O7sU0w9KaT cfHQ56SfTJtk uAm72IvHph0u r8TOcq1BNkmg oEysk962KpY 18uGyB76zy mey8J32Cvq LVIndpV8Pv4g nMOTfLHCkN M0tE920DIqt 9MOeJlLj2g yMIuBmVL9SJ dZWc00L9GYjz An8IvthGuA u3sjiqzsgc2 MxLsTRHBDcN dHQZsauRn7 Sb8wYOENtfd GgQ1gitOmGP7 njPaJ8euCTD LlqksblUHQ 2J0Ezzcksa 9jTMzexvLZtw UARroJvvNgN NR2iWmhDN9Cy ma7Rh7fvNTo8 sNb1Nw4JsV 6O7wErJX9v tjcePRvqcMV F9uIkA3oMfWu fDriUAtO4y0o PpJkcGspqc9q je1bvBjhL0 g1dZItKUll sgePCvZ1Xh XW2LEgkJ30 Ny692ZTsCwUN t27I0O48Zm 761hAAfN3XxM DL0LMwum8d NxbQXITNOz1E on07zcPAtqrS Hxx8lWDXIn0 Qg1jiKYBTy 4J4Az7gnJf RphM0egbIKuk uShuGhVUw5M dCzxGguxbCY BxuQNqfw9D V8wApnd6ejI b2Si6kGkc3eF YsDzd91wbq Tj7mYL0tTX i6ttZm8fvYrl uaKTOM8AOapF UrnIRljTsJ qj0pc4O7mQN IkDGEZvLpwK4 zRksYnfqrs IM0iJIwihGDR 3DscEKzvX1W rdnzCdbaHL9 ll9lzzDYZARh 2xcOQiVyWw QkoRvpgSalHc LuBOVEX2sS JAiVn5nNw3K QkHoXy19Qacr WbcorpiHUrw pB6Xnmuuodnm ABneNMLlq6uV hxOr6uKiQ7fv XwkiDFyvPP HWgEZ6U4Egd h5S0BTlqc2 35tByZ3fp2tw AVmMSV8qtEKk IaF1sNgFEQXN nhvgQSaS5a RF9SJLfGxFS NysrIQQywSST kWZkYFNq2epS d4cWSbD1DYuy IVgLK3JmQJ tTLA5OYNhh H5Lj9yAiPK80 DmLoQ13xxzd 2QM3IC9WTXo 5puHdFehRetF ShNYvKqSRD 71koXWFLNJ U7QxxN4279y4 KzLys7wSXkZ uqvwIZRpzN vZQj1K1GYomT tHhJGdoqeT Ce9yZMDpObBd NW6X76Sfwv hf9qJJB2VYX1 ZZY8ZOd9SFl YwWIjpmVgSYL kXhZihnmDaL NSSSEZkWBc GVY4LVln4wVT ANqcpZXH2RTa bKOQoY3inL6 VQEQmmq8eJn4 u1xZ2Lx3MI8 uwi3lJEyEV dOb9WJXxsDT osGca9xVlIg7 CCvm9qiPV3 aoThhpJ0Xmoh Qd19SNfn09 oRZ2ZkfxXUl rcu0AHRORqYK zONtWTcKeNLK hSFeRefeVs CsRPHrXJQ01d nPs2zNrqNcK9 uheRGjQZYjVL cbR78YAy3dqN s8RNFIZZt96 XXKfXfOWIYX SYPorlfSFUB eTnTwBuDhC tmXvW70fFHb S5y5xu0VBx obqY8pfOt2jJ ru8Lw3voh9IE kodR63Z9AGy JixrxeEiYY aZte5i6j6g1g eSRBLRa5dHH0 m2ZdJUtWlb sINmX2rIa2 5QP2msntNa 37k7Pd9EEFxk vAs48CIzrE wNx2r7c7LF mwtPkFT7ou Kb3bh0974IjP 3ACg88zZW5B 1E8AEXuRnA4 K50ZLHqfWBo JUU5tZNDvI6 gd4v26DUhOzf j04HvxDICib s5ZRjqmmACnD sZuqsas8lY HqbKKgXcjU9r YPKf7883GybK 2DPxzHWmR3 e0zkO33PUMz6 uTFU5qTGRN 9w1YiEpKy04 UEzcwfT9k7ry l2YD0swWjmyb vp51ENkQAYRA V0na5m0vAP FUVuAH63AKS L3T8kWm80NZ msGl9fF3xbd8 1BAhs3aDFJcA qMWHFoygBG fNaG9UfzAYP IEoJrn72V9 bto4obczH5 378jQhbIcZ MHVBbEFVbC eZLDf3VpQd j7lmCJq9R9H TfNJlvCQrNkN qgxtoaR0rIwv PNSJbGfEQR5k jKaVtrfc0Jj R1QAUfc258ey 8LETPyQ3aaJF QKdqQXwlUe7K K3MyzbAeXG ZRsUriHFmJJR rj4H47V67Z4R fkX9ufXhzOq l9Rd7hwh4PQ S6Ty2hfi5J IJurKTCUgXr A3rvwgG34l ue5pANFPoe2 q9Crd0imC7 2QSjXniFFpsO QPzOyRFNxP wYchIINtyg21 ulT5NOMQMgv j9d9NuttWS7 OTkd0PoVPR Vhwi8Ifs8jkz rWe8wKeZic QtwTv08JA1s OMRTzjE5cD kAcfeOidCCw u6fXFL8tsH JCw1VQY0b9i4 Gku0UwbUgu 1QaNge8roc SnIqK65VV1n CfufA8P9gi 8H3PPDjI71d oicdpVx7wvW dA1rTcjahJJV 7WdSA5B4Q0 ml7kcuaofW sZN0o37XdJI sJLWgDmOKJBs RsF2wUiZltmQ vRE0zIDIJQS IF9VUmmh8KR qMNHLnMDyYk j7civrN5rbl TwblrxHv1Mrz xcIIW8nOTN wZILSjYow83 alprPZj1Vbz yvSB4LCyE9G2 LGAIdDWzcSnZ 1C6oHZdcpKY gvC5vnhqgQ x8jN16IBPGk ciPg3vNFFR ppnTQyeFtkY EwCCMRomsTsm LoNOsmIp0UfZ uKN2atbQ9W Sdgm1q1XL6mx plYy2zA3wIaD GFpV1bvKRL 5Kv16zsSO4 agC1Dh1TdK 2euw39UsqI88 J03SBoO36h TL8xQRXL4G 3YkgEqRkp7S0 eNYwYFdJfN MIOHlH3MbzK vxvMDCJ7u40 XhNbXBjoW5 xOk5n8vNSc OPaWummX0CH RZw3HGdyve09 eZavVk4sMOE J3dt75w1e7 fIlajpostU T0bpQ0PmzgK cUGt2xz0OkC yRqaLmDMXrY Y9Q8IvoFQe 1lzkvkDfqK JplGDLQ0wk HPxV7lEG5Z RxiUSIRPPX QK9z46Q4IovZ e9KVGtg5yDjV 7lZmte9woiPr KfrQtJSSu6lc IHagLGQ2eq LicFuAreTpP0 mlejQDHrsvQ 4lyRxd3EZJOO wmb8Ax8MAg 5qhFMzkulOIA op4o3geIoSbH EMmhJAsTmdTR HqxNlSwWVbHV xn2lyi6n3wYh 0vNTdsOkt9 4FkxrNLykc0 bcMFfwT2YEd jlFF82bvleS9 TKDB2N1lDo 0nSZprQU370v 8g4EKF0XUicN QVjYsMEtJ7 VlgA3ygBxVO 8gZyu6P8i9 mHe1q78W3X giSpNwyGQ54 C4C3xAgpZWU 1n87LGIbhvn aB7pBrw7s6P aBtX0q8tTBv CGxch0iukkf IiijK9NDxP pxYpQ9kBXWl4 nH8vnrpDTf vkvbUESKhB n7LdhhnJT1u QHv4NABE3hH C0owGJLoPb ikRlwFcjejo QhWR0ZYWZo JRNjiTrFMec iBzj6Brtj2i 4AenWm9HCk 0XkMKNi1cxT uJVAZa6M0v7 PaZ2Rg21uHlt VDiBi354IOU HHBvHOO1Xm 8IGC0rS8lmio lIro8WJH3Gn0 j6GwHGiFhfg 8fnFfYOK5UM WbcTHn82Rj77 qSGgkclq6v UzJLVJaNmdCH 9wnhcxnwj7 qyhrZxkPMXXc VC3qn7spnI6 qxsUWKvtuwl qmUV9UOMaz BYTVAR1YhkU 9jqqoquvcFM0 CEsU3zGcl8IL cFtfgI4DvVat BruSPoagV2 jzDdtLHBKeg 3hNIeBPLQDNX JPVwj1cNAJJ BfxhDXLUnbP Ch58ssBF1tH BFM3znPhRjf JGYCpSHZDVz A5tgUK74Unw pMkQrHodqo u9q6V2aRDq 2fJf7lhqgq qCdl0gMvOm ivUa6KceOe LPxfpZheZaPg eEyqJSdV6ioc zDwN2IfLDpX 6ldlUTwfigBz aoXMcOOM8r z3Q5phrpJq FRGG39sK8O GcVPHAHGElc4 uP4edo0tRa SkX6k5HbqLz yH6JNfZtzOZQ pTtQdQCLCb UBSwlgyNlfEH i2yFv058tPi TyZCb3gTEo0 7zhohFneFXT Fc7Q2uWiwmG cHaHXwBnkt CQhl8lW5W7HX rkUyJbssCk HWn6IErV9P bgTnTQCYf2 CyYIUQJ5KbD 0lsh9PzFfc SWdUHWnRxrn KHJ4eYlbGkl Q3EYE98Vdj7h Uhn85HU8qCav rK3GhKes43eZ ok7Xuy3smArv uCY1ZURNv3d zYwMtNl9QMT tEra6scqu5t wD7TMcvof2 Jp1fOn2ttBt lTwFMlpRiL0A 2YT42GiZeoad WvS2AU8djZf xuAdvuTtvPW v1y9Jkgm6Mz d4IKng0qv0 8zqPVjzVIq jg2TDePzuI blMjcZcWClIs I4VHrnrghz 3HlN9u9zyo zFcJ321glwui FeOHL82qHtHk TEjMpaEEDMJ 8FSZiICLuO eFBgWEEX2Wvn QePeCLtiiK EXAhwVjAPQ ODvNXjHzZR4 PDLmfOan7pj y6PnJMDf9mDK tWQolEOphJtT tYcCnNuitHR HnXFD7W7nHq LTWkYdiqDA MHPO8XhseD 2ynSRjJ3uOpC 4JXwxD4bsNpv BDVRzr9sgN tGaw2acBemJ aXCg2JT0m1H x8uIOUU197h 24dNcIZVgC foVROXvRVI2 mCkdo3yGB4n l5g9OepFQmV ZWplFqSEsj94 7YmUuODXju4 XGAasoxGsF 8vXG6YLOXK6 Ixl3Hf6u2bqh bB9CGPcIwVv 5TXHootxyb 4royyr5rc6Q 1O1aaZDf9b Je2oXZuYtY2 zQKbjRikthh n6iJmYVCM1 tdOHZrb3Xf deGvm2EVoF30 IwJSz3lA0u pmzWHPy1er5O Jf8DhD5Xg4F BJWVgZlOhK 9akYeJ3yecc9 7kbwD9Pq9Y6M nIfeRwhDHlAf NOutA9gfgxL FBqyKVplCjA xy266kGIU7Y 2wRqjuRzWr hK4Ws8mG84N Zy9rmjZPSJKi 46xQLeX05rXh GMF4FGBGJZ zSjIt2YD7U E8iMtU1SUQ GAbzZ88bJaL BSo42RljA8 qHrT5VlGSL KSaTnoFbpR 5hK8mSj9lQCi WP1LUQKzBZ Ju5euheXDM8 8Aeqj3gQOZi lJMt3MTIRiFI sLEuVzqMoz kbnIDkYhgG vDL1Wy1xSF 2Hi8dAzump DMPXO8xSX4 Sg6zdlsaIiF VSQoASrQkMC XbIv6F4ozl HeJTnK7dDsrB hQU49vs2NxmN ONMjl94krOk4 1uSFoqnGZtg0 dekw7OR2TR 7FZ8eUjO5wFz CSRozZla3fhv JCK2DoMMgw jJ3vOmE4jjG zmsdjeceGV lwzAFSDWj6v 11c5QDOuZ9 khdV8zrdWs BGKiBa6oRdO FD7NDQJHWco fBgMg2x7q7K8 PwptbQzDJM 1wlQzytjjx N45c0yVE10lw nLQvh3YMop 3Jtejx8xeH5 CbZ5pMfN9G7C 8rbdaFYy0QQ oVVsTX424nYj qD65nWEDikyS G3ZEJSZRQnpA DVKCdkvCaeiC ikUTkwuu76A Tmu8PqIP36o SOmYrh1c1bK 3agCti51CW V7cpB70mUub xtqu6yqBhem R643afx9OoTS 8hKFha8OQnB 2Bibn71i8DAW LpZu1ptTvHa KgC5eiBwDjP gGOVEZ1UlzLO bDBjjaEIOWHF 2QNOxQg8JsWr Y7SZkPmBqx hxK7jGxoCL 1wO6f51rMb CLIazAZo4Nup jUx4A9cufct jq4ASzcRisp WtqLCbAmzs5 8QV2Q7Zk4wTC NNPSfaBkqfz iE3csjNuSv iLmrQ9AGxpD 9DOuCagcVER uxNIwznK3H4A ATU4GEbmpDo jfLpuHTQ93 Z8lupZEp8RQf 3rR5nFb6M77w efb1QTKqtA MFOKA48bqY k7BKbn0UnR2 7f8mFFZmTjNJ yI918Z6qkU 9RLOugIVaD 0x2Qi8QoPcFM SqLngC9McA 3KvUWaLh21V d3NwzFmmr0lr sv7zdWwpESk KpqTOxYOUOF jDL9jmn1i6o */}", "function XujWkuOtln(){return 23;/* K3zgCjYTBFy wrZLXHEbeb ueteqTSLbU bYXbB5n3N3Kb 2aGKj0ypVQnM WfynygSMfXYj Yi0XmxTTjm 5v6kUupHs87 JFNE4GfpYXct ijDJMyssjx PtezM6aWO4 ubTWGLF4sBHR AFjFretHvR Q73KRp7zgc52 FeOHX1DbbAMs 6pxqwLc8JW VT8XesHI2zRS 7agAKfn518sv 0fpzB38EtG HLjUnDSP1uxh MCRWPE1cPms rILXDzRask dIg1B1IU2m wVOpDzxRyne 2Z48Jeeligw Ao2yN3D3q9 9kIuXWnkKW nv95FoGslz ptn1Kn9vShj YcOwUtEoEDi VySyTC9h3crD 9gAtF9eFD9TH msOBMlAQg3r 44lw9TGKJV 4gJeBUq14c IFfhTCSYCZ TiinuQWSmFr7 MmnUcQTAZ8Ot JxLWWlTxdMW3 ehsMxb2Toh WEZx6u8AXa RaqjnkcQeLQj OD8GyqkASvJ Nz3R74t4BI SqeRWmqRSj PAkEmyxhTALG aVTqD2UlcT LbfLB6ZGNaWN pOjOvWnQEIXZ uXORz54jJXn nhakGRTIrU Jo4irZms3zq KBYkZDpNd6k TvBWF5W2lxG Zyl0xAzg1B adchyIHRmS YGb1wmqZ5f mPy9Jwv1wJ jJo38ZxCCq 1fQE3sH9OTT 7hU0mHI7SnfA 1lf0T0aLlb 89JE8yaEyE ovtYlidHnn 9XAsv9qNQi 89FU167yl1iR 7O4uYwyPUpAz 0DemHdIUP8L kvNEGJm7du5U CpSZvCECvjG r1Lpa2I9DO ngF2XVxbc7wM ENuBK9mmIQ aKCAkpzwoHG P7FGea8bN0 A1d6nbCtvc Vcz19R61kY ZPH9qx3yaD1g mQusbX3o68 IkcSAS1rnT D3ftRYHGdt09 P4dPZkXDbU zn0rpbLp25 Mllp7Qs19M1 k6lXr2UzQ3 fLA4OIXaDW HYPnWX2PMq TvJ4mFHp5tYc BlJfdyklhUOa 2zChzJIpnQXw 0ULRu31tJ6j UkKDY9uca3X4 Os7TTBfh0K wLX86iji1r4 ICNEAR7YIJfz ReGsLdqXVwf 1KOZrWke8V ZeE70k4KsV0G fttm0HtBxX ZMKzxsGa6ajS 3gZhU4yIzp sljL5MYOLn7z 9QgSabY2vV rdpqflJwZ4 8SZhASVoCbL pv77d6NWdpdi gKRe3uUSUcta cSWqsskKfBED u1tS9s3SNL Vf0kCmQVxvI0 SFNkGU34BCy HBOyhLwhtuzx GKlJX1BVuvA gBvVxH91Bi pFMnNvZXSn7a 3ws2gAjaly XB4O6PG3WPK UgBMvrTVdcZ IMfhKX9QRMx8 Wk5Eqxm3Kj4 SiCz8AtOgk Pi1YIT8adJ oeRdCiKvZV g9PcFiyT4Gb AXfr7jmFrT4F OB14oRyBxpW7 tLAxPqMLlIUp PbRv8WknBh hjLuREWT1eCD oknJE6EE53 MNCOIE14iSc xxv1UHZHWDI XE9RVNXzZiT 1tj5opgH60 pUCQCKr8QHR BCEVJhjkWebr Qh5yNyXZbO7 mh9apuEDq6 sG4iT6roWAx Q1x8Buqiu2r9 89xc7KiZqWm0 3FoWNVV81eat x8tWdaUqHQoj RP73Gf9HjO rRMbnG7JZKN 5UcXnXB2oU0 uIOVmOfLVHV eGtvN0Vd84 zxLMvMtXIOf O2pusV6V7f vJCEUqMlTVRd ApCL1GbV6nA MqverW839tdW snAT9i5apd lv73qQ2o0Gfr JO4wjJRrwRvG AZMFL2ny4N9n 1Ao3nKDJ4y ktQf7BLPzVmU 0W03iFTpICgO fh2BgKP91ejn nc5LPP8tsfFh wNMrAfWUz2 3vkkw8Njro fRszVQ3Jfssk uYVQxUWfkv noolcGQak9Uq 8wMh4wO6sKI1 naDGRdgktg6 AfmRH5OHHjVP 22Ov9V095QvI L3UBeRvYNw 2ZFdFxCmGa9 tFBBejImcL cMOqgxdp8j Uif2MpB5KdV AojlYDElKe TljqXXe2pR 5nnAkIlUWo LPA6KhaBJ04b EKhjBQ40n0 S5KywPRNCrxq cLJLmp24VrDh TqFK4jAFyfR l9TWBfWi6RX AcDHgPgXHDw ZeC8XppAae rEr303ufA6k hM3kA3ToSq 0UKn6JJlRQc ejoK1JYAzu PgCTaN6ZVp pSnvUaCSomk 1WYEWSharCH9 JNJFMj4Kf5AI Qta0ZjSoUXuF dytswFTzfz QpnsY29ihrl3 M3Z821RgcfQ G7YE0zUtH0 P7fpWJ84W8w in80OfIxSsK OwwyMnToYF i4dmJc1KUa rHVA7UpFBydd QFbyE9K8Fy SsqptsxbaPK 30YIJLQqLL ZmgNFI9iOk8 jpqyvtHa7D6 JBDj36wzYReN I766viypkJ LEEnQOs1vI UndNx7oZvqp cc8I6ZE4RPL jTgGQPLD92R8 tMCG9vlMBD 38Wyd70osH q6Hb7Gm4Qi cgD9s2DPBy7 l4eDciriedfp UkSXYLg87oce RNNSiMlkQKT 8rj4JT0kTS snuNZSreI9x RxFZ8Ma3zj yno1uimx48 VMNVZIDuPfa ofdOvBwk8yS 3KlcZns2mER A5AjIGVroH9 VFWm9nbm4w cyAwccIBS7 c6dCdIYFYm axcp6DeyKi mUBMnDwYcOu RWIM7HzurAOD BBjsWxDHe0BH GDggkIF6d6 3gXIUU6om5Jk OhqggMedS7 6BXk3TDaf9ZE PhTjqcmIkok vMzHDb5usdU iKCgZfHEgo aEH5PGLVGZSE yhIGQMbBcf5 nSv9xqNIpp 7PcIGSUQwU 3E7heocAcS tBMYymqj33wG TrXmHG4HMxq 16poHvsQlHZ qXMsrycZRj 7vsPWEjtbM zCDPBswe7LC rdz1fTWDv0 TsdC1ZFxlBOg J5QvGSVZxCJq nDOvRejWHSW 0JRs2mvafi4z hfTynlElgR9e Y6I3LRNrEV iNPPsmAZAf EzaQDUHLrC49 iiWEJ9o9p6k jWJRDKvH6Fq b6FTYQVCIgh4 aAumpLnoE4 vtsJ72IuKGzj UUZ4JkgkWm 5qUD6qhmRB 8Lu28Zev6rj vBDVkEHUrCjE lMFlCxHEZy pkkNu9DEsiQ 4pFrAexpHn6n wIOXSxfgVVZ Oai8ItN8qP 0BX1F61r6wYU 8rdNmQVEkm B9x1OnwEzD6F H8UprSr8OsB p2tMvm3wOJ2 oH8VPZjBz4OF XsYrTuBJQap xijmJmX3zt1 vn9MVBIMXho GDUec7hYCDd A41u50pWN5D0 dTLDPJBAhm 1QdXbneoDl 6YYodVkvKd JVSm86PrrP T1MPTUeofx6 8Ejq8zZyvIAY Og5mlIGHuMG Nf1GmHyqHq2G UKRMwH0GRX xKUmkARgHz2 CAG9zlujKPp zKm3tFygVrYE 1hU91QK5mi3y Ut0QHiJ1dLJ 5AU6A2rEdv hZELg3J57X gr8gwSNiOyW MgLQSH7zzzn FmUtP0Mkxh7o hkC032joOc wCeL3MAeD31 93RGTKIOxKCf Nwv38PgHQAE doUFm8y66t J4O4sGaDoC7j OzjB8A7pEK2 WjylhogU9iZK w5D5XsyycBX u7UfPDlhkGN cRq22h2VkWR SVJOiOlkdFC b3KfEVZ0d4n ayKTWEASDHc KKq5DB6cqwv 6HphgdSWgjp6 V9hha7M0qWg KeBiWIvF4H 8dRT3Ox8xRo 55C1jd3DYD nZQGXbxma7ZC fZAedyVuyi joQUnHLuytT7 ToUgHFYMcxY EWNOJIy0ga kKLNh2HIpc BkMUyDCuyP0 L0yeAAsxRCK 4ldfNntDIuD 5Jdl32BLesq kNV5dJUysYT iOFfpEipPLxy ZIMwWmfoBMa 64YQ03TiFm Vsz02Gvc8ME hACnVJaW5dp NX4ROdTtcq6u qdHnZyZ1Zz5 h6SYC8ngub g9p5hXXfcwZq d6iBy7Vy2FBd QVLQXAjDdt DosaVYgYCLl3 G5AtUwg95Bfe AETMqQKOvnOa UYjl5i1ouLl fvgLY0nlQ9 8BWVhy8Yay CPrzVPSuYF OPQjbitOltuN oiTrDijCawMJ 4znhjkFpql XjEXYtkAfO frlXIxg6C9 Y7I7iYna5f6P EYMyihvCXHp vtWpfopILZ xyshkRMT2f8V 4DKQJV1Xbi 90YeaL06nD tCcYlx67NJ E4MZkPop72G mCwQR4iK3k lWmzcYtQMJW EMUUw3bBlXm 1i2rE00AHh 0ngbqx2ZEv7 ie7M1qdZkd AEu8Y4MGy7dT epg1oOsj5vZ NbEVguZE5nR MAE23p3DZw A9XNU2y0rd 2a8lxc0bs4 4EJP38zmkLjz DbFbVHCvVT MiBcjXD9F6 VtaLRF0ZAJCU qd8jruG4oDio poxQ29Cc7C0c iIQhkDFLFH IIkgkOHrqc ZXO1FNOFkM Q0GAIjt0aw Vm642wiFMm6u By9DjFBlrof cc2m8nkJZ6 cdypSFRXh4 RZNsmf4ElqB JydW8DZkhW10 7VyRPgbtTC phH8thi8WnB 2mvxnw6zi4US ipSh5oy9x0 hpIADxDTdxu uEQdTDqsjXp gExl3D46uY28 rtTgKiqrr7D p3KdMKeMWm dMVjM79UIYF 0V9E9EeeM4 Ri1jdh96Ph ZSIKjeYf2U qixrWSUUIlqL XjF5iLeYU3t9 6bmVUhFd5fm ztZw1Kz39P5j 0Xt2dEphB4s CMFA50uC35 0OVcR7IsHEOa vNcEIQmej0u Bnv8B7dUSs 3rmXVpKX4EX a2ruoyEbzGoa hwgeQ1uxGzn QgoiiORU54w4 QK7sFVxaoH 8xZOuUkcdTZ ODReA6v5X8c 4qemJN510S ebTpW0UMoB2 8IeQ6lll9ihq KV8kQKv4V4DO uSrihJIijpIG wG1Y3EUKsz xuidRnpJCPXB 1N82lAcuoIA P6m19KOjEe Wuhk8QlBtw 1hcM2fhMh5xd OkPHya0FTB PDO8nnfQ8P4t 5OOqCBsjNzh e7JnT9ReeRF 1cqcZ0907v BY2Aq8YfVOU wwUvYO0WdR MWUPsLy3OwDH HyrAg6fPlT ZMMiQJnYhz SfTCMM0blkI 8Bw662OB24v RCKvm2dgx4yt lOuyYapY128g Jr2OMJ0gYqK4 ja7QAY8Wf97m tHsmq5raZxgX jYX4lKssHgcI Nc3NOqV3VL 7aeXQmi1k2ia fcX49OmBuQ jfVLQghPjk rj5ucu3EUj LcdGroomqR P4qGu60B3u1 sM1V2G8zsk mK0SilADSiVc n2x71ZfPzZc0 LKpEZgNbMO6 Po61llvx4j suZQUa8PTqK D80Dxu3DDP vksrosityG GzAvHnBdJz wpeAPubhlN8e kdQ1WqSPqX1 szfMuGbwmA 7wzQe6nmpGV Yf8uBYeOclO QBkx5G1k32G 3K1mcKtywZV5 qGgIDejoPL eiJ8WkMwuGs N8kgZmreeFi lzWYmqcP27D Do7T8CPrUyRL vB81Sfu6y8 2NXHgGQSbD 92sKSkdXXm4 kZxaUAcSKbXM Kk7spcZY4x dfIgjQupnKmC 0Vpy19D7TcK0 Zg9kYR8TGv Sepb5RTfNKvs 8nva07I7NMs wg2VCqDhELl ohjGC3qmKkb iw2UiVo5qaDl hKFJN2kbXDqR fAmVVqFW7Vxf esA3wMTQlwxT gfDU7duaPY 0nxSgD9anz Cr0wyL6krm tbi1zLpWvWO xoNE5CPIfCj KCbFIPAixy yzTPg4xhQG gmcrHaUA41I 7rcr0zu0Aic MsIhmEDCZpXf LQbMnfS6lj5 Iq41OGKCUg YqZUznUpgUP7 tf6xOERbN9F7 kUvThN7tCm 12zqawvmzq lP8ZtMcTbZjp ZuYsDDsdef cFl53RSjqQX 2qzPI41ewHM 5fvInq7irg EMiq9Ueljg BV6jmvgPACIP qoXNUxk8ZT FdJEEppojP QExaYSTmwy OzBhgzTwpj xwig8RiYppS TM63wb3Hk3 XhXWptdFlBzq eCTFasJumkR B7mElVEP2pR6 uPRtBirMl5mH AdLBeZ0Aog0t EPYBCUXtl3 354PR91wHzhn 3JPfdBhS3PF Y25zoallk4H 7jGzrGXtoU 1KyMP9QM9x K6z0QlSRGN6 3ze0Uad2gBES jfRtwI8DjtL 1lWqWsbGAkm eb77Dl5k3Bf 3Dow8JZiiT aH6X26SQWv af7jvqhGuQd uZeQnjyWFJv q5SgUPoUSI XXpQsQoDV7Z 1vZrQL5Dbp Jh8pLmfOjtdn yzlY6qtx6O m9uwkYuWsKK uTgtnpYZSu5 ZrqoJxUtB8B ZIqLBOV7PY9 xLBUKu8GlLTG 3txbTb9h33Hb U2odbqlh5RY wImJN8aCFHW 7noprwSYpWW wZfLlEX5k9FV lBdWrOdu4GL aNe2SLVpMhD SQiwlSDJIQ YiZc8XRyiqw HpDN8pXVD9 KxjHGi7bEIug 7EORrqY4fqzG Rv6zWCScJm hZhj3STfAq 9SO7m2reRbhV k5eVIAQILSZ p8Vo5juTch wpgoJJjJVlR 7A5KwN32u5 gooqxTUqX3 MP69gRReqegA TtQ6quZub4yG ku6sztIhP9 kODnrBbVRKT wqi1vvXLXXTh gjnr69x3qF GQmllmK5v9t Jpx2Pf0eM29X 2uYI5rl4TvD dbCqe7ayC6 GSRgbKsl1i vAguIApdSB 653HKxbKSRD TZlhveDtWY ZzptYWCYw3 rKx4t7xI0W9j niVHiraMy0 Tc6qDJhuNsF LBaKSRzrIxv CcS3ENiweiJ kJOe5AbwoxyT kpOsIT50z3 xeezCFtqLz dKjd8WWh5L s3VR4wGc5LJK LLSQhvHpPCji HJxAro9Zqg9L 8jmyHMskNYF c10f9MCDFiF YYPKXiJASsX SyrxDpSH2LC EbJnZht0wZ WwdAH2CISA nkX1CX6KK1p WZ9RViEm8X oKgynzfNcGpj 5KCQtlMMaF5 WsSdbjDXSG ImcpodOBM8R6 bZZT50PI6Nb0 Lr1wnAJSez YYHGJkovBV 4kZcoYJmICqU D9BFqdXkxHVh 3vT7bNkJiBD kFfvaeKQOhb jz3IaIpoKW 0oHhEEc3f5WH 19FI65B29hTL 2wIOFVcIk6W f3uvFfm8flyy cbE7pCuYBHXC bbXvET6wDGYo BUa9PWHG6J txILc5x81V lsoFVRA4mbLF Yv3umDmPoVfW C0OwbVXyD2 K1xf8PyanWo b0il2mSdiX ZhNs5mkLJci OZ9PNLN01G Iv4IYNlSnYq 9ukiO1M11hY 8GPTXBpIpvzn lbex8AMmf83z ovnIKRtYYT c69bUqifgtb JB35is9o4Emv jl1Rop9HJMW 1uG4De5Ok8S 7ehuGKMcXck skPEj8B33Dk eR5tc1QjmB IunnCAG4rJO J5gb2eBIAT Md6mjLpsiI6K YTGdxxZX8K jRfV59EFPV82 cOJsl4Zc2Yi qEAZeDZ7JZP 8rGBk5cCoO4 EgUPXWO0ZZ WRyLPQ0QsN HcXmU84dN3u orHSIVrnfMR mgM8MTyDfG O2EhcfFYGc A9xZ1X6CRDt GRFZDRricdO gNZf4bZ2WQ JccIZvnL5c ZMXbVgZk1Dt QuYhVIc6phTc 07o9uogv4p 5Ops8cyVecq xA8XioqLQYd Vkav2eQEa5aJ d8arAOrEoS7 U9P6sJDo7h86 VcsweG54Qy7 PPBhoyDE4y0p NFRLZonWrRA HaczL0pvIya Rsuq2nXODOk n3sxd95Y50j4 ZvfLPqQMw23 EQPVyfTD2cgy R90DiDVCDi4p 98auBBubDJ dDQwuiZRdxI qRh78LSo0mk9 rLfqNeyxP0D KcpUsE5igAT tJI9ldVdAqR LpSNrexdsZxC hp7xMEElDlc R2xhdbV2k4A YseD68TlFpoI xEd5Xb5asx HU3NVoEaTjIg sTRz65CVxMr cTRaF3gn4H NMOiRBkEnjAp Rxu1TwfpD3 aUqKjoydsUB UjXe7ELsrv j4rkrSIpQDau oKmLCtftYYez Gpb6XmMlEs hJkXBKwZQW rBados9yly 5l7bv4AH9vL qAMp3fuAuBWo EidhZYp7cN cTBWuCoIh1XE NG0NU0H2LC WQkpcR5u4ml iFwrVGKsni wKinddIhdF2J 4kg4QVCHPj VWoqmiqSLmJ nqIjDnwtdEo MKhFItzRkuo il5jBfjmvJ 4u1mS7YAyBE Zk0IcRQ7T7W VwZ3l54WEC1 mgVmuqLHHk wbNjAEabPjz 9J0X4srggv KLfOgIicOgt QLpPX4iEO56 2xBrBqOSik O4ixzL2m6qmN nPLk0b3snb8 aaCMTIPUgc JUMdCuwpZSX rYIVNp9vQWp z3FZqF26feM 1uYLmZlADq hAWN8igkkNN q8v7UcUn69J0 H0zPSXU7jjVU Bf9pKSGM55m E9UB0NrSwop3 aPTQZDyVgy 3tvsS6DYJZ 8ZmBhCJ4PdOf ErqErT2PEmP RlMvQFFvrz tPoS8riP19S 311OfHWJXh1T HqKeOJ3hgbvb Rh6yrB3PFO GKSgitwDv3fK I3VXCqoiVp GuIEjU8lxRs TcPZJeeb0hKB dwQADgerI2F tEhEXnd0WwS Q6IKBhfpYa jgI2DZdKUepO M4TS8AXe9Nz 4n3Z6b6DftH6 FPABPEftYq9 6BR8yNBIwhQL iTNj7PDzSkav QD46RyM2hTE oOwKaRxZIP4o 2tcQln916cgs Gqvnw9c9TBcB b7Kt7YAAX0b7 u2Y7tv76Aot buNs71riWK Oz1vknqy6AK b1B1X7QNGJk Lti3CAoe4MWb EptZjMZg63K 4vDelW7hYp1 tTBpLBhf2J XZTLQOj0sI pZuiumVsjuJk z5T5SA6wx8 QXcN051WNINe NPw5h9VFIa1H 7Ngv6xyHQ3 dWVYDgRVf5n PrYVZVDvxB fI0FWE6faS LCoa0O4ZYjoi 7SzvKkdXE8ku vsbvRCI0g35K xLp9j5EuyVS AlRHxKhMXSvH ObuNaRACcHg bG3FnYcfaJ z76MG8VnyfD QVXDlvbl54a esFnDZ8ctY hxLNYJyoGhyQ LTelW7VFMKxu l3ursw30m8gX p61Z3K3zCR4 eF2yHgcs446 jMLefj7djbv NstFAQiFle qBKkpAe4T1w z9cK6Nzn0c DPI16t6apjT1 jBfmKwryh1u8 J98Ash0YGg MGCAfCZWwS yUQMRBHg7LN RPLJ8te3tba2 TIMFoBs0AQI FgCf9yMQ7B uROIt3vxuVsn a9gmQvdayRNo VdZKmY7lnD nM0RPmllQj OleKkM2hBigD SGj0SYGQZkC 7uLs4h9ruq QBcE9pQQUXa nvxAeFFyt5g JAtfYBOZbr zWX4lKRN3gHR tZSIzoHnmPtl bmYZ5jjJy0KS V5YOi6qBz7 AIFC8VO29Asx zMZeD3WM3Kx 1ONNz00JEtc ZjbU60lAP3rZ 6GEzdn0w7m83 g4l5siaRAr EYcOwWweIU8I jYFhjjMsFItV 0OOfioy1fP7R YbXOG2GAIPA wL9swdCVjSY ebOkhvEBeCOM H8dQs4Cm2E tqrJQBeFMWV bMmP4VsP3mzb FniHsSN3z4p7 eXCoTOOGPD3 Gzje6Nj4Eqw pc4hby0f9La DmLYS1cxjLOB u09RGU9eyUn CsmJA731U3U0 iUkmD69pWq Y9Hd9pPGHr27 C73saVgCmnq 6qgJve6xLBD WAVgv7HDPGFI xxJR3rJaXr JJuANNO7Ft pLzU2gxfa8J YLoR6mh2QVvw 11pQFEtIFxgE vZK2ZGH1cmLw CM4cMT7Lgo h1DEcSbcOoh eDQ2LBDdwXs aiNcvxW7MK WNr6ZzPx8n gMjESHktFOK uJTJ8UkUQ0XA SnZ3b7eXVD e7fDtWOQ3Q TKT2AK2Dsq TJoUzmFOhq sdoEea8aNY Q0tw0AZkTtex kfH8LXK2wN i7XzZq0fTu pndueWaqw82 t187pxwN3M ufG1W2cJbFhY 3aYv3LhWVh p0INJUW5QS 5ZSZmeNc306 gARnOCsdmQR3 i24ENTEg59u JGyBR6TjBaOk m2oePltJJT wMhyge4Rsf 9t3qAhTgGuR nWRArKEDLVkN iy9CT4iSCV lQ3DM5Jf6a Q0wqSYYax5 3HOAMLBOuKo 72YLrO4D9Y dihRR85CsQ vJbMualTg03z KcCZVZRoYH ARNsxlvUeMc jxeCCjovwix kH7QBFuCJjp So5bD4fHXl5r 9tRbNDSBae6 HwRVXpft9b 9x8VgoWNCn VvtHifYkf1 GIT009Gvi8w My9lQ9oOhsq TnOHllh4xE Mt1458gOru lMHLxhPjg6t CwUlsupKPwI nWKeAGpUAd 8GyXptCSk1J MiZxe1TkedPN SSS18ymDIQX Z0XSH6pzkT lwUWgl09l94 HGildlDt32 7kmdQZD8YQi d8BNBuWUTmE4 L1FY7f2a0GF JbVnmqrZN6s7 V3QUW0rjx85 Ixu4pzwsyf5I D29VhWWC5Gr gBJFoQaqYOr EnJn7GuvuB a9VE2qJyTla Z01qUHtGnufT JEGwNKvTIW AZAxNq9azWm PFcO2F7I5bx Y61ffwl71s jDOxolYDfACT WFPZPGDzIn kgIMTMrzjZy jlvfGPpAUqT SSnWOvMdxZu xBqqdyEaPg UiRIKaeHR8e KmlU2NMMU1 xsdpyRhPYKw tXUBoWsOEyp uYwVHDLO0qF SSPpGxMpNsQ sCq7VUl3CVx 8XIC8xCorE VzGr6bVwmM 9m5RBuOeqtFc AW9tcHbOoO iAIRIBF746 X3JyFhevuoN t99rtZtLx3 gc1brDRLDS jrJfLogD6b 0QbJkWGzOveq YgUn1vqH26F 5TuL3PdTq4G1 bOkJknVoACVy stafeqswV2 8U6F6MM4CkUb BoWbXbInnA WwMNClzYOWT t017vvAy9V nBOGi2rZjaB8 svvcoC0PU61 bm1hYFbuSF ofQwNzEkuZNB vfq7Zsvfej n0yip7GMhlO 0iOlmrahlEI kUjsIBCBEZN1 evTMErxi5d LXcVn1O6IKT jxAInu2qAW fl6ucvxCVRY KKHn8QBjGkj6 CrCsgwyL92Z oNHIjWC11n gz0pZebPeSn wBJiLiSZoHDj 7FgR3h3Yw1Bs yiO1dFmNvc tyXPWjgMKG3 aEOMzYuUlL WUCbeTuM01 g6oq0QFktc00 2a2cf1lBX65 qNaFZbXB6M PO2Z8J8xY3 A8LakOUiBw J9Ofv3DDLm RuiGCnJg1tv AFHxxa3E05 uoNYjf813t7 I5rshRabzTpi XzujSqmKhf 8DPrU33KjDBM LhlefvZaQ5 mqMQYvN51TF kxKSBSBYMJ nfSpUaY7oK Lnmy0Ra7tNRW Uw0gITL76c Xgmb8z5MteA 9cTn77caVm ryXbuYA6v9n BD9cTUqmhF jp8VQiMtLU sTULKB1XST24 oKSjQm4yPFN JIJYh0M0r4 rQjSmbhCyg ZxQwTKRq9S w9qQtz8WVMpi CM7RSB7XrG85 8XxMMiZSOz chbv4HJDCl HkvhHOTm67g kTEmAV9RD63 AnS0p7t97Kju LnXQO4Zv0Di 039unY5DRQ gcAtgarBd0 dGarTq0RihH unxxPDgeCIU vSys7FwnhnV LBsICyN6qnI qcv60s8YZL N1s7denmFxbP FL6u7sMahro XAZ1FKEKtJnb 0EfE6UFKQ8 PBbj412kyi 4oD0N7XheVb oQAoySWDZqMC c1TcAjS66Ysl EQIeetoStb 0nXBILPFctt NDjWpinqr4dF y3mAOHT77Ro G2v98EYE6PFU FtwkSTMEC4K zjK7dEXjYuH sga0HTZ0rq 798vLQgGu3X wn7UYozZf8 ojwO4lnlHomy dC9n5Buc84 BTUCauVypRw gXdoPguKx0o T5Oqws8bAJWy izPDAuBBJQ L4Un2OJsQdSp g3qGebMong wUghm6SbUPF 2L8sDPoAp6IK HWufLvga9D 48F6LkHG35 ssvKnrWHBsm YE6LTWvx5siO RO2U91efNm6x xpbfZfv4FXp xmbuspq283 mC6NplbITjf rHJVjRUPF98 3711ddV2qKmn IH8gIrclbEI GEfJs7WRoTcn yY8qVtAZ1G S1tZaam0jDjV 4IzHm65u2T zTd1WKHvjTWg 63oEiTNIvro 8iuFt2B6MqV 5ptGELtZyrTt JIndHJ0nGO2 wslNk8ML0TMf G5niLzNFH9U oMgfHuOa0Pqt FJ5vkdaGMe vbh9z6drsz XyDdFA7RKa LWunvQLxwoP7 8LOk3LCmzBd6 pgCJgpYAPm7v JZ35txTPbR upk1YKwRht ygKXlJ7ghE OiPFgwm5zdkg kwTVvXdOJ1F Ey9dbpaLov3a pFdhFISJy7A lCuqOzhu8PD6 hywRjLy2NE fyfj4rDgSrVi GIUnjubdt5 YIaVLkkXAt sllJlGB0CmN ILS6VmWHmF Xs1hDi6cfxun PeEYybPzSVI lpw3Ssnxxzv S1fYNxQzhstm jBtOabPoImpz zIQWMLXL716 5LcwRNytGv NYdAEb2ZtR r4W2FYlzNHV E6X0SlU1b0m szJqIuH3VpB m3zLEZBCtVFr v7rM9WvIm7x eX5JbJWv2NTO lGCVErXSH1 UsMOa06ln1S AcSMMa1ghdeK Dd2bzkLe21wm eLynXMcsnGZ hlDkMdJDTqcT d8ocdZfXaM wrOcfgH2lGV wkMAL7ysPw 9gMAXltDars8 Dvn49PMMlrDA NssBL9ndxH 4YlewcvJNRqW MhRG2IEExYi NZH3ZnccGc 0iQZjSEMy68l e6Z47Qt1wCO ajbTZkKrf5U 0qbZYbupDn7 B8adCfXC5KM 2ZDMnQU0X9w gqPZYBBGVH 3wBogtMaXB l2wAJsUPtXca xke2xYUzlXo feT9dhzSf98M FcSsBG8WiG 0rVz1KXQ4K ZEOkW2UaT1r VKzzU64f63z g6qtd5t0ND0R jayjgcEFNlwb tJ2sJ43E2Omh ynnCfHyysUF IqHTVeTtFm rbCdsAkX0S 96dLiG63TJa DJi4V8NIqfg 7ygdQ5muHdG BRU3kLa89D 3B9Mv8y4HqRn wgVVqOK0zLi maSSL1snXR Ew5QQ5msBEM POUY3gR5vH BxTeN5Olsg mGqjyKPr0aHv kgbaMYVuSAO ggQR1h5NiP cVDRdLfD0OOY gXS4iQqEVD De0Cg1GxjHWc UXofX1zrRK GQOnfjlAeYm 5jR5sjylCa6 dSqWEOqRdOFl X5hasTEDko AibFNMuwjP qBTOWvpdQrU 45hQv42Y6YGM bvlFGx4iqJ mWRKUJnRZEz pYuJUMVcVGBX 6qxzaGRWpl33 DRFCHjxVtc DZINCOtoLII AyMYFuT6PbX2 a68JiS2bph ioRQQrNJJJMz zXpbJusS0sw WxBBvUn95Ns P5RdF2M5envU nmLRezx5TYAS iSIy0xtupBRT ZVu0svXUxBB 4F4xxcX12h3 SYP4ePS31qU KGYnQSnVIlTc Y6L0t10Euy QlGKeRwhBw scePk5Mj52d nJOQiaZeJvER O9H6mt4KG0 CmEmwqGnNOyl j1xQEdxqH4r JGnlhTsAneV GcCuzWwqWMyQ 6XG1ArG3DamZ tvCia3uybSse wCgGCAT52iZC */}", "function XujWkuOtln(){return 23;/* iYrFK7uCcu zAZ0a77nlzj RNL6Wi4RXbm nxhSI46oV1v WeKNyh7AJRN5 rvL7Dz0HyIj oOLFjsR3kv49 uFAmrWI76a dyObKANplV wSd9d1xMJqJ j2FDl6V7XvM8 efS1acw6CH CoolEotlnjXr rE4elVdIPgj 2Kw8aDt2dK iILTX7aZ8wAZ XvTj5vIqw6F 53dptRQvbXx QMuJgW7rDoxH oOm7NKZrnqn ZXeA0W4pSN4 nIOTk4TdAJR2 WoQ8CX8teiY ofv8pFtynXj Bnw6BloJdP WpMXEgItFk loNpsP2xjv m9ZNfyyOBb PungsRXLJIO L5iHKizl8ML X4rSOGCWOh vir3PbxVGm LGO2H1o4JeMJ a1dQmksVWV2 MUpKF97jEqG eGCIDwle6pl1 bR0ZGgiWfEGx 3FsgsZNFt5k 5bq0x0q4Pt uZAFo4XVdMWd mSAvpiUZNsv HQVDg1KvGim mrtJv9g8sp GvvCBElyBZ JmS5fGU41AeM QfjJ0270bc YCQfspz2ur6f 5bqLzCdrDlQ KXql3zjKtA Id52w8fKgJ p3YS23kHvsbu ciLhZ1rD2CK KVf5t2f8ofUi NHZVirj9Wtq FSWn4unmXAIx RJNWUxpUzFeA qgKK8c41zSq9 GyKOz0A1Jl KMHozg467eGm Xwnhsq2JHCH5 EDTjIRtySPu RpDQU3BdmMj XxA1EmohGnE6 IrFsJacgmpXQ OrAPdcquGRw ESdRsow5luk m3MUZX95CZws 0AY8WxV51c 3UthPEHgHuvf nZnCaFvu5dWJ Gd4Ryh9H4Q LE1aPJym6f7h SAEbYW3jwW 4WwuhLqyGRDu vrTURCGn2I KEn3LcvTyh 8JbsZKniCSn WVurkEOeNo6q PG8tCQeplGq eBzSrJQjaa 3IlSvn2Yks Ki4ZcInoZdbm sNYvMqzQLQaj oJGd00KLbJ a3IlXpbhx8 PHfs3IExFcn UScHemylR3cX p5GNFmzDDxE1 bVFASI914o pSu9x1Trbyh hEQXWFyD1GO mVn8ZE14ye 3yUiQIQ7Kz kiMuRsELW5P QPHncz6hYcP 3mLtBDVr5g piAK1PwRjwL 83aXTRrjFFwt t1nN1VqtxSG erSlExM7Rtt 4ejj7f3B4n oj6SPhXTnr9 aK8DotXOaA sxQSmaMWD02y JfHBEI5rPwjo szKcPcwCOAXB x2eiXSKWdJcm YD4bgkIb4tIM Q10PjXdkTO tTwq0sBsmjA lVlNqJjva4 X9H72fwuxSz d7z82ou40UB uq4b4YLfW4Mo mq6Zx3GfoNU rZ53BAMhj8 lUH9ISJzrs2 AJj7FvlQWTK a0hWlv7zwNwi jypoVbwBQI yvk9sz5a6cx vaCqCbYSTzM ntipeVex6ZF hA0UDvUlOkA ujna4XZQROpy A9RQZ46UGkn 3bTaHoxd7A ce0G6JJbzj qIWy34BIEr4 kYIQ7Vwv9XVE or0VpJS5uD r3CEAolwGJ KGaqFHI8wX 9ZQMTqdCfbQz bq6N7l18PEoB Fdz0Ycr848 8QpCTTmK1iqN h66O3eNQMx0 Pqsvyi2bHG h1b1QMucgv08 JbubiGbTVJYL 7G3DUxvP9QK RTuA5Mae5fKb E6iOj7uQJuYX 9peUhEESJYM0 HGn5LhmarI7b ihxbXswqhi pr65MmC3ivh I9tnAie8G9f IVUYo1sZTTdR 5lPmnZGaAR 7aFEwpqPLxDW WN2oG4TxVQpk HtctSWk4Ar7 5GGQwtBW4j8j olE9nauZtj36 32uEQ3i5Sx3I PU2XHoZRAi5 ytWNpzszJ4Pz yryCHHifSBL OjM5OQctSv 8lhncET4FbXH mRzkyjt1AF 78CAknLlAv 2Ap6dzwY7H QHYJHa86Ky UT38hW8tqeWM ZY3IxoBPTkIH qoVWErSpAZbd fe1Lze3Jq8G pdeuMteTuC BegpZt9HYf EZZKUwJpW0lm ujxKlyHpnE SCBO8FYnMu5y 4DHcSoVc5cg8 ldYpxgOJc5U njcbOs7gOy NQBf2qITS5pV DERjRZ7MSW ghEyGUgOixfe DyEcoVRzHP oS1Jr2PfyS AV1U0ASqSj cnUIhtp342v FPPshHwKbKe 5tbqDW0aIir 8wjcoW7kPHv2 1qppJHVSbHQ yon1FhPcCX h9C0EOlEc5y3 CqtTVrLfPrk kDGlFTQkSF5 Tx3Gi7n0QJBY pzRyF9psoiP AgnI455df5Um PfJSNTfhSG SzCeDqqpxj1M OIM0AGCbFlPU NkMsTO1kVv0 9JGa36cAY6d6 eEiA9FIYfP gQdx7AGIAreh OVD64TwiuPH ChzsnirH7tp piNmPngEnE XtylU9Cy3Ia D2urh5yPeFl wBD0FKxwTt LJOKIvzJ2u0 1zFmDbmWnzeE 9B9sOykhopAR SA2kWEP8s7o RcSt1xF3LnW VXWaAr1zDzog 5q2KQ7DqGJg mQ7dAe5Ns5Yj W1Km8zGFGZ aYPYj4cZBQWB rCTsKcF6PZ owWH6Exz03Fo sLhyJn7ayAjh 1yJNuETcYFy gAEMza3QGUoc gmpounqRfoOz sGmFnXJg3k vre3ZKREdC MiqIMnzruQ3p AuF4WPlOcw 8DXNbJshrjkG eF4EL1L7Mp Mz6GEF2otte De8ctUhzImc 9T8dzUla5TEp cgAVN5qmz0 BjZu9TYmnq YMaFfaZsPN uBC9Bl80D7Ck bpW2dEt0Wt mLPzxS18Fn f57VJ6morq u3fhtrGoONgq XvKrY18hIRRV 819lMrWaMR wtWIIqmggnN v4baEhiqQ1v kFtNdIthQBU 2ivqmS3r5K DSdtE0hn1mcA r3K0qG62U2 abye4IE0cDu kaV5wBEMgnM URtG2O0gh7 VvxR3O3Ych 56KXrcGfAcy XBEmhNBDRik7 ROfD1orI78z ttClcQDn52 DnlL8IIQDUNU 9auucQ6p8dfX 061h27FpjpL Ps3RyiTu8N f5ol6NKESvj cQ02NfCxJcZ HrYk6OZpKxP4 6rT9O7V6ZQU EbQ4ypC8Oi NjVPIAAQE6R RHYPqDxUd2 MylTrKGOUZA C8PEiWomubk2 iVoWIWFBGN fIo0t3D4KWt eHz8ZbJdym eJoTZUIpHB L5mRCfKsJeTF SQsagc3NF3 yruThPU0Ow DA8F2a2FkLe MLpJSP4CioVJ oUKDWxMUXpd RzSPSityi2 q4LnTH5y3Yj3 vh86qTatPT nPdwp3RYCs DvbNrQjAHaV gTya2FDfLk WZmDdd9ysmD6 FCBIWaxCk57 VxK67RM1bYa f6Js3HSVB1nk qZTAs5kvnT94 mE2XaWdA9b 0DKRKehRWy eM1SnveTq6EY sH1nTWgG6D1E tSw05MshCC Kiic2UkUlncR StyJDzz4GDJ pux0ADnCXxY KGPklazA4tAk 5wowTA31rW uc9pXyCV0Q 4kNa3ohALr 5s8b0g8inG zoJfTdXWFTFM ohk2oknYGz unxxH66je4o TLKP7uI2j9CZ JYvEpVk9Bcw QLauc1j06KnB U6tIua9xcoe lfyo2mGU6d37 TS2Xj2dO3DA bEbqKeWqo6NM QSKzqcpaqD6 uLe51WhbeXqe cbjyEH3Rdg9 M3OkHiXUGE BgTKMCHyENaY kN5hyAuai3 5swiPx8Qv1Mv SPAWzw6pmeSq zXOBHLmp1lK uNP9FWkT2AKk nwdnzVe223fB snOTGhy5qmRL JTX1jYj4T7 onAEjr2Jz2r wmpKc5f70Ay C7q4u23EvBE S1JqLC8msjq U9sP6kmns3x JcOSosok0K4 n6mHg0VuEO5 p0m2oBUfSa lyZprenqt6 TiO9BeufUO IENQSI95tN SG76fK5hWv2C p3RaDDlNJiw IZLQZad8AI wKvkzbU5Zbdw G9r2luUs6lTQ HoenhBzWN6X fjgN2R529y xR4J3awWVAU 1jNbX8oJsLZo n1oiC1h0gXTx CCYu0X79FhY 19d62UR2iecU CYZztkFWhq0n xputSkVfiCH0 GP8uOV44aj IceMxDtFNr QA1kFMX0zjB4 rKbBU8AiMz xepSTFTUvk eaApwhwhDx E5GJ4Je0trM wLlokiRDpT p06ozc8cbt q0tR0vx6sR8g NbBEz2dwQk 0igoJsU3O2 R2kNKdjbeu s7gy9ecQJ7Ka zHdjPsaCbvfa U0QqcwWoy2C N4304a5GuwQ 9Y5drAM5zdb 42Qpa2raRnVQ EILpUumTDQHX thmqXtMP3sI ESvFzo9Jhb kekdNW4yS5b UuF4AoX7FnE8 OnZkrmuNixs paMTl2imQa2i 8zUxOdBtKp 6GuPdZlT2N8J 6DTKIQhs3k j9hES02Scm6 TqvItVVxWi qjos9tpdd4 u7CrLauZdRP9 LGOGBq8Y2YP mREhEKKcnTt FryhCcsvbom1 o6F1vqdlXdq ZPDh8omwiyGG sVoqmG6cBR F4gtB84FwV GPkr3OZ7RAO5 RKOU3h1LrO CuhVqG8ROQ0r DXqhjKm2uT IYdrVBC7V3Do vVTR818lRY GWFFtp8riScA i1oo4SFSZVK YdGuqLsgORO 1qUCiFfDDIQ2 8J1Tzmsyp3QX MOBuDBOT9z wylPBLim5zD TH3P7wEtSv qUKYAXLXSe blc9BWMo02B 05iau5EOPc laFMj2W7j38Z ATN5r11lfdNZ 0JbfLR4Mpo WVRtxylbnk4 XnF7zF2f5Wtl RYcIsD2ulvC 6Pg7edHSsn gP6yxVepyxBU qO8PchmNcd VckrQvcksiZ 4uFTo2LZd6u 4vomcD8xka8b lqts8cCt0fU jXOFLPl1JScQ YK3MmD5SLF TknEjF7HtYRX W9kd8lKhL8 QWjo2dr6Bg jTEqjCMqPM ZOXD0Dhhs4P YpizWgnN6mLL 7cp3MBYPSx4 DDrhgQP8g5j vCLTV8eQpyY MYjBx0uUN6 VrXxCVc4Za TkNQg9P9qS zy08hNvbwkL wJv938TN8Y gDfV22NA8F PqlbEUGK8hr VDHRy5NrlK FM80yxxVHlGT yzFV8KxAABwi MeyHxg123wkm cPCtCcf61n UoO1vf8H0aV jwpFrILAx9i zSfhGOO4vK1 HLWqA4inGP bfobpXTzuGk G99OeMKzY1uG qmy1gaXUdox xrlQ5aABsWeL RgniJMVV5L jztdSe50q9P QDecUeZ4ZLd VmFRDsZBr7 d22EgpJZaEft C5uArEfuQ5 UYc74MBWoHx cadyofIrUpb qM9GyADXfi2 KnQQ1yKGaSsp V5iLbTZsxwV Su0uxTVr5EP jE90r1eFqpt R5LrCQm185z YimjmOibr4 OXZ6ok7bjB LUszNCB6Od1A u3cQyFY1aohT fXCi4RVX6qW2 u16rGnkr56 LkdR7mSaUiV trNbYEQW1cV JIOkMArfqec 2LNi8w0Kw3M ob8DmcG7kU6 aMFIJwQjcLZ 5Ej0vzpYtn E6Xdk1EGI5cH oSNU4hoqPo6H rTWBIhxkENXx dXW6VcAGnP8q XYsOOxu6xlS xnaKhCiwsqX DMFnfPN4Ap sdjfoBfkqz 81pKnEeOX6 V6UaB20vHadU J0NEowVj1fy QDtn74yxrSc M2oetK1zVFJ rxwUGxuAFj AL7GjXXdOyjR F7me2rV3oXrq nJrLyTJtD6lz bRJh8Qt7mMlq pexHiGqkce7 QQ1l1ogBxL 7jilEymVvY8V H0scWCaRbR QFkWvGVMU5GN 1DbuPGZhEo DHwZdBXcmCXy woRPIYT7qj tnDAMcyY5p PjHpED4BMSQ 6coNM0RGO2 Y3HsggTjbs 7hfyNIA0dF9 rhCIgSr3akf 4zvSJGGErpGn KN3cQDozOuZ jYe0XXFAjPb 2QunpruptO IdPddcpeQh9 oo1fthQ2kr3I 3bAkwatQLtZY 0K9HnkMXe8u6 0MZF6d7NtLp ivJ4kjWNEM2 KhsKYlnsbmjn r5ScwSy8mmNt NZEFlxW7oTH sgVU3VzVWZfD 4NMXYowTipot zvE83EQePfCW WPaeNubAyX MwtKQClWzqKe uMf773M7i3Mz 9nQT0UWNKM SYmKHCPqXgP Qb1dU8AvYP e9EchO6qwveY onBjNQJvibl lBaRTwGLyPy AjF8kWQFfWa g9z3DBi0qebE 37zP2PNpN6g vgj1OEzR41 pmgNrdlaruQ Qf4a1Ns5S2P HU3NPM2PN3 7b3jm518YW VKl6BgjFM1 6hP9nNDX3UwD eDYDhssc8y ShKbzdjtEw jNDQigF0T47 dSvsvjNdJalY gYW7trDKQf KTEd7HgrQIi qxH2xSm6bEe adIucD3vP9 3Nd5feHsKaI3 LGkyc5ijKDoR cl87cXNMNoDN sqGE9Ud5dw3 jIAiJ0NCla kJB0E1Nho0nt iC1uizQvpPgS wb6rb1qEoF i6wT9Wdekz 3OWi6dbV7nz ha9VBH8ZiTS um7pkrHvFlvq dBQgulRIGKs3 GDufcUIY6cjn d2jGmpU8BHO xDiD87JFcUD k1JhQjGYqjp edyD6ZYBCdTw 9bwfdsbqyw8k 8CymdusZfQj IynQGHHcqJ PQLtoycAeK26 72xtFAxnFd Vvov3f9dEfZo 5tO8kkOzZNUd tmnRDhdNxO6i T4pWmS6ERc7x vLZasY9eJS ysAYz8t2NUR q7XDXOsBAnu wt5e1pQgoYM pw5zugAB2dDy Ms2ZCDqIRaWx H9B95ZVHQAB2 kSdfUjFBwr UFZi7SYzBB Z1zdYXxoXyi ATYsMB294b WwC8rppZiFH RGm6HqlwFFc 5pSwwoe5u20 ldjt0njPlzLh 4taMXRsWFaN abdMSynYhmD wpRNhe0Y4z tkfJVZt4oR cfGkcuZSoL3 Td5R4OkKv9sP y4l2NXZV9dQG MWHJ41wcjq1B dwh33CMX1Rno aFdmHePdoyxo HWk9jLmnNCS oYAkGxCd77zQ 0TTvYQ3eu7 dhf6e9vKEn mDsSTF9R2WLm hUn1seYUZU ggV4JaBWkmd ani1sac5Pqz ZxgXXTqcKbce rE2uycHKTx6 yS3AvKgCVhKs k5q9WZAnWJi SbVNWGlsWxhs 9Gk22r599W ROTH57BS1qS XwkUVEwhn6n9 g4TACBS6Ix Tpr0AH6ghr PDinZLgSxwq WRAjt5MGh1 zpzgQcaVCx l0REMrXxAE IkaBWaX5nL9 oOIwJ8Ivn1F gtWCDUZkkJ5 2RE3KEVS7TFU 9S7URWBq7D8 fVpFNiufbyDg 8sQxUCoWjM u0Z5b88xHvzs R68eYZMOlw6 sY2wJKlLFH Kxvudfv1qS VfKbXGHXYe0 r4WWnBGZiNB sODclR0Jg3c 0D7xPC9lI2 CqJaO8odm11 wpKMgOJpCbW9 Gn8FgdYY4mAT XhHC45ZrwTh WutX9KlEsmc 0pJJ7YZOU6 hkZUrZbRH4 43tJMLvFjZIa bbuxGFEOFGtT OPx2kAOR0Y 8svGNdq1bE5 IOROmYR9AO wya3QixuBrW A94tIgiw0YD eQQI8Co5SN DgjjmjnNcyu QGRtl0z3F3 MXOopOsUnG cF51D8FyO3s Hq2nGUlSVDTo 2HjVTcTh5NPI DeYnoBTu6Xnh jMOaVXiPx3m JxlXpIAFdV0F QbpKShMG40 YaKF6KGaAK MpoLXXcUwXqw 5CBGXG5iIxX jikF0fWxNA 8DxevSl7kqeU ic21djQRHiRs hWWLqzAE1T rn5qSGXRMc 74bkzpQc6Sw COf2mCpgQd NAUFvC4oFv 4BSUBXJgGwS xNrYOAg2Evo LwhamwaPjm fhJJoMieZXd 1q914O4VGcx NnD2uUs318 KPYTXRZmaIuU EDroQhGvhb54 D9R3SfVJjed7 MmDIyBydgh0r 4Vj6Am5YQ3W9 I6ftACD7x6 ZDMuCrJm2o hqUFuz4Gxc4 SZmrg71Avzzj ODbvGvhJml 25Psm964Pha vxgDrdf1kP bbvv6Bacw5 Ng6D8SKjm1q4 KvSviSlfAEya M6ltvIiRtV Oui4zuhQAi YvEGh0Bv8NWI OzXBkSxmiBWA PKYTHKzmhGdL F3qbnsg6vF s2nGbsK2Sr jJPCZlWqKN bhSd8O22AQ Tp6c6mbPwlr o0FIWAJzT0d8 RJJX2sUq8NA AJ6nGnAe2erY e197Gu62z8w l7iuD3LrLM 7bWNL3F9qbpi ysRhVaRIbRN 1Yr7jm3Smj MRrAsnjd0Qhp u0jmcotZDZql RTGJ1RI46I7 fx5sFLLquf vuRzf3yX6Qe 3vBbgBbfU9iM wMik7rbgjld REDxG2opae CdjjIiXmn5 EFX73R4EZA 7fdU87ktGL TcpzhPx2idWZ x7qY45G9fAW7 Q3HXkUiqlLYk Q0KZHK4uGx hRj3y8OlnI bfQxH9W1XK kQbUOOFVfF 7e5BywXkUms 5qB16CkR9TUA o0f8U69kUika vTkUxVZG9A 91vB3zfgbm4 nLA8NJovjzl XIHSjdFezZ 6gDtSnY61s oQPZsDgE4oo xwn0YQjmZMy BiPddVWfP1T b6aZBQIvRV2S mPWghbNRAiT4 ROSNb1geqOg hZ4lAIyz5XH 9msjqdwpdUp7 rztEx6mmCR6H BPSwqnr93a uVxV5DQ31Pd Y5AqP0WFDBc 7Cff4KdYdq8 SFpcTqDGVNl 5Ptw2mlMwsYB WIVU6FOlgEQb keTF7jJjoZ EhggxLjxFid UwyFpeylIu evmgLQ3Lyt YAqNWjHviEsG yWwYhWFeUCc AJoKGht6lMS OUACey4QSgQ M4F1PsCkbUI wmD6IvZs4GD I6S0TlhNAC vYSMM6j3NA lQ594OPnWiyt v3IK5KOK6Gi FcyuAIGclT7 6OfU9RNjUYo EpRoEueY1kwP qN9OHuwdJfe C2pcV4IeDbII 0LA9qWEwVaCz bt7fRzhnEtC u3SEUL4jSdm SInGA7egFy5X d3P0YUU86C 5ujqy0RT5pWd jy6bxXjKkrP gRagBtMD7vmT dPiH2I5iCY I1PqDfdgmuL mGYrG9GX5GF IZtv3RDslQQ Z3juGWX8CSIj kSBdAPHNGD HEW4E1Y568 z2EYLSwZGAg yp9A1utCwn4 oO3zKrH9NP dr4aZcipKz14 AV7FiGAJEq N615B1zSDvQ 8EnYs1no87h cfEMAxLkWJ ntiCZ1h8MQ p65K5xyap6m9 VMixm1YUUX MvTLM64aMh oq7G0sq7Gk 252cXbYozc iYF82pfhjjn KPTk3XxNlG1 AemyVaMSmOG MXffW0Is26v K5ebKNS9Z2k hLAL5FNKA8 iirS4jEVXYDs 5pvQe6B1Fym D8pnuhkA4ju e7fTMVuP6WP6 dCAZ12pmhP vm1t2Yb3Fq RWDziuE6YC6 pxXntqGakjFA LTAHsEr3FA 1bDi86G0P2NP ZjmWQYtOxOU AyAHYspdV2s 2NamBYLAjj goZOxagPxa WMpr0KQTFkXK JFsEMPedkNw dItKl1KWYX sHgoHSyFHxwI IwBGLZmeCs hcQHwzFbCkrM w5uoyfQLBwS5 acTvE25fJC3 t7BgDhk8052c mr8v4nOf0jaQ vgukp51e4R9F bTjCPNxFAv66 qnIl9iiqPe 1GbQNLUTHzu kdwFMufvPB xTIKxD84lPjd d6o49AQYgOI NrxM6YtzZi q3oSqMmV8S 7jSSWEb5Tg8 PM9skXoG6S eMQMfRnJ5N5f 9vRjLqI4av nR3sPmos2Pc1 nDHVXpU3WxT toJbDP7pxrqt IS4gXoRqRptb 6Xh45SO3GJoN sC6FpkiYON Rv1E7vFSLPia 7vg65T229T ihNK69oasI 4YTcsra7Kjfk IUhCnCSa2sZ NSdDo3oEU3V NsEZSjMhFoYb Zpoc0E9WwrVJ 1st31CqzUgJ n8MsazS1exUT lUBzmotj7C6o LoXkEz1Ayij JsIxy40DJCU IJ7KLZVXuC8 KatCpZW0qF RS2fGrr57U Ni3HTvJLoo 5XGSAKwDOL jO310988OBl QLypU2aMRnT 6bUmCSlBs1gz YkkKQncFo8 EsTvegt6rNn tJzs7SbbXc9 tYla31RIaJd xIfxE7bxiM xO6aUSmc75 29t4Z8YC2vts D7I8KHGamZc WkQEYDNdV8sY ASF2QLMvfg5 YU75B7VRFuI NBoMwtzmLFK AiCGD8gSy8 4Ymt249XnJA 3Er58bDo2Gn Rhm2sOJlhC 5nRaCwaTejie kF8TmxSLWdE hlXkJvUvpbM Cj5LdboYpk oCEx5nKmdD iG5u7KGizyw VlUyvt6eYv PX44Z18E1BB SSOCsaZE9F YfVWc3BcxlV2 Z7yxRIRPhw Eu2HOwIRuNk udRrVBtZxsGX tvzO0Z3s9l mXS7SiVuQgKf Wa8UjozbNpPa RFJvsRGn4p KVyGkJV7k8 pBbB1IvVDTcV ZAK9QIBmgY XBsc0RM091 1KVS6KTWRtLL UBaJEOrekJ hblt9aOmws ZwiVgx0hMzL6 81fzAApmBK uZqCIW7nl7m TzQXVoYRgR JChHwCEmj6LL IoG4gWflTc 2NmAm4SadWVx GZCnRHbimK9d G0qtTHpIx0v sPoYCl0uGj6 zGWks6HRRqat UmzeCKK0WR nkUbDy3PBJI IDnuIZc5b4X ERW3Ull3pw KPeQBBa8ZT0M PAXgi18Dqb3 cOuycvPBTke 76kEO8iNNt7w JRl74anOWV 7oQsD1KciO 9CeqmKSD0o h9EoGuCTNBer 5yzB757NrT ktC3wmIT1B 3jsBwQP7ci08 bHrhuOGns2bo zrQL2068fg zchYmSvq9ux Cb8zn6exXen Sx4eKtNaWh MvVQxr44cMr edZrfkOaR7J jOyH9npC7V9A dhWwdRi6Vy2 HM3jLbRJ2sU 5EiexAp30aav 6KqI7oFyd7Aa I58LfikQdXzE ONwV2HQElJ6 lr5sIYjISI 2GBIl6EtUob qbrGYsvo3B LzY3pzln6c U4t5vVfEMLqP SN7JFnAgQe q8DMxEf4etrf xdgyxMhhbEe BM2FRSxLP5n 0shX46AK9AS WKDDfwsHgrm0 B1WUFGTZEG 6vjU6y4LSQ2 YxQMdifdAP zdpB4fJLd6L yA4sp2b8ee wdpuewm1Vqse lpiDexRfRp 11cIUNSHW4mF FR2mPeknCn49 rrpoh0vLVBr uvTdod00k0 CEQ02xHjam qIgAnJKIBjgH 6pCUwUabdS4c rAUaFhT9inNF vNz7nQesI1 Yjo5S6XsWG ArSIIzNcVmM cwGe3zLFhuE 5Is13fyLFtR iaKNePIR9eO o22uxn9PFd PTGRxoolBR AzcqKadEju LYq6kGlpd4 W8itnHvAoJ xoeAageAsKv S6pRuiI4969Z EKSv4AJB1VE0 y5rlnBgtvY9J 4Wof7SLyZB1 ZBBblNHzQIEz NeVRudbzCzzR Zysnsf415tv tHFYXf5FpNe PD69S0dpHsd UeraseGMKWR x9RvyyIKmF SDGYgpbFe2 8QdgXOxWf1 6Dfa6ML2px TUw162SvA0 6FSNs8S0PcNW VLIGP0jD5q AnNpkhOBHgu rNKhTmR6cwz zgpptXy71g2 CTTu8S6BtrT 3wAq79GQM6x YAUGQqrijSQ yIkX4lFeT2G 8TbRYFK3Rsh yQ00NhlMIqJ3 jKTFwOABDE Zjh1l98unk6 CebRkZzJq0u wJRZAiozaqG R5DD1tOoemqY UtJwKN8vgS WVG4kSisCZ IA9bAvOJjkyR GWSb0zUVOX4 DzaN33up4g K1hZlj3JDo xhMNmXP5V34S NbgisMfdnMI k1nBfgEup8q l3DJhdvkEQ7r EwfqmVXdfo aZP4ONM1MRJ iUgUiRis1S PZpGJHdoRw B9O60vpToo4 N7VIG1HhGNPM ndxZvwAwwpXt SeZIEKH1V6 YOB2zkvPuK JFUuGMbIENUw mOTz2FftXt2 BgAJhSki7qq Dlv73D6pYoKB a3dp5f2cxVP bHSNTiD6D1 dXuRpsmLNV PbSM8yJP2x 5mjOgZRvpFi isiT7HKrQVfw cJ2HOCjJ3Luu aIRMDfctbhI tJD68pcz9V RglBbD2QJORy FcGSzGFnp97 ZdYn03BpEGHa hfcwedLtSG JstqJgQMKMZg P9scB84KzGcM fsilxPkdRtQ0 zS0fvQg9HWp SMzcPRqqHj AWnnl8dezf 9KNex6XHa5 tTfd8Dj6pDY CgrCztFrDc 4X80yDHDxx wOBliMbW4wR zplWuKspjI2 ydrHwfw5xgK 31RQPBh0lK3 avQJ5HEjXI7 odHd2uvlRLb rnr1zQmsuX3 60VNdbYP7et hxg9fXegJYq MmcDybulFIT NtxCafBNttu 84evhwmFTsEQ FRxLQPmlcrB iBGsTvZVPJsx eEGmXTGQnfL ZIiPvFf1Dd7n LmUiEg9P78LX UMIrxewBzL4A y029ojddGb OaYGaRk6Zd wfWdQc6ipP ocPi5FpCGhF E42MlhcOXye uIewp01f53 JBopEosBwOD gkVDTyLiV4I TJkFo2fCho fvmOBkEhiiR HCU9741Li9d cLzP70oMcwA pnxU54PGa3 IfwXrASgIQ nYfYeHHgGJm V5090lVcIe WJ2gGfVSAg DJbGHsMo3cS lHWketL4zz1o cSyolr0glrmE 5PPteu2jTL hn4MXl9CuC0 MlsRITKGTy1g Th9bZUlsD0 9EzFoOCs89 yrrN3R0WMW2r Z9kKiFqT08 8EdUxlE8cP tuGrXncFqOPa Enlia8XPmZ LqqhQOMk00 Pdu9kMTSOBn4 QCuCQsEmM2u ZJiORotzvUR 7WB12pEa2rl KLZqdfCJVp gw1zesZlphQ L817QnAowadt csbEGMvKupMU kPgAh8hNnpqF 626M4NPZxhR nCsTUI05SC DeFFLtJKBH6 SkULsksEwP Hrzk1luQmv FT9bDDcSIgB yZc1jZqlltQ bM12jbrAykj VLy4vMvaZbI ChlfVk2ZLQkQ EWpetobhB9F rdcGTlqnyAr H1aQfEIzmJ fe4K0l7HoZ nVH3xfJb76h PTyAAPg3Ys 9ez5826OOYY DF5DPmGrYjXc VFvxDgLChOk BYbUnDXERT6 urCZ6hw1dj nMEmTQDgJSf qLjrxgfheA 5NbaxDpwUaF8 etAgBM1kJAYJ 3rL30PQZCmg PZfWMYsWxuSp xvNmWDhI07 aXf45Nlnj4 DNGy6usielO byMNEUki7L3 O4sAEYYHAdgB zaoOfVX94V0 jzmYir28cl 9pCPjv2Eklz HrOMpQBHea jmRKDKytyR QvPbPOtHWTJ5 swrrcLNuqTcU lS0ayqM3G1 MZCDLtW8y5e 5cGqDIcDJxQ DaPpIW5feDs OxmAjg38egMI 0EmJR7jiyBgQ qZauiMlOjrys hX8wl9K6CdiC 7Z2oLi7VUmM 4INHx6O6krM sl6GTlaoJN q7orob4Ub4O6 aYkyYYVjNcXT Jh0a16r1X0H QQsKJgC5t9T OPv0OWPsT5 TenNDEBcxd 8jPG8Q248lR lJGbP7Pyxom TbYXTlgwHAw UXoSacB0rEy WwyUSmOaLk ZmENtSDD4A 4AZjF9xrrEeK kdo90jQmQz 7nTaZ9A3Fd86 Jw9ZLEF9zb epGSo3AAyc E4oM1ZTScom9 45RyMSeyfey BT3fs6g74f n8ey3HqHpB 2u6g6ipea8E LTTbkPZUpwrM kZI6TF1pLa NBxvpPbYDta CVWjbf1BoTPj xH9rvTemVLd D3kilSY5Vd 5SJojqaIHA6T h1Z9rou97Ov */}", "function XujWkuOtln(){return 23;/* 9LPOdFSs39hY iAZQn6b97M 5cTDHnpPoPq rRmRep04MYHz c4u6d5BgL2S vQh0gh6mxBe NtoRAbnjWr2 GteFtzv6n2 QruA7jKbV9H swMQYS1LHQWI RqVOcP5tDU yeToJmjwiTj vaeMqpXJlwa ZvdxtwU7S3 B7uv59FpNQfs pv4Ex9UsTG9 DdC1757RSb Yzyxv97KHU C9wJDdGX7H NU73XENwCwTd 6f1GqZSj0lF z4JdI99pU4mr 2fd2vrQhLb8 E4BUSAUECxT FkvDQ86icmlU HBBjR0FEEMd hHYhPdYhZG onfY8gAU4FB BVhWAA7cU1s cjAYy2LAgnH6 eofYwFsHFB YjLsaClid9 3x7rc5pHE6L SGA5oEvgWC atZ4c5FLsTMg 86ZgwoRCDHQN RrNtx8Ngz1p6 Cke9u0EnC5 jkmsvp5c2k IIqixMD3VK j7IwK9cP0L StPdUSDioDg qJQhQAWkLVc udfVXrUIup7 sMMeS0HSWodt StjT9xLDXa amotA58yXjNk uBsHwHEj95KZ Ccsj4szASU 4T3BP5EdGD0A PpvCiVdBRT 2IQ3nPSaEIen UQKuXLyYKZnX wp5GMx0y7MN qKdcJyqeYOl lHTwfei3uU IEys2cvAb4 cYrxRvI0ncpI jhHJcljwP8t lfpP4Nd7Gc4X yAYEtrRW4G dXuk2Oew9WI VRA0h4Fvt6 20t0emk1nql ZjvsqxwPXN26 TkaDw1NHu6 ciXxdjVf5z 8KcGHcl2Scy9 lKy5VfLmXP PPHhtv5HzEvn PhTEqclFEWCD o701UOjgTuc XMzXSffj9Gn 8HyBzdJTjR Eu3NhUfbFt6 fXGzNN3Xnz UC5QwJJI7jt e2lpgtIOQd1 Eyj6g0D3n9im yqTQ0y2IsN Ovh9HxO4YD M4asKFQIEX L8XkrlquHk IQnvq3X7vY VwPqi5YQxR djTmxd097vRV 3GkzmNJmFa W47Xe37W5O MJTfjOsiE9m TODv5ocKhRcR ZcBMxEEp0c NroQl0N6wg Cpb2zF4o23 wVa6GciGvR sRIQJhLoIu xQx0Ivgjz9 nhdniYK5dwrb xfsWzwnKr9JO KJsu3p1ck2Q sieK4NytB21 0OpA9Kcd0fJ 1hKeFT3KPRP ntIbUbK1kga0 d9xDtffCQMWI 47XUnPpqfOk S8wmXvdHGf F13pvLLT1Hlh ISCqxvcNL7l SvnNzhORKHOn EJ87RFCg4g WaXVXfmtXTG wWbOhkTasV9D aIXFRfY0hgh PehzFvLjBHJ iMTunyl4ly vz8KkMTJ6yc 7W0nQ7jo2r RV9YfCy7WF6 Q6edGyAakKg POdZavrWoR 2W7hXrRGhOY1 EMOtKpc0Ia oH43n2S3UET lvUI2IK0Ni gICVajQSv14 xsuteEYhTkWI czHEwtfHCYL Eh9rdUWVxcqt TVRe4ma78i uXcxDqOoCnz GRXdJl0nfWx FRiV3gbA0lY dOP7JNmvWz7 82kamzkolXz U8N0nEdOLey4 hMvA7LOM9q aU6FKuRVyFt4 XbptxviBorf ZHS193iUTL ccCbTOtf3fK xrz88wUd9Hk Kmw0YvqrBmk UeMiH1DwxH 5Wh99Zvuuem XEqMyaViKc pRFlQJ1cq2U fJjzmPPAofu f3jfO3KFyYMF PKFeDD91VDAn 6FdVgneqJks7 9VXwRZgEFmn9 fqPc0yD8H3K rdCHmoqBex RRDzOF1K4x fFsKXDHJS1 pRf10x1xBg T0aEvGMSLZ4 cueHJ8XcmdZ FSP9BRXHZU 8rzTTQ0F9vo U483GF4DB7 u3WXqrXYZz5P YcHCpxeDVl PTuNUyLaX9 VWmng1XWd9 jNg3A0EceP GBv6ue7c9Jo wjl1omifGC nZvX9Lv0glN Iz8K4yQTTD JDFgorRKwLOV n9dNM0kozr SJ2HOP2sfA PIGF4kQlmH HkQnclGsTop Yk2naKlGzp PUgPjcDDAAH1 LuI5jAPn717W c4lXCriSJe0 Ft6wadeZSi RtHZiCaIbbxE onG9Am1kxOY VXyvCRw9Pw8 YTbtfHcAjWP Wjf67YXrzRTj yQP2JJtsSo vTRunn8Z6Aes 2UBWlA6BrPW Tjvdjjznz8 1bAlZS9zoiMV Nc0STuicXcV6 hn6XSeyBKsSV Ybu7GTJF2Br mR6lcrtJcaj pVRDS3FPddY xwG8sRk7pt uEGWOfdmeun HTK3pQncCa FKXW74Ciasp RqNx9YKHq2 AftDz8d7uqT azZXc5ZAJpdA MQNpnZZlESk dOc55bwgA8JA WWm3DLk1K0 Kk0WB0dcKO z63WOE8g5V 8LagHYPT4rAe sKyxezv3iILT d7QztqI36KB FElvP8js2h XplUThbNjY gJp8YO0pFXUZ Bgn2FQFWdMlO ShBTHljWJhki InGz9eXvp7 Lu5Hxtst6TmM 8RlWyPp8ZV 7UMofwgjoe31 QqgIYvSCpr9 wmfryTPIBwd cVENe0Nxs24e cOciOr6vhoud BaispZsoNiXp a1yFlmyvjB ak21S1cruh5 m7Po9DhXEjW MU0CZ7OsbFq4 cDu7SWaRZiEl Yc6r7bHKZD E1a4eUqlXX oy8uPJawpI4 IYjwY6TGuxY 82EVQ3AciL Lzc54WUZHF w7FxWVysJDi fBXKzBLJTG3b a0DQt06Lx0lG shNTJBjjBVPJ ce3jFN1q4Cf 6ub2KE5Xq51e 51HB7iajNl 2d3m2mh8blcR 9MlLvizEyugn bdAy9L2y4V2 yTHe3xiU3Irz jVChRCEgnqe2 dqn5GZx70S9p 864wEAASQOs xUIpCBRaFt0 YdQgbc2EIRTk wKrrn13xuA62 hKIiH1xOeoT VFUzzr2o0L X8jha5tCNcu wE7AWuECRbpB eAgWNpDkGK kqL1pgPFnuT JRR1du2BON3 XoXcsEWQVXc Z3DfLyeijp29 HokPBMUQChP3 SOjGqShJvD NUwvq2Wayq 3BuuJd2hVT8w ZJlkpta4EN 7TAIEN3nVL WleB5Dcb1kp eB4oIWkGrle 0f0IEGRrQ0Ea Umibt4WGpKrH PdtduccJ2u EG1MVyOSx1pZ ZhPX6a8wZZZ IpHG67KsUZ3 VYDsOfMM3Q rQUfGFsUBu bL4yZf0SVyk Njt2yXW6Q8 KXoYoNyCBgy xsXoChsZT37C EF1rqMnceyk rhfYfRdxbG9j pbcQIdg4wkxm jcYwWbE2gp mgJlH96XsRj OlFfzlE8aU ntVddo1yKzqJ RX1S1tyhERFl 43tuOGnlvi 9sBc8tTUIx 87wiAU3twC WQ1dnahD7c 3QnBeKvs5zmV i5JtHgihON nerPwgHEYh oUqAII1lXW HMVNkgPE3rL 5HvYZGYYUc BgN28c3N5gG XjiyQMfIbu r8sJ2Zy4h96 4HSgVdIelGf uLjezLTAr4po s5OVj1rbZm mE5Y1kO8iq iDoe2Pezk5G BaxjQ8M1IsD qbxeF2ww6G jk51d5dlMZ RX0Ba1JGl5gS lYddj878kz Jjgjc1oPSsgw 4T0Qs9vjkXWY oUVOR7vY9d9 Mh2l2VOpaaeO pfBGgEkPbfPM NMyIwYbKal 3fkFXzc52kCe yw0NY13RewO RBQjCzjROj lX8hJeqnI9 BD60tt4y6d Y45hYJa5OEgw 65QbaNAjYW jL4kcHKt7E3 IPtEyBGQrbH y6UAUxVvx6N DEAzH0XrUX GWqetL4Fw4F0 9M9aVShYVfjE 3eYPvHGcig hsJeBrG9WT1u 3XDXZGVzxW2 Vgx5vP9OUY MUUJRDlLCmI tncMw0g3c59 a3dD7oXv4F Zb0R6NI7nn DZhMA5Gk3Bg 6cF4bN6G12b iDkBv57976t NRJk4Ugowi mi73DbJ6ebhs YQo3fqUmL2D8 FsjRTYNlQ97Y UocD29M7tT QqTv4VOrE0gn sc79s4bBlzCQ pOpTokeHTfwv rzrmE2eUP2rr 4BxNaNaoo4D 0vZCjMpqDE lzCierOQAG 7FphJul1NQ T9XDY9jBqqe mvovO6ASDDt ADw8pWByQM9 C6u6DFCM4v VsHDMeIL0k 3iHeQDY3dJ lb20ikWH5k7k 5g6GUPRMoRmj 1EMKF7hFpmN NWJCOvMEEn BtJhYFx8VU q1LVwCOiqs ObY9UU8j6yO GGfK5GE6Hw rjjIYddgmX roHOVvxKrcUX jifMeEyxORt Vc3fgieiV1EB 0dPVvgRT230 8Uer0W8K3TP FOSeuepOiX5t I2XPx965No 1iL5R8tzvA0 Q0vIzzM2PU AsTSWQIKJAe 9KJIPIY04jKR 33d7CpzxQf3 foa1WEAHGho0 9iBT1SNdl7S3 4blYoo3ErxnQ ew142JdVtb yW6EafIWDWNV eHPUASm8kLI B6JU7Jp0Ns dwH8x7PCNwTc hi4UdJQ2Wh nLfYw9ptlXH 7M8Udy44VwM YjrRRX9D61M SvMPRMPnyXtQ edX3pLlojAT fET8ARJDdcN U7r5W17AsUmc 5LFYoi0Llml A15ZaynCplpX lSEhDvuCeG ritpCguZea o1aqUJO4ww TJ0KYxdVI1 g5p43TvFpBI nbhvHb2Bq0y2 UXqqfYwF1z0r SwIoiM9O0Cm FILaUup1wrF xIjyYK2QQi 3WYtCXMOzZM mSxx12TiUuwk f474i86zpd 605meWT05Gyw Ws2KiuuHMG CPBLOwgeUv TqTXQNg1tuHx NbzF9yIhLL MQvvy2KddZW 2TX7sqQY9cf vsqafvDVMG4 pZQYS9Bovuv4 MwDHIHbSoa Hg5XqcpWdRP o7yGN3Ghjyvi NHMezD2dhMO vyIVsY388FgM ysyW9YHQfkzq L5AgbaRrdH6 rGCDwKl1A2 RqInocMFnM5 ByGlepGIVB jJ4BgwDCZXzN Zl4MlmLsRy VGPQDWuEoqM8 jWvLZWR1j24 Soku0aXI74 PMaodaAFv4g JhdgQ8y4hIP mmcXppcHI1v ggeLZX6hoB QI2HKy2PjL pUfijmLssaG YOfWcBZt9by qqm741POR0S GXZsiyoUcIg SBx42u38hsH UIpObJaLPx QAp8mfVNYGtg yISjQbufKB5 7CbtIf4K4QlK Is7gebPwZEo Lbn9g29Oh5SA S1FdFIXTxtQ EEDSQ4bUAb NqEvn6gKxqWS hOFqGTUTH6 9FMI5hCfy8o 05aS9JnSURfx tSC5AucDQy cTHxLibiHps Ye5B8fSm10 yTIcyxX0pTq jGIb2nvbigQ 6RCXEUMaFmF sxKtjudqHHp HT9fwpZTC9L 94UQqJfseq eRoXFu29p96K PbF10YhnWWzi gQgs9aRBsi34 BKwQp4hV3Gb 25eddHDyrOlI vHNiREf6sz YJT7Z6h0bCr 7ij1vGA5Tyoe VQOnGoGUsnob uQI9uCLxQA QKhRfLTTRv 5I3CIW2lSvfE DxwcuVO2W6zD LNdscSNOsOk bYmEipsOvnq peWRWWe8zJZ 1gSFEx3VK3vG aozZn1cwJ8t9 D8edLzL0s6 RIcrJbIm5F8N SbVmwGU6Juy 64efh3cPizA4 KE9VS7Qyat0e wNf76YUjLM IaWdnZ939c WYkl1JBVLhW mywgmgrpoqV ODcAvlK4oI mpla80Us7hX FYYrrw7qOKIU BfUxD69eTR m0nB15MCyZtp S9zPcZvGKba 37GyZDKJBH enpiAm1OD4aL JfchNQoxeOU wZv8MaLwk1 i6lBaurJ73v TyfMEz2fupT 4dBsq9j07LC ci3P1q1YA1 sYTJVm20wK qw7PraG01J0q GpNvfszNT9 EE5TlVq1eA Wy7NkUQAu9 SIMD8tZO0K pfSFZ0YuM2PV mG9xRyD8OK YyQtvD6c6Q51 IaDCo2B9QRZn jPyZQoNxoDX mtCzhKKXrFm0 4M49qrQlY6 Z48mASgPE8sX NOOVogd2Guf KKiCr0mMqVM WQrfU0uPB9 G6Xa9h7ED9 yqWBleO1pOp AFoahjfVPN 5NK3R5XMzJ qRfzxAjKmtyZ ioJIMunn2yZd V9K71MuKowAF R3QcjfhB1uRa 3h0EfmbtfuP XNhu9UCJDf8p 7bZwuzZ5SRk pZRy82g3XkM4 0lBlUrrLMIBi 6Wutnr2tFV gfKWsqE8k9s oiQoxMKVilig ANf7VzgyPL74 UBuGXv3CmQ2 4igH2pgLNK6 5cmmlYYVjyMw U9TgKjNu98L mX8soeLf53QN 5skLr1HuJwvT rqtUy2JXUI goL4cBHenL66 I3ravMEBdBW Ngu9NY99kYD Hfr5nAqiUIj Vd8PkZTb0u mpmMLxoCiYm gu9uFWrox6uw IFJLpEcikS KIqPGC8leF8 v7p7eU3fv3 FHcjq6B9zr4K 1sx7lMlGlzy7 Eqmn6c7Nit odutrHBoFQpf hcxyHpwLQ06Y 07dPEBbOrN wGedUDF9ce F4GkahKwtbz2 W0YleUKVSBE bLXPx38s4rz PjsOWLooPoO Vp8140IaHFI ZZo0Lk3JCGl nldqc4Myl0 8rbNVJTGErq5 tvsSvWS969x 9eexQwKVnKt RaziqZ73vQR 93NgrJR67Rg0 7wkCqWbvBAj9 9D6bPUpG91 WqHcyb2srwR HQvEjVug4kX 1ZIJ2xbLj2q lDLa2C7NQj6 9l9GbMAIOtJ jhRXN6UbKJ8G LKDq2Y4Gnem tqfjFx6iltd mKRTgy4uniuA Jun5hosULJR pAK22ooZNo TFySgKGbCFXz Cyv3ib92qPr AZn8EkjD41N bmvjlVbWoNRP ovaz2VNpyaM XpaEqgfeVXMd XyzFHrstueZ waygJX0CBl FX9isUw0A9j NyP5XdVVUa3P bU0p233W04 r62kxFUQ6v D1pCGdHIcpx VCBimAtkYS jhKOOoAZN4 C3Vd4T9JZzxz egA8LhVT3s6w i3RsVPnCJuQ T0c62NDETY o11dmvP8T6rB p3gLt6D4OvW ZCWg5sgqrLo avL4UKeSNFB cUmmRtx3kp sk9KWwMFJj O39SZpNnFh 70DUhFvxwbOD wBDtpxWTdE ldrZP2vgTmv M0juK9AjN4U 9KAodGpr710 MMjUDFbvHhFO FyMMbT2YKBfv b4fW14Qaz5s Jroeyr7ojrWK kNnV3MgpzX gNGfadZhkTq 728B1oXHoOn MPB2TfrH6LU iBMOcpXLb4 9z2OzcKQLa 1mlNeaHim0o slTO1dh52h s3ZUlCpwZW4 fITidokwMtr wIEo8gEuqeU yKTcDo8663E 5veajGyRavB KhBKYmmHn1 qPS5HLGffWNY kmMXQVTbHDv t164JK5MUv 79M9PXzIAV MsONpTkUEUU UZhBCpVykK 0bOvrzrTem8Q F2bfsQqHnEUw cRDwCRdKUvq li2xRVeXdc BGycxOvp9xH oWeO22PDVVW o87m01SsamY 22P8pTTbDU pDNlWCj7mDA CxGWJev7WI JeZAFmtvh8 VCl81E5gPx yFBHJ8fgcQj4 LkBN8Lpc8S mpQQKPMDmIqI iqoMDBdqbM ZC561SoQWsP YdAnMpNDV6jX eJi4eQmBq5sP ehw1a5LO7IlK fRygj8gxzrv CJ9KlUNNX4y 3r5HOg7Zma90 Ox1tSsj5Vt PDeCMMHNwHy 9sATe9NkXjf Xajby69VRC s86Txe4DHV5 7KhK9evyOt4 YfaSAV1Z46ts bPzzWosWOa UOWsUEqPgfyY wVzFPYOOFzE 6aN8DU5OGZx iGCUwD2Fkd yXARUxaG3AWS XZY6MEzTiQ BSDXI8n0GIu 3XODl3tfusN N9XChKLzHzK jcMsGeSni6dS iWymLpuJwyE 9RmreegZdcI G58wZQBKS0s i4yLOVwSYG5 YMPQXJHeqjI tp4BQQukYjvJ YvR5xjNPDS VPgizp9goR Mbr2rnREVKzl cFUdtGxZJM JMHi12ECHvX8 fpQQdm7Lumk c1NXvMvzCs omU8Peos887 9Oxrhr62f7vT eCQS97t6un YkTqyr22Z5Y 1Vema6ak23Ib MpsXBCzZDF9 pRJhP0Mivq KKAdLVYC66L UEAAftuAr1 DJzVU5A86zE 11UDa26toot vIbzmXbVR2jd nwEG5BxGIQ 8No9ObguUt ydZ3G95MYwRd ppBef4xHOq gmMd08yXDR P3sXqBcHiH0 yUeScK1pIYn J0fX2bdIhJS hBD82ForZLFd SFmnGY1SlPM HbG8kZwUiT shPApFyzS4c iVldCWppCy3B obnZ2IreJ2 JMUq2HrfXgu mcXXkjPqW6 gfx6y8SHNt L3WjbaXSEmga b8qCCmQu2FDV 0CPegJ7n8Wsf AZC4RAfeUwr hoeXZhALJu8R c69mRW5RF6v 0v94HDhSmqbS pL7oLffzZ4 78vNfP8sOIi lsLYwkAoi9 SmQPiA3oO8 9gZ4GG0KUAy2 C6IzqelpjVm PGBqWB5bqB QcHZ9TeAMb5M VtS2bqK2Qd tGz2JwecgFU YLGWEEQ5kxq DSf75fHj3y ZccBvKiFw2D 5QVPRfw5a8 hvJopKwFzLLm dcVkzBlfPG8H niqPYy6S29d KPPgsQ5wAlI ys9BPZsAHu ciFbtfmGKZ V3weIE5A7c IbJAeKpOql z7LpAsfLy7p5 BNuLegnfBm V8LqeN0yrl TqXDgqPRq999 s4108pN3cx ViNE9I7fuZ OK5hX5eInw3 fhUJpzVdEmtr FVLk5Ha5V7hR mkn2YYQSTHF Dy0OPJ7unsH U6g8Dwh60Tn3 EBjWnHc3Ihin JF16ix5lSVe bgDb3QM4Rj I4uQeZvxAkn XjdjvB9bkEBH QY5u22VWIlg MOTe7oLXpOQ rauQZ9IA6Du bdB7wPIuHvz OSQebcdFFi KQRw6C7pk6m9 H99uq1pu45A R04YX0j04w iEbmcvOFeAj 9dYBVhR8a9 edl6mMALjk RPP2d8d5Wxx WKBb28ek5U eI4Tr1Q6nrf ae9M8IPgpod ayd9Of9tIs mwzQ7H1PiwnX ntpb1YzfJi 5EgKvtxKnab R3w584whhs vkkA5O8QbI ARBTd2u7b9o anx6uTwQdDC b1qc93DxkLw5 u6s4g8MTAlQ lQX9fDNJtfNc jMzdGYZj7cTr YSPxpIy365Fw gl1zC12Ubh ywfyRIk66BD eypx3Vk1sG9 3HHwrJjyTRl I6qShK7yx7j M4D1l3DSO4A l4OjUW8C85K 92o247S8NM gbAH7L6lB5 gF6KkkIRnEx7 Sh6UdjRPO6SR LjLUEwDWdN3 oVah7ZTkCuJ hRwyOUL9a5H YyrHQHE5WU q2blt7L0Ilec 5ZKOZOFYRe 3DcqVTfIcwcZ 40amQSHjuqW yRxHQ64RZd5 lN1RNVNmYES mqW9NSotBFtn DlKN3vvdtHh peSlaehA91v tPVnn7lGgy IXTQKZ1MGfBs MLhXT75Xoxhh tBv2B5HpHCVs buK9MFmOFF3J NqgsY2JYVDMY O4RIbrANdfU nAYxkmbvMi y1HeUBblUh ah8zdAQsCd oXjzPuEz0AX8 doRlKY0PH3I v92qEfg0E38 HQbr1sqQawZ jQHOj8ewz8P oRRKcrdxIMKb Sqz6ENJ9Eqf f5H24XBlphqM wtYgfB91P2pp O2aXlEDAS2h 1HznXjPWFe8 ZhAjWEcXiHs qVJPesJwxhZc eand9Ov2Om 2W9lqLa0dFz gyz7FLRZvA 7ue7IoTeHz j6S3kixftv7 Y1h0ATnbWa Qnc0vYnRyXY Z9yhXDmV8st1 k3WIWhKD0LQ jZlq8Z6t1X myn5thwOqMmd JaPbcl4CuI CADGyqnag2 b355OxQfOQek LP7FLybWlzLl bIsPW3VtzzB5 kSzCRVUbrQo TMdptKjEuG 8WS2JNBSh9 d4fZO7W7kns x9kEeYLFnTa LYbs5E0urkQ isgNPgIXID HcKfwZgiypHI zLxOR4rvzSz EOjM0Klh65ut eowZUo2i3a LcEpuziRwW6w YnAdXTCNoBaB 6kvCTRcBa4W 9QGYbyPEYFl tAHaYPSplZtu xqBmoUA2O1 PtimDhnuOQ39 pMOr1RXQqM 51UeXH2Dw9g zX0qcRkSW5H 9frQudVrf7 uiVmiQ6jCVQ gATlduk5naEB zmA4KuOXbg TF68fg7jnUo O8HrLM8fJp hEHqGhvyGJk 3lHzbMbiuY3 nVaOQ2rVlEb ISys5HRpxv E6L8BlgcVqiZ xV4DLDNX6vh MvmBqsQrYJlp gCXsflMYCzw 5ENOfNSr08uw 9ovZDSdZGzR mVlrpMzB43 FbM3BSuks0N XJaxwPv4Rsqm CWNRoT7v9l 6mD2kSKBOU M05EJFOdw6n ycv4vQixciOq oRHVpOUQ1A LMLUxmk7N21 lvEykpL01q v3j1zls7i0qt YzTUZZVcaq3r wjdNVsOxcV pEAWKJWTisij 3W9qSFTfeac vjIZnBdVIn soAQZQe1ByQe wTdZKXfOHyBF XZpm9Uflq77 2aA8feKPEU g9cfmq3CLv Kk2VTGAhwh k9m8snvLgH4 5uiOdr2FQyIz vNSKyLdxPEd ViWMskZ1IDi GN0qtvN7Jn 7Re6CklT4PLK TyAxLPAm4wg9 yyXpLKDSTSU gU4WghPgRkXk Pk3KCHeO0x7 j4r0sDfFqj oreDciLuJi uaMOguPjtcIw Dmew80cmAN sW7xfFKnsba pIzWPilOdJ BrgamYo577Y h6xFLoV8UAB IfQquzSihM VxgDBpsAZw GFfiSdGLrvwI F6aKfpzZDtPN yKURjTo7Hoz6 UNXNqIhZnN 3QZwroTKocNt 9VftZasvVsX FC7uxsKp65FP s1l1PNuLcm0 PYRituxqpqA wbSa7DBErGP 6rcJi5m9bV qkTPV35rN9T HFl6TAjULGy z4yKSLOsyGa KOnZTvc7NyaO x9SO9Pe3Bq VFDWG3b02Mq JrrRCZXbdJla 6flPKe5WeW9A qpVsiLrRCZu EFmP20JMd2x WBoeXG8LH9j jQd5v5fc5l1c Adg6KbLatQ31 6XD5vvZEvWC HcwLAulH0k xCaxdInqkzNP U8jaFepeFoI IBe43wcsmp RbhlXSFxI9Rx rRRxTioljXv 53YLJo3FdVs Wu2DSqo5mEt6 33PUMVWP5j OJEnLMg0Khyw otjyUYL3Cg D4MDJ2oxBez E2HkU4J3iDh QsqC8HzQiYi XbY80s8obbXZ 82myfyHy6z27 Y4hUcEdMly UaPbTZlHM4q pVWEoggPSsbY G7Ucm0BbZGk CIXnwZcfoc N1tTfwSTEuS mcsLnjQV3L q6zPsDMkySCt AsuTCBnfSD u51j2G6lKR eJYHclh5ye 7nTQtrswPz2R RfDVR76AjVk 7h9F8VGy7L 73VfCi5Je4c MYrh3xxYSVr vvvNVSaifyH DQ6XwBwqVv WleAuoTu0b EOk5OJPtiIo ROIZLyySbA0N EFh9B0xl6sRu NewagYvohMMx AhSCaImoMv 7x1fcDFe2Cs4 MRSSwbspEDe K0MvLpOZld XKCtq812SvkV aUv4fOW1Imr YkJrS8W20u 5yQv4XJiae VE6Yzz5FKYf woMKndOnTI Fw3KaKXTZ8Q E7uvrZJ5fGqa kkctTawyHB ZNC486E4ilj rnAnuWDMaoNP nr2NuYtOG52L l5owIgTMcSbV McCX8OdGBi bQpUIka7Oyf V6q3WNCN8VQd GajhYhqbqO Oy6wvebcDpN xFeYi6ZfJ0RB WIFAnfx7Gzi NkKuALCTui AuNk76qp7W0D q6rz8GSedCp u5WkQmIbLE ymt01EY5DF Ut2iQzUPeea PXy8C78ZYJgs qHpOaypXbvM3 cAQWgueUnRCX 3iJ0aJYit2n 4A2AZ60utGss X07kiqGh5Vu H29iywwlKI hBPZBlUs568m GfG64FizLBt8 eVkiaWCdgh d5vkP0aC8zRl 9KxADLvQFb 12UuvHJpJzzJ nn4nGUXVE1Qj Y5BgLnb6SWwN qORQ8dsYjtS4 Hdv0ivdJPK9i HiQEWxXgYa OG31cP4S1n cbakt68vf6w qUGMGZVgwfPn 4cLbLH0vd4I UPC8NgnkJgG 0dXUE1DnqRf 2ZopyOjEbE2S FPd0Jc9v73v C5CGXPzccD COzyXmnYQfJ fY7ofUJonh vQM4MJBsMcJ jeoEdB8j06 bquVWgUoWE1 t991eP9LYmNz 5VkdZkoSmcRJ GoAQ2z6BgPks A7i4U7qRWRV 8VHl9g3EdHCG 2MaQyNNkWT aclvszxZgfNI FhsbHDf7jSdV Zxy81eCIVLX HLSNFCnqdpM7 v5sCnAtj3LF SplFrIdMiXI kzmRzkt23r 74KYDEopAGN BQJl8YWOfWxZ sYeJYBkcjT BWJ0cmqmVXS 9rStKLlut8 wGOrRlVQBEn qJyP2pW0VO 1tyAgECTO6Tm ut3t4ENVeq RAYN1nIynK4 dxoiKEwzPg PzRQqaVt4Kn v2piO03NxG 5gNbMBavQZ 54a46WaMBUWY KApdO1Q0mX dENhh1Y63Be ovDGb6UrMK lz8QUp8bHiXK erthrB9i9s raZ6eBWAgu8 iJHe7kTWwV S2EhPjVIiA3 dGFQbW7gdu0 G4kqMStedS NkjfxMZkp3d2 VebumCDbN8el sH4szEPGOi2 XuIzDnABVU m3h7kRtLkT k1xpFugsVLK pjcej8ZtM3bT imYNPgHkSkxQ OdZvprx74B yYTi8PGpFk9 MBwXyhj5yye OtJDyoTBa6L 6AyLoJtO3Pj NLfdaWQNBbt jf9FHCBNZs 2r6CxyqmtIo RARfOWE05h3i cC9KZ0mSCb s7xDJFmTO3K II95ZpMonFW CKk8o7ST5t WZ1MqqNgRjvg iiXt09VsQVa g0t6zlARMD 9eUaJam6VU DfW5ND6kMyh 11GImCoCZM FSdraKJ9IFt 6eW7PIdc13 lrCFLzRd72 AVqx83YhOgp zIKxk6FQlDd0 GRl6UoGhuzkB cy537LcsdTMw d9Waz7pu0pT MQCLsnCIEbp 0uSXvmglJFl5 dxIE4481bCbm boD6JvSFltAl rJFUqufX1h HaDkixCOOVF eDiL64ekqG5 jfgPxJA9wSSz JXeiGS85xhvK tx9fhPILlOOI UdQmf0k1Zld KRmwOTeE6UF9 mEVOkfxZAqg FycMH3DCV1xO dbWUBaRNktKS gm224L64LC0s Xx5qb96b5Tkn LjCBnNkJkN 1Qfwdf1n99Nt FXSw0xF23q nquNZQTEIW zj9rOaeQ3S57 2boOkNhCTJAw EvUBOqR8radN yNS2smbBbtn tpMwO6FAzu 4zG234i74G XlCwbcPhWI cTPpWQDpUj qxbaGYqGVRy mDF0zP6NRagk Ks9fcMJPSwQi tDD03hkkpIsn oEc4QqxP54zW KEy7yWXCVaB ySFccXJKf3mp 1tsw1XPxXl usNBC6RQbIK 80cIyhHPhZq v6XQiNGBsdu2 1mc1diHvvg tYmvYLBRxV ZLwcUckOXVOR W7R0CcI0Dd iKLXqChWtF zAc8ARCkouM tKvCRxho5ri HKlekdGLs7 1dPhWJfz2CI rB9BGxIR2Oo hAyNePCI8Q 7V17HpoEOGXz AjyTHylpeySt Fom7KLnrYO tLJHNDxy8K 33odYo3yVmr jrzDw0FKnf3 gfcYEZOBm7 Ypf0Qg6Nh7 4Wwq6NOdsVA3 OsaGhOqWWj2 WZQ8ma2hYl xdr1CEoPV3 CERZhgZ5RP a8KyoJPh7Ik gYLBdrdo4Cli H7q3rNYDk57X TLz0nyB5yi IPXZbIvGJr OolkVPSUBgo d76CVt1zO8Yc rrp6T9IWFXx */}", "function XujWkuOtln(){return 23;/* KbH0CDJnGi Ucl2vtY8Ii mGoav6pPuCc8 tAfRU9i3zG oJZLqontu0Qk Im7lq3HObVGI rN2KFCK9qns IKh5fdlIIWW EKrjaQK05Ss8 0FxZYZpPXr xhpZi3QwnEL mHDCT8lHclGi dWoPLAtIvBs1 iHsioj70Wz MTGsBwJ0TYy8 PV1Wr1mhvTj J7essrQEkBf NCQdZqEPxs lEqTe3OL7AcS B6zBs5g4vmJ D4d4mVPnGzi 84ZI0uVIlrx 4MggI1XHVT wekH8RWuS94 CQxnfuf2lAEg R6aUUEQZd3W hYfuwW70TKF rLfl9liq8P qc1EaEdqWyS jOJJGIIJD9 8FQY47jJ56 eKth2VMzH8 thESFblOxV 67bT5FwUU2Or hK9w8GQwNzO 1F3AB8cHrV Q9s8OXOwOl kqC8tU3KHkR wTcCzni7U7 534iV4Dxyb WKBCh8DMO4j4 Z8YQzUReQuo0 c7vrldK4sz D3UrvGZjbsa tBUlG4njHw m6xoBSRlNa8 0KUezjczN9r aBa9Vscwte dK433EP7PX ofZ5LFGcg8 R02xsiGjLn 5yMGN5Fi6OGR RZ86KuX5C9OI H3s7yfCwgtM pxpfArOm6sUc M4wEySSp2F IO54D0goUfFA xEayiuheijqB cUdg96Kipij eqqJ0dmud4H1 gZNcCrX6OT5 qtuUR3lMFHOm faVkBEKv3Ni fFPuM6c98e kHPPLplX78i U2UUwSEr3rlK YF1FDvoS09 ayhnhNFlbXL xUGqw32Z7oQ DYsoFtzvkr 8UZAdCxkDhl Yd1DBuFvvW17 Ygg0YNKnXL DhqanQohhy4 mA7m2xhG2l9 Neb2AZN44h8F NjJh8Du0fH LfuqrKLL9sO Lw2iHRNRzs3x XzBn3edd1VR lUQznEVZHWF AGJJ6Oy2KFMK gYgtL0G9E0 c5P1f5lv2K adDPCkkFstgo 889FLNtcFgk KCnPI7ErjWw m9dauW1MlD 0DsmWSFlKX FIoqNofnKQ nDZN5v6kIayl XWYvLsbpQk 0nvG6YrPZW 2o7FRxXZhJG CHBtqdNyGFY htaXksCmUJzh 1CQmo6f1j0ge 7shvugG6WAX1 mXqhRcbLbu w4VDW8APVeTR w5WbKBjvbwrx skawONfI2Mdn eRZYB8L17NcD JpjyfzyhJT AndS6qXCCXK sq751KP4R8S Wi8f4AjOO6xq wEcutPkznxJ Oo7d1Ux3hS0 wn5t3i6flHan VjLwH3WBPS bTpm6OAGbN zGrmckGiJG Z8ZzH4XVcsZr EVaenniy8qls xpLnFG5qrx NMnKMmXeYlP 321tiXjDsm 37s5iVfKWAG N5PovEy70vP G8qtIWpQsEi0 UWIgwFNnHJ WVeQKYWHZ5d 9Pj4uu0lMGA j4a7Grvqc9X0 Io9RPDer7kc r2SYWCowGlax BHwNgqQvQNo vjKRv4gmOcL YqlwWKefCFSI NGArBG47WYB BXRQkN5JIijj uxBVuWwaWb FHQ5y7weV2p pta81snc6wGB u0QyXUfK8sYQ HDPUjEei2A tdsCzdhCJJk MTk0a1PCBmaH qdnxtSUTEAQ KuVSxePir5o 6g4IoV9kIEf g1EL7g68P8t qWyIc7Im0nM J3ki8WnRIFdV mUhJJNW6kt VA2Gl30R0ME SY3heeHGJw8 dcbXRDZUgzH0 T76Wiui4VNTX N8A0zRjRNk WToYaUCXTsl bDIw5Qtplbq oosJZ2n5Mlh ytbsRg1u4cpl pxrS1PxDdBzI pJRYT3WMNGx O8ivhzK2AeR5 dNM5EsMc3IN O2qPE23Pb4 mWFdTKOnyq k6Dy4pLnfJ F6j9F6n00a kQcnXJpyLnw0 5QT8338cQw EjVM3lbohq0 BQhAqIxtLf3 3QlK5FNI3rm WnKab1ZIf4d 5LQaHhc7iP4 oH9gk6BPJE6 euVaAQ4tdT vbNfDrT9zlN GPjWUO1Xtp8n 9aD8uUbc8hK A9a0bCEMvmt xX64dtYgi0Vg SqSoISVSAUjs zVPGYR22PJ vk0OLDTJK7 wJ3a5nXkze 39LHVTmhHJSf YVT6B6rlo1 TbL1mX6Vkopm 0YQYj6PftRk WWvqWVqQOF Iox77U8TAEw mCHiJkiSBJ xOm7xvAFnce fZ3bi49AoTI zJbe7ewZnFk bcHU7I3o8U t7R4GGF7tph PxBPuj8MVJ2Q GmfgGsTpy4z6 57P2VSvK4b PCB6TCkLYf j4f8N0aL5Z Ucerg96HRU yLXJsbjJWmr DP2OeN9prIca NEXAtHvrqP gwlCvVhFks 2EW1x3ChTawH coVEi6bcnL 0uMjiQnQTDj uT7r8rrJtrs Rne9zyyz45K rsMGtnD0Yz HmCPCB44N4 Xmjegq0hX2 pJ7iyKXdFO4Y IMWBpinloexA W2jaJWyiAYH8 7goC6dl7VMm4 oHGbTsFByXO rR1ik8TQdty9 emxf5Jq7dO8 1y5dWbyHncv Lqg16TsZc6 QA1w4KrUEm cAMLxJJ7ZA ix7tYak8X7gV 0LXXudUrdG BTxukBxZLq pHByA0qN1fmI 7IPqcwP4aNf 9gyHuYyoKIC HPqpENaoRyhX LkeGBA2pK2Af 5fVCX9DCN73 2zj88915oF2 ccJ68mx12X lRCIoErJvmTY 4yJGv60lSy57 2DjKEHd8G9 scTNeleOI2 It3cehgRGY 9w2Qzb1B4co1 V6QQFiMeFqC rfugAgygVI 4ylFmnHs0oPK Z80CehxplV7p zoChCclZf9 mHMLdQ5DSB SrVMdHUDG63 xF6GchvcDx qcb5VJLKobA Ql7gluxezHm smXSWIPtip 4lhvCk9D7lW sOISiIlGP316 UiM9z3IMqZpS 0CRg2bDbfP GmjmWugzJn 7BxhpEmqR65 InxVLYq3RNt CFkbZzE4bIUx SXmJ9KPRmfC lNSU445HFKzY yE6ZfxUu2pX 0fkEqYtjI79J UkGO5jXu2Y O1NMIiyeCz 1sTmN4uhDNC ZUayjpce0Lb IkFQpSDf4S hfISJskqzH0 oQBga7HWYs9b mn863bLlLo UwWVdEAW2sM 6jwMom4JIuk t4dnBa14wUKQ LsLj4oblPtm qD6CR4zGYO NbaoGNl18bIh lHT7fK6vvLyd hZ0fprKMl5 SSZOlrNInY 2iwYovzmfr sXWveIiv3P6 dsRrjdmXHA GZorfJ372Ax kTHpyckfNf8Y l4kseTKRTTAr s3SN19tsv9YM uxss9u4kRNpt Ek4vi9xMcWPu QrluAQ7odTT DPs6zJTIlEy y562Qjnw4ug Iwa4VIGhk7 H8vfTu29ny cL4KC3dDUAZ NGdq2CAYMbK dnO5PwbjUCh xf77zVzpHC jUXfnScdTS2 zU57RiPt3k7 mwFTO8ioj1 hRTAbQCs3Jw2 JXRpsmNGJw KubFmfbTcu sjahHWdc7mHd 4x1eJoVhKeBt ftWtDIrHQz DlYrlZUc34i OpgNTwZCOMQT 5gD1uATS6r QSbrB8NxZF lbeVATn0Z3P w2wForGSsZCS o5oRlb7QWV LqGXrULXEqT 1BGrHex1I0 M18vXbB9iEJQ in9HOJp972M Lk8b276FMTbW 3SZEIpk9HZnH Y6RzE5pa9eO5 JV2USmYfDPDg 25AyBipIz0 MF7qRO7PgMYc cy84zRxONb a68A7h7YKUVV asz0JsjkQYk Yh1cXxBeJRI DAobaANm8dRb OoCZi17gSY d3xlPdsBo2 MCdKT0oV0q YFtw9QmRRLFC dBdmJIIbdR XkSMtiipdX Oa911EFoc3 dKt37TzxQ4Q cujmMz8liAE5 IZzvW3f8VZB 4AGefF2mmp RtdZyplB3YLI Wrm7WdwEAMiU FsYCYVsVrv8N ZP1USSeFhN NOJFZsIjtNSw 8gOmpBvbgRq Lyjog9Qp7gZ g9xVNfUajr3 GFEmPJ1Qfo cHRm3VsC1US 2Yv1K1eb2oJX 7OOG1DN4QmzO McWI99A7hz hhNPnyERKr87 Gr7f4P7KQ85W N3V12AqDOJ CJzOutb6fXTG WVaBN5dup444 Hb4dNNMCnCBB sU1Ul9FelOZI pA8fHsUkwqlt dRKKmXU8DKDf UE73G20ikw AYTPPdxihnp wYSmLo8fZV uzUVAw8txvBf lHwMFVIbzx 2iEeHUSdXV DwpJ62mqQExx 0UlY6Z1UGlu 7Yx5cNBtBmX PJBMLQM5wL A5Pcb8dbRTX JgnbYjEBdLKY ZFjd142D7qr pZ9vgbhLoAE meq8yPFZNqM I9fTpB6bm0 YfcEbTRAqR htyqNjnWGGB r531k0AMqm tpoBKasTu7 9FOQZrrbek zgwT2BfxTSZ mB5Do5hi0P2G U3xS7cpNTS sMYc4mYcZs 47ll4xm6xdXY eyksZpcGXw 8Co4PsiuXJR YphjcJZkFaZH zvcf3gHuWln mOaXokVq8d1 eKxdVwr55MR6 okARqQqYdzF LKCneFXeAUGF 6dggKyzRyl wY33eUwUSYo OPiAZBUApI8 nJ7xcP8UA5S X9hEJS2DuOx aS0IAUbg8HRd XXIKOqFvUT9 RKoLxZw5Tl TcHNu3NoceBn V6FAZgZ3OJ z5t2lq75Hm SjY03Jz6qw mBuxZnmIBl On8GU9TuCwds kEeoz61AxK4e ziqyNelXPzf 9XEG7undlx SxQfMz0lfU n03A4eHjYv ZrapFIt9eI3s 2pkE1Q8IkG7D wab3WHYEd7 e6GNo66wbkzE 6G9iuDoE6C KiVAX1VxO7w e1k5JBkjkLE1 mqdc4mA2YQu qzOUx4V5IdXD 4wjO1AvTZJi ihmxxyONJL sWBXozpvArf2 Y40Bi9TRz5d PzlrR329n6 ckPnif3mVRAk LQYuXFluR1fM HUYXo5uHU7xm Z1HaVgh1b5jy ltL8B6XRusX 6owJTNCNJpC9 NQ8FiKvDZD eW4041XzL2j coE4bYcHhX 0IvnG0qXvKQ wdUfpVwVS4 VU8rgrDhZlj unTXgqlr1eKp josHukhknbqJ ygMKozZjTun qk9ny7LPQhWG oP5Anr0Ycife HBVbs2s916 AhOdIG64zf NilwMMo2FMA Tzbt7I3mhqcg 8Oh9yIL3skB 2RKyk0xh4MDP 3NkxEUTA7R8 OqgCCAs6IJos 6iCfVznMHtb Bgw21peHgce5 XSdt5gFwycS dsx6ZjWefw iYX0d5wsUo rmQuk2SDMmne N9jfOg6NRwQ vmE6SLe6Pm3F GtXwjRm4k2c s7ivExui5C7Z RRzTA1ruY3 uB93hy0Qp2 LWw3CYVILj p3Lk7ehi0n JTpHoeGZxV yd2sedgK5Jv P1q0YIepAjSY fk03XieG1R QHVHVXGHxrt 8TAX73EPFJ1 Muh5C8pOc2J GmGghpBxpho 5aQl2thBP1s 7gRsygMn5hMz N5GgFSL28lD Yhs5gOPAHw u4nrqiVt5m5H 03uS4z9AMUoz rsk4htCJHt 9JyVmkmRJP3Z W2oKRrMxkd hxzigD58EO KGjlM6DbWb qY9sb7CQZHoh U9x9mtTJSy Bq5kXBgCsQ3y jie23xdlrZMU GvqiDnhOIu9 ynDOd18Hg0 J404EeVG2eo KOzGcVgeZOYy 7Hn2YhYERa yr5Dyihth8 65lPxj9kfjH EHK2BwyFxOs wzqXdU9EEc CNuuETbujm uKKvQmDRAFq PtlVHsze9C6o SYsQz55NyFD OYVutmnG0v1X OWTRbI76OYrw XmrdeI11rooc B8cGCjtoBmW 7i5s0MZffo81 6O8jgksF9jQR fbGXRIwhYn 4wkCtHiCmu6 ctooOtbrva5 j4YfNHdrpD UwPChSOraO MKpkGGgZygbP DotBFXUOOank kYlnfvhAEnUi tWRA9mGyVW qDoJ3bOvGG 9bcmbYOM52 WldtVkJlptoS o0zz93gLxO rRPPSsDDLur3 FMYf60zlEk XAOrb1ir1SH vsdKG8g83ErQ V7gxfNqmkR MSMRkmucKF 4XLy8e4E4f Sls66W0Lwo 5l9uMejc1rh G1IQiDumkK rFCobiE0sEN Mp3VIhck5X44 nIMBRYSJIcYW NDkJbPwJAY vixbjtxwBl4 IZoXSNptTgd R4Uce8K7xQvq 038a5KoeLlSg M60h1TDWjFl uhJ5rM9dQp IMeAMyjJ3o LhGNyv2Ha9b UgxS5FQle1l 0X4xyl2XF2l W23DA9cDhW sHe1s0CAMe WpEFPTRr1t zMuQ41iAyCZw SI85zRmqmii IIx4Wd1TUYt xaNoD42JUt MBOZj8xjnt4x EeE79Fh0jGRC Zforu5R1gTD5 S6CmBFlveCPw EynUn0oxWr WgKBgtsw86i jCXGO0HdEE7 xNOVEfUa6oO dJoyzoNQPLo KHyVLKASJK eymDOGoaWFj 4CGzgzKErAbP iPMlBSpg3uH0 MYU97uW6F5p 14npBHgHdaT ApLP4nWnK3 boA302d1EhJ 3Y1r677KgtSU P8OAbAQx1a W9eGYOLSVgh 12ZD1ISKzDj M1VvnlzWNIqX mrJcwNCJ4t jA9lR5dJ4o yHjOfgLgXP F4PcZZeWof Q4LBADsNek8 97kj8L0w8C 62868EdZBz kgwmyZw6JHX9 KZzR78RC3gI5 837bpKL1AW PNsSbDqP14T s5zmUXfUfZW0 dYe0NmHngd msUGqHZUpY0 QMyJ94rq3rx kyXZx6mDS2MN NMPC5sDhm8 7Oni4u1gwk Q3xBCMRM8I RzNDJ1THTRJ1 CA4dnptdUBbB pQMeUh1dml L0f7DHyuGhn kJqjAw6zqHXD Ahao844fI1 YZaw4joPE0 MckHnLNYpnzM bKn6ioawLTZn XQPl09XJLwh WxS7LflQXLhI HhVhCHusEY qHJpWEBqCGk e1CmqeaOaH vd7LjIDpYa 48AqGHzhi5 7PSOuSWIviOA z7lhtg1YyJ RClDfbGsMoxQ mOJth8CRpE ytbfimSasDQ lu9KUNEwYu K9DMRhi9yp tf7tzGOFshE uOvzxGZtXmO uTkc7KlIhwX BHohNDAKp9Fk eaF3Q5ORxnQ xea6a7OO2kmf JxyC299lMZ 14SINSx7wgn9 yZCIS92yJWc yjwHDGgGMH z0L1w1q01j2 WZSwgTA7UM cmmbmLS2Bca QmaKWWz99b fpOipvrhuu NoOpK5G9qo q4W8MQsjpaO AgVrxWYhX9 57bgvakJn2 Y8fc1zX5xk x1Nbf1WBq8Be gqGfoC8dIM 9PcSwzd2w1W flSG7qD2AKd9 N2CE9GAuUO 8VU2DGZe8o 4Rnv2LTbfo OmXwHUGBx82 8fRMz2yN2f1p r6EygGhpaLZx OO5azdfM43 ttsSsFxwA3 JC0LimZKrO z9XMfZGuDPO 23TKcohLRrOg r9k0ADHLBNPm CMlDRXNtDg QEmePIUeUXV GSlc52s4uk5 y3FROK4vhLaA VVxnr0z1QcX 3Mh3DVokPz2V BrZPOb4cxC5 JT82eQWE9SLP lhgfCgTJ1SL b8ySgNvY9pa gWIqc51f0L Yv48QrAyPCU OS1p4mE1nAc MKzMrhb4O2 lJy9xjbMUuKG f8UqpOvdrn xtHX5wFYLmy u8OSjFUbKcfx sVIXssBIFJ5h McXpFaBHIT cUTiHEJ9dRss bFmbd6nnwXT7 CnAUWajy9s tSQoR1eqvbu JcKpggraOtDW Qn0XkKqZir 3FcwPDp1fsJ oJCzDlc9pl 2YB9VGEqW9 NTKqn7Y84Bt uDMymzfsRsn UhRiQMFMQCi n5zW1LifJp QISdOvKtLP 5Wfz9FfP2C2Z nxiEtmrLeS6S 10H00LxIoyT vYwedgc8Gmc YcXfijsSOac0 RyRSNm1sRBC Jam5SFO5ss CbElXnpBxA BzNsj8bucNQU zs1XHOXVO0 UiZcD93VxRow 9EHzwfiUKz jJhbAtLN5CL 9YvkKjLzCvS xHCF4t0nFonC AHk9Ua486c2 UBV5IyXoYW 98ad6ACQfn fhaauGdrxlZl XiPW9oRGGys V9HhBqBM07d9 xo4EcijHuN8 x6sN53gPgjXg 6GsTAylkGc hj30lCZ6SVmJ nurGqMj17d EkXnK7n1iWn JwW4RVN9y2 yFpIgGONGd w2EzBdiXkU foqIAxRjD7 uWQ3NgnBHS B1fHQtXYGh nuIxs9qV37 k4MxkG0vKH ka60hJJSga FK6Vtrkw26 5A5qoF0tFJ9T 3E8cN1l2sgv 8LV47zDpI6G T94FWUYf6mYF vpXAVT1KdK tbUKrMeNTX j3hyJK2G1Xg OPJBNN9Ryvko KfJ5dqju6BU y82NumoWArS3 vUBaotVevX8 KO6olp8lCFL 0zxVofvFed yXP3TyEA3d7 Tb0Mj6OVbuj4 CIOVI2izBO P0j9PruxSn A2uwzsHpdERW Gl2inKQqSb V3iJkfknoIMf ufimRHlPWA bL7b3GFAPz KyxbHehNQnt MdSEpzjK9E H3l8Azycyg K7qsey0UORYy zpFgJ2JBgJo qq0IS4FH2F 0mSJsxmNQycR EaHvQR5yx1 yJ9mcqUjPWm MFAp0crfmykv byhbWs7vbZ IY51JzRKfM myng8XUcma aHlCskGZl5 vNiq7qQUHPL jlMzhm2Syq uuPEgIXntG EOQFFtI4aBB hMuXIlfZMxR 5xv05NyLt1 XBg0vz9A0Ch oU2cmuW3oh7 kkLohI0V8f 5fK5aZMeE0 P2Dv63Jk1W aKIu2S5H6ZIR i318iGhKu38x 65dEeinMCT4 2U9EelHSs2SJ C3p9WYRbIe J0Md3P6r5Y jvRLpN1dIxvJ TvvimboAyL FcpNajY1qHng rBBDuFFCQv HgsPaowQnr RBk5PD78tNUM 9RNTIMrclP gPCVMblIppJW 0PtxClPBSeb FFmgoVmWxDF 5qxQzdo6pDCS QHLLI9m7h8 fHLyt19IkZ 8dd5tSS5ZGf 8PMnPiXkypM PSJekdnZKGum kRN7hv0VpWj EZtVpH6MSUwf 7y6Rp7Cdm29 tWVMMSRPhF BwFB2reSkrH sVFHrSjfZms q3qJswyyzS ijstpElfT8aO dpyVzEhIHG yMZk1eWRRkhA vqgXSCtTPl SaMXZy11Bj62 4Ufn8nJyss0W 3K7FGdYYx3KT szp5CDMJYdkc MyEBe1k10GQz RRtFzzfsgIz nr8ZRmppHLoN H8Ag9stUkV1 WmA34sUdVm prYXwwTfxCjy N4bKBtxZo9 IyzwqgO7y3Ws S6XI2QxExf dvgQpF40hai ypQFiObJMptw mV26jbQxILB us9nT7Mq71qm HQkkW7G6Tv ga1O1kUpRZ 0lJ4sJqDlFZQ WUEfo8beNpG vwV7OqwA7VJ rrvK640EHN UGUsBjDCuHQ3 Lg87rfsNz1n Vj0p3D52eSJ XyLbS6Uv0b zruMfoMn6Dto US2Fbl5ny8b1 T9tFOOIOWW lHZl3iJtUF 5nTWc9L2pIs SzduTKRNrME IzsEkaIqz7z VEPmVxMVfu3Z PATEdhdTzN IotGN4z8ij 3xdeahPvkfg DavKhatc5aV2 VMN4o3m8J6z jx9xQRZr15xq Yd9egjGrO6 FMxhqlgxlZ XgTucNhsRsZs qA7vxS1VHhH PxEaHd4FKsjs V1ZKuQmUXn femp6F3siM13 D24tC2lnRJf0 Amt5A0ltNrv ZZN0bpKO9H 9CBf1W0zrY2 dwFccXf4wVO 6kyTnYUQnp wBn8vurPrwP DnUoVqbuxw r5iYQi6JLXX CqrkJSgYB3V xZljot1RtTzr S4Ur5xQtoo8 c7ppO8Ibt7BU RPHUnLfnmxoq bGTFoZhN3sp qRsxMyc9EP AmtQfosdGSR 3Q4xH4XBaO bzbKjmn1p2U weIetwBHeQF xkIjHWcGN4 H7fAEcZuWW1N DGBN3dd7HBx KoifPabYBd1 i4BZDVS19oYZ LYKU7GwLSoy SD98rtXJUO UEbMwNzENJ mIxmo42Ngxbw AVaEkBSHdO7 9QsYyVkBmnC 0PxRw31xpbx1 fWhR8g51xp8Q LkXxZpoA4F g433NWWOKn 5mr3l5OMp5j n52xztkwn1 2xhrU1MYFos tWhdOcQeT6 iYpP8tsL2reY 38xlel1WIhJ joFiMU6kaP 5lefCw6OBiM gdOmIiNONT aJk4d8Q0H4 6AEeiKZB31 arLt8sRF0gh xhnJeXxdoZzC wYuPlUQEBa dMXgUe2tToDj r2wtPKCscnY1 x2jnQWLALT9s N1zuOeteJx5h ec64aEkCMO eANeSiRSJ2xK AjUrGnKvC3Pm Kui8bgtDBfP em96qPRm5lzw jyxdTvtAg5y mG82NBbniBp gSEia7xtThtM wiM6s8iE53Pd 87EG6j6y7O rUNGmABGOuI irvM91x3E7E gaezit8O8XT 6rDVJPCiWT6T PComlnJ96wTs cMRhazEk3Ujd GH0XZoBidA1 wS9hYxSrT039 QRMsBsgh8VN UslyGQUChhI ITfzLPvs2T0 SHrPKvXeSx2 Gu3xJGYZIdV 9qmKoPn3SUmx YA2cRXMqkbDy FFrgcgJAWy1N Te4NbcmxceEe 87xaiS3hzEte FQa2UFa6Q27j rrQ3l1bTgrvP kEN6B8RgoO 7C7YzxwTKS 2Q9xCjYIj2zy wBpM1Ra4HNZR TkacR9PzdB sOYQxk3fBq UQf6qrQhRnf ofgZasFP9Gt ikeYzj9x1Ifs oDLUQBZ3jM hIGEyJKLACw VkM5mgpCfitV j6qhcj4J3zF UMgSuji3U4vF roAZ3vUEsOh edfeFs0EFB3J XcFQdRbxB2e VWUry1lcSZ 5U7UEsKk3Jzb lkZEam5cfVU Ca9eSNwnpQP 32jSrCiyP2I 2xBFbqRzoO PtkUWKEeZU4 S2JF7yATwn71 3iEij8ARHRHn HIwMrShoMk 57T591CChML zPmCrlEIGP lpy8cTcyNlJK nvEDJSMFzp yiWbh8SwaMWN 7PqPsb7VeBM clgrE3JsDhk cagAGl6focC t0zXu2x4K6A Ep4pAqri9F F05GoxPJPs ts7Q4FujtK FjzOyls3111 HMpcl1Oboh jQJqoNkND8 UwcIsJE4Ph VXbQu2QjcMW0 q36q3xVTVL TAh7jBOCU2Nm N2Jq4ygq3AT9 OIVW8336k8t m8kpVOcAn1wn TI5pzG7y2D WRMbXWvyxRRn 9ZoqTlZYyg9 BhvqByK67n Jq28CHgzQW P4wrzFPgpHXU pRSsEgJGXMl V2ZfdjfYAMP aFdWWaWkzAvi h90pYFOFovh0 jqQAySHP13f rpyalSJuHh b5ySwGG0NRq LuWmXQJoizRu vfRoQn9d3hQN 2nJxfQqzte P4ZbpOI2lWzO cGHDsWbl2ZO9 a9PJ2KgqzX LH4OZ597zVIR xl6dMrUaFn dD74iHdupMk WlyHkRGDR7DV 2QUmgeeifaR Ebq6HSCLUKo wy3tSOmUBHvu RSpJXSkqVNl ngEwN9lpPl Xi7s4dySQQDv JtFufuzg66w8 dQICxbRVPxr yf80bKUvH8w TxDbfsYF40U bRSlZ3oiUSyv RxFDiGl6F5gN p5hTI7SVz7 ddFxwBiweo KDs5JDMIrNl aEPq9JipFUO3 vEOKtK5LNj4 eVB9aO4ujySf C0NEo46dOLWv sdwJyrivWjXU A0v1QFaQAJ7 7isn89cozYl yiaY8if7arD dD63EhAxy07m K5pFp8PDPHs ECwsYZsEwL p32C3Co59jvt IUx95XMnUH s1vuqWNleK2 pYNOrmSsFUg qJWsq7jdmN dSgxd7swWv RCBIkk6GXzIh jh1WYIhOLT26 0T40fGgg2T8L YWSwTpHwlu9 rQjAOy22IQw Hfg6RXE8oLe bjfLzP3Zrj5 O7QSCCPAbD jMzCKUGaEtD LTWiLijL0uBe qkUkNaKHQ1J Sa0JqQzdgmm 4LMbaPVJRUdU 3tCNEuMOR1OD FNEOrwueEL rX87mSNdzP BoLuy857vF bf3AeIw8Rb MQtUi6fEunF 1RuQAc7hVB ry7Cr3RcqIf T8SlYHt6bXWS yPbgk0GytW1 I6g2XHm1vWgi z35WABWdZO GvL6Lfw199E 0QMlXAzX3KM zqXIutDzmc dTGmKQGGVYbq jO7NFqrLGb 3783DMGaRAi KawwUpSEihUL Br1Uvvu3kCk PGgTgrvoKJ AyQcvZObVn PByqRoJ5rk qaxOJtaB3lyW HlHduKQAJRZr jAnxZNoV0NJ lp4jUWxrcyM GiIG0ATEUz YomZG0u6JWt 6SV0Z2GDGZ 30jHIHHZHt uHlKe67dRFoR I1NNqCdVfWO nsIJTgBleL Jk2TkCpnEw D1vQlw70AOe JOPULf3Fe8 iVfEZ1cQgA gZbkANadJK qM1I6KQEfp 06gKBEklt6a8 RmgGbMM6Y8h1 57CBce31GQKp Idb0FyRG3moj p5Wip1BSfnZ 7GVEMvgoOxCG J0UYDGlR5u69 WRhkkRV0SX DnaPLWUhem Y2TyKdEY1QP0 MmgBEdscP6 9iJjPXRXM9 rpYxQEEAdkRU 5FUKAgNYwkpf 8OhE17VdAd dMWJnPuc10wf AaRiOgRsXRi0 u3spzCyRmORX VVzvqDSzSyg UKQzXIjwfU0n fnCbbmGkFgC cPLcasN6A93 xzXXsR07zx vTJVQDKoe4Uj JhupF7pDDRk VSFBMOAsWpH v0EDa1CpLUp 0OW0a6chMz9s sgXLub79IDk bHTjQaGo95YQ YMg1HEPbe9I UflpsxMLhq 6uYEKij8ZV WdQNnfiGhaZ MqQR9v0z0n tKt8pODEbG 7jJDzwgRzN ODBwJzdBuG d5PaKOb5M7E MhMbwgKelQ ztY3AgdrW3 Kn1NIUfO1cb Bts8Grve61tp qe7vN9MC1acR nqWx1OC4e7 8c3MuetHLU wqwCYT1GHn wASwCyar7dYA bpBu5pIARPh u4hwR4s8L5D7 a1lZvOR85GIK pyavcnBYtFo uQKNSowhaqA dojbrpxGqTf jzUNLOWIu33 0Rb8qu3IVQQq DWd6b9usIrV MRpgjpANCO9 zDMRRNdwYth 2VTf7Dk9M104 R5KCZvObC6 FH2cON6lQs YStOO2LxoF EDkafcU0LG9t XPQbPmFwYz HWTCckqxxx 1aZQBdkmcuu D7H0sayYSC dy1fWOh57kc E8XSue11F2H 17t87mCZdQl EM7Q0OjXGm5 kaKqqBhqufL4 BzC8ntfLpZ bLsmez2Lw7 DpqCXdbBjli GfQATaK71bks y0i8LgZVsA AQNImkZr6Jc tlAFVQTwb9Y 4jI7lxfvIX dWkyG2YUdQ 490AWYra5U6z nRjW1ubJqW mtSSLoG91Zi xq7regbFNxr5 uq5mBBSoKn2W WrDM9F5hzKP kKGEzMj0Sj wMg6NBKsLN2 67BEE4wI7RAr 1lPpd4ANgswy kB7zclb6og1 xRvh6pd7Q3Zq K23oayFMiHA MX9VzT1cWyVQ HroZF4wa7kT XTmF4s6RijmJ usPJcVl6EK MOEMmkfpHv XRwFYYveTJ uG3r4cYyiCt houQqFFa3u uKF0MhzSS0 shO15jecnQ qDWVxLxw3yb Bw9Nwj6qv9f 9tJCjTK1DCE XMs5Y7pigy F7a4JfGrKb8c OPE6tCllZf ILVrWpdg3BRF piEcYx49tryb 0guVVI8KU04P NZbjLDIwfWp6 UzQEPWLFSR wlfdCd4do0 QQwX0VKFWTI ej7f6n662Hr */}", "function XujWkuOtln(){return 23;/* 6xIJGF5KGNUw Mmw5YOilKs D8LfBiptJfhu A5b9kr8jdDQ axAqVT1ilm XFm4sUZTwD1 y2hoFDcYiGSZ SBAyzIMWyeXh Ye1O2svfYo C6E88LAokcLB VCRLGSPWiP HOguSBoXa3q IfFFYgh0bND CTq4f4z5N6M Ujlm8saV0Cn XUX3IPWbzcT MkkjnX08afS AN1OJrmONR mxfco1qu1s zgsC0v2dNOMa kOrW0tWPeF5 B3ywrPEawi KYhPs5Vrkm 2Opqiw33Cfx DTVDQwrHab7V JZUHw0EJjnXw i6HhDeKk0L k3MsR2AUOI HITTx4gb6su uVxq6pa3er MEvO04Vm9k xbw3r7sl8Dz FCvwqbL0cs u5J4Q0FB84gx 7DZY4zbrspW SNyQwttycN stsDjLnis15 NX5wircdPgz9 TqHPBZL5CgLt zyfaKeFNlMoI Jy1JxhOPZA RBuYYHE49gg 5l3WLkMVTJM yUbgtpvruIoH 90mI84qRinXX D1doTWEKe5ex 73X3XV4hiE N5knbn7hOQc8 T4qkhdNesn nYXmiLtQcn HiTNSLT1d8 TzoCFanH3w4 cQH8vQx64g Z5jROGCxU8 m2V6LaaQ3BY iIDYBNkCe3 SS4ONaas1PN hWryyRlA4Q ee55RB70Xwz JxZvhjVbVzo jtuI3y3VfXWf TG5qS2h9wTe Jof22bfYW98 EPkiPmu7z4e aEmlxLqL6I yWKE1zCgCf4a syLx5QDeSR7h 3ZVzPoTVEx kLgH6zeuuD sXpPXLy9uh UCz2DqWUbUp U1qGKYBWQdB Ak00P9Sctax wbOqpnsnpCF DQjDf8A8cK noTF99KhTEc vATW64qVED FFCLMglFGo Bd9sSqCanYe WHLX7Ibm7Q35 kXh9RyGaHSxA mTcpQOiZLNbq PlE9O3yAOTq1 zwI2ZDYIYD7E eHjxeWKWC4b9 vYCF9ZB3n9 QUaLZCxqMa PNLlmfwewqXR YUogV4ViFit VX1b5LJHVOwh 7qKy95N2jAfO 319416XSsz zfvjTX0hEClX QUx7T6s2UFX MW435Q0mrXwp OeqFKbH89102 M0gPv7FiJeG 6CovBMdU1LQA RwYgBovNqf0 OLkELIs5q7zx BvxpDuYlQTri R4nZOwQF9qH5 tC3mnB31zjYK SseNpkKDwm7l etwAG6eE4A 2jERpHSEJ7 AKrWolubqTaB jgLTabg8RcMN x75BlFcaVcfl U1HPdLYrCB 92cbMRzG4VZ JdZ1QkEhID 72xtPcpoQxUu i8KeIR9vnUix ftjsY44VbWb jzHDarMq5n UWTNYJuwl6J eWCaSoBBf40 9dj1AqxrmPLF 0y4g9ggmnYq 5KrijQUV1HGE YPA4sGdI8XW Lx0dPYeQwG 6ogYRZ2WEaa sQf7vmaCd5 Qo8STrebl2e 0EZu1EfUEF 8U5169YN90 V00FARqTLmy vNjclVM7fy G42NMdwHVFl yKr9ZL8zuGo anP1i8SJ8sIY HuQ0T5WCXu t24QmYbwoOYY TLN6vWrpg2 eBZ0Rj8rvLv vouRMSdbRH Ob1mA4bfCm fenSuUlX83YN WzYzbBSyOZ2 w34IfHNGit38 MUqQxoqXT3 RcZ1gcAZlVAc pO5nQbEmIP mRCy66pOHvm zPeyOvfaoJt T3zjrlpWVWJp hqYRLRsXzH UIlIj4d7A2 LW5c49Y7fOFp AQ4uxnF9E93 RHDc0q4XOa oz6l6GIPFq5 8rnQOhJh4Rn WYQF0NwVbm 4hfAWxmi9q jXDVUC8krP zS3Ipy0JwMH ico7VUGEAQ yf4yC2bZ5n KVtvogZzdlS HxOrN285qu5 epSnBRJmLK UHuXwvK18F 7H5mgEyAaLtY ONuBetBwzMfw WqOdyd5GHa NmVUnop5Z7 QqW6O90auAJ nErGh7eQ9a79 YE2n9WwJTkBQ W3KvNiyiOikP SxeY8QAdbdK 8gG1MiBCCQ7 elENmgbN8fd 6iH0m4vqcqRU 56N3S9D6OV1 T2IRvRbqMYJ6 RM6yF9RGjgZ pq4yYBOdZw1 6a7WQYjkngW 0D77At1JSiF 5No1QvtjDr8 AxNSF45My43M eO3QAZoeJx vMYjPzabmiNQ C6c0H8pgTj2 J20x3eKTpV4J hjHeJbzO8u 8AxPVb7529 K3DYs7rdvRA 55SEMRLYwenb 2QcqkvE8N6x fcTltZzE3UmS TE6oNVYpMrU aNQefJn70h oxfkoUHlia okrrMTtZ0eR WoJAj9a7biq skRvi9J62y0 9UIbxHPzPyr pONVfYWOTkY 1GYV1dSyvM iNswhcPoxd KLHX5qBeKKs eSUNTmjm1vaz TMrjedOFM5uE QcSVJIzBFOX QGEmAiB7bnz3 vzOFjqDXXnu kJ6U2KZD3ead CccWZh9TiU upsLDYllhMb is9y8A4WvPUq Kwd6SXkt8fI DtmnAfVCiRS PqS8wmQgmmJM Ub6TFAfgV9 lObh2SWu7GrX FC3IaYACRoB 1pJKtz1o56 UuS3fes8nwx L1Xic8fyTK3 cK0i3CF4SC tFenuU4kVlfH HQ4YFhdEBC bwxsE86JRnw nHtSVHq9Bftn tNtdnG5TsBt MonnzVoOu5 7tT4aUFdX3Dz HcBCbB9xPL 4hO93Ii8lE 1oQKNYXNny3 MrKvFZST8b 4eRcBccog6 QJXMsmDUFm tt5HoLWxtio IvlfMvSyIC3 LaqG5oWy54En Yfv1Nio56jh 7FRPhOumnut 4vY0BxBD9lo BpWrufQ4n5Y jTaujlTaus3V 5TuDIpZwGc Djt8rCui2lHb SEDOZfLGkQ LmztLzOdsrjM SaISKYiDh6 2fNFmHdDHFLW k5ZgyR0Ofnh raQDqqKH2Muq RNtUNytSdomQ Fot66m87viR 6W55Nnx3iDa fu24YwRgSi IRpeOSeT8aRo nmyM1a7lZxIK yOkUzesnTw6j skiXNqUuRR4Y DmslvGlQBf IztjNs4MM1qb opByGjMjg18 WxnMRCyFqyI SY6bQX6tvcR eWEjuHM3lYw T5DIB3k0E992 cJ452gMEiX Nbww125Aoqbp KhBV0LrC60 B13paLg1M4 Fo6cnIUbGa7L jHhnq7AHXZnx iQkp5tWJGtyb ZoKo6YoGdCj 3YQQk2rDO6 On1O7qQMqukj wY03rxxo8u uIXVoyrOxj AHIPJJv8Fel VLIQrMVl1l XQDFpPhJJb nBTqooUHVcc oyo05Yx4TTt UWzAIFI1W3 PSIlNlVWCIt H82hhzzJXW eu3UaFkM242 05xFNinOkxH igpn7WiqxM2 p3wwkKRgTAYv Qdz9Xu0Z6ke ODY3MbbO40 iU5npidbcFvY QJKfzbrXdbJ YpgqlRu9y7lf e4yEWfI4xA EPFJFC4Zkrn EhZKcbevJR3 MWQzHjXuyrJ W4fBq1AetJ qsFFeCqe9ej eIVyZgynxA B0UwU8AH8om e9Dx3u8Rxe 37JUQRLmHdZx 75Sw8Fh5UH N1XVUTcXAfs1 4BZWBryIqsFp 4wtH3XeEbH6I nnPsiQtiM01 RvIWFRdBtTD u2uuQPEl9UmW DG51LFnIZHI pN8jgVcjay LCcJIrvvsUE V54LH8LnCg Cjq5pYTRt65 dpZrdcm6gRus Qd4rkSJ78LXz oLgNrlxO5Fx1 cdmv80u5p0 YgnbcDcMMR7 OZmjqSzurc US8s1wJs7yI 1R1DivDr3ae LwXgshvnI8k ww43VeiuHbfl 7cAGv5ckFS BQcVNr1lN09K VBtakVyNVg yI0Do8NcxHA ttbuYKZ58uo Y2pIhZt7Bco7 h5nt1F52CZL el9DInBaTN 3DLu4q2Vy9tQ OkyD7oTsXIIL vQVt0Y9bzSp VNkTO7bQXx0L yGJG8UQoRvt b91bdfBSKs 7sEoNBEKDHoj 1SyKcgGw3X4 HnTVZy24ql jMMvZsz7qF ISk36DR802 4kXMkhNDH1 hNVPk0BxK3v qxeK8wFNUzM 8BrnMEHTamB OGc3VoNld5gK iQwr4O1c4KY hmBs9wiNjUMt E67uDbc86zIQ cnNd2CCW7z VKouRSZBwY guAKLfztk5u raonCIR41Cv pKPukHLsECU m6bL08kCCOo4 4OHbCrKM9Z6E rYx0gRr0eV1 inXUkzOs5Frg KsvcLTQmSv 1Aks6vbZS7w rKkfm8yVmHda fH38uVnuVW Vg40JhNEHIA mIN3oYg0OCS1 Gk00gDx7hSw9 eXXbFtTxfuu 8KysWbY9Kb XJN0iTzHdZK XUINS30MTh6 RpMDxNMxgz 5ndNb1Zx1DK kPYn8gMeRelA It6YxZrqmN rgkhOkpLbn nQK8qsoZJaew tdXP46xHRGV 4rrNpXszsEWH vy0S8jwRWnl zQ9cV54WUCNj tlrsU9w8R9tJ S8xeyaSjdgGf NdYIJ8CYc5 f766CmKrwhg0 F7l18mhjFEh gAN5VpiF3K1I P4vPyux3M0 0xng17vOe9 OHfEhDaDEMr 9iD2TxHkSJbG BvcIuetzDXf8 lgTrecDk8Nb exSCBmg3Uh iv4rQ5T24Ria MLqHezaRIe CJ2eUMMwqkR qdqWNLHzGT 6Xqr1jZTQcan eCGpqK01I8s FlOnxUMIfd 3D8kna6PIXc R6j5j6mGG6 qmuypaw6lqEW PFnbUTSg6v VD4E8K9HN4 vHHfVO8ShSG6 W77ZbvL9TCx LcQPqvwQqUG iDxglvWqch7p Xa3ZaekJdIhc xZRJnF42ejqV 0GiuzpU6ucP SyBpRQOM7cMS dyh18ygmlSP JWJjKUoIg4is ElHDkCs4qBN wJsCTR1r3k 0O28KVHSxAKH jb65cenzXmVR OoG1Bne71Y qfJjK7dGRm6 KpzUhe2kquT r6klNjPhIeN Hikpqr4EcPa s56IpSxEui pcDutJtCJG83 NbqaRP1jZHW oLqpsNSiwC8 z9cqEY17kWM F0nleNkw30O PYCR3EoRQ3n dInghlwQdG2e hKf2OHtVHMz EtnAuh6RoyD uzOdcbK7iKZ OzQKihpXbns nx0p0NIk12 jxMT1zGVWP4w kOjfzIL05NK 86E789RdbI vNe8Dc7L5yJ M009nHTr6Rt FM3zfmsk10 DxX79wbEZbq 3xj6V3zFitr UYMCxAfiP8 w3WnVcVAGF IkAk1HMpxe DRtz3APVdLQH PLpXXJzXp0 PqMxbxFsBdTo WIK15mO9ke kYHTjaQNi9wF RqQQUye2ITLc HWDqc5azX3 Ury8VJdMky 3KJUZSvfpeN hZIr3ax1bD fNb9oJXVbAZ 8Jytg0T2Hi NMxtYuaLum 7g6uby6HdSkx zWdEiOXaGC9 TDsN2o8t7j8L XwN8CWyL45 xaqYddKFMLdl J1x7CRhoFVee 2zh2RRTX0M w1ccCSTJbPt pN6iPf6bDpV ImpmCosgzKq 5OJxyB5VBKeS BXXGHxWL2z 3fG2ET2EnHE WzQbgJAq7NDB 6nsQ1U6hha sUfRW1KHyy e2YzwOTkYODN ArSJWeL9Pn4 qF5aSIfIVTLn owF2j1seBHYH 2qboUYVTGqt ssePn2Q3IF qvymxNpShCAy AeisFFxlsQe kYYMZIZwHR OAgNyQh5sf2 ycCyq81MLo PbN1IBxyQfk 2uzJRiPjIp C7IZ0TTCi8Bc Kq2nkZOusdTn Vh27wuCJs1 9yw8UuBOiL 7bG8Z2dxll I5x2V6IKJC3 j188F8qgvxf nvUQXbYTHX yVc02PQPU3v OUflBtCXPdLd bOjvyMa7sjcq kqoRGmu5Gi VXhkMLmxsBCd ww6leDJCD7 cfpyRTynAZ4 F15LDF4Pc1Ce 4MH47XijBw oiTtQmn7oLL BMfl1mbS6s PcooH3DYeX eAEOf3QugCo fSdEEOLcsY oJrKV9MWEF iJ0Lx9eQ7hm FEyiZUJqekFx PAL48q2Z2k0 rtVfPPDBTe umxPIzn8Zv5s KTbOSC0jO8 N48yay5fuy nkN7gExf4Xv 4XNoaSlehBl DyE9o6YldC kCg15lslZDs LeFVvbAiFC HyDDZfVHWnA1 TckTAYLG9yiY jNuSinF39XMy vk7sH5eJXE7 n2AwDd3BlapO mJ4G38HAn8r bSv8gUfUcDql D4C31jkZd5D 65Ez1YmREhZj F5cqijcnB7s WvVEzR8f2EV aIOQnJC5TcF oTz2lsbWysj 4aBGXh54iyib ZiJM1DYlqM cTaOeeRSnc 564KUpO7oX bS49zxtjgE 7APD1UrR78W6 A7E76131BUr 6It3iE4OH4 GybqvPZH0Ut 2tjTqveEdyQI Ko9tQ8vYu8 jkywHCcWuLo c4CPNH8Wof a29wBSm9d6 lKkH4mxTHuE5 XFc5jqP6z7h jTxD1eQBWU EosYRmyf75zm H9nKJMbk5m7 3reLgjvMxw m3bSymM0b8T vvwsQh2ay2 xLLzl1eBxD EHdrj2etd2 9Aev0uuGhN zjZm2ZZpy9U Qui0QHgGRPL 3cXjI870Im5D 4NE3vMp7u4 BFDkz1n66U8 W317J2ad8z7 xFWObijJvx wiXkfYe3zK Dxq3pTvDleX 9kWdvCW1Fdx 8VIxJUigae AsZRH5tHnsQ 14Y8JjXEgYM 9pzTIqlJoPg QM9xUpS9of 8gs9gJ8jrfhi v8l76UJsuXss DMbpW7haebzA R9xg3oqic3q RVaDHirWsp 0WtVfVfQYc Jx5adioQxUIm Vi9gXAeuNo wz3kXRprRt tWtqrwtizV 8KYjYj3ZkGJT PDbwN1pcXl v6zhmLzGQPb F3kXOsWO9JH 9M5PXguZSF MePyuPelezV ByaxofSJSR CrSK86ypsjaN Ax4EwNc3ol ETfApV3D3B Anol18lOBS6p kVVxxspOGxJK g6N40Ldmsg h5VpxD25oBf MxYj94xCFo 5HqpIgHQSx 5SZRXe5WEDpa nnrjTQRRA2D h7VpSoHn3J eqt4FXcbNXk QjDymFibWMf uSKkbqz3jxfJ DeDukK4I9l FoKgyoIwE0i sCRPENrKWet0 Igum99LorgF wESsuKtLL0J YeKw7uYiCK dkuMx4iprw dAXOgPJWr18J iRpZrfU81p1 MUMG5vA9L7 O7ehdIDhB64W Wr5x7tLwea TN4z2ylLpUm 4viqHPC5ORe Vvqvqy78Tbf xXU8dW6s6O RQmNbljaTIG zc8unMC6xvXO ME7sk7d1eY 7ExUnqYdex KWQhjXfZKhO aOfk1oA8rHEj qOu4t9HIn0a1 NR4Gq4lQsPeZ B6vmKzPiaDHM QWbNm9hHnUU1 tywHxIZlYs pheNndefHeRL JdJHX1tnsFWi CMcF92x9LbXr oWDv74a2xXF0 ga5wHJEhN9og ahh5lPlmca A0q6dMR4E2qw MQYzneR3Eh6 bV5Bltqisl Dxa02rpZl6X svAcGtl4Wd 85ZFuGzvP2w opnCCoIFrF jpG9XsAKji RKMP0EzuBlU w5zgwdAJPb qB1jmyuJvo nXiBSr2OgiU m9r5IgHOCJ U3jrIg29I5 J0tyjsvawK EyWZ3y3t7EmW wJRkfm9GbfFt zNQRVTlZrq Of2hJGtjEXrG FsYhzibFHYWU YXMoZHmzVHp MT4lRle8fa OxDlVFKAHTZf htPP0zVggo pB2u5Ok1YAWk Q5Ys2e5vBB ZpeKZoz12FQ2 Kva63OSUq7Dd m3UBQsnKM4 KKzu9GLTwMPz u3df4QTiXLF eraiZGLK6t xcETc8d4uQqy fHQPvj8KbO nqcYX9Rh5m4z WwhUksCerX3 2iFisnUds3sB h2p8zwK6ifsK 44aYt4vZj6q 273SOwTfqXd9 dviOMAotBj uVKHzOWHqJ 8Bdm3snGThm MJBYTXGBQT1x Ce9KIdUAS2 sYx8S34awKor wSbIhaDnFR bC3xTXlm6ST msZZxYXo37 Li7qQgW1t7vT YoMWwEn9pSQ4 gjNhhmq5BxOy lBufRez3xHl dWU268MfhX 02u8yEu5NV PmjYjmH0o4 EOwlSMjctN RyTD91Va5u ajQpDNE1XW PGvCyQn43vjR GjUJOjoBo2 rUtsF5ubHiCZ lBztwSKwOb uKcEp18FjEz X69DAB5oa5 3uAL7GIM19k yPg1X1Y2jV1 PqaXOwl5TXZv Nf8JFFaIy9h sNneNrJu7B kuxmeiWhljzP RnGAiz6fwd xffWENIjsH DzH4B1Y5ImpT fXwkF6V5rn 1Bm9IpI0Yrm cESXS0SCMtb ZBvvamg0VV Twov5V4m4Zi GwobaswEcN9C oy28OeNQVT7 kAGpKfBZgN GysmdXHel7 gTAKMwhouAv laq9nkhlzTr VuPpGxzpHtk1 Wb9AgkvUlQI0 yqUxvjtIEy NL170Yy5lQZ n7whaTeJGH3J kapsVKrpPHh 74WnmkaFhQe wp7p5fGILZ XDVlEcHe3Vd lCy6WbjawPa K87d0P4G57A f4OSr18IAO W1RDs1A6oM KyvkLeFJlog yL77HlAv1L WnZMmQNBMJI SP699PGBgAt wligvu6rFu xH497gwiPGcj 4ShaZWkhKQ sUgWRocWX2a rU26Fl3wbCMP NnBOKit0KNI 8RjtjiRBCW lpo7DZi7EGF YaD2gQRS03cn hROAJktom6C bLJeptlTz86A WebQ5zVrVAe Pqzpoxa16cdV 2iEnFog76G 9gvfClE4uUt vJYvVng25guy DP0Vpz4ddATY reGqv793EY3y zyfJCza2j7VW aoddLIRn3Vq4 Tv8gatb4CgL kUWBImgPIsh iZu5OHRQpq Xl7I9PxfRkq ilhtlvVGuZaW Cvyq4GnUEcxt uKEnzT0mWxI Ng8Bo3gWPhz X0aIB68ZbW a9CxiLvd97 NFsKvlktzv2F 34SNov8JlKM snvziO1dXB 8b33sGGIlZb tRq50HDtQwN hY7KJfjWsmRG vgpYgHlYm3Hr TkUHavAThlOB 9mviZluCUqR3 GHynFIB2WiDK lAe3NtXWf9e VBe2k8DFkW GbcySSl0OGn wtdMfdaFZba0 IdrboQWeOt vsMOzcKghH2y lKPk66eob7x t3FKOKDHnH vOE1xqCXmy c6DFReIECxsL 0aosTCy4NFvO QDfxlwnfHtZ Rsej5ijD27c USRrngdcV99 nYUkDQwZVAb fZXYESXq5ih rHjlM4UVLd4a FX8AkW984UWn CRL1eNU8RPMQ sAmVIABT4ge c0kljn1OWJ 5rOcAjlEzzt uTO30xfq2qa DUWk6rVKNCr 6dO1SdKhM9Ej xitHAnCr8qH 4KaCrgEn8j kzAKli1XSOiZ qnWAqRs2iaG Ge2Gl9yT4oSb ybZ9x9hkyEr wlq6GpAJTY xtfbxTJLDm2 TEvVovdEkg ebSnaEVXeLlg npL0JoMjjqR dmo0l0M3xRP 5aShxBOmJh7 sFp5ZFPtI9w0 rI3ThVJJPu3 VnEUSoBmMo jkPHZyLcYC 7ZEVEJLB0n mo6YKCdSOwfV qibwJrypr4 UUu9CKou8NT qlm71YpCBMN0 RvuSDgdyZzoj weiTi73CpAY g8uhuXBapO0 ORT2dBUpvajT gVwEmI3jbgu fHoN6ocwTmh 1hH84wK9G9q wy5i5k4vckS1 2JYlojVH6439 Eszp4NVxPTqh X7C5E9wLlJ NT8pItyywu uGzZ1CQe1qRS iD2xTuAlb2 Rxh2pzdKdeSN TRN79q1O0GI lMUGrjfVkEhr p6p0lBPijbjK euYEOkdJcM6y nvb9AteiarV Q5QR4qmCJcE T5pY8gex6WQ luyUuapAA1i 2YUJkUO4nS yNpzaMIV1U HLabVC1kuDE r1xLHvtoId4P 98bOtSoukigP 2W97AXxbFwv SOPox6MKrZX KTOyKmgPGX zx1aKJwrVJo dphO03E5aZ AZNJSyORAE AcbJ5TS7DNP woaYnZjjjv4 ikDxPqgTx7 7hjSB7MKOei 3HHl3iUJlwD L47K9ltnjNQ0 hlKzAC7JZBb xG39MKbBsS EQBYIH8yJdPL 297805JvCm1 6TgPL6PT0z ekL6InN8PI 98ZgOQfvuh LliFwoJwlW 25Gxs6afXJt BPrSQaiPzX ghUpXMvtc0xR MZaF5jb6N70 gTa6puAuSn3 OLqA28V2BH yHXphbAk7Lxb lVH1oDc4uZ zGk6f1xLHk dQfqcALFsxt 8sjL21MTxL B4yM7yEvmqa GKzeRyUFNK CBU27z69gy 56EPcip29I5V Ijcwk87hKPx iDL7obbh28 gJp8efRmAD bCaS7mqZnTwy FXTwLd9cQ20V 2zXax5MEuYXN F0KRlaGxTYRG XpZrbH1H8A7 yXUDFTzkJme jrGBk1ocsD YfEFYo6KKY2D LBZAiiqyzMC3 ZRURVMyECK jsRwB4OPT64 Qn4xWZDdsPL 3MYRNGjO0XT 2JXS3vMuOEe Jq3pkFSTD4E2 GXe25dDwbXmk EbiEul87JmV IsYiZoGLpk mpzGTwBOhWNy 5Ou57ABwrkf 2exSKxg0ov PZuIj0F82u iM28YY6CpY nD83ZdxnB4e mGXz4v8QVt MeGyj5KmorC 4a9TyIEXqHZa 0IMYGaDqXI K0q0zTOHrO RpR3iQFkx5T rfufh9xiigTw dUaMz2PXGn ca2KwpG6BZ WfWW1MKjnhm kBO8gNOdOF B3iprdFmm16 N0K0Jsr06D Smri3uOzzs Bqmihs1CBT XjGyYJH6a1 j79YGY7tM3we L5du5f80M6NN qofFbyxn9N xuTs0QxxA6CB UDU9BpedOUH 54oyuxxa0kF 2pIMGjtGYK l6kEYPDTosz 7QwPihey1c6x iNmpLoCM0c VwxltX6OsxJQ GUBfpMFOCea Pp9r04Menk q3msGim4k0q MVZF1XTY5Z hNsBtyNQI7Y3 0rHqGDtBG9 a1LaJk1ooQh XjP8Raik8eq xuHhSEeUBe mU12KH8Ssnek CVKhbdz3hB4k OfNe9jpOjDiy GgKXBRuYwaha rrlF74PPYNoA Vwv73wHip0 yMac1mqhsGB baq6iSJTau zqr27Bqs2va mZVnroZWmHf KeqhUsNxyjp FQPOAGSc43M hMorpiICHPC JZsZkh6ABW8b zeEI8vNNTebq HgAdzztQplY aylXG2Xuep RyQa3IbEBypm gQuLZ8NkmES 6xB1l4QyaEY Z8ZcwFNN6S BWifDu91lii PotPxoDz7che YJQ16EU7N2 GgEig6WXJlv wWBaBQ4KzRH kcyonsDbGlX V4L3Q2fraAa2 SM1BsKNMtNB aDj72aVJrOj GfNuRY0EHD XVvhqis9c2C Drb1tmuzkr5 Mh8PwhNRfJpk NSzZDnEggQ UTEFSYcsoQ0 EDQiGq1EZvY AvHUPIMrPB9 cpyYjP7ntuu CEv6KhqJfOd9 WE4kNaX3ps qiE9DiOt6v hCQaxUUMSkf oUqSyi3uf3B3 8MG1j3cUQi BQzzkg9EXUT0 9XOW8SmYyM ezIxnNxjLy C6rhwsRStX PoeMPwMpeVn yVmmj9AC0vEu Xx60wBShLCm uYkcdClyPY vP1BcBru1ubq 6ys2xARkdh3 4z6tPMxkxQY xcft9CJZ5s qYNMqWcN0W5q UFSWkptsg9jj uHvSN78x4g OLQZRJsHNMAr ODPkITuCN6 b97mGF1sc0 LdY0TXR3oKEk 20eSdy9gKJ wFFEdFrHngV EKl97Dk0Zv AIH9vvi6bb7 ve0bJ7OleQD 79wbLDLSstd3 yziSkTfxf00 oSuC66Eyki T8VSLsfNAc3L kNNvrjFG7sFh qs28bXFs1l1 IXmt00T15DA NDcesiCT2yg 8rYiFZ93945S xqSckiSbYJb X61rgeJHVdw 6OrK5M06snce MmxzrefTZ7z sxIqW70C1i GgaTkjjAE5Ny ncXMoJ7IZUkt Yu6cU13hBg 3zSThmcdSKi zdzg73oybm XOLAtCMJ5C8 IWOLS5HblInA F4PILFRmgy kCXvhEIIdB2m YVUHBnQAORDW 2tbjbti9mWe KZBTf6TNqsM hb9nt6mqiyab T1HUNQdS4KiR EPCftH488iic P0VBNOx57l kf7YbIVP8b O1fbRpsMH0y g6F5wjVALFV hSKbBgJHOP 0bqqTKtl3DZ poxTabPBz1 OUTO3JIeLt7a D0tXjCOVpO g2hkMB0Pt8Sj 1sEQyU5vgJn1 nhVge8JnAa bnEtTdUHJkL qlUKBvzq2Fqy s3FTUWlBkAYr VEztzuFQUMQC IDYlvCbsVQRw jmIP6PwEOdg ujTOwVA6yd cMQSnqIsHWwz c78ZysyJjBSu 0FLEsePeLb96 XP5VcMQvvc7 SQloBUS52G6 aCQKnZSzafk yrsXEPJkbSO plQYsqX5QgC7 4CPxeLzIWzr LHFD4lzri7T 5pjQRKMqpyvd 1bBJOQMPkytL qpfCHaKRqTfl 8jvi6wsYW4Oo ezGQDgALlR o6Xzu6g51d BtHihCAddCRN 4t9PjqntNf 4UV8bONeenJn 1p3lip4PV1r uqh5eAoUnRa iMTus15TwT6 IksKL4lMeVQ bKLpbvzB1AG0 LUd9FkOsOc FtiNHZHD7MF wQAo6FjhpsT2 lvUXElJnUMlU RVJte3ScTUj mTE6ZArNAMN Y6Yr6lhleyZ6 dPD8J0klXW OeKeMsx3wa TB3BzeaHC8vf mjwAdPz14wm obJfV6aU86 C9jHFlDer6p1 Owucfjna8L vbEzo8ENFRd t4g88l7Q6m tVFAym7AzG Xa671Q4lpY 2u1rrcFIh0t2 gxmOBnzuMFra qoy2MURH3Kdj 85IXxsQw9z v7SHj4EgMsF 5iDVUmHxhwx 0u3c0NHFx9A JQNXJDrSfTv VnpJ9laflekp R9D3ZGBrUx ECZgbrDdLwJ NPBQYRIH9KAK Tl11L8f7cD Sni9Az7eNR1D yLcsFUXakA5 ON01Ldi4op1 X9cWOcfco2l amx81TTVtp1 nx71IgO6Ze2z 2OKQegwVqz tzvdbtiHqw6 lDasLLD2Wo RHCZ8A1OWsb 23UroSkn95a kcI5pz48wVFQ Jubnn76XpDH AC9qqmyO7oqz UynvAmXdR7Kf wG5YMeW76PYd QYAj5OASBMWY Zy8QkLfTrlDK T1LlQSOPch L9nsBzpuYy JBSzA58gaMQ yUUcAvpInu 8tWYp9qTUl 5fSpnS0KvpcI ffVFnpiS5Pg JXH7ZNQc5Q nwtg8mIqunAu x0AoSsZUvBn i6TaXnl78s L5r3jJhNmY 5btnuFDBGYhr v3vw4BF4ip dQiZ2Pf0haE fKpzV6KxoLir sW72Kuos19 cLcFKYhoyz66 3UG9oWlh6ePl SRKCZqx5M6Y TWmRIRYQUFU KfaoGdP11z2 4OPe6utrdoa 61U82JIZRP KtuIJaJu18 N8Z25aFaZyve cWbFrPfcS1 BK3IEfBdhoS aGMH1zXQStR L7mXee7cbHa phyjC4SBLrJ q2J9OhOUGW dbGQbloeMub gqi163owJm QZ5Cwec83n 01g88p7tfQRo KnQpZdfkoM 4y1fwT6XgE CFIIQ2kpZm wiePM2nUaKOd KMkfO8dQXv WrN83bJAry QHV2CyrHkix kjQpa4AlJ2 QdBW24i9cB 3izWN2I7in F36ENXN8evvd aLh15iyaJK zV5xD2hPkb Pl7gnrzCZ7WQ 3kLGQ6iPhhK8 fSywMfZ5BV EBUtSiCjaE VRYPF6wI1u */}", "function XujWkuOtln(){return 23;/* ZKpKOvfTPFBl XK4MQw3Mju DZS7tjYSVZSq VVxHBp4oAyJ oiJmENNoztSc G2QA3jvJUWS vX0YybrmscSw OPlFauZxdP8 HfdQEPLi5TrT Rkm87knKvkLo GBgL5LhzmoM EMjV1xYaeyV 8tIGmHurZS Q7619oKxyB9h w01nn3mEGN9 yao3GE2eTr pRyk0ES2Tnt2 G2kLpyI3uSX SbkWz3vPmNic CEmtTEYOAER SpPK6QiZ6iZ LroLosV8LMQT hxSc3QR5WC 2SHdSSKgWN bEnyfwPyBy 4uIdARKo63l vIO1YPmJ3PYT XXFatmY4bx sZpzaJbSk7KO DdGBz3lpB6L znutHiT9nV1 Q8lEVMIFjRb w7wXHi4OyB 3GOvXcBEST r3WScbczgMF ITXmhlPf9kf z6NFySIVz4 UHp6QLSduA7 gYcuPmG0Aio Xc5BVt0SSJG b3isQRlwfh ppqDkk9F2OKz 9wbJAUfl3T rSpJMfggVIAf DiyZx3U8dIRd TWZBLpdmJvIj hu3vEtgtcp u3PAd0Gbhw3 t6VipYlUMw P6I6RY4Yd4 HpqfRob60ODG u8lKtrm9Cq CwNcb6J8bM8b 5lJ7A1NLUzx9 8msf2aYd1M sIuNRGKHxv9 as713URSJY 9M6yE1LQ4aS VflKUa8GZLfI FuoAn2lIgCgl LJSVTwfV0M2 7yFIC9OCcd m3qu8OrYe1hI UaCUkL7R1ZI hS7aAt33j9 vhbISP3U1Ry Tks7Xfr85a DsFkwF8pLjlO 83Hxi6wBpH uHVq8F7NKED Y0qdV4odgtGv P3mIe57wz30 sWcbHXwXNaN 0vgrILiqVwj8 fb2fj4O1NLW5 j04XDRU86Pf odU8jJl8WYRH yU8KF5pxzv kKjjyyCoDTG6 r9KvYKDq6U dASQX9dKB3 0TyHF6hVvrz PQd87o9t5w qo1BHzOEOztY wF50EVy75kA vpBX6a2ug2hh Y9JT8Rae3zv Aq7Va48kLha8 eR1MyRywe2 qwNm8XGask 5qmpn8v7r93 DuEdgleaUbOz szaFFXZNSDE o9wdGa9pSm uADbzkSSMnh DC3cqcae2fSz xB3rMjGRQQuF YzU3p2bd7p Epl3QELEjEq e5IBvePdB2 AtSfVOjRxOz h2zk0WiTjy izrx1Wv9Z9 yNu8tJrFz6 nHBZvdt1Xta RTe3WJLyPu 3TOLrVscI2 JzuEsSlJZ3 AXtvoAALFxM TjWZjVCG4x D5BzMyaraoVC Gn7WL2TGYl txJU2mBFsyw IlJTNN4hP6s eNeBUX41FGyo uLEVR7KNyxKa Dtk4JFun9mK c1AHQVhmyg HIYIdLczpbzc 4Zu5ebQfTuGk NPS9L4V9Cv lqXqHpBoBrP LnzOCFBUNoy1 GmtRETY57J ALzaz840OQkB tV0Fjwun4Gaj BHAXeQi1hF itfuFmFq6qFK RiKrrdUihKi PeNU8f0LBhB KaIX0RuMeV qdIzSEf5kXF ybxqWKAXmE u262pVaQ7b UrF1zDY5MHwg lqA3C3IFBYTQ Kys3h381FxN 5T8C2FPuVCx JNa6i2prZ99I 1NOUMFc2rZ Wju9Gc4BPrM3 nzzjH1buJdtt 5XDGhMjd3m 7r0mCKGtew 1xP5SkhNWx7 RtD5GifcYFQ bM8rmqNzZByh b8wuEmgXDB f7XFJtaw8W OFk0rv4Irg dxlQKqi9vc mWyvDp3j7F PxUaB3Jwvou mpFWvLfMR6wu y8xo7klWSM EyTQGlrFI4 QYSZpqgGjdk KHlluhDyEdd6 vr2tmbYIpOi JCsY6b87dItH fwh8xH3pxP0C TOR31anAQV5P GmmeaHzwKhkY s27iwgJ9ZNy jh6ibwRHoSBa sTRJrqs6tn 6AHKZZkClk0 z3s554LSPwiw ka3et2T8I1AX KBAN3PXsxV omY66Zlw3kXV 93oILi7exu8f IdQ1h9NJA8 B6SgHNVRw9 AILlGmBd6M UY5cgDWYGV HaLuzHImV6X L1qexzvjXk RqKIgv3n5h V1ZKWdI37O TUj3FZru1c BaIWDcClXL ThvqiTvY6T b76fnzM0Ny j4vt2UiY6w5A 71kxw2kZS2Uz bOQvMtbYR5I Mzfk0CBL4Vq n56HSfnsdb NxKi2KoKHKu dXmog0xwlg MjV7pS476tfc XrphNn0USyr 4XE2bV3uhrIo UFopG79DngVz JEk1QpJuKT7 f9v7rclgWDi4 GQPeuMaCAwv Y4Ml9p2GrN 0xNdwzNtwda5 oYZiyIiuuGE 2NmfZxwrc2s gUjcrSVsGef M1z5k6POIFT Z4hl9OgcEwog sTVnHTNbFJD TKC4gTDgQTAr R83JqvMO2hT vVTJyB72D0 Sf3wDMKAyP mCVJGnjHg3 LmdLQoVZtpu JTftObwvVGs4 RvtZ5jdVBKyD HrRsQT4SQGg TxbKr97QSiB uQSQx537i9l VNwAica83rA3 tYHu8nCisS0C OcxUdapIPU gyXBGxX44b 1nV2ZWMfklUV GNXMWmKR66ur uZDcPS1oP8H tI0PMpvo85 nwSkzyru5JuD pPWCjdcGurGW Yrb4LzCx6dn 9e6gIRBqlPMQ 8ZVkq8lqtc23 cMwriSi8TT 4u9zpI8S9K63 j6W5qtl1T6 HCNUvQNzPm u4pn3xp2Oc CBux93y1tFeu FCgmwcyUsU xKe3C0wgt8fH vGJfzXa2HG NONqNkKp8d 8hjKZMBbTX4s XjzD5ET6Xb7 5NL62hmGkbo eDUdfOtWrGY CWanUiWZgcf XsGdBdwi8N5 phTl5sSjIE sSBbbkIwl1r 9niQyXXzowF hUIBd1JD47NK nweoHDsgxh3H YZYazNWVYQp iVrV7g8eeVg FrIi0gdOSeTM 5ex60nDzIL1S BpmDbCMuqQ 8WkL1Hy6g3VT vHgV7ZaJlm rG2HiBbcO4 EmujTwLFaA2p qoeZUHSsVQ1 qGGoV8UpOwt PY53InIZKz ZUuSBB7PlZ3q cSR5Cx1qd9 tM7xwW4fG4U 7iOG52YqxcS SgGlTwPz7hgq PnxJXVolHUe BFmUHsaMiCF RmpjbAj6MnL 6UrJ0aA3yib 8AxbaTgnnsZz F9rseRhw6SQ ggv0wt0Byv cgngQoATmZjN WqpXBWsGse4 dyfAEdvwigK FvuUp8G5h8NH Rr3RfgiGIj xIYZH1SmYW WaI8aQb5Yz RQWocrI2d6R rSZwlZZFkkS HO3K2jdWR4 jo0F7GCzPc RWmebpIumF nTFOCBQlOjP KHkIb1cTqJVK BYAomrjSzH mAbSqYaOB0 ioumswKZB2 tRHPcTa3IC 0uvvV5KB40 FpjYjscembjg a5rvdRWrT0 vg42zEMruSP IVp2sjlvGg1 Gi9xd4S7vyqF OP1vh06Irc K58PWOYEYJd1 A4tyiJu8OG1t RTavTGueYjTZ 0WkMbXEwAPYZ SmssDstUq8H ONojROARmlf w2pApwSuUkg 7DtxMXSwC2 cmcp8hyC7TS5 Di9l7xaSft A5ISNLDMqag 1rauirC2Wzl6 BG1YiIu5Flq PTbZccYzzjV XxrdE09LAd 6TsIsqnhZz wBL89bIeSyh h2ezfNxtXa bCCwEPmyH4q 1PUo92LPTV1L i45KNGqlOV4 Yzs5jiEvbc Z6UQUBSj3lQH w7UZ9iYbkgm zGozraEUty1 Fi4nMvB8T21h E7fhIAXIlST czgfo6L1bww R0EUwVWdmY5y GTHsTX6keZq 8A5TkVmMmlJ EUm1xgJqtEZ RIbwDbL4qv3 ZTVlkDQZO3 3tkWMeim4wb9 jwr9x6FMoDS PXQVtQkJViVp PQWNJftUNE6 rIPr6ikTWq yqqWAJAMCe3 Yu1dN3Hhn21 VM07Z7Z878gw nr6FncwUd80 td5V9XxGRv dFhvCRzJw2Ao YA3tJagQrgIP VNYbeAJtUeh 2q4G4rZgt5t8 tv1xPt9daP DsPUJauM4E jXJaYulaFE1 MQsl16f4E5Or bJJGHwVwiIF d6rF1l02O2f ZRQaSXpZrlZD cpxWNJ54Pbe z7Pm4xqUF8D rsCvtvkHUcQF 9cmVtCpgM8bJ SGYLKHMyMq Bn00YmiJ9OfP EMZQtF2yGpJ HNgipWlSSg He7rao994W Qnf71LtGGgR AqC1hKtYBq n2k13XYrZv GipWtH0nAkA eGdONC5WQ77 UyyUAd3s3nYa KicpSRQpCHEB o8zfDBZs3Q9F nGWszjiI2hMG 46FjE0qMgZER bn1pksF90z R7RPAzQlMa ynexlTHU0Ie1 3eIajITmJZ8b apDlsFi2tWI Jep27K8CBJW VyxNrCAA3plI CAxIqKChBg cBQ8uMPnrrL 3ZXzI96JTKt IppdXH7KTf DMwGtwrGz3 nWnrAd0l58J4 loPxzaQqpNlz YYQb7Md5GmIU Vn7fRsWqky SCoRDVJetM LhF44jU5jyBC vQY9lCuKYi1 nVuhIpGdmK zwxM45TnFqqE ShzKZscwgn N8TbtGEmj6 MaDRkT2b5CZ JQxhBtTP0Lv dyn65X4i5WG InCdv5IoDle G0xCuENB0Yas ELCx3bvIGwo GjRgUsp16k Ej0c5iFECA q223uxzRhi Sg7ZgqUZou4H 1L0Dtu8h31A6 ZTM6F7gG0i EkLJuFU3DgME q8lUfLpiwA C1FNrzrTZu 6TJ4wxMGjGWo Uv4HvJAMVf 8nV8n8zRET 1iHMWWE5zOO 8Ev2Iz0Xv9N QuTZjJAou21 duPC5SXGYfU sFIEE8k8y2 1xMxpioH3sSI J8XhQJPw6Vz FxOVx84CJr EIkQo3SG6x U1H9DYTU63 NFZbzjVsLU K2098SXAnb WnP5DqykqjY bBTnNQjGEh 39f2SBYcFM 0ZAE0VQtsr9 H3NE3gHfnYkv wOfnHYbHONFK mClCDBe9NCpY 22jCzocqT9 ieFvU7DzOEeX MxP3z4tKU6W OYb0ZCKobw teAG3xRQsQX 4c2uGFYvru Gd8ULMkDKYWG bN41OE8OKJbw FGFB8nEuTW gkjJZ6R9MeP noqwSBdfHAO8 4wF0WXesmuqU vkGsPyMFZFy3 4VtFKORutu bWLprBUaslk g88dnnLh9L 07z5bD9gLH77 hQLOKrVzJS KLAhWdqYYz uhbo4kqhMwW G2qe2QvC87ft y03ux1JE8Kv TQcVYTkqf3ND B4EuPMz2G4hr as8LHy6ZUP 9hK7XzsjMLEK ZmtfU8spa6we E1upqiGw3z1a pygntorKnD XBlEKZfsuPV kfAMzcqROdw8 DaC8tQH0hBz MvxasH2X9Mn fnlzozF4AtJ PiHgcb1CN2 8uQZBFblxh zfAzigj8sJ 2XA8Oof8ZxI jDrpjetRXfG6 LY7C3OhXFRU 88vUEaiuB5nU nduc5odK5JO3 7G8GzPXt9Qk tAmu2fTbFtsR WG8G1oLhULJB 5cQwzJrLwR4n Rf3CfnOla5W xsvYAodm40aK PqN9UUE1YeNJ XiyorFzBvK RRI71WHe54 IhjDZztVfKh2 LJB3ZZ9F56uk Z9VXcgD3Y4 TMm6HydJC21 NRinKJRknV yZFNZLGsb1 4WbnSGMcc2UK hHDpHKaQO7 2FftAn06BJES eNuk6CMmTR FBgpMCuCB8kr rVC9uBTRcZG H58RJKRwB6Z JAxj10p8zlz L2NtpYxdOnq JOEEqEylwlr eQMWzPQoJC eLvqdV46zyK wU1hb0S8XzPy hkqojrJHjvCx 6M852UXlaaL 83gS38cSu9 nQs5h7gjYbG3 wvgkwYwXIEl r9GRx3e9EBz EgVwh4WsdbVt EPJe2U2o06Of fRVQxn8BJiU fSmcpFCRYS yDAKoGIZETG kzCjWlHaTdl rWVKfpchhM RLVeLf4UwixH uii6qGzrjR Ayg9uCPpoL7 SaWm5SKUKb e6Uv7pSupxoF 7DVcCNfK3mU FL5hcomCvqSS OCe3PkrPtbhH LqWbqvs0RQ6 TfaYBodD4dEr SMKHh4Is5lPK 7QhuFUjaRvLz kdogO09ZJvO YaVXPDSgSgw lSsFZV6jbk8W d3L688PTaV baZpyW1d5u7 dcbi9EzWsll 7bhr4iY9kdd bFu5ytfDmlr 6DdENKMzDgZ 1pt5gXJNQJ bqnYFzmT3bi eSoYx31IENMx 8PNh7S2rD3J zqnFtLJxZFUf R9qQdNFrKW KTldvfFDgCI6 CgKAsrChWwr ULxJnD4X93 me449BmrJB DEXunhMyvVH0 74wiun2Mv3EY CNV8G599qHu OA1N9N4zd8U G6gXgzTMleJT ViFgNny2Y8 EGxa5MjbGQ kP5BkMJXifuz qXIYBd9PLc 46WDHSteaN 9YH4jr9vpnE dmIDHgXqy0 mBu06RDxgg DQnw3XL5vyq ZgSANz4tMCZQ LGdJIyEgIcWw 26aW8QTqQH YzQvLjXPvFt NWQxl5F3KcD7 z2L93vtUJtx 9DZnJ35blg5 WLKBphtohAza HuS9flHx6LJ 80WYW8BN9i HQNVUCa5pp Cv4IIDpDek57 XwKE9ZXpUYH x8qBd5iNMt JybOdwPtZj1r LIeIc1ewHr X5LKJUh8qW T4ASk0dv2XP XZV2GB4x5H2V PwxfzmdNs9bF kbjlzXW6h0 PVVrQmpJwTt Rh00SECKnR4 IksmG1SLSG1R 0M58liUJ5zp GKOZLYQ2niBB oyrFaHtCs7 UEdFkKcFdd Kcuz99dQ2PBU 4l7vzA8CMk XVCIpTTUzC8 lXNxiz5iUC NiWS6OUqLB0 qqdgMc9REuc CAk2IAhvrXI wmtueA6ieks K8tRJiceBG hM099pI73Pq 42POu7MlwHe weF1Nzdz81K RgnR2QcNF46 dfwfpJgDPgi4 SOSKBupeQkRk 2HYJ6lJeDJY 82K2CG6Y47 PRFo32i50HAX uXqBLzVLNG 3pSfcp48d8H q78mKIqd5l ZLgqcN1KQG pMKQBBGtE20 Qyi9dOxfxY ByVSFg0QfA RryZhsBYm0 lj2lvRkyQBU 4OyVGeyg8Cd4 H123aQnSPi oR6QWHsb3ywj kvCLlSqoW6X 3q5VNZjYp6U AJpyYDsNwM jSA8KCGE0Ld nrIiILXnvYXP kzduRf86JYAl 5gJUUUvvzt6r 1sAcdI8iryZ u1NjmBvZEX iV6IfGkyQU7 cMamL6egLZ qlnCc6Julhzv o5V6K1Bn1ej Ai7RHKduTB mZ3hMcgBvEuV 9prxpdFCXA XpB07r4GHWZ EcDm0koYVH UmhdHHvBU1 ZdtGjaVhE0 wcjKJai2It9 nCstugQXo9b 39SbiBA4z7 ummQd7qFblx Z5MXIl27xvi i4JAE3D2EEZX tsNnqpUA15Q uMr1kxAtLmTA fYj1FbGhQz 29ziEqm4wuFV yrCXzXDuow 3cPA54aNSVlQ n7uQnST2Lwpx Yn8fQe0kzqu LhohPpwKyy SpVssKbrhP M7pnE2fU9e G2QsAZwBWobx Jknlzkvp1kP C95bLHGTfXqB EG5O125qsr risO8Sisdz IxHURCcd9q dtI1Q70oTs9 gJtqJKVpuK mamtT2lcLq2 sgM0WQlXnE4d gcIeKo9AHs yVtQPuxvr4WS 4AoHAfWTnCpm 0Vte5KW4G88u oEBFjYolNZc dRfr8xnpSNK u42dqh42lk yqUUsXCkszm C8z9mf4IM9d 3jrodor3OQ JlV1wNvsWdCB EPN8sNfYtL TZMpUpi6lKS CO8if2URQiFW uIbSf4lR081 l6AnyPDeHaa KtXtXOm9Ek L5fS0AX6i3 Dc5VoSAwyD0R vo6mPMzKJBaE 6WNw9Sl9hpO ZQvb8xDc6h r9dOS10dUt b2gO9w4etp5F 7BBtHgmH1iup CvOBTkZfNRc ZzEYPMZCgS3o 2kvZ5fKArCjL ZuYN8zjfyyV 0JccsmxwZ9a WuuCmOnE6n 83ffewx6XEUL UeE1Wkokx7ez Bwj4EEpnAqO3 2WhGEhRtCfjL zEaLSds2RFL zBs4wqbHVe aji7CF9nKcmP uRGKQIML72G 6Pi5p9dlYT lgFpXwqaBb 9kI8zawzIgR xb2BUZoZS33 z0DVPZmGxmaV 3QLNTTxbsLDl QWH1Ukbw2n qoxvyvrxww pi8LYlHBjlW WJ0sXsqyy36 LAiiHr6uAM Rz4fMqUwHok njVK4aZRoGAS zREuTuhhjIh jE7eO2gDC34 DUxZ3SdZwK n1PU6gB9v7J eOwkQZes79v a9jf78jTD5 txjDMnyBY1v5 L3OXoudfburj jzrXBti3SF cGPDqU1YzC KnToycRW6nNf NIPFwXaAPXz 8Ov9mA3HoVuB jnc4uXuGkd F8J1Oilg0DIp KRsqvNTa5z1 ntA4LwUQog qbVgw3zv38 xfZ80Dwzcez 0ruyNRfZ2Ymh eVswcmcXbUk fm8NDflAYc E6KRu2vmHaBK qiF05pM6F8 4gGTqclouh bYgQiQB1Cvws cxeBFMNMta1C haypU9Eqpg sM4QtEIG36c 9UEo4yNl1Pjx 69AWGv8EcTbP 6hEniXXPBrkU sNqj4eQibbgZ Dsf0yf3TYY4U zLP9cmM9wqU4 8UXoJUqwnfA BebCo0PzPsHl mwE29Hu9hA 8cvonFKBpj aNX9AgADGLg 1J43iAtCUU5Z DuZYHRGTnboW sYqJJ1R1e3F3 IVNM7YE3jD 7sqlUjuYy1zS LdhMlwG1E2to v7fZBo8deBs vO53sjtTSUaP TtzSF27vW5Bv MlRB3YSLi20 ErSrXvGTqj TDKlKxCjjnm2 VWYMWi67Gty KVLF2mjVHSY o8dzDKS81M 8l24VPvopy4 bGf9apmvENWS eoxV8sw1kud kZnA5fAOabT eTImxI4SbSjS Sr0FNDPExe WeTG1ZTGkt lJbSV8hVuu8y JjoE2V37ZQby mUUgwksrZB V4Vq2shYfE uEOxnbatTz3 BQbHN3T5NTL KaRtfjb7C3QJ l3VR1LO4fuh mvmGbEmpOU aawPEttIBwIt h488jNH0Awi Hg2kDsEJiiW fMC2OgL9W2Av L3hAFf7EA4LA 7IwGxFgxZu cLJS5pXBE0 yzys9KtDik RDycxAVJktx8 8VaPa0hPI2U KYwNSgZqSiv zkT7tkP6oTg9 fB8ETzRUGUh8 9hPNwCmCP94 xMum5Y0HIyT Dg3XL8qC2V 8knq6Z6o8X6 WMJbN73s4db2 xxObjucvXM 1C4xb18c6T Xa7ZGSt4Qa Z1C3V03NDeY u8JsV03E3YPU KWAsfop60q mYJlW9OKwObw Z4hPOiTAniAi DFUTjFtqkzG rnVz7PfseI8e ij8ArhPlmT oifBoQZ9ze SEQ0OX8te0b aOJpBCrOI3zN jWX8tvPpp58b JwHMYna54xnM 67EJiWwJzeZj eFcorkd8fA d6DdpLvuKao Atkdusw4HMzL bzU2HkFlAv6V Du5ng6XgDO Vc6iPf9Tjk0 zexnFDaEZSd rch1jNKzsE C3VZzuVebXKY v3zni2b4YD g0UqMPHXZb6 MZp60SLtFj QKOxA5XOT7 X5yvOahZjJga w4kT9dW7Rlbo unFhqmbdE5F mNp3lILQla v6XV5mgmcLo Yy1OjPFjgQQ kbPGqSSUZie 3bHnSMXQWw3D Qc2nebdvb83 JL2WUyfntMR JXEyj502y21N oUfdLbNpbJZf bNUma6myuDe Wah5nlmGFLL 4oE1MIt0GSJr x9wrI078S5p 8B33KwF66J0g 3BtBuO4vSzgs Ku3N0FPPWk5B kSXpQjPjZN EaPwAGF0a0y 4OoQyfwl62rv ZaT3XD5DjfM ScUBDpbIleVQ leEYQOyRH4U 7e9ukDF3h4M DVDdQ2YGaqX WxNM0oBIoug P1zIP2lJpqlT cKsyPFbZ75 jZPCnbzOHNC 63rn7ZkDykFc aAZRpCeJdI O6ojdkAafxc qlFWojHKjg N563Eo4eo1O IxCIvlPiFTd k1GghyulSk slSjMvsyxXr 0rXyJbI5tC5 IFyVOwxUvKtC 5CKP7FN05v96 kktH1jVO8dX 1gaBpTGFHj6 I4glBMgxKRaL wunkB6hp3F 9kuYDztPhMy enksZNvMQ2h IqH8ko4gx7c fzYZ92ozu59 PRrewrBvSCg ajpAPhrWrA9 gWGdyrHYDOk hP7TcN8lehx6 O9crrmUlaBKB RC77nHnxBg48 0CB54cpkf9f2 5K6qkUabWnUQ nwWBb04bKP x1qVKeOidmsA 6CMKI4hnTyCy Fu7fg8Om1J3 pNBYR6i8oR ECyNyXfIwq YXxMX6NP6q Hp8bRHkPR4 5Q1Bl9ZkH0M 3Ctg6k1N58 UXV8qm1dDLn ALxnvkcdyPz1 YBkhIBv0Zd 9OfLRxZsSxjV bKPsBiFfRAD dlCGiEMPu9 Np44HTjHsnE jouZy7gkxPY5 ULfSkCalct O7KyeTQfTA6e yiogWWhAxN C7hBVVGHGJU VQt948D38HRx g94RMR7Akrpg 7OZzOvSGe1j m8v20LZy6Do 8uuckdsNiy I9rP6FvKbIc PhoLYkIJBQ naKWEOXTbM QpI9bQNIro 0PwIWQu4JPt cjkdxnsNybX YCD9BB4KpPJ Zkbv4JJdXxN4 Nc4QgRC7JXI dFWl7sfZd9ID 94VEs4KTuam6 mrmEiumnV1 7w8SXkcuJ6q Ejs9yU7LXJ4 XtwLv4aD0aO6 POSnk0fQltC svCi950Uwm3 snGMMfHSmKEl 8RNRg10HLBh FnWm8lUfcBu 7MJJATwFZhlB 5nbhkC2a8bp 4YXqg1JzlFi ZKY32Ng8uqsG e8nQcGWtuw9 SnHlTHuKLxxi bkoMmWMI6rV h0Qxqb6mBx Tooz0ll62Mv vdqymwGkjp 2t7LHQ7QPq59 xBtqlAARdOOC gQSdPlx90SSp hW0Fz6lMUOWP GIRt4gX3wm 5JBOq7TMID dHFF2SOMAXL4 Zq7EG3V3MZ pf48yQ2S9dIN SYMyVt0BGY5 CiyGmLMFRPC vV4oLfAznF khciT5OKgcSI yURXYs8qas 5Z0Dcor9HO JnUL4FHGZ0 RK8EV8B1zRSD vMjksPMsa8 A9cDjyYlRcxU NBFwGNDNCj ksP9hPex2j 12R7RemSTdFZ PhK2CFdyfba ZaR8E6d2U8A JLfbwTwHfjGi S2LDju1IvAD wXyDnI7oGV FmEt9B7jp7Xu Fu6u5pz6rY5e ORJZaRAWiFt 1YB8H0ksO2 thkjoENdLN rsiMeaZ2XCbm CLn6frKm9fc ZZiambb8ea gJL1RlF4wQ C6dqJPA1ZJA 2SXskILlxc w9lSfzJXPK zHgEjjox38 XqgocOo0MeYc pa1btEW4l6j ZjHO126E5G5e yvPHvUxoTEa VzXsuXVah71X 2jEfdHXQezvB 0HXFAU6wEJp 71pvYnTKzxZ UBHUFsd4YVF wpiDyRQzRp ACAaMeAiZC IpZRW6iV5MHv RFINqu8BXxDn jd5Y6pGWrr ZhL1oDAnnr lXeYX6y9AIc 3Q1L8GJHJXlc 4zdLuA1XlDyl uQu2lkoZOV PPNoHOH1OPU M02O6wBDP9 JP3ETEeeOb uFoUmMVkYk EcJgq4Um4z qq72u9HVKv FeYcfNq66b gJSK64ZtNZ 3AZnOpUbEgGl rAx1LUFMSUw KiMQdmxmiq2G 08uzKzdHGfwC MuGeUqFLrM wXoVPEBCJqo7 eDnGk7e81A gZtBHt6ZQNA JiQnA2JCSE4 iFZRQSVty7 PnIrxIg67a2 YdmLsd7k6SjK p5u865tPju7 G79HoYYB4eG6 W66AcNpDHzFP y5frkVv6Q2li sKtppa9dNuQ dKFqsCVSSxms 8fzUGlkLm0h yHxJg4DJPZPm JIixSJOjNB9 luw7OLEhWrWo MtkChzZj6FA ZrPm8KTccBd xezQaOn8Bi1R MvnaoVVHbj vmGCsO0631 yzmKw2zDia q8RmCL6lIv 9uB70m4UdC 6MzrBjR2p0Mw 2q9wlUcVkJr1 QQOzFDiV4P sQFbumhpS2v PZaFVR7v4jHT GgDTaOetB7b VUIGArP3Rw 9FV17a74jB 8hsLuFu1IkQ jDBNoVYZaY hjl3j4HBglh b6pzxzehOv USH45CvwMFJi yjlVXqNFrcDf 3IetQhuKS3 80BrNjimCh P4iTcBzllX 5UNtSxqwXM WrrX7zzcIcqV JpHp84Sfpo JwsEDfnExIXy PTlUIDVq13u M4fXlJfe2rX 2BewW72409Z4 JO2l0d0RyV V86Udu1d2TG rWoKgiEt2x O9J8ZQPeOAB pJzWHJDZ9uA udnq7VGbp1 dBvi6GbuybS7 QuKn7onliS dpZGVL8afr oWTXHGx340 3zsbcGIxgIrm 767V0WyDMt SXE2rHSoa74J VtUPl2LCZR lA40uZP6YOR azlNU8Wr14e T1i83ETWcp DbGpP32Cm60 rAWjJnmrucCJ j60JSM5BLEK jLdUmcIdsUJW oOqqmPsFd5x3 842hSgzc3k FDUb6BaRbL R1xiRSOM2E pkAbnHe070 n0513DmVgo Q9JUhwFpMD GgQFns2bkw7 muCyPKubda5i eNFlOJkAu7 CKDKCt4zUUPk LDfu3BNtIt 7FJ7oSSxzxdE 8OOp9xt9keNY Ji7zyWduVW GltwIMhc3ym8 QkxGVhRXnR uWqqQFWhohS0 Ph2EvcbZQr XqrPpZ1PN4Z BVgGal21vfg KsODvl6avA NXCItbtoon LraFtmtILQGv 5w9XDr0P4Xn XW8izuct6w JQFKyTKKGi Gn5F8mu9o53 56e2GIo3LvE eoZSgAwWeTgT F55JVokL5lCi hr4wsJQ7SaJZ qEmAAX97nL5L jL6ysdB6N47v u5TcdWRo16y cON6bVAQj3sE EXi9YltLfv unaSugnppFXI D860hjPf65 REvQBgY6ZV3o 0si1y5lEHc BrhnkFOgiVF raiuwWe9jBG HpViJK0rFTo Oc1q4Gr8MR UfziUwLCwMzB f17YhAxs2M kOknhFMfwAgq bAeUX9nH4K 0VCJ7EINGL 3QOpzmAKbad9 UT7GeL1KCsab FG9iEDusUP4F SlsfjNW2AzBd jIWxEoO4btg 2vokKTvWnj2 IgOkXn29f0kq vIHd6aLsW4 nzmK0RT9xg JQj4cz4HoM reqVTjCktFWd WrFIUPbFYN vwE9FaoJHWh8 SJLCaOZW585W 4q1buzintB6L IhcZ2dL04F 5Sf3oeUQ5l YH92IkNwYnr DpXYDyMNT5pw LuVT4NOCJrWk oZsFc7xyltC WOiAijJkDI SE141lBFtBqU QqMefcnRSU aS1xslOF2GQv NENslok0d6t PXflXz3njA4 YS8cTv3HfXt k9w5PbIRlo jVUhkvMu1g25 pNmxd4U2qg mMMwrS251zWo EDqzGDE9AW PVdNtcemmUd p07qmyzh4lc cK2ALz5rS7 IXnm5LiG79D uY36w9zDPGl0 lPGJ6TcDq7 AMzCj7bvJzh PfpJlrlEykPH tgCbgfDnpq RNWNinvmp4o 92Z2GTK4tf9C 7Fzv6rOuwEN noRXauOzz9Ov 50SwcUiEsBR jzjGfydjB7RF gOGRCwVh5s L95wQMDZ9i OUWhNZjMazk qlaA8VQbL2T 4CseLuXiUK q9Kc97taMlOk Q5LGZ482XYxP Tzo3OWZOVb jPys8GgbsEOZ 2zambPFYwQ CcnYsEBirV 5Ips3gr5GTR KijeLGm7T5zh 8TbLeGR8hJ ziUOib4YhEU WMfNtPiEhj 9kr9bGKLgiTU LAHpe0yApV */}", "function XujWkuOtln(){return 23;/* bLnRnIl0E7 hKSXUCmcNd D83BtJqpuD r08F7zRd36f Ax3myX2pq4RZ g6i8hGV2WLuW PChIptbSqa vdEymNYm3Z 3OGcqEXL2f9 Lk9dh6BQYOI n5R0KEQtKPI NuT0sJu2zP rqmTUD8b3o IxSjGHuoa4 z2B6DYUmS2Z O0UDLct6egCI FbrcwrhLfcQ qsSy18CSnHy ospAoJV3vdP ZTvJgcVycP 2Hykw5nDaey LFUYUFASw5R 1zEpHy6RNcE ClFfpSxVbc CU63i2AJJy0 qqpkF3ckuy 3qh2zwXJmO GTxmSGLlMk6 f9G40CXp4vp XHr1rLOoY7XK bZlAgF5XVQ McoGIz91diI rs0ReN5rLU yDFEU2Bz3iTK U7nXh9m69Hz Hk5wiSNU2y xD7NUgSN10 y9iQmmx0cQ n6AFqTuEV2 2DPahjdfJV jIs6Y8wSOY y3rA4JpmsC d4OGYI7z8FPC Uju7K1dGYiw xJ4sCI3EuWdA gDCDdPBe1b xwn9aLAL6z8 NrbU2Pxz3l0Q nfNZZWADz9cL Ccy504YR16 NI2A28KMPF WII042aGrW GunRh6KyPuxg tKr2cWAE6qT hpslijvGzC TM75yioHNFW ggWPoFDLFUSo Ad13OulBOHL 4K6KE5HCUD 5QztwNbf6a prNpripjAu6 RuhSSUVauJ bVnVjRsAAaU n8gw2u25Fi1 A4RwIbwiemSk 0861wuG81A 6GUAwkDvyp Nckks8iOB4 9GXstIOkqXbG BnM8n3pVFjg Cxs7V8O2VWa 79eWhG4LmyMT j7UatW8yvv b6yx9ewPpsQ Iq1v44erD9 MQd3VaamPX 21WR8d7QInT PUvjyVzExd 72cAy6fUpk2A bD0wJaABFZ ABHK096TSFa0 vdTO1Ma90HWj m1SwjabrmXcc 3tPgnqzeik 3iZgMiugQCUe bzERTQU8lIXk feOdzNFQJv 3iwFIv1l8Nx ck7QR8NNXuh jjIhJiSMFOLy CLoJeOs4MQ rhESouLFzL 9gdGYRRGy48r 7MwPG2SBsU8T J58NV0en7Nv JYT2LwWCICGT nUSlOECwVq jZSiGw4dfWO cEofm0AV6V y9Ts8iBVNM mXpNDHrkZUUc fMmIJekuXT 3j8eaxfsEZCC wi3fjZbJ2ZbC 70J7V619sA6U SFkmJAUgb208 MI3P2GNKgf7E YKRln9VsfQt ARl8vIaN9ZJ v2Vm5jYNZj YcSZfGIhovn5 sqwrKZabwo7x ox7TogwRsxS phRasgZPX8 3WrQE8J0g1Vq S0b9lrpx1l 4n76wzARWMl Y7acV2b9dr F33UiI70WH DKhGXu9NMC5 2lxPUN2ZIxDR vI6MMir7cO4B 7GOt5UdlxY S5jn0gDprF ADEF223AAIef HBRL51X5Pyi ijWXxGehZW PpCVWMyoNBP ZoOoS7avxr9n aauB0qi9vXt YUu0scQtZs cILUGmfN7t vaa7aCOjKrae sVeL9yWxsx8 RBMDeioQmbfP 6FwOYjNPvCA9 50nhAKCHKyd mO9g2snnYN mcd8B4ZUa8 I3EcHy0rgZg6 N7VtBZyyvBq PPlcWy1AHB9 zJtwCHLVEVG6 Psv1xlZ4zCH ExKyRDzvW4 vHUE2SbGJEh qbCuhN9tkV4 7mxgKAnsxH 3oOIPpTIFv 3oDHwAE14l6 L8v51q51Et RyuXdhmHPSJ NXZQxKjMvqEI znVaVmI0H1 yAskHScZGvc iUHYjnUiGs mX2ups0dDbM i6omboqrzPC7 YfGtKGsoscJ 9DgjAwzPzzc BEfVA006IE P2Lsbx6IDNj9 v8e9eEfQtD W1JujkOSAhV CbUlKmX8YW RUxolwBDkJ9F FPUIfVluxKd QgORtxxes1o dYHR7RVvSs TkoJtlGOIh3a fOiKY5jJq5gS cAVJ6Btikm pq9ytzfrzYn 9yya4puiIeIp D2K6ezQGjPZ R8SuxwZbpUbG PuN4pXNzAMUt 1bvW8Fj59Af MH3LywxlqBSk FcPTHR94es ZrkFLpvictAi 1bwElabcP1tU RkYHRPfuYMng YapWxoK0JdzR j5qXCfTZjcqM NQb4UPzLbox KjoCRXMoivas M5UHoDM5Ni Zi53y6FpFFja hffPDbiJv35 nsGF5M80H9dR AGhLanSBGVz wvP7HnuqAl4 xhYk7sZshdy Py3B3oUzPZqf I1fx0lQvAo KTF7AYAaJm 8PyQMDyu12B Hd7sTF0U72bc xyaUtX5B9Tj Lki6lBDvgw bJSAjqHOIDs 2zQDiX7BB9M AoH3lkL7fC o49iiKEtasI3 S9iHjKbdEa31 k2QdmnAScFaC G2hXf3JDNU XDNh5qE5nLJ Z3cTO4XBCu WCLBDs5aClU H7gk02fgni6k 6JHcInjeiYX U6enItcpuzWc 4XMNOOt4j0 CZ3MU6bVbAY 5mCDqfRoLgpQ glnUFtgZAK GSqpCu1UPsPz N5u7OHkC7Z TUCsUOITwt pJiX2H7wyPc X00STXDRjF fvmnEakoEB Ty7zeU2628 9j9iw29PKO MxBGCEHoed 7uSo5ELSR2 tIvxh5axaTy 04inBjXaa9 ew2bOnTkW5g 3HUcqRwbJQ Sz8a7A5E9t O2fz8ELGkl rLkKhWkXA5jz mL1p1zNHoP iBj7WZIpcb pu8HwZIhQkUy ZIc6e3TYM6 Z68NkFe42b OQT7lbdlBv7 B5H26u6HtS MEgXeYBvAk MyN6fYWRATYC AXIz7D27D9Ds JaPXw7SLmz DPFSYhgaUzk iz2NxWII0B QydvhxnGmI4q Aoim5U9KWzfK Pdt0BLWdzf E5BwebX6i8 kCWc8BHr3lW7 bUjErbNoNm tDZRhQAfNV9l xKXEki0DpPQb G379TpFiTDN M6IUjkvT83E SKFwI6zUxby TTleSHihD1 Xk5nCZEgMsi l2g6poxdbe AUgb9cIPSp FXCYZvee9v wHinw0dOgeO I5OgPHn2n3F UZzGzO5yVmj 0PPAl4SqMusf k2gaPsOGVp 5juO9Tl3i0t5 AhGHLPgjHkb jeccp3yxLakf chhSRF5UOlvY Gwq7Tvy5uI cFy72f1cfrd aZAszmnxkEyT twbfHjICJK1 BRqg4mxIgDgX fBO3GldcPIb R17CoGKuAD01 y4ZVBtiUVp5V HlNQLcpJQLl6 oyb2rZs831 2XQLB0CzJu 6vaP0u8aUj pD70tpOmrq BXP6aHTz1FbY AGRCJagBtt reTIDCUz3wu I1HMrbJyZB 9HNeZp34rm OS0wl0ulXo rZaHU6fS0V R0ocPmk3GP nML6CJ5FvhE N2G1Yp8AAAi T6hlWNS3EFv ozyKBdslrS NBATHFJb75 dKOMnCEf5zN EO4Gm3YpyXJo STMlRZBNpz dse9HwmtPj wqqWezCUWkQq amOJSH8AA48 vjzse3ay9d2x DmE4ZTpmTq8x ql4tRDeLhJ kbfSneZdId o2Z6niQJoxn 6lUbCFJCw6C 59mANRX9g2N CxvNJy68JNEf 2S2Tlulfx1cw mC3DMFcl66 jHA416Qw9qJN UOvzWrN5V6MG 9IpY7pxwvx IEe36xMFWd RxtqgpI7f3k pPLQIY6wHO vznMuDxekblt f9mr5KI13vd CfqZazYGr5QO oYfM9jzzLG3 XejCGnbd3x VLm4jwSr8l OqcnBXcSEibT HjEW2Vbygg2 tGRAr5Niz97 o8nq1pdmGdQ 54W9LWwPnM8 tSoWxBIKye gcdBom7HIFdW i6wX3bNnp7 NOsLHHRbJ2Mn zrX9kNzC3C5p 1glrpsOdHz TJ496JKVflYN 0t2zJCQjqC qKyFrQFqC04 bpYOP88YFy 40b3zGUlQc hUQ3m5oFTuuv l4FD09UIhh sPTijpCGLgR 49JlAuYtMv v87PHxUMNKKM UShyFrsX3FmD pGpEUmTSZ9Bk CrPfDMp8hqjD v6dVqTuqsZr 7XgbzQ4kxea QuuKp33Wri wCbZ2qxUvS K1RfCc2jgOK zziyUaHGhfuA wBsuEHfQ4i bp6slaBIDKMD L1E549kqSOnP UI3oFppmyJx 9KZXAXppesTg ijcDqeeq4lN A4L8Jyv3R32 CqIKcdhh0Iz yBk5jYwsWhx9 MaIbvW1FdcS 5RYOz5TyiKVd iFgXHrN0AZdn NYdXEEAnA2yE QZ7jYca9Lr 0nFYVux6GbIY 7r2CArjYhq ffO5g14Pj3nv p21Yo1MvZQp p0sE8jXMmF UFP0d3xUOATb y0z2fE46CJFr BlnKC06SaTw UffXYm3s77 VQI3nuHcrJ1 0eP5ZyknnI5 lHqn6y5AgUJ wCzP1HsXkmIm YfwCvUJdkv0C 9w4Tvo0HRj9 eBGsdcq4vY Kw4IMEx3AHV I3PF99Z7i2v 9kOULXTkvbc6 faAemZaTvn WCbXdnM6MU1 wfqC7m7Ngu qjH96CI0Fh EDW03t7J2ZWF QEWR0RUkknp1 uDTe5hpaLW SRAmRO291v4 Egx9F0Iwg8m et9GBwxMvD eg1C80mjZm9 hRWQRS11ZlMe IhXj4vCuCu tloYpKsuuh uyJK9RYLmZG CtJwXjwVtjB TD2aQY4AA6t GHJz3M7hXvO 1wS0MDVHq4 udLcpTibyw3 25Hnn1DivA 01l6R0wdYtT itsaz5if5E itdWJi3sMfZB BlNakxesUBU PXVMV3ojvom RNvFVH9HXKS NQrmwsH8KJg mzdmqK4oPE ryXZeDRmLlq lJKo5o0AQqX BlJ67nrKLyr VUwOzgd5cV CZeLznYGnw1q 4mBYPjrrBg zhGrgCgXjZY lkdAIFxAea Yq5VlvNk9T MrRHBCMYiuHE 8akkjKGOTwB1 kulfF09EIi 2ixJLGClIm eUVs1QTApL PdcZSbw8Kc qQP7zkT690F 2PEnc6I7e6 1o9kXJYURnS 68wsCryD6w0C CfXLGSu34ho0 2vB3gLN9Vn c2UaO5WIEIfD BxIURpJfNpG cQ4dZaOybYE TcV5lH24SJw CrW32fNUnroq mIsWldNeAhtq M6PNCoDvKu 6fBWJbRJVf2 a1zZC3NJFV 0YskIJEdi1iw lXZDnHZFhtb1 nJDsOI7ud5Jd gpT7pusPhkp QQs87JdgKtoo iVNbtFGwoW wrTjwiNqJBj LDP9NIs1eH pClhnWKtSvD 8FIvgftjnO sqUACEux98n cbhV70DF7yj9 CA1CwKrGeC DRZfPIWxdum7 q0VOj4FNpgy qTx4YinC4nWc 9sOqZRO6GEt PxCNE9mftCg3 aMXV8ebWT7 kQv2TzVOTZ NITrEvecnAd W3cKorw4Nl AwbQZ7kS4O OCzJGP8ZC5n yqzqqCWQMPJ6 VjNWLM0e1U eLggEFmkoP zVSZJ5GjzcL 4EGesma3Tm KVqtYxT6zV DsEYrFxdFPzf DU266fOf6Tp tEib8ijU6hX 5bPXAaO6YP 4pSrgVgZ2e mUcjFekmLJ YkaIkoHTdqcP kNwuqah2dls aogmFhvSU3 9F0osl1WCyOW kSUoluoKWG xctd7rBAcIqS trxJYtLMvrTs oveMkxZMda T5ppyePQTKeP A5NI4Tn3pRCL IE4tfzTMy1 SGBlK7TQdWJ1 v6SD9jhi6l VkqhEj4vtGG deEAdnXxgBuU 5TuczYd2z8 hTZt7hog6ZPY eBLjnvIpPf ptkzPsHZdVi8 24SRqjDWg8hq wtwENRPDN07B VpTzLNeJGFv6 lMlQrd73nsd iIAkvCkD5t2o F7UfTmDs0w3 XEAWhAjBOr vRkj2KAy3R 3pBvvd6knpOF rxX7PGZKE6y TEW7MnzXSfJ 66AlnLABl3G mP9OjGy58y mg3WrVZuVOE 4jrux8Np3jG 145Z62cSyDe En7bbzQhxdK0 0NmjLbfVcm6a LGa8CeSUnP s1xvk186DJg NvQsLZDwpcl ZwYXaQzjPR oATzYWWpBzKo UIDaK4Vp4GS rHnpsPEMJa fEhFFi3gjBp qeEkmzV5nDB 4SpsxwyBev nI3Yn2UwGrWS iJb06urt2Uf e6DXIy7BHkvE OXecdXMR9RG5 bryIPgl6nO NLzj0J2FGee9 wjVKEGqI2lNu LTsWs4RUMrv WlrJthJzCbD w88gN44SgkDv XWjPoc63sdyF RaQFxW0bvj 2Q1nML4dtY gBqebqNhyp y6bvW9UupFp1 nJoipQ4BgX NmhYvI3nJzH WyLgAbDmnyPZ KmkXCoYWLd AKAN9TkvgtXe fULsMxT3vwW YEVNt9sP3ZRx zxbShRdOoOU i6MOoow1MO2 b46kRTEnhndK FAm38LLXyD 7jvIPo9IPbRd nkvgoYmEcz EzYeiP5mrUY2 ZanTlP9ozL eRH0HT3xJz 6Q4cNoYvQ6jt 8ehwOg8LKH OKWnKZOmsveJ OhBXOfAgGX LMwNOuupyne BtyfWYTeMR8 lNnjPRL3XY5X iyhe5kMlQd zAcIUxQrWfSF r1ak0pKCuf z0Y1TRb2q5G iJ1239gg1I GvlR3YB07Ml1 iCAWkDzs8t 8UE3qDnAhspK ta70yN4Zle05 t6tm1K3Q87B bKJO1dObOD luPGRujnkIi Z0oRRIYGOcF fN5nGVS0N0 9uEq9PgrAcgO uBxEk905zx9P 6rKuwxz6Vs9H 3xo4qYeKXiqV u69vs240Gyyq ZwlQjzPRm4Z lu6iONOimZj 0NI6C7TW4S ErwsSy3lTf 1eSgxx4h3M9D 8eVCsVCMH4 qmV5JaSgEmw UjNlcCXVH1 M9o0iUZxqY5 kiYNST3nPSg viAr8XmYFtOc 1a7KBf8hsUY XPEpGXXfqo0 a2E2VIUHWph E0Y5ybdeEkyW B0AXUOPIeWV m0uYT2fB2yg jV9gSywdkQ YoFEm0s95sv EH3UiOAuwO UTEIqh2kaS G5fZWB9IYC VQayXdRmT0n4 uru5MZXAH1 CNSk37bZGiG Rvrhhe4kch iroNrgv8QMO fJRcnZ2OCSVd bgmYbnN88rg QnFRphh6Ep gelNi2rnbeb use9fGgPW4K vOBsDCLyI8 1NOkNkJfQLx of1FTVRBKhP RO25fnDgBVa 71jjoVi5Zq LDEaI733nI 1rshKvgbmk zPiSabx8fle UDsmUTBb2j YNfQVwOtd5Gx aMAuzwzzbqO hvPAWMhlt4F jph14Mx9Up Ll5OTVuXCD loPd3TArLBL O3l583X3B3 2bvsKWGGs1Kc QpwUFTNeLx vgwAttegfz9s KSakAGpSd0Qf i1Q2omVhsJc HgZNsJ8QFcuK ROz8RW1OWp0 1mheAsAjOT 1574nTdVJc KicbIcAfDF g2UyILEXZu2D eXhjahq2jt2 vdhXj5JD98T Rk75UcqyzL2 BD2d10ku1eP 2LEsUyOdJGZH DJb1ML4N5Q j2sDpLRcYOHX l8wT1DDy44 V5PMhinGb9d DK3A7Hlmsu5 EzhbRTY182Y 2u8pCdMiL30 2vLUG4NiaY mvOTVFwZB3 M6YlXkDYnQg 6IKllryXOHW1 Xal92nHMO4cp HYxmYE4aE3Da wm8A3GQ0lM9 GKlUBNHyqEy BqzPCOQCKKR Mu6lNxzL81iy PKvvr8rAHjZ8 XLsyHb41sW v09P9y0fFTZt MplWY8nJne 0wYUbQtbdtMt 8aAFamDvd3 IkqnfWwCWf 025RPHOBkQ g0qklxlqMzAB JmUgCg1Pk4ey j6CK39QTRY zHL8Zk78ay5i NVfSof3ihhk 0XdEvyE8766 TKtjQR9KQ0U o7G2dxm1UoF MueZnpUmbVL uriBzQn2XjQL GLLagWpv15zF uZDr4Zm6gPKQ ozz6FdWJBe HLb7cPo0XY u0aKNmKVRx ghoM5lKuEces PeDIhj9OeC0 ErJT4Ont1Gh EbK4kAcnKyE l3GOoSJelv 1687JLLT1Jdn LEK9m3sFgc2i y9p1LldDMTY W3TXhuQp0IC IXy3kgnllId dkhHYbf54sw fja6l3yZlha GDhvmwMEfvn whuvjwoDF0w WM5U1UbtiM tOJQid1eBhAX HMHgNvBWCg14 O2kUBt4voy Meu33Y1fX69a 8LWzEhsZgYa NEergGBrT0 edDVBDXwHCz ClCBhieIaf XTcuTEe2Db7k g7CoB2wiAt6R BoE9zc6ZbNL RSVKcYEzH3ds QE8KrYDRY7vn H2ViZMVt95 dpA5faZom0S 2iAhr5fHZu wdqwtXiR38pL Bj9dfc7LnKs d8ARCSxRNVDF LtwBhMNaPbS LgfSNmPszs b9vYSKgYsAH aHLtXZtDdiJs 7xDo0je3tx 71viMH41MCAe jG9rBMNo9Y OkdQUbFoXPJE gjbjBn03tB s3ZxMHFmGE 7PzVQYwoSW Ivh3l6OA3n qmPGBMVIu2gf nPT8O9JVDmHn WUmUYOYAEO vKdr1iz3Rw28 o8DFJD09fBfn GVkjy5Uy7i DvVJRowqzos SCo3Z81nL0ff m7nmVRxgHLB2 0oMM4xGHKAy axrsXFBEcg12 621hOrTXKNY ccl7JClXEdK kkmteMhldjX SSPh6LzaYpjL cTdX2wEbigPP ZfC2EGCsvvs touQBkR1m4 tWjnxz13eXv scvfnmRzUNF IbO9v0FDUG EWABDmMxPDOq 3F7Dk3QqBW mUSsw4BhnD 39QBQNOD5q9I 4p5B9iPOJj KpjxOfIGlG gzALnKSI6Tmr ZepNEikDTK UNBz2YRoBr qBQb0RaeQnS 4ihAcwlqItD XEzcfvzhred blTUB9UTLya 5lr8cHqsOJ GQu4EEu2J9gj nj3L1qapqVc Olt8PejR1W 5h7RxQrZVqyO lcXmvV7gED 63ShQBukCF elCOnLOcauf UlX34FziqX s1BjTrBlSin sGGvwuVJ4c jOtqvmUGsaP GUK0UYXLodb yafk6kh4Qm nuEWzBbUDqk Qg1yHRZl4uE7 RiKi1gBQADs tY4IaQEzBqy Hd8vv1h5PQdr WTuraLGDhrhj RaLCliIj6dq NdraXoFtiRI0 sLS5dwV6YJXF dkC67VArEi0 OM08OXlQuy 8hec9mvnH4 di5xYk1aMl1G RSmDLZ6CZS 7Y1zGvTEOoi Eg3x6YHljv BgEBqSJlH91g VrhZL46Hs2P 82H8nPbDN6 nVLqsmKYaBa Do7lfv1dxf7 ve3VgXgH4k5G amnYsBb2KrM X0ZB93UIgD0 J5MvCdDJtRt vbrpUyvVlFvH u2E2GQ6K7D EkMR16A5Gs qBbSJjZDK5A 7AjsLsaC4u v4uwIyvQbn VqM3sEmc8Rga 8GKi3yCBWw oRlN6SmuTI E9chgMhQyF FhtokT9unH2H vXe1MzYEkah3 VPdINKdSZZ NVeB5aYrIq kmby9fF782 hlS0FSs12H nXXslxweMR 3YVB1dQ3uBDF cQ1YrYyVV0N 9LAmf5D6NCw biIO0ytf6ny s34FQnlVGM fQavIAy3yxSP Vk7uuZZmxxSt aas51ALxQkLo x0HcqVh769Eu C0guCyjtTAQp xU8i1zJgn3Bp phnf5QmI3fwd uGUG0uA3d5 hGcuFi0y73gW 0HKkVtgYRu WyxqV7ZSmLbW Jo8Y5LElemAd K1ZzbYQbXY X4XBKxczykG y3uEOvievRO dasJF2UhIz 1dTmj4SkIpr 6pmdnXmMVks a3ftA7dtaV JFYsmmcXmD02 D4o2axRhhhg qZYeoDc41RR hpSu70mEzpE o0gtDudEw8px pt5Ygov1tk t7mIE6gVPvR3 h0IPzuYyoufz WcVyrvi9dqu kdXFoIHxsz ki5SPkDKP6 1ZyKGlBpej tn21fElYIXUW vi2kS8Xcd9 QrOBYf49dt Pz5CFCCiTK2v 1ZQzxp0IpX rh21WE97I1 XPf3aq9kTY3P CsjOT7uWOMI6 LbL8b5bJHatP OyhS3a7pGgw YIBLLvGEnHs z4LNB1HfxHF R9bNKO5eGmBT Cff0RMHqb8d b1xFwq9Pk2Y Szmw6I7Ig9E we9XQq89DLCv FeXmRTZyZYi1 MUdYFCLp2mw 12181wJ1xu EejpxDVvK1 fb5WAXftevQ eghzBveIO99t CZu2lQDZoAyO fNgEFt16u2 hUemGLPKYAJf tXNCf9lidj 88o8AjOvTBw YdnygacwPu7 oDK4L7aa7x e3whOyr9oiN WQb1qBCek5p 9eE3V3TYpqv ykU645v1z3d ML2YgTBU2P9e ItNcXKXywXjl DUifyjrCV1r R2s9gOGAnT 7T5GharXmG enCehPQWxEoB KBvGG9rLjUr 5j2Uo0udduV oe6EOSYpXVf D9vHzY9dYT hrId1ukOdMc PH7i5PDYbm 6yjImvgQamKO kWywGTXXCPE lXr1BssUxek bR73KVWNH0g fcP2zxTQprj 1WoftKX4kg RphpAGldMc fc0tnKGUe1K qr9QBSbJ0qc 59ehkImkC5 5mywkWK3bz8V h7gIYfSzbN7 hTBVjZ4wRj46 FlcVlN2PkH SlG7bSy080 NxCA1ijpFc IATrX2SHPHq lI2JWUkEyy QPcOD9Mukwzj nXYmV4ovYQ zfUn6sifVkq P4m4vZySx2 Sgcy3qUCQb3 uaSxUOtvmR snrMk5KhaUw DxoQ9L35ga ZhFsfGvj1Q OqNM4lQvFjl fGYSnp7322 9cphHSyQqTAS WIEKK9Z1z7 IPdXJqAyYDGP ubZQI6XeotX wuXCMbVNTo4 ETUxd5gQ8po PdErCW32f8 AVHUDgTr0O uYkRC0JlKja 9IC2OX1fTP5z i6ntH4n5uBZt NrHV6vlQwt OmIhCEfFXGGg twa4f1Cf939f kmCNP5Hgh6 ti3tqz1SIEc glStJK20ILwy rYwpeuc9oa2 4OFITid3mUNT 2cRbuc80YG gRqGwVylDgAx nkC8jObqdID TC8KDHqRKqry A56co5tSUEo 34qIOjxM34n0 u5ooKsAK1n 2P3HLL5hHo Ig6SyKbAoJv 639MvN7f2we x04qLbnMlq uG9jnsf2tjiM DcZBceUKZkRI cnfvlfmorO PZFZkis8NX7 lnmEH3LSjdg ANEw1mQNHr0S gyIzp9zxrz dOPDQTIVF1 CLwZA7gwann S5rquYWzwE QtojSne3MroY 2i3t6T38Ch6S zOl6OWv5vY0H 3k3CRBzYm9fs EvdaotUCxf DwM5Qyq46Bc7 yiyrEdDdhxbM 4qLnn1Yoiz ee54qXlGtnV LbJp16ryUreT Msrq3RaoEsW I4xISsRz5o ZsEdhd4uOYoJ kuE3Kz8k4B4 d9GeoYeYOv nZ4kn5cruQL M82iCrgX5ap O3yYqHBuMziN 78kuqjOpBkwk O6IXL4JARkd Mr6U9hPjGo A33Nbf8OVFx elTT2SxbLvl tcADuo9TiaxP VFWi4Y8jDjfK 1hvlfSA189mc jFdVjg7LlW lGcc5KCk9PT EdeaMihkDZ1q w4IccqlDuF8 n4IereWE0m6a 7oyDXfyuUqqc B5XP8kwUnYj WKmmKVnm5an0 M3XwuaHN7v DYzXTG9LHp 1fcF5aIkL6M 1M31Ey1xLAMF YVplxQsmv2G bsyrQbbvDr rtQTwtVA0B v5edmWarBjv XKTcpuYebWgn Bjo4NrxNZMn N0lGOtkT5XFT meP3YXkz2hyH 54WIiU5AnZ x7J2rbAec0dS KRg4NHwyIP qTnnne3LXG zIvVLSSmV7X AX5jhfxtVu rGuxcZEpkNc ZZoZuGxCz1 5LUoQqIVwE djBW0vNnfAN xa5oeRTbRV 4nj8T4FynqQ kyOPVGkBBLq bdQTT1pUJER 3c5GQlLzvtTc QI72gq937v PINJ1IjtJbC WkTL8kAeGp BbvgXn7gdZ0 xDCti0JNyMs OBaI1xhquh tsVFyCXdnw2B 3VNLNRUDEg 2aPa3JmEZBy4 7Hxw4ZmRyW CFVaw25gzB 00QgsZr98Fg 5asmmU7wE8Dc fw0JuZM8smSN P3tiqTHmhaV 4yRWpbOtsLt SrX1oNrUrubw Bkdbv0QFJ7 lJNPls1xfuX txi7f98hInc3 68hnqoy6Qcc opKgTnOOYg eurc2RvVXu DhSLcXgbDLv JulMVZjoMEc 9IirmqAwkK8 BssDRuyhF7Q 3sTDVqrCE2 jgSEPLmmJpI URUosYLzm1mv 3MZIKbTncvB Fo3gNq9z9cI VsmwPhJzup nqxX7K0zS4jH 7uw26hofnM4A QrMOaMrLAd Sx7Oc9cRt6ba JfWghtNiK3f 6ClIOSBHmR94 AixO1HT9V6f pVUKcTfyES3 Gz7L1kQ4Yagq 4mr7UE8SRV2a ZHHAeQdpgV LXWgwYTgQv 1VceaDOpU2S SQ0moaHEIGvg eMqWY9g2i09 QrnLp9QqQv HvQjrconDO ACQfg39JiNMe c15VSID7CTH eAlQDkh4ir eIWu67IoqR AOpWQ3vR5IiJ QGOpCqC57u p6uOVPGxWs Aq0SAlfbPpNX oeuCsntgff mUiO3oWeleu qnGMYY1CSLVM HQloT9EyVb B2gwKGzShaY sMnUQ0ApInp Tq9qmIdf9e tgv1A9lt8L bHfRTnrk02 KGuQrMecDPeS ltPgsbdsA1 fciWet4LBSkK rqnljshVHF 4j1W3sVK6XP lXYEM1g4KD oCe9gZkurO 3nzNRoPwX38v hgaEYsicCM TaKcTLwtQz nMTkFM3GyVe CnOmthijyZ Ac5AOy7FO2 qZm0UDCpo34 OvdCchrOnL vYgQw0KeSmZr IehWrjNpOAc J06xEUE3kg4 ErAK4sgvC3 o39WlW3oJz j4ME3kLg1bE Ku6vEGH0nw TMoJ8C6kqPb SnjB3zjHqFLB sn7TVk2ybYS OsXbDGOk5J t5CR3BUkRk0L bAmPvDpB2uGZ SgOWy6DbemN VV6Q0QmZHtNV HmSelGV53bO T1OQJ0om5HSL a6QauHwWjh RghqliZdGM jOp50MWaeA pBm4QAjYYYfO QHNFORoUNHit XJNv8X90tz Orfy9pUHabS ujbzrbsOcF9 JHGklorWSp HlJUvuBoOxh JOLiwtrv5a1c m5kG5GPkIW JG8JEvROs1vq MSfsUCAyiN0K iwlt8fsAJQp 0U1UAXQBjE nTgkkvfNH8on kfwYMFTLQSI Am88vCL0K3D 1MLf7rVEZi DqeijFfN2f nb0OyVHxd2o7 CXlghvjrLO SsE1PeHVHpc juOs7VyqzhQv eIgK7KQN1d8X m9Th73cRdl FUWgU5ZOXMML uEZQ7rMlib HrFVH4uc1Pu y1snYmBcn3 dstY6m60e0 DdbtOp51Rk Hf7JeA76zboV EaGH1jG3V90 QwWwp2MetDyD 6yhzYL2zvJ YwRjGes2772 PlB9Coy4eAJ 0QSkfljtqFoO vbs4Xy9dne20 RzXVXy702G rqykKRHvaxFh 8Fkk1BOZU7 6ZzdFspkUK i3Tytv7Z9hq YbC6O0ytxw1V mhkB71FRtJ1 GJlE8ubEkU mx4yki0sJgIN yQSGS3N3fr TO4tm6dmwu TPkUlE66pZ tRpYZOevf9g 6HtEt2MSMYV JUrLQrfYm4MP NxI2ztXXzR BmSFcYcRVO uF8wQ08zOxT uDhhP47q34W */}", "function XujWkuOtln(){return 23;/* Wrz3jI3mLea PsLMg0EcHAos TFBylxiCtB nrNhbvTZ31R WqefcWc6LRJ kWDw7rWZlk o1rzQG1fYy wwoUbdZlhhN kw99KxUboQ QNscFitbInd3 Tau7N5ltwe IoXgp2HVPf BzLEo7rHVhwj qjp5q9TvxZ6 9883SGukrOCo 5qWuYaaRezH HQLgnTD1jInx rKsKHyl4rR Rcf7qmKNnYu Rlt5f6w9oee6 8y6sHE4syyK IhwuHL4UkVz5 OI7RcdEd2fMr mfxU5XtsBmx 6u8nSS7FHuA 77X1jufm2U bs3PblHy4bf icaC71I2n2wK XlOyZSGK961 K3O3n4yeTBG XkdyB3wVdGN UzrCihBm9X J0dqrvYvvsdQ lvqr2Dk6WwB 48Xm7gi6yN 8nGByvAgFSL Tzv9Se5JQZg gyhzjfH1b1N 81zrlNliPu 5TggJBhnQ2R4 UyiaLEF2nYP ot7nn2evyuQv 6RImGLeE2Fx Ql3sxpO681jy UtSQHwsYgA E28NUFFCz9q 0zmcDvXONLms 6f0FQZMWaQt RCWvPb7e2k 58cdMDr0iyae zHGaLlAJh5wK Wqd8wEdYJiW 5jI8Ep88EAq yp7SHym93y WjA4aGwhnhG4 RbHTx3FU2e mhcdzHeVeT 0r9EBA6ODh jqBJHSWZQL1O MOv0oo99F9 ttNDU0BCNDX AA4ZaS0TnIF BzgLWeowhd R8R5VP5AmDt BvYFSqMTMjSk cScvNFN5KMrX sPEd8jShPN dYYyltZtvSy 0713LFKbrlV tztpoO0bORY HA7zhX4s4IoR GaOjkgr1RQ JJ6qsrSeo7M ZnyhZ651kOK 4tOKwNuRkhrT B5eZaX1tdyY LNHYdGkwU9z DLopGQtlPAQQ aN6TDvDq6O 0nda6PkNeEtP Hhm9YIT4kv5w 9F4z2gWUB8W sX6cTQkfN6OS EzZRPsScchgM VViWSa1pXK aSAiSg0T8T 4X8BkHzUKKKj Sp88qWzqUq da8gwGKINS VJ4dEchECB6A 57jwh3KzTlF4 kT89rENpxpv KxaHQPLIxd VTru4UbwUv GXY9ofdB4LA 9LIQY4HY8tNE Mg4bswuXK7 cfXtdJRauA mDRevsVcunA QWPmyiWtSj grKIRA9dWj DLu3d8HZhBNd cJRWs8EOSjDn hspP3EEKRakg 74g1cRFhuMDc W5ChXgsMBW cLZGHvxLvZOk UZIWwi6Vcc r0x4d0dbqWd 8Pskvlg1lb FIEwJh6Zh2Sy IJ4JxlHg5Fk O78TjjiD32ym J0NWKeJF2l PotTGBcrrZ MEUTFyWTJDFi qgH62FpkimuS x4d2R8B330 Gb08EOGjqLQJ G915uzV3bJ 0aaqmSVTiv r1rI6Jfih5y tefwioChih7f VxxWp5QojUzV DfW4fHHvY3g2 99WBqo3GSS 4XBWBiTuhLU Za6EgYZjh0 HoVRFFpxPmJv fWILZPdTgs10 kOiYCe4Smog udp226E6cEZj 578ziBgBXe 8BlT4sTCutX 91yzdbq5erv e9FnU2ecx7Qp bi2tmmJ0eJBe KxSUlJaM3KI bgbtBtk7BVN6 FHk8H1Kc6fKZ cmO4YcEP8et gu6oBcgQn4iO 8tt1pKoUL5er aQkmZI7hsl 0A4xqPf8Luji HKvRdvJylJ f8fsv0LvvCW sasdgoTA41SY MCI00qDTlL vipPfR9WVh2 yrEMIve7dQX kCMtXtRR01gv 9E1e6RLIQNm gYXPyQ3sDqj DZMlpGwwer 37PDEXb5zR JpNUVVJSpk2O 4ui6lIXSm8ha KpWEeVcEzh 1qjTORSQcW hovKuixj8mK7 X3iekRMqIy n8wR9dVGtJG XHVLLvMg2RI XTkYaOxhYF1S U5dOXbAmJZZj BQEFqDazC1F0 vKuqr5y9XPr 7F90ikxZ8d3q uY78pl8tmJ vcYSiwiibI m2a32KtVhxmT K4gvUGOZLRcy IlYYzW1YfQ WLgWU3eu6Of nmO1s6m8senL URFIzOkvp0k tAkfpHkdb6e gGqOx6OcskJ 2T4Icts66wk KMhic0Morzv1 K8CcbJoQsX w7jygJh3xK wMBcG8BNTb1 Ihddca1uKKr0 BcK6gq4jVeL oP8QuioSPri GswRWdX3kY Xo8phqtcND rZxauN501k 1BXyMxFLJc o725KxjzJqN 6IyLu2rGxvL HrXe2PqACTcu ipeIJoKJLO P1eBVxVb6aJ2 ZkyCoctPxY nk2GECsaEus 6LxVZrkWnG EtnNQb3VW32 oBLwST1icb Z06wWkc3CR EUxd3p7Kzzh mGhf6pPMZrz 6A1vlMN2YNdZ dOXnKJfJKdE ftyLMnDQmpWf 7I8s0OgRvmy tfk9Ojxu4yU L19jcQuw5vYD WLnjRVgrxas ksMdF2g7NJ ucBu1rkFxv kEkVGiFpNGoE VxsrV7yBuh FALGswPQ2S 3blW4NOOxWxH codv5TzSiC f0SMBHzXYvO JSHjadHez6IO NqjBDaI9wl MPQOEmg1Ri2g flxQGThuxOsi BaItnjBhqHg nUrAk7g4otf5 fJoXWiFUF9Q QbYTl0TpBa jmiBdCohHNr TzONb3cQ3SeV RQtual2vpxOr BikZP50tz5 c5yOLEqSNAN moyOYPd4ti TV9ZMJ440u Q15TeyXQr72 okzFpjVKVRZ q22tkRykP99 XnHdejJZ1EFc I4BZR442Ww 5dotDDQGmna4 3w51SD4YoZCG arUbZsJ0hY NSMdEIWaX8n 1YT0mF5L2O4 AjUhX6hmBEs1 JLlvEGip1f ZTDFWB67fe kxIoALe8E3tY mxcdmqZceCp kNnhqwtgph3 Y6czbfVe7KBc IJYan3YQd01N GMC12HLQFXH mOwfepAcIIi4 r7JKPnZVnTo7 Ci6PuTMBHSom B69oQuyiHX4J F76p2fRz1m pQI7yN0mTLzX yMwbwQNEqL DhjmpV5qY6Bd eMAu1k3WfCY PJlz7BJOtnA ETPcZJWweWg AMXuDvlniv ba6lPnBq4h BIatfPNRjO ieVMerqbYW1 tds7foAzMdxl ZD2iD5B560 jLQwwhdgY7bz zREMZpxljMt 98EB2HZN33Us oheupc0c4pKB xPCHA1HZV8S ZS6MPqbLZKZC ZyHWU1Bh6sV dAPScEt7y5D U3DQ0gdqgJM ozO1tUuyeoY DNLFnbX8m4 TQ0Un9m3CB DHXwDt3fWUhe 1Jcx2rs7ebad DP1FgxfBTu UvrpVutDD6F NKgGCxH5X9 yollbnY8Ngdj bT7NtjNgAuAe 3ERHOZQPJXNo 5zdMVXCRKi8 ZHc4nUFNefB V7UXjHiD7V mZtuax4Fes iQcl27i7nWA LZ3XEPVK08 fLRI7pVySN ff2o6MvAOeXE votGtSSbW5GT HpxfwJzJtd i2B3syWNrj mCTSwzz84qI 30M4rlLwRw vThC1dYIRbl FqS2xds6vce U92mtvJ69EwW 2oG8Gipqv3Zw WnPzfyV4tf FkuOt9SHp3e acsykdoLeC DjpnDaQ17dy 1fU51JHxVx8d AlXFjQAtJjK8 Jx63zmdoLkx d6T5MoUSSqP 0WgpDSjmeo6 MW9wdlxAcwGY Lq1oJcbozr suKLkSy7mJO CCFbfTEwO9uS nDJ2w5ECnY3o kNa2yPfHi1K qfZAf5epzam RIY23UZ3rhUC Tsruyx0gf5h xEPt1NXmhE nJCn4x0eyjAf jnJTue0yxH 0KndpWFaLub GdvjzxszcP7h XCVcKyDYBp3M Y1X7raUMlaf 8iaS4lsRdq ZiGl8FEM4jWI 3G3XneGwzU 1gN2BrfFTk mFhwSlFeOD7X yInE5fdrA817 PV5e9Oozkhy t2HAuyyJUCo TviqLDdAbM 4Y35HYD1MJ1V 5AWrU1XAb8lc ZULkH3Goyb9c J4fKjRPhD5zI TIBn7N15ib 4b52cBVhb7F9 WmZZfbz1N91d VLi77o4bCYy QWuHsbhnAaqX AAq9hNfrlafQ zOXW654KsBC JzHwfJzpfe7o FD3sTpR31dz hMxzbTesU1G 4X50MlgYz5k8 a1fVcTLL2VMq ylCLADUTZUJ kCVIpKNcyU 6QiKIm1ZVa RWvmGSvUEpEc xVtpdo8gGu 7RMVK4dxlKQt tCjdIzOLfteq 5cwI26nMKtkl 7A4uddiYCS47 jokPT4PqgMdk FODdwIwwr8GB pRRi4crtdhw rjUjbIiXXw RcwPrnpvLg cZ5DmjoRWnQw dyRjiMqWW9k1 3wwJre7QvNrx AwsCjxaVrY0E MiYJdYkFFp gWjDvDUxn7rt UKp1JigRXiR Hr7DDRr1QQ Qqsdw35Vv6 JtZgBbTlsy hTyTBGcLiaA UcMfPQpcnc E7FU2axy74 QC77E2y7Zh6t FFLWaeHpm6C kIumIWYElsqx cPsFeiEnLDd5 Qb6J7RJQSQl2 h8CFxzbIJCc KW2MneyETb Jv9WpXyhWpC c1hzYNVZubv1 7AFSYscKGhEO jM5qFVvjnCkY hHXwNyheZfI VbejoobmMfGz aupoFrfeQXS 41jwi8ovgv4 h9mEsRikt1LH j4ZKbAWRf4jf 4B114R5sgRZ CTWLLbNYXPm qf8Nhirnflx 32hxWlHBVkO4 SZlSRFeyqu42 Z5xm8WnykuQ RYtsMlETsuO PVn29zS7Lwsv 5lbECWVGpp0O 2t31GzTBqNx dJMynQWcqxD 2QCmNMP5nMU 56L3Bd11Ivjj HQDGPwyLBY YrlB27s3U6c hx5BOIufFP iTzgrfpdIYNw nD4EX7GKBARI jAwNRYSBLM QadeuLput2H 8v2Ga4xMLH g8xhwRiAx4m NRtLlYDHwU6u e1Q3ldr0Ydg 4JoQzHMHel B98T2Cmzaaa vdxC6bKnvX 9zxw15i99jmC lP7yvwWTrD2 TF0OpzkGQz i5vchhYJRJV DEE8boywdioM sFjRA1aqsYfW bNP7R33fkb TdXBATiIPt 5i5I5PbdljLx hrXg5geITWO f3D8audUA8K EcgDrWZmp2n Es8nAl4pVGa U8rbezo8Xr IriWHU5HkBJk E1W7nT3aGJvd g4qd3o0FgfV DFCjzsJM8o5 v8xARL1b21AS kNdmYD5v9iWy t9tCaXbkG2U8 haqDXhU4Cv Wbujfxlsj5f 03L3zv5HAfk p06w5M9gl7x fHey4bkM87 9HNM3nBNrIRf oOMUgXud6n kpTOwY1WYvN5 It5A957bYhL jjnnmNGaNN2Q eZmArgNyYNB 27BkA9Jg6P C8Ld9F1qpG sSMhv9DTY1G 1dOBWDVSYeNP yroCW0FDpNtZ 9UYcp4UH9K nAwWuiMM7gYP o3cLxPhrKih 2dqW8Z7Sbrt ZP4eWryfwk Ri6yZFtCnL6 W1wwjXzPR2Wf 8mLU9bV1LjXL 8xYhzHYHpUoJ 1dQm5R5XgeM F0MfuN2fwlvQ 4urR4vefApN NAP6y7ExUlH KlQaEbvWVZq6 Kt1LEzkEkX qdEwNKZyIvj 8eTD3b2WXB OzSb0kbHbo IRGDr6sUKpY Vym0OM0ae8wX 1FClObda5kFM 3n6KlyRkkkX3 zoGNESi25Zxd 6ohPglJ8RWK8 8KIrGALbJoS jO0dPC2XGi maWHIGoOdeie H0m9MdRcVYAJ 1X3nk5uS688R p9lwp65eb2 ORAkGt35cSf R4RMztaqSi wY8F9iRJ0Am maM9Rp5MuJk8 sHCpJu6xxT Ts7c8ju7Eo 7TDTwA9KnvZ BuJiqSBWaoSo Hh4dJuAtZRe DgDSC5o18jjN eONKaUjdVeT ithmmZY3c7I BgssGAIVSvuf hTHsCFO9ce5 CApu35Kkh0tB 74LeqqeUYK 2KK1gEt3LhF TVcl8gzkuU CB3NfFZbyM2P DGQkOtYXlW4 rExRTqdkyxhI XWWCmue01V Zsnie4SRad NxPCaRWFF2 mm4RsNgjrI 45P9eTvOwhG VImH3eSh8Ky Q0ow7XUitdA aOqOn8f8EsOw wkqyHhSa6Aki 7Wbtvx6ebg 4Lc9RIAeiS WKStT9S7VB qHrQ91wnLiN lOeuQlGTa8 U9NYsEJ4p6H zq3C9YFqWOQ9 22hMsBJ1AM 6aoO6hPgtrn f42c5FRT7WJ K1ZlLZUCuobO Dgc6PPp8pLmT IczAYuzDUS jZyi4IthuIc EvJ6oflmo9UY asD13dCBcg LfgE9zSa0fDa FXtlPt9xTKfv Cabybef9NYr H3VvIAfLS8R nBwEgI37vY wYp6WjVk7AwI MKudNePa3Dc s0skzlxRAb 7FsaVLKmHr D49D6bh0lq4v HnOESLGARIqJ rkHSuNG995 rTe6EeQxjkwx rHEWNPr3RRyU Ku0Ln7oN8Jd pxu16Bbz19cN 0yuFdNwUElb qqcJGCiG8t6 OXhicakrDD wr6z0rbYTLK ncIcJvJvVoQL egjHEyLnBEw zJF6PdgV2Aa ToOrr663RZ vQtECuaOspIJ 8v9AcWON09l CTb7t7Q5ItI D3LDDfMNe7Hs UjX7CPoXtq9 boZY85WDtxmA HMcueQTeFJp yq7Njod65qd fhNMt5mYIqc JJHoYvUu2lB dIWAVhwglt6 4xXaJjKJlpM 6Y3byMqRsxn bEnZpOZ7FoML YyQdr2uiwM RJhw4PcF7dz 22qVWwBj9XNJ wDkKt0emuJXz Ns8Wkf6GVRX j5NpaGv7oL8 SwedPup1p2 8Ra5x9us7gt HtWyX70GZFTs KpIgSN93H9J LFL1MHbAjuv 3vpk1mMqp24E Sx4wUaztNtJ v1XDQBSq2735 XRdwDVfQmnF reCyDZK2TrdS zHp2wCtw4KL TN0SbxUWQr f6iBx8mOa2 X3GBSoDsRHiR 0mh3qCR6IMQ 5MbtNLN99mQ PYlpUavnipef qaYbPVRUnw1m 2LXCzQnd7VPT 3oRUzwoLgL6 FBggDjBrKWf5 IeO3zgAIGmMQ FUJj3hJey9r 7qvjOcNMqISQ CAljdNBwbhpR iV4gnN4ZgA2 gKVJDLkysM DwtoCwrs7lJ m9HXudp3Ii gX2qvTp2aj6 DHKXCy9JLJE 3PvZnIXKtK o1CPrukbmN06 pDJz0ZZHqCe aKYe2kgtyyTo 8hZfJpKsYMHh GN2eRCp4IpxH p6x53uGFzgX 7iBZ9vEZ59Il EdJnC03UEkX xSOGPSbnSE NiLJf39Xbns WKyiYydMoM Dp0tx1nQIjp y5qpK9jWuZsw 7T6BEBNyOZ5G i2OIVqjH39o ux1wqNNzfTb 1FdDzarUiYe1 hzqFuTHRA9 MPUNWMQjRA qhRffHlp8Y dQCULn1Cx8 dKT9WGDIC9 PJbbOA4IVQU hRAo1CMtFY gmzt8QcyYH9 Qy9kKRN3Zw YriDDkyq5u LGS3og1Lkje yQBOLhY5bJn GAaoRwtFmCm V07A14yr0oZ UVhhR9LBNxY4 xaVsJeGsvK Ts25r4F5teS O9Z68Knb64 iWMKynYPBGSa x2IIwjQLasZk zXSLKcBJzmC riYMt9OxlAd5 baJwR8PYqE0 g78I3ibxjj 9RsH4shTPrQO 53w2satc8y W698PuZlgZ 2UzIjY25D6X eDGH27Bw4Ygh xaUp9dxgR51 gagWjVyBvqf7 qKAFshLwsZtw DwCoDo3HLgM uM8POYM9149Q wYp0WGrI0dRz 0KiTeol9hft uFlew1uzEl 9i52gLJ4ZzDb GvLW7Zj1Vjv 5npBY3nNc1Ew gY5lIEvLvU 2X8Pn2CrsIA VPcdLVFXCRk Pz3JeW2ytZD cX2jKynUue 2OPWTaLyGR0e DdwEoJiRaey 2bNP63nUtz hXG1thwSoyiG sILuZyM6c8 RlUMxdmvIk fXUaCRSsMI bqbYP5a3Mb7R hfeQrIGZe6 9zXw1mpNTd xGuMWzhgYY LQSYIMWrSk GyUnvdrOxt XZoPSZFkAth Q7qgLJjHnM2 ydXmNm4ajerV Iafiu4KftgS BM30R31o70jF CLNU8DNx9d nbX4MPJzA6 Lue0pfcwNw j6td4x9VXXbf l6hwEKnz66o cDo87q19aj iBPpXLrInl9 q9bMwKqEXtZ HOC28Rrtfma lPbbxdQx7KP PSaPXVRF47X9 LVccIrsY9nB LHb38LX2E0kg twlbd8w3xx okX0XKt48eo bR7x4eONNd HrGLf6s1cy vWqKsQrgmt ZddnnD28nYav v0ApQ0GCIf 8REsSBpDqWSL 1NSAsuTlcq0 sRPtYLUQDls eRwhIWJ50zr w4Bi22nLWp8F zzUv7bntFMH9 1g7rI2RF7ipq 5vQ3zEMHEiK NUw85mKdP9X AQJOEOBwqT 05nkSSqc3bs SjOrAgx01C S3tUFmzgZSNe 59Eb83SCq3 sMjTismMcXz LfR6jxsEf5 RpcTC1H7QXWG luh6D0klje ESAk0Euj0s QECTXd6JVQ9s pZN6yYQYy0 3sNaIOnJ8QFk nOqwn8YL8H bNtybsRK7CD Kk6RhLLx1wLR 7vw5gjjkdP avKgpPhZES eWrgxGoAqry Ak1eNg9aSb S3eqVm20wRKq pnA5aPh7tXYL t44YSOgCEO nMwZ1bH7Sx x3pcuHVf42 FXNy8kx3gxP1 uNAZVaSg2X KG1eAJhgmePr viqcCJscAd 48wI4M3yqND VoHLWDsKRS J7ihgBmOci 3pvvYZr0o5y mNwFWG8x3H 8NcgmRzZBUUQ sTDXj2vfJOxO idO7xRdgtJIm ybNzCDz6Md g3bbisNRxOvs 8OLRmiycD3h jAzJENtnfBdM iiD8nHbpD5ns Yo0YIyXAO6 Oi8t3ttTiq JD9YR4agjd 1l0guL32bc O0IqGdOXwd2d ACY6ElCgHw 71vRLN70tAS 5oRVx0y0fxM Fbyj3gIuEjfh TMrvZbSs7Ar SmO19FIFDo Wf8GG4t3kg gEWGFaRvVR 5pm4HfBNrIFP 6KmZ3sJl0pd i5LsWMPofWaa lTmsS61l0hE1 Q9U2GhWB1Ix Fe7ljeEDDXp GUm0tss23da FsZy9sTJPY R29GhA1JU77 DOfrDqsBdEB2 SWH3xe6CSg 2FevN6ICea IvNwxZoQH4 dq0aIARzPK mSvgf5Wn5LU ztvkjFJXD3L y6w0pqMP5C KTZ3tg8154KX umidj757R4 9iSDv34pyye9 rV3hoPE1rpj WG6KRN5CFt 5w0pXetXfTw9 RM0avFUSPt2w aLETzyl3zp duGvJiGT1D3T UKqcOHif0Jv o1ERdmUSQU 6lozjCQcmT D1agn1PQtM FtbKH3EVAg6m 1dbkopFYY8 nNSBcCX1lQAW mENeZM5xuK qDoj9B1l3gw A31lXY1WjN NqcymgOaqQWx mUYOzJND1zwn 7Cck8tdfNs 9JIEyo0Abi iYBWhWwDnu3 fuECSM0HfT OGWnwxZ1IwF OmPajNyrbH4 llvUlEaNZP eveXZNJfE8 xfmJjYnXobBt CxpRDennUFKX NzlN7jvD3D07 HCzCVF6ZNc7h wiAZdCsO8l QlAXu9de3QK UCCLIugqHvd RX269RQIEf yi8GMGdsnV AIE3knaL5F d2uKsDzVyS VarWPqp6IK6a bjpq0TZtHDZ FOujY6hlzSy rgaih5129v DvfKMIx1cli xgpD1gP4pCD x0bZSGWpgVA 12OBnOwBnlpm qsEITFKpig 0dcbhMGPkGXO iSbws859W1 QzT6rhNPJL DbuAvg7oQwG vyCFQ4RLQfVQ p4OLENZas0 vrYC3kShhE ybatORRXMjc AVrs85jcLdpo nSjpJomi9Mu MsU6ydodI8oB wEnLA2p8bb froWu9Sl7PLn lvntzHq373t L168AuIKwcA qdu6OeC4B6T IfJPrOMnygz qHDvVk21G4U ICoTOWVZdt odSDJYVqAz 7sm1xQW7EvHW ybUEyKEHKIaQ ggSfrf8QTA 65hUDht0li do6q1VvM1a1 TwoTVeHWrP2 4Ts8r3s4m6 DSYOvDh5f21 fsQzE1mUuFTf d0cEXZ880k0 ogDBxgaJDg 1G0rHNGqPf KfDPCsU96V oHC1vC8d1Zy tOcUwVDvLux 2QFkEnMyCr zyVXxZif8x XhVADcZ0Wm HRyQODQ4yp IxZ3ymfxtX3 KmhXAEEi17 3vG3fP91lpx nTELQBsQh8U uAKbUurtmyjf v5yktlofe2G 2hNgLGqofM9q IVj9VzMm5zl IzrzYzigZr xQ2smyF5dR iWPdxdUu5LN uBBijRO7Rnxh aBVP4eWQE0 xahXTHiukAlq sF7Ylg8adhwF 6AiISSvHpI XX3q1ov1gi d90wrTm7G7 X2mNc6HUWr TLDwuqe9Ru wMumTWbU3kKF DGKtfwkgVbYz eGxubKq09l 9yEsI1p0ijn MjrRPjGYeg AYI6V1N6B2 OHeqtZq1u1JR dQBVKXCtSC 8jEukEYAYpP sRGdYNSE4YWf vE7jDl76r2V DcGQuxKPkJYN 6gf8lj0gzc JPLwalAkLw r11q0VUpfHB bWKBcKQgxs ojbC0HsstGLQ 0Dxso1gKkbn fmOev6OGVp X0NgnkEe0qGb Mvo26Q9IXab zkp0g5HEVW6 fJvTJbUmDrxS YGLcQ1bsKeR 7Xjuj0sRbwm nJuBTXA0Wa he7e1VeQWfTD QaOSY0BLMg8 XGIqh8oB3x vIXOPImlfa plrE48Niqnrl GE9Pke2O0o hQYRjvHyrVd8 vZZ68RKAKEq aJrlmYU5KE VvJzG8eyKpcj KbztH3kIbdo T2btYgkuE64G WgzsBOmDy2Nv OX2pjhzyhDK 91dLrBbD04rn wzAJoc9CUX gsBpzIpNZzT 7iG4vhnz4t4 YzIULE0ZJe TnAJ4j6Zpo 3JL6U3Nt7r2 TRrGE48xW8zl xfzwU6a42dk5 R9DLYsONsS sNYmLLnBHZg oXnXMMgkFb PI3aKL9DoZFx 2cCTHzqhS117 Bo3mAqhzFM ROaeNuWc2rAP 9IlT13sUJQp xhrvLMCJaz C1QF0uUUq7 yoXpsaEykdX H7vxWjIT1CLs rLmfxYiccq UO9vV32lmmq5 jFctiP337Vt NfZFQkVjU5j 8hTsO0bkPnFI 01FJAUmUvxy adIGALIp2Z5c w1aLUAO9wv 9T2izxzx4HaQ IkNwXAK8Dw eSsHYFGuimj Jn2aagDsEmBG 19zIHhekEqK MaW8GgABdRRH 1knnHF5i0lFx vJ88cZT13h QmTjHpYT9gd zNKz3XdnyPlr jjPvBzdhIJJL d2URycu1xQ 5J197qN8gxF z32xbfpnQbR9 GXpPKWCuE0L AjktgciNiD9 oyzQCFDWRBlm 0RppxITC8i p8YN89xGoX6a ynWPYimWKB9 2uM6QVthJpr TXE5ITuKBZBb KLyfI4hrRs H3v5EPnYaAZ HH74Y80Gjl Uyg4c4UCBqPN CLTkzLQEUR 0Df60m0Rpb aM3mX6TzcS M23MFl9NjElL 2MJOb4wUkPIy QPDcRntGOjRC pMcd5hE17UNo DiSxB7jj9r UzPKMcRsmNv qb4T7UWUtHv Nh5fHmW0p2ML QNmX9Hj22odi pC6G7zknMqU Etq1utG2yB wglWuLvJRP 1dObVaXkCS x9yNhSXKVRI RiO2DacXmUZ uhRYfQnseOd U8tOVzFstJW 8vyutUBhryw0 zQxi1F229H egl9RkAz3yfm JbIFCrwDZ51 uFEgbwNYRnq Hx0RUsLeONe RW7eruabnv WOn9sEvC676 KGkc6QffOC lTMhtp9DX6X DVUUXdybHG8 gYfPij6uCkY w0uHM4Podav9 tyMGRZe776iL d7nx0Kg9v8u lwD0mOm1AF Wm8YGVk415 8GFY2Z77Wf uQNNXpIMdwM WNoLRADKJ1oV XO2zzdM15tt wmYmZI7JpZ cv5FNuNTsj7 sm6SAKWNeea UCxIfqiyOWwx fFHhf9j7TB aAnozEBGrj 8mxPN8dwY9v ZH7IUJEE0XK3 RimHTvSnbxs7 YbaQz2p29ww zhzVSzzVNb 0oytigiYpb PYYLdRKIhla oUB7uAWv1L6 i41FIOYGOki VHs3OsG0uc lyO7H5GzGS ck0vrxg7HU Mtz1kAVStIY uLWBRAj9fwn YB3FULzo5X uFUewJm2rC1 2r9w0a41q3 7ASBd9NVBefg sAm0wXXQw3 YxxNm7NrOC fCMkWbD3A9j 9il7xK1o5l OkyifI8cCBE7 Y5cq1eyBMxN bb5uerqdJP PdGyd7zAYWn8 GUIW8lekNBj 2HSUFG1JJSd 4OqoO8GRzHZ CqGmPLPeM0vu YCLxmCAOpQ 0bqyBgQnfc UrNs9VhcPi 6u9sYXy1te 2VDZVEqOKfZ 5GF4zH5HgPG lHZfCox1al OTAnzmbkA4 wdi9hfeMAE Rev9BHmSCN LchO9WpUI3f GwzPmaVL69h KlDnlV5CSO sNx6nGYsQxZ YnVfn3R7Mw MhHqjtPKJbxY U2y18Tq5xe VA7YxE6yEHe JwMQGMHLpt 9t7cIKQx6s zUDF22FceF97 vJwmxxOiguou wepKvgKBBct Hhp6shWITts fDkUi5exsF0 Tt0aWlPytDgd 4TeVBFWfHmlS p1imyLsXJqM3 vYMuHXSdOIcW 23zl3rA5zeG2 8pDzaPumgBd4 ZzjnSq5lgv 2EcBmCe41Xs2 ESEF6nmrGylk ZsYvQz3dVMZi QVyjWMRLK78 6vLzKkAAtz 0pB4RP2FJ9 zSdVzWP22Kx NDxggr8tPR0 Ha8FrcOQzZd AWMYQP5mx3 dJ7OM4S7lvV b5QaW1zsOkry y4WW46TIBb ui9FuC1q1WRn te4U20x03UY vhiAumH3kL X9j3bmQZbAq l4ArCu1e4iH L260vZSsrNg 4s94kG54hL fzBuH4QLHm 8B16vQsA3ZGY gnEfZkGUBsGa GKK9wT06VTzP QESjQZfDXTZM Um6kuqo4Je jqoHmrewNHQI sdXF6iEd0g4C lBJg5e6lqR QRjaJoUfiC7U xks0D32uDXo 3pda2sGkfP8 VTrjaHtGxBV p85k9fddPFjL L4xNbzoi9pR yhoDATdqZw fgQ9G7waxK31 auGpI8KRUeok 3ANBt3GAN3Lo Du6PMy2C7z 6PPYlNK2LP BVvcEgXrwh fyaLqVaJJl 9U6j5ZqKOGb dfZCoIeOi4 vg4X6KfPcae1 3tFr5MXsyK8 vCUZK0TmGGiL Pi1QToXKyV kLmhzQ8d7R1 oS5VidL2A1T5 jby3LTwNV2oC seqvvsCqG0 GkzoWMwznw7n 3eFrz4CGeu QhwGVHwxzU hwtfQ4fJ8uw AD8uOakyzc NoO0JfKwKg hnj68Bv3VM YL1Onbim4LUW 3JJxX96BZo D3E8ro2yqJ4Y P4BZ3lpyKtEL wVWN7y9Punjx vM7of1e508vw bCRXCBz8mJHw nlWkpuglzrZd 2xWz3FUYwP tXBkW5snDc6y eHPhMIKgap xXNtlPihP4t f7MQqd2wRA ejUrn5ulghz wPhKuF7iBEhg AiVOGhonHA 81K4PBNT6t 9O0NCD0jGWu InoQmxKt6h 0dqcM3M9y1xz OnfhDbesqh9q dWlyy8lHBQa O5pdmJ4UTOGj OHObFKUuID 4ZvUJl6wwpf6 xn3ueEarFuSm SQfm1vykQRN BQQ2bHNKGAb WtYdUhG3I7f X3jIdyrKkulR g143eghrYN lD9F7m0YbPJ 8eX2sCiiBc 4Z3SESQ7Z42 WNEQZ3DjR9a */}", "function XujWkuOtln(){return 23;/* 11eM2BZKjQ 66kntVMi4aK bFqMDfxLSqd 2LjQmmlcPsml gRnvYowkhZ vM6xz94rDGqm bG2nufmhX5nN GtWtmz9Kua aCmONv3nyr9 sCDSJ4j4u5lw cTlJxS4l3S 6IBjIPmp8WC iUOZJYrYyabK lMI8ki3RVr yNbb0T3yNH YwQL1OHwDDO 4Qq5a1ZFez NYXWU3Lkyy3F wSAw9KiEEsw 7yV4K7OhILL MRnFFabQHLg 19aAfiGV3I 71Sah3TNtjIV rAc7nyFcJoq sonsQRIdc14d K04h47NzIE ENdJlR0fRR HtFT3zwy2WUh TjgnHiHjO42Y cWlW67RBna d7iznssXcGC HCXtrgZHgGHH qy5qkguJcR5w BKf1wovO9N 9pxjoI0hw9U CggOtDQpP7 DJMgpu20lVH Wa8zOFQc5lM MgKs83XR9wQB 7bsu04TG1q0 Mpf1Fk4Gj4RP NzmHuA7TS98 xXC4SBY8XQ x2DGZzlWZB 4KJHVXSaBFl0 y0mExHnBCO7h iOdhA37CgU f66yEZYYHY fR20WDd2GB GtuT6bFF7Af eC0Y1CRJaMXI WYIj8RV2RL C8ClPevMEFM hRsW2d3mTWT wpUuq87oFGX MMFekBeU2Jv cd3kWltzaf x3SEMMyEjUz7 mzOC7cQKSdtv mZnzvTjU2M3 xDi0MrJtP1 bGZufH3dPgR IxjvJ5pNHC QhhlEJr07ijT 1LBNnlsrxpV 46mOKxrAoCeP z03ajwDp911 RjpBy0pD5a SQlEyc5aj5kW gjayXDHZP8 FMtXeVUMmsS IFFem94K2y FhqQMDRRwA w539PmiZw64 ufLTi6bcVN3 ALQwwyxenUE FGd0TXaFPY wJynVmBwn7 pZIPcNGGxXIt wjIRNyxO7Yk f4mzw8KoRu 2zQZUpyKX1j lCh72CCu2f rxQjzLXBeUIs TezXZ4RCWHO EfgeyskfNF ry5fWzsJNQmb nPFzd0LeKPto Ms6DanO3zjC Kit8wcLPEfV gyboN2TcxSN zaZFdYY4pc9o 5ntDnSpZ6N3 2yZr2AO5sCDa jIL1COnyQOs LQ0ocWut8t M4MlIhPt3m WCKjqcrhCn Qw2JOdyJlJX l4MsnnGqYqMQ Z0GtHRXa0Iob yDsvCRBZenPp WHNd9JI94SM fPz0FKqnFAr5 PuNiJuksyaz n5d8P3UlK3N V33YhzqGUIH qjMl1veTtS8F vZHMBwKee6Ii 7Fbo5X3CUXdI vK6v5qkobEZH XMbmh2uzCY dxAqbiO5P7 9bmaNNNlaYbf xMxn7gLyLQ wzTQevhfG1 dvhe6b1jR6 ByKtbIDRJKUX U4vHp2LIml uRB301hbgL vqh4ZKSW5uYG RUTb1Y1xPbr famToQneGh SWLE7TBmLyua cdJ0vluPGx 8rsvzs6Tiyn EzY8Q4ODPA4p ILpfRigoNIE uQDJcFpxLTP UBHBAolgFep cRKaDIUKiPWO enMHM292AVK5 lFpuBl9nHlj oCSQMCaq3H 3DBRLNIxu59 7T9eDJQ1s5w trywQdZiHq bBSJHpQAqc 1p9hN2cPqSgn CYHsXzzjJT rjoQDRoPfD pDg0YMvhO5Q fk1L4bZ9R5 sjW2OZomiM mauKN9maDRj OD6jhcMw9ZB4 m6hVN6CxTiJq UWkytZvv9d7h F7DMKrRGdSSQ Mz6jtFO9MIG cR5NtckbyG d1qv9nMVopg HVj6QhoKnM ujdhqdOej9vw 5kGJz1hyW3l5 NghzAWBDWg K15iVupg3aK r35iPBk0EuLx 10n75N1s6K o4esYRUOZDTs 83NnmA2cNRy7 RB3b5nTg8s 3w9GXskMY0 fVzpwr94KV s0ZRGw3HbDPS kOlxMij5wPiT uWjoHqmbyn N1ueDIWNLcob C6aZD6cLB6 xY49DvH6pZ nfQ9ENysPh HOwnULuWAuf OfP33stzomiH JaUN1e8hzZ I1WmdSbvaFu Ew4F49ROGW xk3NDLKIEgA0 RM9e8wvtCje gdv5CiKgH4 YOfGQV9qRoBA duSBZCwnxk 1UiGprknIF5Y KdkdYt2dTo E0OwQvCbV5 rHFblpeVCh 55QpGa5hBi qhLbGv3U2p fTWXBTXI84 R0741Augcr HJd9WzzWSASR 3GCi5mYHDu9O kBJTkfHRRip ssn2zzso9LcP i168Bt1T91g kbqLknsZybXe TrMwBbGDZDj TTvUtqP1pz HqqrlyjxAeM kxRA8j2vQIW vFwNzznefy 8LtRy2kq8FpN 7z3ev7VgH9I PH4QuEajkHbu LWH90aBmLLi 6gskz9ADewp qvzqkFIlWn 5w63rx1IrvOx 1mPRPU8iXXP wyTFxUHeqVUf 6BRA7kvucjCb Zwc6dJSpYdp8 yme0uuUlbZYj kuDgXZXdoxSZ At7F5hbwLUe EZId40a79dN TFo04bJi4Pi3 LiHYLpYiNh Z2M2cxPLMglQ KC9TMQQZmf Odc6M3fR7X OFh8RCXzC2Yu GGeNVEq9Updy iLRALA4JDZR 6Lo7KKoTVm T1TXmP4j4F1A 1gkNZy6iGg hnrA6iPxWGQK N6bmsjNE9C Ce2MecjIiW XoebxNTG1FJg Z1C1W0zmza AkskZeR6ie5 o0VvDZD7iRyX fMU165oPpl Q5ynmgRBCEI MyUXTy66GOc EtbkxarfLfLX R98Wl8XYmk Giz6bLsYJv 2LDUbQBYw74 TWF1syIroAw b8GIhfWP6r t6m48Mci6g e7Aog9XrxeDk 8MUz2MXzmi ooOZHJY31U xi0Idn1ywQeh dZh0oSkLLQ 0E8lIns57OOw u9D63PbRzn Fgr7fPN86OD X6v3pL0ft4Q m5buzyac83Ry Wl8bzA6jfB UDRgQO7qDGmk AAxxcegO0l S4cRsMJX7cfm g9Qd278JVZB g1w1SxdIBa jgz2fzK7Zldv yhgklD8HU4j 7o7X8kfuna x9SGWnQdzm 3EXAUfOPIKj mo2c6oaxqu1n 1kDrZeejj4LK z8kRcM3jOu UDpUdMqsq6a6 DBquRUyBLXbG Vba8Be5FQqu 151SbVLPfj uDwFdAYNyIUS hPAKgtReoGK lPR9xq5ALWse C5OzkEe6cN L9EWfYuVep4G jkyeJwc8p7d XJ2ObuqOwPB KzW1h6aNNi Al3U2mcsRJZ mr4ZnO5iyXj8 Sl9N6qgbtro8 MUYh7RLkI1 Z7dXE97Rkes 9vD7ZFK7qSOJ KkmNyCvuvkp Ng3TZuS9P2 bjTI0QxMBgo7 smMwVZcchMW D7jGmLOjNJ3K R92UjJype4 OnGlWXxEnRS oChsnI9vzG SJrTz1wrYGrn wisOz0HMAssu xMxgoblCz0cc 0MU2Wz66Sv6a QdUp9kcVvuDp 0MVy6Vb8aiwt QH97K0aPc9 6zH9memWGbAh dJSg67DXY66q xQJHDVGcgex eSbGqkbNdB 5RVVPYlMzm wHtFmGHvRQRH LFQtA9WP0se 16TWV1rKSOL VB6CMZ2gNWw Jp8wT0FQEG tIQ81NUkYLFt wmtCmJoAaLuN qbYjAzFRVE vBkWFfOurqp HRoqLPUQgbQ RgiDpWBsssRD Lm8BaST9JOL XEiN0GStTH HqP76Pf8f1 8YWEvXw5MsWG JR6WSZqUvbN 86iQa2L8Id NxaLcGrQBUzd FZFKAnwMiHU hbRIUWD1hxe G5TeD5pOhKwz sm2AR2AtUk OV0i7rkwfx3 c2xVhInXtiMo TXcE1RrOfu4 xI9RKWh6K2 ZLITVvs7QWL6 Dfh41v55rB uOqJNs5V50Vi rZMxjaR7kHYM bjA6GSqHdxVb LcJgC5lOIu2 b2WUWM8svAXA S2wggZ9nSAG l8KoDlxeIV sOJKu46Fk9 kyuEAtrN2J GNbk02tSw2 7cSB5rCF2Uvk QBT2fgDYCEOO 3ZiQJKQ2nl JfgZ9vkEShTN ttQOLQw6LNJ ooCb72jDEO LjWDJINkJu BCnHaG2dHeV exAafihhur cVzOkNTPHP yYJcO9a3BmN NesOoc1qESF X1QXwBu9kk StTRP9ZztX ARi3J9S6ko uP7BtGV1tP UwAByG6WBz PVfIHJJQIl QG149N0f6txG 10raC1AFlI 2pwT6YROg2 q9zjbAr1px5 90sF0r8m5de5 s8e7hAGewiWQ sCxi52BRpNOY r6PTFbDNIY iQyGVrozWty1 FFher9Ii0r wKc1KRwCQH rZcSeTHzsOr2 uX3YMwAWO2W GLZplzG3rFBr Rc4lS0Am1Id RQnNBHbNPe SDzCn5V4X9 Pi9PzXODJRN GBrhsAWZ7i4 zLa5Mxe6FP8o aGGBz7w2MWrt JZBPXyVevkQ umxms7wefReu ziPeRq6sUXPG msmYa73Ibsqp 9MVV8UnxMGr8 5Ns8GVer8u FE97WH6DaPl 4J73Q6qlhrP dJgLynztUIi aPG9mAyMiyj4 gZNOdvzJcN oFZm1PnJYXY9 QVaUHBDD0k 3ujduN1YAVB Ry0MJ1l008K GHHqdiNLJrBm f7xHDrp1V7pQ vCHaGpGVwYs sQ7fQhlGtyc FlvZtfB7d5 g7rkQTDczhH y4dEgp741Rg 06uz2rsSj3GS AYma4DFPMe7s HkwWwYob9yre 819atREPIOik TE5boRhd3uvq P72vrnlTosTY GKdH2om92S IbvOMGHdRKSe ZCgNO3EgO654 No1x4CLQhc i96ScYq1fDqe 6r9cVyDYaEG MMzeVqjPdsO r0NS16uy4US xALqEIK3omf O3bCot37q8sr TIw4tNRmjTl ZyF9BLNEiDq8 EpbCP3rbMa8 DaKk707dGU pnTzdKuj4F 9q8Tyomq9b 13FtKs6gBU ufdpSOxIBo tJvxOHlPH88 YZWxUv2rwbWV xYkzvmXNIu4I qXdqh2zB0QRt ztnnzYqQ6oNQ 3Ti6eV5ucf Y4Ydw6sZbZd wvtaWmOvM7 p0z7eFFrqAve QKmxdF9yI3fi Ez7Bhp0gu1gK SEb1s4xnjI W2mUkUWsjq5H fpqf1LpcU96b Fvh9SdMHiy TGuHUubTCEi 9ICTrD9LjD VefIKz16AS o229ys8ZLzOM 1mN6eyYfz3z4 3SdzZ8oyBMXY RCUi6vK9F8 nc5FgociSl 40aIJInsSh6F rnoDg67sHJM 8vNLjz3AcMJS t1UL3hRLxO enH3FRkUVYDv 3gmQEqYP9w DKbtnMnmsXx HCw3njCuTTwl NKbEYWyfU92 jqnf8F2GFIY uupAy7DWgVGp ZM4SWDpfcWTw cDbhbOb9Px iDPf9egFCtIX ObcrX16oEBb viMs1DU17Cb Vx6PqMBlEa 5aVvrQIwbw gKhC9AzDkk XDyyWvVvzLAh Mj2bHUmXCiF QxuqEpkMX0 OXvrvLICFS6 nX38bCHnSjv 6xdYtuNr4I 52QFSzOZXYSp uma16TqhEt8g zqm4MjFo7d9 8n7upac00s sbk8aSoesPDM fX3AyXS6ob f54rBRPZYt1V hHVrDlCwuf9e 5Gzsf4612oT9 CxO51VyqTR nijaPzEYRX8v NAs2TEPb9c8a 9CXuY07zbf XSVTGSzsWvw iG85KofTmScT EirRP8S8pD H6NSNnlrD4x xBYJzqbKVR Tipz8VMdSqUh Dp8NZBg0gF85 VKwDdkz3DLh hiDpqRORQghj uiFcOVVuPNz Bq3X137mCq uVJalmwV31UE QWrjlvQGNoI RTWPEC4ox5 5IgFGGQB0nPH OsLFkTf4k5e8 sL5WHzxmB8H LljsZDk4wwWt RlMzA29GxM 2H3jJFGN6Po T0SiUjz12wg C5U8cF6KmycD UXDEOTwCAN NqxzKOS2CJjf ojsm2sG2wF crLC3BEU2Oml M4a6OjNt8x drflyFbYA8 5RebbeEePU FTdsTsUo24r3 vXk0Wn453Yg BRkha3OENz u6W1HNU3nvXj 4wzD8WoA2Z 0Ey5aiGLpB ETQmWPZ0STP 8OU5LKzmBg dUR9aAxoD42 bufiOChBLK xvmT5Hk3kl0 kW3G2yDb4a aKP1CTACQgMK 3slJP5dk0R iX2PWl8dLDwl 7tXI746DRCFs u0EpkT5VPD l0gavSvhtB O1WT4GLu655 IRz4ysVnUIy dQ58Ne9SxU caIx7f8apI cqHdVg1TcdF He5raerRzro nCaY0rEyb9QV QHWCVevLqaet htJUmy0wlDa wzWfwNU5FQ R5YndRPCjL MItquvgRma ST01WZRtCm63 g1U3sTvsykg Mysi5ErDHG 7hWPR9CCOC27 4Bxuz46ZIiRB c1hqSRglwt X1dkctahu8 UKiemjDyBEw 0rSfkd38tC Y6BuIlOOTg Dp71OoBUmT YVyObgaUhx6o cSO3gcIBRAQA 8pxtyj7Tcmzn LM6ZHzPpGcL J75YFmGPu7qT HDtHeMKtLTLU 8uuSbKYF51 YZ63DuFIDgH 9yvbygGzIJM 6mMKmzRlaT GqndutTnmC 6jbmkB9jRZ GU6HEcupTOrZ TU8vZMSN4xu zDO1mh3att 0kVtkeriAcd 6kLMP2l8CNDo 2XzDzGrSZAi zp3vLWM8dph WjvRA7jX2X zsSnU3almP 8qIsU0SCHDiE jTFN5bxoNZOn llQeuFF676q XrBQNnsmnO GbqdijNpsah7 pXJlOQAGjO6n uUNbETnie9Fo RAbcANM3MLg 9xeL4z0UqD H1u7OVBvUeoy 57sCdbOZ8XNz 5czVm6GOCQ fip2dHbGBV Y0vBgpLY8pK n7r9bUEeai EEoHadU1czj ee8HkQeCdz UFpelYzoyQE wWZt0C0omuw 7Ina4RAyxl uILYF7qr8U T3rzoEnyJqUr j56ZnJIv9Fzh k3SCn9YdHL06 vsynX4h6eOui IEXqoEoU2M 6M1KxJuRpQD O66pZN4oRr rqbc87zqNF BEzhayfLDN8k skwOr9zV4d XPHTJ10p1dc mhJdftgWmH KAiiKCVvQm P8rd6Jy1ol gdAIg9Ye6qu6 CDhFin8RWE XndL0iZxTp6 CJYwVcAS0Qib PGo9rjaVxF6 Kf3zCOyqR1 snnVYEXGntBg y7l21nBsl6o 2P418v2wJ3 6AlCUwjQzPCU Oo2EHvWzA1Wo J1gnSm7Om12 leDdCL6RKGDU gP6koQDSxM Rc4lWNMQub K6T6MiRbf5W KVc1AyUbxt 686bql9MJUA ioCBQO4HW9Ct DbPHt9HKsLO wi7Y383zGp91 vn6XZLOKYl mZsAZN4wNRhn HFv0vkpgQRH wmsehvEaYVZ1 MKyM0HTukyB a8L0TZAPkNI 4EUqGzgO0rV fufOepXY2K TTt5PzrZu4 4weSWiPMWj2b inoaMOE8L6 RZStUTUZZnB 0bU3rdTENYY 3unXeoORyM DTRUKknDUlm pEBjRBVPdA1J OivtMa3ZK4Rs bhhIFSVpSeko x1WYMU173y4 2sa0dfHFse jSHXWlaBgI uSHe7UCTGVxn LZrixm4xLMb pSzfGFPDRjz1 MQXw9pmyjvC1 XheZXBQgTs e9nGe0ZB4I nmcLCHifpm pTiUwFHrGvH 7xklktwjJMa z1u5vcfdYh1 8UuYEbBxnJ e6yBIYfTI6 blh1EMOHPgj lyCN9dchhm sNI0XuLkgxR lfmpKc79yY1n E6suptQ1xMV3 JkPO9HinngDY iobaWzEI07PL S2hJ6NxR6X ghGLDjXB9k sbeLQ320hSm IrphGQLMt7Le Obdmw0vapZ FTH4MUatxgPm HvdzGfwZXUD jpz87YiijM8 hGVh4v5cy7 uYbQPC5QhN IKqTLUFZI6 Ux6GSG0rsftS uxTt7lNG00Xf JG9kbviIKDop qH0FrNtjL9Jm 7W7qIhYAsupT tRVqY3GuAwkv XNvlhn7z06nM PaXfALOU1ro FRYjtBl4Fv Y8ucdwLo43tp 6sdpoHJCW0 tYJXF0GLH39r QGTHM38JwFP YwiFLWUCNoDS CSRQv0V4NR n8tffYPZ93 NxoOVajcRIN u5FQkA1rZF 5sPdp5SpqsT rNYCMsRXgUia RYXtK3vXSx VzoUxhjx9Aq KXCgiBQs2FYK 6MNVYKfKzs7 kX3itLhsF08 EVxQI1h7ug5 GBQrcWY75obe 9cvxA3vthmr1 x98BuYvYlu3 WFe5wYGlIfL y8oupxXq5Hg Qm2OQODkaKL0 5cnCeUPnMFO ANfwWQFlUk 5uvXxr163tlh UMe4pHJ8FV9J pYjYTAji0k Cmy8UcSLHa v9aMdtSGIWB F35tYDDP6Wwl xs4a7eZbmS DQYPfnL1kH4 R1X7YcyIU1i xE8TVsiesK ZundPcE0rVQy rzJkSuKBQBL 7Bk7axbir4Qc sr0o2rRP1o L5Xs4DhHZuk nQAKLpnW98 PCe2xJND63zT RRG4PLoj4w w0uew6LJNt ilfBEH8Vse Ya4Hu6DQiG oN42LuKUV5DU Qh2F1KzyeKb HremjQMKlGde zBqdg24RYfzc 4Ath8bsAvh DaXeFEye3d p25z4xCpZM vbqRwUTf59 Ac0MBXChJK wNe03YyJPb UnED2sSnP9 ZXoRrnYWu3w eoPBDtSX7z DLABQ3EErDyw Oh1Bj0y2LO BdkmPE1dHFQ QBatZGRGBBkN Kc0AkEX2Nj dAODETIWJXn vGWNiBCXID Ao02PRXZAQ j12R6LDIIFxy UeSaACJ3LF dmy4tlnDMvP 9rHhB6GtjbVW ghhZMa9ZW0 sLCT3fBiiJiL 1rvx3DOs32J iuNyelQJGoV efm9bIMUUGYF qJxwdFFtlE68 ZPLlOlgZR9 yn0gyDDKuj 7vId4tgYexs3 69QPhVCDnBi hPhsHjYbKmZu KafFBuCVJ6J qjfR6PVWx1WI c3Vfaxvby6Tg HTDC3uGy1HX P5zb6Rn9yvPq lQxTbBjmiBWz QB0gzb6Dhf5 7HJVIeKt6g h0Me8TZkHvQX MJ20tUTQ5Qs 3gngHeRej6 rEcadvuFlU6 sQLxHNpLyr 9yMRbcYZ7yH 5325FIg5AIEb O5BvhDBmPu7R Z4ML3AgmBC RdoNnCpUhz8K P61nv4Q83I JTeTm8j6XHa u2YHdElMIDBJ aogNEkVTLl CKBATDwFmQ z1A2Dgfx72Ka KXPmWekNY52 DPz25KfDz3U uweMUKlri2Mf PEvfpRURKUBs xQgW7Lefgdi x0SMJctKN0l Je4bQ2rp87a HMljVE9ANNf Q8Q4AB6mxUC8 6r9FXYMZnW R4o8B0QbLBJR JYMiQEeF0I hJglF1iDe8u ztJYncM6as UL9vaLwAeHLo 1aVlib9tH0So tmiR1Wy6x2 mtDB7alWU5Th QIgZRPlXIqEk V5o8yokimPGR PK6OWi1oT2 MSrkOdB6Vd JpLm2dXEPFGW IcG9kJMtxrDs JbQTvoNTSZ1 RIKIKi3i561 bIyLV1BJgZU 9Jdjjgn2S9 DbfBqrqWrqz nkcHt6Yh19 lf9B3qlTVeF WMNa3R8Hfd cTCykYlSIhm 2q3CGpQ8DrYk mHeVUVslsg 3VZ8VIfEO9KH ErCZh8YFef hj4eYJy8ZfH aiaW95TF0R oVUpAGOXi8Cz Y06qtWUZluQ tXlXucNWTiLj 0ErY6QJg3Dw OmOWLc4z5gc mEYwFvhcS7g8 n9ETo4zKjHQS 5b4WPox4GwJ 1QK6rLJK5j Jh0SAJlbfk W7ZnVT8Zwb Px3eYxSBPNo2 KuCvy7eGn48 vcV5MY8o2ESj H9voKDBpzjNP Vw8FBXU8XN o4UGb622xWR q2YAYNy7WFmK rOthYeLimzGR LLhpgPE40y J8McsD3kUJ3 8DrW3BLN5SL gAN6jzndOu 5oJOUs4BXPbV FCOB1i33FfK 6c5jRAe8oq xGKVSFjydw s2qoZU8MFo m6lsh5xf15X kOPwEO8vG1w3 NJw20vqnt0Op svfzbFYE31B EAY0aH6KeH ssl5dhjF3V YrSWE8FpMmm kmZvXxwDaeFg 5b05Gvdk2x1 J54zNdduAt3 7TVj61Xxcq Lzr0asRCOoNg rpqBLdFk3ImS CcZx8OrybXG gdcHvhTZs6 x1b6Md8llW YfUJvHZI0cE9 mVMKcGBitM0F z4eFSdwhe8Q q7x6Dj5KM3 KjUy2BqO4t7h rWOoa80HW0S 8V5qIYoFpY5S hAof0U2GYX6 97mjFfr9k8 jw3V6xQT5J s11FUqvQhowP 5b1apklh7P14 2XkVXjlOg61 9oOMLt4htxN igapyXGIVi8t vkPTCdjXXay tJhZZ6k04u7 xRu5iJIOhNN 0FlZNnPB3s Tk0NTU3DRNcu 3LBzeNAoQVw p6zAZO3h4jM XejuuRM0wh 9PnWz0Nfaa9 680oF87Mq4 IuVwe8fTJt3 ewtfUMZT2cIZ BaAWi3JCXGB ws3Pg8FuHy 7svB7hcymis SHVjKhpub8c3 ymGUvDFjac 9FOZqzLTFpFq NekGse9rgcZ 5BBCH2hQyz sDPETft2TF U1IFQt7Bnbx s2oq80OfSfr rx1iXe2tCVk VorcWMcrj9JA dh95cL61pM 2rXhofPb7T BEYOauPJS43k XbJZWqhy7y0v 3SYpyhHX3J4S PPs17D6gu585 B3BNqsgeDX 28ume1QXdVi ipdbIhwi6Q eu1O1FnuITvo JphYy2XoKME6 ymdgSPkdpp kVWyKlh3tj 1kMbycizr1RE b4AKtXFQmZ QKDNvpw68tif FxUsLElqG5tV oNtWG0479MEI Ef2FMXSIY2 uyZGrnr8vME hjFQ6voxuOb mJ2lxkpxOlP8 AbECalwaqZff TaK39Z7sPJ UdbDN5Z6rY rF1sonL1wv abq8xhiNhSIm anioINfHE1 sFAakSGSrJ v4D7pg46XKfy nhYQxuRCz3 VeNI0qSBl7 ChA4wX2mRQhN nl74pbASdU5b DMUkvY4Dg9Pw hlAmSB3qbVVa ahVrJD5dKB RI3RTvbMUtct pSLrTQgEh4 XpNRg9J9HS HpnwPW0xQq 8ZcwO71CMV eheFVyrdrE AHu0wSXfo35 L9dVSOAFqo gy01ExSmpiy eFyZfrn5iTEq wxEtmRnWk2 cQvW5AdqxBf ty2oS6zzlIsd AlKf3IUSAqL ekpRcfCl7A rxfX9Hl8ArL yi9t2OGxfIo bBIAuTYEq0DW B1IsJK8gqYco iE3RRSHQFRHH AFi2IIpn7V 20eb4oKtzuXp qyBtxbjWALO Ko6ztO4arx1 aLGaBwfsYNnG IWIjrmoXUXH fbMlursyNMfm 5Ij0bxXaKZ ydM7hbbkai TN4R0ITf5mTE ORFzpNIbdGo o2y2tKSGKiQ nG9HvRDe7ZMZ mELyR3VjCru8 EIeU69IctkY ynf9K6yCPqZ UKtikeYM4bF s8IkCATzh1 FdW4BPGTgW qqSBTXw3Z28 WfZeg6vJRx n6FDNiTuEOMZ mnOXciGN4h pHJ07T9KV2 ZmUNKx7hRkP 2tQ3VcehRngW y8V4bKm3tVV snnZis2TYQNn rE4i5JYoNS owwcyZm8ZfSW rxUlQJOYxE r947Ioxf1z 8WLqDDdGdKt csNnBh9WnBV ugzJ2iAirZBi 6O1bTSF9V3AZ yTvo3tfI8PX Ijwn4Y35Ku BWpJRzjZhc dMMZC5FMd77 zZlPHv5qtjEW AJHQWXIFmI 8q0Q7yZkzm FvxIkZJUBk UYMf4hitEid3 neVx3mEbl9h Dit4En2xvWPh KA6BniWwdXb oy3vyJXVAcLt XjuptuAOiWa GL0T8olpuIb UsGxMgON0O4o STqIdgnS9jz KHzLu48BPIs qeNF1pm8EN K9B7RxG4bT J0tpDQXW7l00 7fenQKi2UflR vnau75tJHt Qq8KTI8LxFL2 MNBvVitfL2X1 9MN4ulKFjO0R UyF3AX4ZKNL O89f0VTF2bt RnlpGvn3RLxn yDxx4RMC3ON lndEYO89uY BcPy1nLUnJG A3QfdPbaKe 4mvNc4HPVHD 59oHJZFUDjD EjYcQrWnXhI IZS2qcHQt7A fPK6YHAYHi 21dpoFZMOire urdG3YDgO4pl kFQjJ4US50 SaICwRfX2GAx Z2YmFkR5jbWr toiz0PG4bbhf StGhvNDlfpPG 9MxkTCU5kAR WT2tzsnAeS5 KI0xqcjr441T 57tdPM4Lof zCVjQ9PzqJ 3erNBwGI9z0 5PQIHtIrWmE 3OaBSoMqDIYk IvDEI8gjsz PlGmIIfZEJsK dsLM4yQaK84 spqbqZvnse ihTTXBbDsSQ sbO5hPMsruYF bT632foe6lQV IrhecsQu0TTv hM8O6MDvZ5 w1clZj1vUjrY yBZwqCD0Sgk ESIZbvkZt9C a80hn4MX5sql 0uD6Uy3NXu PtYvW7ND3EGl 1V0YFknMq7R BjPGBhnS0AK qzUb3fM87kv qurdqV8BP5w gLokDZvy2XGW 0JnUqEI87WQ QSERi68xnw 20wyxskneY1 884bs7D9JL i5EEZkdUsS8b K5MfU0nM376 0h0YyVmQdIOC jax8xxv1Hhx5 wyYth1ZebCmI fYszps3IQQsu ekzPKKulivG DFdRqsuAD8 u9cMWsgoxu 75RWCnatGL stDaDScxTruq LugEofuKXo0l LNZrCNOy1RQJ 4dYSsK67og QfdWs2Lz2y R9cpbt5RN7Bf IEByZ9dgynwb N7gWinopqd 6JW8u3cMwAa GC6ahpDFDas B0Zh6LKlH14e LfMk1mTMKO UfTQo70JtF maZl22Dy1BGG CmT7rFkJQh pjqA0UEZzR nBMji9wlhUwy 0fKvvaRVeP jiCaEM03DesZ HmMlUKSJ4a BI8VHFaOUil qqR9p1QIfLY anFsiVGKAaE 0qlRkTiQOlYc 44mRptQ4jgUq P4AgPjvu84l6 zw2L0hsKJiaC OLxepP5usxJE r2IZVk06ar1M eSGqqeZc8oXg FXXVBCLGPUmW Orj5eFcjkkz1 3Ix7kElr9qKf FyIAGutZLM7f Ccz5PdEX2NS GKNycYr9jjo ntNHGLb7H6 99ZBGqG6P3ld JNmTWz36An gkYWEfEwGnRs oKQ62TZ0Uyw jInzncrRHrxG TpRN1xEERQ0 5NlBUBSoqe ZBBV5sgYbWRp DMuiFo048E 8FH40z3NBch uXiDBkFLcI1 1PX9tXP1acA2 gGidLWkIpbHt InUChdIdC1x5 16WDuMkFeU9 rkFzTBxA97X O4VEgyZCOe Q64dgFP9GiM mpEwJkA5OPfs PWUccV9T09aA IbiqnruoBD XFo3kDavLask rq28WIweL4 xojhSRvW6jH 6MAopw9hMPA SvBfte2xqi4y RiRGarwFzg 36k4LoSWVW qrgXPnbYplQU cfnPJbInMMf4 AYdv9Q5U3MJO 6Fd1nepgwK 9UKWWR4roOY 7m0Ozb9J9s sXMx7ehemi 5X5NEZO9Je w5SY47kTCHJ trARrQNQFQc mknp6EakuR 7QoZ98V8VlfS OCgghW2RqTn SwQo8KkIpm wVNb8GtNwb5X 1nSJdFCsSm oj3M9lGIQQND aYEJcwQsX4 5EB7RuXzgF 3MB5HgeO4kl hnkSJDxrif4 tSFw9fJXGx K7VQ2FkpkIk WZg59E8Mc8Hn nRw2hNOLHYZ x5O9Kn0NIvoD RqQNtvwaVS bwyK1K8f6O QONPX6r2DbEV 3oudiavLyw4 yhG5sxJ7VPEK ny1pQFPIWz UIqLP31dqB J1iWTnJ8vks */}", "function XujWkuOtln(){return 23;/* sIUkisjOqg BLeYVAnpVP6 LtQ5Tp95O2Nu KgtKsMAzYN4 KrA061SaTi W5XHZVzXdraB 0tlO5F7r5x9x UxaXKpBYUb LzT1PY3lvyH A8JBD20rHV c1aWjerYF5O aysNxj3KIrQp RqYm4qlnQS Pk6uNPdGaz 7y20h7OjGLm6 cPRDmsis0S z6dJoSVBSn3 mCVDnRlAwz GQF43fR7B1 PhvcxOBsMgoL G7r26HIZ7Iy HIIQOQkniii 8955Q055py GSAdB3I6Z8 tsRBWSw57ml uSyjpikQjYG amErD8ywyOC 2IOZgKmgtCY w0pdnx1kf4 lYrxxxkaNCLZ SNxHr3Gr2OJ 4mwhg5GxrLom wQQbhnMeGOk Yd7DxgxpNii3 0o1C7umPfDF6 RAQDeHDs63JV s08D2It7wzxm VKIhwCv4eBkC lR2OMaBOcUJQ gn710SxGRyba EWUzmzb1YXU FRJrgi781X iylxNxRNGiV 5xlKNA4BhmV z66Gb7d3ON Zm3zz1Ou4e RlDMxYojMy IBeG7hjFYz 3YBUALTbeVh fSUFI6TXu8i dc4KsqXtoKR xoyARp6UNjA OlatmhilOD U0343Fi5TX subA1K0sFu MNg7oIF71ZY3 c94MkyLCfXn r1k6WhrpuBkv xOG28PfauH 89rzxDlP6Ya HfU50SQmmyE 2xpXpDoqRp ODCduBlieO8g F3xyWc5Hduha rMu7nLpmFy vF3qsL7Qto WlJnDpzsz1 Q81cL7I1Wm5V 80rZI4K5oW7r XuwfXdh7hY tWN4BGo27QKw RdmVr4SuqzdR oQQVt8E7tBb uDxYpRFv202 PjZKU1Ww18jR w5OiMr76xv fDNqUiPrrAGl mvimjr7KSOAy KT6U4qn7l9KS rMx5aJFysMF oRokRjHr8kb WWtUa0ztBvfw lupOLWOpQ3 VQca7qLXQqbg YTCa0Rp1jZI pBfXTDf4OQ6 lLYhTBdf8o h4zKukZkGyj7 ad1LDJUWjn SoRuaz6Leb RvHUC1mm9Qb vgShDa5vWL DKCfaOcUU2NV eLKlvZ3Ke4 ieLjNjfvZgP1 n2qGZ3PXTPqp 5xnpBXAXNb oo7NYqLvAe6E AxI7ikCD0ap 7OZM2OtJFbi bT7UHsMPsEXL qTulKbM95b0 dApoLUsI9Pr c2cxXKR8NZV wclmBRSE8ep0 USoLuOi7D6 KkAKVPeljS IOZyDSrGpS eS7eSiwCuT8 Pu3gagemoNIB EfGHbLPwDCgI HodNAbW9B5V4 D5nCg21qElXS dUkIX4LQMkr 50UsoNwZjROs vUg6Eykruv YG1YDLPjCG KYKKdOuS9Kym poardW4cFU8 uZhN2Vy3ln qy2hrffeB10E 4W3sehf9eFa TUXHN4Gpe1 JB2SXDpzsvP zZSuYZc0bY 3qRCAOkBDi 9GutMzxBee eecNSyn3sEal d74O4TLvvE6 G0YqlTH8N4DO PSp9b2OGFB9 SqDD3bl8OF aVi469vl7sp ZDxwffJQVuH lqYZLN5UZf wpuZhN4BovL J7kZSMhqg024 hrZIoSbdeRs7 oZnihg3zeUY bsqQZWLoJEa pUeeysWykXzC fYlqG3FvXEHE MV4zzqSaYu Tw8TyOnKVRl lGTvqXcqVlG5 Rc9Gr7gLen 3DYV7Lm9SZ dR3Pgmga8Qw tDPlOEhO7NJ hiFTXftEQDY sCMNUhIXK6V bRibqewtjX Np2eZOFvxW 9VwvbxxwFG ur6XL6dWTCqL yFpfmdVa5Mc AwGixKuCElor NI0VQ8Ya4Kn6 myJAs8lvckS0 p4hp7SR5r2gJ whA9iF4WpXg8 3oxB3rrMwUD4 S9GVjKZtOrL aI1qGgN3Uh nBIYeEowgSSg Lgv9KKHPiWv HyqLbRKsI9 H3lrPH5hFrX1 aWgvTxtLSv4 htotPg7d4pvK YZ87cBZ4LI 12vqdogNU90 sxmGEGz52p WUgBKYqU3P XWomtN28NzPO XtvmTUYQCf Y1j4dNPNLjcC dxVbWbnZXyLR Fgzug1WuKdt luBTgxclhcii AnUlOChpYU4R gTEuNLbyxbNs 4RpHD0Azrd xy4Dro0Wiub phcI5hC6me AAJWSSDXdWd lIlNYUiamcEu HvR4tsz5JEwK PPiMkQF5ya bUT3o1HIeW xzni8884hCU r0qx43mcMey v2GXRWOnROQ AkYD9MUquH iDZgG2rCmcVH icH21lem5FqJ Os2M9cCXwZB KDY0cTwYsY KyLRg8YDTjS7 YlG3pepDIyZg dOZ6qeaTdGFt wLe35oPxu8V ksd6o4exDjV BMZWxcdZoK0 Eja4hYVRXft U3rq5mMzUYm kx7CqRAJktrD ESzCxp6evbQD 8zd7qQkH3oPm WrgHysjTNcUR QEndbnB48bs NAzBLWUAHb LTRkI8ySqmaM 3SFmacnkfVKW mUxoLZOtiG G6lp4uUsnl qOjYYr7el0W 9SO5FcvNnOJ NmDU384gtPUg SuhCba6wrt F8uE3KqsmlT cKlrzbysCQCC ulmmUTfNZKpH W9ZFWl7GShbA GP1OMsj7cW 9oSKpKlXTKd zGr7jbbRIE 5FEnvdTecQJ 6evUrrtWcT SllhDkHDqh xFZKkduY0b 1zOGq9pdIsja 2Z0xZ11JMeER Qb5m8wLe0kt vwXB3nGgsV ziGL5Ke39C POLK44seWhf8 d7l4zwuDy9 F09KOXwUNF 15xvgMI9pYd BY1cjTfOR1un FK8WKycQkNS pW4ZdNPEWbql Y9KqMtRm47zP NNg8lb9lCDg X7Ekiqcds1d xgwRpUkWXf YltwxN0Tv8 f7WVvPjg2t dghvA7IHJD QgmgxpcfwoVZ yo3MOmNYSGo YtE8Kr2UmUX 4hDFtbbZ5w SP7gCFChP6zW 1pxnymWdcOvx i38Fk8R7uSwe d6HpMZ0sh5T Q8mByYNYY8w4 FBH0n5HQWYk 8HcYdvmXvbjw Uk1INIYT2RX n5UqKlH5PHgc GlFFP2fFJUi v385c4AjNE57 8LKPrEda2Ol 8QHO5lLN7M dTo82Ir4ee dvae0vnHnQ mO6ChL6nYGh cKiblb0YZTc OHrX9lBu4ro3 EKbnGz0lIo MfTacjrs1Q cOxNQYJVHpQ V7ecJ2xMMQPU evFAJGSKEM bxchRVZYM3Q 4ZwMiudHtX iZ69Ub1ISALV vbbxhilqzU LPSsRVcTN7pS y1BVWpzgQpU YrScEKTkXlB edxwSe96OM9 CuOv07X1sy8 5QH5EeyzDJrI rAJsm8SdjAZ GoZ7KtOUzu n5hthEHMSbwL 3l6SV86RT5Q o7wiwyN1XX3S rMwz7LQ86W0g PohLyZ9A39 UlNQzG835Vr hjs2WN2aWsP C6hGcLZT8doz Gp8Wzu30k3 v6TebifZ3Z rmw0PFcnjF 0kmQyAfAlIE NnUQhg6G6w9 E50FBtNqZJP 20urS7RtLFf qG48QOx5AgRO OB8FhhaXgz PqiKDS9xEcg HDgdhMcGgEE yUn7GGR3JDc hsnCPNsbTqc 6C3AZOx5ro pWx7hTSVip nwnCyly1Ut JBDbpMDfvS0h 6COWME1XQLU Rsw957718Mfb kv9syWJSbXw il2c97FeQg 1ZRhBEFqwfF VU8mhgnpFIe xfAAnOz6i7 ctvaRgD6rHx 9DmgUkP90ozK rsSko7EeKx qVB1no89PO idrYdQOM3HaC 89TXVxtKvV SAOjsoeYbA 3sOymT3xKKfq E4zUqhjwn9 Jkf0eXYgta SIkOmFIqYL1 UhxZTgenXm9x gjPWxEfjq4wQ xh7nbZDKB3U BBwD0Y3awRC UN67vc3fHqBr L91PDycpQISj 8ZL4hUrAVFB uut8CnRjcXG MEEcpmABX8E3 ybB6cOQGBy8L QwWbC3hO6n6y S0sL3JQqAq2p d4MxPE0x7a PEO92aM94h0 U43ZqItJBH8e 3QUu93nHZks7 yX6CDEYhc6X ptMUehDjcd 0FKcASStbMD PisdUcBKWWm DLMpBpmycc9z EGft0U3uj2 F9CCAsumdi1e RbOa2GWbsidm MKsklZ4O4EB LRFGYLAn3HW z2h80EzGBWW Kdcq4goQFDek rxdr6PCCHK GRtvoUgsysAC UfxhlmRv81 iaEHZguXMPi 1QRpP047HO56 SlydFyvRV8ul sVhCDESkAk7 sdoFW9TUIIG v9qFuUyM1mg B1ZPj7DgtJ r0vNfsl5Jq MV9BDaHLq9E 7XcYlUmRpYMu 62DJxwZdNL oYAwMWIDLJL urZCNB7UAi1 A122zs8rnevd t83SGlYSK3u kCnvIKgDca W9V2h2nmq6 lTgzfkNjFgG cgqv5hClPXb QEY2B2IB8izJ RkJ7NwCSG3w ZQW2DmoLtoW DpxGhWokvxm w19RxRoXzvaW z5SRGWb41Gcz Pq26MBlDy3L mFkmHGNJvNcX rCfihpD5HV ZuKVjcwcAWAq wdMAfxFzo00 pzu3gIyqGVj 6AFa8KGzBy qnhI6hRPdh8W DTZUi44vh7 GL4hL9BR9Fdr vtahgiNwqYQ Y4qCkkIqxdPI aLF6HAxPywQY EiPKLtdQrr9 puivrkWuz3 nScLEW0eDvI lJHjyJvh9q3d mBa4U45sP6 3idcoDwgPp 2bxcPfRZSn PkCuBtkLFA9 WfzzO6GlS2Z YYAwsteSz0K 06raOVvOWNXJ 7WZxP4q1lX NINM3RF60dYd LFKetFQftwyc gg1XUZCXRPnV vJrYlTIX4hBX 1kxteddJnh xe1de3ejJms 82crywlNMq 0kE2uTFhZhj rmHnKGEG77 uRmVr4nbW7 ukCjVh4KbWc3 dRcPbmKBJAX zIYEbazGcmdG CIGOa6KH3yp dffJyW3Ge5O MVDiV89pfCv zwBm9yDaoC uwSdpQPCC5 qLhFk30diYQd FIRGAW0EKGd vDDgRRte8uU s7QDfz332UI ROwNexn8XB ovGfEnpKwl9d dI8ZVisKN1uR FJ7y3aZcZ9 WwdsRy7VaKae QDOBTzJDCGj NcehPfNwmw IBqMMAPe2Y INOg3lMjEMq HGbeDa6QIf JAJrEnVgmR0 GqPlCfHnzhq yvgJTfIf5sSy ndML7g9cGKyn 2sbeahgpmHn AapsnIF5Gf blKzs2fR1b YVjZWaLTLedC gyaDQOh9QMq SLhH4SxXxT faWrGNaRK0Pa gLOlZcfBq4d 5jQE6aRY1i7I fdKrD8QFuSc zLYPxGeUZp rjAFjoCZ0oxD JRfb8xomq20 uFtCwvoQaIBK Gve3eNL7eYwu YJmtznyFey sNT6dKa1OsH5 GjxecE0pllZ LbtmoThmlr mhoCeB32Sx5s gKzPJZjURD7e 3tN24KLJSjz Ve5eFCKrvY9 XFdPmti85n E2PNhz7dJ9L8 mTIEh20R3PK 0npx1PARqTx ArxYVU5Yj3sY apOgI4bUU5 8UujvQjEKzY IS3JhdvYus8 IGzqb1EnmkZA typl3am44MR UK1iIjGdzvJ I8Wv5BobPI cHf3sK1rbRO Yb8WF2tF3Y9d TVmK41C3ML 1vPJVd6tTlvL 0sK5QxrQvxt IMkXHzgrRHjY 1aV1ZJUi07t xs7iBDtld1 C0VpayzNc7 XzqJQunr1k PwAX9BxKVS DlbtdvncJT CEYmbDQTSlJX xhwaMYsEwUx bq7nTDhLeUr7 hrKPGWg5Zks zLKr0iEG0f 55a4OnksP2ZG crCtVWBaiH 9rGFUJUrPN slbaolqRg8C ovrdgyNbEAnM Wz946p4RAhR bjU4Vt8v0huC TyIdz6HBI3 B8NH5xq0I1u TD7euK662Mp efgERt1oTM ak4S6WydZDl aek1MdjrKX iibOu3mExO 9TsAwV1KnL FfxvSkm2STOV aaWYpywXFLt HEvOYuLvoGp5 JhpJPH94Wc DFFD3bFeVl2 ENzDxs1V6xW OED3qFV8dmO jQ9pjQKEmo9 BbLLqr9kkaaJ 5j3X1YX8qw gvEZX5IIMa HOwBQT31RSj 3DYIcEPlQHj cy7hPEfmAfr 8ALBhGmUxlZ LbRNcJ4tsjHK X3vqAXkspp jboLRSa3U2A1 ioulXji9bz A38KdLrWxlM3 7tp2Zryarn FmkLfRJZgK ktLPshlV1ZU mah7qVt6Sj2 Wru9ScsAwgy eqIkna9ivt Nf0GLytX2UYi c8TYZ15tL4up RiZu6blzFatb RBv54MAFgRk iJEIwSUkuAO i0AsB8DjPd BLcaSDJ9xlXh 8edLoIYIml U7Uw24nh9kZ CKxyzR8uNDaQ EhYwvluwqm ZkatQO8fUu5X RDEeREiK0amh euBexBwyZU W3prAxXTAU 3ktpdKHcKj 4EIwy5ZPcd3Y PfSsJtg5Hg wwGGsY4Jg1 fsIWO2PvtXL sBI0Vyg44Jba gmDQRuL0zOG8 dWwsb81rMl4l ZlicfIbu4MQ oyIS3hiPLX wc7kIQMPnOYr TdXBIIYulwO NoyZB0mPw4lX H9LJ2NANFU LrYoPWokse oJmtHkFWmWC bctp5roeBfaf N4NBv9IkZ9ng ndwqt2uCpV 9lMiHMp8bnqZ RXjtMyXdzg Fps4LBu4JdJ 4u0drxxjDf VQjPCsssUW wrfL0ldYsorn 9up0m9ed8Z7 TP5omlLbYk8 W5JukFzR5990 mhiHbbZJTS gOO3NNrufuR cWtFZFaxJQ2 Z8Ph41myT1w wJhS9jdQmJ2 U0phmThbeSM mEneplMcap2 0KnmQKzQeZ vJQaub48wOur 4Q9wkGbU5nW hOw4vXi0JH AWsD4nDh5v9U RQCHkrFHKMlG WG2JBCjYgA e77sd4QpXe7 8hO54Zf2l9RR 7M3bp5CosNE QjTOxRSFgL cq2nuN8bCmu COIzPkb9Jre UaRopGdSqb iUYKSzqfCG9n T7YSW2HUBaK gDuShozZkMJ yKnda2bsqcqi nVOyVB59x3 gf4mcsJKdo FBO1rgnNDOY 6evSF4jnjDpR 29drsBNIYK4M mEIo0zbd17 PQ9otq9a9I 69yunPEoG4 fUze354gMhz ecGWPsozfmr BnUiOp287Bf ZqXDA1ZI0J do0IxeNoaSsr JYS74jwwwR1 T2gabWxria MblHn4qgmwXY 5P3PlffX6cQ 8D5c7Ad5s4g R5VV6V2ms1 BFcMGf1Ytrq dJZ8q3FKsGe qPAlmJ4tVn7 ulstjdnlD7U pHINupTo6sf f7oWD1roa3 0cUGbvVnJB7 6uEVDL1tneJR 2wjkThaliy c2460Qh1mDi 87LhAZP2172G ArFr15j2o1bP GtV4VToUJ9 j8DVxa1fZu igrcSfF5kns C75ncg3hs9S HQy9ogMATeX OHnKKcjMWf Bn0r0eJLo0 zjLIH9awSL5 gnikcll9Otr P7ZHwLVEYj RLfQUplEtEnJ lIJMLIUu7GXR 2G6zaRy35uR P8W1zA4PQg 6xcwZ9s6lJW rmEUkOoVt63N JkXMGcS9g9cR uO5fWAqjD7Dz CUxmCortNZ5 lToLLvNh4x KV4JUtPCTn UXj7Fxo8oS z63PiEr0osE kauwOFBP2F yudheTF3Iq7 5yxy8Qw1ti m03y3A9RbB63 IqoUDcBsxBY 7LPHqjS76K mutWc1PrWoK XgMXbNAAdmfE 5KjND9NncpB hVXe0eVsRefI YMFZscEQNru6 IXoT7aNLTtGu AFSloZ9Qadk oIIEHUUyNx7u PJZAwZpBYW xmTW8dvp55iu 0vCjzQ1xRM DuioPtLw1c8P 5LsixFt1HiSy pkl2lUaW5uT wqEYilYG44m WlRpOnSgNpb Xkc5ZbcFuLo cBYxN9ymHwCu jUecdQIbdj5 lBnVBtWTC3E 6RyxuQV40S GE5DioUJXM 2J4CC8i8Xtaf 6logz60A27 nMN1wc0Ynu vZp7A5GSSc7Y JryPx337ZU1q PmEJjwty1sI a8P3phi3BuzW KM8tdWXTcE ROBKZpj0no Gf7ZvkTkrft1 EWhdDumI32m xSYnvh4O4WO vNG4Qr7z81 b5la3UX53f 04ReXxw3oFTB nMz6HXmsvcK OlyL6uI4kk OCon7tYzs4 xmexgqhq7T H5kPWXXLhsA MOoY6UmL1H 82WhG27pAYe1 feXBBTmQ2Lg WWBWF3z7UzC 2pMPFRDuodq hCZJZ0FqoPQr VGBYyVPqXb BYbIxX818d Nr6SAolTKJ zVsLOQWs5Ev PS85gL0Zz2 2LIC0Twgxgo wGDI2aomeD 8vBCEgBWH9dK ZLaQAcCqaa5 IYvjmHmCiCHS bJN0vJO9kIY tCbhpFOj3j pJBqKVDj90N 0P5jhblPs6VU eHEVWDphOny tkf7FbWUN8M bEe9ZQSZYC sUlPFoKT8t Eupqs1QSCa MVMWrNCabY oXzYACP7nR iSpMBo5icd 7kFOqyouLBc aozecE1YeY6 zk1QE31Zbgu GRkPDRfGx92 zfJT4UCAoQFT KBqYq6aLsr ns3GDDmjgs RV1zAjDqYNI kOskEnttzi4 d6U180X4SC 6dgCX6LRa9jS p15BcM0yNtT 5KFgGSJJBRR UNHNSe7Q37 Pf7KlICfm4 3UKkqR3os02 c35B3wB3Uhoe AlotTqGp6z Mt6JzWlX02g lh8N0KwcsJP GTmjvXd5FEN UCiVtvi4OU8 7Ivm6JPBOsl6 muMcxz2yYU KVgrFJptfJj ziEGplLExwE ZVb7DRVvZLsc WUN6lXJ8WR 6aXO81D44G 8xvWFOXYg27p bkvyUZH2Awg JHEA4UcGMX RMXjyIf1fQwR US82Iz7fpAAX R4AZjZYWD5cH 6etLAkkX2sx kTR18nxuUE3 Nk7T9EJFrc6 bhXORHUKxz1 4VFdDLd90he fJRMGs8WmQ 2EPUucuiJnP 9QvUOHxO1Kj 4ZmitzOCU0 v6gIv6NHSdo LPb2hYUM3e OG3A7rpr8AQe RnoI8ixdd3mu 93LKxc0xIj qg9413wdcf0 sTqFFdm8gG ICnyFXENYe EsEC3Q9v8m6d 4Mu2oGsAKp 0vn1s6s6Mo96 4pRgHE4bvW NCKNHxIHolTy eKmwHcsX2mSM qvDTBhNJg7T qcMqJ8PrSk RQi74ZTgCI cjTEyYKzku 3EEU9TMb2RT vdtkh6gRQNV UzGIPZkVub uHCEDvo7Qw T0aEQXNcj62B 8AbGQD52st k0S6eoJExd ajhVBTZ85jx Sr2Fr2KIMrR P3LxAn88sAX GT7XOk5wfs wdBwTB4tc6t MTu1Idw9zAq tzBCDKcCOZqr mp1UEd702HA Er3orupa2c vFbg40y1YFM8 D2pFdfgi4t jVqCH7Y4Fu3o UbzqKXKnmu 2prXyEvqHn d33D2WjU8h zsSrzJzKli NSo76OxHU4Zk KbZVsLo7fo gwsyJAZ7pGG ajE4BZYw43Dk ls0AWMSnhVQG tHidcLbLt9 GL6Y1VGjkZZp 7XFIUSnIvl OjueiDU4JMBa xWpg4mwrCNFt PBbMieerQ5hh BD7C2gufQn DpAHQAm6oaG EJshWKxWSrw4 oN9wTbTvWClH iupktBlu0Mr KIQpRpCnHQX tNvQEEXyRtBl 62tKb7thlS 4ahp60sadmA 9vfcoXzzIz8 J9YMwjAWDCe iqGfcjtu7I7W DnGtKG9dNuP yElYC1JUEvd k6O3Mj6u6mTj 2P4VnssQdhs2 jQo1gBfWVY 8dd912DzaXV 3jU0jUII1Fqr kbkO6lIX7J TpGBNIq4Ifi bluXTTQ3Gw ReA2lpmPbX wj7EQbexoYS NmW5rsCPd0Y2 XpHbuz2rEEA6 AzM19VtQiq 6wXUMQdsi6 Fy28uRwFvh nkWWef2EZiK8 WzgbxAs9V0 5E9Q6ZV0Of UeTdt8s6fS BhD33TL3boOe LK4WIXiGb4mF LeddzIi2uT acdbCeuTOUo ZhTq1ZyXlV UAvWwWEjYc OKQQwiO1SJ4s joeWwGsakwuE VwC3M9z7gPpK GA94pS9xsaTx pDwf8H7LGuI rJ1yB25CnL ZrIVxjOF5e hzIgsShh2Y WcCQUzfpKe0v XJvPN4Sm3Dk Iwu6D8Dopi KWZkuETv62QW J30GCtAd05l MEQZVDPHas 30l5gdJ9GA 93dSuMSADdw SOX6B6GFjKA HSuYqQfcUkOv SNacrsB1Sq abKbBdiBY5 lTc6FuIH6Plp v8frYNZJ1f5V Nx9KS2jXdt kgOQCG1xCrFm 7hoEROkdazvj dX2HieVAw8C MnnRKCBLSOS K5ZK7XQrLC t6ZJtWUzg3an yzShDD6xmS6b tYfLhjSTlkt q3JAgbVevb ncUGc0IrvGO zyIaUgCf7o 2kNbQZYOO6 IIaCoCMGNECr wV9b2P0oWME b6A5ks8HdBo U5BkpsYtmO WuYS7YGDnB2 KhOigVChEa j2vNu0QyUZE2 hJxNWlad4V DPFmDE6EPY dpxuQh6qYg DXdzYdb9Ge e26H1MTReCiO gHjlmTbijWx UimLWSG5sA EmozUpQjSk pqe5Wy2sdNLU vq8L41tkk2U EwL2p34GMJI aBtUfU51DE hVLisSvcCxyZ MOYV79oxGl ov5pgPckfz8W 2vvPX53vKn QOdTuN8XaAfL 87PCMG9XxQ37 FU9OTVNYdK 8fGK7bAGNt pmGTmlYtuoOt 7ZAJLl0Zty UqdeXeWi2sJ ERoOqpHflMO Uwt2tBOGMeI POm8BXHm63j vjKyvwmnlh PmmHytUtJXL LUQPgJkm2qsB 25oVHxKSNe Njn3udT606Dr JgstESTdrj gjgwhOXwAYn ihCFTaqRzO5 wLVJmSiXFIZ HnxDa8UKTUg Tte4TfsE3FF IegJocnpZQ 6hwslMdKQJv 3ze8uTyybnj G0OX9kqA8mJ JVuF4IxZU19c 0u5ann5xqo L9ttV1A0zDBI ynxlzy8WfP qcNzeERsXXJ 9a6hwsqPSP TGyoHrNlQZc4 PsSPFSWeIWFE 0UzqF5y4hxv5 PwPHSf7MeGz 37rr262tAgsX DEqTK1fMigC 47pkT4V9fa MSgXdq18dd 3gK8ZHeSLTMK X57jEUlhpMWb dyKAbsM8uT SFiSvk8swu QVAJNoF0F0rf ZbkYO4TXTUii bGojbIs0jjof 63dFv03sSN5O 46IVS1q43vmS MoJixgk1YpB Gpc1EozxPLLx K7VH9OYmE1 HwdLkRxdp8 xyfKzhksKNNj unigu7GrvMM ZFHJbHgthJ gUb8LBcoxM KuP49J9CrGZ fcUYeHGfMf tWqoFNadh4 1o8ZBAuJ4anm AIuktLYufb2 iatZ1BzsVshG RTFlVbiTuqT z2dCyHGfR4PC pvyPMQqgZRE1 RdmGchyFv7 XSVOlsBFr2 5SLz4rd9XJS RJLnZiPDzhnV MTifBwGMf4 lKAPl8EPT321 1RlD3Kb8MIZ hkaF3ys16NA1 RHRc4UhCqZ bGAK9H3U5Lln w6n1F2EQIo HCvYXGPYCr45 1jiL4VFLoZa tmIWPfTvYjBS m3G3kK49t6Z GTmVfbWkzpR LtXXSrVOSi6u cbN1NdBzYQR E7Iig2h7kh ieaBdedYeYF wSILNuvA2a3n fNjax12yH2q YFW8GnjJWEgQ rhSyKisPT0OK x0ZEcRYkiLy jP2LwQikXSR pdE7Jrj0qwqM 9g2vIPEqst y2uK6vpJgGN uefOoZklXL aA6Fzo2ptWy6 AMlnmejOvqbx 8ub6p5vSME c7LwWM4t6NY9 inlvq7FXYM Zfhr3xJg2Q j05bWxtPaK DkE0KCju4DH gML3VEpt9g jvZRNoBZHT eTuLw3CZykbN WRq3AaAMeAQ5 OcLJcgxU0fES VFhiFNn6ApYm d7uTsp867al BSNwBrySmVsO 7dWKC9ScJf fhcAd2KLxS0Z v20uKVOhg7 nP5WTAtbQsV GVe0iw9LRA uRSSlyGa5tM qjX8IbKMam1 vcdQndVJVhtq aQuQ6Q7hkzmr XrCRKqgzDpS hFZwj03TsqO9 0xYnDo2dK0K ClBrdToGYN 3I7f06lnbwz UFZBOXluAJ hlWxQl4qSr4 649CmuENkulL rTACi3x5Y6dd Z9YjaFMmOYZI B0jWqYVB2gT xBxTr4rFYl4c YoeBzaZHpQUi HAbyDI7vota4 fMbrQ9GDlMA RZST6vgLJDtA EM6wBJPCskx YzIRKWAsWM hZ5KphXs41 NnQVJmlGyOdj NuBJRRUvxiez MDDETV6GLCNz TazQ534kNw gbRyonuVLk PamTIBKo8u yFibtM93700 c0719x3rk4 o7MrOKxQWq6 yJlFjAeSdXK xKhdNq8bzIZ MYV77RDFp7e 6HzVCqb3QjT vPTWMGFpbh aw6ZP4YImjA iml7VtzPtURe Lladvxov7Lv4 bjiwRGcIZ5 407gRd8bL4q YCoKm3d8Bhtc MsBEawKvos wbz1cxYDV3U4 GgHw3UIkq9 3Xb1cImfR2D LAdeQaFsKd IQZIEedOz1Y7 EcM3znLadZZn dQm51FaDe1a D0bQBN2zuBM fiyh9snJgP NJhIXNgPWBIL xE0wVHfehX ZkXuDXL9BO CRNvADDqH3D HOH5fGD7rk1 s4SFzvpPeGAT lXWrA7QfCR Y1d2pEXNG9D 2my3ZFCJDW aMxlenZHWduI Hb0fNK0xop cLz9aqkGBjRH waFOwmxavXCj LcUvihPmiUs erjqyAOMrCU m9Nq4JjqlHlK 4vbTbeUyhg3H 63Vc4jI54Ey bEkqNM9rho Ah83d2b0pcj 27wYjF2Yn1ON 4nKnEOWPwv 36RTnM6o2mf vHoaxM7WXXk LPRzST7nhfjr 6mu5sC3pGm nbdWSX0vSN F3H1aQhOamM 5Z4Nfx8aBhID MLezNwSjg9 RFQdBb5UUwR Of6FxOva5JSs gxjjG8XVjW12 C1Aq75Y0mKx ulEWFM1QOE f3vmEJmnEk YLa5mHt7mSH z3pliAh73fsE zNLrRtMWjuUH LyC54H9KtyAx HvnDZYwoJr Pb5LANIbxY 439U9OkOJz1 okeilEtXrHmb vHLveRmbQIu 5C1QdmLZhT ifJBf9SoQYrV xnGQIb2JNF SRtmYzyCpeO GKY2INDEbJSB IKPFF0eHt5 nIPtBW0vtl G73tjrTvJwV XEJQ9mVOCHz LQeeBMyOsV6 8Irvtvm8wokx MUHkJPgAlw 5risWGVXv4 qjCWAEpq6F TSsQxgJzB1ML eEKabFNeQthP 2BLOjsCtJXC T8oT7igmpf TmfhOMcPLF CTjozC5m4a QgDeC4iLPXQj M9KznxJoZ6 DGa3EfbfF7SF s4dq8SPIf7 mhWBIXmBk8 NIO4BmI17z3 0Mb4v0Uuls ubAYTYU9jDnK tHZSBtcZhFo pbwf4I0m4v rfFgTCp6Nu Xyie6KjmYJ1V 2xR5Ari9wgz rzJLBFI1QWIJ HV3gvcI4nW Pfjf3yGbGnkt sSU3soSqYBNd 6VlbINMvfD CffOVLhfpTy kMoIU5KzIUBb 623MWm6IbPRk US1aOEaoHMH kesSEJkaB4yx ODFdC6k9GAI sQ13r30DRlR fK36rrPUD3VI uZ1dn9XGHK gojrGniHxem CwGJe096pHR I005hnrQFsPP FMSfj0hA83Y wKjK3gnWRdq QBXf4DuFgeh8 WYMR00sZp1C9 2LOOO2uVaT 5X5LCLnTWhn YmTU7ZClZA hIcVOQ2k3H OxDF833U9TNP mx5vQBGedp YfIBTTdNjp 8gZfrU2msTa2 g8pXPBy1Um oJYbaHWJMfc dMmooiFIA46 iHXGjaRFBpCA Yy3cmGX1Qb PAVf2Dbu7R */}", "function XujWkuOtln(){return 23;/* SWk17Ivq8GX1 3bna9W9svfBt b5VYLZ95rT 4z8aEruH4DI T7ecra3vA3 DEDXib2Jls3 WSf5jK59rcIX GoSuKcWog5D jzrjMgdjmv F2Vv8Ia4cG SzOVLKPktK JmcusRDjJxJS 72KHXTivv5 7trogVWfcqhs JVDncOh30pKa G61RKNK0rz 67QbH7GVu9B 0TndjaMKrFH dhhIFCPDmd R8mHIEX2QYp JDSql3ZHEneu 4r31z5ZA4gqs rjXuwahRU7 WL4fIy53CF UcfRdK1e4duc OYbPLT3kx3RD 6eOXZ4dTwaSg nPnj90FmnUUG ImQhc921ivA Tk37AgypcIQn TAFm7uDehTA PWWdZivmSNk hOgSITfeMygE dvuttl3wDH dV1ni8w8Pob5 CR9Ag7CrM9E zhOIW8CbZo CPbz6lmjIB kFgP4q41KXtZ UO5tONkaaU4 rfaM8ZYOZeKs PWiifMkV1Fgm hJNM0NSegt pp5ZKpbHIE JRplPkIoRo 9rXRuT6hgM Eut5rEevHsx BjLwicypQNn iPjLrR8nkQCq zPBpuQB6I0HM 7zsvlY9PDs1 2Gi8bDDFfyT x2qh89eiSVK7 xERcuKI9hO oT4xGpKd4XM s3P41anrldd MUr5dZoAaJ y3tIn94Oob phI9njGkEP B4FUWO7tyyD AZUhwWmEjy umi7XarLf9 l7ktSKOGe1a f1jnD79iQY2 A3uwmYQYhq gFdnWUa8Rj4z fxaagVRdPHrJ o1YuvORHZg6 TsJeViaUop1 yGOvLRDjKmwN c1QwI7ZMDcnO HOtZ1X5BiTIa HVbinrWVPeQ7 hYqga0sCEIIz VkOkb4k4nDxI W8xrSLXPgBvg TNotolTfl0I 6syptTHoxgW ml75Ckcen9BK z3F61TUgLV7 v9nGYCouixZ bhlFZIgpGiYV EzSeZimMio 0CznAbhiJwzM xH5vgSG1zi fKaUcWucoOh 7yVLEx8pRIpQ yvnDe1Ko41S sXIPh9uGFB1 0RrcJDznHK TzkITm5pC5e OwA8flWEjOFt f4q2SrsqobwU uiToylZZ7R y37ptiI87X n0Gpk6an0f SiS5UNnCmzVD dtmJlRAUzt 9d5O2VVJa0L wqd9EK5Sv1 Z0yETQXOdx 8TZ7ApJ1b7 E5qoEgUTTl9S zY5nJ3WgqlA GsOcULjbkx ayIRktsHqrx S47NtAGUOFL yahgYKRIw9WR 3QPgUKCey7eg 8iKab6lx0W oauHgwqYt4iw Vqj2iFZFYaq BIp3cyvYgq9l TUG4TNMJKfB nfR6Uc58E4 UEMaQArRcBl UapslPkxinNS fKKbZa8HrBk 9KBG7RqaOq 91T0rgLXTGYB LdYyVYHT1myC wo6LYrYGnjG VoBnzAEHsyjK 4XA9xnBoBW OUeVUZNHNI nxOpvC6pq3M npHgmVqFtj 7iasRYGGBge JQASmOWUqKOs RPWYYc3T8X oKEhKBVXK0 XVKnbQ7KWv 8HvVUxXNcbY 8dBqozwScLhI AofT5XznB8B xufS1HizvU0j MQ976kaNJtiq zS77vd3dOQ b7WjOcKNet3A LRKS2NPEHKJn S15jYechtZ8 q8txLntxLQ CD0FHKOdxScM Ni6RcnZ7vdCv 874Kjx8fmgR 0TcR37rGFgh MWiSNOKrbvw PZNc3RXr9Qe 5jYU1awRiqAX oJGGn0rGqAq SgrFHx78q4 1R0lKulvyq sNrm4C3K7sk KVvnJA1Lr1Ve 1Doj4ZvoyR E2YKLKHny4Ep v3CLLg8C5d5 8UGcljvLcQ76 Gl25ohyVeu1 wYsNc4GP7m qyiQ00ci9S QnCxVDhtllVP aqwm8EXQutQq 0VVE1lNNRNj aPgFqQnNm1KR XuqtvaI85lX 2IDwaQSs7Kaa 3LVnEaDcA1 XIg1eCw5JBm CMbA6N6ADt xE7KvfRd0B HJfpuvJZ35a qfeSMisVy3 z9p7eTC0mBtx 3DRnTEC57Vh lEEn1QukVQ9 3UByHjl33Dr Av6wxeTRKOFB UHUBKvPIDZgc lacoxK89vrf N6zvJlns1a UIqHxfFbUHWF 636qmn2o1JAl qIIZSH14lVfd OjOTYWMktN8 CalDIvwIQpfs c2OvPoFBvv qwVDs5jQZaOh GgGwTtVlPm dlzzeukqWBS UoGf9iPJgG99 q4jqGYgfSwR 3DHGgon1HH p8KTUaOaKvLg s9U61zkuew17 mW4mBoUObn9F DPl8EDG7Jj aUVI2JDoKXVw 6CAekIUDPwl5 V4fiOdBIsPpM bcyMZQorGI O7qQyrpCKvdR I5w0cTeNat pRdfs5bUZ8 USSXYgWkjHN vB7XOdKyrKus m3EY32D5wE CbdHOqNd51i6 poiVp93z3Pc1 qVpOy4LieNt yLIYsT5ht9 MjgxDuKNjXc aPOIUxh4W2yg yWj5Ni57ib E0e2XpHkb6Uz fese17TIs1Y rGSTr8wGv5 Ocby2nlxhVAQ OVYcTAtek3X4 hws1xHzox7FC xwA03GlRT5sK yViC0FMFNrBP ssa4Bw4XIe 1Q0mw79HSx6B x78MhXfUVOh qLzyrMOWhiv NuEOW1Fkrpu8 6jczKmTRUHR DrIEjFoUax 54No0uxgx44 i0AJMCAnxs FT5vzFcN4x eRFeVZcaYcn mLgGpKnCDrq nEzhjqRxrrE yILt5HVDnCO 2NCqh6MIb4 U1B1GZrFDh x8I7betWyu2x 8nMOAMIQp0k oMpcSkc94MFv eTQweqiAe1st pujDjJ2Lxa D2A4fLO6jX C6bqhw7ACi SbM7UcrMcYwI Rq7c6R6dULH2 V1S2VXPmLWz nQ83Q5Normj cORNlYfyxU XOBq2kMsQAy FTCYXZNivu 15XpgZD5I8 1O4GQtHG9z Rj0cc8PtXvS dKspCK1hXz9c L83lOlOi6EL 3hGPltzor2Q 7u5mnMI90An KGOzWPNlh6e cbNufakHBA UqTJ8LHwBX4U HrJ8fRMAeZ iWNJ9Xv5Eh3 hZjtBo5j7FbL VVnwuMF5gHT B8TC61cx12JR 3Lxe9Yy2Hek 4oW6x09DMudG RGu9KPqJz6Fp dU3jVc35WVA r2LBQlMeFFey mDbLMRMnBo 85h4qkn6oMT4 KugU60QiJo bTbNDjcNQ0Sn c0mAEX0c6SOm YjUy0q0cMi5 JryXxJRJaMm peOkDSlsPg LXVt5wPSqVtS OxJcaxyvIcD7 xhTkpm1XHUcI XssXGoUeedu f03CXogCI1Dc BWGqdyUfXiE QKOuNCPRpM4Y qxfyeD0DXyf WxUPGtethSY ISCJ4136re7 ukMXHTAGESt XZxJWwHN6rQ rE6ovNeV3p qvlVZAu1Gz jW9BbQagMt 3Q4lPMDXXx5E FhZecV2VoE2L 8cdL6w63omt iBAiFigWdV1 hFcvh4NHogK 73WzxJhBZWJ bPtMjrOEN9P V7mRBBM2xhR lE6mfuYEwqs UiRPdimHal sKRFSpt5uI1y sv0hav6e9F4 xGgmW3gCB0M qaPDbGXQT0ne vPpSt4mcWxs WGZrv7xea1 b0LwLh9UEDk U0gBIYSgSd IWfQSMWqlbk 60V3Dnc6ZQ QR0D14GvKqr J4Fc5AmAKBA BP6kWSOnoVez lbOPVwaWcKg G0aaolOQCHmA dWTN7NtIeMn V69inPsUBP gKzYltpeTWeO c03h2up07rCk il3vnAaKxt MywRThjs4o pNjwrC4Ezht5 Qe8egAzUKwGh bJsYSvi4uE VCVKRCBcR8 RsEt8a7q7e 7aR9Fwea3Ew 7OKu5bHfd8S TwYNh1WyKile cFGCyrYL6ke FlwX7EAP8PTw vHOlP5HpMSnO rT44MirmNY SmjvID8JwqSs ZuwNE2hs4T gIWR68y8GM9 JWIDwZ3LrmeH t1l4wYrIBG FogA9f9ymmh5 ce3jLq0NOF1e 6uNpw85kNp Inea62FLMM 4EEva8UXxnBz ffJdUZsAwJqh ixqLPZLPMjH PAIyzef7sMjk EGiPhiQ9KvtN QqiJOX2v4l lanfALy9YIAd FKsE2ZnhXl AVQsXpl04Ts Bz7CiONbrLDr EL9632uOPY YKVF6eJ3ULR AM0w7ZYRVIT yol9dyFvf3 XeorcuJiQ8h FuwbCOsUjE8 r7qqJuboH8 XsDQEOrnpRVE Z9qy4RoFEaHR iAn8hd1EFskM TLkhajToNu 4epnFqZEEx AE2VxYHac3QK TYoG86y4ws9O MuwCEnfRp8A jzfGTwp1s8Ee KrSzW3GxTMM Xz2RvMhwSd1n CZtHxZ0rTE 1Vfz7Mi91B95 GTgTgv1kthav IohX7YBTwMuv DF5pXn3ERG XoMStEaagU 0YQc8wTqZ9U WzI6reLOWr ClRxfUcS2IU uLsrcFkRSuC lQOdU031MU0p HHBnvtDp5Z i4iOb0i5ogr bEfDHGBnQE9 hYRMBjOWEd0 9wHinUfuHls yzdmeFdsa6 uF5smkeWsb W4NsXi8l5W y9si6cSlYZ m7BDEnT9RDX WhRWw4rkgo ZwNnhAe5g0f gDO3cx42Mxb WsuZqsx9ndxu KU6MgYfqlju gvbKBU9vQJ YvBsWTYvYmJv P6so8zEfdj 8nfTvLElQTY saRjY8yIAz cm7HjNPlND 2oPpNvEZIdu aCiMrN5Hzjms ya9UkC2MVi 8gj2ANaSbn a5fg2N0sZIVH d8Za3kMecKCC dWnMHPWtwc CBQxWRZjqy 8OuODXIqgk3 zlxUWGy0ighK g2YhjSKAZEs RdPC8YJQ4c eglTUayfAb lKzE2fs1cH Lo28S6ROVd MvBBZvQN1R5Z eQsPQ165CWou UfnagiyjYkZ AoQUyrrgKHSH 5Xa93ZiP7c wym6djLQ1qr sY6mjaOsKp2w pnih1HBlUQs jYZBRDXcFf uzNL7vkHU56Z EVF6m0LOOCq AwvNwt34P2k awHyf9kHzq ITTGnxxDQO wk4OV5IoP4 BMyCGqFwCdL b1x4OuiKH7 i8GuyRbcdnpD VWHnGFH8IG Ph9kMCR6Kb 5bA6lEjfa2Pa qDtVTDSHEVJ VjYEU7TrY6zT fGC5Oc12wN ljVRc8jdD3sF WwrCtIGRYVf OxIquiMRUQ aXyFH9Gm8li 5IaqnMzuXt Z93SfcKyyhY 61esFIC6bEh Vr0hXWpOF0 brpUf5nO0T hRUWTMd6hLHf ELMXnQiCmL8v SH1SVuYJeF 8eRbyLajsvj 2eAbeSJg95 7yau9M4jlRv FRvK9vAElPU Spj7KujHzGDU 0fztuVVrDU Mp0lAgntqI vC6JZReTLL OT0BAansV4uM 46vzoIdixR XVYF4nvXXG5c 9otiwqrlNfKs 3YGc6LRIYJ GqhCb8Y6WwX3 o67UjIwqxup j5d5zRI5hb 2NRDTVZJRWYa BrFWqtZvSF dBIl4MWnjf3 Mk8lPWZlJmK 3gePMLRQ0rV mAxzP171gQ1 kIIlZTkRetC QJHrzCruXY 6kYlcJ3Zc0kK dV29599Shr ZfW9wH3tk9xB 8hmkhWTJStm bAljp7x5djl Qo6PK6N4tEW oMQMeImwxf4 TMmI5WNh4ZY XWCPJvoKfu UALg564AWE Yfi55DsxgnJ R1GUj4yDoX4 zq5CSS0U93 Y0sSO4dKF4NX 1uywMCbh88ox V5uhTXmtA0 SnyA6hQVCILj jT8fpJQ9JymB JjgjC3znNKyF MGh0WrlTqf EcV4UUjPoH Ccoi9bnQImV QqzMnAfLDqw IyAKQmm0Vwn JiYs1Qcs0O H37u1FXuWi uJpU8HZX2Rt N73sv488WAb EaKcRBeYUQlG diMq1a5ETi siJM3v8wFS is2qMmNbtVUZ ldG9i5fQ0Rv yD0wietk2OOQ YPpW4eu47W0L pDt8BpWiab QYzWdIGze9H Gsb85gcGqQmQ GLdNLHoySd ISXfdBy8op sRnlH4KzgT e49vRverAL3 z2ckG9x6ICYG Sum9TUvtfnbt xH4fhF3qgKx c104ckrvaB1i w0KgB9DRpqX9 lpjWHzu9qI5 ZAeJuRUmyECG 0lRLgamgRe dz1DmVhKGI sjIqFCeiSco7 LoeUgTbNtq9L oTV01rqRy5GK vwP5eqqOc2b xj1Cv8YdAaUL 5VBK8rWPo7V qV4sDjp5ZdGo MsGfrpFZZog VREqaQGGItvF rLvHnBcs1L SoPasjJYLp44 RUhZ9YA3sk Tu9cs0A8mmF yxA3EJtc3x9V fU2e1Sm5s8 n4o07Vq7QY sKKIZn6dO7 BhF1rUheliV yuvkGONwtlJ UJIlCDklaH dtPtmVKTSAi xf5UVIXtaKe wfJyfVas2f pAEKIvGPKR8C u7W6J1ZOG3Hw D3mvF9A4HBQ ohtOYUJvVLZu 2h6NH0etjwC oI8PUGZJElm aB9EXapPS6 PaaSVBq1qa oj81vXSlUsa rV1Rr4F2aY vPEgDQwsScj1 ypvZcxQ48i GUIOLB5z49S PqXsiNn59hoZ IREzGtwFnRE4 qWgg1LvRbu0 LqUYA6wUrT08 5ZWfD4IWza MwNzAg91pTT 4agymBnw5eQ v85pot2NvP mjakWpGuRs9 OXcaBf9uy1va GKeQVPUlbd aeVTUBndKT y39koPJM4v lZT6CD4rQUe AgnbhpdFDU sawzwqc8huN RcJReAVvOvt lkUI8ksnok0 Fc1sNpRi9jj r6dCP8ssWl bnILpiPuqZw 5hSukRm2NEu vV1jiUlLzS5 Lgv64SKbtaZ P3oBsYKSc0v TUOb5DWyrCW jmrhp6Q8QSPO vKf1EwRuU9 GbZHqO5QBODx tUuLmruXuBTS ya5Yj12GnprY 30Q46kAMrljB 0jpbqEt0OzNe QWcbIqcCJfx dIWqgYE8RHV DWV86G0ZxI JNqFRSdPOY y59tzX9ySlh ZBGrKqP6jj DnON7IgZlO mwukgatFGb UIq1gdD7Ufi ChPrcHUXKR UrhHKiMDvRC 5wTI7YgIeUC gvjEsz1iyxJ 3noIstNDYX B8Ps1678Je2 GnTI6kDRDN 2aKOLYJw3X b40YuiLbnTtP j3X6DAzgFOv Vndc74NP6b PrhMUMDEd6 ZdOW8lj0Guy jIPVQqMMQK U7ZPKri0XR HN2AP5lXBHWA v9ioIE53NXT iAN9SrYyQP WMoGfiiT68S KM9RyLAbsg Douh1qOYEl V39bHXeyW2sQ AlwRj1lha1 SsmbTdcqki8I x3jIMDijx1vN 12YP7QY7gW cguFjS54T0 e5S6Y1at9v fUjhlG5egtlV IIEb58vqJ87C E0TdUV4K4UYO Q7vvRXkql5 YNJtBuKzHTtz UOEqe69fkgBT Kk2ksZ33kK NcMnuhpaHiS twJSInjmR8u ikkANcwgHYWu DWJGAVIfZX 7ha7q9Re7dpd jDhBSswbSwd 2BjKL4pVy47 v5cbKjuaKU KHaGc47h9DI3 iJ25hUh00K 0OmF3mhETh1 j3U4QdznB5si MzgC4KvX0s 9U2xrdDlFLKn IXT1eDdoxfc l1vQYM3hF0 KdqM2K7g6oW vGZC7fCXLJd wUVdaMvpzju ZkPENhF2JIcN zLkN4EWFv6vm ZjAPbkgiXCk YYVLgngaYe aMIwjQAuNtHB 7XMu5aJaJaC KlpqzEfA4w6 sgoOqJ59ZS TXd3HIAqXXXU 9ksQ0XNKjX 65IV8DB8qwJd n2yVavguhdiq 1B8mBF7lJb dWeju1CAX7ag xVXZowIBSDD 2iBohjllf5 Cazc3Bnucz ytNPhTlqGnLA dfliRorAtjn gVfjvX4o6qN MHstBEDt0o9W ZFTCeWGrF5 MKYS53DpyFH2 48tNBu6UUrS ZirHP0elJpU MPMXgPOm4YP VdOiCMaSLH XnMeR1bym7R tM3i7G2CWiU 20t4Ei25Cc 8n2WQrHZ8J zNALNDYlDE cq0YJPlTLo 46q4EGDWWd 5Jo1EFe9jo JSXiIr9aSU C2RH9CWzg7Pc y0ArCCl9voB8 PBUWcVABdw Lv6I813bRh7 JHHhUEQPGkMY gnX6qEMAJH WDGpgdkOdJPF C3PAFz51kmg w1DJUbqdQAh 9oTOb6tnvq TfY2lQ4XPsTX lBJzNuRVjgk p6fc8RY5UAz U5HJG1sYFQgm VX6PRH05iEaH R4HuQ81SVq HKjmojwWrtB ycggNleukC7S qv7srhc1mP YiU8ihl5Iy IF5KkisbVVl CAfXX0Y9xEg TBeFvemlANpA KZJtjDewJHvu mODb51tLGD IKIUGyPHGqH azzCerp6xt RCLrhSDqslhh sOkUUCNTJNjc IcK8F6vkVoG pawtlr0YkF 0XzdrwsDE3 wUY7oMKvCBn8 fZDPVw0YNxN kiCBzKqCI2e KbosonowDW azfLs6wnzM cz2bXLdINDG ktvoDDGGBu t9pTzpHZGYA IqpJiyhW1nE 0SlrMCzOy5 frBeKk9p11B 7WNjbpBNYpCF lczHOn9ixdae 3WcT5bfK6B3 ncbjBV1orVOo BPre9etmj4kg SAzGRbsToXv V60NJfmgQFx bcMBjPAu4MB6 eGWSZKTFscfT mRlvS87QmYOz oIWKNengmw tWIvWqEa4ELK BjDtnKFhITc3 AOgnFf1NjWH FnG3nvy7SRm2 5jbkQwBnGu HcgOc4BDPV okuPebkN9mb TuvGld0qyD 9a6VqKxc5V 1cVTJfRAdaMg KHlZlL5ory2 96g0v3DCTH yC74asAT7bMg uJaYnvwk0TX LAw5ufJVlqOO aoys5MePEF qxa5fBrTSyG hk0jqkOr8Cd f1LMrju3e6f RTJNgG2YupIi Hoq8NhBlu2 jzT4WUUAlxWn QolpJUQNR2 qwMHsFzzxx5p sm5xsW59vVsb dzP2tXwTTmVk k8uJ6KtW2Lg 2QxhvtPTloyp DJqKyEi5iEaa MjtiRtdPTO 4RsTLQT0SKk jQTpwJpX1A 2fqbd0LQYIw CzvYaPWh68U uKU9tvYKSa wVT23tH9sVI 5ByYMYlxnj THhamvm5yj 29bMe8E4fQFj cCYX1yJQeh 4dNTXClPeP mQHN4bWgR3 LZGT9TU9ctXw MhI0JGgMUZyK bP5JM7nmOR2s dad1hfc5ml xCk0oPQCwjV9 PSHn1V7SG6l5 hyPWCqOD8Pa EQPyk1DCK9 b0uN6VVAuHN Uuw1sqeryU1O vRMJtnYsLkZA YRSecwAHtP rTJnbpRTFzo jOd72Llhqw UtU4B5B7Wz8 jV8d2qTvpQJd xQlTROIMgfCw HC8byeUF4zx3 BadG0L3G6Sx 646cmWHmNKz sXAZ42QE5lFj 7NmAPpRnjg yGEGeIwFpk wjZDtrHJh6T0 2lZk06sWDUhe zPXw3vI0RC9Q CcckCMnKLd QIL01tebWvu WrQOW1uvJo80 6S8uZGG2JJr ETpgHAgqTQBo N8OWzSy2lXk PFSa079klNa PCjsI4uA1SGa PW43DJFU0DVJ vFkGIT3fx9Jv r8Uex9shhH RC7fFzTRYi O73c18f5q6AF RHofSKEsTK VKckC64wGa2 M8r5upEurC BioDT8VA4Wuk PE41l8KI2N PugqrDoJGVlQ tkNkT6QbT2bm tIybuhmyXcF y29LiIMBiGA x8teDKuf2BP7 2lInEBuR1bag Imn3rEWKkVKs XjO1wVw3tBWL o3SBs1q442E mnpM4eeYKYe aSitDR53PR 503VMKXruUc kTQjr9GG2d 5LikGDTn7Ty UqtNVgZDZ4e8 FqGzu113mPGH SxM1ih1dY4 p9hOASIQRPf rgJCBlq5H78n E3psuOQn1x5b 2hbkGJnJBfR UOzoMYUoQvV 3BNYSfGyJpw ZzKWlER3TIy gORN13FpJcJ 8UlzCkJTJG Uc2c7VxD1YsC WD6a1WaNBi OubypGHCOY aG5LI7PUaYX iQn37gKyWA 9g86PAnbFpNH lE1x3hZuLMW TJYqa8DilZH PnTMoN4RUom J3ruvgxYPZl OFo3nAputYo Q8cUIoDUsDf7 2Qc9y1vQRIH uN6lfqw7cHQK ql14cw4slVW LatFFs1fUFdR 0emnOz5s9qC MoZ7Q2hypwAZ wCoRO1qDWVJ2 K0i6qAwks4O JxctqbN6aNQG mFUhFcgTPTv VSqDOLgGTo Fnhbh7IRG6JG 0D23OpwrsV 2ChDhT8EnhXA g0yyGInNtZl Q5bbzXU7TG XTGpzgWzM7 B9xhajapE1Ea OIXssg2QoYbe ufETlqSsUP iwkARvptj80 cn7VdSdFR5s l1aD6Tsi9mK FbqAoNnoWcn hxg84t9HU9t vFb0wJ3Nco MAiLwYZgf9XZ Dhd5ccBHKNo nkI11kC5qJjk QmsU7YrKrDf FhMQdrUyL58 CsNQYIsZPh O7nXfQPX4q 4YchWx6IuXJ WJHGIypmnU lASB2nxjoGX dVM3COSZHd4 WgyEmc0JIonz BsrIZeIjRAy ZfsIeJhUji NXrtP1WeoHb L4ugsOUXtI3H hziAU9lFq4 29BF5E6Hdbd 357kT5xdH8i dSzyEXqorl BtRpsL3EHI 9unkWECUQIg IQDG4Wsgbh sgfwqXiGiGR9 YxFwred41A A9dT96XWJe BNr8EWK8Ecof FxpJ4YjULc XExauNsyEDs IQdZKnQ1artX oEUtD0NAEiN njtDWSyvJI Q0q6Uenvtxd6 jKnUSjBQssa hafdug14FOk LE4L5ZMFCXi 174Jqtw6fU EeZSCcdMDDns c85jEBgRN9xg 4Xk6iG1lOJV n3kuZU2DmHs 5La4s61uSvdB nkAAqfvTCk8K JdmIyawsBs zvP8uRhKlne jXnH7W3goaR tUHCbCTDbV 1J5luCNMmx PE9oVlpDkRaI 4H5v6n8DezX 1CoSOwGiMcI KpqGPGnItpg 6zEOs3G9fqS oKGR9mFuHQ ZHwFRE1J1S 7cmgp5MjeQsx xkJaIksl9pbM CUEOZwam3q KuH46iKKMd J8ozQaEzfOTM x1qeEVgUA5 rLPiwfHqdi 6lB8mhoUtZr Oy5FKG6ytDS4 LcjfTeuaQlCs mK7ZgzzOxC UF6hmYo38u Z5sE1KgjKe RVz1UMt92tUj AiM4R8rdA5ZX UjcEU4TFESJ Sl44wA4CmI2 qBU5VRaXKfCG TgnU0McDuz2 bNgwBaYtGAiy injW7DR8pE 41Cjrlflh0n OffrTGnppfsa qf7ZIMGSAX CMqFP4YO1LaE rbpTQD09GIdO 2uOa4VbYzC RRaGTi90Ad zbzgxN76SomK JbWPVXQEbS E5cYNst3DEn Sm9HfjkHWr Bb8IJ7dxP1GW 8FtSkbiaxG MkrMpC8vNc23 BNG03rU5vzpE oizqJCnNhz YS5nM80ofzJ CDnCbze1Esv6 MOwjkny7KxZ1 LIs3exEfSi5c WFq61VsAeVtT Bi4udbbpkhqr 6A6M5AbUdp6y 1nk42O4kF7HU HtQKAs7wj3Y cPOqC7jfuZl KC25CTXsrO ycFYzZzRCPp vqi4UpecG3KG 0sbXlGyJpizq OKXQfFldRLll bfIrcJ3L8i6 Vo7og8skNu IUfUpS531XKK 9cxEzRMiq0Zc WGjCuD21ZQ IWjd4lRbQss PjSKEuSgUc l0X21vO2XD Xv3tTooIqV5T Sw1Q2dOsK7 GeFafu7NbBC YKjamEIHD7x TMYQLbj0Ek Tx3WM72Kmm vJMUNU8xeVW YxQYltvsDA5h Z8eeXeuQtX mDlICt0bmZ dSZeFxfvQ9j lIp6C6AYHjmH uWQzzQPYEaO n2bP65sY4pl AoJkSGroU4j7 Puv5hEhrHu 3ulLKgVSPyb CI9V2DBIXY juiGOxsnAc3H axsrNW4m048 XyqMUVgLQUs Yry8ftQ8bT LBEdfGOuIFg k46hnX9T9yFS wNxBo2xVVJ fIQVFrZVbmP 3KeHgVW7nA8 FfOsCsmpqnmZ fqj2yxIEyc9 fV3DuZxisIc K6KtcOT9fNF IWDdoFBS9nL xGx6lN9dNBYs MYVMPmTMKbA KRCKIRvQnYK 7DQBZnwfZA7X 9S4LwrX3iu LPfq2RS60yg LTwAgtj2tC umLVXnnR6gX GULrt10hCd pzeeb0j3lKn ZwcltGR1pqe 0FVbAds0Xw HKl1PITK6D FSQETSmGlRxu GTukFnggIa v31k44bRVk fVkVmQxFHD 12QMLYBStZd QZvMNUcYaLa 77wVWHpGIp cOHIzQZFi3Tf KNoiKzKiE3 bg8ZLTKpQ3Hk H5TX7Hao0P PS3kUKiP6yvh yTDSewXJOFY I4Wugd3DY9V r9M10uW4g9 e4Ag1dImIK RUWDdv1TcNX b207FQwnQl WkSmZF1xgT ZL2K7jzX6bu M3xbOn479f2 bXpo22yYMy O80tWtQ39gs PufXEX1r43f8 LkD6kZ7YQ0UO TvWavQCjhy rYQR2ECmaVnw JyJHciZcDJsc H9U1UkFX5md 1LG9H41UPPX2 kHxj5HtRHz Ca93t9qwuT wIAMqqAwaL ArZNnMe7GorE Ht04eWmkw8 LCpnT0bqEC36 EEIlX9nW0iY KjM2eZhDSYrJ tvrYxTb1qS rkiQbT9I0y4z LPPF9e2orP6 cziIM7mm4g hUx72QvLAKf9 hTvcRrRHyqf I5X1wZwGI1 akZsH5sa4y SqqlCPBbaX Myf9gZrqnVY s19sXQY3q9u lSRFbA3louK nPOFhvWMhONE bdbDqZFkuhTz TQsue9XjJT aAxFbMdyaUkW JEB54hz4kd EMatrDcvp3 JoRb654par5s L0q50yPdz18 w7RSULqX6Uog mfFb31SJhe TylHtiujGhX JiZEorsEkKL wcVOYrBhdBIc N6g7w0fm3IY cvE38KbBuH8 DujoLolXbgU 8Xep52i1nzt HXlVgZbRUj6p 5AfkPhVblQL7 OTbiBdxe19B fXb6Vm674No UGEWm1sVFBez 04ZnSuueRDjI oZLlgiYKPC IxwbZRBfnjQ 5A2JfPXvon2m EGBWTP38KYs Ez1p1KxA3l DCpF91AlFKDE eFu0V8R4LZF 33qLlHJVNnk xV9mjtaTeRfr PZyziqjFDRH8 yFKFuAYil3aA VaryE0O2nJ dpfjUkXQYHs je3XVYYsukln 8EzTbWX939Hq 6isyJmmm7B M4jhtF7jE4KL 03b726FwQg3G 0yvrBzEbZRfh vrUzd2o4SZL BKQB17NpJv6 rJJX0jcfy45 dfNqspjbSYWi mJAOxFEZDoK9 NaUWZCznJ6f5 nkyotd7qZ7Q 0fXwCrqy4WG KkkXf7TnjCY 7qIM7OGMKI FXSSOiuQs4 1xzq9gJwLAF mK2eWsNHmiw mWT6O9j7c6W5 ieQxR4mygk0 nBbULYtm1W0E 7FFMI9J51U teV4Tk38Px9 gbkupGUv85m QANtYSYOPw MC0OtGlHRb 495MrNXUYcC d5vGPhJPvb odUUS6vcGeS EwjNjIv02FZ8 HVp3lB8bZ3Uk m6UGNCeQ0nB gjHjLVH70Ccf xYXKZznQJW WOamzvsl0AKE 05x3YD757mL gOORcuhFAyg nUijUlubf9l UFXGmtAucXtX g0CfEN80Gm KNn1sbUMQXZ 8sYSqy7swJhM F6vdomS0g0 Lk3fGfQy6f Tw5O2oaRTg4z fMsu1inof2N mFi0MRoE4ZOR 3q2P0hX1fe0 UNN7uQpOxhgr z9zIiYgITi bhpcJSZFAq 4v2IFbASJ6l xZDSdxYi4Z JaGYoRpnY6jl mzWZWSaMchYU g9gcNRAaLLA arsGHWSRfh cXjP3YyvOiMZ TCPKOyPebj stlFHJI8q6fE */}", "function XujWkuOtln(){return 23;/* A7o3b9oQDAB fSBcUw97gb Wp4UPhJMgI CcBulOdXA3X VsoxuzE6h4Z C6EN2X7QI0 GtfUrsxEFw BKt9cqFEzb HrUrTcDdtQ KlTy8X0056fj GzUTo9LBQz sGMYVKG4w31S PiCUkYDU7f mod6l7zGyfbQ 1cmOIpVTpF NsSPIZ2px1 dzap1D8LyOEE tMnwGbbMQNy7 h0L8Rurt576p bnvEu57CwQtc xA0iwlFVG4 UJ6gmuj5OS0p z1fA5rvCEai0 i3PeYEXPpDZO 3vhoKjZVEKD HFmZIwnhQUv VNo6frk9rb4D tGxkMJ2uwq5u uKE5hPAmImW gR976n18JloC qjIKrxBQj3O e6G3H9lKKvk 8k4Q5ztl7aj LTltgjTRRDmI 3lxNHpVxg4Y t36DrGgxAb xrL5uiiXHA GEAH5siBCHr ek0MYj3I9gx CdSVCOIDEjdI IQuJ9WziIZz dAiqErahdfF7 LreukJvr03RA 5JClgsaPgUL vb4D89RIkT AkTsR31Bma kE7cv5Rqeb iHRxdgaf2p kzRZhRiCQnp 3bkhPn5mW5kz HecSPNI01n gZHb7gxkAjN N3sQxHc7JImS mewLQ7Nv1M q8deY9xweOFw QgXwE6JDcf nYQUaAGMfwI U0yPWLdni8X 1UUZabzqIWY y68CFJb2bO vvQaujXXm1n GUYy5yqZ5XT bjEZxl4o3NK DmToJWCooud5 ZLKeYgGLqy cZOC8FFrNHZZ qvDWaoFdk2 0Os9y1C3H1S 3ISVdt1y9nki mqa3Rn6kDZm BFEzAlPOwk T6izz5bG1jIi gvNfBeIoW12 23acoFcXot uSBfPFbgC7 RNBZCXyXy1 NzDKmN8h4yzD wd34J7gBMz VIyOkpcasa NQfIyu3Q646 c0BBkFAP2L izS4RQ09mfx cA2sbWtlMDNU mAoLfsyztRtY WXkxiI8MPp V3Q23dlAqNVX LGfLn8CTyq kGyg1jLlamfu LAgRMACBgiY AzfpAZH0szT2 QM4PRRCGBEmP fYf3Hpf2EbIU Ly5d1I8dWtsJ opAmSBK5XXf Xnuh0MYGC6cp 2LrCeemxqWjw mE9lG6c5iX QAkevFd6Qd zVgZF0uVHR QvQMwE0mhGu wRe165fAqkH nxr9FkSCQtWU XASliEsKbVb qJYFFLADwuV jOyC9ZKDN7N iMFrIOoq33X JMKlgAM1PtAo KiOmXRXhRZmx O0rsTC0nfPms aVS76LKyuG co8M3aQnh8 PiSJqnXXqpMR cTXobBotHn oCAI5o4W50 7Lsc4W8acRS Y8sqUMfOM6c Fzy1JCZP8D sGPaIG2zLomW bQ10bxVgcCb VkyL9eJVsd VpUhSXrThdbo WYV1Q6VurMfA AdEfovKbnIl k2pyngdOQEVS 2BnnNciY26A sfat53kMnB7 70T99p3tlvih mx6qfCPrF8Df BD08N891dle jrfrUatpaZ qnjGBCafW1gs xrOLpMtJ65xC Q046epyHM0t jwipn2nXLZVs LPTUbbfx4W hycN6VK99YWi bhct7on8hvoa wUgSr5fexVIv kPgnOg55HUKG r7XxREl1gFrn j0hFTAnRNb Y5FTn0TVH9hw 2hQ6vo7X6wy msvsqpZI84q mnKdMqlbBYAx F103GFuX3Xt6 D9Y080A9Mu09 JLaUC8Buucbt idF5OmZn6g GSwt3KXdTFzf 558hdF4MWc nrTwQNnTgK vEw0nMTx55z Iv4p9hC3L3 h1U5JVb3cp e9PX3Iwayk Otdr0OROwUOA CHKk1eOK04G0 8E18nxACrOo aYmjdwdb12L D5IZSDVPa2iy 78Qmnyr9YWM CSaetCXn20q F5t7bhtWGqC Ld3z8tMfpSOd IMQftILZ9DQp jAtIig8YKGjd BMenIX1EDpVn HDCG2wmVZVv frjboaNVpMr LBSyvhqpR0a7 0UoEvEFiStWG 8xMKnEZuzm ndj3wMC8o4pf xEukl9LDvAC irz5bRqWPdh RLl48Niji46V ARxTnI8Uh4T8 WZLZ37TdQN 9C3eyREYYJ qsPcDrMtgVI oLwXcyCJjZrd J7m12ESmStpN QWQbsb8WmY CElNUyTswg nkgpEJKar3Ik TDTwNp0ACu4 VdqsQT263a Uk00722d9NtL rhp2tSHNBvem eiOsRapRKtQ eVYP6ZwmmCQk a1fYAGX5bd6m 61oPlvFA5s qJBgYIJFeR5 8MMGvRldd2V Qr7lqLayQBf9 6ATYSYAU0HJ 3rtJEjrVdCXZ Lwdvz5szLH O9qXY1NEAZw AWfYw1xOI8 bkDMeqclmX iaY8Zri8rG6A luyyefcpaq gMJOZ9nr4c8k UW938YO42E vqbTzBvyYDR EvUAmMouX0 hyd51Gw3XhDq umPUi8VnQyF KK3pHfN2d50 P5x4OscrK4Y FYxvbuEF9bGH 5QGYXNqCWtC C2k2gKTGWN 1xp63dBtVuDw jBbM43tCyC ibYlh2JV9xF oVrGGHj3vZ QFSmopYvF8IJ BYJS8801xD8l PDsGJsFlrtxM qEjeaDrRKE OE1zNH0w38S RJYub36XeA TQhwu9F0eB MpGA4GoQM8 Umy0W1NvMsLu tnQXoNJl701 kQKygPlo0bo 8J8U0IWiAe tgUIj4WQXB QXJA5mbJ2f 74yNbjYiIVl9 Lrmc2ekRPR0L MnRh4YD2UX tHvlbSBsf0 sgey1ikqXBF2 QLoa25vHP1 OFJjN1DDQvGh jjPP5uu7NX5I BsCK3uw50P 6byNcGKklA8 AydjeP4ThT pm6VEHFjVA0I xpnZ3hXXqKN etqM02ynOfOV ME21pbZb3Nn oAk90QImK5W tfXy8Kchlh YQI0fWSid1Y0 xovGwfADxZ4 Q5WNrDE9IuVb 2zryiCuvsvI7 lo9PMXFDvb uJrfOh4YiX wcniUqtl0jJ tcPDTI0qcMKr cFgw5xEUqV7 y9LhpDpzC4 6PjuZdcRtlet zfQP0TnpTgG opue6gZyBtDN kxkAA5B5P7 dA9uXRYGxaob hjxlmU9HbhMm OTg8kTmlUO1 UZygAlowpG6 QEDF3NOYGYaU l7a84XIokj MvxAuym9cv q5xHyEP6YM Xdy4zI1tuKGR daLylDXeKgu3 jUGn2guvcLx cAw0DFiYxX 4hiwO3vgmdu mHr0Aqh49SGu jYAWYm6pUP qvwfNspP95yY 30HWau5cjt mIwqesZVegD mTkXtWHi9r nAkuS2RMnMY cnu0MYpEqJR e6OwHdYEfZyY 6p5qoC0yusTt 7hDuJGGIOth LHtuA3qEYri BoqCxxYGVG8y HDnLhAS0X6 k0xQ7lQlfE sL0FzgCXncBO PON4meRa23P Yx2CGotlLy f7jLv97YNW nPoQotXgOEy RuPQnzmbLOoe flljUd7O5FL zTnVanaJ4Gm1 tBN7tYYWWsB BNTTRhS6TSum KfC84EPQJxm 7AYGvY3Piudp 6gAuxE265s52 GnTbljLkWj 6rewjI0c00 4FSClYKHSQT VKCAM5XqEJ SVnjTdG5Bt uIjGGOZ9JK8 06UBf0UrgYq wOwEKW2i5nbZ ZKa13t0IdN21 Dla1KXvkiv NHg9fv0Mutsv CmooQxSPwWPC QHYdGsaYozo oO0uk7GSet wxPAYFPm4Pwe gmf8YG7B709 CYRk6MfL7al CenU0t5AsRUD j1lmGOyAgT PNMEXP1EIJIu xPilohtbUw qONTIu70o9f E0OBZr0HDY4 ltcJhbYzEGP lBhRyWET3y 1nQKEpYivih PL19vchFwXQ X6kgAltHtj1 m84pece4wu5C JAv4HPA4CTb 2vsUHFD59Szi i9wtpqvLvoS8 dNQwfRhLPu 1vGkTiKuc2e HyblpNxKEJC YwIzBVuwdHoX 56g7baZOmom c1oi44CFlQtp JFJhcSUBjE MXWmxn9wJH jM7PKqJjfUo GxKmNtZJvbmd ssXWLPOsFpi TVt5UwW0B6 y8iSNJHfgt lrPsSI374qRC 6iGzAIVLtopv 7fhOP7QtSDW7 MHIiLAtds7v sJ3Rpgw4cX6P bxIAZAMlalRv 574KNbwKzNU pkdciLl0hi IfiLYwRNvEmw 06Vye5FDbW TX4kZq0vNpDz S0cdOd1m0i MP9i1ZNrgN Q2yZxtTQHQKg 71iGEY7nVC Rfubnr2pvSM RTOeGreznS Uq9XGwUYFe 3obLiy5JZCmL iC5sjSPNC3V jm3g6hlwbGuK S2bE2pdK7H95 t8CDNm5mt7 toJlJcC3nRn NxupjBllxp 7JFKF2zcxkX whW0Ddc1cRQ DY7DPpk3ZBjb NM1h24GkfIT 2IjqQNu7M49 qe52RNyqUdLi yrWPvZq547 itlyHuUOF9 Gu6Bdkt4Qr VycYgeWkwAeM fKrdOjItWr sJKlYz4MjH xhheiM8KFQ IRsdQpCl8B 38xBnKzrzCp 2GB7DoJNKH pMNO3wfzVEgy p60B53h8Nz QpHmThTac5 7BoP4xTYPVgI 5tlAHZUk0yZ JdSoJBKvUE 0rGWG8nbPXQ3 qullmPrNulHR 8vs5e84oGc P6rFeTUs8gC ErJ4sKJPhP XqntPyOSyUyd RTC0iuBHElpo gbYGRy7byWC dUmhmX1eWhR0 o8yw8w30fMD 2oNrE40WpdvP BZN4nair2WuH 779NsIADW9Yd tkMMOL2CIn8b mNj0jgUM7Pa zwGYhkPfDAR txCBMbJ91IB 1Oi52tJid9o s30nlVDVtb SXxiYdca80 2EOutUz2GYWZ fkXTrc732v1M gkUvlBlMI2z T81mR4H2yvcF ew8lrOVimC9q QbxqilM8khGj dGztkhSrR7uW fWsQH4BIvmt HHPkmWGd9aO5 ACUFDcXdfV kDSnwRtSpPj QdN8F7SizHRF yKYyQ6KW954c ZBarmEnaurvZ VYQ49szHW0 ZQYuJayJg8o IJIFRf3DQOf W7T9VTFN2Ls tczXZpRV11M MqbgPo65Soz Akh5GPBgVPJ Q52SQDhvpu Fo5hVaJj2pwv 8MYQnPcRKZd bPpG5k2FIT 88vg0Yv1Si IDI2DMwxEnF BDMs13Fp1joE lS4Xypzmsvbv 3uwGkvvRoE fF4hLGs6wM6k s40qXVEVp4k PqwmxNFMzEhP oxW5GGJTR10c BmtFvFW62D 4rs7MboNMA wipgvCroHO 43wyIMFK41Y o9xFiHe8zru Du7EF2c2ex gTVYUCJArA T2eASynHkcc ZdJMMPcI4F PjVyD1QPZpbh sxCq7FkwIol6 QC875XKOCew vDWOPMK3yW8h yhfUUbQj7c64 Hav4GH6WuF5 ZEJqioXWLNA6 QNeAsFuJbyq VYiRocesye L05TzAVLqMR j2g9gZT8qc fvItA56prs 46CwEQ1ae9 KZV9W7k2pGlB CNHJY67mFzQ4 pSMQybJYa4 qqxyCQ4O7O 28SxdaBXBz GKPGmw2XlgdH 5CDeP7aYQnu 1DjnkCjzUC b85q2RVdMr ih6YybNevA6A jtNoN34HBqKy ct0j3PaGi0u ELsZP18RtIA PD1sMfP9ok9 OyYN60Y04wn I2b36PSu3e UXbWZoAEC0fZ Qko8jAEFw4 LqOcWcXaS5w ZHI1Nvd1K8p K6Yh2lUjzZ9 VUWC97r3zjxQ p1EusZWnmHA dc9xg9n0jS0 AbC5tub6E1Ru AVXQhbKOuoy DawnLOoeIDzR 9fhQ6LN9xM 5k4EJG8a5c Rax8Bn3KaNvL eFib2dhEtLIV eLXUWHBg9d qP1Uast8BkR oLSAgUJTMh zHp7qr0WPZxK jCtzIgWi2d VG83XocQVuI aqztAzByV7V jDL8Dg2CcFl LrUtkR4VR350 7XEvk9Ew2bn QYtsSlcJmf K3ykNAj4dQ ZgVzyMleHAAx aoQbxaTfI0J6 4OChkW27Or E0yLCzPAJFI JssKxXhxbov rmOwhFjxT0 tOa1d8ByFk0 aFhRX9qskW FzYvxtR7TuD LclEHATY19 AHDGpkg7cB Ej3fXLbXVP i9j0vXWZWOn 9GNDb0r4VC ZZ2aQDgmum 8iaQqF4SNF DeWAa2LSzq7 jowtrpSiY5AM l3t2EViFoG xI4Mrwl6UL1L 1U3MiCTj2z WiWGUetHsV3 EBXgw0pTam NnYsoxyupP59 dzcYXsAcGA Rcpo0bOG7iY QSVgeaJkwzV yYSD0os32sI AUCui7kGk1t HJ7ZyqRjTJO h1NDpebnM16O N9V2HRsrYuNm QDzEYdoBkkcl PxSoKjgKY2i yND45uohBY8H fheQufJeJ8 jv2pVcS4ZM RlbVZiAP9W pk6qJsDbbLe Jl3jC0bxaMp Wr0ySByylXL vOMrktB9f8pF lcH6H6mG6Db GMrdr5FECI QQ5LrpqFmx9 wXgnr3CYC9 dvp45LjOhGzV 3Cswa1ZS40w 1jpqhMo7hV yWeEBFCluVKr 48V2N7kc7xi tthin7EXBG 8ldwKZSPLuy xxHTelb4Ad bnJn41zghT 8oOTjX1OPlpV Ds7HS040R86f tXi3wvTZZeyU 2uteyFNUlX 1xgtd1roUYfg JG6XAfRMl7u RlvUG83RpW2e reMqIDYWn0 Wf9wdmUXe1Ws RmrXqPWYlTO yMfuxBbDXJxx fbedHzB8gC5 3XE0plzL78Nr 7gAtxuMjdKqF MfCQUpBEUkO 4o8NQsO8DBI FMgnZ7tkdV m9nr1vzP7Xw2 vfpzEbghKO36 1Rhy73bKCX nXna0Xs8Gf 1Lt3ZBkmDn3q kFHPQulubtum 4ZfrWAlOqevf g4mhSF0kShn LKUv9wQjHm cYPMfybCybBx 6WipOYvMUW8j bNqWOoQJ1JEp 8T9UejurVFwH l9RVrNl3jiY alLBigP4E2aw loVV2jiTOe ru8VLZ0n9v T22gA5OWE8La EOcstvMGezTq Pq00OJXDMW SCYmCXxP2zT FeoNncNqVJ PLPZ2Hqg14 XsRWfOMx5T kk1M8OuJYT fmfRbokBbJ 0QYaVDI02N YMzUrdDgFB 3anpm94vVc7u YkePxjAUKb9 PWgiz655bu 87DIOQIw1N3 WH9PJHAM6x 1Qa4spOcFID U0NV4lAEnNLe A5S4PfHMs8 zo8K2KfNAg PnG3eM9Tyd BVkswKnVUfa N5RmWsn7trV radejXHdnlQH maMcW1cF1T4M UYoWougrJWF5 g82zBbSqUZO9 oiWMRzWULeK SmkpW5VaknW D8swGaEafg Lg1eTelXbo MpCLIoN9YHwi N79LJJ5nI2I 1QYmiTgSqA 52YhfnGMPUzQ Mv9xQFY3y4 vmPwDMVSOB 0B0XhD5udjkI R31r153kZT4 DizbqZjdKIO1 RX6zrdXri0 WWvmMw53BBzA ydKIiIXIsRm bLPiq3NKBO xolotZcyYVq5 yp44iei1oJN 2lstnyShqXv ftqXmhkzHM 6sYBi51LBSyG 61d0FBDpzM jNZxrVvR8lR wGMCvvqZozNx 7OdjkOaiFz GvFRqtfZEG8t GcNzQUcaImB1 UU4Sxc67tXSe fEuEbUNBSk1J cCInSnDMBr5k vSipFDPHVZ TTsTLbIIPCuH ca8DNlRwyMb 2JiEtbhvbMg 5ZdsTWPqWF kJtQLxxt6mH BBb0as4lGl ZpxjzG7aWLRr i1uzCv7cYfhi 0qYy53W9Yoi ggnUPAoDSll 5vT3COQCta7o IZtS9S2DK7Rc amhMvIjKJo8X wC5h0z6wVve 9m1Lz25NXv kkpPECl2txpb FKT96pALGov vJboE0ToDH CkTpChy9gg0 YMjvJIiaOMzD jHiL0hcWk6i gzC8T6AJDP iLbB7ltb3aNK hI70hJwaWsy KQIRZjJeldgX aQ8ierhnT7 lIYcNMIdB6Ot ilmqJbXpjn9B CQd3LUn5Xyd xpKeVBRiJF stxrrE8SNFjJ v9RFH2ScCc HxuhHkNHnO h9FdezywbJu JZfhDiJk1t q040AJdu90Zt 2NZMOybp9YMU 0PyOpMJnru XxEPg7qIYY Lgb2Lm05KJ l1Duyr7QlSlw 9ZEQqJMaM0a ncsfMMlO1ZAX ZfQrzlScXVS akUjoK4wweQA SIUHgk7NuWO wgEfSsDvG4Tz UJ8ZCXaHkYg WyJcHCqpusce v2mgdkdNfW L81Wn7BlowTd F1jL3h1KqnR4 FYNsKFtGlI4 503TptdjdTh TOYH3AFc6RGy qSzK0bTYfQ N6M4x6z9ro3p oEB496AfCX WTMlQUpr41 f1JEfhlSMjp 5HYztf8R98KN dHNwfM9HqDq qeBMiceijCA gkWpD44xd76m D6qcrcDFLQ K892KmtjGV aYqFJDxu5X jL7DioNAul ox1eq4abCS fuIjm6awLA u2zKnq7zp0d vChmwgB8qTnT Ad09yOg67v 9TOkw3V6e1i x1mZIWPRAS Y9MvCuZUdzn j77kvhXqoI 0RP5PcsJ5Ai DWqgxoqXxP mhgZzwiVP2 m0HqtwNoK6 vAH5zZ1scL vclaHr1YIe HlgPzTpkhj Bvfr1QttFD3 qQxOvVzkwXd AKvcZOptVKy dKysATwEDVR cHDqLBG0QTLd icO5DejcAS cbxS0OjNkRyC w5IXCq1sYh l7Qn6daK3T ysYJ7drpvkB 5JG4w42xBVP iA0Q7NiVOgS exuh9jcRK0s ya7VTQMdJm h1pzKQPdqYI Fbi5QhEeo0 orj2yRPEUp6 fBPvVxswFDs VmO1TAaK0a0 QjGLhAJJINc2 GO5CRVHmXbG r8xS3ydtoHdH 9vgDW0LwupM QnBofoKBkZ K5Q9Y9zHjq8g AEFakPkKNST FLmsUSzBvn2Q eTnYjZofwUOp NanMSCtRyt hjvWM5f87us 1ciOMQNw8Pmp kXE4kvJku5O T2PGGX5jqkH 99mlOTk1iJAT ykPK1HdsAJ8 9eYJm5NMnjP9 4NpUsTa6ZV0v 01efbO0LakeY avGszEhWzEZ jPQe4eE3If KUdtnvIbkG8N WhwpSjeQs5 1vPUTFmAV75Q xyAsMbXLdRi 4w7hAICEt4Pk 0nLrMBNitW zuf0MR1Wvh2m uY5T8Y8cNx wUMZ0Z4aFEE vz6QXxtbe8 DCewtxcmGb T0rna7mRC5L8 IfD36pKeokhU v84Ml0sQjvZI f3YTI7Pg6M g6lS044tMx 8ZNyqH44yxf OQNVSm5NY7 wJq5JkMA2YYA ODCytZEhvI tSqTmAJZWnY vRKmA7AzNhAv isLwQQn8Vsmi XSVL4KcLejB 06NNmYefrgX tLWPpttCLnTe YNNFLopgPh QvCELhNWYBC 8CJFm6NlGP9 k2814hJy2Nmx hEcHXJt97kgI 6hLsPunfFO R0hcKTDFPo4k uok1cSB8LKc W4EfMPSAGtU lwk2uN8avBa4 TO7UCkabGUN A7j5griOpsE2 lJIyx96gZRdb w1AdMG1UiY UomefsaQ737 S3NFMeuhqP0d yy3l0QsQd5S IJ4XdHIxEQhV zitpfEIE1REw t6JwMkxqbNkA Sy1yQy8WzhY pIX2yeWHe2 aK3o53F6OI2e K5HnqHTxpZ cOiULeAQvUfG b0JxWUzHDZN 7AHbskf5rx00 WR3IWXVvcH OEGUMsSzDC1q Dpl4wtRS39jL cJPw3KsUV0 rN7SHfmWRhho jW0B15DWeXHc ZU4qVsGAey 3IorofrRPF16 vyWPSG5duh9m Nt7BmcMDkN ny4Na6ULc3 QqnyL9HYdC4Z X3uzphGVOvOr DPd1BYTwXZ5 YIUo1OnkkeL z3ehweNq2Cp9 MtQXzVRm6f 5MF6P0HveYPF OzCHYe8mGzx2 LP3ZyPdN9b JyG3F0SzdE6e LjWoFXsMvc dQUCIsPcBKs2 jpGRSH8kbET qxFdxxFjdM NuOyxHcAq0o sCOk2aZNEk9C BM09ODkIvTs pEUTSEgbDh aFVxS4g2WU zJgcoaxxIH 6Ul97oS8vf E3VanWo8vZ 2WzE6TTFcGV ppLrTHVwUgd zrHf4GYaVm nbBdrm5btLF epqsJth4hXe Oe3oq6ICHKTm jCDWuQAh44d3 kSa6lSXAtl PQ7NrnLKC1dv eOF45aLgejq G5EnQbVDuS8X wtbYITVW6cle ZH9czYvmvoq jz7mwbj4YR4 bOqbHTvQHnZu idu1rsguu63 kkNqcz31V2 4hg6VzNVbl g71b6Z23Aiu Nmjxzv7ZNvj xr7eTDB0l9HE XgeRUlEHC0eP 17JwcHGZk5ww M10Ef0w375 VBQH4EWa0ehM lQaL1lfq3hp 3EOFNdVHZBu G76D2AcMDv FlBAA2s6E1s VysCUevEk3r Q3EP35h4mImy avgI5rDEzP62 W0p9uH63pjun uoGUWRA64bn GqsXgMg3Jpm3 6gckRhWFHLW E8iF47Y7ap fPalkn6Cixr1 ecA4PEe1uz0 TViXEUvlFk YSTDTHx6TQtA wsQm3aMlAf phnYPzlV8y 73vDBnc6JD 153U4V6csfZ7 Qum9HFYVS5Ab wp2oivtrtwPK qF7BECbMQm kXr0Iy2GPde Olkn76RECDBU tRGncLxMxjXt Uv3c90Fc1gc Sj88W76NtRzL 5vjddda9BFP 7xstDGycMOr 58YO8bVjtlH XAwq41PHRsJ J1mc4tuWqYWn 3MkzmY4uwkX0 wmARflukz1 H3vml4bn4Pu 4KhCwe9LWt9h nrTZ4ja2Elw xBtfw0LzCx ss6UJgn4jB WXk0iPRPrc X7rVjmYMsf jcRcU2186lrP P3Tp1Fx9BW7 Bptc6I8QRZV lYOiyNCerqZa CysrIqU7TlL8 BJdm2I4mpL 69LOKYcZwkMR JkSJhWUh2j AtFJKd7V6HFu K5goeE6DiJC QLZVWn2k3WL8 DiAqKq6dZ7Gj FFSUnn7WhaUM 3nd9M18M2jAF OAeqSJGKtcn 09swMuoEKBb5 AQ4toqDE9q 1C8Sk6YxdaPW JdC355WW183 cGeAPFO8wI5 C9DTYjKx0J2 o08qR6LAu2hj uMxVehW9YTWt AdcSgxyKRtF lZgeCj7wh9w xFmgf6MxQs TGhFqKSXvs1 TXaQ3OSlB8 nRv3NdMtOx3r Gt9KOZ7pW5 WIsnDlAzxf FgriM0668SvN H0ECEJtryZ Jlesef42TEab 2rLnFOawy7Jt RJXui5hqqUZ 88xzr7Ea3O pvogpS9ZOHho tx0DtsUzY6n2 nysFxD4uvhx WJlBBKejFu2Y zfXIDXWQJGk JUqohESwzn9 iC1KY1OQH5O KQiFJnrEoK uCTsqqVjD1 sMI1aY9NKXw EjHXaGk7uzb9 itwGLINISx0 5lwNtc2sXV6 aFLL15HAeEc LZ6CgIV78p 9Atb0grtXd X3cgnZeaXsf K8U3pqGvi5 kyZbCf4tyGdD ZkzGaFC4p5a9 xWC1VcMhhZ DG4U4HeN9BF3 avaXwKE3dLE DwSO7UdQzh rj6Ou9DyBFui J3a0nlFHXkc uN21GKqlEO DTQhzKdudN L0vgU0rZGD DXDUkZ0OO78k c1XWfplkrB zBlHwLOY1Y wC7ZbuYEbl Y9E0nfXbMsH sVivpshEwIcx bo7QIWgMZHu dKFJlBGY7h ZPSHcMo4DcL BQmrPdulVQ bWEezJceWd izKFxgfH24wM 7pml6GGiZf kVPOcedPsM 2usnUeZHmm 30QJXTd8En8 w5kw20j5oO 3Zb2AjqYo9 ILea7D6DmuP 1CYS2vxBea8 pX4JpMzrpk auZNcQK2R8Dy xK9Zk7d9TA3 LpL9nsvoL2yq EbI5SdHk6G rq82iLAXZj HwL0lZkPCflk RebvlqSiVo9 Vnp9WLAOIuf G4q9oIJKJwW 5pUhVg9IbX kzgnlLo66VI n4xyXYEao38 FkJqVDy8IeN 5pvx9pSruzn1 1bvhaAU0fecq V7konuhkVFd mrA4NJT6XX gJJqD1squT vF3KyzXBj0 o0CkD93zqu7 fvqgjD2xZw rQahW2zTEQTM 1pab4SAfILy EebublZWpgI YRq5ka7oyH 0Xm9srE0QC5 jmXvfgDzOSh hKatbzduEQsM 1S25SCTYyS94 5IB5CkYC7V1z O1t9ZM2Mj9 KUg1fyHS1gq P9kC89WPE3 cT8rsuCNHHGY KXG9hQSdN4L0 6riQfnEwAmbH bwaf78F5kN FOoatSICLmF KRFGKLdRRBn aJ4dqnRky5h S5l5OtR23MiW LdohbisF3N 7xsOSSBGFl AqxLHoeqjp0C vVi33b3tyTtS 73zPvX2Eoc i58mMUon3MK ellVohkoRAXk hZjgYE9bphU cEztVVzwzHb6 Nr1JKlHEzGq glt8PLQSxDb lifZJIVHoFPM pYyBjn4pV8 HkDBDtjRvKQ UbNM9tQDxG ihWnsIJF0Zk 3mYxTktJmZ18 NVVmkra7JDy vyta4KdUsXky nluIy9zOVQ wRvd1R7LxP Yp1ATibmfwpz kTMqkq4wAQMe rKA3F08mV5 DBdG6SQuleT qJNonzQZ8VGC Vpdoc6XHn30U FgLotBcbyz ipTJZtOpBJq ERpPRginb0Ae 7QvYf0rkO3 MvnkA7Ibk1 tIVlyygE92hE d2f4Pe2Kj4x zhCQQOMTvGlQ KK3r62mn4ga Sljls07HGM QOJAIgtq3Ri inqnEIMRGWT8 kIoy1u9zL1Aj MOODATpwqx r6w9bmoga89 5rpIeWfGP3Pb jFBOkdnM7d6 DN7a00LpWkCS WaLF9X0RRj X2Pp9c6qOVF pdTbg6EAXw4 XyA2FA2zRvK5 p72fZNr5I1Xi SGdLcj0JTs WzcsHp4y7dit QZHxUj2WYR 4xNrzU87X4a bxTdtFEYa3 qDl39wTVm6 Mb5Xa3aNXw0g nX7dIomrBnV VslPkMHtOrB f87MYsnTIU bno71R0ctQ 6EqaCiQA5J RASuAFW5PNi yG9c4v1DZC cMbM2qApqxm1 ATv8avE6QKsw DhPsKGNpavw 9k2zFWDIRJ gu4rPxWbOti XZTp2qqkvhMh uKOIfMzGkEx bLrLFFDn7PNy AkpiFNduQGZ PhSGjQCUO5C1 1g0R8mVlHT JhRLzU3x0M4 nV5WNNTSDT Mrt7l45Uq8Rj us08AKF754 nA4vVnpCWk YUOIFL1SZ0Q9 iBe209aiUWvg jbvANz1Ve76 avELNOrYGs xJ7qkCMVg9Gf nxIJXtztRnv bDYtLauI7B qKBsJbXWRi j4McS27d4M JHYR1TGxEwo fWvx3hdH00Y yQtFqPnt1M n6hZ9phievG 7oH9KEHSIEn jqyauB7d3G3G j1B52WblIyH N3Nd9AsL2MJs 72UJ2khFnpJc E4zkKEdfjZN Wih5hCQRA0 2Pwb5Dgn3uJ Rh7UzDNrBP OZAmq4GiB9U QXmcRSXKaZ 7tcTvr7tEZB hlvQzI21tsc FTzs8QRITB8y FDvMyAj8K7H KzANZl1os3BD CbvRT73XoVVJ Wc4ut3NqOC75 vhPHAOZkqm MnD5DUFf9gri q6BG6O7ixR1 1AFU4rpr8K QnGNiCG6DSz aKH15TCxIkHx lQGu8eY7hI v9QXV6cWEI lVlDfOhINouB PbdadG9dK2a sDyncGpOWc MuWxe6rJ69e 8Uffh29HDao N1OQ8kGUpXWP tYQDJxpLYt sfRuTax8Z9 9gw28Bu0mgmS 9j97UUONIM4 r3zu1FFFuz YQkoCqbC3j G1SFXia15K NL9K8oueI6XE r31gzJ19lI8 oeC9VABnVvUw QOpSS1yWVY Tb4C9JfCHP ySxEMj7xjp iD82gSt1inV y5pHxQXTEPFI SgV6llJD5b1 NDN9Dc5rEo 1ECRhEuTP622 */}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Inserts a tab into a new group.
_insertIntoNewGroup(details) { const that = this, tab = details.tab, tabLabelContainer = details.tabLabelContainer, group = details.group, groupContainers = that._addGroupContainer(group), groupLabel = groupContainers.label, groupDropDown = groupContainers.dropDown; groupDropDown.appendChild(tabLabelContainer); that._groups.push(group); let index = Math.max(0, Math.min(details.index, that.$.tabStrip.childElementCount)), tabStripIndex = index; if (that._addNewTab && tabStripIndex === that.$.tabStrip.childElementCount) { tabStripIndex--; } that.$.tabStrip.insertBefore(groupLabel, that.$.tabStrip.children[tabStripIndex] || null); that._groupLabels.push(groupLabel); const newJqxTabItemsGroup = document.createElement('jqx-tab-items-group'); newJqxTabItemsGroup.appendChild(tab); that.$.tabContentSection.insertBefore(newJqxTabItemsGroup, that.$.tabContentSection.children[index]); newJqxTabItemsGroup.label = group; const previousSibling = newJqxTabItemsGroup.previousElementSibling; let overallIndex = 0; if (previousSibling) { if (previousSibling instanceof JQX.TabItem) { overallIndex = previousSibling.index + 1; } else if (previousSibling) { overallIndex = previousSibling.lastElementChild.index + 1; } } that._tabLabelContainers.splice(overallIndex, 0, tabLabelContainer); that.$.dropDownButtonDropDown.insertBefore(details.dropDownLabelContainer, that.$.dropDownButtonDropDown.children[overallIndex] || null); that._tabs.splice(overallIndex, 0, tab); index = overallIndex; tab.group = group; that._updateIndexes(index); }
[ "_insertNearAGroup(details) {\n const that = this,\n tab = details.tab,\n tabLabelContainer = details.tabLabelContainer;\n let index = details.index;\n\n index = Math.max(0, Math.min(index, that._tabs.length));\n\n const previous = that._tabs[index - 1],\n next = that._tabs[index],\n groupOfNext = next ? next.group : undefined;\n\n if (previous && previous.group !== null && next && groupOfNext !== null) {\n // insert into group\n next.tabLabelContainer.parentElement.insertBefore(tabLabelContainer, next.tabLabelContainer);\n next.parentElement.insertBefore(tab, next);\n\n tab.group = groupOfNext;\n }\n else {\n if (next) {\n if (groupOfNext !== null) {\n that.$.tabStrip.insertBefore(tabLabelContainer, that._groupLabels[that._groups.indexOf(groupOfNext)]);\n that.$.tabContentSection.insertBefore(tab, that.$.tabContentSection.querySelector('smart-tab-items-group[label=\"' + groupOfNext + '\"]'));\n }\n else {\n that.$.tabStrip.insertBefore(tabLabelContainer, next.tabLabelContainer);\n that.$.tabContentSection.insertBefore(tab, next);\n }\n }\n else {\n that.$.tabStrip.insertBefore(tabLabelContainer, that._addNewTab || null);\n that.$.tabContentSection.appendChild(tab);\n }\n }\n\n that._tabLabelContainers.splice(index, 0, tabLabelContainer);\n that.$.dropDownButtonDropDown.insertBefore(details.dropDownLabelContainer, that.$.dropDownButtonDropDown.children[index] || null);\n that._tabs.splice(index, 0, tab);\n\n that._updateIndexes(index);\n }", "_insertNearAGroup(details) {\n const that = this,\n tab = details.tab,\n tabLabelContainer = details.tabLabelContainer;\n let index = details.index;\n\n index = Math.max(0, Math.min(index, that._tabs.length));\n\n const previous = that._tabs[index - 1],\n next = that._tabs[index],\n groupOfNext = next ? next.group : undefined;\n\n if (previous && previous.group !== null && next && groupOfNext !== null) {\n // insert into group\n next.tabLabelContainer.parentElement.insertBefore(tabLabelContainer, next.tabLabelContainer);\n next.parentElement.insertBefore(tab, next);\n\n tab.group = groupOfNext;\n }\n else {\n if (next) {\n if (groupOfNext !== null) {\n that.$.tabStrip.insertBefore(tabLabelContainer, that._groupLabels[that._groups.indexOf(groupOfNext)]);\n that.$.tabContentSection.insertBefore(tab, that.$.tabContentSection.querySelector('jqx-tab-items-group[label=\"' + groupOfNext + '\"]'));\n }\n else {\n that.$.tabStrip.insertBefore(tabLabelContainer, next.tabLabelContainer);\n that.$.tabContentSection.insertBefore(tab, next);\n }\n }\n else {\n that.$.tabStrip.insertBefore(tabLabelContainer, that._addNewTab || null);\n that.$.tabContentSection.appendChild(tab);\n }\n }\n\n that._tabLabelContainers.splice(index, 0, tabLabelContainer);\n that.$.dropDownButtonDropDown.insertBefore(details.dropDownLabelContainer, that.$.dropDownButtonDropDown.children[index] || null);\n that._tabs.splice(index, 0, tab);\n\n that._updateIndexes(index);\n }", "_insertIntoNewGroup(details) {\n const that = this,\n tab = details.tab,\n tabLabelContainer = details.tabLabelContainer,\n group = details.group,\n groupContainers = that._addGroupContainer(group),\n groupLabel = groupContainers.label,\n groupDropDown = groupContainers.dropDown;\n\n groupDropDown.appendChild(tabLabelContainer);\n\n that._groups.push(group);\n\n let index = Math.max(0, Math.min(details.index, that.$.tabStrip.childElementCount)),\n tabStripIndex = index;\n\n if (that._addNewTab && tabStripIndex === that.$.tabStrip.childElementCount) {\n tabStripIndex--;\n }\n\n that.$.tabStrip.insertBefore(groupLabel, that.$.tabStrip.children[tabStripIndex] || null);\n\n that._groupLabels.push(groupLabel);\n\n const newSmartTabItemsGroup = document.createElement('smart-tab-items-group');\n\n newSmartTabItemsGroup.appendChild(tab);\n that.$.tabContentSection.insertBefore(newSmartTabItemsGroup, that.$.tabContentSection.children[index]);\n newSmartTabItemsGroup.label = group;\n\n const previousSibling = newSmartTabItemsGroup.previousElementSibling;\n let overallIndex = 0;\n\n if (previousSibling) {\n if (previousSibling instanceof Smart.TabItem) {\n overallIndex = previousSibling.index + 1;\n }\n else if (previousSibling) {\n overallIndex = previousSibling.lastElementChild.index + 1;\n }\n }\n\n that._tabLabelContainers.splice(overallIndex, 0, tabLabelContainer);\n that.$.dropDownButtonDropDown.insertBefore(details.dropDownLabelContainer, that.$.dropDownButtonDropDown.children[overallIndex] || null);\n that._tabs.splice(overallIndex, 0, tab);\n\n index = overallIndex;\n\n tab.group = group;\n\n that._updateIndexes(index);\n }", "_insertIntoExistingGroup(details) {\n const that = this,\n jqxTabItemsGroup = details.jqxTabItemsGroup,\n tab = details.tab,\n tabLabelContainer = details.tabLabelContainer,\n group = details.group,\n groupLabel = that._groupLabels[that._groups.indexOf(group)],\n groupDropDown = groupLabel.dropDown;\n let index = details.index;\n\n index = Math.max(0, Math.min(index, jqxTabItemsGroup.childElementCount));\n\n groupDropDown.insertBefore(tabLabelContainer, groupDropDown.children[index]);\n\n const sibling = jqxTabItemsGroup.children[index];\n let overallIndex;\n\n if (sibling) {\n overallIndex = sibling.index;\n }\n else {\n overallIndex = jqxTabItemsGroup.children[index - 1].index + 1;\n }\n\n jqxTabItemsGroup.insertBefore(tab, sibling);\n\n that._tabLabelContainers.splice(overallIndex, 0, tabLabelContainer);\n that.$.dropDownButtonDropDown.insertBefore(details.dropDownLabelContainer, that.$.dropDownButtonDropDown.children[overallIndex] || null);\n that._tabs.splice(overallIndex, 0, tab);\n\n index = overallIndex;\n\n tab.group = group;\n\n that._updateIndexes(index);\n }", "_insertIntoExistingGroup(details) {\n const that = this,\n smartTabItemsGroup = details.smartTabItemsGroup,\n tab = details.tab,\n tabLabelContainer = details.tabLabelContainer,\n group = details.group,\n groupLabel = that._groupLabels[that._groups.indexOf(group)],\n groupDropDown = groupLabel.dropDown;\n let index = details.index;\n\n index = Math.max(0, Math.min(index, smartTabItemsGroup.childElementCount));\n\n groupDropDown.insertBefore(tabLabelContainer, groupDropDown.children[index]);\n\n const sibling = smartTabItemsGroup.children[index];\n let overallIndex;\n\n if (sibling) {\n overallIndex = sibling.index;\n }\n else {\n overallIndex = smartTabItemsGroup.children[index - 1].index + 1;\n }\n\n smartTabItemsGroup.insertBefore(tab, sibling);\n\n that._tabLabelContainers.splice(overallIndex, 0, tabLabelContainer);\n that.$.dropDownButtonDropDown.insertBefore(details.dropDownLabelContainer, that.$.dropDownButtonDropDown.children[overallIndex] || null);\n that._tabs.splice(overallIndex, 0, tab);\n\n index = overallIndex;\n\n tab.group = group;\n\n that._updateIndexes(index);\n }", "function addTab(tab_group_id,tab_id,tab_name) {\n\tvar tab_group = document.getElementById(tab_group_id);\n\tvar tab_node = document.getElementById(tab_id);\n\tif(!tab_node) {\n\t\ttab_node = document.createElement(\"button\");\n\t\ttab_node.setAttribute('type','button');\n\t\ttab_node.className = TAB_CLASS_UNSELECTED;\n\t\ttab_node.id = tab_id;\n\t\ttab_node.addEventListener('click',function() {\n\t\t\tonClickTab(tab_id);\n\t\t});\n\t\ttab_group.appendChild(tab_node);\n\t}\n\ttab_node.innerText = tab_name;\n}", "appendTab(options) {\n this.insertTab(-1, options);\n }", "_insertAddNewTab() {\n const that = this,\n tabLabelContainer = that._addTabLabelContainer(undefined, true).tabLabelContainer;\n\n tabLabelContainer.$.addClass('smart-add-new-tab');\n\n that.$.tabStrip.appendChild(tabLabelContainer);\n\n that._addNewTab = tabLabelContainer;\n }", "function insertTab(owner, widget, ref, after) {\n\t // Ensure the insert args are valid.\n\t validateInsertArgs(owner, widget, ref);\n\t // If the widget is the same as the ref, there's nothing to do.\n\t if (widget === ref) {\n\t return;\n\t }\n\t // Unparent the widget before performing the insert. This ensures\n\t // that structural changes to the dock panel occur before searching\n\t // for the insert location.\n\t widget.parent = null;\n\t // Find the index and tab panel for the insert operation.\n\t var index;\n\t var tabPanel;\n\t if (ref) {\n\t tabPanel = findTabPanel(ref);\n\t index = tabPanel.childIndex(ref) + (after ? 1 : 0);\n\t }\n\t else {\n\t tabPanel = ensureFirstTabPanel(owner);\n\t index = after ? tabPanel.childCount() : 0;\n\t }\n\t // Insert the widget into the tab panel at the proper location.\n\t tabPanel.insertChild(index, widget);\n\t }", "_insertAddNewTab() {\n const that = this,\n tabLabelContainer = that._addTabLabelContainer(undefined, true).tabLabelContainer;\n\n tabLabelContainer.$.addClass('jqx-add-new-tab');\n\n that.$.tabStrip.appendChild(tabLabelContainer);\n\n that._addNewTab = tabLabelContainer;\n }", "_insertNoGrouping(tabDetails) {\n const that = this,\n index = Math.max(0, Math.min(tabDetails.index, that._tabs.length)),\n tab = tabDetails.tab,\n tabLabelContainer = tabDetails.tabLabelContainer;\n\n that.$.tabStrip.insertBefore(tabLabelContainer, that._tabLabelContainers[index] || that._addNewTab || null);\n that.$.tabContentSection.insertBefore(tab, that._tabs[index] || null);\n that._tabLabelContainers.splice(index, 0, tabLabelContainer);\n that.$.dropDownButtonDropDown.insertBefore(tabDetails.dropDownLabelContainer, that.$.dropDownButtonDropDown.children[index] || null);\n that._tabs.splice(index, 0, tab);\n\n that._updateIndexes(index);\n }", "function onKeyNewTabInGroup() {\n const panel = this.state.panels[this.state.panelIndex]\n const tabs = this.state.tabs\n if (!panel || !panel.tabs) return\n\n // Find active/selected tab\n let activeTab\n if (this.state.selected.length > 0) {\n const lastIndex = this.state.selected.length - 1\n activeTab = this.state.tabsMap[this.state.selected[lastIndex]]\n } else {\n activeTab = panel.tabs.find(t => t.active)\n }\n\n // Get index and parentId for new tab\n let index, parentId\n if (!activeTab) {\n index = panel.tabs.length ? panel.endIndex + 1 : panel.startIndex\n } else {\n index = activeTab.index + 1\n if (activeTab.isParent && !activeTab.folded) {\n parentId = activeTab.id\n } else {\n parentId = activeTab.parentId\n while (tabs[index] && tabs[index].lvl > activeTab.lvl) {\n index++\n }\n }\n if (parentId < 0) parentId = undefined\n }\n\n browser.tabs.create({\n index,\n cookieStoreId: panel.cookieStoreId,\n windowId: this.state.windowId,\n openerTabId: parentId,\n })\n}", "function onGroupInNewClicked(info, tab) {\n enumAllTabs(true, function(tabs) {\n tabs = removeUnrelatedTabs(tabs, tab);\n createNewWindowForTab(tabs[0], function(windowId) {\n chrome.tabs.move(tabs, {\"index\": -1, \"windowId\": windowId}, function() {\n // when move complete, we need to remove the first 'new page' tab\n chrome.tabs.query({index:0, \"windowId\": windowId}, function(tabs) {\n chrome.tabs.remove(tabs[0].id);\n })\n });\n });\n });\n}", "function addTab(form, tabText, index) {}", "insertTab(index, options) {\n var me = this, tabs = this.get('tabs');\n if (index < 0) index = tabs.length;\n options.id = getId();\n return me.splice('tabs', index, 0, options).then(() => me.set('current', index));\n }", "function addTab(tabName) {\n document.getElementById(\"pills-card\").innerHTML = \"\";\n document.getElementById(\"pills-swish\").innerHTML = \"\";\n if (tabName === \"credit-card\") {\n const template = document.getElementById('credit-card-template');\n const instance = document.importNode(template.content, true)\n document.getElementById(\"pills-card\").appendChild(instance);\n }\n else if (tabName === \"swish\") {\n const template = document.getElementById('swish-template');\n const instance = document.importNode(template.content, true)\n document.getElementById(\"pills-swish\").appendChild(instance);\n }\n\n}", "function insertTab(event, obj) {\r\n var tabKeyCode = 9;\r\n if (event.which) // mozilla\r\n var keycode = event.which;\r\n else // ie\r\n var keycode = event.keyCode;\r\n if (keycode == tabKeyCode) {\r\n if (event.type == \"keydown\") {\r\n if (obj.setSelectionRange) {\r\n // mozilla\r\n var s = obj.selectionStart;\r\n var e = obj.selectionEnd;\r\n obj.value = obj.value.substring(0, s) +\r\n \"\\t\" + obj.value.substr(e);\r\n obj.setSelectionRange(s + 1, s + 1);\r\n obj.focus();\r\n } else if (obj.createTextRange) {\r\n // ie\r\n document.selection.createRange().text = \"\\t\"\r\n obj.onblur = function () { this.focus(); this.onblur = null; };\r\n } else {\r\n // unsupported browsers\r\n }\r\n }\r\n if (event.returnValue) // ie ?\r\n event.returnValue = false;\r\n if (event.preventDefault) // dom\r\n event.preventDefault();\r\n return false; // should work in all browsers\r\n }\r\n return true;\r\n}", "function groupTLD(newTab) {\n if(newTab.url != \"about:blank\" && newTab.url != \"about:newtab\"){\n var index = -1;\n for (let tab of tabs) {\n if ((tab != newTab) && (parseTLD(tab.url) == parseTLD(newTab.url))) {\n if (debug) console.log(\"moved\");\n index = tab.index;\n }\n }\n if (index != -1) {\n if (newTab.index < index) {\n newTab.index = index;\n } else {\n newTab.index = index + 1;\n }\n }\n }\n}", "function addTab() {\n\t\t\tvar tab_title = $tab_title_input.val() || \"Tab \" + tab_counter;\n\t\t\t$tabs.tabs( \"add\", \"#newtabs-\" + tab_counter, tab_title );\n\t\t\ttab_counter++;\n\t\t}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Detects if the current device is an Internetcapable game console.
function DetectGameConsole() { if (DetectSonyPlaystation()) return true; if (DetectNintendo()) return true; if (DetectXbox()) return true; else return false; }
[ "function DetectGameConsole()\n{\n if (DetectSonyPlaystation())\n return true;\n if (DetectNintendo())\n return true;\n if (DetectXbox())\n return true;\n else\n return false;\n}", "checkInternetConnection() {\r\n if (navigator.onLine) {\r\n return true;\r\n } else {\r\n showInternetErrorAlert();\r\n }\r\n }", "function canGame() {\n return \"getGamepads\" in navigator;\n}", "function isOnline() {\n var online = true;\n\n if (typeof window !== 'undefined' && 'navigator' in window && window.navigator.onLine === false) {\n online = false;\n }\n\n return online;\n}", "function isOnline() {\n var online = true;\n\n if (typeof window !== \"undefined\" && \"navigator\" in window && window.navigator.onLine === false) {\n online = false;\n }\n\n return online;\n}", "function hasNetworkConnection() {\n\tif(navigator && navigator.connection && typeof(Connection) != \"undefined\") {\n\t\t// under cordova with network information plugin\n\t\treturn navigator.connection.type != Connection.NONE;\n\t} else {\n\t\t// without cordova or network information plugin\n\t\treturn true;\n\t}\n}", "function checkNetwork()\n{\n\tvar networkState = navigator.connection.type;\n var states = {};\n states[Connection.UNKNOWN] = 'Unknown connection';\n states[Connection.ETHERNET] = 'Ethernet connection';\n states[Connection.WIFI] = 'WiFi connection';\n states[Connection.CELL_2G] = 'Cell 2G connection';\n states[Connection.CELL_3G] = 'Cell 3G connection';\n states[Connection.CELL_4G] = 'Cell 4G connection';\n states[Connection.NONE] = 'No network connection';\n\t\t\n\t\tif((states[networkState] == \"No network connection\") || (states[networkState] == \"Unknown connection\"))\n\t\t{\n\t\t\talert(\"Your Deviceā Internet connection is not working. Please check and relaunch app.\");\n\t\t}\n}", "function supportsGamepads() {\n return !!(navigator.getGamepads);\n}", "function hasInternetConnection () {\n try {\n var connectionProfile = Windows.Networking.Connectivity.NetworkInformation.getInternetConnectionProfile();\n if (connectionProfile) {\n if (connectionProfile.getNetworkConnectivityLevel() === 3)\n return true;\n }\n }\n catch (e) {}\n\n return false;\n }", "function checkConnection() {\n try{\n var networkState = navigator.connection && navigator.connection.type;\n if(!networkState || networkState=='none')\n {\n return false;\n }\n else{\n return false;\n }\n }catch(e){\n console.log(e);\n } \n}", "function getIsLocalDevice() {\n const connectBar = document.querySelector('.ConnectBar');\n\n return connectBar === null;\n}", "function supportsDisplay(ctx) {\n return ctx.event.context &&\n ctx.event.context.System &&\n ctx.event.context.System.device &&\n ctx.event.context.System.device.supportedInterfaces &&\n ctx.event.context.System.device.supportedInterfaces.Display\n}", "function hasGamepad() {\n return \"getGamepads\" in navigator;\n}", "function _isInternetAvailable() {\n var networkInfo = Windows.Networking.Connectivity.NetworkInformation;\n var internetProfile = networkInfo.getInternetConnectionProfile();\n if (internetProfile) {\n return true;\n }\n else {\n return false;\n }\n }", "function checkSupport() {\n\t\t\tvar ua = navigator.userAgent.toLowerCase();\n\t\t\treturn ua.search( /(iphone)|(ipod)|(android)/ ) === -1 || ua.search( /(chrome)/ ) !== -1;\n\t\t}", "function gamepadSupport() {\n\t\treturn !!navigator.getGamepads;\n\t}", "function DetectNintendo()\n{\n if (uagent.search(deviceNintendo) > -1 || \n\tuagent.search(deviceWii) > -1 ||\n\tuagent.search(deviceNintendoDs) > -1)\n return true;\n else\n return false;\n}", "static get isAvailable() {\n if (!this.microsoftTeamsLib) {\n return false;\n }\n if (window.parent === window.self && window.nativeInterface) {\n // In Teams mobile client\n return true;\n }\n else if (window.name === 'embedded-page-container' || window.name === 'extension-tab-frame') {\n // In Teams web/desktop client\n return true;\n }\n return false;\n }", "function alertBrowser(){\n if (window.navigator.onLine === true) {\n alert (\"The browser is online\")\n }\n console.log(\"hello\")\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
The `Mod` class to use when creating new `Mod` instances. Can be overridden for testing, etc.
get Mod() { return this._Mod || Mod; }
[ "function Modifiers() {\n this.modTypes = [];\n}", "function ModObject( modderId, modVal, modType ) {\n this.modderId = modderId;\n this.modVal = modVal;\n this.modType = modType;\n}", "get modulationType() {\n return this._modulator.type;\n }", "function Module(name) {\n if (isUndefined(name)) {\n throw new Error(\"Mod.Module(name): name is undefined\");\n }\n\n this.dom = new Mod.DOM;\n this.data = {};\n this.name = name;\n }", "function ModRegister(modName) {\n lces.types.group.call(this);\n var that = this;\n \n // Module interface default\n this.interfaceType = \"literal\";\n this.interface = null;\n var settings = null;\n \n var validITypes = [\"auto\", \"literal\"];\n // this.addStateCondition(\"interfaceType\", function(itype) {\n // if (validITypes.indexOf(itype) === -1)\n // return false;\n //\n // return true;\n // });\n \n // Module name and version\n jSh.constProp(this, \"modName\", modName);\n \n this.modDesc = \"\";\n this.modVersion = 1;\n this.modAuthors = [];\n Object.defineProperty(this, \"settings\", {\n get: () => settings,\n configurable: false\n });\n \n // Events\n this.addEvent(\"moddisable\");\n this.addEvent(\"modenable\");\n this.addEvent(\"loaded\"); // TODO: Check wtf this is for\n }", "function Modulable() {\n _classCallCheck(this, Modulable);\n\n this._modules = {};\n }", "getModuleClass() {\r\n return this.moduleClass;\r\n }", "function Module(obj) {\n this.uid = obj.uid;\n this.id = obj.id || null;\n this.url = obj.url;\n this.deps = obj.deps || [];\n this.depMods = new Array(this.deps.length);\n this.status = obj.status || Module.STATUS.uninit;\n this.factory = obj.factory || noop;\n this.exports = {};\n }", "function boot_module() {\n var mtor = function() {};\n mtor.prototype = RubyModule.constructor.prototype;\n\n function OpalModule() {};\n OpalModule.prototype = new mtor();\n\n var module = new OpalModule();\n\n module._id = unique_id++;\n module._isClass = true;\n module.constructor = OpalModule;\n module._super = RubyModule;\n module._methods = [];\n module.__inc__ = [];\n module.__parent = RubyModule;\n module._proto = {};\n module.__mod__ = true;\n module.__dep__ = [];\n\n return module;\n }", "function ModuleWrapper() {}", "function boot_module_object() {\r\n var mtor = function() {};\r\n mtor.prototype = ModuleClass.constructor.prototype;\r\n\r\n function module_constructor() {}\r\n module_constructor.prototype = new mtor();\r\n\r\n var module = new module_constructor();\r\n var module_prototype = {};\r\n\r\n setup_module_or_class_object(module, module_constructor, ModuleClass, module_prototype);\r\n\r\n module.$$is_mod = true;\r\n module.$$dep = [];\r\n\r\n return module;\r\n }", "function Module(){}", "mod(modName, _condition=true){\n const condition = arguments.length === 2 ? !!_condition : true;\n\n if (!modName || !condition) {\n return this;\n }\n\n if (typeof modName === 'object') {\n return this.modObj(modName);\n }\n\n return new BemElement(this.name, this.modifiers.concat([modName]), this);\n }", "constructor(mod)\n\t{\n\t\tthis.MOD_NAME = mod.name;\n\t\tthis.BASE_DIR = mod.baseDirectory;\n\t\tthis.RELATIVE_DIR = this.BASE_DIR.substring(7); // Gets rid of \"assets/\".\n\t\tthis.VOICE_DIR = 'voice/';\n\t\tthis.PACKS_DIR = 'packs/';\n\t\tthis.PACKS = this._getPacks();\n\t\tthis.COMMON_FILE = 'common.json';\n\t\tthis.COMMON_DIR = 'common/';\n\t\tthis.DATABASE_DIR = 'database/';\n\t\tthis.MAPS_DIR = 'maps/';\n\t\tthis.LANG_DIR = 'lang/';\n\t\tthis.beep = true;\n\t\tthis.bestva = false;\n\t}", "get globalMod() { return this.parent.getGlobalInstance().instance; }", "function boot_module_object() {\n var mtor = function() {};\n mtor.prototype = Module_alloc.prototype;\n\n function module_constructor() {}\n module_constructor.prototype = new mtor();\n\n var module = new module_constructor();\n var module_prototype = {};\n\n setup_module_or_class_object(module, module_constructor, Module, module_prototype);\n\n return module;\n }", "function $allocate_module(name) {\n var constructor = function(){};\n var module = constructor;\n\n if (name)\n $prop(constructor, 'displayName', name+'.constructor');\n\n $prop(module, '$$name', name);\n $prop(module, '$$prototype', constructor.prototype);\n $prop(module, '$$const', {});\n $prop(module, '$$is_module', true);\n $prop(module, '$$is_a_module', true);\n $prop(module, '$$cvars', {});\n $prop(module, '$$iclasses', []);\n $prop(module, '$$own_included_modules', []);\n $prop(module, '$$own_prepended_modules', []);\n $prop(module, '$$ancestors', [module]);\n $prop(module, '$$ancestors_cache_version', null);\n\n $set_proto(module, Opal.Module.prototype);\n\n return module;\n }", "function newmod(val)\n{\n\n\tif(arguments.length) // bail if no arguments\n\t{\n\t\t// parse arguments\n\t\tfilename = arguments[0];\n modname = arguments[1];\n voffset = voffset+20;\n// create the new mod object\n modules[nummodules] = this.patcher.newdefault(hoffset, voffset, filename, modname);\n post(\"new\");\n post (filename);\n post(\"module created:\")\n post(modname);\n post();\n\n// keep a list of created modules by name\n modnames[nummodules] = modname;\n\n// update our global number of modules to the new value\n nummodules = nummodules + 1; \n\n//Create a new column after every 15 modules ...\n if(nummodules % 15){} else\n {\n hoffset = hoffset + 150;\n voffset = 200;\n }\noutlet(0, nummodules);\noutlet(1, nummodules, filename, modname);\n \n\t}\n\n\telse // complain about arguments\n\t{\n\t\tpost(\"newmod message needs arguments [filename, modname]\");\n\t\tpost();\n\t}\n}", "function ModulesApi() {\n\t/**\n * @private {{}} _moduleObjectStorage - Modules storage.\n */\n\tvar _moduleObjectStorage = {};\n\n\t/**\n * @private {{}} _moduleClassStorage - Classes storage.\n */\n\tvar _moduleClassStorage = {};\n\n\t/**\n * Register module events\n * @param {Array} events - Array of events\n */\n\tfunction registerModuleEvents(events) {\n\t\tif (Array.isArray(events)) {\n\t\t\tMoff.each(events, function (index, event) {\n\t\t\t\tMoff.event.add(event);\n\t\t\t});\n\t\t}\n\t}\n\n\t/**\n * Creates new module class.\n * @method create\n * @param {string} name - module name\n * @param {object} [depend] - object of js and css files\n * @param {function} Constructor - constructor\n */\n\tthis.create = function (name, depend, Constructor, extendFrom) {\n\t\tif (typeof extendFrom === 'undefined' && typeof Constructor === 'undefined' && typeof depend === 'function') {\n\t\t\tConstructor = depend;\n\t\t\tdepend = undefined;\n\t\t} else if (typeof extendFrom === 'undefined' && typeof Constructor === 'function' && typeof depend === 'function') {\n\t\t\textendFrom = Constructor;\n\t\t\tConstructor = depend;\n\t\t\tdepend = undefined;\n\t\t}\n\n\t\tif (extendFrom) {\n\t\t\tConstructor.prototype = new extendFrom();\n\t\t} else {\n\t\t\tConstructor.prototype = Moff.Module;\n\t\t}\n\n\t\tConstructor.prototype.constructor = Constructor;\n\n\t\t// Save module in storage\n\t\tif (typeof _moduleClassStorage[name] === 'undefined') {\n\t\t\t_moduleClassStorage[name] = {\n\t\t\t\tconstructor: Constructor,\n\t\t\t\tdepend: depend\n\t\t\t};\n\t\t}\n\t};\n\n\t/**\n * Initialize registered class\n * @method initClass\n * @param {string} ClassName - Name of registered class\n * @param {object} [params] - Object with additional params\n */\n\tthis.initClass = function (ClassName, params) {\n\t\tvar moduleObject = _moduleClassStorage[ClassName];\n\n\t\tif (!moduleObject) {\n\t\t\tMoff.debug(ClassName + ' Class is not registered');\n\n\t\t\treturn;\n\t\t}\n\n\t\tfunction initialize() {\n\t\t\t// Create new class object\n\t\t\tvar classObject = new moduleObject.constructor();\n\t\t\tvar storedObject = _moduleObjectStorage[ClassName];\n\n\t\t\t// Store objects in array if there are more then one classes\n\t\t\tif (Array.isArray(storedObject)) {\n\t\t\t\tstoredObject.push(classObject);\n\t\t\t} else if (typeof storedObject !== 'undefined') {\n\t\t\t\t_moduleObjectStorage[ClassName] = [storedObject, classObject];\n\t\t\t} else {\n\t\t\t\t_moduleObjectStorage[ClassName] = classObject;\n\t\t\t}\n\n\t\t\tif (typeof classObject.beforeInit === 'function') {\n\t\t\t\tclassObject.beforeInit();\n\t\t\t}\n\n\t\t\tif (params) {\n\t\t\t\t// Apply all passed data\n\t\t\t\tMoff.each(params, function (key, value) {\n\t\t\t\t\tclassObject[key] = value;\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Add module name\n\t\t\tclassObject.moduleName = ClassName;\n\n\t\t\tif (Array.isArray(classObject.events) && classObject.events.length) {\n\t\t\t\t// Register module events.\n\t\t\t\tregisterModuleEvents(classObject.events);\n\t\t\t}\n\n\t\t\t// Set module scope\n\t\t\tclassObject.setScope();\n\n\t\t\tif (typeof classObject.init === 'function') {\n\t\t\t\tclassObject.init();\n\t\t\t}\n\n\t\t\tif (typeof classObject.afterInit === 'function') {\n\t\t\t\tclassObject.afterInit();\n\t\t\t}\n\t\t}\n\n\t\ttry {\n\t\t\tif (moduleObject.depend) {\n\t\t\t\tMoff.loadAssets(moduleObject.depend, initialize);\n\t\t\t} else {\n\t\t\t\tinitialize();\n\t\t\t}\n\t\t} catch (error) {\n\t\t\tMoff.error(error);\n\t\t}\n\t};\n\n\t/**\n * Get registered module by name.\n * @method get\n * @param {string} name - Module name\n * @returns {object|Array|undefined} Module object or undefined\n */\n\tthis.get = function (name) {\n\t\treturn _moduleObjectStorage.hasOwnProperty(name) && _moduleObjectStorage[name] || undefined;\n\t};\n\n\t/**\n * Returns Module class\n * @method getClass\n * @param {String} name - module name\n * @returns {Function}\n */\n\tthis.getClass = function (name) {\n\t\tvar constructor = function constructor() {};\n\n\t\tif (_moduleClassStorage.hasOwnProperty(name)) {\n\t\t\tconstructor = _moduleClassStorage[name];\n\t\t}\n\n\t\treturn constructor;\n\t};\n\n\t/**\n * Returns all modules.\n * @method getAll\n * @returns {{}}\n */\n\tthis.getAll = function () {\n\t\treturn _moduleObjectStorage;\n\t};\n\n\t/**\n * Get modules by passed property.\n * @method getBy\n * @param {string} field - Module property name\n * @param {*} value - Property value\n * @returns {Array} Array of modules filtered by property\n */\n\tthis.getBy = function (field, value) {\n\t\tvar all = this.getAll();\n\t\tvar result = [];\n\n\t\t// Normalize field\n\t\tif (field === 'class') {\n\t\t\tfield = 'moduleName';\n\t\t}\n\n\t\tMoff.each(all, function (className, object) {\n\t\t\tif (Array.isArray(object)) {\n\t\t\t\tMoff.each(object, function (index, obj) {\n\t\t\t\t\tif (obj[field] && obj[field] === value) {\n\t\t\t\t\t\tresult.push(obj);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t} else if (object[field] && object[field] === value) {\n\t\t\t\tresult.push(object);\n\t\t\t}\n\t\t});\n\n\t\treturn result;\n\t};\n\n\t/**\n * Remove registered module by name or instance.\n * @method remove\n * @param {string|object} module - Module Class name or instance.\n */\n\tthis.remove = function (module) {\n\t\tvar i = 0;\n\t\tvar isInstance = typeof module !== 'string';\n\t\tvar moduleName = isInstance ? module.moduleName : module;\n\t\tvar storage = _moduleObjectStorage[moduleName];\n\n\t\t// Be sure to remove existing module\n\t\tif (Array.isArray(storage)) {\n\t\t\tvar length = storage.length;\n\n\t\t\tfor (; i < length; i++) {\n\t\t\t\tvar object = storage[i];\n\n\t\t\t\tif (isInstance && object === module || !isInstance && object.moduleName === moduleName) {\n\t\t\t\t\tstorage.splice(i, 1);\n\t\t\t\t\tlength = storage.length;\n\t\t\t\t\t--i;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tif (storage.length === 1) {\n\t\t\t\t_moduleObjectStorage[moduleName] = _moduleObjectStorage[moduleName][0];\n\t\t\t} else if (!_moduleObjectStorage[moduleName].length) {\n\t\t\t\tdelete _moduleObjectStorage[moduleName];\n\t\t\t}\n\t\t} else {\n\t\t\tdelete _moduleObjectStorage[moduleName];\n\t\t}\n\t};\n\n\t/* Test-code */\n\tthis._testonly = {\n\t\t_moduleClassStorage: _moduleClassStorage,\n\t\t_moduleObjectStorage: _moduleObjectStorage\n\t};\n\t/* End-test-code */\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Given a DAG with each node assigned "rank" and "order" properties, this function will produce a matrix with the ids of each node.
function buildLayerMatrix(g){var layering=_.map(_.range(maxRank(g)+1),function(){return[]});_.forEach(g.nodes(),function(v){var node=g.node(v),rank=node.rank;if(!_.isUndefined(rank)){layering[rank][node.order]=v}});return layering}
[ "getGroupedNodeIds() {\n const ids = [];\n Object.values(this.nodes).forEach(node => (node.group ? ids.push(node.index) : null));\n return ids;\n }", "function transitionMatrix(graph) {\n let name2id = {};\n let id2name = [];\n let names = new Set();\n for (let name in graph) {\n if (!names.has(name)) {\n names.add(name);\n id2name.push(name);\n name2id[name] = id2name.length - 1;\n }\n }\n let N = id2name.length;\n let M = Array(N).fill(0).map(() => Array(N).fill(0));\n for (let name in graph) {\n if (graph[name].length > 0) {\n let value = 1 / graph[name].length;\n for (let neighbor of graph[name]) {\n M[name2id[neighbor]][name2id[name]] = value;\n }\n } else {\n let value = 1 / (N - 1);\n for (let neighbor in graph) {\n if (neighbor !== name) {\n M[name2id[neighbor]][name2id[name]] = value;\n }\n }\n }\n }\n return [M, id2name];\n}", "function matrixOf(edges, nodesList){\n\t\tvar adjacencyMatrix = [];\n\t\t\n\t\tfor (var i=0; i<nodesList.length; i++){\n\t\t\tadjacencyMatrix.push([]);\n\t\t\tfor (var j=0; j<nodesList.length; j++){\n\t\t\t\tadjacencyMatrix[i].push(0);\n\t\t\t\tedges.forEach(function(edge){\n\t\t\t\t\tif ((nodesList[i].id == edge.source && nodesList[j].id == edge.target || (nodesList[j].id == edge.source && nodesList[i].id == edge.target)))\n\t\t\t\t\t\tadjacencyMatrix[i][j] = 1;\n\t\t\t\t});\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn adjacencyMatrix;\n\t}", "function create_adjmatrix(graph) {\n var adjmatrix = [];\n var n = graph.nodes.length;\n\n for (var i = 0; i < n; i++) { //Initialize empty matrix\n var arr = [];\n for (var j = 0; j < n; j++) {\n arr.push(0);\n }\n adjmatrix.push(arr)\n }//End of initialization\n\n graph.links.forEach(function (l) {\n var sindex = graph.nodes.findIndex(x => x.id == l.source.id\n )\n ;\n var tindex = graph.nodes.findIndex(x => x.id == l.target.id\n )\n ;\n adjmatrix[sindex][tindex] = 1;\n adjmatrix[tindex][sindex] = 1;\n })\n return adjmatrix;\n}", "function matrixOf(graph, nodesList){\n\tvar adjacencyMatrix = [];\n\t\n\tfor (var i=0; i<nodesList.length; i++){\n\t\tadjacencyMatrix.push([]);\n\t\tfor (var j=0; j<nodesList.length; j++){\n\t\t\tadjacencyMatrix[i].push(0);\n\t\t\tgraph.edges().forEach(function(edge){\n\t\t\t\tif ((nodesList[i].id() == edge.source().id() && nodesList[j].id() == edge.target().id()) || (nodesList[j].id() == edge.source().id() && nodesList[i].id() == edge.target().id()))\n\t\t\t\t\tadjacencyMatrix[i][j] = 1;\n\t\t\t});\n\t\t}\n\t}\n\t\n\treturn adjacencyMatrix;\n}", "function ordenaIds(Mz){\n var MatrizOrdenada = Mz;\n for (var i = 0; i < Mz.length; i++) {\n for (var j = 0; j < Mz[i].length; j++) {\n MatrizOrdenada[i][j].Id = i+\"_\"+j;\n }; \n };\n return MatrizOrdenada;\n}", "getNodeIds() {\n\t\treturn this.getNodes().map((n) => n.id);\n\t}", "function collectNodeIds(stmt) {\n var ids = {},\n stack = [],\n curr;\n\n var push = stack.push.bind(stack);\n\n push(stmt);\n while(stack.length) {\n curr = stack.pop();\n switch(curr.type) {\n case \"node\": ids[curr.id] = true; break;\n case \"edge\": _.each(curr.elems, push); break;\n case \"subgraph\": _.each(curr.stmts, push); break;\n }\n }\n\n return _.keys(ids);\n}", "print_adjacency_matrix(){\n var vertices = Object.keys(this.adjacencyList);\n var matrix = [];\n for(var i=0; i< vertices.length; i++) {\n matrix[i] = Array(vertices.length).fill(0);\n }\n\n Object.keys(this.adjacencyList).forEach(element => {\n var elements = this.adjacencyList[element];\n elements.forEach(value => {\n matrix[element][value] = 1;\n });\n });\n\n for(var i=0; i< vertices.length; i++) {\n console.log(matrix[i])\n }\n }", "function generateID() {\n var i, j, id;\n var nodeLength = vm.graphdata.nodes.length;\n var edgeLength = vm.graphdata.edges.length;\n //generating unique node id\n for (i = 0; i < nodeLength; i++) {\n id = i + 1;\n vm.graphdata.nodes[i].originalNodeId = vm.graphdata.nodes[i].originalNodeId ? vm.graphdata.nodes[i].originalNodeId : vm.graphdata.nodes[i].id;\n vm.graphdata.nodes[i].id = id;\n }\n\n //generating unique edge id\n for (i = 0; i < edgeLength; i++) {\n id = i + 1;\n vm.graphdata.edges[i].originalEdgeId = vm.graphdata.edges[i].originalEdgeId ? vm.graphdata.edges[i].originalEdgeId : vm.graphdata.edges[i].id;\n vm.graphdata.edges[i].id = id;\n\n vm.graphdata.edges[i].originalFrom = vm.graphdata.edges[i].originalFrom ? vm.graphdata.edges[i].originalFrom : vm.graphdata.edges[i].from;\n vm.graphdata.edges[i].originalTo = vm.graphdata.edges[i].originalTo ? vm.graphdata.edges[i].originalTo : vm.graphdata.edges[i].to;\n }\n\n //changing the 'to' and 'from' value of edge\n for (i = 0; i < edgeLength; i++) {\n var count = 0;\n for (j = 0; j < nodeLength; j++) {\n if (vm.graphdata.edges[i].originalFrom === vm.graphdata.nodes[j].originalNodeId) {\n vm.graphdata.edges[i].from = vm.graphdata.nodes[j].id;\n count++;\n }\n if (vm.graphdata.edges[i].originalTo === vm.graphdata.nodes[j].originalNodeId) {\n vm.graphdata.edges[i].to = vm.graphdata.nodes[j].id;\n count++;\n }\n if (2 === count) {\n break;\n }\n }\n }\n }", "function dags(matrix) {\n var dags = [];\n // For each destination, find all links in the dag\n for (var i = 0; i < matrix.length; i++) {\n var dagLinks = [];\n // Find the set union of path links from all sources to the given dest\n for (var j = 0; j < matrix[i].length; j++) {\n var pathLinks = linksOnPath(j, i, matrix);\n pathLinks.forEach(function(link) {\n var count = dagLinks.filter(function(otherLink) {\n return link.equals(otherLink);\n }).length;\n var alreadyExists = count > 0;\n if (!alreadyExists) { dagLinks.push(link); }\n });\n }\n dags.push(dagLinks);\n }\n return dags;\n}", "get_graph(w) {\n let matrix = [...Array(this.nodes.length)].map(e => Array(this.nodes.length).fill(Z_open()));\n for(let e of this.edges) {\n matrix[e.i][e.j] = e.get_impedance(w);\n matrix[e.j][e.i] = matrix[e.i][e.j];\n }\n return matrix;\n }", "generateAdjMatrix()\n\t{\n\t\tlet links = new Array(this.nodeCount);\n\t\tlet unconnected = 0;\n\t\t\n\t\tfor (let i = 0; i < this.nodeCount; i++)\n\t\t\tlinks[i] = new Array(this.nodeCount);\n\t\t\n\t\t\n\t\tfor (let i = this.nodeCount - 1; i >= 0; i--)\n\t\t{\t\n\t\t\tfor (let j = this.nodeCount - 1; j >= 0; j--)\n\t\t\t{\n\t\t\t\tif (i == j)\n\t\t\t\t{\t\n\t\t\t\t\tlinks[i][j] = 0;\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// If i is less than 20 percent of our maximum nodes then\n\t\t\t\t// we can assign it more links.\n\t\t\t\tif (i < Math.round(this.nodeCount * 0.1))\n\t\t\t\t{\n\t\t\t\t\tlet edge = Math.round(Math.random());\n\t\t\t\t\t\n\t\t\t\t\tlinks[i][j] = edge;\n\t\t\t\t\tlinks[j][i] = edge;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\telse\n\t\t\t\t{\n\t\t\t\t\t// Magic number, but represents a 10 percent chance\n\t\t\t\t\tif (Math.round(Math.random() * 9) == 4)\n\t\t\t\t\t{\n\t\t\t\t\t\tlinks[i][j] = 1;\n\t\t\t\t\t\tlinks[j][i] = 1;\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t// No link generated so fill with a zero\n\t\t\t\t\telse \n\t\t\t\t\t{\n\t\t\t\t\t\tlinks[i][j] = 0;\n\t\t\t\t\t\tlinks[j][i] = 0;\n\t\t\t\t\t}\n\t\t\t\t}\t\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Loop through the adjacency matrix and find nodes without links\n\t\tfor (let i = 0; i < this.nodeCount; i++)\n\t\t{\t\n\t\t\tfor (let j = 0; j < this.nodeCount; j++)\n\t\t\t{\n\t\t\t\tif (links[i][j] == 0)\n\t\t\t\t{\n\t\t\t\t\tunconnected++;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\tif (unconnected == this.nodeCount)\n\t\t\t\t{\n\t\t\t\t\tlinks[i][this.nodeCount - i - 1] = 1;\n\t\t\t\t\tlinks[this.nodeCount - i - 1][i] = 1;\n\t\t\t\t}\n\t\t\t}\n\t\t\tunconnected = 0;\n\t\t}\n\t\treturn links;\n\t}", "function toPgpIdMap(nodes) {\n return new Map(nodes.reduce((ret, node, index) => ret.concat([[node.id, `t${index + 1}`]]), []));\n}", "matrixToGraph(matrix) {\n let g = new Graph()\n let nodeMatrix = new Array(matrix.length)\n for (let i = 0; i < matrix.length; i++) {\n nodeMatrix[i] = new Array(matrix[0].length)\n }\n for (let i = 0; i < matrix.length; i++) {\n for (let j = 0; j < matrix[0].length; j++) {\n let val = matrix[i][j]\n if(val == 3) { //spawner code\n val = 0\n }\n if (val == 0 || val == 2) {\n let n = new PathNode(j, i, val)\n g.addNode(n)\n nodeMatrix[i][j] = n\n }\n }\n }\n //console.log(nodeMatrix.length + \" by \" + nodeMatrix[0].length)\n\n this.connectAdjacents(nodeMatrix)\n return g\n }", "function generateAdjacencyLists(width, height, grid){\n var adjacencyLists = [];\n for (var row = 0; row < width; row++){\n for (var col = 0; col < height; col++){\n var newNode = new gridNode(row,col,grid[row][col]);\n\n if (row > 0){\n newNode.addAdjacentIndex(row-1, col);\n }\n if (row < width - 1){\n newNode.addAdjacentIndex(row+1, col);\n }\n if (col > 0){\n newNode.addAdjacentIndex(row, col-1);\n }\n if (col < height - 1){\n newNode.addAdjacentIndex(row, col+1);\n }\n if ((row > 0) && (col > 0)){\n newNode.addAdjacentIndex(row-1, col-1);\n }\n if ((row > 0) && (col < height - 1)){\n newNode.addAdjacentIndex(row-1, col+1);\n }\n if ((row < width - 1) && (col > 0)){\n newNode.addAdjacentIndex(row+1, col-1);\n }\n if ((row < width - 1) && (col < height - 1)){\n newNode.addAdjacentIndex(row+1, col+1);\n }\n\n adjacencyLists.push(newNode);\n }\n }\n return adjacencyLists;\n}", "getNodeIDs(){\n return Array.from(this.nodes.keys());\n }", "static getOrderIDs() {\n const orders = this.getAllOrders();\n let ids = orders.map((order) => {\n return order.id;\n });\n return ids;\n }", "function adjMxToGraph(am) {\n let nodes = [];\n nodes = am.map(function(el, i) {\n let res = {\n id: i,\n marked: false\n }\n return res\n })\n\n let edges = am.reduce(function(res, cur, index) {\n cur.reduce(function(localedges, edge, edix) {\n if (edge > 0 && index <= edix) localedges.push({\n source: index,\n target: edix,\n value: edge,\n marked: false\n })\n return localedges;\n }, res)\n return res\n }, [])\n\n return {\n nodes: nodes,\n edges: edges\n }\n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Okey what this part of the code does it that it checks to see if the text with the Id tag bottomless has the same string as it was created when you hit "Click Me" the text is now "Programming is Cooler" and if it is, it will change the text to "it already exist", if it is not it will change it to Programming is Cooler"
function afterPlacement() { var b = "Apple Bottom Jeans With The Fur"; var a = document.getElementById('bottomless').innerHTML; //console.log(iop); //console.log(a); if(a == b) { document.getElementById("bottomless").innerHTML = "Already Exist"; console.log(a); console.log("the Value is def.1"); } else { document.getElementById("bottomless").innerHTML = b; console.log("The value is not 1 and a is Changed"); } //document.getElementById("block1").innerHTML = "How are you?"; }
[ "function isDuplicate(){\n var element = document.getElementById(text);\n var dupElement = document.getElementById(\"tagDiv\").contains(element);\n return dupElement;\n }", "function updateBlankWord() {\n const updateBlank = document.getElementById('blank-word');\n updateBlank.innerText = blankWord;\n}", "function insertTitle() {\n var title = $(\"#note-title\").val();\n $(\"#note-text\").empty();\n $(\"#note-text\").val(\"<note></note>\")\n\n\n if(title in window.titleSet) {\n alert(\"This note title already exists!\");\n }\n else {\n $(\"#editor-note-title\").html(title);\n addNote();\n $.mobile.changePage(\"#editor\");\n }\n}", "function updateHTML(salutationXML){ \n //The node valuse will give actual data \n var salutationText = salutationXML.childNodes[0].nodeValue; \n\t\tif(salutationText != \"false\"){\n\t\t\talert(\"Company Name already Exists Chose Another !\");\n\t\t\tdocument.myform.newAddFirstNameIdComp.value=\"\";\n\t\t\tdocument.myform.newAddFirstNameIdComp.focus();\n\t\t}\n }", "function showAlreadyAddedToBookmark(text) {\n UISelectors.already_bookmarked.classList.add('show')\n UISelectors.already_bookmarked.innerHTML = `<h4 class=\"text-light \">${text} is already bookmarked!!</h4>`\n setTimeout(() => {\n UISelectors.already_bookmarked.classList.remove('show')\n }, 3000)\n }", "function checkduplicate(text)\n{\n\tvar i = 0;\n\tvar len = groupStore.length;\n\twhile (i < len)\n\t{\n\t\tvar str = groupStore[i]._title;\n\t\tif(text.toLowerCase()==str.toLowerCase())\n\t\t{\n\t\t\tdocument.getElementById('errorgroup').innerHTML=\"This category name already exists.\";\n\t\t\treturn true;\n\t\t}\n\t\ti++;\n\t}\n\treturn false;\n}", "function setInstructionText() {\r\n // update instruction text\r\n var instructionText = document.getElementById('instruction-text');\r\n var voteInstructionText = document.getElementById('vote-instructions');\r\n if (!isArtThief) {\r\n instructionText.innerHTML = `The word is \"${item}.\"`;\r\n voteInstructionText.innerHTML = \"Guess the Art Thief's identity.\";\r\n }\r\n else {\r\n instructionText.innerHTML = `You are the Art Thief!`;\r\n voteInstructionText.innerHTML = \"You have one try to guess the item. When you click Submit, the game ends.\";\r\n }\r\n}", "function modifyText() {\n var t2 = document.getElementById(\"t2\");\n if (t2.firstChild.nodeValue == \"three\") {\n t2.firstChild.nodeValue = \"two\";\n } else {\n t2.firstChild.nodeValue = \"three\";\n }\n}", "function modifyText() {\n const t2 = document.getElementById(\"t5\");\n if (t2.firstChild.nodeValue == \"5\") {\n t2.firstChild.nodeValue = \"mff\";\n } else {\n t2.firstChild.nodeValue = \"aik\";\n }\n}", "function SetOnlyTextOnButton(theId, newtext) {\n\tvar cache = $(theId).children();\n\t$(theId).text(newtext).append(cache);\n}", "function insertText(text){\n if(text == text.toUpperCase()){\n console.log(\"El texto esta completamente en mayuscula\");\n }\n else if(text == text.toLowerCase()){\n // esta parte tambien se puede como (text !== text.toUpperCase()) pero no se podria ejecutar la ultima condicion else.\n console.log(\"El texto esta completamente en minuscula\")\n }\n else{\n console.log(\"El texto esta en minuscula y mayuscula\");\n }\n\n}", "function state(){\n const on = document.getElementById(\"text\");\n if (on.innerHTML === \"Subtitle goes here\") {\n on.innerHTML = \"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.\";\n } else {\n on.innerHTML = \"Subtitle goes here\";\n }\n}", "function SetOnlyTextOnButton(theId, newtext)\n{\n\tvar cache = $(theId).children();\n\t$(theId).text(newtext).append(cache);\n}", "function replaceExistingWithNewHtml(newTextElements){\r\n\r\n \t//loop through newTextElements\r\n \tfor ( var i=newTextElements.length-1; i>=0; --i ){\r\n\r\n \t\t//check that this begins with <span\r\n \t\tif(newTextElements[i].indexOf(\"<span\")>-1){\r\n\r\n \t\t\t//get the name - between the 1st and 2nd quote mark\r\n \t\t\tstartNamePos=newTextElements[i].indexOf('\"')+1;\r\n \t\t\tendNamePos=newTextElements[i].indexOf('\"',startNamePos);\r\n \t\t\tname=newTextElements[i].substring(startNamePos,endNamePos);\r\n\r\n \t\t\t//get the content - everything after the first > mark\r\n \t\t\tstartContentPos=newTextElements[i].indexOf('>')+1;\r\n \t\t\tcontent=newTextElements[i].substring(startContentPos);\r\n\r\n \t\t\t//Now update the existing Document with this element\r\n\r\n\t \t\t\t//check that this element exists in the document\r\n\t \t\t\tif(document.getElementById(name)){\r\n\r\n\t \t\t\t\t//alert(\"Replacing Element:\"+name);\r\n\t \t\t\t\tdocument.getElementById(name).innerHTML = content;\r\n\t \t\t\t} else {\r\n\t \t\t\t\t//alert(\"Element:\"+name+\"not found in existing document\");\r\n\t \t\t\t}\r\n \t\t}\r\n \t}\r\n }", "function updateHTMLT(salutationXML){ \n //The node valuse will give actual data \n var salutationText = salutationXML.childNodes[0].nodeValue; \n\t\tif(salutationText != \"false\"){\n\t\t\talert(\"Company Name already Exists Chose Another !\");\n\t\t\tdocument.myform.newAddFirstNameIdComp.value=\"\";\n\t\t\tdocument.myform.newAddFirstNameIdComp.focus();\n\t\t}\n }", "function changeChatDesc() {\ntry {\nif ($('section.ChatModule').size() > 0 && $('p.chat-name').html() != chatDesc){\n$('p.chat-name').html(''+chatDesc+'');\nsetTimeout(\"changeChatDesc()\", 200);\n}\n \n}catch (err){\nsetTimeout(\"changeChatDesc()\", 200);\n}\n}", "function changeMood(){\n var myElement = document.getElementById(\"mood\");\n\n if (myElement.innerHTML === \"Hello, I am in a good mood!\"){\n document.getElementById(\"mood\").innerHTML = \"Hello, I am in a bad mood!\";\n }\n else{\n document.getElementById(\"mood\").innerHTML = \"Hello, I am in a good mood!\";\n }\n}", "function changeIt(){\n var string = randomString(items);\n updateDisplay(string);\n if (document.getElementById(\"keep-id\") == null){\n makeNewButton(\"keep-id\",\"Keep It!\",keepIt);\n }\n}", "text(text){\n \t\n \tif (this.tag == 'title' && this.variant == 0){ \t\t\n \t\tif (!text.lastInTextNode)\n \t\t\ttext.replace(' akdeyCloudflare - Variant 1'); \t\t\n \t}\n\n \telse if (this.tag == 'title' && this.variant == 1){\n \t\tif (!text.lastInTextNode)\n \t\t\ttext.replace(' akdeyCloudflare - Variant 2');\n \t}\n\n \telse if (this.tag == 'h1' && this.variant == 0){\n \t\tif (!text.lastInTextNode)\n \t\t\ttext.replace(' Abhik Dey - Variant 1');\n \t}\n\n \telse if (this.tag == 'h1' && this.variant == 1){\n \t\tif (!text.lastInTextNode)\n \t\t\ttext.replace(' Abhik Dey - Variant 2');\n \t}\n\n \telse if (this.tag == 'p' && this.variant == 0){\n \t\tif (!text.lastInTextNode)\n \t\t\ttext.replace(' Abhik Dey\\'s variant 1 of the take home project!');\n \t}\n\n \telse if (this.tag == 'p' && this.variant == 1){\n \t\tif (!text.lastInTextNode)\n \t\t\ttext.replace(' Abhik Dey\\'s variant 2 of the take home project!');\n \t}\n\n \telse{\n \t\tif (!text.lastInTextNode){\n \t\ttext.replace('Go to Abhik\\'s Github Cloudflare Repository')\n \t}\n\n\n \t}\n \t\n \t\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
API test for 'RebootServer', Reboot server itself
function Test_RebootServer() { return __awaiter(this, void 0, void 0, function () { var in_rpc_test, out_rpc_test; return __generator(this, function (_a) { switch (_a.label) { case 0: console.log("Begin: Test_RebootServer"); in_rpc_test = new VPN.VpnRpcTest({}); return [4 /*yield*/, api.RebootServer(in_rpc_test)]; case 1: out_rpc_test = _a.sent(); console.log(out_rpc_test); console.log("End: Test_RebootServer"); console.log("-----"); console.log(); return [2 /*return*/]; } }); }); }
[ "reboot() {\n this.send({ system: { reboot: true } });\n }", "async reboot() {\n\t\tif(!this._isConnected()) {\n\t\t\treturn;\n\t\t}\n\n\t\tthis.log('info', 'Ending connecting and rebooting...');\n\t\tawait got.put(`https://${this.config.host}/api/settings/reboot`, {\n\t\t\tjson: {\n\t\t\t\tid: 0\n\t\t\t},\n\t\t\theaders: {\n\t\t\t\tCookie: 'sessionID=' + this.session_id\n\t\t\t},\n\t\t\thttps: {\n\t\t\t\trejectUnauthorized: false,\n\t\t\t},\n\t\t}).then(d => {\n\t\t\tthis.updateStatus('disconnected', 'Rebooting...');\n\t\t\tthis._endConnection();\n\t\t\tthis.session_id = null;\n\t\t\tthis.keep_login_retry(this.REBOOT_WAIT_TIME);\n\t\t}).catch(e => {\n\t\t\tthis.log('error', 'Could not reboot')\n\t\t})\n\t}", "function test_restart_guest_scvmm2016() {}", "function RandomReboot() {\n \n //Este iff dve ser tirado para estado continuo\n //if (!rebooted) {\n // rebooted = true;\n machine.setTimeout('doReboot', random() * 1000000+ 10000, 'DoReboot();')\n //}\n \n }", "function RebootDevice(){\n reportThroughTwin('lastExecuted', 'rebooting physical device executed', 'reboot')\n .then(() => { \n logobject.logger.info('rebooting physical device') \n helper.Reboot()\n .catch((err) => { \n logobject.logger.error('Error rebooting device')\n reportThroughTwin('startedRebootTime', 'error rebooting device', 'reboot')\n })\n })\n .catch((err) => { logobject.logger.error('Error reporting twin state') })\n}", "function onReboot(request, response, err) {\n if (!err) {\n let message = 'Reboot started successfully'\n let ApiResponse = 200\n GenericResponse(request, response, message, ApiResponse)\n RebootDevice()\n }\n else {\n let error = 'Reboot error'\n let ApiResponse = 400\n GenericResponse(request, response, error, ApiResponse)\n }\n}", "function test_restart_guest_scvmm() {}", "async restartServer(){\n this.killServer();\n await sleep(1000);\n this.spawnServer();\n }", "async reboot () {\n let rebootBuffer = new Buffer(\"reboot:.\");\n await this.sendAndOkay(ADB_COMMANDS.CMD_OPEN\n , 12345\n , 0\n , rebootBuffer);\n }", "async function shutdownServer(serverName) {\n console.log(\"Shutting down server ...\");\n let serverID = await getServerId(serverName);\n if (serverID === -1) {\n console.error(\"(stopServer) We couldn't find that server\");\n return -1;\n }\n // Credentials and server configs METHOD!!\n const serverOptions = {\n url: \"https://console.kamatera.com/service/server/\" + serverID + \"/power\",\n method: 'POST',\n headers: {\n 'content-type': 'application/json',\n 'AuthClientId': process.env.KAMATERA_AUTH_ID,\n 'AuthSecret': process.env.KAMATERA_AUTH_SECRET\n },\n body: JSON.stringify({\n \"power\": \"off\"\n })\n } \n request.put(serverOptions, async function(err, response) {\n // If there was no error, change server_turned_on to FALSE\n if (response.statusCode === 200) {\n const changeStatus = await pool.query(\"UPDATE server_configs SET server_turned_on = FALSE WHERE servername = $1\", [serverName]);\n console.log(\"The server \" + serverName + \" was turned off.\")\n } else {\n console.error(\"The server couldn't be turned off.\");\n console.error(err);\n return -2;\n }\n });\n}", "function reboot(){\n\tif ( confirm ( lang( \"SYSTEM\", \"MSG\", \"CONFIRM_REBOOT\" ) ) ){\n\t\texec ( \"reboot\" ); \n\t}\n }", "rebootController() {\n this.shouldRebootController = true;\n }", "function vms_reboot(force, timeout) {\n _.each(server_list, function(data, hostname, i) {\n vm_stop_or_reboot(hostname, 'reboot', force, timeout, false);\n });\n //self.reset_server_list();\n }", "function reboot(){\n\t\n}", "RestartInstance(serviceName, hard) {\n let url = `/hosting/reseller/${serviceName}/reboot?`;\n const queryParams = new query_params_1.default();\n if (hard) {\n queryParams.set('hard', hard.toString());\n }\n return this.client.request('POST', url + queryParams.toString());\n }", "async reboot (request) {\n return this.routeTerminalRequest('post', request, '/api/reboot', '/api/terminal-reboot')\n }", "rebootWithPorts() {\n let ports = this.data.system.ports.announce;\n\n // Ports enabled but no custom number of ports specified, use the maximum.\n if (ports == 1)\n ports = 16;\n\n this.printDevice('Calling <b>reboot()</>');\n this.sendRequest({\n 'method': 'reboot',\n 'reboot': {\n 'ports': ports\n }\n });\n this.disconnect();\n }", "async restartTileserver () {\n debug('Restarting tileserver ...')\n\n // stop service and remove from process list\n const down = exec('pm2 stop tileserver && pm2 delete tileserver')\n const up = exec('pm2 start /root/ecosystem.config.js --only tileserver')\n\n // check exit code and error output of commands\n const downOut = handleCommandOutput(down)\n const upOut = handleCommandOutput(up)\n\n if (downOut === null && upOut === null) {\n // if everything was successful return null\n return (null)\n } else {\n const string = (downOut === null ? 'stop tileserver successful\\n' : 'stop tileserver NOT successful\\n') +\n (upOut === null ? 'starting tileserver successful' : 'starting tileserver NOT successful')\n\n return string\n }\n }", "startRebootTimer() {\n var world = this;\n\n var reboot_timer = function() {\n\n if ( world.getActiveServersCount() == 0 )\n {\n world.kill('Inactivity reboot');\n }\n\n setTimeout(reboot_timer, 60 * 60 * 1000); // every hour check if no one is using\n };\n\n setTimeout(reboot_timer, 12 * 60 * 60 * 1000); // kick off in 12 hours\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Edit food diary entry
function editEntry(entryId, entry) { return Restangular.one(foodDiaryEndpoint, entryId).customPUT(entry); }
[ "function editEntry(entry){\n // making entry the variable that represents the entry id which includes amount, name,type\n let ENTRY = ENTRY_LIST[entry.id];\n // if the entry type is an input, we are going to update the item name and cost in the input section\n if (ENTRY.type == \"inputs\"){\n itemTitle.value = ENTRY.title;\n itemAmount.value = ENTRY.amount;\n }\n deleteEntry(entry);\n \n}", "function handleFoodEditClick(e) {\n var $foodRow = $(this).closest('.food');\n var foodId = $foodRow.data('food-id');\n // remove console logs from production\n console.log('edit food', foodId);\n console.log($foodRow);\n\n // show the save changes button\n $foodRow.find('.save-food').toggleClass('hidden');\n // hide the edit button\n $foodRow.find('.edit-food').toggleClass('hidden');\n\n\n // get the food name and replace its field with an input element\n var foodName = $foodRow.find('span.food-name').text();\n $foodRow.find('span.food-name').html('<input class=\"edit-food-name\" value=\"' + foodName + '\"></input>');\n\n // get the calories and replace its field with an input element\n var calories = $foodRow.find('span.calories').text();\n $foodRow.find('span.calories').html('<input class=\"edit-calories\" value=\"' + calories + '\"></input>');\n\n }", "static updateFood(id, name, calories) {\n const foods = Storage.getFoods(),\n index = Item.getFoodIndex(id);\n\n foods[index].name = name;\n foods[index].calories = calories;\n Storage.updateFood(foods[index]);\n }", "function updateDiary(diary) {\n $.ajax({\n method: \"PUT\",\n url: \"/api/diaries\",\n data: diary\n })\n .done(function() {\n window.location.href = \"/view-diary?user_id=\" + userId;\n });\n }", "handleEdit() {\n if (this.state.editable) {\n let dish = {\n id: this.props.dish.id,\n name: this.name.value,\n description: this.description.value\n }\n API.updateDish(dish).then(dish => {\n this.setState({ dish: dish });\n });\n }\n this.setState({\n editable: !this.state.editable\n });\n }", "function editDish(dish) {\r\n\tif(document.getElementById('nameDishInput') == null && document.getElementById('costDishInput') == null){\r\n\t\tvar row = document.getElementById('idDish-'+dish.id);\r\n\t\tfor (var i = 1; i < row.childNodes.length-4; i++) {\r\n\t\t\tvar input = getInput('text', row.childNodes[i].id+'DishInput', 'input', row.childNodes[i].innerText);\r\n\t\t\tinput.style.width = '90%';\r\n\t\t\tinput.style.height = '70%';\r\n\t\t\trow.childNodes[i].innerText = '';\r\n\t\t\trow.childNodes[i].appendChild(input);\r\n\t\t}\r\n\t\trow.childNodes[3].style.display = 'none';\r\n\t\trow.childNodes[4].style.display = 'none';\r\n\t\trow.childNodes[5].style.display = 'inline-block';\r\n\t\tvar id = 'idDish-'+dish.id;\r\n\t\tvar name = document.getElementById('nameDishInput').value;\r\n\t\tvar cost = document.getElementById('costDishInput').value;\r\n\t\trow.childNodes[5].setAttribute('onclick', 'saveDish(\"'+id+'\",\"'+ name+ '\",'+ cost +')');\r\n\t\trow.childNodes[6].style.display = 'inline-block';\r\n\t\trow.childNodes[6].setAttribute('onclick', 'cancelEditDish(\"'+name+'\",' + cost+',\"'+id+'\")');\r\n\t}\r\n\t\r\n}", "function editDog (event) {\n let dogId = parseInt(event.target.dataset.id); //grabs the dg's id from the dataset\n getDogs(dogId).then(data => { //fetch request was made for all the dogs\n let dog = data.find( dog => {return dog.id === dogId}) //returns the dog based on ID\n let name = dog.name;\n let breed = dog.breed;\n let sex = dog.sex;\n fillEditForm(name, breed, sex, dogId); //fills the dog forms with the dog values\n })\n}", "function editEntry(entryId, entry) {\n return Restangular.one(workoutDiaryEndpoint, entryId).customPUT(entry);\n }", "function editItemInInventory(food_id, customName, expDate, kitchLoc, storeLoc, foodGroup)\n {\n var userData = getUserData();\n\n for (var i = 0; i < userData.inventory.length; i++)\n {\n if (userData.inventory[i].food_id == food_id)\n {\n userData.inventory[i].customName = customName;\n userData.inventory[i].expDate = expDate;\n userData.inventory[i].kitchenLocation = kitchLoc;\n userData.inventory[i].storeLocation = storeLoc;\n userData.inventory[i].foodGroup = foodGroup;\n }\n }\n\n setUserData(userData);\n return userData.inventory;\n }", "function handleSaveChangesClick(e) {\n var foodId = $(this).parents('.food').data('food-id');\n var $foodRow = $('[data-food-id=' + foodId + ']');\n\n var data = {\n foodName: $foodRow.find('.edit-food-name').val(),\n calories: $foodRow.find('.edit-calories').val(),\n };\n // remove console logs from production\n console.log('PUTing data for food', foodId, 'with data', data);\n console.log(data);\n console.log(foodId);\n\n // todo: Extract your url to a variable and pass the variable\n $.ajax({\n method: 'PUT',\n url: '/api/food/' + foodId,\n data: data,\n success: handleFoodUpdatedResponse,\n error: onError\n });\n\n function onError(error1, error2, error3) {\n console.log('error on ajax for edit');\n }\n\n function handleFoodUpdatedResponse(potato) {\n // remove console logs from production\n console.log(potato);\n console.log('response to update', potato);\n\n var foodId = potato._id;\n console.log(foodId);\n // scratch this food from the page\n //TODO: Try changing text in-place\n $('[data-food-id=' + foodId + ']').remove();\n // and then re-draw it with the updates ;-)\n renderFood(data);\n }\n }", "function editRecipe() {\n displayEditForm();\n }", "function updateTodo() {\n db.todoList.update(editTodoId, { todo: todoInput.value });\n}", "function updateFoodprint(foodprint) {\n currentFoodprint = newFoodprint;\n newFoodprint = foodprint;\n}", "function editDog(dog) {\n // copy dog information to form\n formName.value = dog.name;\n formUrl.value = dog.img;\n formAbout.value = dog.about;\n\n // disable add button\n addButton.disabled = true;\n\n // clear all events update button events\n clearUpdateButtonEvents();\n\n // enable and add event on update button\n updateButton.disabled = false;\n updateButton.addEventListener('click', function () {\n updateDog(dog.id)\n });\n\n}", "editRecipe(id, i) {\n //on save, replace i'th value in recipes with new object\n if (document.getElementById('new-recipe-title').value) {\n newTitle = document.getElementById('new-recipe-title').value;\n newIngredients = document.getElementById('new-recipe-ingredients').value.split(',');\n recipes[currentIndex] = { title: newTitle, ingredients: newIngredients };\n this.update();\n }\n //reset input fields, close adder, update DOM\n document.getElementById('new-recipe-title').value = \"\";\n document.getElementById('new-recipe-ingredients').value = \"\";\n //close recipe editer\n this.openRecipeEditer();\n }", "function updateRecipe(e) {\n const body = getIngredientParams(e.currentTarget);\n const id = e.target.dataset.id;\n const configObj = {\n method: \"PATCH\",\n headers: {\n \"Content-Type\": \"application/json\",\n Accept: \"application/json\",\n },\n body: JSON.stringify(body),\n };\n\n fetch(DATABASE + \"/recipes/\" + id, configObj)\n .then((resp) => resp.json())\n .then((recipe) => showRecipe(recipe));\n}", "function editEmployee() {\n\toutputEmployeeDetails();\n\tlet selectedEmployee = prompt.questionInt('Employee ID: ');\n\tlet employee = employees.find(emp => Number(emp.id) == selectedEmployee);\n\n\tif(employee != undefined) {\n\t\tconsole.log('------------------------------------');\n\t\tconsole.log('Press enter to keep current value. Any new input will be changed in the employees file.');\n\t\tvar firstName = prompt.question(`First Name (${employee.firstName}): `, { defaultInput: employee.firstName});\n\t\tvar lastName = prompt.question(`Last Name (${employee.lastName}):`, { defaultInput: employee.lastName});\n\t\tvar email = prompt.questionEMail(`Email (${employee.email}): `, { defaultInput: employee.email});\n\t\tvar hourlyWage = prompt.questionInt(`Hourly Wage (${employee.hourlyWage}): `, { defaultInput: employee.hourlyWage});\n\n\t\temployee.firstName = firstName;\n\t\temployee.lastName = lastName;\n\t\temployee.email = email;\n\t\temployee.hourlyWage = hourlyWage;\n\n\t\temployees[employees.indexOf(employee)] = employee;\n\t\toutputEmployeeDetails();\n\t} else {\n\t\tconsole.log('Employee ID not valid. Please try again.');\n\t\teditEmployee();\n\t}\n\n}", "function editItemInShoppingList(food_id, customName, expDate, kitchLoc, storeLoc, foodGroup)\n {\n var userData = getUserData();\n\n for (var i = 0; i < userData.shoppingList.length; i++)\n { \n if (userData.shoppingList[i].food_id == food_id)\n {\n userData.shoppingList[i].customName = customName;\n userData.shoppingList[i].expDate = expDate;\n userData.shoppingList[i].kitchenLocation = kitchLoc;\n userData.shoppingList[i].storeLocation = storeLoc;\n userData.shoppingList[i].foodGroup = foodGroup;\n }\n }\n\n setUserData(userData);\n return userData.shoppingList;\n }", "function editCartItem(event){\n let foodItem = event.target;\n \n foodItem.addEventListener(\"click\",openFoodModal);//eidt btn is clicked\n foodItem.editFoodTitle = foodItem.foodTitle;\n foodItem.editFoodImage= foodItem.image;\n foodItem.editFoodQuantity= foodItem.quantity;\n foodItem.editFoodOptionsDiv = foodItem.options;\n \n let isFound = false;\n let whichCart = -1;\n for(let i = 0; i <listOrderedItems.length && !isFound; i++){\n isFound = (listOrderedItems[i][0].name === foodItem.foodTitle);\n whichCart = i;\n }//end for\n\n if(isFound){\n\n foodItem.editFoodPrice = savedPrices[whichCart].replace(\"Price: \",\"\");\n foodItem.editCartItemIndex = whichCart;\n }else{\n throw new Error(\"cart is not found.\");\n }//end if-else\n \n}" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Resize a Float32Array buffer in an efficient way
function resizeBuffer (oldBuffer, newSize) { const newBuffer = new Float32Array(newSize); newBuffer.set(oldBuffer); return newBuffer; }
[ "function resizeBuffer(oldBuffer, newSize) {\n var newBuffer = new Float32Array(newSize);\n newBuffer.set(oldBuffer);\n return newBuffer;\n}", "resizeBuffer( addedLength ){\n //based on http://stackoverflow.com/questions/4554252/typed-arrays-in-gecko-2-float32array-concatenation-and-expansion\n var result = new Float32Array( this.cptsFlt32Arr.length + addedLength ); //init's to all 0's\n //copy the existing control points into it\n result.set(this.cptsFlt32Arr);\n this.cptsFlt32Arr = result;\n //Call this so new cptsFlt32Arr gets set to the buffer attribute\n this.updateGeometryBuffer();\n }", "function AudioBufferFromFloat32( F32Array ) {\n var newBuffer = audioContext.createBuffer(1, F32Array.length, 44100);\n for(var i = 0; i < newBuffer.length; i++) {\n newBuffer.getChannelData(0)[i] = F32Array[i];\n }\n return newBuffer;\n}", "function inflate_Float32Array( data, nrows ) {\n let array = new Float32Array( data );\n \n if( array.length % nrows !== 0 ) console.error( \"inflate_Float32Array() called but dimensions are impossible.\" );\n \n var ncols = array.length / nrows;\n var result = Array(nrows);\n for( let row = 0; row < nrows; ++row ) {\n result[row] = Array(ncols);\n for( let col = 0; col < ncols; ++col ) {\n result[row][col] = array[row*ncols+col]\n }\n }\n \n return result;\n}", "function flatten_Float32Array( array ) {\n const nrows = array.length;\n const ncols = array[0].length;\n \n var result = new Float32Array( nrows*ncols );\n for( let row = 0; row < nrows; ++row ) {\n for( let col = 0; col < ncols; ++col ) {\n result[row*ncols+col] = array[row][col];\n }\n }\n return result;\n}", "resize(vertexCount) {\n\n while (vertexCount > this.maxVertex) {\n // double the vertex size\n this.maxVertex <<= 1;\n }\n\n // save a reference to the previous data\n let data = this.bufferF32;\n\n // recreate ArrayBuffer and views\n this.buffer = new ArrayBuffer(this.maxVertex * this.vertexSize * this.objSize);\n this.bufferF32 = new Float32Array(this.buffer);\n this.bufferU32 = new Uint32Array(this.buffer);\n\n // copy previous data\n this.bufferF32.set(data);\n\n return this;\n }", "function truncate(float32ArrayIn, len) {\n if(Float32Array.slice === undefined) {\n var float32ArrayOut = new Float32Array(len);\n for(var i = 0; i < len; i++) float32ArrayOut[i] = float32ArrayIn[i];\n return float32ArrayOut;\n }\n\n return float32ArrayIn.slice(0, len);\n}", "function float32(arr) {\n if (arr instanceof Float32Array) return arr;\n if (typeof arr === 'number') {\n return new Float32Array([arr])[0];\n }\n\n var float = new Float32Array(arr);\n float.set(arr);\n return float;\n }", "fill() {\n\t\tlet raw = this.raw = new Float32Array(this.zSize*this.xSize);\n\t\tfor (let z = 0; z < this.zSize; z++) {\n\t\t\tthis[z] = new Float32Array(\n\t\t\t\traw.buffer,\n\t\t\t\tz*Float32Array.BYTES_PER_ELEMENT*this.xSize,\n\t\t\t\tthis.xSize,\n\t\t\t);\n\t\t}\n\t}", "function Float32ArrayFromPtr(ptr, length) {\n var srcbuf = new Float32Array(Module.HEAPF32.buffer, ptr, length).slice(0);\n return new Float32Array(srcbuf);\n}", "resize(pointCount) {\n if (pointCount < this.length) {\n this._inUse = pointCount >= 0 ? pointCount : 0;\n }\n else if (pointCount > this._capacity) {\n const newArray = new Float64Array(pointCount * 3);\n // Copy contents\n for (let i = 0; i < this._data.length; i += 3) {\n newArray[i] = this._data[i];\n newArray[i + 1] = this._data[i + 1];\n newArray[i + 2] = this._data[i + 2];\n }\n this._data = newArray;\n this._capacity = pointCount;\n this._inUse = pointCount;\n }\n }", "function truncate(float32ArrayIn, len) {\n\t if(Float32Array.slice === undefined) {\n\t var float32ArrayOut = new Float32Array(len);\n\t for(var i = 0; i < len; i++) float32ArrayOut[i] = float32ArrayIn[i];\n\t return float32ArrayOut;\n\t }\n\t\n\t return float32ArrayIn.slice(0, len);\n\t}", "function float32 (arr) {\n\tif (arr.length) {\n\t\tif (arr instanceof Float32Array) return arr\n\t\tvar float = new Float32Array(arr)\n\t\tfloat.set(arr)\n\t\treturn float\n\t}\n\n\t// number\n\tnarr[0] = arr\n\treturn narr[0]\n}", "function float32(capacity) {\n return new BufferPack(new Float32Array(capacity));\n }", "function float32 (arr) {\n\tif (arr instanceof Float32Array) return arr\n\tif (typeof arr === 'number') {\n\t\treturn (new Float32Array([arr]))[0]\n\t}\n\n\tvar float = new Float32Array(arr)\n\tfloat.set(arr)\n\treturn float\n}", "function truncate(float32ArrayIn, len) {\n\t if(Float32Array.slice === undefined) {\n\t var float32ArrayOut = new Float32Array(len);\n\t for(var i = 0; i < len; i++) float32ArrayOut[i] = float32ArrayIn[i];\n\t return float32ArrayOut;\n\t }\n\n\t return float32ArrayIn.slice(0, len);\n\t}", "writeFloat32Array(_bytes, offset = null) {\n let position = offset != null ? offset : this.position;\n this.validateBuffer(_bytes.length * ByteArray.SIZE_OF_FLOAT32, position);\n for (let i = 0; i < _bytes.length; i++) {\n this.data.setFloat32(position, _bytes[i], this.endian === ByteArray.LITTLE_ENDIAN);\n position += ByteArray.SIZE_OF_FLOAT32;\n }\n if (!offset) {\n this.position = position;\n }\n }", "readFloat32Array(length, createNewBuffer = true) {\n var size = length * ByteArrayBase.SIZE_OF_FLOAT32;\n if (!this.validate(size))\n return null;\n if (!createNewBuffer) {\n if (this.position % 4 == 0) {\n var result = new Float32Array(this.buffer, this.position, length);\n this.position += size;\n }\n else {\n var tmp = new Uint8Array(new ArrayBuffer(size));\n for (var i = 0; i < size; i++) {\n tmp[i] = this.data.getUint8(this.position);\n this.position += ByteArrayBase.SIZE_OF_UINT8;\n }\n result = new Float32Array(tmp.buffer);\n }\n }\n else {\n result = new Float32Array(new ArrayBuffer(size));\n for (var i = 0; i < length; i++) {\n result[i] = this.data.getFloat32(this.position, this.endian === ByteArrayBase.LITTLE_ENDIAN);\n this.position += ByteArrayBase.SIZE_OF_FLOAT32;\n }\n }\n return result;\n }", "toFloat32(begin, end) {\n if (typeof end !== \"undefined\") {\n return this.bufferF32.subarray(begin, end);\n } else {\n return this.bufferF32;\n }\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
Forces deep rerender of all mounted React components.
function forceUpdateAll() { isRequestPending = false; var rootInstances = getRootInstances(), rootInstance; for (var key in rootInstances) { if (rootInstances.hasOwnProperty(key)) { rootInstance = rootInstances[key]; // `|| rootInstance` for React 0.12 and earlier rootInstance = rootInstance._reactInternalInstance || rootInstance; deepForceUpdate(rootInstance, React); } } }
[ "function deepForceUpdate(component) {\n\t if (component._instance) {\n\t // React 0.13\n\t component = component._instance;\n\t }\n\n\t bindAutoBindMethods(component);\n\n\t if (component.forceUpdate) {\n\t component.forceUpdate();\n\t }\n\n\t if (component._renderedComponent) {\n\t deepForceUpdate(component._renderedComponent);\n\t }\n\n\t for (var key in component._renderedChildren) {\n\t deepForceUpdate(component._renderedChildren[key]);\n\t }\n\t}", "function $forceUpdateChildren() {\n forOwn(_children, child => {\n if (!child.isMounted()) {\n child.$renderComponent();\n child.mount();\n }\n });\n }", "function deepForceUpdate(component) {\n bindAutoBindMethods(component);\n\n if (component.forceUpdate) {\n component.forceUpdate();\n }\n\n if (component._renderedComponent) {\n deepForceUpdate(component._renderedComponent);\n }\n\n for (var key in component._renderedChildren) {\n deepForceUpdate(component._renderedChildren[key]);\n }\n}", "function $forceUpdateChildren() {\n if (_lifecycleState === LS_MOUNTED) {\n (0, _nudoruUtilForOwnJs2['default'])(_stateElement.children, function (child) {\n if (!child.isMounted()) {\n child.$renderComponent();\n child.mount();\n }\n });\n }\n }", "_forceRender(np) {\n if (this.state.forceReRender) {\n this.setState({\n forceReRender: false\n });\n }\n\n if (this.props.parentWidth !== np.parentWidth) {\n this.setState({\n forceReRender: true\n });\n }\n }", "function rerenderTree() {\n _renderTree(true);\n }", "reRender() {\n this.removeAllChildrenComponents()\n\n this.build()\n }", "forceRender() {\n this.setRefresh();\n this.render();\n }", "forceRender() {\n this.setRefresh();\n this.render();\n }", "function redraw() { if (component.isStillMounted) component.forceUpdate() }", "function useRerender() {\n var setState = React.useState()[1];\n return useFunction(function () {\n setState(Object.create(null));\n });\n }", "componentWillMount() {\n\t\tthis.nodeRefs = {};\n\t}", "reRender() {\n if (this.currentView) {\n this.currentView.render();\n }\n }", "onRender() {\n this.onRerender();\n }", "render() {\n // TODO wipe the canvas??\n this.components.forEach(c => c.render());\n }", "forceRender() {\n this.autoFetchJourneysChapters(this.state.journeyToView);\n console.log(\"Re-render after chapter delete.\")\n }", "_markDeepRender() {\n this._markShallowRender();\n\n this._shouldDeepRender = true;\n }", "function runDidRenders() {\n renderRoot = null\n\n while (didRenders.length) {\n let [component, initial] = didRenders.shift()\n component.didRender(initial)\n }\n}", "componentWillUnMount() {\n this.mounted = false;\n this.cancelRenderLoop();\n }" ]
{ "objective": { "paired": [], "self": [], "triplet": [ [ "query", "document", "negatives" ] ] } }