A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Closes #49

+62 -31
+24 -12
src/Js/Workers/Authentication/local.js
··· 56 56 57 57 req.onsuccess = _ => { 58 58 if (req.result) { 59 - const blob = req.result; 60 - const reader = new FileReader(); 61 - 62 - reader.addEventListener("loadend", e => { 63 - self.postMessage({ action: "GET_SUCCESS", data: e.srcElement.result }); 64 - }); 65 - 66 - reader.readAsText(blob); 67 - 59 + self.postMessage({ action: "GET_SUCCESS", data: arrayBufToString(req.result) }); 68 60 } else { 69 61 self.postMessage({ action: "GET_SUCCESS", data: null }); 70 - 71 62 } 72 63 }; 73 64 ··· 82 73 // Set 83 74 84 75 function set(json) { 85 - const blob = new Blob([json], { type: "application/json" }); 76 + const buf = stringToArrayBuf(json); 86 77 const tra = db.transaction([KEY], "readwrite"); 87 - const req = tra.objectStore(KEY).put(blob, KEY); 78 + const req = tra.objectStore(KEY).put(buf, KEY); 88 79 89 80 req.onsuccess = () => self.postMessage({ action: "SET_SUCCESS" }); 90 81 req.onerror = () => self.postMessage({ action: "SET_FAILURE" }); 91 82 } 83 + 84 + 85 + 86 + // 87 + // 🖍 Utensils 88 + 89 + function arrayBufToString(buf) { 90 + return String.fromCharCode.apply(null, new Uint16Array(buf)); 91 + } 92 + 93 + 94 + function stringToArrayBuf(str) { 95 + const buf = new ArrayBuffer(str.length * 2); 96 + const bufView = new Uint16Array(buf); 97 + 98 + for (let i = 0; i < str.length; i++) { 99 + bufView[i] = str.charCodeAt(i); 100 + } 101 + 102 + return buf; 103 + }
src/Static/Favicons/android-chrome-192x192.png

This is a binary file and will not be displayed.

src/Static/Favicons/android-chrome-512x512.png

This is a binary file and will not be displayed.

src/Static/Favicons/apple-touch-icon.png

This is a binary file and will not be displayed.

+2 -2
src/Static/Favicons/browserconfig.xml
··· 2 2 <browserconfig> 3 3 <msapplication> 4 4 <tile> 5 - <square150x150logo src="/favicons/mstile-150x150.png?v=yyavPQyQGx"/> 6 - <TileColor>#030409</TileColor> 5 + <square150x150logo src="/favicons/mstile-150x150.png?v=QEMQNvk7E3"/> 6 + <TileColor>#080108</TileColor> 7 7 </tile> 8 8 </msapplication> 9 9 </browserconfig>
src/Static/Favicons/favicon-16x16.png

This is a binary file and will not be displayed.

src/Static/Favicons/favicon-32x32.png

This is a binary file and will not be displayed.

src/Static/Favicons/favicon.ico

This is a binary file and will not be displayed.

+2 -2
src/Static/Favicons/manifest.json
··· 2 2 "name": "", 3 3 "icons": [ 4 4 { 5 - "src": "/favicons/android-chrome-192x192.png?v=yyavPQyQGx", 5 + "src": "/favicons/android-chrome-192x192.png?v=QEMQNvk7E3", 6 6 "sizes": "192x192", 7 7 "type": "image/png" 8 8 }, 9 9 { 10 - "src": "/favicons/android-chrome-512x512.png?v=yyavPQyQGx", 10 + "src": "/favicons/android-chrome-512x512.png?v=QEMQNvk7E3", 11 11 "sizes": "512x512", 12 12 "type": "image/png" 13 13 }
src/Static/Favicons/mstile-150x150.png

This is a binary file and will not be displayed.

+1 -1
src/Static/Favicons/safari-pinned-tab.svg
··· 1 - <svg version="1" xmlns="http://www.w3.org/2000/svg" width="1365.333" height="1365.333" viewBox="0 0 1024.000000 1024.000000"><path d="M489 7.7C305.7 15.8 140.5 124.2 59 289.5 6.1 396.9-6.8 519.1 22.6 636.1 36 689.7 59.3 742.7 89.5 788.5 134.8 857.2 194 912.6 265 952.7c64.4 36.4 133.9 57.2 211.4 63.4 19.2 1.5 70 .6 89.5-1.6 138.9-15.6 261.7-84.6 347.1-195 5.1-6.6 14.3-19.7 20.5-29 11.1-16.6 25.1-40.2 24.4-40.9-.2-.2-4.4 1-9.4 2.6-36.6 12.3-81.3 12.9-113.2 1.7-51.8-18.3-85.5-66.1-97.3-137.9-10.1-61.5.5-141.4 27.1-204.4 31.4-74.4 82.4-124.7 144.4-142.6 10.6-3.1 31.3-7 37.1-7 1.9 0 3.4-.4 3.4-1 0-1.1-8.6-15.5-16-26.6-41.5-62.7-97.3-116.3-161.8-155.2-17.4-10.6-55.5-29.4-73.7-36.6C631 16.3 560.5 4.5 489 7.7zm106.2 254.8c37.3 4.9 66.4 22.5 82.2 49.6 3.4 5.9 8.2 19.1 9.1 24.9l.6 4.5-12.6 3.3c-7 1.8-12.8 3.2-12.9 3-.1-.2-1.2-3.7-2.5-7.8-6.3-20.5-18.9-35.5-37.6-44.5-34.5-16.9-91.5-12.3-124.9 9.9-23.9 15.9-37.7 40.4-39.3 69.8-2 36 13.9 60.2 55.7 84.8 6.3 3.7 24.1 13.3 39.5 21.2 38.1 19.7 51.2 27.8 67.1 41.6 19.9 17.2 32.8 38.6 38.1 63.2 2.8 13.1 2.5 45.7-.6 60-9.6 44.8-34.7 77.7-74.7 98.1-12.1 6.1-30.4 12.1-46 15.1-15.9 3-49 3.2-62.9.5-38.1-7.5-67.7-26.5-87.6-56-7.1-10.6-12.7-22.2-16.3-33.5-1.4-4.6-2.6-8.7-2.6-9.2 0-.8 24.9-9.5 25.4-8.9.1.2 1.3 3.5 2.5 7.4 7.2 22.6 21 42.4 38.4 55.6 22.2 16.8 52.2 24.7 83.5 22 47.6-4.2 84-26.2 102.7-62.3 9.6-18.4 13-33.6 13-57.3-.1-14.2-.4-18.3-2.2-25.2-7.5-28.3-26.2-49.9-61.3-71.1-6.3-3.8-21.6-12.2-34-18.7-46.3-24.2-63.6-35.6-78.4-51.6-18.1-19.5-25.3-37.5-26.3-64.9-.4-13.3-.2-17 1.7-26 8.1-39.3 33.2-69 73-86.1 25.3-10.9 60.3-15.4 90.2-11.4zm-230.7 8.7c-.3 1.3-6.1 34.2-13 73.3-6.8 39-19.2 109.5-27.4 156.5-8.3 47-21.6 122.8-29.6 168.3-8 45.6-14.5 83.2-14.5 83.8 0 .5-5.5.9-13 .9-7.1 0-13-.3-13-.6s9.7-55.7 21.5-123.2C313.5 414 316.7 395.5 327 337c5.5-31.6 10.5-59.9 11.1-62.8l1-5.2h13c12.9 0 12.9 0 12.4 2.2z"/><path d="M947.5 286.7c-18.8 1.7-41.1 8.1-57.9 16.5-17.5 8.7-28.4 16.6-43.9 31.7-43.9 42.6-73.4 112.5-82.3 195.1-2.2 20.5-2.3 57.6 0 75.8 7.1 58.3 29 97.5 65.6 117.5 29.2 16 73.7 18 113.5 5.1 9.1-3 29.2-12.6 32.3-15.4 4.7-4.4 20.2-48.9 27.7-79.4 10.1-41.2 14.5-77.9 14.5-121.1 0-76.2-15.8-147.5-47.9-215.8l-5-10.7-6.3.2c-3.5.1-8.1.3-10.3.5z"/></svg> 1 + <svg version="1" xmlns="http://www.w3.org/2000/svg" width="1365.333" height="1365.333" viewBox="0 0 1024.000000 1024.000000"><path d="M485 .6c-92.3 6.2-172.4 31.7-246 78.2C111.5 159.6 25.5 292.3 5.1 440 1.2 468.4.5 479 .6 512.5c.1 44.2 3.6 76.3 12.9 115.9C57 814.3 202 961.7 387 1008c42.8 10.7 78.8 15 125.4 15 76.1 0 145.4-15.2 214.6-47 85.7-39.3 164.4-108 215.4-187.9 4.3-6.7 4.6-7.3 2.4-6.8-24.9 5.8-27.5 6.1-53.3 6.1-22.7.1-26-.1-35.4-2.2-43.5-9.8-74.3-35.1-95.6-78.7-24.1-49.3-30.2-115.4-17.4-188.5 6.8-39.1 22.4-84.5 39.5-115.5 41.6-74.9 100.5-115.5 176.2-121.1 5-.3 9.2-.9 9.2-1.2 0-2.9-23.4-42.2-34.8-58.6C845.3 96 713.4 18.1 562 2.5 547.5 1 497.6-.2 485 .6zm121 283.7c33.3 7.1 57.4 23 71.9 47.4 3.9 6.7 9.6 22 10.3 27.7l.3 2.9-12 3.4c-6.6 1.8-12.4 3.2-12.8 3-.4-.1-2.1-4.3-3.8-9.2-7.3-21.8-22.2-37.8-42.9-46.1-13-5.3-20.4-6.6-40.1-7.1-20.3-.6-30.3.3-45.3 4.1-24 6.1-42.3 16.9-55.7 32.9-19.2 22.9-25.8 58.7-15.9 85.9 3.8 10.4 9.7 19.5 18.5 28.4 13.3 13.5 28.4 23.1 67 42.9 28.2 14.5 47.9 25.6 57.5 32.3 30.7 21.7 46.6 42.8 54.8 73.1 2.4 9 2.6 11 2.6 32.1 0 19.7-.2 23.8-2.2 33-4.7 21.4-13.3 41.5-24.4 56.5-19.3 26.2-50 46.2-84.5 55-17.7 4.5-30.6 5.8-52.8 5.2-21.6-.6-32.3-2.4-48.5-8.2-38-13.8-67.5-44.1-80.4-82.7-4-11.7-4.3-11.2 8.2-15.2 15.4-4.9 13.9-5.2 16.8 3.4 18.3 54.9 67.1 84.5 128.2 78 70.6-7.7 116.1-58.6 112.9-126.4-1.8-37.9-20.3-64.8-62.5-90.9-5.1-3.2-18.4-10.5-29.5-16.4-46-24.2-62.5-34.2-77.2-47.1-32-27.8-43.4-65.9-32.5-108.2 12.7-49.6 58.9-85.1 119.5-92 14.2-1.6 41.4-.4 54.5 2.3zm-244 5.1c0 .6-84.9 484.6-85.6 487.9l-.6 2.7h-26l.6-2.7c.3-1.6 19.5-110.6 42.6-242.3 23.1-131.7 42.3-241 42.6-242.8l.6-3.2h12.9c7.1 0 12.9.2 12.9.4z"/><path d="M951.5 307.1c-21 2-38.1 7.1-58 16.9-16.3 8.1-28.2 16.4-41.7 29-53.4 49.8-87.8 144.1-87.8 240.3 0 79 24.2 133.2 70 156.6 19.7 10.1 38.1 13.7 65.5 12.8 22.8-.8 42.3-5 61.7-13.5 5.7-2.5 6-3 14.4-21.2 25.8-56.2 40.5-111.3 45.9-172.7 1.7-19.4 2-62.9.5-81.9-4.1-52.4-15.4-101.8-34.1-148.9-3.2-8.3-6.3-15.7-6.9-16.5-1.1-1.8-15.7-2.3-29.5-.9z"/></svg>
+7 -7
src/Static/Html/Proxy.html
··· 8 8 <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no" /> 9 9 10 10 <!-- Favicons & Mobile --> 11 - <link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png?v=Nm5Kn9B73x" /> 12 - <link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png?v=Nm5Kn9B73x" /> 13 - <link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png?v=Nm5Kn9B73x" /> 14 - <link rel="manifest" href="/favicons/manifest.json?v=Nm5Kn9B73x" /> 15 - <link rel="mask-icon" href="/favicons/safari-pinned-tab.svg?v=Nm5Kn9B73x" color="#a43551" /> 16 - <link rel="shortcut icon" href="/favicons/favicon.ico?v=Nm5Kn9B73x" /> 17 - <meta name="msapplication-config" content="/favicons/browserconfig.xml?v=Nm5Kn9B73x" /> 11 + <link rel="apple-touch-icon" sizes="180x180" href="/favicons/apple-touch-icon.png?v=QEMQNvk7E3" /> 12 + <link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png?v=QEMQNvk7E3" /> 13 + <link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png?v=QEMQNvk7E3" /> 14 + <link rel="manifest" href="/favicons/manifest.json?v=QEMQNvk7E3" /> 15 + <link rel="mask-icon" href="/favicons/safari-pinned-tab.svg?v=QEMQNvk7E3" color="#a43551" /> 16 + <link rel="shortcut icon" href="/favicons/favicon.ico?v=QEMQNvk7E3" /> 17 + <meta name="msapplication-config" content="/favicons/browserconfig.xml?v=QEMQNvk7E3" /> 18 18 <meta name="theme-color" content="#a43551" /> 19 19 <meta name="apple-mobile-web-app-capable" content="yes" /> 20 20 <meta name="apple-mobile-web-app-status-bar-style" content="black" />
+3 -3
src/Static/Images/icon-dark.svg
··· 4 4 <title>Icon</title> 5 5 <desc>Created with Sketch.</desc> 6 6 <defs> 7 - <circle id="path-1" cx="505.23348" cy="505.23348" r="505.23348"></circle> 7 + <circle id="path-1" cx="511.730053" cy="511.730053" r="511.730053"></circle> 8 8 </defs> 9 9 <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> 10 10 <g id="Icon"> 11 - <g id="AT" transform="translate(7.000000, 7.000000)"> 11 + <g id="AT"> 12 12 <mask id="mask-2" fill="white"> 13 13 <use xlink:href="#path-1"></use> 14 14 </mask> 15 15 <use id="Mask" fill="#030409" xlink:href="#path-1"></use> 16 - <path d="M247,746.704 L272.604,746.704 L357.72,262.304 L332.116,262.304 L247,746.704 Z M654.588001,341.192 L680.192001,334.272 C672.580001,285.832 628.292001,254 566.012001,254 C478.820001,254 422.768001,307.976 422.768001,375.1 C422.768001,505.888 626.216001,481.668 626.216001,610.38 C626.216001,687.192 567.396001,730.788 497.504001,730.788 C438.684001,730.788 399.240001,696.188 385.400001,644.98 L359.796001,653.284 C372.944001,707.952 420.000001,755.008 494.736001,755.008 C584.004001,755.008 653.204001,698.956 653.204001,605.536 C653.204001,461.6 449.756001,484.436 449.756001,374.408 C449.756001,316.28 494.044001,278.22 565.320001,278.22 C615.836001,278.22 645.592001,301.056 654.588001,341.192 Z M878.104003,755.008 C769.460003,755.008 727.248003,657.436 727.248003,559.864 C727.248003,427.692 797.140003,254 960.452003,254 C1070.48,254 1108.54,346.036 1108.54,445.684 C1108.54,579.932 1041.416,755.008 878.104003,755.008 Z M881.564003,730.096 C1025.5,730.096 1082.244,566.092 1082.244,444.992 C1082.244,357.8 1049.72,278.912 956.992003,278.912 C813.056003,278.912 754.236003,441.532 754.236003,562.632 C754.236003,651.9 787.452003,730.096 881.564003,730.096 Z" id="ISO" fill="#FFFFFF" mask="url(#mask-2)"></path> 16 + <path d="M250,780.039462 L275.93323,780.039462 L362.143699,289.410777 L336.210469,289.410777 L250,780.039462 Z M662.828994,369.313163 L688.762225,362.304182 C681.052346,313.241314 636.194866,281 573.114035,281 C484.800872,281 428.028124,335.670053 428.028124,403.657171 C428.028124,536.126916 634.092172,511.595482 634.092172,641.962532 C634.092172,719.762224 574.515831,763.918805 503.725121,763.918805 C444.148781,763.918805 404.197588,728.873899 390.179626,677.007438 L364.246395,685.418216 C377.563459,740.789167 425.224532,788.450239 500.921529,788.450239 C591.337386,788.450239 661.427198,731.677492 661.427198,637.056245 C661.427198,491.269436 455.363151,514.399074 455.363151,402.956273 C455.363151,344.080831 500.22063,305.531434 572.413137,305.531434 C623.5787,305.531434 653.717319,328.661072 662.828994,369.313163 Z M889.219089,788.450239 C779.178084,788.450239 736.423299,689.623604 736.423299,590.796969 C736.423299,456.925428 807.214009,281 972.625965,281 C1084.06877,281 1122.61816,374.21945 1122.61816,475.148779 C1122.61816,611.123015 1054.63105,788.450239 889.219089,788.450239 Z M892.723579,763.217907 C1038.51039,763.217907 1095.98403,597.105052 1095.98403,474.447881 C1095.98403,386.134718 1063.04182,306.232332 969.121475,306.232332 C823.334665,306.232332 763.758325,470.943391 763.758325,593.600562 C763.758325,684.016419 797.401435,763.217907 892.723579,763.217907 Z" id="ISO" fill="#FFFFFF" mask="url(#mask-2)"></path> 17 17 </g> 18 18 </g> 19 19 </g>
+20
src/Static/Images/icon-square.svg
··· 1 + <?xml version="1.0" encoding="UTF-8"?> 2 + <svg width="1024px" height="1024px" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"> 3 + <!-- Generator: Sketch 47.1 (45422) - http://www.bohemiancoding.com/sketch --> 4 + <title>Icon</title> 5 + <desc>Created with Sketch.</desc> 6 + <defs> 7 + <rect id="path-1" x="0" y="0" width="1023.46011" height="1023.46011" rx="44"></rect> 8 + </defs> 9 + <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> 10 + <g id="Icon"> 11 + <g id="AT"> 12 + <mask id="mask-2" fill="white"> 13 + <use xlink:href="#path-1"></use> 14 + </mask> 15 + <use id="Rectangle" fill="#A43551" xlink:href="#path-1"></use> 16 + <path d="M250,780.039462 L275.93323,780.039462 L362.143699,289.410777 L336.210469,289.410777 L250,780.039462 Z M662.828994,369.313163 L688.762225,362.304182 C681.052346,313.241314 636.194866,281 573.114035,281 C484.800872,281 428.028124,335.670053 428.028124,403.657171 C428.028124,536.126916 634.092172,511.595482 634.092172,641.962532 C634.092172,719.762224 574.515831,763.918805 503.725121,763.918805 C444.148781,763.918805 404.197588,728.873899 390.179626,677.007438 L364.246395,685.418216 C377.563459,740.789167 425.224532,788.450239 500.921529,788.450239 C591.337386,788.450239 661.427198,731.677492 661.427198,637.056245 C661.427198,491.269436 455.363151,514.399074 455.363151,402.956273 C455.363151,344.080831 500.22063,305.531434 572.413137,305.531434 C623.5787,305.531434 653.717319,328.661072 662.828994,369.313163 Z M889.219089,788.450239 C779.178084,788.450239 736.423299,689.623604 736.423299,590.796969 C736.423299,456.925428 807.214009,281 972.625965,281 C1084.06877,281 1122.61816,374.21945 1122.61816,475.148779 C1122.61816,611.123015 1054.63105,788.450239 889.219089,788.450239 Z M892.723579,763.217907 C1038.51039,763.217907 1095.98403,597.105052 1095.98403,474.447881 C1095.98403,386.134718 1063.04182,306.232332 969.121475,306.232332 C823.334665,306.232332 763.758325,470.943391 763.758325,593.600562 C763.758325,684.016419 797.401435,763.217907 892.723579,763.217907 Z" id="ISO" fill="#FFFFFF" mask="url(#mask-2)"></path> 17 + </g> 18 + </g> 19 + </g> 20 + </svg>
+3 -3
src/Static/Images/icon.svg
··· 4 4 <title>Icon</title> 5 5 <desc>Created with Sketch.</desc> 6 6 <defs> 7 - <circle id="path-1" cx="505.23348" cy="505.23348" r="505.23348"></circle> 7 + <circle id="path-1" cx="511.730053" cy="511.730053" r="511.730053"></circle> 8 8 </defs> 9 9 <g id="Page-1" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd"> 10 10 <g id="Icon"> 11 - <g id="AT" transform="translate(7.000000, 7.000000)"> 11 + <g id="AT"> 12 12 <mask id="mask-2" fill="white"> 13 13 <use xlink:href="#path-1"></use> 14 14 </mask> 15 15 <use id="Mask" fill="#A43551" xlink:href="#path-1"></use> 16 - <path d="M247,746.704 L272.604,746.704 L357.72,262.304 L332.116,262.304 L247,746.704 Z M654.588001,341.192 L680.192001,334.272 C672.580001,285.832 628.292001,254 566.012001,254 C478.820001,254 422.768001,307.976 422.768001,375.1 C422.768001,505.888 626.216001,481.668 626.216001,610.38 C626.216001,687.192 567.396001,730.788 497.504001,730.788 C438.684001,730.788 399.240001,696.188 385.400001,644.98 L359.796001,653.284 C372.944001,707.952 420.000001,755.008 494.736001,755.008 C584.004001,755.008 653.204001,698.956 653.204001,605.536 C653.204001,461.6 449.756001,484.436 449.756001,374.408 C449.756001,316.28 494.044001,278.22 565.320001,278.22 C615.836001,278.22 645.592001,301.056 654.588001,341.192 Z M878.104003,755.008 C769.460003,755.008 727.248003,657.436 727.248003,559.864 C727.248003,427.692 797.140003,254 960.452003,254 C1070.48,254 1108.54,346.036 1108.54,445.684 C1108.54,579.932 1041.416,755.008 878.104003,755.008 Z M881.564003,730.096 C1025.5,730.096 1082.244,566.092 1082.244,444.992 C1082.244,357.8 1049.72,278.912 956.992003,278.912 C813.056003,278.912 754.236003,441.532 754.236003,562.632 C754.236003,651.9 787.452003,730.096 881.564003,730.096 Z" id="ISO" fill="#FFFFFF" mask="url(#mask-2)"></path> 16 + <path d="M250,780.039462 L275.93323,780.039462 L362.143699,289.410777 L336.210469,289.410777 L250,780.039462 Z M662.828994,369.313163 L688.762225,362.304182 C681.052346,313.241314 636.194866,281 573.114035,281 C484.800872,281 428.028124,335.670053 428.028124,403.657171 C428.028124,536.126916 634.092172,511.595482 634.092172,641.962532 C634.092172,719.762224 574.515831,763.918805 503.725121,763.918805 C444.148781,763.918805 404.197588,728.873899 390.179626,677.007438 L364.246395,685.418216 C377.563459,740.789167 425.224532,788.450239 500.921529,788.450239 C591.337386,788.450239 661.427198,731.677492 661.427198,637.056245 C661.427198,491.269436 455.363151,514.399074 455.363151,402.956273 C455.363151,344.080831 500.22063,305.531434 572.413137,305.531434 C623.5787,305.531434 653.717319,328.661072 662.828994,369.313163 Z M889.219089,788.450239 C779.178084,788.450239 736.423299,689.623604 736.423299,590.796969 C736.423299,456.925428 807.214009,281 972.625965,281 C1084.06877,281 1122.61816,374.21945 1122.61816,475.148779 C1122.61816,611.123015 1054.63105,788.450239 889.219089,788.450239 Z M892.723579,763.217907 C1038.51039,763.217907 1095.98403,597.105052 1095.98403,474.447881 C1095.98403,386.134718 1063.04182,306.232332 969.121475,306.232332 C823.334665,306.232332 763.758325,470.943391 763.758325,593.600562 C763.758325,684.016419 797.401435,763.217907 892.723579,763.217907 Z" id="ISO" fill="#FFFFFF" mask="url(#mask-2)"></path> 17 17 </g> 18 18 </g> 19 19 </g>
-1
src/Vendor/package.js
··· 5 5 self.blockstack = require("blockstack"); 6 6 self.camelcase = require("camelcase"); 7 7 self.elasticlunr = require("elasticlunr"); 8 - 9 8 self.RemoteStorage = require("remotestoragejs"); 10 9 11 10 if (self.document) {