Compare commits
17 Commits
v2.0-beta2
...
v2.0
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
92a60bd03e | ||
|
|
1238ef62fa | ||
|
|
66539aa422 | ||
|
|
f8c20e55a4 | ||
|
|
3b5448a334 | ||
|
|
4b1614e247 | ||
|
|
fb1ee381fe | ||
|
|
59c4b6db86 | ||
|
|
f4e15215ec | ||
|
|
b57cc559d9 | ||
|
|
4a1d6047ac | ||
|
|
3d411826f2 | ||
|
|
989209758a | ||
|
|
1d4386e9e9 | ||
|
|
938ad5f8b9 | ||
|
|
4e881415d2 | ||
|
|
0cc0ec6c55 |
@@ -209,19 +209,6 @@
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><h5 id="pMiDOption">Rabb.it</h5></td>
|
||||
<td>
|
||||
<div class="switch">
|
||||
<label>
|
||||
<input
|
||||
type="checkbox"
|
||||
class="toggleRabbit rabbit"
|
||||
/><span class="lever"></span>
|
||||
</label>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><h5 id="pMiDOption">Crunchyroll</h5></td>
|
||||
<td>
|
||||
@@ -235,32 +222,6 @@
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><h5 id="pMiDOption">Aniflix</h5></td>
|
||||
<td>
|
||||
<div class="switch">
|
||||
<label>
|
||||
<input
|
||||
type="checkbox"
|
||||
class="toggleAniflix aniflix"
|
||||
/><span class="lever"></span>
|
||||
</label>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><h5 id="pMiDOption">Anime4You</h5></td>
|
||||
<td>
|
||||
<div class="switch">
|
||||
<label>
|
||||
<input
|
||||
type="checkbox"
|
||||
class="toggleAnime4You anime4you"
|
||||
/><span class="lever"></span>
|
||||
</label>
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -39,7 +39,7 @@
|
||||
<a
|
||||
term="tab.installed.getSupport"
|
||||
draggable="false"
|
||||
href="https://premid.app/help"
|
||||
href="https://wiki.premid.app/troubleshooting/troubleshooting"
|
||||
class="getSupport waves-effect btn"
|
||||
></a>
|
||||
</div>
|
||||
|
||||
@@ -1,71 +0,0 @@
|
||||
var playback = false,
|
||||
videoTitle,
|
||||
videoAuthor,
|
||||
videoTimestamps,
|
||||
playbackBoolean,
|
||||
smallImageKey,
|
||||
smallImageText
|
||||
|
||||
/**
|
||||
* Updates the Presence data and sends it back
|
||||
* to the background.js for further interaction
|
||||
*/
|
||||
async function updateData() {
|
||||
|
||||
playback =
|
||||
document.location.pathname.includes("/stream/")
|
||||
&& iframe_video != null
|
||||
&& iframe_video.dur != null
|
||||
? true : false
|
||||
|
||||
|
||||
//* If page has all required propertys
|
||||
if(playback) {
|
||||
if($('.entry-title').html().match(new RegExp(" Der Film "), "") != null) {
|
||||
videoTitle = $('.entry-title').html().replace(new RegExp(" Der Film .*"), "")
|
||||
videoAuthor = $('.entry-title').html().match(new RegExp("Der Film .*"), "")
|
||||
} else if($('.entry-title').html().match(new RegExp(" OVA "), "") != null) {
|
||||
videoTitle = $('.entry-title').html().replace(new RegExp(" OVA .*"), "")
|
||||
videoAuthor = $('.entry-title').html().match(new RegExp("OVA .*"), "");
|
||||
} else if($('.entry-title').html().match(new RegExp(" Folge [0-9]*"), "") != " Folge ") {
|
||||
videoTitle = $('.entry-title').html().replace(new RegExp(" Folge [0-9]* .*"), "")
|
||||
videoAuthor = $('.entry-title').html().match(new RegExp(" Folge [0-9]* .*"), "")
|
||||
} else if($('.entry-title').html().match(new RegExp(" Spezial Folge"), "") != null) {
|
||||
videoTitle = $('.entry-title').html().replace(new RegExp(" Spezial Folge .*"), "")
|
||||
videoAuthor = $('.entry-title').html().match(new RegExp(" Spezial Folge .*"), "")
|
||||
} else if($('.entry-title').html().match(new RegExp(" Folge "), "") != null) {
|
||||
videoTitle = $('.entry-title').html().replace(new RegExp(" Folge .*"), "")
|
||||
videoAuthor = $('.entry-title').html().match(new RegExp(" Folge .*"), "")
|
||||
}
|
||||
|
||||
videoTimestamps = getTimestamps(Math.floor(iframe_video.curr), Math.floor(iframe_video.dur))
|
||||
playbackBoolean = !iframe_video.paused
|
||||
smallImageKey = playbackBoolean ? 'play' : 'pause'
|
||||
smallImageText = playbackBoolean ? await getString("presence.playback.playing") : await getString("presence.playback.paused")
|
||||
|
||||
var data = {
|
||||
clientID: '521104874738417664',
|
||||
presenceData: {
|
||||
details: $('<div/>').html(videoTitle).text(),
|
||||
state: $('<div/>').html(videoAuthor).text(),
|
||||
largeImageKey: 'aniflix_lg',
|
||||
largeImageText: chrome.runtime.getManifest().name + ' V' + chrome.runtime.getManifest().version,
|
||||
smallImageKey: smallImageKey,
|
||||
smallImageText: smallImageText,
|
||||
},
|
||||
trayTitle: $('<div/>').html(videoTitle).text(),
|
||||
playback: playbackBoolean,
|
||||
service: 'Aniflix'
|
||||
}
|
||||
|
||||
if(playbackBoolean) {
|
||||
data.presenceData.startTimestamp = videoTimestamps[0]
|
||||
data.presenceData.endTimestamp = videoTimestamps[1]
|
||||
} else {
|
||||
delete data.presenceData.startTimestamp
|
||||
delete data.presenceData.endTimestamp
|
||||
}
|
||||
|
||||
chrome.runtime.sendMessage({presence: data})
|
||||
}
|
||||
}
|
||||
@@ -1,95 +0,0 @@
|
||||
var playback = false,
|
||||
videoTitle,
|
||||
videoAuthor,
|
||||
videoTimestamps,
|
||||
playbackBoolean,
|
||||
smallImageKey,
|
||||
smallImageText,
|
||||
urlForVideo,
|
||||
lastURL = null,
|
||||
startTimeStamp
|
||||
|
||||
/**
|
||||
* Updates the Presence data and sends it back
|
||||
* to the background.js for further interaction
|
||||
*/
|
||||
async function updateData() {
|
||||
urlForVideo = document.location.href;
|
||||
|
||||
if (urlForVideo != lastURL) {
|
||||
lastURL = urlForVideo;
|
||||
startTimeStamp = Math.floor(Date.now() / 1000);
|
||||
}
|
||||
|
||||
playback =
|
||||
$('.titleshow h1').text().trim() != ""
|
||||
&& iframe_video.dur != null ? true : false
|
||||
|
||||
|
||||
|
||||
//* If page has all required propertys
|
||||
if(playback) {
|
||||
videoTitle = $('.titleshow h1').html()
|
||||
videoAuthor = (await getString("presence.episode")).replace("{{episode}}", $('.episoden a.active').text()),
|
||||
|
||||
videoTimestamps = getTimestamps(Math.floor(iframe_video.curr), Math.floor(iframe_video.dur))
|
||||
playbackBoolean = !iframe_video.paused
|
||||
smallImageKey = playbackBoolean ? 'play' : 'pause'
|
||||
smallImageText = playbackBoolean ? await getString("presence.playback.playing") : await getString("presence.playback.paused")
|
||||
|
||||
var data = {
|
||||
clientID: '517148876273090577',
|
||||
presenceData: {
|
||||
details: $('<div/>').html(videoTitle).text(),
|
||||
state: $('<div/>').html(videoAuthor).text(),
|
||||
largeImageKey: 'a4y_lg',
|
||||
largeImageText: chrome.runtime.getManifest().name + ' V' + chrome.runtime.getManifest().version,
|
||||
smallImageKey: smallImageKey,
|
||||
smallImageText: smallImageText,
|
||||
},
|
||||
trayTitle: $('<div/>').html(videoTitle).text(),
|
||||
playback: playbackBoolean,
|
||||
service: 'Anime4You'
|
||||
}
|
||||
|
||||
if(playbackBoolean) {
|
||||
data.presenceData.startTimestamp = videoTimestamps[0]
|
||||
data.presenceData.endTimestamp = videoTimestamps[1]
|
||||
} else {
|
||||
delete data.presenceData.startTimestamp
|
||||
delete data.presenceData.endTimestamp
|
||||
}
|
||||
|
||||
} else if(!document.location.pathname.includes('/show/')) {
|
||||
var data = {
|
||||
clientID: '517148876273090577',
|
||||
presenceData: {
|
||||
details: await getString('presence.lookingForAnime'),
|
||||
largeImageKey: 'a4y_lg',
|
||||
largeImageText: chrome.runtime.getManifest().name + ' V' + chrome.runtime.getManifest().version,
|
||||
startTimestamp: startTimeStamp
|
||||
},
|
||||
trayTitle: $('<div/>').html(videoTitle).text(),
|
||||
playback: true,
|
||||
service: 'Anime4You'
|
||||
}
|
||||
} else if(document.location.pathname.includes('/show/')) {
|
||||
var videoTitle = $('.titleshow h1').text().trim(),
|
||||
videoEpisode = (await getString("presence.episode").replace("{{episode}}", $('.episoden a.active').text()))
|
||||
|
||||
var data = {
|
||||
clientID: '517148876273090577',
|
||||
presenceData: {
|
||||
details: $('<div/>').html(videoTitle).text(),
|
||||
state: $('<div/>').html(videoEpisode).text(),
|
||||
largeImageKey: 'a4y_lg',
|
||||
largeImageText: chrome.runtime.getManifest().name + ' V' + chrome.runtime.getManifest().version,
|
||||
startTimestamp: startTimeStamp
|
||||
},
|
||||
trayTitle: $('<div/>').html(videoTitle).text(),
|
||||
playback: true,
|
||||
service: 'Anime4You'
|
||||
}
|
||||
}
|
||||
chrome.runtime.sendMessage({presence: data})
|
||||
}
|
||||
@@ -4,7 +4,8 @@ videoAuthor,
|
||||
videoTimestamps,
|
||||
playbackBoolean,
|
||||
smallImageKey,
|
||||
smallImageText
|
||||
smallImageText,
|
||||
episodeNumber
|
||||
|
||||
/**
|
||||
* Updates the Presence data and sends it back
|
||||
@@ -19,7 +20,8 @@ async function updateData() {
|
||||
//* If page has all required propertys
|
||||
if(playback) {
|
||||
videoTitle = $('#showmedia_about_media a:first').text()
|
||||
videoAuthor = (await getString("presence.episode")).replace("{{episode}}", $('#showmedia_about_media h4').get(1).innerHTML.trim().match(new RegExp("[0-9].*"))[0]) + " - " + $('#showmedia_about_name').text(),
|
||||
episodeNumber = ($('.collection-carousel-media-link-current').text().trim().match(/^[^\d]+(\d+)/) || [null, '??'])[1]
|
||||
videoAuthor = (await getString("presence.episode")).replace("{{episode}}", episodeNumber) + " - " + $('#showmedia_about_name').text()
|
||||
|
||||
videoTimestamps = getTimestamps(Math.floor(iframe_video.curr), Math.floor(iframe_video.dur))
|
||||
playbackBoolean = !iframe_video.paused
|
||||
|
||||
@@ -1,29 +1,31 @@
|
||||
var playback = false,
|
||||
videoTitle,
|
||||
videoAuthor,
|
||||
videoTimestamps,
|
||||
playbackBoolean,
|
||||
liveBoolean,
|
||||
startTimestamp,
|
||||
smallImageKey,
|
||||
smallImageText
|
||||
videoTitle,
|
||||
videoAuthor,
|
||||
videoTimestamps,
|
||||
playbackBoolean,
|
||||
liveBoolean,
|
||||
startTimestamp,
|
||||
smallImageKey,
|
||||
smallImageText;
|
||||
|
||||
/**
|
||||
* Handles Media Key controls
|
||||
* @param {data} data Data passed by socketConnector.js
|
||||
*/
|
||||
async function handleMediaKeys(data) {
|
||||
if(playback) {
|
||||
if (playback) {
|
||||
switch (data.mediaKeys) {
|
||||
case "pause":
|
||||
playbackBoolean ? $('.video-stream')[0].pause() : $('.video-stream')[0].play()
|
||||
break
|
||||
playbackBoolean
|
||||
? $(".video-stream")[0].pause()
|
||||
: $(".video-stream")[0].play();
|
||||
break;
|
||||
case "nextTrack":
|
||||
$('.ytp-next-button')[0].click()
|
||||
break
|
||||
$(".ytp-next-button")[0].click();
|
||||
break;
|
||||
case "previousTrack":
|
||||
$('.ytp-prev-button')[0].click()
|
||||
break
|
||||
$(".ytp-prev-button")[0].click();
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -33,47 +35,66 @@ async function handleMediaKeys(data) {
|
||||
* to the background.js for further interaction
|
||||
*/
|
||||
async function updateData() {
|
||||
playback =
|
||||
document.location.pathname.includes("/watch")
|
||||
&& $('.ytd-video-primary-info-renderer .title').text() != ""
|
||||
&& $('.video-stream')[0] != undefined
|
||||
&& !isNaN($('.video-stream')[0].duration)
|
||||
? true : false
|
||||
playback =
|
||||
document.location.pathname.includes("/watch") &&
|
||||
$(".ytd-video-primary-info-renderer .title").text() != "" &&
|
||||
$(".video-stream")[0] != undefined &&
|
||||
!isNaN($(".video-stream")[0].duration)
|
||||
? true
|
||||
: false;
|
||||
|
||||
//* If page has all required propertys
|
||||
if(playback) {
|
||||
if(!startTimestamp) startTimestamp = Math.floor(Date.now() / 1000)
|
||||
videoTitle = $('.ytd-video-primary-info-renderer .title').text()
|
||||
videoAuthor = $("#upload-info .style-scope .ytd-video-owner-renderer").contents().first().html()
|
||||
videoTimestamps = getTimestamps(Math.floor($('.video-stream')[0].currentTime), Math.floor($('.video-stream')[0].duration))
|
||||
playbackBoolean = !$('.video-stream')[0].paused
|
||||
liveBoolean = Boolean($('.ytp-live')[0])
|
||||
smallImageKey = playbackBoolean ? 'play' : 'pause'
|
||||
smallImageText = playbackBoolean ? await getString("presence.playback.playing") : await getString("presence.playback.paused")
|
||||
if (playback) {
|
||||
if (!startTimestamp) startTimestamp = Math.floor(Date.now() / 1000);
|
||||
videoTitle = $(".ytd-video-primary-info-renderer .title").text();
|
||||
videoAuthor = document
|
||||
.querySelector("#upload-info .ytd-channel-name")
|
||||
.innerText.trim();
|
||||
videoTimestamps = getTimestamps(
|
||||
Math.floor($(".video-stream")[0].currentTime),
|
||||
Math.floor($(".video-stream")[0].duration)
|
||||
);
|
||||
playbackBoolean = !$(".video-stream")[0].paused;
|
||||
liveBoolean = Boolean($(".ytp-live")[0]);
|
||||
smallImageKey = playbackBoolean ? "play" : "pause";
|
||||
smallImageText = playbackBoolean
|
||||
? await getString("presence.playback.playing")
|
||||
: await getString("presence.playback.paused");
|
||||
|
||||
var data = {
|
||||
clientID: '463097721130188830',
|
||||
clientID: "463097721130188830",
|
||||
presenceData: {
|
||||
details: $('<div/>').html(videoTitle).text(),
|
||||
state: $('<div/>').html(videoAuthor).text(),
|
||||
largeImageKey: 'yt_lg',
|
||||
largeImageText: chrome.runtime.getManifest().name + ' V' + chrome.runtime.getManifest().version,
|
||||
details: $("<div/>")
|
||||
.html(videoTitle)
|
||||
.text(),
|
||||
state: $("<div/>")
|
||||
.html(videoAuthor)
|
||||
.text(),
|
||||
largeImageKey: "yt_lg",
|
||||
largeImageText:
|
||||
chrome.runtime.getManifest().name +
|
||||
" V" +
|
||||
chrome.runtime.getManifest().version,
|
||||
smallImageKey: smallImageKey,
|
||||
smallImageText: smallImageText,
|
||||
smallImageText: smallImageText
|
||||
},
|
||||
trayTitle: $('<div/>').html(videoTitle).text(),
|
||||
trayTitle: $("<div/>")
|
||||
.html(videoTitle)
|
||||
.text(),
|
||||
playback: playbackBoolean,
|
||||
service: 'YouTube'
|
||||
}
|
||||
service: "YouTube"
|
||||
};
|
||||
|
||||
if(playbackBoolean) {
|
||||
data.presenceData.startTimestamp = liveBoolean ? startTimestamp : videoTimestamps[0]
|
||||
if(!liveBoolean) data.presenceData.endTimestamp = videoTimestamps[1]
|
||||
if (playbackBoolean) {
|
||||
data.presenceData.startTimestamp = liveBoolean
|
||||
? startTimestamp
|
||||
: videoTimestamps[0];
|
||||
if (!liveBoolean) data.presenceData.endTimestamp = videoTimestamps[1];
|
||||
} else {
|
||||
delete data.presenceData.startTimestamp
|
||||
delete data.presenceData.endTimestamp
|
||||
delete data.presenceData.startTimestamp;
|
||||
delete data.presenceData.endTimestamp;
|
||||
}
|
||||
|
||||
chrome.runtime.sendMessage({presence: data})
|
||||
chrome.runtime.sendMessage({ presence: data });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,78 +1,70 @@
|
||||
{
|
||||
"name": "PreMiD",
|
||||
"author": "Timeraa & Fruxh",
|
||||
"description": "__MSG_description__",
|
||||
"default_locale": "en",
|
||||
"version": "1.3.1.9",
|
||||
"manifest_version": 2,
|
||||
"web_accessible_resources": [ "icon.png", "languages/*.json" ],
|
||||
"browser_action": {
|
||||
"default_popup": "html/popup.html",
|
||||
"default_icon": {
|
||||
"1024": "icon.png"
|
||||
}
|
||||
},
|
||||
"icons": {
|
||||
"1024": "icon.png"
|
||||
},
|
||||
"background": {
|
||||
"scripts": [ "js/util/socket.io-2.1.1.min.js", "js/background.js" ]
|
||||
},
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": [ "<all_urls>" ],
|
||||
"js": [ "js/util/jquery-3.3.1.min.js", "js/util/socketConnector.js", "js/util/langManager.js" ],
|
||||
"css": [ "css/connect.css" ]
|
||||
},
|
||||
{
|
||||
"matches": [ "<all_urls>" ],
|
||||
"js": [ "js/util/jquery-3.3.1.min.js", "js/presences/iframeWitch.js" ],
|
||||
"all_frames": true
|
||||
},
|
||||
{
|
||||
"matches": [ "*://www.youtube.com/*" ],
|
||||
"js": [ "js/presences/Video/YouTube.js" ]
|
||||
},
|
||||
{
|
||||
"matches": [ "*://music.youtube.com/*" ],
|
||||
"js": [ "js/presences/Music/YouTube_Music.js" ]
|
||||
},
|
||||
{
|
||||
"matches": [ "*://soundcloud.com/*" ],
|
||||
"js": [ "js/presences/Music/SoundCloud.js" ]
|
||||
},
|
||||
{
|
||||
"matches": [ "*://www.netflix.com/*" ],
|
||||
"js": [ "js/presences/Video/Netflix.js" ]
|
||||
},
|
||||
{
|
||||
"matches": [ "*://www.aniflix.tv/*" ],
|
||||
"js": [ "js/presences/Anime/Aniflix.js" ]
|
||||
},
|
||||
{
|
||||
"matches": [ "*://www.anime4you.one/*" ],
|
||||
"js": [ "js/presences/Anime/Anime4You.js" ]
|
||||
},
|
||||
{
|
||||
"matches": [ "*://www.twitch.tv/*" ],
|
||||
"js": [ "js/presences/Video/Twitch.js" ]
|
||||
},
|
||||
{
|
||||
"matches": [ "*://www.rabb.it/*" ],
|
||||
"js": [ "js/presences/Video/Rabb.it.js" ]
|
||||
},
|
||||
{
|
||||
"matches": [ "*://www.crunchyroll.com/*" ],
|
||||
"js": [ "js/presences/Anime/Crunchyroll.js" ]
|
||||
}
|
||||
],
|
||||
"permissions": [ "http://localhost:3020/", "tabs", "storage" ],
|
||||
"content_security_policy": "script-src 'self' https://*.premid.app/*; object-src 'self'",
|
||||
"applications": {
|
||||
"gecko": {
|
||||
"id": "support@premid.app",
|
||||
"strict_min_version": "52.0",
|
||||
"update_url": "https://api.premid.app/firefox/updates"
|
||||
}
|
||||
}
|
||||
"name": "PreMiD",
|
||||
"author": "Timeraa & Fruxh",
|
||||
"description": "__MSG_description__",
|
||||
"default_locale": "en",
|
||||
"version": "1.3.2.4",
|
||||
"manifest_version": 2,
|
||||
"web_accessible_resources": ["icon.png", "languages/*.json"],
|
||||
"browser_action": {
|
||||
"default_popup": "html/popup.html",
|
||||
"default_icon": {
|
||||
"1024": "icon.png"
|
||||
}
|
||||
},
|
||||
"icons": {
|
||||
"1024": "icon.png"
|
||||
},
|
||||
"background": {
|
||||
"scripts": ["js/util/socket.io-2.1.1.min.js", "js/background.js"]
|
||||
},
|
||||
"content_scripts": [
|
||||
{
|
||||
"matches": ["<all_urls>"],
|
||||
"js": [
|
||||
"js/util/jquery-3.3.1.min.js",
|
||||
"js/util/socketConnector.js",
|
||||
"js/util/langManager.js"
|
||||
],
|
||||
"css": ["css/connect.css"]
|
||||
},
|
||||
{
|
||||
"matches": ["<all_urls>"],
|
||||
"js": ["js/util/jquery-3.3.1.min.js", "js/presences/iframeWitch.js"],
|
||||
"all_frames": true
|
||||
},
|
||||
{
|
||||
"matches": ["*://www.youtube.com/*"],
|
||||
"js": ["js/presences/Video/YouTube.js"]
|
||||
},
|
||||
{
|
||||
"matches": ["*://music.youtube.com/*"],
|
||||
"js": ["js/presences/Music/YouTube_Music.js"]
|
||||
},
|
||||
{
|
||||
"matches": ["*://soundcloud.com/*"],
|
||||
"js": ["js/presences/Music/SoundCloud.js"]
|
||||
},
|
||||
{
|
||||
"matches": ["*://www.netflix.com/*"],
|
||||
"js": ["js/presences/Video/Netflix.js"]
|
||||
},
|
||||
{
|
||||
"matches": ["*://www.twitch.tv/*"],
|
||||
"js": ["js/presences/Video/Twitch.js"]
|
||||
},
|
||||
{
|
||||
"matches": ["*://www.crunchyroll.com/*"],
|
||||
"js": ["js/presences/Anime/Crunchyroll.js"]
|
||||
}
|
||||
],
|
||||
"permissions": ["http://localhost:3020/", "tabs", "storage"],
|
||||
"content_security_policy": "script-src 'self' https://*.premid.app/*; object-src 'self'",
|
||||
"applications": {
|
||||
"gecko": {
|
||||
"id": "support@premid.app",
|
||||
"strict_min_version": "52.0",
|
||||
"update_url": "https://api.premid.app/firefox/updates"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
11800
Extension_DEPRECATED/html/pages/popup/package-lock.json
generated
@@ -1,40 +0,0 @@
|
||||
<svg width="208" height="208" viewBox="0 0 208 208" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<circle cx="104" cy="100" r="100" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d)">
|
||||
<path d="M149.691 32.4765H59.3977C51.7833 32.4765 45.584 38.6759 45.584 46.3576V137.459C45.584 145.141 51.7833 151.34 59.3977 151.34H135.81L132.239 138.875L140.864 146.893L149.017 154.44L163.504 167.243V46.3576C163.504 38.6759 157.305 32.4765 149.691 32.4765Z" fill="#7289DA"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M70 72C70 68.134 73.134 65 77 65H133C136.866 65 140 68.134 140 72V110C140 113.866 136.866 117 133 117H77C73.134 117 70 113.866 70 110V72ZM99.5 90.5L79 105V76L99.5 90.5ZM114.5 77H107.5C106.119 77 105 78.1193 105 79.5C105 80.8807 106.119 82 107.5 82H114.5C115.881 82 117 80.8807 117 79.5C117 78.1193 115.881 77 114.5 77ZM126.5 89C127.881 89 129 90.1193 129 91.5C129 92.8807 127.881 94 126.5 94H107.5C106.119 94 105 92.8807 105 91.5C105 90.1193 106.119 89 107.5 89H126.5ZM129 102.5C129 101.119 127.881 100 126.5 100H107.5C106.119 100 105 101.119 105 102.5C105 103.881 106.119 105 107.5 105H126.5C127.881 105 129 103.881 129 102.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="208" height="208" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d" x="41.584" y="32.4765" width="125.92" height="142.766" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d" x="66" y="65" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,16 +0,0 @@
|
||||
<svg width="78" height="60" viewBox="0 0 78 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 7C4 3.13401 7.13401 0 11 0H67C70.866 0 74 3.13401 74 7V45C74 48.866 70.866 52 67 52H11C7.13401 52 4 48.866 4 45V7ZM33.5 25.5L13 40V11L33.5 25.5ZM48.5 12H41.5C40.1193 12 39 13.1193 39 14.5C39 15.8807 40.1193 17 41.5 17H48.5C49.8807 17 51 15.8807 51 14.5C51 13.1193 49.8807 12 48.5 12ZM60.5 24C61.8807 24 63 25.1193 63 26.5C63 27.8807 61.8807 29 60.5 29H41.5C40.1193 29 39 27.8807 39 26.5C39 25.1193 40.1193 24 41.5 24H60.5ZM63 37.5C63 36.1193 61.8807 35 60.5 35H41.5C40.1193 35 39 36.1193 39 37.5C39 38.8807 40.1193 40 41.5 40H60.5C61.8807 40 63 38.8807 63 37.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,11 +0,0 @@
|
||||
<svg width="100%" height="100%" viewBox="0 0 60 59" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M45.5 53.5V42.5L54 48L45.5 53.5Z" fill="white"/>
|
||||
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="60" height="59">
|
||||
<path d="M38 48C38 41.9249 42.9249 37 49 37C51.2136 37 53.2744 37.6538 55 38.7789V0H0V55H40.5143C38.9436 53.0981 38 50.6593 38 48Z" fill="black"/>
|
||||
<path d="M49 59C55.0751 59 60 54.0751 60 48C60 44.1384 58.0102 40.7416 55 38.7789V55H40.5143C42.5319 57.443 45.5841 59 49 59Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0)">
|
||||
<path d="M28.4814 6.27539C15.7741 6.60057 15.1674 8.37451 6.65292 18.232C-0.842697 31.3504 6.75744 47.693 18.7606 48.8064L7.94126 38.6266L16.7352 45.502C6.40346 35.3364 8.05776 18.7253 20.466 11.1255L20.4849 11.2126C22.5536 20.7528 24.2772 28.702 27.9276 34.9492C29.8785 27.6612 30.653 23.8801 33.6304 17.8408C32.3271 22.2015 31.6973 24.0426 31.7227 28.1071C33.9929 21.2529 36.0437 17.1177 39.12 13.4218C44.3431 17.521 47.914 30.2057 46.1436 38.3551L47.381 37.0811C46.0486 39.586 43.97 41.8778 41.8381 43.9031L43.5969 43.4767C41.3585 45.875 40.2925 46.6745 37.4145 48.6998C46.9866 48.0705 54.3615 37.3529 52.0824 25.7836C49.8033 14.2142 40.5351 6.61424 28.4814 6.27539Z" fill="#A80E33"/>
|
||||
<path d="M0.159891 16.9349L0 17.5211L5.54288 15.176C-2.34507 29.6194 4.21046 47.2608 16.8418 48.4866L9.27368 39.7993L15.7226 44.596C4.85002 33.4036 6.44893 18.4804 19.5067 10.1128C21.6925 20.6594 23.1684 26.0248 27.0215 32.924C29.0745 24.8998 30.5506 20.8127 33.6837 14.1634C32.3122 18.9646 31.8982 21.5737 31.9249 26.0486C34.3139 18.5019 35.7227 14.5551 38.9601 10.4859C46.3151 18.9601 48.2338 26.475 47.381 36.9745C48.8548 36.1938 49.5264 35.2056 50.419 32.3376C49.7261 37.8272 47.381 39.9591 42.2112 43.7432C43.6769 43.3355 44.4449 43.0392 45.7289 42.4108C43.5414 45.1265 42.0534 46.4326 39.0667 48.4866C49.1398 47.7937 55.7486 36.2284 53.3503 23.4904C50.9519 10.7524 41.1985 2.38473 28.5138 2.01166C15.1414 2.36968 9.12008 6.08161 0.159891 16.9349Z" fill="#E40813"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="#7289DA"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,31 +0,0 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<link href="https://rsms.me/inter/inter.css" rel="stylesheet">
|
||||
<link href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" rel="stylesheet">
|
||||
<link href="static/assets/fonts/stylesheet.css" rel="stylesheet">
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="static/assets/meta/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="static/assets/meta/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="static/assets/meta/favicon-16x16.png">
|
||||
<link rel="manifest" href="static/assets/meta/site.webmanifest">
|
||||
<link rel="shortcut icon" href="static/assets/meta/favicon.ico">
|
||||
<meta name="apple-mobile-web-app-title" content="PreMiD">
|
||||
<meta name="application-name" content="PreMiD">
|
||||
<meta name="msapplication-TileColor" content="#ed1c24">
|
||||
<meta name="msapplication-config" content="static/assets/meta/browserconfig.xml">
|
||||
<meta name="theme-color" content="#414042">
|
||||
<style>
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
<script type="text/javascript" src="static/js/manifest.37a2ecbb1d1b7e6c9ada.js"></script><script type="text/javascript" src="static/js/vendor.497e1de4c7ea968ba1b8.js"></script><script type="text/javascript" src="static/js/app.c5388d8d0082e725f8da.js"></script></body>
|
||||
|
||||
</html>
|
||||
@@ -1,40 +0,0 @@
|
||||
<svg width="208" height="208" viewBox="0 0 208 208" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<circle cx="104" cy="100" r="100" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d)">
|
||||
<path d="M149.691 32.4765H59.3977C51.7833 32.4765 45.584 38.6759 45.584 46.3576V137.459C45.584 145.141 51.7833 151.34 59.3977 151.34H135.81L132.239 138.875L140.864 146.893L149.017 154.44L163.504 167.243V46.3576C163.504 38.6759 157.305 32.4765 149.691 32.4765Z" fill="#7289DA"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M70 72C70 68.134 73.134 65 77 65H133C136.866 65 140 68.134 140 72V110C140 113.866 136.866 117 133 117H77C73.134 117 70 113.866 70 110V72ZM99.5 90.5L79 105V76L99.5 90.5ZM114.5 77H107.5C106.119 77 105 78.1193 105 79.5C105 80.8807 106.119 82 107.5 82H114.5C115.881 82 117 80.8807 117 79.5C117 78.1193 115.881 77 114.5 77ZM126.5 89C127.881 89 129 90.1193 129 91.5C129 92.8807 127.881 94 126.5 94H107.5C106.119 94 105 92.8807 105 91.5C105 90.1193 106.119 89 107.5 89H126.5ZM129 102.5C129 101.119 127.881 100 126.5 100H107.5C106.119 100 105 101.119 105 102.5C105 103.881 106.119 105 107.5 105H126.5C127.881 105 129 103.881 129 102.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="208" height="208" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d" x="41.584" y="32.4765" width="125.92" height="142.766" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d" x="66" y="65" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,16 +0,0 @@
|
||||
<svg width="78" height="60" viewBox="0 0 78 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 7C4 3.13401 7.13401 0 11 0H67C70.866 0 74 3.13401 74 7V45C74 48.866 70.866 52 67 52H11C7.13401 52 4 48.866 4 45V7ZM33.5 25.5L13 40V11L33.5 25.5ZM48.5 12H41.5C40.1193 12 39 13.1193 39 14.5C39 15.8807 40.1193 17 41.5 17H48.5C49.8807 17 51 15.8807 51 14.5C51 13.1193 49.8807 12 48.5 12ZM60.5 24C61.8807 24 63 25.1193 63 26.5C63 27.8807 61.8807 29 60.5 29H41.5C40.1193 29 39 27.8807 39 26.5C39 25.1193 40.1193 24 41.5 24H60.5ZM63 37.5C63 36.1193 61.8807 35 60.5 35H41.5C40.1193 35 39 36.1193 39 37.5C39 38.8807 40.1193 40 41.5 40H60.5C61.8807 40 63 38.8807 63 37.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,11 +0,0 @@
|
||||
<svg width="100%" height="100%" viewBox="0 0 60 59" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M45.5 53.5V42.5L54 48L45.5 53.5Z" fill="white"/>
|
||||
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="60" height="59">
|
||||
<path d="M38 48C38 41.9249 42.9249 37 49 37C51.2136 37 53.2744 37.6538 55 38.7789V0H0V55H40.5143C38.9436 53.0981 38 50.6593 38 48Z" fill="black"/>
|
||||
<path d="M49 59C55.0751 59 60 54.0751 60 48C60 44.1384 58.0102 40.7416 55 38.7789V55H40.5143C42.5319 57.443 45.5841 59 49 59Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0)">
|
||||
<path d="M28.4814 6.27539C15.7741 6.60057 15.1674 8.37451 6.65292 18.232C-0.842697 31.3504 6.75744 47.693 18.7606 48.8064L7.94126 38.6266L16.7352 45.502C6.40346 35.3364 8.05776 18.7253 20.466 11.1255L20.4849 11.2126C22.5536 20.7528 24.2772 28.702 27.9276 34.9492C29.8785 27.6612 30.653 23.8801 33.6304 17.8408C32.3271 22.2015 31.6973 24.0426 31.7227 28.1071C33.9929 21.2529 36.0437 17.1177 39.12 13.4218C44.3431 17.521 47.914 30.2057 46.1436 38.3551L47.381 37.0811C46.0486 39.586 43.97 41.8778 41.8381 43.9031L43.5969 43.4767C41.3585 45.875 40.2925 46.6745 37.4145 48.6998C46.9866 48.0705 54.3615 37.3529 52.0824 25.7836C49.8033 14.2142 40.5351 6.61424 28.4814 6.27539Z" fill="#A80E33"/>
|
||||
<path d="M0.159891 16.9349L0 17.5211L5.54288 15.176C-2.34507 29.6194 4.21046 47.2608 16.8418 48.4866L9.27368 39.7993L15.7226 44.596C4.85002 33.4036 6.44893 18.4804 19.5067 10.1128C21.6925 20.6594 23.1684 26.0248 27.0215 32.924C29.0745 24.8998 30.5506 20.8127 33.6837 14.1634C32.3122 18.9646 31.8982 21.5737 31.9249 26.0486C34.3139 18.5019 35.7227 14.5551 38.9601 10.4859C46.3151 18.9601 48.2338 26.475 47.381 36.9745C48.8548 36.1938 49.5264 35.2056 50.419 32.3376C49.7261 37.8272 47.381 39.9591 42.2112 43.7432C43.6769 43.3355 44.4449 43.0392 45.7289 42.4108C43.5414 45.1265 42.0534 46.4326 39.0667 48.4866C49.1398 47.7937 55.7486 36.2284 53.3503 23.4904C50.9519 10.7524 41.1985 2.38473 28.5138 2.01166C15.1414 2.36968 9.12008 6.08161 0.159891 16.9349Z" fill="#E40813"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="#7289DA"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1 +0,0 @@
|
||||
(function(r){var e=window["webpackJsonp"];window["webpackJsonp"]=function n(f,i,u){var c,a,l=0,p=[],s;for(;l<f.length;l++){a=f[l];if(t[a]){p.push(t[a][0])}t[a]=0}for(c in i){if(Object.prototype.hasOwnProperty.call(i,c)){r[c]=i[c]}}if(e)e(f,i,u);while(p.length){p.shift()()}if(u){for(l=0;l<u.length;l++){s=o(o.s=u[l])}}return s};var n={};var t={2:0};function o(e){if(n[e]){return n[e].exports}var t=n[e]={i:e,l:false,exports:{}};r[e].call(t.exports,t,t.exports,o);t.l=true;return t.exports}o.m=r;o.c=n;o.d=function(r,e,n){if(!o.o(r,e)){Object.defineProperty(r,e,{configurable:false,enumerable:true,get:n})}};o.n=function(r){var e=r&&r.__esModule?function e(){return r["default"]}:function e(){return r};o.d(e,"a",e);return e};o.o=function(r,e){return Object.prototype.hasOwnProperty.call(r,e)};o.p="";o.oe=function(r){console.error(r);throw r}})([]);
|
||||
11800
Extension_DEPRECATED/html/pages/tab/package-lock.json
generated
@@ -1,40 +0,0 @@
|
||||
<svg width="208" height="208" viewBox="0 0 208 208" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<circle cx="104" cy="100" r="100" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d)">
|
||||
<path d="M149.691 32.4765H59.3977C51.7833 32.4765 45.584 38.6759 45.584 46.3576V137.459C45.584 145.141 51.7833 151.34 59.3977 151.34H135.81L132.239 138.875L140.864 146.893L149.017 154.44L163.504 167.243V46.3576C163.504 38.6759 157.305 32.4765 149.691 32.4765Z" fill="#7289DA"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M70 72C70 68.134 73.134 65 77 65H133C136.866 65 140 68.134 140 72V110C140 113.866 136.866 117 133 117H77C73.134 117 70 113.866 70 110V72ZM99.5 90.5L79 105V76L99.5 90.5ZM114.5 77H107.5C106.119 77 105 78.1193 105 79.5C105 80.8807 106.119 82 107.5 82H114.5C115.881 82 117 80.8807 117 79.5C117 78.1193 115.881 77 114.5 77ZM126.5 89C127.881 89 129 90.1193 129 91.5C129 92.8807 127.881 94 126.5 94H107.5C106.119 94 105 92.8807 105 91.5C105 90.1193 106.119 89 107.5 89H126.5ZM129 102.5C129 101.119 127.881 100 126.5 100H107.5C106.119 100 105 101.119 105 102.5C105 103.881 106.119 105 107.5 105H126.5C127.881 105 129 103.881 129 102.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="208" height="208" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d" x="41.584" y="32.4765" width="125.92" height="142.766" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d" x="66" y="65" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,16 +0,0 @@
|
||||
<svg width="78" height="60" viewBox="0 0 78 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 7C4 3.13401 7.13401 0 11 0H67C70.866 0 74 3.13401 74 7V45C74 48.866 70.866 52 67 52H11C7.13401 52 4 48.866 4 45V7ZM33.5 25.5L13 40V11L33.5 25.5ZM48.5 12H41.5C40.1193 12 39 13.1193 39 14.5C39 15.8807 40.1193 17 41.5 17H48.5C49.8807 17 51 15.8807 51 14.5C51 13.1193 49.8807 12 48.5 12ZM60.5 24C61.8807 24 63 25.1193 63 26.5C63 27.8807 61.8807 29 60.5 29H41.5C40.1193 29 39 27.8807 39 26.5C39 25.1193 40.1193 24 41.5 24H60.5ZM63 37.5C63 36.1193 61.8807 35 60.5 35H41.5C40.1193 35 39 36.1193 39 37.5C39 38.8807 40.1193 40 41.5 40H60.5C61.8807 40 63 38.8807 63 37.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,11 +0,0 @@
|
||||
<svg width="100%" height="100%" viewBox="0 0 60 59" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M45.5 53.5V42.5L54 48L45.5 53.5Z" fill="white"/>
|
||||
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="60" height="59">
|
||||
<path d="M38 48C38 41.9249 42.9249 37 49 37C51.2136 37 53.2744 37.6538 55 38.7789V0H0V55H40.5143C38.9436 53.0981 38 50.6593 38 48Z" fill="black"/>
|
||||
<path d="M49 59C55.0751 59 60 54.0751 60 48C60 44.1384 58.0102 40.7416 55 38.7789V55H40.5143C42.5319 57.443 45.5841 59 49 59Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0)">
|
||||
<path d="M28.4814 6.27539C15.7741 6.60057 15.1674 8.37451 6.65292 18.232C-0.842697 31.3504 6.75744 47.693 18.7606 48.8064L7.94126 38.6266L16.7352 45.502C6.40346 35.3364 8.05776 18.7253 20.466 11.1255L20.4849 11.2126C22.5536 20.7528 24.2772 28.702 27.9276 34.9492C29.8785 27.6612 30.653 23.8801 33.6304 17.8408C32.3271 22.2015 31.6973 24.0426 31.7227 28.1071C33.9929 21.2529 36.0437 17.1177 39.12 13.4218C44.3431 17.521 47.914 30.2057 46.1436 38.3551L47.381 37.0811C46.0486 39.586 43.97 41.8778 41.8381 43.9031L43.5969 43.4767C41.3585 45.875 40.2925 46.6745 37.4145 48.6998C46.9866 48.0705 54.3615 37.3529 52.0824 25.7836C49.8033 14.2142 40.5351 6.61424 28.4814 6.27539Z" fill="#A80E33"/>
|
||||
<path d="M0.159891 16.9349L0 17.5211L5.54288 15.176C-2.34507 29.6194 4.21046 47.2608 16.8418 48.4866L9.27368 39.7993L15.7226 44.596C4.85002 33.4036 6.44893 18.4804 19.5067 10.1128C21.6925 20.6594 23.1684 26.0248 27.0215 32.924C29.0745 24.8998 30.5506 20.8127 33.6837 14.1634C32.3122 18.9646 31.8982 21.5737 31.9249 26.0486C34.3139 18.5019 35.7227 14.5551 38.9601 10.4859C46.3151 18.9601 48.2338 26.475 47.381 36.9745C48.8548 36.1938 49.5264 35.2056 50.419 32.3376C49.7261 37.8272 47.381 39.9591 42.2112 43.7432C43.6769 43.3355 44.4449 43.0392 45.7289 42.4108C43.5414 45.1265 42.0534 46.4326 39.0667 48.4866C49.1398 47.7937 55.7486 36.2284 53.3503 23.4904C50.9519 10.7524 41.1985 2.38473 28.5138 2.01166C15.1414 2.36968 9.12008 6.08161 0.159891 16.9349Z" fill="#E40813"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="#7289DA"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,31 +0,0 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<link href="https://rsms.me/inter/inter.css" rel="stylesheet">
|
||||
<link href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" rel="stylesheet">
|
||||
<link href="static/assets/fonts/stylesheet.css" rel="stylesheet">
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="static/assets/meta/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="static/assets/meta/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="static/assets/meta/favicon-16x16.png">
|
||||
<link rel="manifest" href="static/assets/meta/site.webmanifest">
|
||||
<link rel="shortcut icon" href="static/assets/meta/favicon.ico">
|
||||
<meta name="apple-mobile-web-app-title" content="PreMiD">
|
||||
<meta name="application-name" content="PreMiD">
|
||||
<meta name="msapplication-TileColor" content="#ed1c24">
|
||||
<meta name="msapplication-config" content="static/assets/meta/browserconfig.xml">
|
||||
<meta name="theme-color" content="#414042">
|
||||
<style>
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
<script type="text/javascript" src="static/js/manifest.37a2ecbb1d1b7e6c9ada.js"></script><script type="text/javascript" src="static/js/vendor.239f8f47f7af929233ef.js"></script><script type="text/javascript" src="static/js/app.42bfa9a61b9dcd5d77cb.js"></script></body>
|
||||
|
||||
</html>
|
||||
@@ -1,40 +0,0 @@
|
||||
<svg width="208" height="208" viewBox="0 0 208 208" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<circle cx="104" cy="100" r="100" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d)">
|
||||
<path d="M149.691 32.4765H59.3977C51.7833 32.4765 45.584 38.6759 45.584 46.3576V137.459C45.584 145.141 51.7833 151.34 59.3977 151.34H135.81L132.239 138.875L140.864 146.893L149.017 154.44L163.504 167.243V46.3576C163.504 38.6759 157.305 32.4765 149.691 32.4765Z" fill="#7289DA"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M70 72C70 68.134 73.134 65 77 65H133C136.866 65 140 68.134 140 72V110C140 113.866 136.866 117 133 117H77C73.134 117 70 113.866 70 110V72ZM99.5 90.5L79 105V76L99.5 90.5ZM114.5 77H107.5C106.119 77 105 78.1193 105 79.5C105 80.8807 106.119 82 107.5 82H114.5C115.881 82 117 80.8807 117 79.5C117 78.1193 115.881 77 114.5 77ZM126.5 89C127.881 89 129 90.1193 129 91.5C129 92.8807 127.881 94 126.5 94H107.5C106.119 94 105 92.8807 105 91.5C105 90.1193 106.119 89 107.5 89H126.5ZM129 102.5C129 101.119 127.881 100 126.5 100H107.5C106.119 100 105 101.119 105 102.5C105 103.881 106.119 105 107.5 105H126.5C127.881 105 129 103.881 129 102.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="208" height="208" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d" x="41.584" y="32.4765" width="125.92" height="142.766" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d" x="66" y="65" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,16 +0,0 @@
|
||||
<svg width="78" height="60" viewBox="0 0 78 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 7C4 3.13401 7.13401 0 11 0H67C70.866 0 74 3.13401 74 7V45C74 48.866 70.866 52 67 52H11C7.13401 52 4 48.866 4 45V7ZM33.5 25.5L13 40V11L33.5 25.5ZM48.5 12H41.5C40.1193 12 39 13.1193 39 14.5C39 15.8807 40.1193 17 41.5 17H48.5C49.8807 17 51 15.8807 51 14.5C51 13.1193 49.8807 12 48.5 12ZM60.5 24C61.8807 24 63 25.1193 63 26.5C63 27.8807 61.8807 29 60.5 29H41.5C40.1193 29 39 27.8807 39 26.5C39 25.1193 40.1193 24 41.5 24H60.5ZM63 37.5C63 36.1193 61.8807 35 60.5 35H41.5C40.1193 35 39 36.1193 39 37.5C39 38.8807 40.1193 40 41.5 40H60.5C61.8807 40 63 38.8807 63 37.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,11 +0,0 @@
|
||||
<svg width="100%" height="100%" viewBox="0 0 60 59" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M45.5 53.5V42.5L54 48L45.5 53.5Z" fill="white"/>
|
||||
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="60" height="59">
|
||||
<path d="M38 48C38 41.9249 42.9249 37 49 37C51.2136 37 53.2744 37.6538 55 38.7789V0H0V55H40.5143C38.9436 53.0981 38 50.6593 38 48Z" fill="black"/>
|
||||
<path d="M49 59C55.0751 59 60 54.0751 60 48C60 44.1384 58.0102 40.7416 55 38.7789V55H40.5143C42.5319 57.443 45.5841 59 49 59Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0)">
|
||||
<path d="M28.4814 6.27539C15.7741 6.60057 15.1674 8.37451 6.65292 18.232C-0.842697 31.3504 6.75744 47.693 18.7606 48.8064L7.94126 38.6266L16.7352 45.502C6.40346 35.3364 8.05776 18.7253 20.466 11.1255L20.4849 11.2126C22.5536 20.7528 24.2772 28.702 27.9276 34.9492C29.8785 27.6612 30.653 23.8801 33.6304 17.8408C32.3271 22.2015 31.6973 24.0426 31.7227 28.1071C33.9929 21.2529 36.0437 17.1177 39.12 13.4218C44.3431 17.521 47.914 30.2057 46.1436 38.3551L47.381 37.0811C46.0486 39.586 43.97 41.8778 41.8381 43.9031L43.5969 43.4767C41.3585 45.875 40.2925 46.6745 37.4145 48.6998C46.9866 48.0705 54.3615 37.3529 52.0824 25.7836C49.8033 14.2142 40.5351 6.61424 28.4814 6.27539Z" fill="#A80E33"/>
|
||||
<path d="M0.159891 16.9349L0 17.5211L5.54288 15.176C-2.34507 29.6194 4.21046 47.2608 16.8418 48.4866L9.27368 39.7993L15.7226 44.596C4.85002 33.4036 6.44893 18.4804 19.5067 10.1128C21.6925 20.6594 23.1684 26.0248 27.0215 32.924C29.0745 24.8998 30.5506 20.8127 33.6837 14.1634C32.3122 18.9646 31.8982 21.5737 31.9249 26.0486C34.3139 18.5019 35.7227 14.5551 38.9601 10.4859C46.3151 18.9601 48.2338 26.475 47.381 36.9745C48.8548 36.1938 49.5264 35.2056 50.419 32.3376C49.7261 37.8272 47.381 39.9591 42.2112 43.7432C43.6769 43.3355 44.4449 43.0392 45.7289 42.4108C43.5414 45.1265 42.0534 46.4326 39.0667 48.4866C49.1398 47.7937 55.7486 36.2284 53.3503 23.4904C50.9519 10.7524 41.1985 2.38473 28.5138 2.01166C15.1414 2.36968 9.12008 6.08161 0.159891 16.9349Z" fill="#E40813"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="#7289DA"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1 +0,0 @@
|
||||
(function(r){var e=window["webpackJsonp"];window["webpackJsonp"]=function n(f,i,u){var c,a,l=0,p=[],s;for(;l<f.length;l++){a=f[l];if(t[a]){p.push(t[a][0])}t[a]=0}for(c in i){if(Object.prototype.hasOwnProperty.call(i,c)){r[c]=i[c]}}if(e)e(f,i,u);while(p.length){p.shift()()}if(u){for(l=0;l<u.length;l++){s=o(o.s=u[l])}}return s};var n={};var t={2:0};function o(e){if(n[e]){return n[e].exports}var t=n[e]={i:e,l:false,exports:{}};r[e].call(t.exports,t,t.exports,o);t.l=true;return t.exports}o.m=r;o.c=n;o.d=function(r,e,n){if(!o.o(r,e)){Object.defineProperty(r,e,{configurable:false,enumerable:true,get:n})}};o.n=function(r){var e=r&&r.__esModule?function e(){return r["default"]}:function e(){return r};o.d(e,"a",e);return e};o.o=function(r,e){return Object.prototype.hasOwnProperty.call(r,e)};o.p="";o.oe=function(r){console.error(r);throw r}})([]);
|
||||
@@ -1,31 +0,0 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<link href="https://rsms.me/inter/inter.css" rel="stylesheet">
|
||||
<link href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" rel="stylesheet">
|
||||
<link href="static/assets/fonts/stylesheet.css" rel="stylesheet">
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="static/assets/meta/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="static/assets/meta/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="static/assets/meta/favicon-16x16.png">
|
||||
<link rel="manifest" href="static/assets/meta/site.webmanifest">
|
||||
<link rel="shortcut icon" href="static/assets/meta/favicon.ico">
|
||||
<meta name="apple-mobile-web-app-title" content="PreMiD">
|
||||
<meta name="application-name" content="PreMiD">
|
||||
<meta name="msapplication-TileColor" content="#ed1c24">
|
||||
<meta name="msapplication-config" content="static/assets/meta/browserconfig.xml">
|
||||
<meta name="theme-color" content="#414042">
|
||||
<style>
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
<script type="text/javascript" src="static/js/manifest.37a2ecbb1d1b7e6c9ada.js"></script><script type="text/javascript" src="static/js/vendor.497e1de4c7ea968ba1b8.js"></script><script type="text/javascript" src="static/js/app.c5388d8d0082e725f8da.js"></script></body>
|
||||
|
||||
</html>
|
||||
@@ -1,40 +0,0 @@
|
||||
<svg width="208" height="208" viewBox="0 0 208 208" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<circle cx="104" cy="100" r="100" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d)">
|
||||
<path d="M149.691 32.4765H59.3977C51.7833 32.4765 45.584 38.6759 45.584 46.3576V137.459C45.584 145.141 51.7833 151.34 59.3977 151.34H135.81L132.239 138.875L140.864 146.893L149.017 154.44L163.504 167.243V46.3576C163.504 38.6759 157.305 32.4765 149.691 32.4765Z" fill="#7289DA"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M70 72C70 68.134 73.134 65 77 65H133C136.866 65 140 68.134 140 72V110C140 113.866 136.866 117 133 117H77C73.134 117 70 113.866 70 110V72ZM99.5 90.5L79 105V76L99.5 90.5ZM114.5 77H107.5C106.119 77 105 78.1193 105 79.5C105 80.8807 106.119 82 107.5 82H114.5C115.881 82 117 80.8807 117 79.5C117 78.1193 115.881 77 114.5 77ZM126.5 89C127.881 89 129 90.1193 129 91.5C129 92.8807 127.881 94 126.5 94H107.5C106.119 94 105 92.8807 105 91.5C105 90.1193 106.119 89 107.5 89H126.5ZM129 102.5C129 101.119 127.881 100 126.5 100H107.5C106.119 100 105 101.119 105 102.5C105 103.881 106.119 105 107.5 105H126.5C127.881 105 129 103.881 129 102.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="208" height="208" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d" x="41.584" y="32.4765" width="125.92" height="142.766" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d" x="66" y="65" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,16 +0,0 @@
|
||||
<svg width="78" height="60" viewBox="0 0 78 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 7C4 3.13401 7.13401 0 11 0H67C70.866 0 74 3.13401 74 7V45C74 48.866 70.866 52 67 52H11C7.13401 52 4 48.866 4 45V7ZM33.5 25.5L13 40V11L33.5 25.5ZM48.5 12H41.5C40.1193 12 39 13.1193 39 14.5C39 15.8807 40.1193 17 41.5 17H48.5C49.8807 17 51 15.8807 51 14.5C51 13.1193 49.8807 12 48.5 12ZM60.5 24C61.8807 24 63 25.1193 63 26.5C63 27.8807 61.8807 29 60.5 29H41.5C40.1193 29 39 27.8807 39 26.5C39 25.1193 40.1193 24 41.5 24H60.5ZM63 37.5C63 36.1193 61.8807 35 60.5 35H41.5C40.1193 35 39 36.1193 39 37.5C39 38.8807 40.1193 40 41.5 40H60.5C61.8807 40 63 38.8807 63 37.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,11 +0,0 @@
|
||||
<svg width="100%" height="100%" viewBox="0 0 60 59" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M45.5 53.5V42.5L54 48L45.5 53.5Z" fill="white"/>
|
||||
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="60" height="59">
|
||||
<path d="M38 48C38 41.9249 42.9249 37 49 37C51.2136 37 53.2744 37.6538 55 38.7789V0H0V55H40.5143C38.9436 53.0981 38 50.6593 38 48Z" fill="black"/>
|
||||
<path d="M49 59C55.0751 59 60 54.0751 60 48C60 44.1384 58.0102 40.7416 55 38.7789V55H40.5143C42.5319 57.443 45.5841 59 49 59Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0)">
|
||||
<path d="M28.4814 6.27539C15.7741 6.60057 15.1674 8.37451 6.65292 18.232C-0.842697 31.3504 6.75744 47.693 18.7606 48.8064L7.94126 38.6266L16.7352 45.502C6.40346 35.3364 8.05776 18.7253 20.466 11.1255L20.4849 11.2126C22.5536 20.7528 24.2772 28.702 27.9276 34.9492C29.8785 27.6612 30.653 23.8801 33.6304 17.8408C32.3271 22.2015 31.6973 24.0426 31.7227 28.1071C33.9929 21.2529 36.0437 17.1177 39.12 13.4218C44.3431 17.521 47.914 30.2057 46.1436 38.3551L47.381 37.0811C46.0486 39.586 43.97 41.8778 41.8381 43.9031L43.5969 43.4767C41.3585 45.875 40.2925 46.6745 37.4145 48.6998C46.9866 48.0705 54.3615 37.3529 52.0824 25.7836C49.8033 14.2142 40.5351 6.61424 28.4814 6.27539Z" fill="#A80E33"/>
|
||||
<path d="M0.159891 16.9349L0 17.5211L5.54288 15.176C-2.34507 29.6194 4.21046 47.2608 16.8418 48.4866L9.27368 39.7993L15.7226 44.596C4.85002 33.4036 6.44893 18.4804 19.5067 10.1128C21.6925 20.6594 23.1684 26.0248 27.0215 32.924C29.0745 24.8998 30.5506 20.8127 33.6837 14.1634C32.3122 18.9646 31.8982 21.5737 31.9249 26.0486C34.3139 18.5019 35.7227 14.5551 38.9601 10.4859C46.3151 18.9601 48.2338 26.475 47.381 36.9745C48.8548 36.1938 49.5264 35.2056 50.419 32.3376C49.7261 37.8272 47.381 39.9591 42.2112 43.7432C43.6769 43.3355 44.4449 43.0392 45.7289 42.4108C43.5414 45.1265 42.0534 46.4326 39.0667 48.4866C49.1398 47.7937 55.7486 36.2284 53.3503 23.4904C50.9519 10.7524 41.1985 2.38473 28.5138 2.01166C15.1414 2.36968 9.12008 6.08161 0.159891 16.9349Z" fill="#E40813"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="#7289DA"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1 +0,0 @@
|
||||
(function(r){var e=window["webpackJsonp"];window["webpackJsonp"]=function n(f,i,u){var c,a,l=0,p=[],s;for(;l<f.length;l++){a=f[l];if(t[a]){p.push(t[a][0])}t[a]=0}for(c in i){if(Object.prototype.hasOwnProperty.call(i,c)){r[c]=i[c]}}if(e)e(f,i,u);while(p.length){p.shift()()}if(u){for(l=0;l<u.length;l++){s=o(o.s=u[l])}}return s};var n={};var t={2:0};function o(e){if(n[e]){return n[e].exports}var t=n[e]={i:e,l:false,exports:{}};r[e].call(t.exports,t,t.exports,o);t.l=true;return t.exports}o.m=r;o.c=n;o.d=function(r,e,n){if(!o.o(r,e)){Object.defineProperty(r,e,{configurable:false,enumerable:true,get:n})}};o.n=function(r){var e=r&&r.__esModule?function e(){return r["default"]}:function e(){return r};o.d(e,"a",e);return e};o.o=function(r,e){return Object.prototype.hasOwnProperty.call(r,e)};o.p="";o.oe=function(r){console.error(r);throw r}})([]);
|
||||
@@ -1,31 +0,0 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<link href="https://rsms.me/inter/inter.css" rel="stylesheet">
|
||||
<link href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" rel="stylesheet">
|
||||
<link href="static/assets/fonts/stylesheet.css" rel="stylesheet">
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="static/assets/meta/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="static/assets/meta/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="static/assets/meta/favicon-16x16.png">
|
||||
<link rel="manifest" href="static/assets/meta/site.webmanifest">
|
||||
<link rel="shortcut icon" href="static/assets/meta/favicon.ico">
|
||||
<meta name="apple-mobile-web-app-title" content="PreMiD">
|
||||
<meta name="application-name" content="PreMiD">
|
||||
<meta name="msapplication-TileColor" content="#ed1c24">
|
||||
<meta name="msapplication-config" content="static/assets/meta/browserconfig.xml">
|
||||
<meta name="theme-color" content="#414042">
|
||||
<style>
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
<script type="text/javascript" src="static/js/manifest.37a2ecbb1d1b7e6c9ada.js"></script><script type="text/javascript" src="static/js/vendor.239f8f47f7af929233ef.js"></script><script type="text/javascript" src="static/js/app.42bfa9a61b9dcd5d77cb.js"></script></body>
|
||||
|
||||
</html>
|
||||
@@ -1,40 +0,0 @@
|
||||
<svg width="208" height="208" viewBox="0 0 208 208" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<circle cx="104" cy="100" r="100" fill="white"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d)">
|
||||
<path d="M149.691 32.4765H59.3977C51.7833 32.4765 45.584 38.6759 45.584 46.3576V137.459C45.584 145.141 51.7833 151.34 59.3977 151.34H135.81L132.239 138.875L140.864 146.893L149.017 154.44L163.504 167.243V46.3576C163.504 38.6759 157.305 32.4765 149.691 32.4765Z" fill="#7289DA"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M70 72C70 68.134 73.134 65 77 65H133C136.866 65 140 68.134 140 72V110C140 113.866 136.866 117 133 117H77C73.134 117 70 113.866 70 110V72ZM99.5 90.5L79 105V76L99.5 90.5ZM114.5 77H107.5C106.119 77 105 78.1193 105 79.5C105 80.8807 106.119 82 107.5 82H114.5C115.881 82 117 80.8807 117 79.5C117 78.1193 115.881 77 114.5 77ZM126.5 89C127.881 89 129 90.1193 129 91.5C129 92.8807 127.881 94 126.5 94H107.5C106.119 94 105 92.8807 105 91.5C105 90.1193 106.119 89 107.5 89H126.5ZM129 102.5C129 101.119 127.881 100 126.5 100H107.5C106.119 100 105 101.119 105 102.5C105 103.881 106.119 105 107.5 105H126.5C127.881 105 129 103.881 129 102.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="208" height="208" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d" x="41.584" y="32.4765" width="125.92" height="142.766" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d" x="66" y="65" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 3.0 KiB |
@@ -1,16 +0,0 @@
|
||||
<svg width="78" height="60" viewBox="0 0 78 60" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d)">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M4 7C4 3.13401 7.13401 0 11 0H67C70.866 0 74 3.13401 74 7V45C74 48.866 70.866 52 67 52H11C7.13401 52 4 48.866 4 45V7ZM33.5 25.5L13 40V11L33.5 25.5ZM48.5 12H41.5C40.1193 12 39 13.1193 39 14.5C39 15.8807 40.1193 17 41.5 17H48.5C49.8807 17 51 15.8807 51 14.5C51 13.1193 49.8807 12 48.5 12ZM60.5 24C61.8807 24 63 25.1193 63 26.5C63 27.8807 61.8807 29 60.5 29H41.5C40.1193 29 39 27.8807 39 26.5C39 25.1193 40.1193 24 41.5 24H60.5ZM63 37.5C63 36.1193 61.8807 35 60.5 35H41.5C40.1193 35 39 36.1193 39 37.5C39 38.8807 40.1193 40 41.5 40H60.5C61.8807 40 63 38.8807 63 37.5Z" fill="white"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d" x="0" y="0" width="78" height="60" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/>
|
||||
<feOffset dy="4"/>
|
||||
<feGaussianBlur stdDeviation="2"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1,11 +0,0 @@
|
||||
<svg width="100%" height="100%" viewBox="0 0 60 59" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M45.5 53.5V42.5L54 48L45.5 53.5Z" fill="white"/>
|
||||
<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="0" y="0" width="60" height="59">
|
||||
<path d="M38 48C38 41.9249 42.9249 37 49 37C51.2136 37 53.2744 37.6538 55 38.7789V0H0V55H40.5143C38.9436 53.0981 38 50.6593 38 48Z" fill="black"/>
|
||||
<path d="M49 59C55.0751 59 60 54.0751 60 48C60 44.1384 58.0102 40.7416 55 38.7789V55H40.5143C42.5319 57.443 45.5841 59 49 59Z" fill="black"/>
|
||||
</mask>
|
||||
<g mask="url(#mask0)">
|
||||
<path d="M28.4814 6.27539C15.7741 6.60057 15.1674 8.37451 6.65292 18.232C-0.842697 31.3504 6.75744 47.693 18.7606 48.8064L7.94126 38.6266L16.7352 45.502C6.40346 35.3364 8.05776 18.7253 20.466 11.1255L20.4849 11.2126C22.5536 20.7528 24.2772 28.702 27.9276 34.9492C29.8785 27.6612 30.653 23.8801 33.6304 17.8408C32.3271 22.2015 31.6973 24.0426 31.7227 28.1071C33.9929 21.2529 36.0437 17.1177 39.12 13.4218C44.3431 17.521 47.914 30.2057 46.1436 38.3551L47.381 37.0811C46.0486 39.586 43.97 41.8778 41.8381 43.9031L43.5969 43.4767C41.3585 45.875 40.2925 46.6745 37.4145 48.6998C46.9866 48.0705 54.3615 37.3529 52.0824 25.7836C49.8033 14.2142 40.5351 6.61424 28.4814 6.27539Z" fill="#A80E33"/>
|
||||
<path d="M0.159891 16.9349L0 17.5211L5.54288 15.176C-2.34507 29.6194 4.21046 47.2608 16.8418 48.4866L9.27368 39.7993L15.7226 44.596C4.85002 33.4036 6.44893 18.4804 19.5067 10.1128C21.6925 20.6594 23.1684 26.0248 27.0215 32.924C29.0745 24.8998 30.5506 20.8127 33.6837 14.1634C32.3122 18.9646 31.8982 21.5737 31.9249 26.0486C34.3139 18.5019 35.7227 14.5551 38.9601 10.4859C46.3151 18.9601 48.2338 26.475 47.381 36.9745C48.8548 36.1938 49.5264 35.2056 50.419 32.3376C49.7261 37.8272 47.381 39.9591 42.2112 43.7432C43.6769 43.3355 44.4449 43.0392 45.7289 42.4108C43.5414 45.1265 42.0534 46.4326 39.0667 48.4866C49.1398 47.7937 55.7486 36.2284 53.3503 23.4904C50.9519 10.7524 41.1985 2.38473 28.5138 2.01166C15.1414 2.36968 9.12008 6.08161 0.159891 16.9349Z" fill="#E40813"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 2.0 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="white"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1,3 +0,0 @@
|
||||
<svg width="104" height="22" viewBox="0 0 104 22" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0.28 22H5.65V15.79H8.8C13.93 15.79 16.54 12.04 16.54 8.26C16.54 4.51 13.96 0.76 8.77 0.76H0.28V22ZM5.65 11.02V5.77H8.77C12.01 5.74 12.01 11.05 8.77 11.02H5.65ZM30.7209 22H37.4109L31.6209 14.71C34.2009 13.9 35.7909 11.68 35.7909 7.75C35.6709 2.77 32.2809 0.76 27.9009 0.76H19.4109V22H24.8409V15.25H25.8009L30.7209 22ZM24.8409 10.63V5.77H27.9909C31.3809 5.77 31.3809 10.63 27.9909 10.63H24.8409ZM45.7295 5.8H55.0895V0.76H40.2995V22H55.0895V16.93H45.7295V13.75H54.3395V9.1H45.7295V5.8ZM57.9655 22H63.3355V15.88L62.9755 11.59L63.1255 11.56L65.9755 18.85H69.6655L72.4555 11.56L72.6355 11.59L72.3055 15.88L72.2755 22H77.6755V0.76H72.3055L67.8055 11.14L63.3355 0.76H57.9655V22ZM85.9234 0.76H80.5534V22H85.9234V0.76ZM87.3152 0.879998C87.1952 0.969999 87.1352 3.01 87.1352 5.38V9.73L89.7152 12.04C91.1252 13.3 92.3552 14.35 92.4452 14.35C92.5052 14.35 92.5652 12.46 92.5652 10.18V5.98H94.5752C96.1952 5.98 96.6452 6.07 97.1552 6.49L97.7852 6.97V11.26C97.7852 13.6 97.6952 15.7 97.6352 15.91C97.2752 16.81 96.3452 16.99 91.6352 16.99H87.1352V19.48V22H92.1752C96.6452 22 97.3652 21.94 98.6552 21.49C100.515 20.89 102.045 19.54 102.765 17.89C103.305 16.66 103.335 16.39 103.335 11.47C103.335 6.61 103.305 6.28 102.765 5.11C102.045 3.49 100.605 2.14 98.8052 1.45C97.5752 0.91 96.9452 0.879998 92.4452 0.789999C89.7152 0.729998 87.4052 0.789999 87.3152 0.879998Z" fill="#7289DA"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.4 KiB |
@@ -1 +0,0 @@
|
||||
(function(r){var e=window["webpackJsonp"];window["webpackJsonp"]=function n(f,i,u){var c,a,l=0,p=[],s;for(;l<f.length;l++){a=f[l];if(t[a]){p.push(t[a][0])}t[a]=0}for(c in i){if(Object.prototype.hasOwnProperty.call(i,c)){r[c]=i[c]}}if(e)e(f,i,u);while(p.length){p.shift()()}if(u){for(l=0;l<u.length;l++){s=o(o.s=u[l])}}return s};var n={};var t={2:0};function o(e){if(n[e]){return n[e].exports}var t=n[e]={i:e,l:false,exports:{}};r[e].call(t.exports,t,t.exports,o);t.l=true;return t.exports}o.m=r;o.c=n;o.d=function(r,e,n){if(!o.o(r,e)){Object.defineProperty(r,e,{configurable:false,enumerable:true,get:n})}};o.n=function(r){var e=r&&r.__esModule?function e(){return r["default"]}:function e(){return r};o.d(e,"a",e);return e};o.o=function(r,e){return Object.prototype.hasOwnProperty.call(r,e)};o.p="";o.oe=function(r){console.error(r);throw r}})([]);
|
||||
@@ -1,31 +0,0 @@
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
|
||||
<link href="https://rsms.me/inter/inter.css" rel="stylesheet">
|
||||
<link href="https://use.fontawesome.com/releases/v5.7.2/css/all.css" rel="stylesheet">
|
||||
<link href="static/assets/fonts/stylesheet.css" rel="stylesheet">
|
||||
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="static/assets/meta/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="static/assets/meta/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="static/assets/meta/favicon-16x16.png">
|
||||
<link rel="manifest" href="static/assets/meta/site.webmanifest">
|
||||
<link rel="shortcut icon" href="static/assets/meta/favicon.ico">
|
||||
<meta name="apple-mobile-web-app-title" content="PreMiD">
|
||||
<meta name="application-name" content="PreMiD">
|
||||
<meta name="msapplication-TileColor" content="#ed1c24">
|
||||
<meta name="msapplication-config" content="static/assets/meta/browserconfig.xml">
|
||||
<meta name="theme-color" content="#414042">
|
||||
<style>
|
||||
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<!-- built files will be auto injected -->
|
||||
<script type="text/javascript" src="static/js/manifest.37a2ecbb1d1b7e6c9ada.js"></script><script type="text/javascript" src="static/js/vendor.239f8f47f7af929233ef.js"></script><script type="text/javascript" src="static/js/app.42bfa9a61b9dcd5d77cb.js"></script></body>
|
||||
|
||||
</html>
|
||||
386
LICENSE
@@ -1,21 +1,373 @@
|
||||
MIT License
|
||||
Mozilla Public License Version 2.0
|
||||
==================================
|
||||
|
||||
Copyright (c) 2018 Florian Metz
|
||||
1. Definitions
|
||||
--------------
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
1.1. "Contributor"
|
||||
means each individual or legal entity that creates, contributes to
|
||||
the creation of, or owns Covered Software.
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
1.2. "Contributor Version"
|
||||
means the combination of the Contributions of others (if any) used
|
||||
by a Contributor and that particular Contributor's Contribution.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
1.3. "Contribution"
|
||||
means Covered Software of a particular Contributor.
|
||||
|
||||
1.4. "Covered Software"
|
||||
means Source Code Form to which the initial Contributor has attached
|
||||
the notice in Exhibit A, the Executable Form of such Source Code
|
||||
Form, and Modifications of such Source Code Form, in each case
|
||||
including portions thereof.
|
||||
|
||||
1.5. "Incompatible With Secondary Licenses"
|
||||
means
|
||||
|
||||
(a) that the initial Contributor has attached the notice described
|
||||
in Exhibit B to the Covered Software; or
|
||||
|
||||
(b) that the Covered Software was made available under the terms of
|
||||
version 1.1 or earlier of the License, but not also under the
|
||||
terms of a Secondary License.
|
||||
|
||||
1.6. "Executable Form"
|
||||
means any form of the work other than Source Code Form.
|
||||
|
||||
1.7. "Larger Work"
|
||||
means a work that combines Covered Software with other material, in
|
||||
a separate file or files, that is not Covered Software.
|
||||
|
||||
1.8. "License"
|
||||
means this document.
|
||||
|
||||
1.9. "Licensable"
|
||||
means having the right to grant, to the maximum extent possible,
|
||||
whether at the time of the initial grant or subsequently, any and
|
||||
all of the rights conveyed by this License.
|
||||
|
||||
1.10. "Modifications"
|
||||
means any of the following:
|
||||
|
||||
(a) any file in Source Code Form that results from an addition to,
|
||||
deletion from, or modification of the contents of Covered
|
||||
Software; or
|
||||
|
||||
(b) any new file in Source Code Form that contains any Covered
|
||||
Software.
|
||||
|
||||
1.11. "Patent Claims" of a Contributor
|
||||
means any patent claim(s), including without limitation, method,
|
||||
process, and apparatus claims, in any patent Licensable by such
|
||||
Contributor that would be infringed, but for the grant of the
|
||||
License, by the making, using, selling, offering for sale, having
|
||||
made, import, or transfer of either its Contributions or its
|
||||
Contributor Version.
|
||||
|
||||
1.12. "Secondary License"
|
||||
means either the GNU General Public License, Version 2.0, the GNU
|
||||
Lesser General Public License, Version 2.1, the GNU Affero General
|
||||
Public License, Version 3.0, or any later versions of those
|
||||
licenses.
|
||||
|
||||
1.13. "Source Code Form"
|
||||
means the form of the work preferred for making modifications.
|
||||
|
||||
1.14. "You" (or "Your")
|
||||
means an individual or a legal entity exercising rights under this
|
||||
License. For legal entities, "You" includes any entity that
|
||||
controls, is controlled by, or is under common control with You. For
|
||||
purposes of this definition, "control" means (a) the power, direct
|
||||
or indirect, to cause the direction or management of such entity,
|
||||
whether by contract or otherwise, or (b) ownership of more than
|
||||
fifty percent (50%) of the outstanding shares or beneficial
|
||||
ownership of such entity.
|
||||
|
||||
2. License Grants and Conditions
|
||||
--------------------------------
|
||||
|
||||
2.1. Grants
|
||||
|
||||
Each Contributor hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license:
|
||||
|
||||
(a) under intellectual property rights (other than patent or trademark)
|
||||
Licensable by such Contributor to use, reproduce, make available,
|
||||
modify, display, perform, distribute, and otherwise exploit its
|
||||
Contributions, either on an unmodified basis, with Modifications, or
|
||||
as part of a Larger Work; and
|
||||
|
||||
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
||||
for sale, have made, import, and otherwise transfer either its
|
||||
Contributions or its Contributor Version.
|
||||
|
||||
2.2. Effective Date
|
||||
|
||||
The licenses granted in Section 2.1 with respect to any Contribution
|
||||
become effective for each Contribution on the date the Contributor first
|
||||
distributes such Contribution.
|
||||
|
||||
2.3. Limitations on Grant Scope
|
||||
|
||||
The licenses granted in this Section 2 are the only rights granted under
|
||||
this License. No additional rights or licenses will be implied from the
|
||||
distribution or licensing of Covered Software under this License.
|
||||
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
||||
Contributor:
|
||||
|
||||
(a) for any code that a Contributor has removed from Covered Software;
|
||||
or
|
||||
|
||||
(b) for infringements caused by: (i) Your and any other third party's
|
||||
modifications of Covered Software, or (ii) the combination of its
|
||||
Contributions with other software (except as part of its Contributor
|
||||
Version); or
|
||||
|
||||
(c) under Patent Claims infringed by Covered Software in the absence of
|
||||
its Contributions.
|
||||
|
||||
This License does not grant any rights in the trademarks, service marks,
|
||||
or logos of any Contributor (except as may be necessary to comply with
|
||||
the notice requirements in Section 3.4).
|
||||
|
||||
2.4. Subsequent Licenses
|
||||
|
||||
No Contributor makes additional grants as a result of Your choice to
|
||||
distribute the Covered Software under a subsequent version of this
|
||||
License (see Section 10.2) or under the terms of a Secondary License (if
|
||||
permitted under the terms of Section 3.3).
|
||||
|
||||
2.5. Representation
|
||||
|
||||
Each Contributor represents that the Contributor believes its
|
||||
Contributions are its original creation(s) or it has sufficient rights
|
||||
to grant the rights to its Contributions conveyed by this License.
|
||||
|
||||
2.6. Fair Use
|
||||
|
||||
This License is not intended to limit any rights You have under
|
||||
applicable copyright doctrines of fair use, fair dealing, or other
|
||||
equivalents.
|
||||
|
||||
2.7. Conditions
|
||||
|
||||
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
||||
in Section 2.1.
|
||||
|
||||
3. Responsibilities
|
||||
-------------------
|
||||
|
||||
3.1. Distribution of Source Form
|
||||
|
||||
All distribution of Covered Software in Source Code Form, including any
|
||||
Modifications that You create or to which You contribute, must be under
|
||||
the terms of this License. You must inform recipients that the Source
|
||||
Code Form of the Covered Software is governed by the terms of this
|
||||
License, and how they can obtain a copy of this License. You may not
|
||||
attempt to alter or restrict the recipients' rights in the Source Code
|
||||
Form.
|
||||
|
||||
3.2. Distribution of Executable Form
|
||||
|
||||
If You distribute Covered Software in Executable Form then:
|
||||
|
||||
(a) such Covered Software must also be made available in Source Code
|
||||
Form, as described in Section 3.1, and You must inform recipients of
|
||||
the Executable Form how they can obtain a copy of such Source Code
|
||||
Form by reasonable means in a timely manner, at a charge no more
|
||||
than the cost of distribution to the recipient; and
|
||||
|
||||
(b) You may distribute such Executable Form under the terms of this
|
||||
License, or sublicense it under different terms, provided that the
|
||||
license for the Executable Form does not attempt to limit or alter
|
||||
the recipients' rights in the Source Code Form under this License.
|
||||
|
||||
3.3. Distribution of a Larger Work
|
||||
|
||||
You may create and distribute a Larger Work under terms of Your choice,
|
||||
provided that You also comply with the requirements of this License for
|
||||
the Covered Software. If the Larger Work is a combination of Covered
|
||||
Software with a work governed by one or more Secondary Licenses, and the
|
||||
Covered Software is not Incompatible With Secondary Licenses, this
|
||||
License permits You to additionally distribute such Covered Software
|
||||
under the terms of such Secondary License(s), so that the recipient of
|
||||
the Larger Work may, at their option, further distribute the Covered
|
||||
Software under the terms of either this License or such Secondary
|
||||
License(s).
|
||||
|
||||
3.4. Notices
|
||||
|
||||
You may not remove or alter the substance of any license notices
|
||||
(including copyright notices, patent notices, disclaimers of warranty,
|
||||
or limitations of liability) contained within the Source Code Form of
|
||||
the Covered Software, except that You may alter any license notices to
|
||||
the extent required to remedy known factual inaccuracies.
|
||||
|
||||
3.5. Application of Additional Terms
|
||||
|
||||
You may choose to offer, and to charge a fee for, warranty, support,
|
||||
indemnity or liability obligations to one or more recipients of Covered
|
||||
Software. However, You may do so only on Your own behalf, and not on
|
||||
behalf of any Contributor. You must make it absolutely clear that any
|
||||
such warranty, support, indemnity, or liability obligation is offered by
|
||||
You alone, and You hereby agree to indemnify every Contributor for any
|
||||
liability incurred by such Contributor as a result of warranty, support,
|
||||
indemnity or liability terms You offer. You may include additional
|
||||
disclaimers of warranty and limitations of liability specific to any
|
||||
jurisdiction.
|
||||
|
||||
4. Inability to Comply Due to Statute or Regulation
|
||||
---------------------------------------------------
|
||||
|
||||
If it is impossible for You to comply with any of the terms of this
|
||||
License with respect to some or all of the Covered Software due to
|
||||
statute, judicial order, or regulation then You must: (a) comply with
|
||||
the terms of this License to the maximum extent possible; and (b)
|
||||
describe the limitations and the code they affect. Such description must
|
||||
be placed in a text file included with all distributions of the Covered
|
||||
Software under this License. Except to the extent prohibited by statute
|
||||
or regulation, such description must be sufficiently detailed for a
|
||||
recipient of ordinary skill to be able to understand it.
|
||||
|
||||
5. Termination
|
||||
--------------
|
||||
|
||||
5.1. The rights granted under this License will terminate automatically
|
||||
if You fail to comply with any of its terms. However, if You become
|
||||
compliant, then the rights granted under this License from a particular
|
||||
Contributor are reinstated (a) provisionally, unless and until such
|
||||
Contributor explicitly and finally terminates Your grants, and (b) on an
|
||||
ongoing basis, if such Contributor fails to notify You of the
|
||||
non-compliance by some reasonable means prior to 60 days after You have
|
||||
come back into compliance. Moreover, Your grants from a particular
|
||||
Contributor are reinstated on an ongoing basis if such Contributor
|
||||
notifies You of the non-compliance by some reasonable means, this is the
|
||||
first time You have received notice of non-compliance with this License
|
||||
from such Contributor, and You become compliant prior to 30 days after
|
||||
Your receipt of the notice.
|
||||
|
||||
5.2. If You initiate litigation against any entity by asserting a patent
|
||||
infringement claim (excluding declaratory judgment actions,
|
||||
counter-claims, and cross-claims) alleging that a Contributor Version
|
||||
directly or indirectly infringes any patent, then the rights granted to
|
||||
You by any and all Contributors for the Covered Software under Section
|
||||
2.1 of this License shall terminate.
|
||||
|
||||
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
||||
end user license agreements (excluding distributors and resellers) which
|
||||
have been validly granted by You or Your distributors under this License
|
||||
prior to termination shall survive termination.
|
||||
|
||||
************************************************************************
|
||||
* *
|
||||
* 6. Disclaimer of Warranty *
|
||||
* ------------------------- *
|
||||
* *
|
||||
* Covered Software is provided under this License on an "as is" *
|
||||
* basis, without warranty of any kind, either expressed, implied, or *
|
||||
* statutory, including, without limitation, warranties that the *
|
||||
* Covered Software is free of defects, merchantable, fit for a *
|
||||
* particular purpose or non-infringing. The entire risk as to the *
|
||||
* quality and performance of the Covered Software is with You. *
|
||||
* Should any Covered Software prove defective in any respect, You *
|
||||
* (not any Contributor) assume the cost of any necessary servicing, *
|
||||
* repair, or correction. This disclaimer of warranty constitutes an *
|
||||
* essential part of this License. No use of any Covered Software is *
|
||||
* authorized under this License except under this disclaimer. *
|
||||
* *
|
||||
************************************************************************
|
||||
|
||||
************************************************************************
|
||||
* *
|
||||
* 7. Limitation of Liability *
|
||||
* -------------------------- *
|
||||
* *
|
||||
* Under no circumstances and under no legal theory, whether tort *
|
||||
* (including negligence), contract, or otherwise, shall any *
|
||||
* Contributor, or anyone who distributes Covered Software as *
|
||||
* permitted above, be liable to You for any direct, indirect, *
|
||||
* special, incidental, or consequential damages of any character *
|
||||
* including, without limitation, damages for lost profits, loss of *
|
||||
* goodwill, work stoppage, computer failure or malfunction, or any *
|
||||
* and all other commercial damages or losses, even if such party *
|
||||
* shall have been informed of the possibility of such damages. This *
|
||||
* limitation of liability shall not apply to liability for death or *
|
||||
* personal injury resulting from such party's negligence to the *
|
||||
* extent applicable law prohibits such limitation. Some *
|
||||
* jurisdictions do not allow the exclusion or limitation of *
|
||||
* incidental or consequential damages, so this exclusion and *
|
||||
* limitation may not apply to You. *
|
||||
* *
|
||||
************************************************************************
|
||||
|
||||
8. Litigation
|
||||
-------------
|
||||
|
||||
Any litigation relating to this License may be brought only in the
|
||||
courts of a jurisdiction where the defendant maintains its principal
|
||||
place of business and such litigation shall be governed by laws of that
|
||||
jurisdiction, without reference to its conflict-of-law provisions.
|
||||
Nothing in this Section shall prevent a party's ability to bring
|
||||
cross-claims or counter-claims.
|
||||
|
||||
9. Miscellaneous
|
||||
----------------
|
||||
|
||||
This License represents the complete agreement concerning the subject
|
||||
matter hereof. If any provision of this License is held to be
|
||||
unenforceable, such provision shall be reformed only to the extent
|
||||
necessary to make it enforceable. Any law or regulation which provides
|
||||
that the language of a contract shall be construed against the drafter
|
||||
shall not be used to construe this License against a Contributor.
|
||||
|
||||
10. Versions of the License
|
||||
---------------------------
|
||||
|
||||
10.1. New Versions
|
||||
|
||||
Mozilla Foundation is the license steward. Except as provided in Section
|
||||
10.3, no one other than the license steward has the right to modify or
|
||||
publish new versions of this License. Each version will be given a
|
||||
distinguishing version number.
|
||||
|
||||
10.2. Effect of New Versions
|
||||
|
||||
You may distribute the Covered Software under the terms of the version
|
||||
of the License under which You originally received the Covered Software,
|
||||
or under the terms of any subsequent version published by the license
|
||||
steward.
|
||||
|
||||
10.3. Modified Versions
|
||||
|
||||
If you create software not governed by this License, and you want to
|
||||
create a new license for such software, you may create and use a
|
||||
modified version of this License if you rename the license and remove
|
||||
any references to the name of the license steward (except to note that
|
||||
such modified license differs from this License).
|
||||
|
||||
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
||||
Licenses
|
||||
|
||||
If You choose to distribute Source Code Form that is Incompatible With
|
||||
Secondary Licenses under the terms of this version of the License, the
|
||||
notice described in Exhibit B of this License must be attached.
|
||||
|
||||
Exhibit A - Source Code Form License Notice
|
||||
-------------------------------------------
|
||||
|
||||
This Source Code Form is subject to the terms of the Mozilla Public
|
||||
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
If it is not possible or desirable to put the notice in a particular
|
||||
file, then You may include the notice in a location (such as a LICENSE
|
||||
file in a relevant directory) where a recipient would be likely to look
|
||||
for such a notice.
|
||||
|
||||
You may add additional accurate notices of copyright ownership.
|
||||
|
||||
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
||||
---------------------------------------------------------
|
||||
|
||||
This Source Code Form is "Incompatible With Secondary Licenses", as
|
||||
defined by the Mozilla Public License, v. 2.0.
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
# <img src="gitassets/icon.png" width="24px" draggable="false"><b> </b>PreMiD · Discord Rich Presence for your Media!
|
||||
|
||||
###  [](https://www.codacy.com/project/Timeraa/PreMiD/dashboard?utm_source=github.com&utm_medium=referral&utm_content=PreMiD/PreMiD&utm_campaign=Badge_Grade_Dashboard&branchId=10584370) [](https://discord.gg/WvfVZ8T) [](https://chrome.google.com/webstore/detail/premid/agjnjboanicjcpenljmaaigopkgdnihi)
|
||||
[](https://twitter.com/PreMiDapp)
|
||||
|
||||
<img src="gitassets/PreMiDExample.png">
|
||||
|
||||
|
||||
@@ -10,11 +10,11 @@
|
||||
"pkgmac": "electron-packager ./src/ --out=./out/ --asar --overwrite --icon=./installer_assets/appIcon.ico --osx-sign.identity='Florian Metz'",
|
||||
"pkgwin": "electron-packager ./src/ --out=./out/ --overwrite --icon=./installer_assets/appIcon.ico",
|
||||
"pkgwin32": "electron-packager ./src/ --out=./out/ --overwrite --icon=./installer_assets/appIcon.ico --platform=win32 --arch=ia32",
|
||||
"pkglinux": "electron-packager ./src/ --out=./out/ --overwrite --icon=./appIcon.ico --asar --platform=linux --arch=x64",
|
||||
"pkglinux": "electron-packager ./src/ --out=./out/ --overwrite --icon=./appIcon.ico --asar --platform=linux --arch=x64 --executableName=premid",
|
||||
"installer-mac": "npm run pkgmac && node installer_assets/installer",
|
||||
"installer-win": "npm run pkgwin && node installer_assets/installer",
|
||||
"installer-win32": "npm run pkgwin32 && node installer_assets/installerWin32",
|
||||
"installer-linux": "npm run pkglinux && electron-installer-debian --src out/PreMiD-linux-x64/ --dest dist/installer/ --arch amd64"
|
||||
"installer-linux": "npm run pkglinux && electron-installer-debian --src out/PreMiD-linux-x64/ --dest dist/installer/ --arch amd64 --icon src/assets/images/logo.png"
|
||||
},
|
||||
"author": "Timeraa",
|
||||
"license": "MIT",
|
||||
|
||||