The captcha solver made by and for japanese high school girls!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1 line
870 KiB

2 years ago
{"version":3,"file":"main-es5.js","sources":["../node_modules/regenerator-runtime/runtime.js","../node_modules/rollup-plugin-node-polyfills/polyfills/global.js","../node_modules/rollup-plugin-node-polyfills/polyfills/buffer-es6.js","../node_modules/svelte/internal/index.mjs","../node_modules/svelte/store/index.mjs","../node_modules/crc-32/crc32.js","../node_modules/peek-readable/lib/EndOfFileStream.js","../node_modules/strtok3/lib/AbstractTokenizer.js","../node_modules/strtok3/lib/BufferTokenizer.js","../node_modules/strtok3/lib/core.js","../node_modules/token-types/lib/index.js","../node_modules/file-type/util.js","../node_modules/file-type/core.js","../node_modules/matroska/lib/schema.js","../node_modules/ebml-block/lib/vint.js","../node_modules/ebml-block/lib/buffer-reader.js","../node_modules/jpeg-js/lib/encoder.js","../node_modules/jpeg-js/lib/decoder.js","../node_modules/jpeg-js/index.js","../src/Components/Dialog.svelte","../src/Components/Tag.svelte","../src/Components/Tabs.svelte","../src/Components/TabList.svelte","../src/Components/Tab.svelte","../src/Components/TabPanel.svelte","../src/Components/Embedding.svelte","../src/Components/HydrusSearch.svelte","../src/Components/App.svelte","../src/Components/ScrollHighlighter.svelte","../src/Components/PostOptions.svelte","../src/Components/SettingsButton.svelte","../src/Components/Embeddings.svelte","../src/Components/EyeButton.svelte","../src/Components/NotificationsHandler.svelte","../node_modules/linkifyjs/dist/linkify.module.js","../node_modules/linkify-string/dist/linkify-string.module.js","../src/Components/TextEmbeddings.svelte"],"sourcesContent":["/**\n * Copyright (c) 2014-present, Facebook, Inc.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n */\n\nvar runtime = (function (exports) {\n \"use strict\";\n\n var Op = Object.prototype;\n var hasOwn = Op.hasOwnProperty;\n var undefined; // More compressible than void 0.\n var $Symbol = typeof Symbol === \"function\" ? Symbol : {};\n var iteratorSymbol = $Symbol.iterator || \"@@iterator\";\n var asyncIteratorSymbol = $Symbol.asyncIterator || \"@@asyncIterator\";\n var toStringTagSymbol = $Symbol.toStringTag || \"@@toStringTag\";\n\n function define(obj, key, value) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n return obj[key];\n }\n try {\n // IE 8 has a broken Object.defineProperty that only works on DOM objects.\n define({}, \"\");\n } catch (err) {\n define = function(obj, key, value) {\n return obj[key] = value;\n };\n }\n\n function wrap(innerFn, outerFn, self, tryLocsList) {\n // If outerFn provided and outerFn.prototype is a Generator, then outerFn.prototype instanceof Generator.\n var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator;\n var generator = Object.create(protoGenerator.prototype);\n var context = new Context(tryLocsList || []);\n\n // The ._invoke method unifies the implementations of the .next,\n // .throw, and .return methods.\n generator._invoke = makeInvokeMethod(innerFn, self, context);\n\n return generator;\n }\n exports.wrap = wrap;\n\n // Try/catch helper to minimize deoptimizations. Returns a completion\n // record like context.tryEntries[i].completion. This interface could\n // have been (and was previously) designed to take a closure to be\n // invoked without arguments, but in all the cases we care about we\n // already have an existing method we want to call, so there's no need\n // to create a new function object. We can even get away with assuming\n // the method takes exactly one argument, since that happens to be true\n // in every case, so we don't have to touch the arguments object. The\n // only additional allocation required is the completion record, which\n // has a stable shape and so hopefully should be cheap to allocate.\n function tryCatch(fn, obj, arg) {\n try {\n