feat: Add basic frontend
Some checks failed
MegaLinter / MegaLinter (pull_request) Has been cancelled
Update website / update (pull_request) Has been cancelled

This commit is contained in:
Piotr Gaczkowski 2026-03-24 15:39:18 +01:00
parent 2a2b5973df
commit cebafd3cec
27 changed files with 2762 additions and 1485 deletions

0
fegen/__init__.py Normal file
View file

117
fegen/discourse.py Normal file
View file

@ -0,0 +1,117 @@
'''
Class to generate a csv file based on data fetched via Discourse REST API
'''
import os
import csv
import json
import requests
from dotenv import load_dotenv
DISCOURSE_URL = "https://kb.hs3.pl" # Database is hosted here
CATEGORY_ID = 9 # Database category ID
PLACES = [
"cow-work",
"garage",
"lab",
"audiolab",
"server-room"
]
class DiscourseDatabase():
def __init__(self):
data = self.get_category_data()
self.category_topics_csv(data)
load_dotenv()
def get_headers(self, auth=False):
"""Get request headers, optionally with auth data."""
headers = {
"content-type": "application/json",
}
if auth:
headers["Api-Key"] = os.getenv("DISCOURSE_PAT")
headers["Api-Username"] = os.getenv("DISCOURSE_USERNAME")
return headers
def get_category_data(self) -> dict:
"""Get all topics from a Discourse category with pagination"""
url = f"{DISCOURSE_URL}/c/{CATEGORY_ID}.json"
print(f"Fetching data from {url}")
all_topics = []
page = 0
while True:
params = {"per_page": 100, "page": page}
res = requests.get(url, headers=self.get_headers(), params=params)
res.raise_for_status()
res_json = res.json()
topics = res_json["topic_list"]["topics"]
if not topics:
break
for topic in topics:
if topic["category_id"] == CATEGORY_ID:
all_topics.append(topic)
print(f"Fetched page {page}: {len(topics)} topics, {len(all_topics)} total in category")
page += 1
return {"topic_list": {"topics": all_topics}}
def get_topic_content(self, topic_id: str):
"""Get a single topic's content"""
get_url = f"{DISCOURSE_URL}/posts/{topic_id}.json"
res = requests.get(get_url, headers=self.get_headers(auth=True))
res.raise_for_status()
return res.json()
def category_topics_csv(self, category_data) -> None:
"""Save category topics to a csv file"""
columns = ["id", "title", "place", "tags"]
records = category_data["topic_list"]["topics"]
with open('zasoby.csv', 'w', encoding='UTF8') as f:
write = csv.writer(f)
write.writerow(columns)
for topic in records:
html_url = f'<a href="{DISCOURSE_URL}/t/{topic["id"]}">{topic["title"]}</a>'
place = self.get_place(topic)
write.writerow([topic["id"], html_url, place, topic["tags"]])
print(f"New zasoby.csv generated with {len(records)} records")
def get_place(self, topic):
"""Get place of a topic"""
for place in PLACES:
if place in topic["tags"]:
return f'<a href="https://kb.hs3.pl/tag/{place}">{place}</a>'
return "unknown"
def replace_string_in_post(self, topic_id: str, old_string: str, new_string: str) -> dict:
"""Replace a selected string within a topic's first post using Discourse REST API"""
# Fetch the topic to get the first post ID
topic_url = f"{DISCOURSE_URL}/t/{topic_id}.json"
topic_res = requests.get(topic_url, headers=self.get_headers(auth=True))
topic_res.raise_for_status()
topic_data = topic_res.json()
# Get the first post ID from the topic
first_post_id = topic_data["post_stream"]["posts"][0]["id"]
# Fetch the post content
post_url = f"{DISCOURSE_URL}/posts/{first_post_id}.json"
post_res = requests.get(post_url, headers=self.get_headers(auth=True))
post_res.raise_for_status()
post_data = post_res.json()
# Replace the string
updated_raw = post_data["raw"].replace(old_string, new_string)
# Update the post
payload = {"post": {"raw": updated_raw}}
res = requests.put(post_url, json=payload, headers=self.get_headers(auth=True))
res.raise_for_status()
return res.json()
if __name__ == "__main__":
disc = DiscourseDatabase()
category = disc.get_category_data()
records = category["topic_list"]["topics"]
for topic in records:
if "lab" in topic["tags"]:
disc.replace_string_in_post(topic["id"], "[Workshop](https://kb.s.hs3.pl/tag/workshop)", "[Lab](https://kb.s.hs3.pl/tag/lab)")

7552
fegen/docs/index.html Normal file

File diff suppressed because it is too large Load diff

14
fegen/docs/static/css/style.css vendored Normal file
View file

@ -0,0 +1,14 @@
footer {
padding: 12px;
margin-top: auto;
}
/* || Sidenav */
.sidenav {
width: 250px;
position: sticky;
z-index: 1;
top: 0;
overflow-x: hidden;
padding: 6px 8px 6px 16px;
}

177
fegen/docs/static/xml/label_12.xml vendored Normal file
View file

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8"?>
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.7"
generator="P-touch Editor 5.4.016 Windows">
<pt:body currentSheet="Arkusz 1" direction="LTR">
<style:sheet name="Arkusz 1">
<style:paper media="0" width="33.6pt" height="51.2pt" marginLeft="2.8pt"
marginTop="5.6pt" marginRight="2.8pt" marginBottom="5.6pt" orientation="portrait"
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
printColorsID="8" paperColor="#FFFFFF" paperInk="#000000" split="1" format="259"
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
<style:cutLine regularCut="0pt" freeCut="" />
<style:backGround x="2.8pt" y="5.6pt" width="28pt" height="40pt" brushStyle="NULL"
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="-0.6pt" y="2.2pt" width="34.8pt" height="34.8pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false" />
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.2pt" mbcs="auto"
joint="1" version="auto" />
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<text:text>
<pt:objectStyle x="8.9pt" y="35.5pt" width="15.8pt" height="6.5pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="9pt" combinedChars="false" />
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="7.2pt" y="40.7pt" width="7.9pt" height="6.3pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="9pt" combinedChars="false" />
<pt:data>ID:</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="16.5pt" y="40.7pt" width="7.9pt" height="6.3pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="9pt" combinedChars="false" />
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</style:sheet>
</pt:body>
</pt:document>

518
fegen/docs/static/xml/label_18.xml vendored Normal file
View file

@ -0,0 +1,518 @@
<?xml version="1.0" encoding="UTF-8"?>
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.7"
generator="P-touch Editor 5.4.016 Windows">
<pt:body currentSheet="Arkusz 1" direction="LTR">
<style:sheet name="Arkusz 1">
<style:paper media="0" width="51.2pt" height="70.8pt" marginLeft="3.2pt"
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
<style:cutLine regularCut="0pt" freeCut="" />
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="59.6pt" brushStyle="NULL"
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="3.4pt" y="3.6pt" width="44.4pt" height="44.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" dbMergeFieldStyleName="qr" dbRecordOffset="0"
linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false" />
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.8pt" mbcs="auto"
joint="1" version="auto" />
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<pt:group>
<pt:objectStyle x="4.8pt" y="55.6pt" width="41.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Grupuj11" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<pt:objects>
<text:text>
<pt:objectStyle x="20.8pt" y="55.6pt" width="25.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false" />
<pt:data></pt:data>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:innerObject>
<text:text>
<pt:objectStyle x="20.8pt" y="55.6pt" width="24.8pt"
height="12.1pt" backColor="#FFFFFF"
backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1" />
<pt:brush style="NULL" color="#000000"
printColorNumber="1" id="0" />
<pt:expanded objectName="nazwa" ID="0" lock="0"
templateMergeTarget="LABELLIST"
templateMergeType="NONE" templateMergeID="0"
dbMergeFieldStyleName="nazwa" dbRecordOffset="0"
linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0"
italic="false" weight="700" charSet="238"
pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0"
strikeout="0" size="8pt" orgSize="28.8pt"
textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false"
aspectNormal="false" shrink="false" autoLF="false"
avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT"
verticalAlignment="CENTER" inLineAlignment="BASELINE" />
<text:textStyle vertical="false" nullBlock="false"
charSpace="0" lineSpace="0" orgPoint="8pt"
combinedChars="false" />
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="5">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0"
italic="false" weight="700" charSet="238"
pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0"
strikeout="0" size="8pt" orgSize="28.8pt"
textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</text:innerObject>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="4.8pt" y="55.6pt" width="15.2pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false" />
<pt:data>ID:</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
<text:text>
<pt:objectStyle x="-6.8pt" y="29.6pt" width="2pt" height="4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst6" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Arial" width="0" italic="false" weight="400"
charSet="238" pitchAndFamily="34" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="5pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="LONGTEXTFIXED" clipFrame="false" aspectNormal="true"
shrink="true" autoLF="true" avoidImage="false" />
<text:textAlign horizontalAlignment="JUSTIFY" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="true" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="5pt" combinedChars="false" />
<pt:data></pt:data>
</text:text>
<text:text>
<pt:objectStyle x="10.8pt" y="46.5pt" width="29.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false" weight="800"
charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="8pt" combinedChars="false" />
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
<style:paper media="0" width="51.2pt" height="70.8pt" marginLeft="3.2pt"
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
<style:cutLine regularCut="0pt" freeCut="" />
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="59.6pt" brushStyle="NULL"
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="3.4pt" y="3.6pt" width="44.4pt" height="44.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" dbMergeFieldStyleName="qr" dbRecordOffset="0"
linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false" />
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.8pt" mbcs="auto"
joint="1" version="auto" />
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<pt:group>
<pt:objectStyle x="4.8pt" y="55.6pt" width="41.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Grupuj11" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<pt:objects>
<text:text>
<pt:objectStyle x="20.8pt" y="55.6pt" width="25.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false" />
<pt:data></pt:data>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:innerObject>
<text:text>
<pt:objectStyle x="20.8pt" y="55.6pt" width="24.8pt"
height="12.1pt" backColor="#FFFFFF"
backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1" />
<pt:brush style="NULL" color="#000000"
printColorNumber="1" id="0" />
<pt:expanded objectName="nazwa" ID="0" lock="0"
templateMergeTarget="LABELLIST"
templateMergeType="NONE" templateMergeID="0"
dbMergeFieldStyleName="nazwa" dbRecordOffset="0"
linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0"
italic="false" weight="700" charSet="238"
pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0"
strikeout="0" size="8pt" orgSize="28.8pt"
textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false"
aspectNormal="false" shrink="false" autoLF="false"
avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT"
verticalAlignment="CENTER" inLineAlignment="BASELINE" />
<text:textStyle vertical="false" nullBlock="false"
charSpace="0" lineSpace="0" orgPoint="8pt"
combinedChars="false" />
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="5">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0"
italic="false" weight="700" charSet="238"
pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0"
strikeout="0" size="8pt" orgSize="28.8pt"
textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</text:innerObject>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="4.8pt" y="55.6pt" width="15.2pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false" />
<pt:data>ID:</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
<text:text>
<pt:objectStyle x="-6.8pt" y="29.6pt" width="2pt" height="4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst6" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Arial" width="0" italic="false" weight="400"
charSet="238" pitchAndFamily="34" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="5pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="LONGTEXTFIXED" clipFrame="false" aspectNormal="true"
shrink="true" autoLF="true" avoidImage="false" />
<text:textAlign horizontalAlignment="JUSTIFY" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="true" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="5pt" combinedChars="false" />
<pt:data></pt:data>
</text:text>
<text:text>
<pt:objectStyle x="10.8pt" y="46.5pt" width="29.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false" weight="800"
charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="8pt" combinedChars="false" />
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</style:sheet>
</pt:body>
</pt:document>

336
fegen/docs/static/xml/label_18_flag.xml vendored Normal file
View file

@ -0,0 +1,336 @@
<?xml version="1.0" encoding="UTF-8"?>
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.10"
generator="com.brother.PtouchEditor">
<pt:body currentSheet="Sheet 1" direction="LTR">
<style:sheet name="Sheet 1">
<style:paper media="0" width="51.2pt" height="289.2pt" marginLeft="3.2pt"
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W"></style:paper>
<style:cutLine regularCut="0pt" freeCut=""></style:cutLine>
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="278pt" brushStyle="NULL"
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0"></style:backGround>
<pt:objects>
<pt:group>
<pt:objectStyle x="-6.8pt" y="4.3pt" width="55.2pt" height="63.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Group5" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
linkID="0"></pt:expanded>
</pt:objectStyle>
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="2pt" y="4.3pt" width="46.4pt" height="46.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Barcode1" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<text:text>
<pt:objectStyle x="20.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="4.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>ID:</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="10.8pt" y="47.5pt" width="29.6pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="6">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
<pt:group>
<pt:objectStyle x="3.3pt" y="220pt" width="46.4pt" height="63.5pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="180"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Group5" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
linkID="0"></pt:expanded>
</pt:objectStyle>
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="3.3pt" y="237.1pt" width="46.4pt" height="46.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Barcode1" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<text:text>
<pt:objectStyle x="15.7pt" y="221pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="31.7pt" y="221pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>ID:</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="11.3pt" y="230.1pt" width="29.6pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="6">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
<draw:poly>
<pt:objectStyle x="0.8pt" y="144pt" width="51.6pt" height="0.7pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="DASH" widthX="0.3pt" widthY="0.3pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Polygon2" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
linkID="0"></pt:expanded>
</pt:objectStyle>
<draw:polyStyle shape="LINE" arrowBegin="ROUND" arrowEnd="ROUND">
<draw:polyOrgPos x="0.8pt" y="144pt" width="51.6pt" height="0.7pt"></draw:polyOrgPos>
<draw:polyLinePoints points="1pt,144.5pt 52.2pt,144.2pt"></draw:polyLinePoints>
</draw:polyStyle>
</draw:poly>
</pt:objects>
</style:sheet>
</pt:body>
</pt:document>

View file

@ -0,0 +1,319 @@
<?xml version="1.0" encoding="UTF-8"?>
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.10"
generator="com.brother.PtouchEditor">
<pt:body currentSheet="Sheet 1" direction="LTR">
<style:sheet name="Sheet 1">
<style:paper media="0" width="51.2pt" height="289.2pt" marginLeft="3.2pt"
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W"></style:paper>
<style:cutLine regularCut="0pt" freeCut=""></style:cutLine>
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="278pt" brushStyle="NULL"
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0"></style:backGround>
<pt:objects>
<pt:group>
<pt:objectStyle x="-6.8pt" y="4.3pt" width="55.2pt" height="63.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Group5" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
linkID="0"></pt:expanded>
</pt:objectStyle>
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="2pt" y="4.3pt" width="46.4pt" height="46.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Barcode1" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<text:text>
<pt:objectStyle x="20.8pt" y="56.6pt" width="10.4pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="4.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>ID:</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="10.8pt" y="47.5pt" width="29.6pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="6">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
<pt:group>
<pt:objectStyle x="3.3pt" y="220pt" width="46.4pt" height="63.5pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="180"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Group5" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
linkID="0"></pt:expanded>
</pt:objectStyle>
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="3.3pt" y="237.1pt" width="46.4pt" height="46.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Barcode1" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<text:text>
<pt:objectStyle x="20.5pt" y="221pt" width="10.4pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="31.7pt" y="221pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>ID:</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="11.3pt" y="230.1pt" width="29.6pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="6">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
</pt:objects>
</style:sheet>
</pt:body>
</pt:document>

22
fegen/docs/static/xml/prop.xml vendored Normal file
View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<meta:properties xmlns:meta="http://schemas.brother.info/ptouch/2007/lbx/meta"
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/">
<meta:appName>com.brother.PtouchEditor</meta:appName>
<dc:title></dc:title>
<dc:subject></dc:subject>
<dc:creator></dc:creator>
<meta:keyword></meta:keyword>
<dc:description></dc:description>
<meta:template></meta:template>
<dcterms:created>2026-02-02T18:12:13Z</dcterms:created>
<dcterms:modified>2026-02-02T18:16:23Z</dcterms:modified>
<meta:lastPrinted></meta:lastPrinted>
<meta:modifiedBy></meta:modifiedBy>
<meta:revision>17</meta:revision>
<meta:editTime>0</meta:editTime>
<meta:numPages>1</meta:numPages>
<meta:numWords>0</meta:numWords>
<meta:numChars>0</meta:numChars>
<meta:security>0</meta:security>
<meta:transferScript></meta:transferScript>
</meta:properties>

44
fegen/main.py Normal file
View file

@ -0,0 +1,44 @@
import os, re, shutil
from jinja2 import Environment, FileSystemLoader
import pandas as pd
def add_download_button(row):
item_id = re.sub(r'<a href.*/([0-9]+)".*', "\\1", row[1])
download_button = (
f'<button id="btn_{item_id}"><i class="fa fa-download"></i> {item_id}</button>'
)
print_button = f'<a href="http://localhost:31337/print/{item_id}"><button id="prn_{item_id}"><i class="fa fa-print"></i> {item_id}</button></a>'
return row + [download_button, print_button]
def generate_dashboard():
"""Generate dashboard from zasoby.csv file"""
print("Generating HTML dashboard")
website_folder = "fegen/docs"
data = pd.read_csv("zasoby.csv")
env = Environment(loader=FileSystemLoader("fegen/template"))
print("Removing old website files")
print("Creating a new website")
shutil.copytree("fegen/template/static", f"{website_folder}/static", dirs_exist_ok=True)
template = env.get_template("_main_layout.html")
with open(f"{website_folder}/index.html", "w+", encoding="utf-8") as file:
header_row = data.columns.values.tolist() + ["label", "print"]
rows = map(
add_download_button,
data.values.tolist(),
)
html = template.render(
title="Baza Zasobów Hackerspace Trójmiasto",
t_header=header_row,
t_body=rows,
)
file.write(html)
if __name__ == "__main__":
from discourse import DiscourseDatabase
DiscourseDatabase()
generate_dashboard()
print("Done!")

View file

@ -0,0 +1,160 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="description" content="Dashboard" />
<title>Baza Zasobów Hackerspace Trójmiasto</title>
<link rel="shortcut icon" href="static/favicon.ico" />
<!-- Font Awesome CSS -->
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css"
/>
<!-- Bootstrap CSS -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity=""
/>
<link rel="stylesheet" href="static/css/style.css" />
<!-- DataTables CSS -->
<link
rel="stylesheet"
href="https://cdn.datatables.net/1.13.6/css/jquery.dataTables.min.css"
/>
</head>
<body>
{% block body %}{% endblock body %}
<dialog>
<div>
<input type="radio" id="12mm" name="type" value="12mm" />
<label for="12mm">12mm</label><br />
<input type="radio" id="18mm" name="type" value="18mm" checked />
<label for="18mm">18mm</label><br />
<input
type="radio"
id="12mm_flag"
name="type"
value="12mm_flag"
disabled
/>
<label for="12mm_flag">12mm flag</label><br />
<input type="radio" id="18mm_flag" name="type" value="18mm_flag" />
<label for="18mm_flag">18mm flag</label><br />
<input type="radio" id="18mm_ribbon" name="type" value="18mm_ribbon" />
<label for="18mm_ribbon">18mm ribbon</label><br />
<input
type="radio"
id="24mm_ribbon"
name="type"
value="24mm_ribbon"
disabled
/>
<label for="24mm_ribbon">24mm ribbon</label><br />
<input type="text" id="item_id" name="item_id" value="" />
</div>
<button id="download" autofocus>Download</button>
</dialog>
<footer>
<a href="https://github.com/MartaSien/hs3-baza-zasobow-dashboard"
>Baza zasobów Hackerspace Trójmiasto</a
>
</footer>
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.7.0.min.js"></script>
<!-- DataTables JS -->
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
<script>
$(document).ready(function () {
$("#dashboardTable").DataTable({ paging: false });
});
</script>
<script type="module">
import { downloadZip } from "https://cdn.jsdelivr.net/npm/client-zip/index.js";
let db_12mm_label_template;
let db_18mm_label_template;
let db_18mm_flag_template;
let db_18mm_ribbon_template;
let prop_input;
async function loadXml(path) {
const response = await fetch(path);
return await response.text();
}
async function initTemplates() {
db_12mm_label_template = await loadXml('static/xml/label_12.xml');
db_18mm_label_template = await loadXml('static/xml/label_18.xml');
db_18mm_flag_template = await loadXml('static/xml/label_18_flag.xml');
db_18mm_ribbon_template = await loadXml('static/xml/label_18_ribbon.xml');
prop_input = await loadXml('static/xml/prop.xml');
}
async function make_label(item_id, template) {
const prop = {
name: "prop.xml",
lastModified: new Date(),
input: prop_input,
};
let label_template;
switch (template) {
case "12mm":
label_template = db_12mm_label_template;
break;
case "18mm":
label_template = db_18mm_label_template;
break;
case "18mm_flag":
label_template = db_18mm_flag_template;
break;
case "18mm_ribbon":
label_template = db_18mm_ribbon_template;
break;
}
const label = label_template.replaceAll("{ITEM_ID}", item_id);
const db_label = {
name: "label.xml",
lastModified: new Date(),
input: label,
};
const blob = await downloadZip([prop, db_label]).blob();
const link = document.createElement("a");
link.href = URL.createObjectURL(blob);
link.download = "hs3_db_label_" + template + "_" + item_id + ".lbx";
link.click();
}
document.addEventListener("DOMContentLoaded", async () => {
await initTemplates();
const dialog = document.querySelector("dialog");
Array.prototype.slice
.call(document.getElementsByTagName("button"))
.forEach((element) => {
if (element.id.startsWith("btn_")) {
element.addEventListener("click", (e) => {
const item_id = e.target.id.replace("btn_", "");
document.getElementById("item_id").value = item_id;
dialog.showModal();
document.getElementById("download").onclick = function () {
const item_id = document.getElementById("item_id").value;
const dialog = document.querySelector("dialog");
const template = document.querySelector("input:checked").id;
make_label(item_id, template);
dialog.close();
};
});
}
});
});
</script>
</body>
</html>

View file

@ -0,0 +1,29 @@
{% extends "_base_template.html" %} {% block body %}
<div id="site-body" class="container-fluid">
<div class="row flex-nonwrap">
<div class="sidenav">{% block sidenav %}{% endblock sidenav %}</div>
<div class="main">
<h1>Baza Zasobów Hackerspace Trójmiasto</h1>
<a href="/refresh"><button id="refresh"><i class="fa fa-arrows-rotate"></i> Refresh</button></a>
<table id="dashboardTable">
<thead>
<tr>
{% for cell in t_header %}
<td>{{cell}}</td>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in t_body %}
<tr>
{% for cell in row %}
<td>{{cell}}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% endblock body %}

View file

@ -0,0 +1,14 @@
footer {
padding: 12px;
margin-top: auto;
}
/* || Sidenav */
.sidenav {
width: 250px;
position: sticky;
z-index: 1;
top: 0;
overflow-x: hidden;
padding: 6px 8px 6px 16px;
}

View file

@ -0,0 +1,177 @@
<?xml version="1.0" encoding="UTF-8"?>
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.7"
generator="P-touch Editor 5.4.016 Windows">
<pt:body currentSheet="Arkusz 1" direction="LTR">
<style:sheet name="Arkusz 1">
<style:paper media="0" width="33.6pt" height="51.2pt" marginLeft="2.8pt"
marginTop="5.6pt" marginRight="2.8pt" marginBottom="5.6pt" orientation="portrait"
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
printColorsID="8" paperColor="#FFFFFF" paperInk="#000000" split="1" format="259"
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
<style:cutLine regularCut="0pt" freeCut="" />
<style:backGround x="2.8pt" y="5.6pt" width="28pt" height="40pt" brushStyle="NULL"
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="-0.6pt" y="2.2pt" width="34.8pt" height="34.8pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false" />
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.2pt" mbcs="auto"
joint="1" version="auto" />
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<text:text>
<pt:objectStyle x="8.9pt" y="35.5pt" width="15.8pt" height="6.5pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="9pt" combinedChars="false" />
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.5pt" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.2pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="7.2pt" y="40.7pt" width="7.9pt" height="6.3pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="9pt" combinedChars="false" />
<pt:data>ID:</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="16.5pt" y="40.7pt" width="7.9pt" height="6.3pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="9pt" combinedChars="false" />
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="2.3pt" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="4.1pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</style:sheet>
</pt:body>
</pt:document>

View file

@ -0,0 +1,518 @@
<?xml version="1.0" encoding="UTF-8"?>
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.7"
generator="P-touch Editor 5.4.016 Windows">
<pt:body currentSheet="Arkusz 1" direction="LTR">
<style:sheet name="Arkusz 1">
<style:paper media="0" width="51.2pt" height="70.8pt" marginLeft="3.2pt"
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
<style:cutLine regularCut="0pt" freeCut="" />
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="59.6pt" brushStyle="NULL"
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="3.4pt" y="3.6pt" width="44.4pt" height="44.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" dbMergeFieldStyleName="qr" dbRecordOffset="0"
linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false" />
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.8pt" mbcs="auto"
joint="1" version="auto" />
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<pt:group>
<pt:objectStyle x="4.8pt" y="55.6pt" width="41.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Grupuj11" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<pt:objects>
<text:text>
<pt:objectStyle x="20.8pt" y="55.6pt" width="25.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false" />
<pt:data></pt:data>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:innerObject>
<text:text>
<pt:objectStyle x="20.8pt" y="55.6pt" width="24.8pt"
height="12.1pt" backColor="#FFFFFF"
backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1" />
<pt:brush style="NULL" color="#000000"
printColorNumber="1" id="0" />
<pt:expanded objectName="nazwa" ID="0" lock="0"
templateMergeTarget="LABELLIST"
templateMergeType="NONE" templateMergeID="0"
dbMergeFieldStyleName="nazwa" dbRecordOffset="0"
linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0"
italic="false" weight="700" charSet="238"
pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0"
strikeout="0" size="8pt" orgSize="28.8pt"
textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false"
aspectNormal="false" shrink="false" autoLF="false"
avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT"
verticalAlignment="CENTER" inLineAlignment="BASELINE" />
<text:textStyle vertical="false" nullBlock="false"
charSpace="0" lineSpace="0" orgPoint="8pt"
combinedChars="false" />
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="5">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0"
italic="false" weight="700" charSet="238"
pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0"
strikeout="0" size="8pt" orgSize="28.8pt"
textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</text:innerObject>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="4.8pt" y="55.6pt" width="15.2pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false" />
<pt:data>ID:</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
<text:text>
<pt:objectStyle x="-6.8pt" y="29.6pt" width="2pt" height="4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst6" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Arial" width="0" italic="false" weight="400"
charSet="238" pitchAndFamily="34" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="5pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="LONGTEXTFIXED" clipFrame="false" aspectNormal="true"
shrink="true" autoLF="true" avoidImage="false" />
<text:textAlign horizontalAlignment="JUSTIFY" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="true" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="5pt" combinedChars="false" />
<pt:data></pt:data>
</text:text>
<text:text>
<pt:objectStyle x="10.8pt" y="46.5pt" width="29.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false" weight="800"
charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="8pt" combinedChars="false" />
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
<style:paper media="0" width="51.2pt" height="70.8pt" marginLeft="3.2pt"
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W" />
<style:cutLine regularCut="0pt" freeCut="" />
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="59.6pt" brushStyle="NULL"
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0" />
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="3.4pt" y="3.6pt" width="44.4pt" height="44.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Kod paskowy2" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" dbMergeFieldStyleName="qr" dbRecordOffset="0"
linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="48" zeroFill="false"
barWidth="1.2pt" barRatio="1:3" humanReadable="true"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false" />
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.8pt" mbcs="auto"
joint="1" version="auto" />
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<pt:group>
<pt:objectStyle x="4.8pt" y="55.6pt" width="41.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Grupuj11" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<pt:objects>
<text:text>
<pt:objectStyle x="20.8pt" y="55.6pt" width="25.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false" />
<pt:data></pt:data>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="700" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:innerObject>
<text:text>
<pt:objectStyle x="20.8pt" y="55.6pt" width="24.8pt"
height="12.1pt" backColor="#FFFFFF"
backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1" />
<pt:brush style="NULL" color="#000000"
printColorNumber="1" id="0" />
<pt:expanded objectName="nazwa" ID="0" lock="0"
templateMergeTarget="LABELLIST"
templateMergeType="NONE" templateMergeID="0"
dbMergeFieldStyleName="nazwa" dbRecordOffset="0"
linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0"
italic="false" weight="700" charSet="238"
pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0"
strikeout="0" size="8pt" orgSize="28.8pt"
textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false"
aspectNormal="false" shrink="false" autoLF="false"
avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT"
verticalAlignment="CENTER" inLineAlignment="BASELINE" />
<text:textStyle vertical="false" nullBlock="false"
charSpace="0" lineSpace="0" orgPoint="8pt"
combinedChars="false" />
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="5">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0"
italic="false" weight="700" charSet="238"
pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0"
strikeout="0" size="8pt" orgSize="28.8pt"
textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</text:innerObject>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="4.8pt" y="55.6pt" width="15.2pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false" />
<pt:data>ID:</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
<text:text>
<pt:objectStyle x="-6.8pt" y="29.6pt" width="2pt" height="4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst6" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Arial" width="0" italic="false" weight="400"
charSet="238" pitchAndFamily="34" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="5pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="LONGTEXTFIXED" clipFrame="false" aspectNormal="true"
shrink="true" autoLF="true" avoidImage="false" />
<text:textAlign horizontalAlignment="JUSTIFY" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="true" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="5pt" combinedChars="false" />
<pt:data></pt:data>
</text:text>
<text:text>
<pt:objectStyle x="10.8pt" y="46.5pt" width="29.6pt" height="12.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1" />
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0" />
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" linkStatus="NONE" linkID="0" />
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false" weight="800"
charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false" />
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER" />
<text:textStyle vertical="false" nullBlock="false" charSpace="0" lineSpace="0"
orgPoint="8pt" combinedChars="false" />
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="1">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="800" charSet="238" pitchAndFamily="49" />
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0" size="8pt"
orgSize="28.8pt" textColor="#000000" textPrintColorNumber="1" />
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</style:sheet>
</pt:body>
</pt:document>

View file

@ -0,0 +1,336 @@
<?xml version="1.0" encoding="UTF-8"?>
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.10"
generator="com.brother.PtouchEditor">
<pt:body currentSheet="Sheet 1" direction="LTR">
<style:sheet name="Sheet 1">
<style:paper media="0" width="51.2pt" height="289.2pt" marginLeft="3.2pt"
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W"></style:paper>
<style:cutLine regularCut="0pt" freeCut=""></style:cutLine>
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="278pt" brushStyle="NULL"
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0"></style:backGround>
<pt:objects>
<pt:group>
<pt:objectStyle x="-6.8pt" y="4.3pt" width="55.2pt" height="63.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Group5" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
linkID="0"></pt:expanded>
</pt:objectStyle>
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="2pt" y="4.3pt" width="46.4pt" height="46.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Barcode1" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<text:text>
<pt:objectStyle x="20.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="4.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>ID:</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="10.8pt" y="47.5pt" width="29.6pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="6">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
<pt:group>
<pt:objectStyle x="3.3pt" y="220pt" width="46.4pt" height="63.5pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="180"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Group5" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
linkID="0"></pt:expanded>
</pt:objectStyle>
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="3.3pt" y="237.1pt" width="46.4pt" height="46.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Barcode1" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<text:text>
<pt:objectStyle x="15.7pt" y="221pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="31.7pt" y="221pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>ID:</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="11.3pt" y="230.1pt" width="29.6pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="6">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
<draw:poly>
<pt:objectStyle x="0.8pt" y="144pt" width="51.6pt" height="0.7pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="DASH" widthX="0.3pt" widthY="0.3pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Polygon2" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
linkID="0"></pt:expanded>
</pt:objectStyle>
<draw:polyStyle shape="LINE" arrowBegin="ROUND" arrowEnd="ROUND">
<draw:polyOrgPos x="0.8pt" y="144pt" width="51.6pt" height="0.7pt"></draw:polyOrgPos>
<draw:polyLinePoints points="1pt,144.5pt 52.2pt,144.2pt"></draw:polyLinePoints>
</draw:polyStyle>
</draw:poly>
</pt:objects>
</style:sheet>
</pt:body>
</pt:document>

View file

@ -0,0 +1,319 @@
<?xml version="1.0" encoding="UTF-8"?>
<pt:document xmlns:pt="http://schemas.brother.info/ptouch/2007/lbx/main"
xmlns:style="http://schemas.brother.info/ptouch/2007/lbx/style"
xmlns:text="http://schemas.brother.info/ptouch/2007/lbx/text"
xmlns:draw="http://schemas.brother.info/ptouch/2007/lbx/draw"
xmlns:image="http://schemas.brother.info/ptouch/2007/lbx/image"
xmlns:barcode="http://schemas.brother.info/ptouch/2007/lbx/barcode"
xmlns:database="http://schemas.brother.info/ptouch/2007/lbx/database"
xmlns:table="http://schemas.brother.info/ptouch/2007/lbx/table"
xmlns:cable="http://schemas.brother.info/ptouch/2007/lbx/cable" version="1.10"
generator="com.brother.PtouchEditor">
<pt:body currentSheet="Sheet 1" direction="LTR">
<style:sheet name="Sheet 1">
<style:paper media="0" width="51.2pt" height="289.2pt" marginLeft="3.2pt"
marginTop="5.6pt" marginRight="3.2pt" marginBottom="5.6pt" orientation="portrait"
autoLength="false" monochromeDisplay="true" printColorDisplay="false"
printColorsID="0" paperColor="#FFED00" paperInk="#000000" split="1" format="260"
backgroundTheme="0" printerID="26160" printerName="Brother PT-E550W"></style:paper>
<style:cutLine regularCut="0pt" freeCut=""></style:cutLine>
<style:backGround x="3.2pt" y="5.6pt" width="44.8pt" height="278pt" brushStyle="NULL"
brushId="0" userPattern="NONE" userPatternId="0" color="#000000"
printColorNumber="1" backColor="#FFFFFF" backPrintColorNumber="0"></style:backGround>
<pt:objects>
<pt:group>
<pt:objectStyle x="-6.8pt" y="4.3pt" width="55.2pt" height="63.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="0"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Group5" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
linkID="0"></pt:expanded>
</pt:objectStyle>
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="2pt" y="4.3pt" width="46.4pt" height="46.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Barcode1" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<text:text>
<pt:objectStyle x="20.8pt" y="56.6pt" width="10.4pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="4.8pt" y="56.6pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>ID:</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="10.8pt" y="47.5pt" width="29.6pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="0" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="6">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
<pt:group>
<pt:objectStyle x="3.3pt" y="220pt" width="46.4pt" height="63.5pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN" angle="180"
anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Group5" ID="0" lock="2"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false" linkStatus="NONE"
linkID="0"></pt:expanded>
</pt:objectStyle>
<pt:objects>
<barcode:barcode>
<pt:objectStyle x="3.3pt" y="237.1pt" width="46.4pt" height="46.4pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="INSIDEFRAME" widthX="0.5pt" widthY="0.5pt"
color="#000000" printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Barcode1" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<barcode:barcodeStyle protocol="QRCODE" lengths="0" zeroFill="false"
barWidth="0.8pt" barRatio="1:3" humanReadable="false"
humanReadableAlignment="LEFT" checkDigit="false" autoLengths="true"
margin="true" sameLengthBar="false" bearerBar="false"></barcode:barcodeStyle>
<barcode:qrcodeStyle model="2" eccLevel="15%" cellSize="1.6pt"
mbcs="auto" joint="1" version="auto"></barcode:qrcodeStyle>
<pt:data>https://hs3.pl/db/{ITEM_ID}</pt:data>
</barcode:barcode>
<text:text>
<pt:objectStyle x="20.5pt" y="221pt" width="10.4pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst4" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>{ITEM_ID}</pt:data>
<text:stringItem charLen="2">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="31.7pt" y="221pt" width="15.2pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="LEFT" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>ID:</pt:data>
<text:stringItem charLen="3">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
<text:text>
<pt:objectStyle x="11.3pt" y="230.1pt" width="29.6pt" height="10.1pt"
backColor="#FFFFFF" backPrintColorNumber="0" ropMode="COPYPEN"
angle="180" anchor="TOPLEFT" flip="NONE">
<pt:pen style="NULL" widthX="0.5pt" widthY="0.5pt" color="#000000"
printColorNumber="1"></pt:pen>
<pt:brush style="NULL" color="#000000" printColorNumber="1" id="0"></pt:brush>
<pt:expanded objectName="Tekst5" ID="0" lock="0"
templateMergeTarget="LABELLIST" templateMergeType="NONE"
templateMergeID="0" allowOutOfBoundsTransfer="false"
linkStatus="NONE" linkID="0"></pt:expanded>
</pt:objectStyle>
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
<text:textControl control="FREE" clipFrame="false" aspectNormal="false"
shrink="false" autoLF="false" avoidImage="false"></text:textControl>
<text:textAlign horizontalAlignment="CENTER" verticalAlignment="CENTER"
inLineAlignment="CENTER"></text:textAlign>
<text:textStyle vertical="false" nullBlock="false" charSpace="0"
lineSpace="0" orgPoint="8pt" combinedChars="false"></text:textStyle>
<text:transferSettings editOnPrintFormat="" editOnPrintOrder="0"></text:transferSettings>
<pt:data>HS3-DB</pt:data>
<text:stringItem charLen="6">
<text:ptFontInfo>
<text:logFont name="Source Code Pro" width="0" italic="false"
weight="600" charSet="0" pitchAndFamily="1"></text:logFont>
<text:fontExt effect="NOEFFECT" underline="0" strikeout="0"
size="8pt" orgSize="28.8pt" textColor="#000000"
textPrintColorNumber="1"></text:fontExt>
</text:ptFontInfo>
</text:stringItem>
</text:text>
</pt:objects>
</pt:group>
</pt:objects>
</style:sheet>
</pt:body>
</pt:document>

View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<meta:properties xmlns:meta="http://schemas.brother.info/ptouch/2007/lbx/meta"
xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dcterms="http://purl.org/dc/terms/">
<meta:appName>com.brother.PtouchEditor</meta:appName>
<dc:title></dc:title>
<dc:subject></dc:subject>
<dc:creator></dc:creator>
<meta:keyword></meta:keyword>
<dc:description></dc:description>
<meta:template></meta:template>
<dcterms:created>2026-02-02T18:12:13Z</dcterms:created>
<dcterms:modified>2026-02-02T18:16:23Z</dcterms:modified>
<meta:lastPrinted></meta:lastPrinted>
<meta:modifiedBy></meta:modifiedBy>
<meta:revision>17</meta:revision>
<meta:editTime>0</meta:editTime>
<meta:numPages>1</meta:numPages>
<meta:numWords>0</meta:numWords>
<meta:numChars>0</meta:numChars>
<meta:security>0</meta:security>
<meta:transferScript></meta:transferScript>
</meta:properties>