Initial replacement of old repository.

This commit is contained in:
Simon Martens
2021-09-15 13:31:10 +02:00
commit 3125edf027
222 changed files with 582725 additions and 0 deletions

1197
HaLive/wwwroot/css/alt.css Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,23 @@
:root {
--hamannGrau: #cbcaca;
--hamannDunkelGrau: darkgrey;
--hamannHighlight: red;
--commLineLength: 60;
--hamannWeiss: white;
}
.yearsidebar {
position: relative !important;
}
.yearsidebar .is-active {
color: var(--hamannHighlight) !important;
}
.del .del::before {
content: '<';
}
.del .del::after {
content: '>';
}

1889
HaLive/wwwroot/css/site.css Normal file

File diff suppressed because it is too large Load Diff

BIN
HaLive/wwwroot/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

110
HaLive/wwwroot/js/new.js Normal file
View File

@@ -0,0 +1,110 @@
/*
Funktion zum Einklappen der Kommentare der Seitenleiste, je nach verfügbarem Platz.
Benötigt jQuery.
(c) 2020 Theodor Springmann Stiftung Heidelberg
*/
$(function() {
/*
Jede Zeile in der Seitenleiste wird ausgewählt.
Voraussetzungen:
- Marginalspalte hat die Klasse "commentColumn"
- Kommentar in einer Zeile hat die Klasse "commBox"
- Eine Zeile ohne Kommentar ist ein <br class="emptyline"/>
*/
const sidebar = '.commentColumn';
const comment = '.commBox';
const emptyline = '.emptyline';
/*
Hilfsvariablen
- Funktion, um die Ergebnisse einer Query umzukehren.
- Variable, in der die Anzahl verfügbaren Platzes gespeichert wird.
- Größe eines REM
- Zeilenhöhe in commBox
- Padding von commBox
*/
jQuery.fn.reverse = [].reverse;
var emptylines_cnt = 0;
var rem = parseFloat(getComputedStyle(document.documentElement).fontSize);
var commBoxLineHeight = 1;
var commBoxPaddingHeight = 0.2;
/* Die Liste an Zeilen in der Seitenspalte wird rückwärts durchgegangen. */
$(sidebar + ' ' + comment + ',' + emptyline).reverse().each(function(elem) {
/* Fall 1: Es handelt sich um eine Leerzeile. Die Anzahl verfügbarer Leerzeilen wird erhöht. */
if ($(this).hasClass("emptyline")) {
emptylines_cnt++;
}
/* Fall 2: Es handelt sich um einen Kommentar, der evtl. gekürzt werden muss. */
else {
/* Von der Leerzeilenzahl bestimmte MÖGLICHE höhe des Divs berechnen
bei der von mir gewählten Zeilenhöhe wird ab 5 fre ien Textzeilen eine extra Kommentarzeile frei*/
if (emptylines_cnt >= 2) {
bonusLines = Math.floor(emptylines_cnt / 2);
emptylines_cnt = bonusLines + emptylines_cnt;
}
var possibleHeight = emptylines_cnt
* commBoxLineHeight
+ commBoxLineHeight
+ commBoxPaddingHeight;
possibleHeight = Math.floor(possibleHeight * 100) / 100;
var contentHeight = $(this).height();
/*contentHeight in rem umrechnen*/
contentHeight = contentHeight / rem;
contentHeight = Math.ceil(contentHeight * 100) / 100;
if (contentHeight > possibleHeight) {
$(this).toggleClass("short");
possibleHeight = String(possibleHeight) + "rem";
$(this).css("height", possibleHeight);
}
emptylines_cnt = 0;
}
});
$('button').on('click', function() {
if (this.parentNode.parentNode.classList.contains("short")) { /*testen ob parrentnode kurzkommentar ist. Wenn JA:*/
if (this.parentNode.parentNode.classList.contains("expanded")) { /*testen ob gerade expanded Wenn JA:*/
this.parentNode.parentNode.classList.remove("expanded"); /*entferne expandeded*/
} else { /*wenn parentnode nicht expanded ist*/
$("button").each(function(i) {
if (this.parentNode.parentNode.classList.contains("expanded")) {
this.parentNode.parentNode.classList.remove("expanded"); /*werden alle kommentare geschlossen*/
}
});
this.parentNode.parentNode.classList.add("expanded"); /*und der aktuelle kommentar expandiert*/
}
} else {
$("button").each(function(i) { /*wenn die parentnode nicht short ist*/
if (this.parentNode.parentNode.classList.contains("expanded")) {
this.parentNode.parentNode.classList.remove("expanded"); /*werden alle kommentare geschlossen*/
}
});
}
});
$('button').on('click', function() {
var ntht_button = 1;
$(this).prevAll().each(function(i) {
++ntht_button
});
var commBox = this.parentNode.parentNode;
var childrenOfCommbox = commBox.children
for (var i = 0; i < childrenOfCommbox.length; i++) {
if (i == ntht_button) {
childrenOfCommbox[i].classList.remove("invisible");
childrenOfCommbox[i].style.display = "block";
childrenOfCommbox[i].style.width = "100%";
} else if (i !== ntht_button && i !== 0) {
childrenOfCommbox[i].classList.add("invisible");
childrenOfCommbox[i].style.display = "none";
}
}
});
});

102
HaLive/wwwroot/js/site.js Normal file
View File

@@ -0,0 +1,102 @@
// Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
// for details on configuring this project to bundle and minify static web assets.
// Write your JavaScript code.
$(function() {
var commentColum = document.querySelectorAll("div.commentColumn");
var nodeList = Array.from(commentColum[0].querySelectorAll("div.commBox, br.emptyline"));
var nodeliLength = nodeList.length;
var brcounter = 0;
/* im Folgenden erstelle ich ein dictionary (map) mit der Zeilennummer des Kommentars als Schüssel und den Folgezeilen als Wert.
Da ich leider zu dumm bin, um es anders zu machen, geht die Liste von der höchsten Zeilennummer zu nidrigsten. Desswegen referenziere ich später die Kommentare durch ihre ID=Zeilennummer */
var commentLine_emptyLines = new Map();
for (var i = nodeliLength; i > 0; i--) {
if (nodeList[i - 1] == '[object HTMLBRElement]') {
brcounter++;
} else if (nodeList[i - 1] == '[object HTMLDivElement]') {
commentLine_emptyLines.set(i, brcounter);
brcounter = 0;
}
}
/*dann stelle ich die höhe jedes Div.commBox so ein, dass die Höhe des Inhalts realisiert wird, wenn genug Platz ist.
Wenn zu wenig Platz ist, wird das Div so groß wie möglich gemacht.*/
$(".commBox").each(function(i) {
/*Zahl der leeren Folgezeilen über Zeilenzahl des Kommentars bekommen*/
var emptyLines = commentLine_emptyLines.get(parseInt(this.id));
/* Von der Leerzeilenzahl bestimmte MÖGLICHE höhe des Divs berechnen
bei der von mir gewählten Zeilenhöhe wird ab 5 (nach jetztiger einstellung ab 6) Freien Textzeilen eine extra Kommentarzeile frei*/
if (emptyLines >= 4) {
bonusLines = Math.floor(emptyLines / 4);
emptyLines = bonusLines + emptyLines;
}
var possibleHeight = emptyLines * 1.1 + 1.1 + 0.2;
possibleHeight = Math.floor(possibleHeight * 100) / 100;
console.log(possibleHeight);
var contentHeight = $(this).height();
/*contentHeight in rem umrechnen*/
contentHeight = contentHeight / parseFloat(getComputedStyle(document.documentElement).fontSize);
contentHeight = Math.ceil(contentHeight * 100) / 100;
console.log(contentHeight);
if (contentHeight < possibleHeight) {
possibleHeight = Math.ceil((contentHeight + 0.2) * 100) / 100;
} else if (contentHeight > possibleHeight) {
$(this).toggleClass("short");
} else {
possibleHeight = contentHeight;
}
possibleHeight = String(possibleHeight) + "rem";
$(this).css("height", possibleHeight);
});
$("button").each(function(i) { /*wenn die parentnode nicht short ist*/
if (this.parentNode.parentNode.classList.contains("short")) {} else {
this.firstChild.data = "▷";
}
});
$('button').on('click', function() {
if (this.parentNode.parentNode.classList.contains("short")) { /*testen ob parrentnode kurzkommentar ist. Wenn JA:*/
if (this.parentNode.parentNode.classList.contains("expanded")) { /*testen ob gerade expanded Wenn JA:*/
this.parentNode.parentNode.classList.remove("expanded"); /*entferne expandeded*/
this.firstChild.data = "▶ ";
} else { /*wenn parentnode nicht expanded ist*/
$("button").each(function(i) {
if (this.parentNode.parentNode.classList.contains("expanded")) {
this.parentNode.parentNode.classList.remove("expanded"); /*werden alle kommentare geschlossen*/
this.firstChild.data = "▶ ";
}
});
this.parentNode.parentNode.classList.add("expanded"); /*und der aktuelle kommentar expandiert*/
this.firstChild.data = "▲";
}
} else {
$("button").each(function(i) { /*wenn die parentnode nicht short ist*/
if (this.parentNode.parentNode.classList.contains("expanded")) {
this.parentNode.parentNode.classList.remove("expanded"); /*werden alle kommentare geschlossen*/
this.firstChild.data = "▶ ";
}
});
}
});
$('button').on('click', function() {
var ntht_button = 1;
$(this).prevAll().each(function(i) {
++ntht_button
});
var commBox = this.parentNode.parentNode;
var childrenOfCommbox = commBox.children
for (var i = 0; i < childrenOfCommbox.length; i++) {
if (i == ntht_button) {
childrenOfCommbox[i].classList.remove("invisible");
childrenOfCommbox[i].style.display = "block";
} else if (i !== ntht_button && i !== 0) {
childrenOfCommbox[i].classList.add("invisible");
childrenOfCommbox[i].style.display = "none";
}
}
});
});

View File

@@ -0,0 +1,22 @@
The MIT License (MIT)
Copyright (c) 2011-2018 Twitter, Inc.
Copyright (c) 2011-2018 The Bootstrap Authors
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:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
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.

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,331 @@
/*!
* Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/
*,
*::before,
*::after {
box-sizing: border-box;
}
html {
font-family: sans-serif;
line-height: 1.15;
-webkit-text-size-adjust: 100%;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
display: block;
}
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
[tabindex="-1"]:focus {
outline: 0 !important;
}
hr {
box-sizing: content-box;
height: 0;
overflow: visible;
}
h1, h2, h3, h4, h5, h6 {
margin-top: 0;
margin-bottom: 0.5rem;
}
p {
margin-top: 0;
margin-bottom: 1rem;
}
abbr[title],
abbr[data-original-title] {
text-decoration: underline;
-webkit-text-decoration: underline dotted;
text-decoration: underline dotted;
cursor: help;
border-bottom: 0;
-webkit-text-decoration-skip-ink: none;
text-decoration-skip-ink: none;
}
address {
margin-bottom: 1rem;
font-style: normal;
line-height: inherit;
}
ol,
ul,
dl {
margin-top: 0;
margin-bottom: 1rem;
}
ol ol,
ul ul,
ol ul,
ul ol {
margin-bottom: 0;
}
dt {
font-weight: 700;
}
dd {
margin-bottom: .5rem;
margin-left: 0;
}
blockquote {
margin: 0 0 1rem;
}
b,
strong {
font-weight: bolder;
}
small {
font-size: 80%;
}
sub,
sup {
position: relative;
font-size: 75%;
line-height: 0;
vertical-align: baseline;
}
sub {
bottom: -.25em;
}
sup {
top: -.5em;
}
a {
color: #007bff;
text-decoration: none;
background-color: transparent;
}
a:hover {
color: #0056b3;
text-decoration: underline;
}
a:not([href]):not([tabindex]) {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
color: inherit;
text-decoration: none;
}
a:not([href]):not([tabindex]):focus {
outline: 0;
}
pre,
code,
kbd,
samp {
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size: 1em;
}
pre {
margin-top: 0;
margin-bottom: 1rem;
overflow: auto;
}
figure {
margin: 0 0 1rem;
}
img {
vertical-align: middle;
border-style: none;
}
svg {
overflow: hidden;
vertical-align: middle;
}
table {
border-collapse: collapse;
}
caption {
padding-top: 0.75rem;
padding-bottom: 0.75rem;
color: #6c757d;
text-align: left;
caption-side: bottom;
}
th {
text-align: inherit;
}
label {
display: inline-block;
margin-bottom: 0.5rem;
}
button {
border-radius: 0;
}
button:focus {
outline: 1px dotted;
outline: 5px auto -webkit-focus-ring-color;
}
input,
button,
select,
optgroup,
textarea {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
button,
input {
overflow: visible;
}
button,
select {
text-transform: none;
}
select {
word-wrap: normal;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
cursor: pointer;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
padding: 0;
border-style: none;
}
input[type="radio"],
input[type="checkbox"] {
box-sizing: border-box;
padding: 0;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
-webkit-appearance: listbox;
}
textarea {
overflow: auto;
resize: vertical;
}
fieldset {
min-width: 0;
padding: 0;
margin: 0;
border: 0;
}
legend {
display: block;
width: 100%;
max-width: 100%;
padding: 0;
margin-bottom: .5rem;
font-size: 1.5rem;
line-height: inherit;
color: inherit;
white-space: normal;
}
progress {
vertical-align: baseline;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
[type="search"] {
outline-offset: -2px;
-webkit-appearance: none;
}
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
::-webkit-file-upload-button {
font: inherit;
-webkit-appearance: button;
}
output {
display: inline-block;
}
summary {
display: list-item;
cursor: pointer;
}
template {
display: none;
}
[hidden] {
display: none !important;
}
/*# sourceMappingURL=bootstrap-reboot.css.map */

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,8 @@
/*!
* Bootstrap Reboot v4.3.1 (https://getbootstrap.com/)
* Copyright 2011-2019 The Bootstrap Authors
* Copyright 2011-2019 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
*/*,::after,::before{box-sizing:border-box}html{font-family:sans-serif;line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}article,aside,figcaption,figure,footer,header,hgroup,main,nav,section{display:block}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:left;background-color:#fff}[tabindex="-1"]:focus{outline:0!important}hr{box-sizing:content-box;height:0;overflow:visible}h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem}p{margin-top:0;margin-bottom:1rem}abbr[data-original-title],abbr[title]{text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;border-bottom:0;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#007bff;text-decoration:none;background-color:transparent}a:hover{color:#0056b3;text-decoration:underline}a:not([href]):not([tabindex]){color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus,a:not([href]):not([tabindex]):hover{color:inherit;text-decoration:none}a:not([href]):not([tabindex]):focus{outline:0}code,kbd,pre,samp{font-family:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-size:1em}pre{margin-top:0;margin-bottom:1rem;overflow:auto}figure{margin:0 0 1rem}img{vertical-align:middle;border-style:none}svg{overflow:hidden;vertical-align:middle}table{border-collapse:collapse}caption{padding-top:.75rem;padding-bottom:.75rem;color:#6c757d;text-align:left;caption-side:bottom}th{text-align:inherit}label{display:inline-block;margin-bottom:.5rem}button{border-radius:0}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,input{overflow:visible}button,select{text-transform:none}select{word-wrap:normal}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{padding:0;border-style:none}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=date],input[type=datetime-local],input[type=month],input[type=time]{-webkit-appearance:listbox}textarea{overflow:auto;resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;max-width:100%;padding:0;margin-bottom:.5rem;font-size:1.5rem;line-height:inherit;color:inherit;white-space:normal}progress{vertical-align:baseline}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:none}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}summary{display:list-item;cursor:pointer}template{display:none}[hidden]{display:none!important}
/*# sourceMappingURL=bootstrap-reboot.min.css.map */

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,36 @@
Copyright JS Foundation and other contributors, https://js.foundation/
This software consists of voluntary contributions made by many
individuals. For exact contribution history, see the revision history
available at https://github.com/jquery/jquery
The following license applies to all parts of this software except as
documented below:
====
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:
The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.
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.
====
All files located in the node_modules and external directories are
externally maintained libraries used by this software which have their
own licenses; we recommend you read them, as their terms may differ from
the terms above.

10364
HaLive/wwwroot/lib/jquery/dist/jquery.js vendored Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 B