diff --git a/README.md b/README.md index 475059c..20a8747 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,12 @@ cd /home/rozenrod/webapps/sheep-service.com ``` ``` -docker-compose pull && docker-compose -p Sheep-Service up --build -d +cd /home/rozenrod/webapps/sheep-service.com && docker-compose pull && docker-compose -p sheep-service up --build -d api ws web +``` +or + +``` +cd /home/rozenrod/webapps/sheep-service.com && docker-compose pull && docker-compose --profile with-nginx -p sheep-service up --build -d ```
@@ -258,4 +263,29 @@ echo "0 0,12 * * * root /opt/certbot/bin/python -c 'import random; import time; ``` sudo /opt/certbot/bin/pip install --upgrade certbot certbot-nginx -``` \ No newline at end of file +``` + +
+
+ +# CRONTAB + + +``` +crontab -e +``` + + +``` +##################### +# Script for saving a backup copy of the Sheep-Service database every day at 22:30 +30 22 * * * cd /home/rozenrod/webapps/sheep-service.com && /usr/bin/python3 backup.py >> /home/rozenrod/webapps/sheep-service.com/log/backup.log 2>&1 +##################### +``` + +``` +sudo pip3 install python-dotenv +``` + +
+
\ No newline at end of file diff --git a/api/app.js b/api/app.js index bd10377..0ab7b05 100644 --- a/api/app.js +++ b/api/app.js @@ -1,9 +1,10 @@ const express = require('express'); const app = express(); const routes = require('./routes/index'); +require("dotenv").config(); // const cors = require('cors'); -const port = 4000; +const port = process.env.API_PORT || 4000; // app.use(cors()) app.use(express.json({ limit: '50mb' })); diff --git a/api/config/db.js b/api/config/db.js index 228ac2a..3f030fc 100644 --- a/api/config/db.js +++ b/api/config/db.js @@ -4,31 +4,210 @@ const path = require('path'); const dbPath = process.env.DATABASE_PATH || '../'; const db = new sqlite3.Database(path.join(dbPath, 'database.sqlite')); -// db.serialize(() => { -// db.run(` -// CREATE TABLE IF NOT EXISTS sheeps ( -// id INTEGER PRIMARY KEY AUTOINCREMENT, -// uuid TEXT UNIQUE -// ) -// `); +db.serialize(() => { + db.run(` + CREATE TABLE IF NOT EXISTS sheeps ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + group_id INTEGER, + name TEXT, + icon TEXT, + uuid TEXT, + uuid_manager TEXT, + appointment TEXT DEFAULT 'lamb', + mode INTEGER DEFAULT 0, + mode_title TEXT DEFAULT 'Користувач' + ) + `); -// db.run(` -// CREATE TABLE IF NOT EXISTS administrators ( -// sheep_id INTEGER PRIMARY KEY, -// can_view_sheeps INTEGER DEFAULT 0, -// FOREIGN KEY (sheep_id) REFERENCES sheeps(id) -// ) -// `); + db.run(` + CREATE TABLE IF NOT EXISTS possibilities ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + sheep_id INTEGER, + can_add_sheeps INTEGER DEFAULT 0, + can_view_sheeps INTEGER DEFAULT 0, + can_add_territory INTEGER DEFAULT 0, + can_view_territory INTEGER DEFAULT 0, + can_manager_territory INTEGER DEFAULT 0, + can_add_stand INTEGER DEFAULT 0, + can_view_stand INTEGER DEFAULT 0, + can_manager_stand INTEGER DEFAULT 0, + can_add_schedule INTEGER DEFAULT 0, + can_view_schedule INTEGER DEFAULT 0, + FOREIGN KEY (sheep_id) REFERENCES sheeps(id) + ) + `); -// db.run(` -// CREATE TABLE IF NOT EXISTS sessions ( -// session_id TEXT PRIMARY KEY, -// sheep_id INTEGER, -// role TEXT DEFAULT 'sheep', -// expires_at INTEGER, -// FOREIGN KEY (sheep_id) REFERENCES sheeps(id) -// ) -// `); -// }); + db.run(` + CREATE TABLE IF NOT EXISTS groups ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + group_number INTEGER, + share_hash TEXT + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS subscription ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + sheep_id INTEGER, + token TEXT, + FOREIGN KEY (sheep_id) REFERENCES sheeps(id) + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS badges ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + sheep_id INTEGER, + quantity INTEGER, + FOREIGN KEY (sheep_id) REFERENCES sheeps(id) + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS house ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + group_id INTEGER, + title TEXT, + number TEXT, + points TEXT DEFAULT '[]', + points_number TEXT DEFAULT '[]', + geo TEXT DEFAULT '[]', + osm_id TEXT DEFAULT '[]', + settlement TEXT, + description TEXT, + created_at TIMESTAMP, + updated_at TIMESTAMP, + FOREIGN KEY (group_id) REFERENCES groups(group_number) + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS entrance ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + house_id INTEGER, + entrance_number INTEGER, + title TEXT, + points TEXT DEFAULT '[]', + points_number TEXT DEFAULT '[]', + floors_quantity TEXT, + apartments_quantity TEXT, + description TEXT, + created_at TIMESTAMP, + updated_at TIMESTAMP, + FOREIGN KEY (house_id) REFERENCES house(id) + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS entrance_history ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + entrance_id INTEGER, + name TEXT, + date_start TIMESTAMP, + date_end TIMESTAMP, + group_id INTEGER, + sheep_id TEXT, + working INTEGER DEFAULT 0, + FOREIGN KEY (entrance_id) REFERENCES entrance(id) + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS apartments ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + entrance_id INTEGER, + apartment_number INTEGER, + title TEXT, + floors_number INTEGER, + status INTEGER, + description TEXT, + sheep_id TEXT, + updated_at TIMESTAMP, + FOREIGN KEY (entrance_id) REFERENCES entrance(id) + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS apartments_history ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + sheep_id TEXT, + apartments_id INTEGER, + status INTEGER, + description TEXT, + created_at TIMESTAMP, + FOREIGN KEY (apartments_id) REFERENCES apartments(id) + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS homestead ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + group_id INTEGER, + title TEXT, + number TEXT, + points TEXT DEFAULT '[]', + point_icons TEXT DEFAULT '[]', + geo TEXT DEFAULT '[]', + osm_id TEXT DEFAULT '[]', + settlement TEXT, + description TEXT, + created_at TIMESTAMP, + updated_at TIMESTAMP, + FOREIGN KEY (group_id) REFERENCES groups(group_number) + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS homestead_history ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + homestead_id INTEGER, + name TEXT, + date_start TIMESTAMP, + date_end TIMESTAMP, + group_id INTEGER, + sheep_id TEXT, + working INTEGER DEFAULT 0, + FOREIGN KEY (homestead_id) REFERENCES homestead(id) + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS meetings_schedule ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + date TIMESTAMP, + type INTEGER, + name TEXT, + sheep_id TEXT, + title TEXT, + number TEXT, + FOREIGN KEY (sheep_id) REFERENCES sheeps(id) + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS stand_list ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + title TEXT, + hour_start INTEGER DEFAULT 10, + hour_end INTEGER DEFAULT 16, + quantity_sheep INTEGER DEFAULT 2, + week_days TEXT DEFAULT '[0, 1, 2, 3, 4, 5, 6]' + ) + `); + + db.run(` + CREATE TABLE IF NOT EXISTS stand_schedule ( + id INTEGER PRIMARY KEY AUTOINCREMENT, + stand INTEGER, + date TIMESTAMP, + hour INTEGER, + sheep_id TEXT, + number_sheep TEXT, + updated_at TIMESTAMP, + FOREIGN KEY (stand) REFERENCES stand_list(id), + FOREIGN KEY (sheep_id) REFERENCES sheeps(id) + ) + `); +}); module.exports = db; \ No newline at end of file diff --git a/api/config/telegram.config.js b/api/config/telegram.config.js deleted file mode 100644 index df622eb..0000000 --- a/api/config/telegram.config.js +++ /dev/null @@ -1,6 +0,0 @@ -const TelegramConfig = { - token: "7855966674:AAEw9l_EF0GcpjrkSFzt0aLukEfJxBA2gcY", - chatId: "224538769" -} - -module.exports = TelegramConfig; \ No newline at end of file diff --git a/api/controllers/apartments.controller.js b/api/controllers/apartments.controller.js index e7515a5..0c404be 100644 --- a/api/controllers/apartments.controller.js +++ b/api/controllers/apartments.controller.js @@ -5,7 +5,7 @@ class ApartmentsController { const { entrance_id } = req.params; if (entrance_id) { - if (req.sheepRole == "administrator" || (req.sheepRole == "moderator" && req.moderator.can_manager_territory) || req.can_view_territory) { + if (req.possibilities.can_view_territory) { let result = await ApartmentsService.getApartments(entrance_id); if (result) { return res @@ -33,7 +33,7 @@ class ApartmentsController { const data = req.body; if (entrance_id && data) { - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await ApartmentsService.createApartments( entrance_id, data @@ -62,7 +62,7 @@ class ApartmentsController { const data = req.body; if (data) { - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await ApartmentsService.updateApartments(data); if (result) { return res.status(200).send(result); @@ -87,7 +87,7 @@ class ApartmentsController { const data = req.body; if (data) { - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await ApartmentsService.deleteApartments(data); if (result) { return res.status(200).send(result); diff --git a/api/controllers/auth.controller.js b/api/controllers/auth.controller.js index e9b4fb8..406e404 100644 --- a/api/controllers/auth.controller.js +++ b/api/controllers/auth.controller.js @@ -2,8 +2,8 @@ const AuthService = require('../services/auth.service'); class AuthController { async login(req, res) { - if (req.sheepId && req.sheepRole) { - const result = await AuthService.findUserByID(req.sheepId, req.sheepRole); + if (req.sheepId) { + const result = await AuthService.findUserByID(req.sheepId, req.mode); if (result) { return res.status(200).send(result); } else { diff --git a/api/controllers/buildings.controller.js b/api/controllers/buildings.controller.js new file mode 100644 index 0000000..e912472 --- /dev/null +++ b/api/controllers/buildings.controller.js @@ -0,0 +1,112 @@ +const BuildingsService = require('../services/buildings.service'); + +class BuildingsController { + async getList(req, res) { + const { id } = req.params; + + if (id) { + if (req.possibilities.can_view_territory) { + let result = await BuildingsService.getList(id); + if (result) { + return res + .status(200) + .send(result); + } else { + return res + .status(500) + .send({ message: 'Internal server error.' }); + } + } else { + return res + .status(403) + .send({ message: 'The user does not have enough rights.' }); + } + } else { + return res + .status(401) + .send({ message: 'Buildings not found.' }); + } + } + + async createBuildings(req, res) { + const { id } = req.params; + const data = req.body; + + if (id && data) { + if (req.possibilities.can_add_territory) { + let result = await BuildingsService.createBuildings( + id, + data + ); + + if (result) { + return res.status(200).send(result); + } else { + return res.status(500).send({ + message: 'Unable create building.', + }); + } + } else { + return res + .status(403) + .send({ message: 'The user does not have enough rights.' }); + } + } else { + return res + .status(401) + .send({ message: 'Entrance not found.' }); + } + } + + async updateBuildings(req, res) { + const data = req.body; + + if (data) { + if (req.possibilities.can_add_territory) { + let result = await BuildingsService.updateBuildings(data); + if (result) { + return res.status(200).send(result); + } else { + return res.status(500).send({ + message: 'Unable update building.', + }); + } + } else { + return res + .status(403) + .send({ message: 'The user does not have enough rights.' }); + } + } else { + return res + .status(401) + .send({ message: 'Data not found.' }); + } + } + + async deleteBuildings(req, res) { + const { id } = req.params; + + if (id) { + if (req.possibilities.can_add_territory) { + let result = await BuildingsService.deleteBuildings(id); + if (result) { + return res.status(200).send(result); + } else { + return res.status(500).send({ + message: 'Unable delete building.', + }); + } + } else { + return res + .status(403) + .send({ message: 'The user does not have enough rights.' }); + } + } else { + return res + .status(401) + .send({ message: 'building id not found.' }); + } + } +} + +module.exports = new BuildingsController(); \ No newline at end of file diff --git a/api/controllers/constructor.controller.js b/api/controllers/constructor.controller.js index 64859b6..a9daab6 100644 --- a/api/controllers/constructor.controller.js +++ b/api/controllers/constructor.controller.js @@ -5,7 +5,7 @@ class ConstructorController { const data = req.body; if (data) { - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await ConstructorService.createPack(data); if (result) { diff --git a/api/controllers/entrances.controller.js b/api/controllers/entrances.controller.js index ecc71ef..df293ff 100644 --- a/api/controllers/entrances.controller.js +++ b/api/controllers/entrances.controller.js @@ -5,7 +5,7 @@ class EntrancesController { const { house_id } = req.params; if (house_id) { - if (req.sheepRole == "administrator" || (req.sheepRole == "moderator" && req.moderator.can_manager_territory) || req.can_view_territory) { + if (req.possibilities.can_view_territory) { let result = await EntrancesService.getEntrances(house_id); if (result) { return res @@ -33,7 +33,7 @@ class EntrancesController { const data = req.body; if (house_id) { - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await EntrancesService.createEntrance( house_id, data @@ -62,7 +62,7 @@ class EntrancesController { const data = req.body; if (data) { - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await EntrancesService.updateEntrance(data); if (result) { return res.status(200).send(result); @@ -87,7 +87,7 @@ class EntrancesController { const data = req.body; if (data) { - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await EntrancesService.deleteEntrance(data); if (result) { return res.status(200).send(result); diff --git a/api/controllers/generator.cards.controller.js b/api/controllers/generator.cards.controller.js index 8c08289..f29c14e 100644 --- a/api/controllers/generator.cards.controller.js +++ b/api/controllers/generator.cards.controller.js @@ -4,7 +4,7 @@ class GeneratorCardsController { async getScreen(req, res) { const { lat, lng, type, wayId, zoom, id, address, number } = req.query; - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await saveCards({ center: {lat:lat,lng:lng}, wayId: wayId, zoom: zoom ?? 18, type: type, number: id, address: `${address} ${number}` }); console.log(result); diff --git a/api/controllers/history.entrance.controller.js b/api/controllers/history.entrance.controller.js index 4a10a3b..13952c2 100644 --- a/api/controllers/history.entrance.controller.js +++ b/api/controllers/history.entrance.controller.js @@ -5,7 +5,7 @@ class HistoryEntranceController { const { entrance_id } = req.params; if (entrance_id) { - if (req.sheepRole == "administrator" || req.moderator.can_manager_territory) { + if (req.possibilities.can_manager_territory) { let result = await HistoryEntranceService.getHistoryEntrance(entrance_id); if (result) { return res @@ -33,7 +33,7 @@ class HistoryEntranceController { const data = req.body; if (entrance_id) { - if (req.sheepRole == "administrator" || req.moderator.can_manager_territory) { + if (req.possibilities.can_manager_territory) { let result = await HistoryEntranceService.createHistoryEntrance( entrance_id, data @@ -62,7 +62,7 @@ class HistoryEntranceController { const { entrance_id } = req.params; if (entrance_id) { - if (req.sheepRole == "administrator" || req.moderator.can_manager_territory) { + if (req.possibilities.can_manager_territory) { let result = await HistoryEntranceService.updateHistoryEntrance(entrance_id); if (result) { return res.status(200).send(result); @@ -87,7 +87,7 @@ class HistoryEntranceController { const { entrance_id } = req.params; if (entrance_id) { - if (req.sheepRole == "administrator" || req.moderator.can_manager_territory) { + if (req.possibilities.can_manager_territory) { let result = await HistoryEntranceService.deleteHistoryEntrance(entrance_id); if (result) { return res.status(200).send(result); diff --git a/api/controllers/history.homestead.controller.js b/api/controllers/history.homestead.controller.js index 6001925..27dcf35 100644 --- a/api/controllers/history.homestead.controller.js +++ b/api/controllers/history.homestead.controller.js @@ -5,7 +5,7 @@ class HistoryHomesteadController { const { homestead_id } = req.params; if (homestead_id) { - if (req.sheepRole == "administrator" || req.moderator.can_manager_territory) { + if (req.possibilities.can_manager_territory) { let result = await HistoryHomesteadService.getHistoryHomestead(homestead_id); if (result) { return res @@ -33,7 +33,7 @@ class HistoryHomesteadController { const data = req.body; if (homestead_id) { - if (req.sheepRole == "administrator" || req.moderator.can_manager_territory) { + if (req.possibilities.can_manager_territory) { let result = await HistoryHomesteadService.createHistoryHomestead( homestead_id, data @@ -63,7 +63,7 @@ class HistoryHomesteadController { const { homestead_id } = req.params; if (homestead_id) { - if (req.sheepRole == "administrator" || req.moderator.can_manager_territory) { + if (req.possibilities.can_manager_territory) { let result = await HistoryHomesteadService.updateHistoryHomestead(homestead_id); if (result) { return res.status(200).send(result); @@ -88,7 +88,7 @@ class HistoryHomesteadController { const { homestead_id } = req.params; if (homestead_id) { - if (req.sheepRole == "administrator" || req.moderator.can_manager_territory) { + if (req.possibilities.can_manager_territory) { let result = await HistoryHomesteadService.deleteHistoryHomestead(homestead_id); if (result) { return res.status(200).send(result); diff --git a/api/controllers/homesteads.controller.js b/api/controllers/homesteads.controller.js index c9cc6c5..a45c6f8 100644 --- a/api/controllers/homesteads.controller.js +++ b/api/controllers/homesteads.controller.js @@ -4,19 +4,21 @@ class HomesteadsController { async getList(req, res) { const { mode } = req.query; - if (req.sheepRole == "administrator" || (req.sheepRole == "moderator" && req.moderator.can_manager_territory) || req.can_view_territory) { + if (req.possibilities.can_view_territory) { let group_id = 0; let sheepName = false; - if (req.sheepRole == "administrator") { - group_id = 0; - } else if (req.sheepRole == "moderator") { - group_id = req.group_id; - } + // if (req.mode == 2) { + // group_id = 0; + // } else if (req.mode == 1) { + // group_id = req.group_id; + // } if (mode == "sheep") { group_id = req.group_id; sheepName = req.sheepName; + } else if (mode == "group"){ + group_id = req.group_id; } let result = await HomesteadsService.getList(group_id, sheepName); @@ -40,7 +42,7 @@ class HomesteadsController { const { homestead_id } = req.params; if (homestead_id) { - if (req.sheepRole == "administrator" || (req.sheepRole == "moderator" && req.moderator.can_manager_territory) || req.can_view_territory) { + if (req.possibilities.can_view_territory) { let result = await HomesteadsService.getHomestead(homestead_id); if (result) { return res @@ -67,7 +69,7 @@ class HomesteadsController { const data = req.body; if (data) { - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await HomesteadsService.createHomestead(data); if (result) { return res.status(200).send(result); @@ -93,7 +95,7 @@ class HomesteadsController { const data = req.body; if (homestead_id) { - if (req.sheepRole == "administrator" || req.moderator.can_manager_territory) { + if (req.possibilities.can_manager_territory) { let result = await HomesteadsService.updateHomestead(homestead_id, data); if (result) { return res.status(200).send(result); @@ -118,7 +120,7 @@ class HomesteadsController { const { homestead_id } = req.params; if (homestead_id) { - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await HomesteadsService.deleteHomestead(homestead_id); if (result) { return res.status(200).send(result); diff --git a/api/controllers/houses.controller.js b/api/controllers/houses.controller.js index 59c5b55..b7dadf3 100644 --- a/api/controllers/houses.controller.js +++ b/api/controllers/houses.controller.js @@ -1,22 +1,44 @@ const HousesService = require('../services/houses.service'); class HousesController { + async getListEntrance(req, res) { + if (req.possibilities.can_manager_territory) { + + let result = await HousesService.getListEntrance(); + if (result) { + return res + .status(200) + .send(result); + } else { + return res + .status(500) + .send({ message: 'Internal server error.' }); + } + } else { + return res + .status(403) + .send({ message: 'The user does not have enough rights.' }); + } + } + async getList(req, res) { const { mode } = req.query; - if (req.sheepRole == "administrator" || (req.sheepRole == "moderator" && req.moderator.can_manager_territory) || req.can_view_territory) { + if (req.possibilities.can_view_territory) { let group_id = 0; let sheepName = false; - if (req.sheepRole == "administrator") { - group_id = 0; - } else if (req.sheepRole == "moderator") { - group_id = req.group_id; - } + // if (req.mode == 2) { + // group_id = 0; + // } else if (req.mode == 1) { + // group_id = req.group_id; + // } if (mode == "sheep") { group_id = req.group_id; sheepName = req.sheepName; + } else if (mode == "group"){ + group_id = req.group_id; } let result = await HousesService.getList(group_id, sheepName); @@ -40,7 +62,7 @@ class HousesController { const { house_id } = req.params; if (house_id) { - if (req.sheepRole == "administrator" || (req.sheepRole == "moderator" && req.moderator.can_manager_territory) || req.can_view_territory) { + if (req.possibilities.can_view_territory) { let result = await HousesService.getHouse(house_id); if (result) { return res @@ -66,7 +88,7 @@ class HousesController { async createHouse(req, res) { const data = req.body; - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await HousesService.createHouse(data); if (result) { return res.status(200).send(result); @@ -87,7 +109,7 @@ class HousesController { const data = req.body; if (house_id) { - if (req.sheepRole == "administrator" || req.moderator.can_manager_territory) { + if (req.possibilities.can_manager_territory) { let result = await HousesService.updateHouse(house_id, data); if (result) { return res.status(200).send(result); @@ -112,7 +134,7 @@ class HousesController { const { house_id } = req.params; if (house_id) { - if (req.sheepRole == "administrator" || req.moderator.can_add_territory) { + if (req.possibilities.can_add_territory) { let result = await HousesService.deleteHouse(house_id); if (result) { return res.status(200).send(result); diff --git a/api/controllers/push.controller.js b/api/controllers/push.controller.js new file mode 100644 index 0000000..d7025a1 --- /dev/null +++ b/api/controllers/push.controller.js @@ -0,0 +1,67 @@ +const PushService = require('../services/push.service'); + +class PushController { + async getKey(req, res) { + let result = await PushService.getKey(); + + if (result) { + return res.status(200).send(result); + } else { + return res.status(404).send({ + message: 'Key not found.' + }); + } + } + + async createSubscribe(req, res) { + const data = req.body; + if (data) { + if (req.sheepId) { + let result = await PushService.createSubscribe(req.sheepId, data); + + if (result) { + return res.status(200).send(result); + } else { + return res.status(500).send({ + message: 'Unable create subscribe.', + }); + } + } else { + return res + .status(401) + .send({ message: 'Sheeps not found.' }); + } + } else { + return res + .status(401) + .send({ message: 'Data not found.' }); + } + } + + async deleteSubscribe(req, res) { + const data = req.body; + if (data) { + if (req.sheepId) { + let result = await PushService.deleteSubscribe(data); + + if (result) { + return res.status(200).send(result); + } else { + return res.status(500).send({ + message: 'Unable delete subscribe.', + }); + } + } else { + return res + .status(401) + .send({ message: 'Sheeps not found.' }); + } + } else { + return res + .status(401) + .send({ message: 'Data not found.' }); + } + } +} + +module.exports = new PushController(); \ No newline at end of file diff --git a/api/controllers/rotation.controller.js b/api/controllers/rotation.controller.js deleted file mode 100644 index 1099900..0000000 --- a/api/controllers/rotation.controller.js +++ /dev/null @@ -1,24 +0,0 @@ -const RotationService = require('../services/rotation.service'); - -class RotationController { - async editTables(req, res) { - if (req.sheepRole == "administrator") { - let result = await RotationService.editTables(); - - if (result) { - return res.status(200).send(result); - } else { - return res - .status(404) - .send({ message: 'User not found.' }); - } - } else { - return res - .status(403) - .send({ message: 'The user does not have enough rights.' }); - } - - } -} - -module.exports = new RotationController(); \ No newline at end of file diff --git a/api/controllers/sheeps.controller.js b/api/controllers/sheeps.controller.js index d98a6e9..1e27694 100644 --- a/api/controllers/sheeps.controller.js +++ b/api/controllers/sheeps.controller.js @@ -2,11 +2,11 @@ const SheepsService = require('../services/sheeps.service'); class SheepsController { async getSheep(req, res) { - const { uuid } = req.query; + const { id } = req.query; - if (uuid) { - if (req.sheepRole) { - const result = await SheepsService.getSheep(uuid, req.sheepRole); + if (id) { + if (req.possibilities.can_view_sheeps) { + const result = await SheepsService.getSheep(id, req.mode); if (result) { return res.status(200).send(result); } else { @@ -27,8 +27,8 @@ class SheepsController { } async getList(req, res) { - if (req.sheepRole) { - const result = await SheepsService.getList(req.sheepRole); + if (req.possibilities.can_view_sheeps) { + const result = await SheepsService.getList(req.mode); if (result) { return res.status(200).send(result); @@ -40,14 +40,14 @@ class SheepsController { } else { return res .status(404) - .send({ message: 'Users not found.' }); + .send({ message: 'The sheep does not have enough rights.' }); } } async createSheep(req, res) { const data = req.body; - if (req.sheepRole && (req.sheepRole == "administrator" || req.moderator.can_add_sheeps)) { + if (req.possibilities.can_add_sheeps) { let result = await SheepsService.createSheep(data); if (result) { @@ -65,12 +65,9 @@ class SheepsController { } async updateSheep(req, res) { - const { uuid } = req.query; const data = req.body; - console.log("data", data); - - if (req.sheepRole == "administrator") { + if (req.mode == 2) { let result = await SheepsService.updateSheep(data); if (result) { @@ -90,7 +87,7 @@ class SheepsController { async deleteSheep(req, res) { const data = req.body; - if (req.sheepRole == "administrator") { + if (req.mode == 2) { let result = await SheepsService.deleteSheep(data); if (result) { return res.status(200).send(result); diff --git a/api/controllers/stand.controller.js b/api/controllers/stand.controller.js new file mode 100644 index 0000000..9fb132e --- /dev/null +++ b/api/controllers/stand.controller.js @@ -0,0 +1,143 @@ +const StandService = require('../services/stand.service'); + +class StandController { + async getStand(req, res) { + const { stand_id } = req.params; + + return res.status(200).send({ stand_id }); + } + + async getList(req, res) { + if (req.possibilities.can_view_stand) { + const result = await StandService.getList(); + + if (result) { + return res.status(200).send(result); + } else { + return res + .status(404) + .send({ message: 'Stands not found.' }); + } + } else { + return res + .status(404) + .send({ message: 'The sheep does not have enough rights.' }); + } + + } + + async createStand(req, res) { + const data = req.body; + + if (data) { + if (req.possibilities.can_add_stand) { + let result = await StandService.createStand(data); + + if (result) { + return res.status(200).send(result); + } else { + return res.status(500).send({ + message: 'Unable create stand.', + }); + } + } else { + return res + .status(403) + .send({ message: 'The user does not have enough rights.' }); + } + } else { + return res + .status(401) + .send({ message: 'Data not found.' }); + } + } + + async updateStand(req, res) { + const { stand_id } = req.params; + const data = req.body; + + if (stand_id && data) { + if (req.possibilities.can_add_stand) { + let result = await StandService.updateStand(stand_id, data); + if (result) { + return res.status(200).send(result); + } else { + return res.status(500).send({ + message: 'Unable update stand.', + }); + } + } else { + return res + .status(403) + .send({ message: 'The user does not have enough rights.' }); + } + } else { + return res + .status(401) + .send({ message: 'stand_id or data not found.' }); + } + } + + async deleteStand(req, res) { + const { stand_id } = req.params; + + if (stand_id) { + if (req.possibilities.can_add_stand) { + let result = await StandService.deleteStand(stand_id); + if (result) { + return res.status(200).send(result); + } else { + return res.status(500).send({ + message: 'Unable delete stend.', + }); + } + } else { + return res + .status(403) + .send({ message: 'The user does not have enough rights.' }); + } + } else { + return res + .status(401) + .send({ message: 'stand_id not found.' }); + } + } + + async createSchedule(req, res) { + const { stand_id } = req.params; + + if (stand_id) { + if (req.possibilities.can_add_stand) { + let result = await StandService.createSchedule(stand_id); + + if (result) { + return res.status(200).send(result); + } else { + return res.status(500).send({ + message: 'Unable create stand.', + }); + } + } else { + return res + .status(403) + .send({ message: 'The user does not have enough rights.' }); + } + } else { + return res + .status(401) + .send({ message: 'stand_id not found.' }); + } + } + + async getScheduleList(req, res) { + return res.status(200).send({}); + } + + async getScheduleHistory(req, res) { + const { stand_schedule_id } = req.params; + + return res.status(200).send({ stand_schedule_id }); + } +} + +module.exports = new StandController(); \ No newline at end of file diff --git a/api/middleware/auth.js b/api/middleware/auth.js index 3910374..66a8514 100644 --- a/api/middleware/auth.js +++ b/api/middleware/auth.js @@ -5,62 +5,91 @@ const authenticate = (req, res, next) => { if (!uuid) return res.status(401).json({ error: "Unauthorized" }); db.get(` - SELECT sheeps.*, administrators.* FROM administrators JOIN sheeps ON sheeps.id = administrators.sheep_id WHERE administrators.uuid = ?`, + SELECT + sheeps.*, + possibilities.can_add_sheeps AS can_add_sheeps, + possibilities.can_view_sheeps AS can_view_sheeps, + possibilities.can_add_territory AS can_add_territory, + possibilities.can_view_territory AS can_view_territory, + possibilities.can_manager_territory AS can_manager_territory, + possibilities.can_add_stand AS can_add_stand, + possibilities.can_view_stand AS can_view_stand, + possibilities.can_manager_stand AS can_manager_stand, + possibilities.can_add_schedule AS can_add_schedule, + possibilities.can_view_schedule AS can_view_schedule + FROM + sheeps + LEFT JOIN + possibilities ON possibilities.sheep_id = sheeps.id + WHERE + sheeps.uuid_manager = ?`, [uuid], - (err, administrator) => { - if (administrator) { - req.sheepId = administrator.sheep_id; - req.sheepRole = 'administrator'; - req.group_id = administrator.group_id; - req.sheepName = administrator.name; - req.can_view_schedule = administrator.can_view_schedule; - req.can_view_stand = administrator.can_view_stand; - req.can_view_territory = administrator.can_view_territory; + (err, moderator) => { + if (moderator) { + req.sheepId = moderator.id; + req.sheepName = moderator.name; + req.group_id = moderator.group_id; + req.mode = Number(moderator.mode); + req.possibilities = { + can_add_sheeps: moderator.can_add_sheeps == 1 ? true : false, + can_view_sheeps: moderator.can_view_sheeps == 1 ? true : false, + can_add_territory: moderator.can_add_territory == 1 ? true : false, + can_view_territory: moderator.can_view_territory == 1 ? true : false, + can_manager_territory: moderator.can_manager_territory == 1 ? true : false, + can_add_stand: moderator.can_add_stand == 1 ? true : false, + can_view_stand: moderator.can_view_stand == 1 ? true : false, + can_manager_stand: moderator.can_manager_stand == 1 ? true : false, + can_add_schedule: moderator.can_add_schedule == 1 ? true : false, + can_view_schedule: moderator.can_view_schedule == 1 ? true : false + } return next(); } db.get(` - SELECT sheeps.*, moderators.* FROM moderators JOIN sheeps ON sheeps.id = moderators.sheep_id WHERE moderators.uuid = ?`, + SELECT + sheeps.*, + possibilities.can_add_sheeps AS can_add_sheeps, + possibilities.can_view_sheeps AS can_view_sheeps, + possibilities.can_add_territory AS can_add_territory, + possibilities.can_view_territory AS can_view_territory, + possibilities.can_manager_territory AS can_manager_territory, + possibilities.can_add_stand AS can_add_stand, + possibilities.can_view_stand AS can_view_stand, + possibilities.can_manager_stand AS can_manager_stand, + possibilities.can_add_schedule AS can_add_schedule, + possibilities.can_view_schedule AS can_view_schedule + FROM + sheeps + LEFT JOIN + possibilities ON possibilities.sheep_id = sheeps.id + WHERE + sheeps.uuid = ?`, [uuid], - (err, moderator) => { - if (moderator) { - req.sheepId = moderator.sheep_id; - req.sheepRole = 'moderator'; - req.moderator = { - "id": moderator.moderators_id ? moderator.moderators_id : false, - "can_add_sheeps": moderator.can_add_sheeps == 1 ? true : false, - "can_add_territory": moderator.can_add_territory == 1 ? true : false, - "can_manager_territory": moderator.can_manager_territory == 1 ? true : false, - "can_add_stand": moderator.can_add_stand == 1 ? true : false, - "can_manager_stand": moderator.can_manager_stand == 1 ? true : false, - "can_add_schedule": moderator.can_add_schedule == 1 ? true : false + (err, sheep) => { + if (sheep) { + req.sheepId = sheep.id; + req.sheepName = sheep.name; + req.group_id = sheep.group_id; + req.uuid_manager = null; + req.mode = 0; + req.possibilities = { + can_add_sheeps: false, + can_view_sheeps: false, + can_add_territory: false, + can_manager_territory: false, + can_add_stand: false, + can_manager_stand: false, + can_add_schedule: false, + can_view_territory: sheep.can_view_territory == 1 ? true : false, + can_view_stand: sheep.can_view_stand == 1 ? true : false, + can_view_schedule: sheep.can_view_schedule == 1 ? true : false } - req.group_id = moderator.group_id; - req.sheepName = moderator.name; - req.can_view_schedule = moderator.can_view_schedule; - req.can_view_stand = moderator.can_view_stand; - req.can_view_territory = moderator.can_view_territory; return next(); } - db.get(`SELECT sheeps.* FROM sheeps WHERE sheeps.uuid = ?`, [uuid], (err, sheep) => { - if (sheep) { - req.sheepId = sheep.id; - req.sheepRole = 'sheep'; - req.group_id = sheep.group_id; - req.sheepName = sheep.name; - req.can_view_schedule = sheep.can_view_schedule; - req.can_view_stand = sheep.can_view_stand; - req.can_view_territory = sheep.can_view_territory; - - return next(); - } - - return res.status(401).json({ error: "UUID not found" }); - } - ); + return res.status(401).json({ error: "UUID not found" }); } ); } diff --git a/api/package-lock.json b/api/package-lock.json index e86c416..146acea 100644 --- a/api/package-lock.json +++ b/api/package-lock.json @@ -1,39 +1,41 @@ { "name": "API Sheep Service", - "version": "1.0.0", + "version": "1.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "API Sheep Service", - "version": "1.0.0", + "version": "1.0.1", "license": "ISC", "dependencies": { "cors": "^2.8.5", + "dotenv": "^17.2.0", "express": "^4.21.0", "node-telegram-bot-api": "^0.66.0", "puppeteer": "^24.4.0", "sharp": "^0.33.5", - "sqlite3": "^5.1.7" + "sqlite3": "^5.1.7", + "web-push": "^3.6.7" } }, "node_modules/@babel/code-frame": { - "version": "7.26.2", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", - "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.27.1.tgz", + "integrity": "sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==", "dependencies": { - "@babel/helper-validator-identifier": "^7.25.9", + "@babel/helper-validator-identifier": "^7.27.1", "js-tokens": "^4.0.0", - "picocolors": "^1.0.0" + "picocolors": "^1.1.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.25.9", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", - "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", + "version": "7.27.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.27.1.tgz", + "integrity": "sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==", "engines": { "node": ">=6.9.0" } @@ -112,9 +114,9 @@ } }, "node_modules/@emnapi/runtime": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.3.1.tgz", - "integrity": "sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==", + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.4.tgz", + "integrity": "sha512-hHyapA4A3gPaDCNfiqyZUStTMqIkKRshqPIuDOXv1hcBnD4U3l8cP0T1HMCfGRxQ6V64TGCcoswChANyOAwbQg==", "optional": true, "dependencies": { "tslib": "^2.4.0" @@ -493,15 +495,15 @@ } }, "node_modules/@puppeteer/browsers": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.8.0.tgz", - "integrity": "sha512-yTwt2KWRmCQAfhvbCRjebaSX8pV1//I0Y3g+A7f/eS7gf0l4eRJoUCvcYdVtboeU4CTOZQuqYbZNS8aBYb8ROQ==", + "version": "2.10.5", + "resolved": "https://registry.npmjs.org/@puppeteer/browsers/-/browsers-2.10.5.tgz", + "integrity": "sha512-eifa0o+i8dERnngJwKrfp3dEq7ia5XFyoqB17S4gK8GhsQE4/P8nxOfQSE0zQHxzzLo/cmF+7+ywEQ7wK7Fb+w==", "dependencies": { - "debug": "^4.4.0", + "debug": "^4.4.1", "extract-zip": "^2.0.1", "progress": "^2.0.3", "proxy-agent": "^6.5.0", - "semver": "^7.7.1", + "semver": "^7.7.2", "tar-fs": "^3.0.8", "yargs": "^17.7.2" }, @@ -513,9 +515,9 @@ } }, "node_modules/@puppeteer/browsers/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dependencies": { "ms": "^2.1.3" }, @@ -548,12 +550,12 @@ "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==" }, "node_modules/@types/node": { - "version": "22.13.11", - "resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.11.tgz", - "integrity": "sha512-iEUCUJoU0i3VnrCmgoWCXttklWcvoCIx4jzcP22fioIVSdTmjgoEvmAO/QPw6TcS9k5FrNgn4w7q5lGOd1CT5g==", + "version": "24.0.13", + "resolved": "https://registry.npmjs.org/@types/node/-/node-24.0.13.tgz", + "integrity": "sha512-Qm9OYVOFHFYg3wJoTSrz80hoec5Lia/dPp84do3X7dZvLikQvM1YpmvTBEdIr/e+U8HTkFjLHLnl78K/qjf+jQ==", "optional": true, "dependencies": { - "undici-types": "~6.20.0" + "undici-types": "~7.8.0" } }, "node_modules/@types/yauzl": { @@ -584,9 +586,9 @@ } }, "node_modules/agent-base": { - "version": "7.1.3", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", - "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.4.tgz", + "integrity": "sha512-MnA+YT8fwfJPgBx3m60MNqakm30XOkyIoH1y6huTQvC0PwZG7ki8NacLBcrPbNoo8vEZy7Jpuk7+jMO+CUovTQ==", "engines": { "node": ">= 14" } @@ -757,6 +759,17 @@ "safer-buffer": "~2.1.0" } }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, "node_modules/assert-plus": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", @@ -828,29 +841,37 @@ "optional": true }, "node_modules/bare-events": { - "version": "2.5.4", - "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.5.4.tgz", - "integrity": "sha512-+gFfDkR8pj4/TrWCGUGWmJIkBwuxPS5F+a5yWjOHQt2hHvNZd5YLzadjmDUtFmMM4y429bnKLa8bYBMHcYdnQA==", + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/bare-events/-/bare-events-2.6.0.tgz", + "integrity": "sha512-EKZ5BTXYExaNqi3I3f9RtEsaI/xBSGjE0XZCZilPzFAV/goswFHuPd9jEZlPIZ/iNZJwDSao9qRiScySz7MbQg==", "optional": true }, "node_modules/bare-fs": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.0.1.tgz", - "integrity": "sha512-ilQs4fm/l9eMfWY2dY0WCIUplSUp7U0CT1vrqMg1MUdeZl4fypu5UP0XcDBK5WBQPJAKP1b7XEodISmekH/CEg==", + "version": "4.1.6", + "resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.1.6.tgz", + "integrity": "sha512-25RsLF33BqooOEFNdMcEhMpJy8EoR88zSMrnOQOaM3USnOK2VmaJ1uaQEwPA6AQjrv1lXChScosN6CzbwbO9OQ==", "optional": true, "dependencies": { - "bare-events": "^2.0.0", + "bare-events": "^2.5.4", "bare-path": "^3.0.0", - "bare-stream": "^2.0.0" + "bare-stream": "^2.6.4" }, "engines": { - "bare": ">=1.7.0" + "bare": ">=1.16.0" + }, + "peerDependencies": { + "bare-buffer": "*" + }, + "peerDependenciesMeta": { + "bare-buffer": { + "optional": true + } } }, "node_modules/bare-os": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.6.0.tgz", - "integrity": "sha512-BUrFS5TqSBdA0LwHop4OjPJwisqxGy6JsWVqV6qaFoe965qqtaKfDzHY5T2YA1gUL0ZeeQeA+4BBc1FJTcHiPw==", + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/bare-os/-/bare-os-3.6.1.tgz", + "integrity": "sha512-uaIjxokhFidJP+bmmvKSgiMzj2sV5GPHaZVAIktcxcpCyBFFWO+YlikVAdhmUo2vYFvFhOXIAlldqV29L8126g==", "optional": true, "engines": { "bare": ">=1.14.0" @@ -943,6 +964,11 @@ "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" }, + "node_modules/bn.js": { + "version": "4.12.2", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz", + "integrity": "sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==" + }, "node_modules/body-parser": { "version": "1.20.3", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", @@ -967,9 +993,9 @@ } }, "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", "optional": true, "dependencies": { "balanced-match": "^1.0.0", @@ -1007,6 +1033,11 @@ "node": "*" } }, + "node_modules/buffer-equal-constant-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz", + "integrity": "sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==" + }, "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", @@ -1122,9 +1153,9 @@ } }, "node_modules/chromium-bidi": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-2.1.2.tgz", - "integrity": "sha512-vtRWBK2uImo5/W2oG6/cDkkHSm+2t6VHgnj+Rcwhb0pP74OoUb4GipyRX/T/y39gYQPhioP0DPShn+A7P6CHNw==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/chromium-bidi/-/chromium-bidi-5.1.0.tgz", + "integrity": "sha512-9MSRhWRVoRPDG0TgzkHrshFSJJNZzfY5UFqUMuksg7zL1yoZIZ3jLB0YAgHclbiAxPI86pBnwDX1tbzoiV8aFw==", "dependencies": { "mitt": "^3.0.1", "zod": "^3.24.1" @@ -1472,17 +1503,28 @@ } }, "node_modules/detect-libc": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.3.tgz", - "integrity": "sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", + "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", "engines": { "node": ">=8" } }, "node_modules/devtools-protocol": { - "version": "0.0.1413902", - "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1413902.tgz", - "integrity": "sha512-yRtvFD8Oyk7C9Os3GmnFZLu53yAfsnyw1s+mLmHHUK0GQEc9zthHWvS1r67Zqzm5t7v56PILHIVZ7kmFMaL2yQ==" + "version": "0.0.1464554", + "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.1464554.tgz", + "integrity": "sha512-CAoP3lYfwAGQTaAXYvA6JZR0fjGUb7qec1qf4mToyoH2TZgUFeIqYcjh6f9jNuhHfuZiEdH+PONHYrLhRQX6aw==" + }, + "node_modules/dotenv": { + "version": "17.2.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-17.2.0.tgz", + "integrity": "sha512-Q4sgBT60gzd0BB0lSyYD3xM4YxrXA9y4uBDof1JNYGzOXrQdQ6yX+7XIAqoFOGQFOTK1D3Hts5OllpxMDZFONQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } }, "node_modules/dunder-proto": { "version": "1.0.1", @@ -1511,6 +1553,14 @@ "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" }, + "node_modules/ecdsa-sig-formatter": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz", + "integrity": "sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==", + "dependencies": { + "safe-buffer": "^5.0.1" + } + }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -1551,9 +1601,9 @@ } }, "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", + "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", "dependencies": { "once": "^1.4.0" } @@ -1581,26 +1631,26 @@ } }, "node_modules/es-abstract": { - "version": "1.23.9", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.9.tgz", - "integrity": "sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==", + "version": "1.24.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.24.0.tgz", + "integrity": "sha512-WSzPgsdLtTcQwm4CROfS5ju2Wa1QQcVeT37jFjYzdFz1r9ahadC8B8/a4qxJxM+09F18iumCdRmlr96ZYkQvEg==", "dependencies": { "array-buffer-byte-length": "^1.0.2", "arraybuffer.prototype.slice": "^1.0.4", "available-typed-arrays": "^1.0.7", "call-bind": "^1.0.8", - "call-bound": "^1.0.3", + "call-bound": "^1.0.4", "data-view-buffer": "^1.0.2", "data-view-byte-length": "^1.0.2", "data-view-byte-offset": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", + "es-object-atoms": "^1.1.1", "es-set-tostringtag": "^2.1.0", "es-to-primitive": "^1.3.0", "function.prototype.name": "^1.1.8", - "get-intrinsic": "^1.2.7", - "get-proto": "^1.0.0", + "get-intrinsic": "^1.3.0", + "get-proto": "^1.0.1", "get-symbol-description": "^1.1.0", "globalthis": "^1.0.4", "gopd": "^1.2.0", @@ -1612,21 +1662,24 @@ "is-array-buffer": "^3.0.5", "is-callable": "^1.2.7", "is-data-view": "^1.0.2", + "is-negative-zero": "^2.0.3", "is-regex": "^1.2.1", + "is-set": "^2.0.3", "is-shared-array-buffer": "^1.0.4", "is-string": "^1.1.1", "is-typed-array": "^1.1.15", - "is-weakref": "^1.1.0", + "is-weakref": "^1.1.1", "math-intrinsics": "^1.1.0", - "object-inspect": "^1.13.3", + "object-inspect": "^1.13.4", "object-keys": "^1.1.1", "object.assign": "^4.1.7", "own-keys": "^1.0.1", - "regexp.prototype.flags": "^1.5.3", + "regexp.prototype.flags": "^1.5.4", "safe-array-concat": "^1.1.3", "safe-push-apply": "^1.0.0", "safe-regex-test": "^1.1.0", "set-proto": "^1.0.0", + "stop-iteration-iterator": "^1.1.0", "string.prototype.trim": "^1.2.10", "string.prototype.trimend": "^1.0.9", "string.prototype.trimstart": "^1.0.8", @@ -1635,7 +1688,7 @@ "typed-array-byte-offset": "^1.0.4", "typed-array-length": "^1.0.7", "unbox-primitive": "^1.1.0", - "which-typed-array": "^1.1.18" + "which-typed-array": "^1.1.19" }, "engines": { "node": ">= 0.4" @@ -1864,9 +1917,9 @@ } }, "node_modules/extract-zip/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dependencies": { "ms": "^2.1.3" }, @@ -1970,13 +2023,14 @@ } }, "node_modules/form-data": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.2.tgz", - "integrity": "sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.3.tgz", + "integrity": "sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.8", "es-set-tostringtag": "^2.1.0", + "hasown": "^2.0.2", "mime-types": "^2.1.12" }, "engines": { @@ -2134,9 +2188,9 @@ } }, "node_modules/get-stream/node_modules/pump": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", - "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", + "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -2159,9 +2213,9 @@ } }, "node_modules/get-uri": { - "version": "6.0.4", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.4.tgz", - "integrity": "sha512-E1b1lFFLvLgak2whF2xDBcOy6NLVGZBqqjJjsIhvopKfWWEi64pLVTWWehV8KlLerZkfNTA95sTe2OdJKm1OzQ==", + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.5.tgz", + "integrity": "sha512-b1O07XYq8eRuVzBNgJLstU6FYc1tS6wnMtF1I1D9lE8LxZSOGZ7LhxN54yPP6mGw5f2CkXY2BQUL9Fx41qvcIg==", "dependencies": { "basic-ftp": "^5.0.2", "data-uri-to-buffer": "^6.0.2", @@ -2172,9 +2226,9 @@ } }, "node_modules/get-uri/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dependencies": { "ms": "^2.1.3" }, @@ -2359,10 +2413,18 @@ "node": ">= 0.4" } }, + "node_modules/http_ece": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http_ece/-/http_ece-1.2.0.tgz", + "integrity": "sha512-JrF8SSLVmcvc5NducxgyOrKXe3EsyHMgBFgSaIUGmArKe+rwr0uphRkRXvwiom3I+fpIfoItveHrfudL8/rxuA==", + "engines": { + "node": ">=16" + } + }, "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", "optional": true }, "node_modules/http-errors": { @@ -2393,9 +2455,9 @@ } }, "node_modules/http-proxy-agent/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dependencies": { "ms": "^2.1.3" }, @@ -2439,9 +2501,9 @@ } }, "node_modules/https-proxy-agent/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dependencies": { "ms": "^2.1.3" }, @@ -2757,6 +2819,17 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-number-object": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.1.1.tgz", @@ -2976,6 +3049,25 @@ "verror": "1.10.0" } }, + "node_modules/jwa": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/jwa/-/jwa-2.0.1.tgz", + "integrity": "sha512-hRF04fqJIP8Abbkq5NKGN0Bbr3JxlQ+qhZufXVr0DvujKy93ZCbXZMHDL4EOtodSbCWxOqR8MS1tXA5hwqCXDg==", + "dependencies": { + "buffer-equal-constant-time": "^1.0.1", + "ecdsa-sig-formatter": "1.0.11", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/jws": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jws/-/jws-4.0.0.tgz", + "integrity": "sha512-KDncfTmOZoOMTFG4mBlG0qUIOlc03fmzH+ru6RgYVZhPkyiy/92Owlt/8UEN+a4TXR1FQetfIpJE8ApdvdVxTg==", + "dependencies": { + "jwa": "^2.0.0", + "safe-buffer": "^5.0.1" + } + }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", @@ -3034,9 +3126,9 @@ } }, "node_modules/make-fetch-happen/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "optional": true, "dependencies": { "ms": "^2.1.3" @@ -3182,6 +3274,11 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", @@ -3338,9 +3435,9 @@ } }, "node_modules/node-abi": { - "version": "3.74.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.74.0.tgz", - "integrity": "sha512-c5XK0MjkGBrQPGYG24GBADZud0NCbznxNx0ZkS+ebUTrmV1qTDxPxSL8zEAPURXSbLRWVexxmP4986BziahL5w==", + "version": "3.75.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.75.0.tgz", + "integrity": "sha512-OhYaY5sDsIka7H7AtijtI9jwGYLyl29eQn/W623DiN/MIv5sUqc4g7BIDThX+gb7di9f6xK02nkp8sdfFWZLTg==", "dependencies": { "semver": "^7.3.5" }, @@ -3564,9 +3661,9 @@ } }, "node_modules/pac-proxy-agent/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dependencies": { "ms": "^2.1.3" }, @@ -3710,9 +3807,9 @@ "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" }, "node_modules/prebuild-install/node_modules/pump": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", - "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", + "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -3732,9 +3829,9 @@ } }, "node_modules/prebuild-install/node_modules/tar-fs": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.2.tgz", - "integrity": "sha512-EsaAXwxmx8UB7FRKqeozqEPop69DXcmYwTQwXvyAPF352HJsPdkVhvTaDPYqfNgruveJIJy3TA2l+2zj8LJIJA==", + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.3.tgz", + "integrity": "sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==", "dependencies": { "chownr": "^1.1.1", "mkdirp-classic": "^0.5.2", @@ -3820,9 +3917,9 @@ } }, "node_modules/proxy-agent/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dependencies": { "ms": "^2.1.3" }, @@ -3874,16 +3971,16 @@ } }, "node_modules/puppeteer": { - "version": "24.4.0", - "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-24.4.0.tgz", - "integrity": "sha512-E4JhJzjS8AAI+6N/b+Utwarhz6zWl3+MR725fal+s3UlOlX2eWdsvYYU+Q5bXMjs9eZEGkNQroLkn7j11s2k1Q==", + "version": "24.12.1", + "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-24.12.1.tgz", + "integrity": "sha512-+vvwl+Xo4z5uXLLHG+XW8uXnUXQ62oY6KU6bEFZJvHWLutbmv5dw9A/jcMQ0fqpQdLydHmK0Uy7/9Ilj8ufwSQ==", "hasInstallScript": true, "dependencies": { - "@puppeteer/browsers": "2.8.0", - "chromium-bidi": "2.1.2", + "@puppeteer/browsers": "2.10.5", + "chromium-bidi": "5.1.0", "cosmiconfig": "^9.0.0", - "devtools-protocol": "0.0.1413902", - "puppeteer-core": "24.4.0", + "devtools-protocol": "0.0.1464554", + "puppeteer-core": "24.12.1", "typed-query-selector": "^2.12.0" }, "bin": { @@ -3894,25 +3991,25 @@ } }, "node_modules/puppeteer-core": { - "version": "24.4.0", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-24.4.0.tgz", - "integrity": "sha512-eFw66gCnWo0X8Hyf9KxxJtms7a61NJVMiSaWfItsFPzFBsjsWdmcNlBdsA1WVwln6neoHhsG+uTVesKmTREn/g==", + "version": "24.12.1", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-24.12.1.tgz", + "integrity": "sha512-8odp6d3ERKBa3BAVaYWXn95UxQv3sxvP1reD+xZamaX6ed8nCykhwlOiHSaHR9t/MtmIB+rJmNencI6Zy4Gxvg==", "dependencies": { - "@puppeteer/browsers": "2.8.0", - "chromium-bidi": "2.1.2", - "debug": "^4.4.0", - "devtools-protocol": "0.0.1413902", + "@puppeteer/browsers": "2.10.5", + "chromium-bidi": "5.1.0", + "debug": "^4.4.1", + "devtools-protocol": "0.0.1464554", "typed-query-selector": "^2.12.0", - "ws": "^8.18.1" + "ws": "^8.18.3" }, "engines": { "node": ">=18" } }, "node_modules/puppeteer-core/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dependencies": { "ms": "^2.1.3" }, @@ -4296,9 +4393,9 @@ "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" }, "node_modules/semver": { - "version": "7.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.1.tgz", - "integrity": "sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==", + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", "bin": { "semver": "bin/semver.js" }, @@ -4588,9 +4685,9 @@ } }, "node_modules/socks": { - "version": "2.8.4", - "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.4.tgz", - "integrity": "sha512-D3YaD0aRxR3mEcqnidIs7ReYJFVzWdd6fXJYUM8ixcQcJRGTka/b3saV0KflYhyVJXKhb947GndU35SxYNResQ==", + "version": "2.8.6", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.6.tgz", + "integrity": "sha512-pe4Y2yzru68lXCb38aAqRf5gvN8YdjP1lok5o0J7BOHljkyCGKVz7H3vpVIXKD27rj2giOJ7DwVyk/GWrPHDWA==", "dependencies": { "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" @@ -4614,9 +4711,9 @@ } }, "node_modules/socks-proxy-agent/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dependencies": { "ms": "^2.1.3" }, @@ -4728,10 +4825,22 @@ "node": ">=0.10.0" } }, + "node_modules/stop-iteration-iterator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/stop-iteration-iterator/-/stop-iteration-iterator-1.1.0.tgz", + "integrity": "sha512-eLoXW/DHyl62zxY4SCaIgnRhuMr6ri4juEYARS8E6sCEqzKpOiE521Ucofdx+KnDZl5xmvGYaaKCk5FEOxJCoQ==", + "dependencies": { + "es-errors": "^1.3.0", + "internal-slot": "^1.1.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/streamx": { - "version": "2.22.0", - "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.0.tgz", - "integrity": "sha512-sLh1evHOzBy/iWRiR6d1zRcLao4gGZr3C1kzNz4fopCOKJb6xD9ub8Mpi9Mr1R6id5o43S+d93fI48UC5uM9aw==", + "version": "2.22.1", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.22.1.tgz", + "integrity": "sha512-znKXEBxfatz2GBNK02kRnCXjV+AA4kjZIUxeWSr3UGirZMJfTE9uiwKHobnbgxWyL/JWro8tTq+vOqAK1/qbSA==", "dependencies": { "fast-fifo": "^1.3.2", "text-decoder": "^1.1.0" @@ -4855,9 +4964,9 @@ } }, "node_modules/tar-fs": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.0.8.tgz", - "integrity": "sha512-ZoROL70jptorGAlgAYiLoBLItEKw/fUxg9BSYK/dF/GAGYFJOJJJMvjPAKDJraCXFwadD456FCuvLWgfhMsPwg==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-3.1.0.tgz", + "integrity": "sha512-5Mty5y/sOF1YWj1J6GiBodjlDc05CUR8PKXrsnFAiSG0xA+GHeWLovaZPYUDXkH/1iKRf2+M5+OrRgzC7O9b7w==", "dependencies": { "pump": "^3.0.0", "tar-stream": "^3.1.5" @@ -4868,9 +4977,9 @@ } }, "node_modules/tar-fs/node_modules/pump": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.2.tgz", - "integrity": "sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==", + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", + "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" @@ -4903,20 +5012,20 @@ } }, "node_modules/tldts": { - "version": "6.1.85", - "resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.85.tgz", - "integrity": "sha512-gBdZ1RjCSevRPFix/hpaUWeak2/RNUZB4/8frF1r5uYMHjFptkiT0JXIebWvgI/0ZHXvxaUDDJshiA0j6GdL3w==", + "version": "6.1.86", + "resolved": "https://registry.npmjs.org/tldts/-/tldts-6.1.86.tgz", + "integrity": "sha512-WMi/OQ2axVTf/ykqCQgXiIct+mSQDFdH2fkwhPwgEwvJ1kSzZRiinb0zF2Xb8u4+OqPChmyI6MEu4EezNJz+FQ==", "dependencies": { - "tldts-core": "^6.1.85" + "tldts-core": "^6.1.86" }, "bin": { "tldts": "bin/cli.js" } }, "node_modules/tldts-core": { - "version": "6.1.85", - "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.85.tgz", - "integrity": "sha512-DTjUVvxckL1fIoPSb3KE7ISNtkWSawZdpfxGxwiIrZoO6EbHVDXXUIlIuWympPaeS+BLGyggozX/HTMsRAdsoA==" + "version": "6.1.86", + "resolved": "https://registry.npmjs.org/tldts-core/-/tldts-core-6.1.86.tgz", + "integrity": "sha512-Je6p7pkk+KMzMv2XXKmAE3McmolOQFdxkKw0R8EYNr7sELW46JqnNeTX8ybPiQgvg1ymCoF8LXs5fzFaZvJPTA==" }, "node_modules/toidentifier": { "version": "1.0.1", @@ -5063,9 +5172,9 @@ } }, "node_modules/undici-types": { - "version": "6.20.0", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz", - "integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==", + "version": "7.8.0", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-7.8.0.tgz", + "integrity": "sha512-9UJ2xGDvQ43tYyVMpuHlsgApydB8ZKfVYTsLDhXkFL/6gfkp+U8xTGdh8pMJv1SpZna0zxG1DwsKZsreLbXBxw==", "optional": true }, "node_modules/unique-filename": { @@ -5167,6 +5276,24 @@ "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "integrity": "sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==" }, + "node_modules/web-push": { + "version": "3.6.7", + "resolved": "https://registry.npmjs.org/web-push/-/web-push-3.6.7.tgz", + "integrity": "sha512-OpiIUe8cuGjrj3mMBFWY+e4MMIkW3SVT+7vEIjvD9kejGUypv8GPDf84JdPWskK8zMRIJ6xYGm+Kxr8YkPyA0A==", + "dependencies": { + "asn1.js": "^5.3.0", + "http_ece": "1.2.0", + "https-proxy-agent": "^7.0.0", + "jws": "^4.0.0", + "minimist": "^1.2.5" + }, + "bin": { + "web-push": "src/cli.js" + }, + "engines": { + "node": ">= 16" + } + }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", @@ -5299,9 +5426,9 @@ "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" }, "node_modules/ws": { - "version": "8.18.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.1.tgz", - "integrity": "sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==", + "version": "8.18.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz", + "integrity": "sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==", "engines": { "node": ">=10.0.0" }, @@ -5366,9 +5493,9 @@ } }, "node_modules/zod": { - "version": "3.24.2", - "resolved": "https://registry.npmjs.org/zod/-/zod-3.24.2.tgz", - "integrity": "sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==", + "version": "3.25.76", + "resolved": "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz", + "integrity": "sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==", "funding": { "url": "https://github.com/sponsors/colinhacks" } diff --git a/api/package.json b/api/package.json index 339bb45..2f72f8a 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "API Sheep Service", - "version": "1.0.0", + "version": "1.0.1", "main": "app.js", "scripts": { "start": "node app.js" @@ -10,10 +10,12 @@ "description": "", "dependencies": { "cors": "^2.8.5", + "dotenv": "^17.2.0", "express": "^4.21.0", "node-telegram-bot-api": "^0.66.0", - "sqlite3": "^5.1.7", "puppeteer": "^24.4.0", - "sharp": "^0.33.5" + "sharp": "^0.33.5", + "sqlite3": "^5.1.7", + "web-push": "^3.6.7" } } diff --git a/api/routes/buildings.routes.js b/api/routes/buildings.routes.js new file mode 100644 index 0000000..f9a78b0 --- /dev/null +++ b/api/routes/buildings.routes.js @@ -0,0 +1,13 @@ +const express = require('express'); +const router = express.Router({ mergeParams: true }); +const BuildingsController = require('../controllers/buildings.controller'); +const authenticate = require("../middleware/auth"); + +router + .route('/:id') + .get(authenticate, BuildingsController.getList) + .post(authenticate, BuildingsController.createBuildings) + .put(authenticate, BuildingsController.updateBuildings) + .delete(authenticate, BuildingsController.deleteBuildings); + +module.exports = router; \ No newline at end of file diff --git a/api/routes/houses.routes.js b/api/routes/houses.routes.js index 25cd1b0..e555b18 100644 --- a/api/routes/houses.routes.js +++ b/api/routes/houses.routes.js @@ -3,6 +3,10 @@ const router = express.Router(); const HousesController = require('../controllers/houses.controller'); const authenticate = require("../middleware/auth"); +router + .route('/list/entrances') + .get(authenticate, HousesController.getListEntrance) + router .route('/list') .get(authenticate, HousesController.getList) diff --git a/api/routes/index.js b/api/routes/index.js index 911a62a..d0f14c8 100644 --- a/api/routes/index.js +++ b/api/routes/index.js @@ -6,11 +6,14 @@ const sheepsRoutes = require('./sheeps.routes'); const constructorRoutes = require('./constructor.routes'); const housesRoutes = require('./houses.routes'); const homesteadsRoutes = require('./homesteads.routes'); +const buildingsRoutes = require('./buildings.routes'); const entrancesRoutes = require('./entrances.routes'); const apartmentsRoutes = require('./apartments.routes'); const historyEntranceRoutes = require('./history.entrance.routes'); const historyHomesteadRoutes = require('./history.homestead.routes'); -const rotationRoutes = require('./rotation.routes'); +const standRoutes = require('./stand.routes'); +const pushRoutes = require('./push.routes'); + const generatorCardsRoutes = require('./generator.cards.routes'); router.use('/auth', authRoutes); @@ -18,12 +21,13 @@ router.use('/sheeps?', sheepsRoutes); router.use('/constructor', constructorRoutes); router.use('/houses?', housesRoutes); router.use('/homesteads?', homesteadsRoutes); +router.use('/buildings?', buildingsRoutes); router.use('/house/:house_id/entrances', entrancesRoutes); router.use('/apartments?/:entrance_id', apartmentsRoutes); router.use('/history/entrance/:entrance_id', historyEntranceRoutes); router.use('/history/homestead/:homestead_id', historyHomesteadRoutes); - -router.use('/rotation', rotationRoutes); +router.use('/stand', standRoutes); +router.use('/push', pushRoutes); router.use('/generator/cards', generatorCardsRoutes); diff --git a/api/routes/push.routes.js b/api/routes/push.routes.js new file mode 100644 index 0000000..a6d1819 --- /dev/null +++ b/api/routes/push.routes.js @@ -0,0 +1,18 @@ +const express = require('express'); +const router = express.Router(); +const PushController = require('../controllers/push.controller'); +const authenticate = require("../middleware/auth"); + +router + .route('/key') + .get(authenticate, PushController.getKey); + +router + .route('/subscribe') + .post(authenticate, PushController.createSubscribe); + +router + .route('/unsubscribe') + .delete(authenticate, PushController.deleteSubscribe); + +module.exports = router; \ No newline at end of file diff --git a/api/routes/rotation.routes.js b/api/routes/rotation.routes.js deleted file mode 100644 index 759cc05..0000000 --- a/api/routes/rotation.routes.js +++ /dev/null @@ -1,10 +0,0 @@ -const express = require('express'); -const router = express.Router(); -const RotationController = require('../controllers/rotation.controller'); -const authenticate = require("../middleware/auth"); - -router - .route('/') - .get(authenticate, RotationController.editTables); - -module.exports = router; \ No newline at end of file diff --git a/api/routes/stand.routes.js b/api/routes/stand.routes.js new file mode 100644 index 0000000..e5d6c1f --- /dev/null +++ b/api/routes/stand.routes.js @@ -0,0 +1,29 @@ +const express = require('express'); +const router = express.Router(); +const StandController = require('../controllers/stand.controller'); +const authenticate = require("../middleware/auth"); + +router + .route('/list') + .get(authenticate, StandController.getList) + .post(authenticate, StandController.createStand); + +router + .route('/:stand_id') + .get(authenticate, StandController.getStand) + .put(authenticate, StandController.updateStand) + .delete(authenticate, StandController.deleteStand); + +router + .route('/schedule/list') + .get(authenticate, StandController.getScheduleList) + +router + .route('/schedule/:stand_id') + .post(authenticate, StandController.createSchedule) + +router + .route('/schedule/history/:stand_schedule_id') + .post(authenticate, StandController.getScheduleHistory) + +module.exports = router; \ No newline at end of file diff --git a/api/services/auth.service.js b/api/services/auth.service.js index 46fc660..a1c94d0 100644 --- a/api/services/auth.service.js +++ b/api/services/auth.service.js @@ -1,34 +1,27 @@ const db = require("../config/db"); class AuthService { - findUserByID(id, sheepRole) { + findUserByID(id, mode) { return new Promise((res, rej) => { let sql = ` - SELECT - sheeps.*, - groups.group_number AS group_id, - administrators.id AS administrators_id, - administrators.uuid AS administrators_uuid, - moderators.id AS moderators_id, - moderators.uuid AS moderators_uuid, - moderators.can_add_sheeps, - moderators.can_add_territory, - moderators.can_manager_territory, - moderators.can_add_stand, - moderators.can_manager_stand, - moderators.can_add_schedule - FROM - sheeps - LEFT JOIN - groups ON groups.group_number = sheeps.group_id - LEFT JOIN - administrators ON administrators.sheep_id = sheeps.id - LEFT JOIN - moderators ON moderators.sheep_id = sheeps.id - WHERE - sheeps.id = ? - LIMIT 1; - ` + SELECT + sheeps.*, + possibilities.can_add_sheeps AS can_add_sheeps, + possibilities.can_view_sheeps AS can_view_sheeps, + possibilities.can_add_territory AS can_add_territory, + possibilities.can_view_territory AS can_view_territory, + possibilities.can_manager_territory AS can_manager_territory, + possibilities.can_add_stand AS can_add_stand, + possibilities.can_view_stand AS can_view_stand, + possibilities.can_manager_stand AS can_manager_stand, + possibilities.can_add_schedule AS can_add_schedule, + possibilities.can_view_schedule AS can_view_schedule + FROM + sheeps + LEFT JOIN + possibilities ON possibilities.sheep_id = sheeps.id + WHERE + sheeps.id = ?`; db.get(sql, [id], (err, sheep) => { if (err) { console.error(err.message); @@ -38,40 +31,36 @@ class AuthService { return res(false); } else { let data = { - "id": Number(sheep.id), - "group_id": Number(sheep.group_id), - "name": sheep.name, - "icon": sheep.icon, - "uuid": sheep.uuid, - "appointment": sheep.appointment, - "can_view_stand": sheep.can_view_stand == 0 ? false : true, - "can_view_schedule": sheep.can_view_schedule == 0 ? false : true, - "can_view_territory": sheep.can_view_territory == 0 ? false : true, - "administrator": { - "id": sheep.administrators_id ? sheep.administrators_id : false, - "uuid": null - }, - "moderator": { - "id": sheep.moderators_id ? sheep.moderators_id : false, - "uuid": null, - "can_add_sheeps": sheep.can_add_sheeps == 1 ? true : false, - "can_add_territory": sheep.can_add_territory == 1 ? true : false, - "can_manager_territory": sheep.can_manager_territory == 1 ? true : false, - "can_add_stand": sheep.can_add_stand == 1 ? true : false, - "can_manager_stand": sheep.can_manager_stand == 1 ? true : false, - "can_add_schedule": sheep.can_add_schedule == 1 ? true : false + id: sheep.id, + group_id: sheep.group_id, + name: sheep.name, + icon: sheep.icon, + uuid: sheep.uuid, + uuid_manager: mode && mode == 2 ? sheep.uuid_manager : null, + appointment: sheep.appointment, + mode: mode ? Number(sheep.mode) : 0, + sheepRole: sheep.mode_title, + possibilities: { + can_add_sheeps: false, + can_view_sheeps: false, + can_add_territory: false, + can_manager_territory: false, + can_add_stand: false, + can_manager_stand: false, + can_add_schedule: false, + can_view_schedule: sheep.can_view_schedule == 1 ? true : false, + can_view_stand: sheep.can_view_stand == 1 ? true : false, + can_view_territory: sheep.can_view_territory == 1 ? true : false } } - - if (sheepRole == "administrator") { - if (sheep.administrators_id) { - data.administrator.uuid = sheep.administrators_uuid; - } - } - if (sheepRole == "moderator") { - if (sheep.moderators_id) { - data.moderator.uuid = sheep.moderators_uuid; - } + if (mode && (mode == 1 || mode == 2)) { + data.possibilities.can_add_sheeps = sheep.can_add_sheeps == 1 ? true : false; + data.possibilities.can_view_sheeps = sheep.can_view_sheeps == 1 ? true : false; + data.possibilities.can_add_territory = sheep.can_add_territory == 1 ? true : false; + data.possibilities.can_manager_territory = sheep.can_manager_territory == 1 ? true : false; + data.possibilities.can_add_stand = sheep.can_add_stand == 1 ? true : false; + data.possibilities.can_manager_stand = sheep.can_manager_stand == 1 ? true : false; + data.possibilities.can_add_schedule = sheep.can_add_schedule == 1 ? true : false; } return res(data); diff --git a/api/services/buildings.service.js b/api/services/buildings.service.js new file mode 100644 index 0000000..b066cab --- /dev/null +++ b/api/services/buildings.service.js @@ -0,0 +1,102 @@ +const db = require("../config/db"); + + +class BuildingsService { + getList(homestead_id) { + return new Promise((res, rej) => { + let sql = ` + SELECT + * + FROM + buildings + WHERE + homestead_id = '${homestead_id}' + ORDER BY + id + `; + + db.all(sql, (err, rows) => { + if (err) { + console.error(err.message); + return res(false); + } else { + let data = rows.map((row) => { + return { + "id": Number(row.id), + "homestead_id": Number(row.homestead_id), + "sheep_id": Number(row.sheep_id), + "geo": JSON.parse(row.geo), + "title": row.title, + "status": Number(row.status), + "description": row.description, + "updated_at": Number(row.updated_at) + } + }) + + return res(data); + } + }); + }); + } + + createBuildings(homestead_id, data) { + return new Promise((res, rej) => { + let sql = 'INSERT INTO buildings(homestead_id, title, geo) VALUES (?, ?, ?)'; + + db.run(sql, [ + homestead_id, + data.title, + JSON.stringify(data.geo) + ], function(err) { + if (err) { + console.error(err.message); + return res(false); + } else if (this.changes === 0) { + return res(false); + } else { + res({ "status": "ok", "id": this.lastID }); + } + }); + }); + } + + updateBuildings(data) { + return new Promise((res, rej) => { + let sql = 'UPDATE buildings SET title = ?, status = ?, description = ?, updated_at = ?, geo = ? WHERE id = ?'; + db.run(sql, [ + data.title, + data.status, + data.description, + Math.floor(new Date(Date.now()).getTime()), + JSON.stringify(data.geo), + data.id + ], function(err) { + if (err) { + console.error(err.message); + return res(false); + } else if (this.changes === 0) { + return res(false); + } else { + res({ "status": "ok" }); + } + }); + }); + } + + deleteBuildings(building_id) { + return new Promise((res, rej) => { + db.run('DELETE FROM buildings WHERE id = ?', [building_id], function(err) { + if (err) { + console.error(err.message); + return res(false); + } else if (this.changes === 0) { + return res(false); + } else { + res({ "status": "ok"}); + } + }); + }); + } +} + +module.exports = new BuildingsService(); \ No newline at end of file diff --git a/api/services/constructor.service.js b/api/services/constructor.service.js index 70027c5..b488112 100644 --- a/api/services/constructor.service.js +++ b/api/services/constructor.service.js @@ -101,17 +101,114 @@ class ConstructorService { // }); // }); // } + + // createPack(data) { + // return new Promise((res, rej) => { + + // if (data.type == "house") { + // const sql = ` + // INSERT INTO house ( + // title, number, points, points_number, geo, osm_id, settlement, created_at + // ) VALUES (?, ?, ?, ?, ?, ?, ?, ?)`; + + // db.run(sql, [ + // data.title, + // data.number, + // JSON.stringify(data.points), + // JSON.stringify(data.points_number), + // JSON.stringify(data.geo), + // JSON.stringify(data.osm_id), + // data.settlement, + // Math.floor(Date.now()) + // ], function (err) { + // if (err) { + // console.error(err.message); + // return res(false); + // } + // if (this.changes === 0) { + // return res(false); + // } + + // const houseId = this.lastID; + + // saveCards({ center: data.geo, wayId: data.osm_id, zoom: data.zoom ?? 18, type: "house", number: houseId, address: `${data.title} ${data.number}` }); + + + // const entranceStmt = db.prepare(` + // INSERT INTO entrance ( + // house_id, entrance_number, title, points, points_number, created_at + // ) VALUES (?, ?, ?, ?, ?, ?)`); + + // const apartmentStmt = db.prepare(` + // INSERT INTO apartments ( + // entrance_id, apartment_number, title, floors_number + // ) VALUES (?, ?, ?, ?)`); + + // const entranceIdMap = {}; // Для сопоставления editor_id → entrance_id + + // let pendingEntrances = data.entrance.length; + + // data.entrance.forEach((e) => { + // entranceStmt.run( + // houseId, + // Number(e.entrance_number), + // e.title, + // JSON.stringify(e.points), + // JSON.stringify(e.points_number), + // Math.floor(Date.now()), + // function (err) { + // if (err) { + // console.error(err.message); + // return; + // } + // const entranceId = this.lastID; + // entranceIdMap[e.editor_id] = entranceId; + + // if (--pendingEntrances === 0) { + // insertApartments(); + // } + // } + // ); + // }); + + // function insertApartments() { + // for (const [editor_id, apartments] of Object.entries(data.apartments)) { + // const entranceId = entranceIdMap[editor_id]; + // if (!entranceId) continue; + + // apartments.forEach(apartment => { + // apartmentStmt.run( + // entranceId, + // Number(apartment.apartment_number), + // apartment.title, + // apartment.floors_number + // ); + // }); + // } + + // entranceStmt.finalize(); + // apartmentStmt.finalize(); + // res({ "status": "ok", "id": houseId }); + // } + // }); + // } else if (data.type == "homestead") { + // return res(false); + // } else { + // return res(false); + // } + // }); + // } + createPack(data) { return new Promise((res, rej) => { - if (data.type == "house") { + if (data.type === "house") { const sql = ` INSERT INTO house ( - group_id, title, number, points, points_number, geo, osm_id, settlement, created_at - ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)`; + title, number, points, points_number, geo, osm_id, settlement, created_at + ) VALUES (?, ?, ?, ?, ?, ?, ?, ?)`; db.run(sql, [ - Number(data.group_id), data.title, data.number, JSON.stringify(data.points), @@ -131,103 +228,132 @@ class ConstructorService { const houseId = this.lastID; - saveCards({ center: data.geo, wayId: data.osm_id, zoom: data.zoom ?? 18, type: "house", number: houseId, address: `${data.title} ${data.number}` }); - + // saveCards({ center: data.geo, wayId: data.osm_id, zoom: data.zoom ?? 18, type: "house", number: houseId, address: `${data.title} ${data.number}` }); const entranceStmt = db.prepare(` INSERT INTO entrance ( - house_id, entrance_number, title, points, points_number, created_at - ) VALUES (?, ?, ?, ?, ?, ?)`); + house_id, entrance_number, title, created_at + ) VALUES (?, ?, ?, ?)`); const apartmentStmt = db.prepare(` INSERT INTO apartments ( entrance_id, apartment_number, title, floors_number ) VALUES (?, ?, ?, ?)`); - const entranceIdMap = {}; // Для сопоставления editor_id → entrance_id + let pendingEntrances = data.entrances.length; + const entranceIdMap = {}; - let pendingEntrances = data.entrance.length; + if (pendingEntrances === 0) return finalize(); - data.entrance.forEach((e) => { + // Вставляем подъезды + data.entrances.forEach(entrance => { entranceStmt.run( houseId, - Number(e.entrance_number), - e.title, - JSON.stringify(e.points), - JSON.stringify(e.points_number), + Number(entrance.entrance_number), + entrance.title, Math.floor(Date.now()), function (err) { if (err) { console.error(err.message); + return res(false); + } + + const entranceID = this.lastID; + entranceIdMap[entrance.entrance_number] = entranceID; + + // Вставляем квартиры данного подъезда + let pendingApartments = entrance.apartments.length; + if (pendingApartments === 0) { + if (--pendingEntrances === 0) finalize(); return; } - const entranceId = this.lastID; - entranceIdMap[e.editor_id] = entranceId; - if (--pendingEntrances === 0) { - insertApartments(); - } + entrance.apartments.forEach(apartment => { + apartmentStmt.run( + entranceID, + Number(apartment.apartment_number), + apartment.title, + Number(apartment.floors_number), + function (err) { + if (err) console.error(err.message); + + if (--pendingApartments === 0) { + if (--pendingEntrances === 0) finalize(); + } + } + ); + }); } ); }); - function insertApartments() { - for (const [editor_id, apartments] of Object.entries(data.apartments)) { - const entranceId = entranceIdMap[editor_id]; - if (!entranceId) continue; - - apartments.forEach(apartment => { - apartmentStmt.run( - entranceId, - Number(apartment.apartment_number), - apartment.title, - apartment.floors_number - ); - }); - } - + function finalize() { entranceStmt.finalize(); apartmentStmt.finalize(); - res({ "status": "ok", "id": houseId }); + res({ status: "ok", id: houseId }); } }); - } else if (data.type == "homestead") { - let sql = ` - INSERT INTO - homestead( - group_id, - title, - number, - points, - point_icons, - geo, - osm_id, - settlement, - created_at - ) - VALUES - (?, ?, ?, ?, ?, ?, ?, ?, ?) - `; + + } else if (data.type === "homestead") { + const sql = ` + INSERT INTO homestead ( + title, number, zoom, points, geo, osm_id, settlement, created_at + ) VALUES (?, ?, ?, ?, ?, ?, ?, ?) + `; db.run(sql, [ - Number(data.group_id), data.title, data.number, + Number(data.zoom), JSON.stringify(data.points), - JSON.stringify(data.point_icons), JSON.stringify(data.geo), JSON.stringify(data.osm_id), data.settlement, - Math.floor(new Date(Date.now()).getTime()) + Math.floor(Date.now()) ], function (err) { if (err) { console.error(err.message); return res(false); - } else if (this.changes === 0) { + } + if (this.changes === 0) { return res(false); - } else { - saveCards({ center: data.geo, wayId: data.osm_id, zoom: data.zoom ?? 17, type: "homestead", number: this.lastID, address: `${data.title} ${data.number}` }) - res({ "status": "ok", "id": this.lastID }); + } + + const homesteadId = this.lastID; + + // saveCards({ center: data.geo, wayId: data.osm_id, zoom: data.zoom ?? 17, type: "homestead", number: homesteadId, address: `${data.title} ${data.number}` }); + + const buildingStmt = db.prepare(` + INSERT INTO buildings ( + homestead_id, title, geo + ) VALUES (?, ?, ?) + `); + + let pendingBuildings = data.buildings.length; + + if (pendingBuildings === 0) return finalize(); + + + + data.buildings.forEach(building => { + buildingStmt.run( + homesteadId, + building.title, + JSON.stringify(building.geo), + function (err) { + if (err) { + console.error(err.message); + return res(false); + } + + if (--pendingBuildings === 0) finalize(); + } + ); + }); + + function finalize() { + buildingStmt.finalize(); + res({ status: "ok", id: homesteadId }); } }); } else { diff --git a/api/services/entrances.service.js b/api/services/entrances.service.js index 1f34e98..7c7628b 100644 --- a/api/services/entrances.service.js +++ b/api/services/entrances.service.js @@ -30,10 +30,6 @@ class EntrancesService { "house_id": Number(row.house_id), "entrance_number": Number(row.entrance_number), "title": row.title, - "points": JSON.parse(row.points), - "points_number": JSON.parse(row.points_number), - "floors_quantity": row.floors_quantity, - "apartments_quantity": row.apartments_quantity, "description": row.description, "created_at": Number(row.created_at), "updated_at": Number(row.updated_at), @@ -65,29 +61,19 @@ class EntrancesService { house_id, entrance_number, title, - points, - points_number, - floors_quantity, - apartments_quantity, description, - created_at, - updated_at + created_at ) VALUES - (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) + (?, ?, ?, ?, ?) `; db.run(sql, [ house_id, Number(data.entrance_number), data.title, - JSON.stringify(data.points), - JSON.stringify(data.points_number), - data.floors_quantity, - data.apartments_quantity, data.description, - Math.floor(new Date(Date.now()).getTime()), - Math.floor(new Date(Date.now()).getTime()), + Math.floor(new Date(Date.now()).getTime()) ], function(err) { if (err) { console.error(err.message); @@ -108,10 +94,6 @@ class EntrancesService { entrance SET title = ?, - points = ?, - points_number = ?, - floors_quantity = ?, - apartments_quantity = ?, description = ?, updated_at = ? WHERE diff --git a/api/services/history.entrance.service.js b/api/services/history.entrance.service.js index d1baef5..9b99af7 100644 --- a/api/services/history.entrance.service.js +++ b/api/services/history.entrance.service.js @@ -28,10 +28,10 @@ class HistoryEntranceService { "sheep_id": Number(row.sheep_id), "working": Number(row.working) == 0 ? false : true, "date": { - "start": Number(row.date_start), - "end": row.date_end ? Number(row.date_end) : null + "start": Number(row.date_start), + "end": row.date_end ? Number(row.date_end) : null } - } + } }) return res(data); @@ -43,7 +43,7 @@ class HistoryEntranceService { createHistoryEntrance(entrance_id, data) { return new Promise((res, rej) => { let sql = 'INSERT INTO entrance_history(entrance_id, name, date_start, group_id, sheep_id, working) VALUES (?, ?, ?, ?, ?, ?)'; - + db.run(sql, [ entrance_id, data.name, @@ -51,7 +51,7 @@ class HistoryEntranceService { Number(data.group_id), Number(data.sheep_id), 1 - ], function(err) { + ], function (err) { if (err) { console.error(err.message); return res(false); @@ -64,31 +64,126 @@ class HistoryEntranceService { }); } - updateHistoryEntrance(entrance_id) { + updateHistoryEntrance(entrance_history_id) { return new Promise((res, rej) => { - console.log(Number(entrance_id)); - - let sql = 'UPDATE entrance_history SET date_end = ?, working = ? WHERE id = ?'; - db.run(sql, [ - Math.floor(new Date(Date.now()).getTime()), - 0, - Number(entrance_id) - ], function(err) { - if (err) { - console.error(err.message); - return res(false); - } else if (this.changes === 0) { - return res(false); - } else { - res({ "update": "ok", "id": entrance_id }); + const endTime = Date.now(); // 🕒 Час завершення + const entranceHistoryId = Number(entrance_history_id); + + // 🔧 Оновлюємо запис в entrance_history + db.run( + `UPDATE entrance_history SET date_end = ?, working = 0 WHERE id = ?`, + [endTime, entranceHistoryId], + function (err) { + if (err || this.changes === 0) { + console.error("❌ Помилка оновлення entrance_history:", err?.message); + return res(false); + } + + // 🏢 Отримуємо entrance_id + db.get( + `SELECT entrance_id FROM entrance_history WHERE id = ?`, + [entranceHistoryId], + (err, entrance) => { + if (err || !entrance) { + console.error("❌ Помилка отримання під’їзду:", err?.message); + return res(false); + } + + // 🧱 Отримуємо квартири + db.all( + `SELECT * FROM apartments WHERE entrance_id = ? ORDER BY id`, + [entrance.entrance_id], + (err, apartments) => { + if (err) { + console.error("❌ Помилка отримання квартир:", err.message); + return res(false); + } + + if (!apartments.length) { + return res({ update: "ok", id: entranceHistoryId, inserted: 0 }); + } + + const toUpdate = apartments.filter(a => ![2, 6, 0, null].includes(a.status)); + + // 📝 Готуємо вставку в історію + const stmtInsert = db.prepare(` + INSERT INTO apartments_history + (sheep_id, apartments_id, status, description, created_at) + VALUES (?, ?, ?, ?, ?) + `); + + const stmtUpdate = db.prepare(` + UPDATE apartments + SET status = NULL, description = NULL, sheep_id = NULL, updated_at = ? + WHERE id = ? + `); + + let completed = 0; + let inserted = 0; + + if (!toUpdate.length) { + stmtInsert.finalize(); + stmtUpdate.finalize(); + return res({ update: "ok", id: entranceHistoryId, inserted: 0 }); + } + + for (const apt of toUpdate) { + // 🔄 Оновлюємо квартиру + stmtUpdate.run([endTime, apt.id]); + + // 🪵 Вставляємо в історію + stmtInsert.run( + [apt.sheep_id, apt.id, apt.status, apt.description, endTime], + (err) => { + if (!err) inserted++; + completed++; + if (completed === toUpdate.length) { + stmtInsert.finalize(); + stmtUpdate.finalize(); + return res({ + update: "ok", + id: entranceHistoryId, + inserted, + }); + } + } + ); + } + } + ); + } + ); } - }); + ); }); + + + + + // return new Promise((res, rej) => { + // console.log(Number(entrance_id)); + + // let sql = 'UPDATE entrance_history SET date_end = ?, working = ? WHERE id = ?'; + // db.run(sql, [ + // Math.floor(new Date(Date.now()).getTime()), + // 0, + // Number(entrance_id) + // ], function(err) { + // if (err) { + // console.error(err.message); + // return res(false); + // } else if (this.changes === 0) { + // return res(false); + // } else { + // res({ "update": "ok", "id": entrance_id }); + // } + // }); + // }); } deleteHistoryEntrance(entrance_id) { return new Promise((res, rej) => { - db.run('DELETE FROM entrance_history WHERE id = ?', [Number(entrance_id)], function(err) { + db.run('DELETE FROM entrance_history WHERE id = ?', [Number(entrance_id)], function (err) { if (err) { console.error(err.message); return res(false); diff --git a/api/services/homesteads.service.js b/api/services/homesteads.service.js index 9a1ca2d..beb0371 100644 --- a/api/services/homesteads.service.js +++ b/api/services/homesteads.service.js @@ -30,11 +30,19 @@ class HomesteadsService { (SELECT homestead_history.date_end FROM homestead_history WHERE homestead_history.homestead_id = homestead.id ORDER BY homestead_history.date_start DESC LIMIT 1) AS homestead_history_date_end FROM homestead - WHERE - group_id == '${group}' + JOIN + homestead_history + ON + homestead.id = homestead_history.homestead_id + AND + homestead_history.working = 1 + AND + homestead_history.name = 'Групова' + AND + homestead_history.group_id == '${group}' `; } - + if (sheepName) { sql = ` SELECT @@ -52,12 +60,10 @@ class HomesteadsService { homestead_history ON homestead.id = homestead_history.homestead_id - WHERE - homestead.group_id = '${group}' AND homestead_history.working = 1 AND - homestead_history.name IN ('Групова', '${sheepName}'); + homestead_history.name = '${sheepName}'; `; } @@ -69,12 +75,11 @@ class HomesteadsService { let data = rows.map((row) => { return { "id": Number(row.id), - "group_id": Number(row.group_id), "title": row.title, "number": row.number, "points": JSON.parse(row.points), - "point_icons": JSON.parse(row.point_icons), "geo": JSON.parse(row.geo), + "zoom": Number(row.zoom), "osm_id": JSON.parse(row.osm_id), "settlement": row.settlement, "description": row.description, @@ -127,12 +132,11 @@ class HomesteadsService { } else { let data = { "id": Number(row.id), - "group_id": Number(row.group_id), "title": row.title, "number": row.number, "points": JSON.parse(row.points), - "point_icons": JSON.parse(row.point_icons), "geo": JSON.parse(row.geo), + "zoom": Number(row.zoom), "osm_id": JSON.parse(row.osm_id), "settlement": row.settlement, "description": row.description, @@ -160,27 +164,25 @@ class HomesteadsService { let sql = ` INSERT INTO homestead( - group_id, title, number, points, - point_icons, geo, + zoom, osm_id, settlement, created_at ) VALUES - (?, ?, ?, ?, ?, ?, ?, ?, ?) + (?, ?, ?, ?, ?, ?, ?, ?) `; db.run(sql, [ - Number(data.group_id), data.title, data.number, JSON.stringify(data.points), - JSON.stringify(data.point_icons), JSON.stringify(data.geo), + Number(data.zoom), JSON.stringify(data.osm_id), data.settlement, Math.floor(new Date(Date.now()).getTime()) @@ -203,12 +205,11 @@ class HomesteadsService { UPDATE homestead SET - group_id = ?, title = ?, number = ?, points = ?, - point_icons = ?, geo = ?, + zoom = ?, osm_id = ?, settlement = ?, description = ?, @@ -217,12 +218,11 @@ class HomesteadsService { id = ? `; db.run(sql, [ - Number(data.group_id), data.title, data.number, JSON.stringify(data.points), - JSON.stringify(data.point_icons), JSON.stringify(data.geo), + Number(data.zoom), JSON.stringify(data.osm_id), data.settlement, data.description, diff --git a/api/services/houses.service.js b/api/services/houses.service.js index 13e6006..535dfda 100644 --- a/api/services/houses.service.js +++ b/api/services/houses.service.js @@ -1,6 +1,68 @@ const db = require("../config/db"); class HousesService { + getListEntrance() { + return new Promise((res, rej) => { + let sql = ` + SELECT + entrance.*, + COALESCE((SELECT entrance_history.working FROM entrance_history WHERE entrance_history.entrance_id = entrance.id ORDER BY entrance_history.date_start DESC LIMIT 1), 0) AS working, + (SELECT entrance_history.name FROM entrance_history WHERE entrance_history.entrance_id = entrance.id ORDER BY entrance_history.date_start DESC LIMIT 1) AS entrance_history_name, + (SELECT entrance_history.group_id FROM entrance_history WHERE entrance_history.entrance_id = entrance.id ORDER BY entrance_history.date_start DESC LIMIT 1) AS entrance_history_group_id, + (SELECT entrance_history.sheep_id FROM entrance_history WHERE entrance_history.entrance_id = entrance.id ORDER BY entrance_history.date_start DESC LIMIT 1) AS entrance_history_sheep_id, + (SELECT entrance_history.id FROM entrance_history WHERE entrance_history.entrance_id = entrance.id ORDER BY entrance_history.date_start DESC LIMIT 1) AS entrance_history_id, + (SELECT entrance_history.date_start FROM entrance_history WHERE entrance_history.entrance_id = entrance.id ORDER BY entrance_history.date_start DESC LIMIT 1) AS entrance_history_date_start, + (SELECT entrance_history.date_end FROM entrance_history WHERE entrance_history.entrance_id = entrance.id ORDER BY entrance_history.date_start DESC LIMIT 1) AS entrance_history_date_end, + (SELECT house.settlement FROM house WHERE house.id = entrance.house_id) AS house_settlement, + (SELECT house.title FROM house WHERE house.id = entrance.house_id) AS house_title, + (SELECT house.number FROM house WHERE house.id = entrance.house_id) AS house_number + FROM + entrance + `; + + db.all(sql, (err, rows) => { + if (err) { + console.error(err.message); + return res(false); + } else { + let data = rows.map((row) => { + return { + "id": Number(row.id), + "house": { + "id": Number(row.house_id), + "title": row.house_title, + "number": row.house_number, + "settlement": row.house_settlement + }, + "entrance_number": Number(row.entrance_number), + "title": row.title, + "points": JSON.parse(row.points), + "points_number": JSON.parse(row.points_number), + "floors_quantity": row.floors_quantity, + "apartments_quantity": row.apartments_quantity, + "description": row.description, + "created_at": Number(row.created_at), + "updated_at": Number(row.updated_at), + "working": Number(row.working) == 0 ? false : true, + "history": { + "id": row.entrance_history_id ? Number(row.entrance_history_id) : null, + "name": row.entrance_history_name, + "group_id": row.entrance_history_group_id ? Number(row.entrance_history_group_id) : null, + "sheep_id": row.entrance_history_sheep_id ? Number(row.entrance_history_sheep_id) : null, + "date": { + "start": row.entrance_history_date_start ? Number(row.entrance_history_date_start) : null, + "end": row.entrance_history_date_end ? Number(row.entrance_history_date_end) : null + } + } + } + }) + + return res(data); + } + }); + }); + } + getList(group, sheepName) { return new Promise((res, rej) => { let sql = ` @@ -14,18 +76,25 @@ class HousesService { if (group != "0" && !sheepName) { sql = ` - SELECT + SELECT DISTINCT house.*, (SELECT COUNT(DISTINCT entrance_history.id) FROM entrance_history JOIN entrance ON entrance.id = entrance_history.entrance_id WHERE entrance.house_id = house.id AND entrance_history.working = 1 ORDER BY entrance_history.date_start DESC) AS working, (SELECT COUNT(*) FROM entrance WHERE entrance.house_id = house.id) AS entrance_quantity FROM - house + house + JOIN + entrance ON entrance.house_id = house.id + JOIN + entrance_history ON entrance_history.entrance_id = entrance.id WHERE - group_id == '${group}' + entrance_history.working = 1 + AND + entrance_history.name = 'Групова' + AND + entrance_history.group_id == '${group}' `; - } - - + } + if (sheepName) { sql = ` SELECT DISTINCT @@ -39,11 +108,9 @@ class HousesService { JOIN entrance_history ON entrance_history.entrance_id = entrance.id WHERE - house.group_id = '${group}' - AND entrance_history.working = 1 AND - entrance_history.name IN ('Групова', '${sheepName}'); + entrance_history.name = '${sheepName}' `; } @@ -55,12 +122,12 @@ class HousesService { let data = rows.map((row) => { return { "id": Number(row.id), - "group_id": Number(row.group_id), "title": row.title, "number": row.number, "points": JSON.parse(row.points), "points_number": JSON.parse(row.points_number), "geo": JSON.parse(row.geo), + "zoom": Number(row.zoom), "osm_id": JSON.parse(row.osm_id), "settlement": row.settlement, "description": row.description, @@ -102,12 +169,12 @@ class HousesService { } else { let data = { "id": Number(row.id), - "group_id": Number(row.group_id), "title": row.title, "number": row.number, "points": JSON.parse(row.points), "points_number": JSON.parse(row.points_number), "geo": JSON.parse(row.geo), + "zoom": Number(row.zoom), "osm_id": JSON.parse(row.osm_id), "settlement": row.settlement, "description": row.description, @@ -129,12 +196,12 @@ class HousesService { let sql = ` INSERT INTO house( - group_id, title, number, points, points_number, geo, + zoom osm_id, settlement, description, @@ -146,12 +213,12 @@ class HousesService { `; db.run(sql, [ - Number(data.group_id), data.title, data.number, JSON.stringify(data.points), JSON.stringify(data.points_number), JSON.stringify(data.geo), + Number(data.zoom), JSON.stringify(data.osm_id), data.settlement, data.description, @@ -176,12 +243,12 @@ class HousesService { UPDATE house SET - group_id = ?, title = ?, number = ?, points = ?, points_number = ?, geo = ?, + zoom = ?, osm_id = ?, settlement = ?, description = ?, @@ -190,12 +257,12 @@ class HousesService { id = ? `; db.run(sql, [ - Number(data.group_id), data.title, data.number, JSON.stringify(data.points), JSON.stringify(data.points_number), JSON.stringify(data.geo), + Number(data.zoom), JSON.stringify(data.osm_id), data.settlement, data.description, diff --git a/api/services/push.service.js b/api/services/push.service.js new file mode 100644 index 0000000..ab8652b --- /dev/null +++ b/api/services/push.service.js @@ -0,0 +1,70 @@ +const crypto = require('crypto'); +const db = require("../config/db"); +const webpush = require('web-push'); + +const VAPID_PUBLIC_KEY = process.env.VAPID_PUBLIC_KEY; +const VAPID_PRIVATE_KEY = process.env.VAPID_PRIVATE_KEY; + +webpush.setVapidDetails( + 'mailto:rozenrod320@gmail.com', + VAPID_PUBLIC_KEY, + VAPID_PRIVATE_KEY +); + +class PushService { + getKey() { + return new Promise((res, rej) => { + return res({ "publicKey": VAPID_PUBLIC_KEY }); + }); + } + + createSubscribe(sheep_id, data) { + return new Promise((res, rej) => { + let sql = 'INSERT INTO subscription(sheep_id, endpoint, keys, device_name, device_model, created_at) VALUES (?, ?, ?, ?, ?, ?)'; + + db.run(sql, [ + Number(sheep_id), + data.subscription.endpoint, + JSON.stringify(data.subscription.keys), + data.device?.name || "unknown", + data.device?.model || "unknown", + Math.floor(Date.now()) + ], function (err) { + if (err) { + console.error(err.message); + return res(false); + } else { + const payload = JSON.stringify( + { + "title": "Тестове повідомлення", + "body": "Ви успішно підписалися на отримання push повідомлень!", + "url": `https://${process.env.DOMAIN}` + }); + + webpush.sendNotification(data.subscription, payload).catch(err => { + console.error('Ошибка отправки:', err); + }) + + return res({ "status": "ok" }); + } + }); + }); + } + + deleteSubscribe(data) { + return new Promise((res, rej) => { + db.run('DELETE FROM subscription WHERE endpoint = ?', [data.endpoint], function (err) { + if (err) { + console.error(err.message); + return res(false); + } else if (this.changes === 0) { + return res(false); + } else { + res({ "status": "ok" }); + } + }); + }); + } +} + +module.exports = new PushService(); \ No newline at end of file diff --git a/api/services/rotation.service.js b/api/services/rotation.service.js deleted file mode 100644 index cf56eff..0000000 --- a/api/services/rotation.service.js +++ /dev/null @@ -1,106 +0,0 @@ -const sqlite3 = require("sqlite3").verbose(); -const path = require('path'); - -const TelegramConfig = require('../config/telegram.config.js'); -const TelegramBot = require('node-telegram-bot-api'); -const fs = require('fs'); - -const dbPath = process.env.DATABASE_PATH || '../'; -const db = new sqlite3.Database(path.join(dbPath, 'database.sqlite')); - -const bot = new TelegramBot(TelegramConfig.token, { polling: false }); - -class RotationService { - async editTables() { - await bot.sendDocument(TelegramConfig.chatId, fs.createReadStream(path.join(dbPath, 'database.sqlite')), { - filename: "database.sqlite", - contentType: "application/x-sqlite3", - caption: "Резервна копія БД Manager Territory 📄 перед проведенням ротації територій!" - }); - - console.log("Резервна копія БД відправленна в Telegram"); - - return new Promise((resolve, reject) => { - db.serialize(() => { - db.get("SELECT MAX(group_id) AS max_id FROM homestead", (err, row) => { - if (err) { - console.error(err.message); - return reject({ "message": "Помилка при отриманні max_id для homestead" }); - } - - const maxIdHomestead = row?.max_id; - if (maxIdHomestead === null) { - return reject({ "message": "Таблиця homestead пуста або group_id відсутній" }); - } - - db.get("SELECT MAX(group_id) AS max_id FROM house", (err, row) => { - if (err) { - console.error(err.message); - return reject({ "message": "Помилка при отриманні max_id для house" }); - } - - const maxIdHouse = row?.max_id; - if (maxIdHouse === null) { - return reject({ "message": "Таблиця house пуста або group_id відсутній" }); - } - const currentUnixTime = Math.floor(Date.now()); - - // Оновлюємо group_id в обох таблицах - db.run("UPDATE homestead SET updated_at = ?, group_id = group_id + 1 WHERE group_id < ? AND group_id > 0", [currentUnixTime, maxIdHomestead + 1], (err) => { - if (err) { - console.error(err.message); - return reject({ "message": "Помилка при оновленні значень у homestead" }); - } - - db.run("UPDATE homestead SET updated_at = ?, group_id = 1 WHERE group_id = ?", [currentUnixTime, maxIdHomestead + 1], (err) => { - if (err) { - console.error(err.message); - return reject({ "message": "Помилка при встановленні group_id = 1 у homestead" }); - } - - db.run("UPDATE house SET updated_at = ?, group_id = group_id + 1 WHERE group_id < ? AND group_id > 0", [currentUnixTime, maxIdHouse + 1], (err) => { - if (err) { - console.error(err.message); - return reject({ "message": "Помилка при оновленні значень у house" }); - } - - db.run("UPDATE house SET updated_at = ?, group_id = 1 WHERE group_id = ?", [currentUnixTime, maxIdHouse + 1], (err) => { - if (err) { - console.error(err.message); - return reject({ "message": "Помилка при встановленні group_id = 1 у house" }); - } - - console.log("Ротація homestead та house завершилась успішно"); - - // Після оновлення homestead та house ми оновлюємо homestead_history та entrance_history - db.run("UPDATE homestead_history SET date_end = ?, working = 0 WHERE working = 1", [currentUnixTime], (err) => { - if (err) { - console.error(err.message); - return reject({ "message": "Помилка при оновленні homestead_history" }); - } - - db.run("UPDATE entrance_history SET date_end = ?, working = 0 WHERE working = 1", [currentUnixTime], (err) => { - if (err) { - console.error(err.message); - return reject({ "message": "Помилка при оновленні entrance_history" }); - } - - console.log("Ротація homestead_history та entrance_history завершилась успішно"); - resolve({ "message": "Ротація завершилась успішно" }); - }); - }); - }); - }); - }); - }); - }); - }); - }); - }).catch(error => { - console.error('Помилка при проведенні ротації:', error.message); - return error; - }); - } -} - -module.exports = new RotationService(); \ No newline at end of file diff --git a/api/services/sheeps.service.js b/api/services/sheeps.service.js index 729338e..fce0401 100644 --- a/api/services/sheeps.service.js +++ b/api/services/sheeps.service.js @@ -2,392 +2,272 @@ const crypto = require('crypto'); const db = require("../config/db"); class SheepService { - getSheep(uuid, sheepRole) { + getSheep(id, mode) { return new Promise((res, rej) => { - let sql = ` + const sql = ` SELECT sheeps.*, - groups.group_number AS group_id, - administrators.id AS administrators_id, - administrators.uuid AS administrators_uuid, - moderators.id AS moderators_id, - moderators.uuid AS moderators_uuid, - moderators.can_add_sheeps, - moderators.can_add_territory, - moderators.can_manager_territory, - moderators.can_add_stand, - moderators.can_manager_stand, - moderators.can_add_schedule + possibilities.can_add_sheeps, + possibilities.can_view_sheeps, + possibilities.can_add_territory, + possibilities.can_view_territory, + possibilities.can_manager_territory, + possibilities.can_add_stand, + possibilities.can_view_stand, + possibilities.can_manager_stand, + possibilities.can_add_schedule, + possibilities.can_view_schedule FROM sheeps LEFT JOIN - groups ON groups.group_number = sheeps.group_id - LEFT JOIN - administrators ON administrators.sheep_id = sheeps.id - LEFT JOIN - moderators ON moderators.sheep_id = sheeps.id + possibilities ON possibilities.sheep_id = sheeps.id WHERE - sheeps.uuid = ? - LIMIT 1; - ` - db.get(sql, [uuid], (err, sheep) => { + sheeps.id = ? + `; + + db.get(sql, [id], (err, sheep) => { if (err) { console.error(err.message); return res(false); - } else if (!sheep) { - console.log({ "error": "uuid not found" }); - return res(false); - } else { - let data = { - "id": Number(sheep.id), - "group_id": Number(sheep.group_id), - "name": sheep.name, - "icon": sheep.icon, - "uuid": sheep.uuid, - "appointment": sheep.appointment, - "can_view_stand": sheep.can_view_stand == 0 ? false : true, - "can_view_schedule": sheep.can_view_schedule == 0 ? false : true, - "can_view_territory": sheep.can_view_territory == 0 ? false : true, - "administrator": { - "id": sheep.administrators_id ? sheep.administrators_id : false, - "uuid": null - }, - "moderator": { - "id": sheep.moderators_id ? sheep.moderators_id : false, - "uuid": null, - "can_add_sheeps": sheep.can_add_sheeps == 1 ? true : false, - "can_add_territory": sheep.can_add_territory == 1 ? true : false, - "can_manager_territory": sheep.can_manager_territory == 1 ? true : false, - "can_add_stand": sheep.can_add_stand == 1 ? true : false, - "can_manager_stand": sheep.can_manager_stand == 1 ? true : false, - "can_add_schedule": sheep.can_add_schedule == 1 ? true : false - } - } - - if (sheepRole == "administrator") { - if (sheep.administrators_id) { - data.administrator.uuid = sheep.administrators_uuid; - } - if (sheep.moderators_id) { - data.moderator.uuid = sheep.moderators_uuid; - } - } - - return res(data); } + if (!sheep) { + console.log({ error: "id not found" }); + return res(false); + } + + const fields = [ + "can_add_sheeps", + "can_view_sheeps", + "can_add_territory", + "can_view_territory", + "can_manager_territory", + "can_add_stand", + "can_view_stand", + "can_manager_stand", + "can_add_schedule", + "can_view_schedule" + ]; + + const data = { + id: sheep.id, + group_id: sheep.group_id, + name: sheep.name, + icon: sheep.icon, + uuid: sheep.uuid, + uuid_manager: mode && mode === 2 ? sheep.uuid_manager : null, + appointment: sheep.appointment, + mode: mode ? Number(sheep.mode) : 0, + mode_title: sheep.mode_title, + possibilities: {} + }; + + fields.forEach(f => { + data.possibilities[f] = false; + }); + + + if (mode && (mode === 1 || mode === 2)) { + fields.forEach(f => { + data.possibilities[f] = !!sheep[f]; + }); + } + + return res(data); }); }); } - getList(sheepRole) { + getList(mode) { return new Promise((res, rej) => { - let sql = ` - SELECT - sheeps.*, - groups.group_number AS group_id, - administrators.id AS administrators_id, - administrators.uuid AS administrators_uuid, - moderators.id AS moderators_id, - moderators.uuid AS moderators_uuid, - moderators.can_add_sheeps, - moderators.can_add_territory, - moderators.can_manager_territory, - moderators.can_add_stand, - moderators.can_manager_stand, - moderators.can_add_schedule - FROM - sheeps - LEFT JOIN - groups ON groups.group_number = sheeps.group_id - LEFT JOIN - administrators ON administrators.sheep_id = sheeps.id - LEFT JOIN - moderators ON moderators.sheep_id = sheeps.id - ORDER BY - id - `; - - db.all(sql, (err, sheeps) => { - if (err) { - console.error(err.message); - return res(false); - } else { - let result = sheeps.map((sheep) => { - let data = { - "id": Number(sheep.id), - "group_id": Number(sheep.group_id), - "name": sheep.name, - "icon": sheep.icon, - "uuid": sheep.uuid, - "appointment": sheep.appointment, - "can_view_stand": sheep.can_view_stand == 0 ? false : true, - "can_view_schedule": sheep.can_view_schedule == 0 ? false : true, - "can_view_territory": sheep.can_view_territory == 0 ? false : true, - "administrator": { - "id": sheep.administrators_id ? sheep.administrators_id : false, - "uuid": null - }, - "moderator": { - "id": sheep.moderators_id ? sheep.moderators_id : false, - "uuid": null, - "can_add_sheeps": sheep.can_add_sheeps == 1 ? true : false, - "can_add_territory": sheep.can_add_territory == 1 ? true : false, - "can_manager_territory": sheep.can_manager_territory == 1 ? true : false, - "can_add_stand": sheep.can_add_stand == 1 ? true : false, - "can_manager_stand": sheep.can_manager_stand == 1 ? true : false, - "can_add_schedule": sheep.can_add_schedule == 1 ? true : false - } - } - - if (sheepRole == "administrator") { - if (sheep.administrators_id) { - data.administrator.uuid = sheep.administrators_uuid; - } - if (sheep.moderators_id) { - data.moderator.uuid = sheep.moderators_uuid; - } - } - - return data; - }) - - return res(result); - } - }); - }); - } - getAdministrator(uuid) { - return new Promise((res, rej) => { - let sql = ` + const sql = ` SELECT sheeps.*, - groups.group_number AS group_id, - administrators.id AS administrators_id, - administrators.uuid AS administrators_uuid + possibilities.can_add_sheeps, + possibilities.can_view_sheeps, + possibilities.can_add_territory, + possibilities.can_view_territory, + possibilities.can_manager_territory, + possibilities.can_add_stand, + possibilities.can_view_stand, + possibilities.can_manager_stand, + possibilities.can_add_schedule, + possibilities.can_view_schedule FROM sheeps - JOIN - administrators ON sheeps.id = administrators.sheep_id LEFT JOIN - groups ON groups.group_number = sheeps.group_id - WHERE - administrators.uuid = ? - LIMIT 1; - ` - db.get(sql, [uuid], (err, sheep) => { + possibilities ON possibilities.sheep_id = sheeps.id + ORDER BY + sheeps.group_id + `; + + db.all(sql, (err, rows) => { if (err) { console.error(err.message); return res(false); - } else if (!sheep) { - console.log({ "error": "uuid not found" }); - return res(false); - } else { - let data = { - "id": Number(sheep.id), - "group_id": Number(sheep.group_id), - "name": sheep.name, - "icon": sheep.icon, - "uuid": sheep.uuid, - "appointment": sheep.appointment, - "can_view_stand": sheep.can_view_stand == 0 ? false : true, - "can_view_schedule": sheep.can_view_schedule == 0 ? false : true, - "can_view_territory": sheep.can_view_territory == 0 ? false : true, - "administrator": { - "id": sheep.administrators_id, - "uuid": sheep.administrators_uuid - }, - "moderator": false + } + + const fields = [ + "can_add_sheeps", + "can_view_sheeps", + "can_add_territory", + "can_view_territory", + "can_manager_territory", + "can_add_stand", + "can_view_stand", + "can_manager_stand", + "can_add_schedule", + "can_view_schedule" + ]; + + const result = rows.map(sheep => { + const data = { + id: sheep.id, + group_id: sheep.group_id, + name: sheep.name, + icon: sheep.icon, + uuid: sheep.uuid, + uuid_manager: (mode && mode == 2) ? sheep.uuid_manager : null, + appointment: sheep.appointment, + mode: mode ? Number(sheep.mode) : 0, + mode_title: sheep.mode_title, + possibilities: {} + }; + + fields.forEach(f => { + data.possibilities[f] = false; + }); + + if (mode && (mode == 1 || mode == 2)) { + fields.forEach(f => { + data.possibilities[f] = !!sheep[f]; + }); } - return res(data); - } - }); - }); - } - getModerator(uuid) { - return new Promise((res, rej) => { - let sql = ` - SELECT - sheeps.*, - groups.group_number AS group_id, - moderators.id AS moderators_id, - moderators.uuid AS moderators_uuid, - moderators.can_add_sheeps AS can_add_sheeps, - moderators.can_add_territory AS can_add_territory, - moderators.can_manager_territory AS can_manager_territory, - moderators.can_add_stand AS can_add_stand, - moderators.can_manager_stand AS can_manager_stand, - moderators.can_add_schedule AS can_add_schedule - FROM - sheeps - JOIN - moderators ON sheeps.id = moderators.sheep_id - LEFT JOIN - groups ON groups.group_number = sheeps.group_id - WHERE - moderators.uuid = ? - LIMIT 1; - ` - db.get(sql, [uuid], (err, sheep) => { - if (err) { - console.error(err.message); - return res(false); - } else if (!sheep) { - console.log({ "error": "uuid not found" }); - return res(false); - } else { - let data = { - "id": Number(sheep.id), - "group_id": Number(sheep.group_id), - "name": sheep.name, - "icon": sheep.icon, - "uuid": sheep.uuid, - "appointment": sheep.appointment, - "can_view_stand": sheep.can_view_stand == 0 ? false : true, - "can_view_schedule": sheep.can_view_schedule == 0 ? false : true, - "can_view_territory": sheep.can_view_territory == 0 ? false : true, - "administrator": false, - "moderator": { - "id": sheep.moderators_id, - "uuid": sheep.moderators_uuid, - "can_add_sheeps": sheep.can_add_sheeps == 0 ? false : true, - "can_add_territory": sheep.can_add_territory == 0 ? false : true, - "can_manager_territory": sheep.can_manager_territory == 0 ? false : true, - "can_add_stand": sheep.can_add_stand == 0 ? false : true, - "can_manager_stand": sheep.can_manager_stand == 0 ? false : true, - "can_add_schedule": sheep.can_add_schedule == 0 ? false : true - } - } + return data; + }); - return res(data); - } + res(result); }); }); } createSheep(data) { + const stmt1 = db.prepare('INSERT INTO sheeps(name, group_id, appointment, uuid) VALUES (?, ?, ?, ?)'); + const stmt2 = db.prepare('INSERT INTO possibilities(can_view_territory, sheep_id) VALUES (?, ?)'); + return new Promise((res, rej) => { - let sql = 'INSERT INTO sheeps(name, group_id, appointment, uuid) VALUES (?, ?, ?, ?)'; + db.serialize(() => { + let uuid = crypto.randomUUID(); - let uuid = crypto.randomUUID(); + stmt1.run([ + data.name, + Number(data.group_id), + data.appointment, + uuid + ], function (err) { + if (err) return rej(err); - db.run(sql, [ - data.name, - Number(data.group_id), - data.appointment, - uuid - ], function (err) { - if (err) { - console.error(err.message); - return res(false); - } else if (this.changes === 0) { - return res(false); - } else { - res({ "status": "ok", "id": this.lastID, "uuid": uuid }); - } + const newSheepId = this.lastID; + + stmt2.run([ + 1, + newSheepId + ], (err2) => { + if (err2) return rej(err2); + res({ status: "ok", id: newSheepId, uuid: uuid }); + }); + }); }); }); } updateSheep(data) { - return new Promise(async (res, rej) => { - try { - let sql = ` - UPDATE sheeps - SET name = ?, group_id = ?, appointment = ?, - can_view_stand = ?, can_view_schedule = ?, can_view_territory = ? - WHERE uuid = ? - `; + const stmt1 = db.prepare(` + UPDATE + sheeps + SET + name = ?, + group_id = ?, + appointment = ?, + mode = ?, + mode_title = ?, + uuid_manager = ? + WHERE + uuid = ? + `); - await db.run(sql, [ + const stmt2 = db.prepare(` + UPDATE + possibilities + SET + can_add_sheeps = ?, + can_view_sheeps = ?, + can_add_territory = ?, + can_view_territory = ?, + can_manager_territory = ?, + can_add_stand = ?, + can_view_stand = ?, + can_manager_stand = ?, + can_add_schedule = ?, + can_view_schedule = ? + WHERE + sheep_id = (SELECT id FROM sheeps WHERE uuid = ? LIMIT 1) + `); + + return new Promise((res, rej) => { + db.serialize(() => { + let uuid_manager = crypto.randomUUID(); + + stmt1.run([ data.name, Number(data.group_id), data.appointment, - data.can_view_stand ? 1 : 0, - data.can_view_schedule ? 1 : 0, - data.can_view_territory ? 1 : 0, + Number(data.mode), + data.mode_title, + Number(data.mode) == 0 ? null : (data.uuid_manager ? data.uuid_manager : uuid_manager), data.uuid - ]); + ], (err) => { + if (err) return rej(err); - if (data.role === "administrator") { - if (!data.administrator?.id) { - await db.run( - 'INSERT INTO administrators(sheep_id, uuid) VALUES (?, ?)', - [data.id, crypto.randomUUID()] - ); - console.log({ insert: "ok" }); - } - if (data.moderator?.id) { - await db.run('DELETE FROM moderators WHERE id = ?', [data.moderator.id]); - console.log({ delete: "ok" }); - } - } else if (data.role === "moderator") { - if (!data.moderator?.id) { - await db.run( - `INSERT INTO moderators(sheep_id, can_add_sheeps, can_add_territory, - can_manager_territory, can_add_stand, can_manager_stand, - can_add_schedule, uuid) VALUES (?, ?, ?, ?, ?, ?, ?, ?)`, - [ - data.id, - data.moderator.can_add_sheeps ? 1 : 0, - data.moderator.can_add_territory ? 1 : 0, - data.moderator.can_manager_territory ? 1 : 0, - data.moderator.can_add_stand ? 1 : 0, - data.moderator.can_manager_stand ? 1 : 0, - data.moderator.can_add_schedule ? 1 : 0, - crypto.randomUUID() - ] - ); - console.log({ insert: "ok" }); - } else { - await db.run( - `UPDATE moderators - SET can_add_sheeps = ?, can_add_territory = ?, - can_manager_territory = ?, can_add_stand = ?, - can_manager_stand = ?, can_add_schedule = ? - WHERE id = ?`, - [ - data.moderator.can_add_sheeps ? 1 : 0, - data.moderator.can_add_territory ? 1 : 0, - data.moderator.can_manager_territory ? 1 : 0, - data.moderator.can_add_stand ? 1 : 0, - data.moderator.can_manager_stand ? 1 : 0, - data.moderator.can_add_schedule ? 1 : 0, - data.moderator.id - ] - ); - console.log({ update: "ok" }); - } - if (data.administrator?.id) { - await db.run('DELETE FROM administrators WHERE id = ?', [data.administrator.id]); - console.log({ delete: "ok" }); - } - } else if (data.role === "sheep") { - if (data.moderator?.id) { - await db.run('DELETE FROM moderators WHERE id = ?', [data.moderator.id]); - console.log({ delete: "ok" }); - } - if (data.administrator?.id) { - await db.run('DELETE FROM administrators WHERE id = ?', [data.administrator.id]); - console.log({ delete: "ok" }); - } - } - - res({ status: "ok", id: data.id }); - } catch (err) { - console.error(err.message); - rej(false); - } + stmt2.run([ + data.possibilities.can_add_sheeps, + data.possibilities.can_view_sheeps, + data.possibilities.can_add_territory, + data.possibilities.can_view_territory, + data.possibilities.can_manager_territory, + data.possibilities.can_add_stand, + data.possibilities.can_view_stand, + data.possibilities.can_manager_stand, + data.possibilities.can_add_schedule, + data.possibilities.can_view_schedule, + data.uuid + ], (err2) => { + if (err2) return rej(err2); + res({ status: "ok", id: data.id }); + }); + }); + }); }); } deleteSheep(data) { + const stmtSelect = db.prepare('SELECT id FROM sheeps WHERE uuid = ?'); + const stmtDeletePoss = db.prepare('DELETE FROM possibilities WHERE sheep_id = ?'); + const stmtDeleteSheep = db.prepare('DELETE FROM sheeps WHERE uuid = ?'); + return new Promise((res, rej) => { - db.run('DELETE FROM sheeps WHERE uuid = ?', [data.uuid], function (err) { - if (err) { - console.error(err.message); - return res(false); - } else if (this.changes === 0) { - return res(false); - } else { - res({ "dellete": "ok" }); - } + db.serialize(() => { + stmtSelect.get([data.uuid], (err, row) => { + if (err) return rej(err); + if (!row) return rej(new Error("Sheep not found")); + + const sheepId = row.id; + + stmtDeletePoss.run([sheepId], (err2) => { + if (err2) return rej(err2); + + stmtDeleteSheep.run([data.uuid], (err3) => { + if (err3) return rej(err3); + res({ status: "ok", deletedSheepId: sheepId }); + }); + }); + }); }); }); } diff --git a/api/services/stand.service.js b/api/services/stand.service.js new file mode 100644 index 0000000..784da64 --- /dev/null +++ b/api/services/stand.service.js @@ -0,0 +1,230 @@ +const crypto = require('crypto'); +const db = require("../config/db"); + +class StandService { + getStand(id) { + return new Promise((res, rej) => { + return res({ id }); + }); + } + + getList() { + return new Promise((res, rej) => { + const sql = ` + SELECT + * + FROM + stand_list + ORDER BY + id + `; + + db.all(sql, (err, rows) => { + if (err) { + console.error(err.message); + return res(false); + } else { + let data = rows.map((row) => { + return { + "id": Number(row.id), + "title": row.title, + "geo": JSON.parse(row.geo), + "hour_start": Number(row.hour_start), + "hour_end": Number(row.hour_end), + "quantity_sheep": Number(row.quantity_sheep), + "week_days": JSON.parse(row.week_days), + "processing_time": Number(row.processing_time), + "status": row.status == 1 ? true : false, + "updated_at": Number(row.updated_at) + } + }) + + return res(data); + } + }); + }); + } + + createStand(data) { + return new Promise((res, rej) => { + let sql = 'INSERT INTO stand_list(title, geo, hour_start, hour_end, quantity_sheep, week_days, processing_time, status, updated_at) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)'; + + db.run(sql, [ + data.title, + JSON.stringify(data.geo || []), + Number(data.hour_start) || 9, + Number(data.hour_end) || 18, + Number(data.quantity_sheep) || 2, + JSON.stringify(data.week_days || [1]), + Number(data.processing_time) || 1, + 1, + Math.floor(Date.now()) + ], function (err) { + if (err) { + console.error(err.message); + return res(false); + } else { + res({ "status": "ok", "id": this.lastID }); + } + }); + }); + } + + updateStand(stand_id, data) { + return new Promise((res, rej) => { + const sql = ` + UPDATE stand_list SET + title = COALESCE(?, title), + geo = COALESCE(?, geo), + hour_start = COALESCE(?, hour_start), + hour_end = COALESCE(?, hour_end), + quantity_sheep = COALESCE(?, quantity_sheep), + week_days = COALESCE(?, week_days), + status = COALESCE(?, status), + updated_at = ? + WHERE id = ? + `; + + db.run(sql, [ + data.title ?? null, + data.geo !== undefined ? JSON.stringify(data.geo) : null, + data.hour_start !== undefined ? Number(data.hour_start) : null, + data.hour_end !== undefined ? Number(data.hour_end) : null, + data.quantity_sheep !== undefined ? Number(data.quantity_sheep) : null, + data.week_days !== undefined ? JSON.stringify(data.week_days) : null, + data.status !== undefined ? (data.status ? 1 : 0) : null, + Date.now(), + stand_id + ], function (err) { + if (err) { + console.error(err.message); + return res(false); + } else if (this.changes === 0) { + return res(false); + } else { + res({ status: "ok", id: stand_id }); + } + }); + }); + } + + deleteStand(stand_id) { + return new Promise((res, rej) => { + db.run('DELETE FROM stand_list WHERE id = ?', [stand_id], function (err) { + if (err) { + console.error(err.message); + return res(false); + } else if (this.changes === 0) { + return res(false); + } else { + res({ "status": "ok", "id": stand_id }); + } + }); + }); + } + + createSchedule(stand_id) { + return new Promise((res, rej) => { + let date_start; + let getNextMonday = (ts) => { + let date = new Date(ts); + // следующий день после max_date + date.setDate(date.getDate() + 1); + + // пока не понедельник – добавляем дни + while (date.getDay() !== 1) { + date.setDate(date.getDate() + 1); + } + return date.getTime(); + } + + // 1. Получаем стенд + db.get(`SELECT * FROM stand_list WHERE id = ?`, [stand_id], (err, stand) => { + if (err) { + console.error(err.message); + return res(false); + } + if (!stand) { + console.log({ error: "id not found" }); + return res(false); + } + + stand.geo = JSON.parse(stand.geo); + stand.week_days = JSON.parse(stand.week_days) + + // 2. Берём последний date из расписания + db.get( + `SELECT MAX(date) AS max_date FROM stand_schedule WHERE stand_id = ?`, + [stand.id], + (err, row) => { + if (err) { + console.error(err.message); + return res(false); + } + + if (row && row.max_date) { + date_start = getNextMonday(row.max_date); // заменить начальную дату + } else { + date_start = getNextMonday(Date.now()); // заменить начальную дату + } + + // 3. Генерация новых записей + const stand_length = (stand.hour_end - stand.hour_start) / stand.processing_time; + const timestamp = Math.floor(Date.now()); + const list = []; + + for (const dayOffset of stand.week_days) { + const stand_date = date_start + (dayOffset * 24 * 60 * 60 * 1000); + + for (let i = 0; i < stand_length; i++) { + for (let q = 0; q < stand.quantity_sheep; q++) { + list.push([ + stand.hour_start + (stand.processing_time * i), + q, + stand_date, + stand.id, + timestamp + ]); + } + } + } + + if (list.length === 0) { + return res({ status: "empty" }); + } + + // 4. Массовая вставка + const placeholders = list.map(() => "(?, ?, ?, ?, ?)").join(","); + const values = list.flat(); + const insertSQL = ` + INSERT INTO stand_schedule(hour, number_sheep, date, stand_id, updated_at) + VALUES ${placeholders} + `; + + db.run(insertSQL, values, function (err) { + if (err) { + console.error(err.message); + return res(false); + } + res({ status: "ok", inserted: list.length }); + }); + } + ); + }); + }); + } + + getScheduleList(data) { + return new Promise((res, rej) => { + return res({ data }); + }); + } + + getScheduleHistory(id) { + return new Promise((res, rej) => { + return res({ id }); + }); + } +} + +module.exports = new StandService(); \ No newline at end of file diff --git a/backup.py b/backup.py new file mode 100644 index 0000000..67e26bf --- /dev/null +++ b/backup.py @@ -0,0 +1,37 @@ +import os +import requests +from datetime import datetime +from zipfile import ZipFile, ZIP_DEFLATED +from dotenv import load_dotenv + +# Загрузка переменных из .env +load_dotenv() + +TELEGRAM_TOKEN = os.getenv('TELEGRAM_TOKEN') +CHAT_ID = os.getenv('CHAT_ID') +DB_PATH = os.path.join(os.getenv('DB_PATH'), 'database.sqlite') + +def send_document(filename, caption): + url = f'https://api.telegram.org/bot{TELEGRAM_TOKEN}/sendDocument' + with open(filename, 'rb') as f: + response = requests.post( + url, + data={'chat_id': CHAT_ID, 'caption': caption}, + files={'document': f} + ) + print(response.json()) + +def main(): + if not TELEGRAM_TOKEN or not CHAT_ID or not DB_PATH: + print("Помилка: TELEGRAM_TOKEN, CHAT_ID або DB_PATH не задано в .env.") + return + + if os.path.exists(DB_PATH): + timestamp = datetime.now().strftime("%d.%m.%Y %H:%M") + caption = f"Backup Sheep Service DB - {timestamp}" + send_document(DB_PATH, caption) + else: + print("ZIP file not created") + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/cards/cache/T80.png b/cards/cache/T80.png new file mode 100644 index 0000000..79e6c2c Binary files /dev/null and b/cards/cache/T80.png differ diff --git a/cards/homestead/H1.webp b/cards/homestead/H1.webp new file mode 100644 index 0000000..58fc06b Binary files /dev/null and b/cards/homestead/H1.webp differ diff --git a/cards/homestead/H10.webp b/cards/homestead/H10.webp new file mode 100644 index 0000000..2ef1b93 Binary files /dev/null and b/cards/homestead/H10.webp differ diff --git a/cards/homestead/H11.webp b/cards/homestead/H11.webp new file mode 100644 index 0000000..1a1f6a8 Binary files /dev/null and b/cards/homestead/H11.webp differ diff --git a/cards/homestead/H12.webp b/cards/homestead/H12.webp new file mode 100644 index 0000000..789bd96 Binary files /dev/null and b/cards/homestead/H12.webp differ diff --git a/cards/homestead/H13.webp b/cards/homestead/H13.webp new file mode 100644 index 0000000..f1cae70 Binary files /dev/null and b/cards/homestead/H13.webp differ diff --git a/cards/homestead/H14.webp b/cards/homestead/H14.webp new file mode 100644 index 0000000..2bf9e49 Binary files /dev/null and b/cards/homestead/H14.webp differ diff --git a/cards/homestead/H15.webp b/cards/homestead/H15.webp new file mode 100644 index 0000000..a085c0b Binary files /dev/null and b/cards/homestead/H15.webp differ diff --git a/cards/homestead/H16.webp b/cards/homestead/H16.webp new file mode 100644 index 0000000..3d3cbd6 Binary files /dev/null and b/cards/homestead/H16.webp differ diff --git a/cards/homestead/H17.webp b/cards/homestead/H17.webp new file mode 100644 index 0000000..a13e488 Binary files /dev/null and b/cards/homestead/H17.webp differ diff --git a/cards/homestead/H18.webp b/cards/homestead/H18.webp new file mode 100644 index 0000000..84be4d0 Binary files /dev/null and b/cards/homestead/H18.webp differ diff --git a/cards/homestead/H19.webp b/cards/homestead/H19.webp new file mode 100644 index 0000000..17fb055 Binary files /dev/null and b/cards/homestead/H19.webp differ diff --git a/cards/homestead/H2.webp b/cards/homestead/H2.webp new file mode 100644 index 0000000..94a6700 Binary files /dev/null and b/cards/homestead/H2.webp differ diff --git a/cards/homestead/H20.webp b/cards/homestead/H20.webp new file mode 100644 index 0000000..155e82b Binary files /dev/null and b/cards/homestead/H20.webp differ diff --git a/cards/homestead/H21.webp b/cards/homestead/H21.webp new file mode 100644 index 0000000..c10f902 Binary files /dev/null and b/cards/homestead/H21.webp differ diff --git a/cards/homestead/H22.webp b/cards/homestead/H22.webp new file mode 100644 index 0000000..1b60b2a Binary files /dev/null and b/cards/homestead/H22.webp differ diff --git a/cards/homestead/H23.webp b/cards/homestead/H23.webp new file mode 100644 index 0000000..c666fe5 Binary files /dev/null and b/cards/homestead/H23.webp differ diff --git a/cards/homestead/H24.webp b/cards/homestead/H24.webp new file mode 100644 index 0000000..37aba85 Binary files /dev/null and b/cards/homestead/H24.webp differ diff --git a/cards/homestead/H25.webp b/cards/homestead/H25.webp new file mode 100644 index 0000000..0da60c2 Binary files /dev/null and b/cards/homestead/H25.webp differ diff --git a/cards/homestead/H26.webp b/cards/homestead/H26.webp new file mode 100644 index 0000000..a9f5cb7 Binary files /dev/null and b/cards/homestead/H26.webp differ diff --git a/cards/homestead/H27.webp b/cards/homestead/H27.webp new file mode 100644 index 0000000..c89383e Binary files /dev/null and b/cards/homestead/H27.webp differ diff --git a/cards/homestead/H28.webp b/cards/homestead/H28.webp new file mode 100644 index 0000000..25896ee Binary files /dev/null and b/cards/homestead/H28.webp differ diff --git a/cards/homestead/H29.webp b/cards/homestead/H29.webp new file mode 100644 index 0000000..4e37947 Binary files /dev/null and b/cards/homestead/H29.webp differ diff --git a/cards/homestead/H3.webp b/cards/homestead/H3.webp new file mode 100644 index 0000000..139879e Binary files /dev/null and b/cards/homestead/H3.webp differ diff --git a/cards/homestead/H30.webp b/cards/homestead/H30.webp new file mode 100644 index 0000000..612b900 Binary files /dev/null and b/cards/homestead/H30.webp differ diff --git a/cards/homestead/H31.webp b/cards/homestead/H31.webp new file mode 100644 index 0000000..6e8e247 Binary files /dev/null and b/cards/homestead/H31.webp differ diff --git a/cards/homestead/H32.webp b/cards/homestead/H32.webp new file mode 100644 index 0000000..2053778 Binary files /dev/null and b/cards/homestead/H32.webp differ diff --git a/cards/homestead/H33.webp b/cards/homestead/H33.webp new file mode 100644 index 0000000..1184fcd Binary files /dev/null and b/cards/homestead/H33.webp differ diff --git a/cards/homestead/H34.webp b/cards/homestead/H34.webp new file mode 100644 index 0000000..2639e01 Binary files /dev/null and b/cards/homestead/H34.webp differ diff --git a/cards/homestead/H35.webp b/cards/homestead/H35.webp new file mode 100644 index 0000000..3803c4f Binary files /dev/null and b/cards/homestead/H35.webp differ diff --git a/cards/homestead/H36.webp b/cards/homestead/H36.webp new file mode 100644 index 0000000..47a80bc Binary files /dev/null and b/cards/homestead/H36.webp differ diff --git a/cards/homestead/H37.webp b/cards/homestead/H37.webp new file mode 100644 index 0000000..ca7bd65 Binary files /dev/null and b/cards/homestead/H37.webp differ diff --git a/cards/homestead/H38.webp b/cards/homestead/H38.webp new file mode 100644 index 0000000..2967fb7 Binary files /dev/null and b/cards/homestead/H38.webp differ diff --git a/cards/homestead/H39.webp b/cards/homestead/H39.webp new file mode 100644 index 0000000..3166755 Binary files /dev/null and b/cards/homestead/H39.webp differ diff --git a/cards/homestead/H4.webp b/cards/homestead/H4.webp new file mode 100644 index 0000000..708264e Binary files /dev/null and b/cards/homestead/H4.webp differ diff --git a/cards/homestead/H40.webp b/cards/homestead/H40.webp new file mode 100644 index 0000000..c6f03eb Binary files /dev/null and b/cards/homestead/H40.webp differ diff --git a/cards/homestead/H41.webp b/cards/homestead/H41.webp new file mode 100644 index 0000000..5852b08 Binary files /dev/null and b/cards/homestead/H41.webp differ diff --git a/cards/homestead/H42.webp b/cards/homestead/H42.webp new file mode 100644 index 0000000..025eb61 Binary files /dev/null and b/cards/homestead/H42.webp differ diff --git a/cards/homestead/H43.webp b/cards/homestead/H43.webp new file mode 100644 index 0000000..b5b8d01 Binary files /dev/null and b/cards/homestead/H43.webp differ diff --git a/cards/homestead/H44.webp b/cards/homestead/H44.webp new file mode 100644 index 0000000..ff17874 Binary files /dev/null and b/cards/homestead/H44.webp differ diff --git a/cards/homestead/H45.webp b/cards/homestead/H45.webp new file mode 100644 index 0000000..790877e Binary files /dev/null and b/cards/homestead/H45.webp differ diff --git a/cards/homestead/H46.webp b/cards/homestead/H46.webp new file mode 100644 index 0000000..8f7fbe5 Binary files /dev/null and b/cards/homestead/H46.webp differ diff --git a/cards/homestead/H47.webp b/cards/homestead/H47.webp new file mode 100644 index 0000000..1a6ea4f Binary files /dev/null and b/cards/homestead/H47.webp differ diff --git a/cards/homestead/H48.webp b/cards/homestead/H48.webp new file mode 100644 index 0000000..5b6e5f6 Binary files /dev/null and b/cards/homestead/H48.webp differ diff --git a/cards/homestead/H49.webp b/cards/homestead/H49.webp new file mode 100644 index 0000000..8378b2d Binary files /dev/null and b/cards/homestead/H49.webp differ diff --git a/cards/homestead/H5.webp b/cards/homestead/H5.webp new file mode 100644 index 0000000..97123cd Binary files /dev/null and b/cards/homestead/H5.webp differ diff --git a/cards/homestead/H50.webp b/cards/homestead/H50.webp new file mode 100644 index 0000000..90270d4 Binary files /dev/null and b/cards/homestead/H50.webp differ diff --git a/cards/homestead/H51.webp b/cards/homestead/H51.webp new file mode 100644 index 0000000..2a79cd3 Binary files /dev/null and b/cards/homestead/H51.webp differ diff --git a/cards/homestead/H52.webp b/cards/homestead/H52.webp new file mode 100644 index 0000000..d2411a5 Binary files /dev/null and b/cards/homestead/H52.webp differ diff --git a/cards/homestead/H6.webp b/cards/homestead/H6.webp new file mode 100644 index 0000000..06cf00b Binary files /dev/null and b/cards/homestead/H6.webp differ diff --git a/cards/homestead/H7.webp b/cards/homestead/H7.webp new file mode 100644 index 0000000..a6ceec0 Binary files /dev/null and b/cards/homestead/H7.webp differ diff --git a/cards/homestead/H8.webp b/cards/homestead/H8.webp new file mode 100644 index 0000000..b26bc46 Binary files /dev/null and b/cards/homestead/H8.webp differ diff --git a/cards/homestead/H9.webp b/cards/homestead/H9.webp new file mode 100644 index 0000000..ebec8ad Binary files /dev/null and b/cards/homestead/H9.webp differ diff --git a/cards/house/T1.webp b/cards/house/T1.webp new file mode 100644 index 0000000..765371b Binary files /dev/null and b/cards/house/T1.webp differ diff --git a/cards/house/T10.webp b/cards/house/T10.webp new file mode 100644 index 0000000..ecaf32f Binary files /dev/null and b/cards/house/T10.webp differ diff --git a/cards/house/T11.webp b/cards/house/T11.webp new file mode 100644 index 0000000..69c7ac6 Binary files /dev/null and b/cards/house/T11.webp differ diff --git a/cards/house/T12.webp b/cards/house/T12.webp new file mode 100644 index 0000000..958c2b4 Binary files /dev/null and b/cards/house/T12.webp differ diff --git a/cards/house/T13.webp b/cards/house/T13.webp new file mode 100644 index 0000000..f774e9b Binary files /dev/null and b/cards/house/T13.webp differ diff --git a/cards/house/T14.webp b/cards/house/T14.webp new file mode 100644 index 0000000..74bc57b Binary files /dev/null and b/cards/house/T14.webp differ diff --git a/cards/house/T15.webp b/cards/house/T15.webp new file mode 100644 index 0000000..9fe2aad Binary files /dev/null and b/cards/house/T15.webp differ diff --git a/cards/house/T16.webp b/cards/house/T16.webp new file mode 100644 index 0000000..4557717 Binary files /dev/null and b/cards/house/T16.webp differ diff --git a/cards/house/T17.webp b/cards/house/T17.webp new file mode 100644 index 0000000..0854e8e Binary files /dev/null and b/cards/house/T17.webp differ diff --git a/cards/house/T18.webp b/cards/house/T18.webp new file mode 100644 index 0000000..c25e84d Binary files /dev/null and b/cards/house/T18.webp differ diff --git a/cards/house/T19.webp b/cards/house/T19.webp new file mode 100644 index 0000000..95d9b96 Binary files /dev/null and b/cards/house/T19.webp differ diff --git a/cards/house/T2.webp b/cards/house/T2.webp new file mode 100644 index 0000000..1fb5ed2 Binary files /dev/null and b/cards/house/T2.webp differ diff --git a/cards/house/T20.webp b/cards/house/T20.webp new file mode 100644 index 0000000..0a166ab Binary files /dev/null and b/cards/house/T20.webp differ diff --git a/cards/house/T21.webp b/cards/house/T21.webp new file mode 100644 index 0000000..65b6cc4 Binary files /dev/null and b/cards/house/T21.webp differ diff --git a/cards/house/T22.webp b/cards/house/T22.webp new file mode 100644 index 0000000..c22438a Binary files /dev/null and b/cards/house/T22.webp differ diff --git a/cards/house/T23.webp b/cards/house/T23.webp new file mode 100644 index 0000000..bf01268 Binary files /dev/null and b/cards/house/T23.webp differ diff --git a/cards/house/T25.webp b/cards/house/T25.webp new file mode 100644 index 0000000..a349687 Binary files /dev/null and b/cards/house/T25.webp differ diff --git a/cards/house/T26.webp b/cards/house/T26.webp new file mode 100644 index 0000000..5302b59 Binary files /dev/null and b/cards/house/T26.webp differ diff --git a/cards/house/T28.webp b/cards/house/T28.webp new file mode 100644 index 0000000..7fd16ba Binary files /dev/null and b/cards/house/T28.webp differ diff --git a/cards/house/T29.webp b/cards/house/T29.webp new file mode 100644 index 0000000..c4e9ef9 Binary files /dev/null and b/cards/house/T29.webp differ diff --git a/cards/house/T3.webp b/cards/house/T3.webp new file mode 100644 index 0000000..0b3d713 Binary files /dev/null and b/cards/house/T3.webp differ diff --git a/cards/house/T30.webp b/cards/house/T30.webp new file mode 100644 index 0000000..42f42c9 Binary files /dev/null and b/cards/house/T30.webp differ diff --git a/cards/house/T31.webp b/cards/house/T31.webp new file mode 100644 index 0000000..92e4b20 Binary files /dev/null and b/cards/house/T31.webp differ diff --git a/cards/house/T32.webp b/cards/house/T32.webp new file mode 100644 index 0000000..a263ab4 Binary files /dev/null and b/cards/house/T32.webp differ diff --git a/cards/house/T33.webp b/cards/house/T33.webp new file mode 100644 index 0000000..8a764a8 Binary files /dev/null and b/cards/house/T33.webp differ diff --git a/cards/house/T34.webp b/cards/house/T34.webp new file mode 100644 index 0000000..216ba87 Binary files /dev/null and b/cards/house/T34.webp differ diff --git a/cards/house/T35.webp b/cards/house/T35.webp new file mode 100644 index 0000000..6d69558 Binary files /dev/null and b/cards/house/T35.webp differ diff --git a/cards/house/T36.webp b/cards/house/T36.webp new file mode 100644 index 0000000..1287a73 Binary files /dev/null and b/cards/house/T36.webp differ diff --git a/cards/house/T37.webp b/cards/house/T37.webp new file mode 100644 index 0000000..3fd6ac0 Binary files /dev/null and b/cards/house/T37.webp differ diff --git a/cards/house/T38.webp b/cards/house/T38.webp new file mode 100644 index 0000000..e730667 Binary files /dev/null and b/cards/house/T38.webp differ diff --git a/cards/house/T39.webp b/cards/house/T39.webp new file mode 100644 index 0000000..a5c8eca Binary files /dev/null and b/cards/house/T39.webp differ diff --git a/cards/house/T4.webp b/cards/house/T4.webp new file mode 100644 index 0000000..f419e40 Binary files /dev/null and b/cards/house/T4.webp differ diff --git a/cards/house/T40.webp b/cards/house/T40.webp new file mode 100644 index 0000000..315f9b6 Binary files /dev/null and b/cards/house/T40.webp differ diff --git a/cards/house/T41.webp b/cards/house/T41.webp new file mode 100644 index 0000000..0144420 Binary files /dev/null and b/cards/house/T41.webp differ diff --git a/cards/house/T42.webp b/cards/house/T42.webp new file mode 100644 index 0000000..0829a34 Binary files /dev/null and b/cards/house/T42.webp differ diff --git a/cards/house/T43.webp b/cards/house/T43.webp new file mode 100644 index 0000000..ca4f3e3 Binary files /dev/null and b/cards/house/T43.webp differ diff --git a/cards/house/T44.webp b/cards/house/T44.webp new file mode 100644 index 0000000..ce3f3f7 Binary files /dev/null and b/cards/house/T44.webp differ diff --git a/cards/house/T45.webp b/cards/house/T45.webp new file mode 100644 index 0000000..2b7cb63 Binary files /dev/null and b/cards/house/T45.webp differ diff --git a/cards/house/T46.webp b/cards/house/T46.webp new file mode 100644 index 0000000..5f3e51e Binary files /dev/null and b/cards/house/T46.webp differ diff --git a/cards/house/T47.webp b/cards/house/T47.webp new file mode 100644 index 0000000..db89c1b Binary files /dev/null and b/cards/house/T47.webp differ diff --git a/cards/house/T48.webp b/cards/house/T48.webp new file mode 100644 index 0000000..51d8f3f Binary files /dev/null and b/cards/house/T48.webp differ diff --git a/cards/house/T49.webp b/cards/house/T49.webp new file mode 100644 index 0000000..ed285d6 Binary files /dev/null and b/cards/house/T49.webp differ diff --git a/cards/house/T5.webp b/cards/house/T5.webp new file mode 100644 index 0000000..fdcc9b9 Binary files /dev/null and b/cards/house/T5.webp differ diff --git a/cards/house/T50.webp b/cards/house/T50.webp new file mode 100644 index 0000000..d001e39 Binary files /dev/null and b/cards/house/T50.webp differ diff --git a/cards/house/T51.webp b/cards/house/T51.webp new file mode 100644 index 0000000..eb22882 Binary files /dev/null and b/cards/house/T51.webp differ diff --git a/cards/house/T52.webp b/cards/house/T52.webp new file mode 100644 index 0000000..34fbff2 Binary files /dev/null and b/cards/house/T52.webp differ diff --git a/cards/house/T53.webp b/cards/house/T53.webp new file mode 100644 index 0000000..14f7207 Binary files /dev/null and b/cards/house/T53.webp differ diff --git a/cards/house/T54.webp b/cards/house/T54.webp new file mode 100644 index 0000000..3c91acd Binary files /dev/null and b/cards/house/T54.webp differ diff --git a/cards/house/T55.webp b/cards/house/T55.webp new file mode 100644 index 0000000..d8f6173 Binary files /dev/null and b/cards/house/T55.webp differ diff --git a/cards/house/T56.webp b/cards/house/T56.webp new file mode 100644 index 0000000..32860ec Binary files /dev/null and b/cards/house/T56.webp differ diff --git a/cards/house/T57.webp b/cards/house/T57.webp new file mode 100644 index 0000000..15099bb Binary files /dev/null and b/cards/house/T57.webp differ diff --git a/cards/house/T58.webp b/cards/house/T58.webp new file mode 100644 index 0000000..c1738b1 Binary files /dev/null and b/cards/house/T58.webp differ diff --git a/cards/house/T59.webp b/cards/house/T59.webp new file mode 100644 index 0000000..a945fed Binary files /dev/null and b/cards/house/T59.webp differ diff --git a/cards/house/T6.webp b/cards/house/T6.webp new file mode 100644 index 0000000..63e2059 Binary files /dev/null and b/cards/house/T6.webp differ diff --git a/cards/house/T60.webp b/cards/house/T60.webp new file mode 100644 index 0000000..3ebb2cc Binary files /dev/null and b/cards/house/T60.webp differ diff --git a/cards/house/T61.webp b/cards/house/T61.webp new file mode 100644 index 0000000..6183c95 Binary files /dev/null and b/cards/house/T61.webp differ diff --git a/cards/house/T62.webp b/cards/house/T62.webp new file mode 100644 index 0000000..74c3e6c Binary files /dev/null and b/cards/house/T62.webp differ diff --git a/cards/house/T63.webp b/cards/house/T63.webp new file mode 100644 index 0000000..71d53fd Binary files /dev/null and b/cards/house/T63.webp differ diff --git a/cards/house/T64.webp b/cards/house/T64.webp new file mode 100644 index 0000000..2170367 Binary files /dev/null and b/cards/house/T64.webp differ diff --git a/cards/house/T65.webp b/cards/house/T65.webp new file mode 100644 index 0000000..f225eaf Binary files /dev/null and b/cards/house/T65.webp differ diff --git a/cards/house/T66.webp b/cards/house/T66.webp new file mode 100644 index 0000000..7c63e5f Binary files /dev/null and b/cards/house/T66.webp differ diff --git a/cards/house/T67.webp b/cards/house/T67.webp new file mode 100644 index 0000000..a91ae19 Binary files /dev/null and b/cards/house/T67.webp differ diff --git a/cards/house/T68.webp b/cards/house/T68.webp new file mode 100644 index 0000000..3842fba Binary files /dev/null and b/cards/house/T68.webp differ diff --git a/cards/house/T69.webp b/cards/house/T69.webp new file mode 100644 index 0000000..5ad0159 Binary files /dev/null and b/cards/house/T69.webp differ diff --git a/cards/house/T7.webp b/cards/house/T7.webp new file mode 100644 index 0000000..f678bef Binary files /dev/null and b/cards/house/T7.webp differ diff --git a/cards/house/T70.webp b/cards/house/T70.webp new file mode 100644 index 0000000..1dc2a84 Binary files /dev/null and b/cards/house/T70.webp differ diff --git a/cards/house/T71.webp b/cards/house/T71.webp new file mode 100644 index 0000000..acaaedc Binary files /dev/null and b/cards/house/T71.webp differ diff --git a/cards/house/T72.webp b/cards/house/T72.webp new file mode 100644 index 0000000..9993529 Binary files /dev/null and b/cards/house/T72.webp differ diff --git a/cards/house/T73.webp b/cards/house/T73.webp new file mode 100644 index 0000000..32863f5 Binary files /dev/null and b/cards/house/T73.webp differ diff --git a/cards/house/T74.webp b/cards/house/T74.webp new file mode 100644 index 0000000..fafa643 Binary files /dev/null and b/cards/house/T74.webp differ diff --git a/cards/house/T75.webp b/cards/house/T75.webp new file mode 100644 index 0000000..966c0fa Binary files /dev/null and b/cards/house/T75.webp differ diff --git a/cards/house/T76.webp b/cards/house/T76.webp new file mode 100644 index 0000000..305de2f Binary files /dev/null and b/cards/house/T76.webp differ diff --git a/cards/house/T77.webp b/cards/house/T77.webp new file mode 100644 index 0000000..ff295e5 Binary files /dev/null and b/cards/house/T77.webp differ diff --git a/cards/house/T78.webp b/cards/house/T78.webp new file mode 100644 index 0000000..ac70fc3 Binary files /dev/null and b/cards/house/T78.webp differ diff --git a/cards/house/T79.webp b/cards/house/T79.webp new file mode 100644 index 0000000..15cc4b2 Binary files /dev/null and b/cards/house/T79.webp differ diff --git a/cards/house/T8.webp b/cards/house/T8.webp new file mode 100644 index 0000000..dd7979e Binary files /dev/null and b/cards/house/T8.webp differ diff --git a/cards/house/T80.webp b/cards/house/T80.webp new file mode 100644 index 0000000..4401e30 Binary files /dev/null and b/cards/house/T80.webp differ diff --git a/cards/house/T9.webp b/cards/house/T9.webp new file mode 100644 index 0000000..3f92f49 Binary files /dev/null and b/cards/house/T9.webp differ diff --git a/dock/Sheep-Service.dbml b/dock/Sheep-Service.dbml index eecb89e..ee06d4a 100644 --- a/dock/Sheep-Service.dbml +++ b/dock/Sheep-Service.dbml @@ -7,28 +7,25 @@ Table sheeps [note: 'Таблиця вісників'] { name text [note: 'Імʼя вісника'] icon text [note: 'Піктограмка вісника'] uuid text [note: 'Код доступа'] + uuid_manager text [note: 'Код доступа'] appointment text [default: 'lamb', note: 'Вид призначення'] - can_view_stand integer [default: 0, note: 'Доступ до перегляду графіку стендів'] - can_view_schedule integer [default: 0, note: 'Доступ до перегляду графіку зібрань'] - can_view_territory integer [default: 0, note: 'Доступ до перегляду особистих та групових територій'] + mode integer [default: 0,note: 'Тип користувача чи адміністратора'] + mode_title text [default: 'Користувач', note: 'Назва типу користувача чи адміністратора'] } -Table administrators [note: 'Таблиця адміністраторів'] { +Table possibilities [note: 'Таблиця можливостей користувачів'] { id integer [primary key] sheep_id integer [note: 'ID вісника'] - uuid text [note: 'Код доступа'] -} - -Table moderators [note: 'Таблиця модераторів'] { - id integer [primary key] - sheep_id integer [note: 'ID вісника'] - uuid text [note: 'Код доступа'] can_add_sheeps integer [default: 0, note: 'Доступ до додавання вісників'] + can_view_sheeps integer [default: 0, note: 'Доступ до перегляду списку вісників'] can_add_territory integer [default: 0, note: 'Доступ до створення територій'] + can_view_territory integer [default: 0, note: 'Доступ до перегляду особистих та групових територій'] can_manager_territory integer [default: 0, note: 'Доступ до призначання територій'] can_add_stand integer [default: 0, note: 'Доступ до створення стендів'] + can_view_stand integer [default: 0, note: 'Доступ до перегляду графіку стендів'] can_manager_stand integer [default: 0, note: 'Доступ до редагування графіку стендів'] - can_add_schedule integer [default: 0, note: 'Доступ до створення графіку зібрань'] + can_add_schedule integer [default: 0, note: 'Доступ до створення графіку зібрань'] + can_view_schedule integer [default: 0, note: 'Доступ до перегляду графіку зібрань'] } Table groups [note: 'Таблиця теократичних груп'] { @@ -43,9 +40,14 @@ Table subscription [note: 'Таблиця токенів вісників для token text [note: 'Токен пристрою'] } +Table badges [note: 'Таблиця кількісті непрочитаних повідомлень'] { + id integer [primary key] + sheep_id integer [note: 'ID вісника'] + quantity integer [note: 'Кількість непрочитаних повідомлень'] +} + Table house [note: 'Таблиця багатоповерхових будинків'] { id integer [primary key] - group_id integer [note: 'ID групи'] title text [note: 'Вулиця будинку'] number text [note: 'Номер будинку'] points text [default: '[]', note: 'Масив точок будинку OSM'] @@ -79,7 +81,7 @@ Table entrance_history [note: 'Таблиця історії вісників я date_start timestamp [note: 'Початок опрацювання'] date_end timestamp [note: 'Кінець опрацювання'] group_id integer [note: 'Група яка опрацювувала'] - sheep_id text [note: 'ID вісника що зробив зміни'] + sheep_id integer [note: 'ID вісника що зробив зміни'] working integer [default: 0, note: 'Статус опрацювання'] } @@ -91,13 +93,13 @@ Table apartments [note: 'Таблиця квартир'] { floors_number integer [note: 'Номер поверху'] status integer [note: 'Статус квартири'] description text [note: 'Коментар до квартири'] - sheep_id text [note: 'ID вісника що зробив зміни'] + sheep_id integer [note: 'ID вісника що зробив зміни'] updated_at timestamp [note: 'Дата зміни історії квартири'] } Table apartments_history [note: 'Таблиця історії опрацьовування квартир'] { id integer [primary key] - sheep_id text [note: 'ID вісника що зробив зміни'] + sheep_id integer [note: 'ID вісника що зробив зміни'] apartments_id integer [note: 'ID квартири'] status integer [note: 'Статус квартири'] description text [note: 'Коментар до квартири'] @@ -106,7 +108,6 @@ Table apartments_history [note: 'Таблиця історії опрацьов Table homestead [note: 'Таблиця житлових районів'] { id integer [primary key] - group_id integer [note: 'ID групи'] title text [note: 'Житловий район'] number text [note: 'Номер житловогу району'] points text [default: '[]', note: 'Масив точок житловогу району OSM'] @@ -126,7 +127,7 @@ Table homestead_history [note: 'Таблиця історії вісників date_start timestamp [note: 'Початок опрацювання'] date_end timestamp [note: 'Кінець опрацювання'] group_id integer [note: 'Група яка опрацювувала'] - sheep_id text [note: 'ID вісника що зробив зміни'] + sheep_id integer [note: 'ID вісника що зробив зміни'] working integer [default: 0, note: 'Статус опрацювання'] } @@ -135,7 +136,7 @@ Table meetings_schedule [note: 'Таблиця розкладу зібрань'] date timestamp [note: 'Дата зібрання'] type integer [note: 'Тип зібрання'] name text [note: 'Імʼя вісника що має завдання'] - sheep_id text [note: 'ID вісника що має завдання'] + sheep_id integer [note: 'ID вісника що має завдання'] title text [note: 'Номер пісні або назва промови'] number text [note: 'Номер пункту графіка'] } @@ -143,36 +144,50 @@ Table meetings_schedule [note: 'Таблиця розкладу зібрань'] Table stand_list [note: 'Таблиця місць розташування стенду та його налаштування'] { id integer [primary key] title text [note: 'Назва місця розташування стенду'] - hour_start integer [default: 10, note: 'Година початку служіння'] - hour_end integer [default: 16, note: 'Година закінчення служіння'] + geo text [default: '[]', note: 'Точка встановлення стенду на мапі'] + hour_start integer [default: 9, note: 'Година початку служіння'] + hour_end integer [default: 18, note: 'Година закінчення служіння'] quantity_sheep integer [default: 2, note: 'Кількість вісників, що можуть стояти одночасно'] week_days text [default: '[0, 1, 2, 3, 4, 5, 6]', note: 'Дні тижня, на яких стоїть стенд'] + processing_time real [default: 1, note: 'Час тривалості зміни вісників'] + status bool [default: false, note: 'Активація чи деактивація стенду'] + updated_at timestamp [note: 'Дата зміни запису'] } Table stand_schedule [note: 'Таблиця записів служіння зі стендом'] { id integer [primary key] - stand integer [note: 'ID стенду'] + stand_id integer [note: 'ID стенду'] date timestamp [note: 'Дата служіння зі стендом'] + sheep_id integer [note: 'ID вісника'] hour integer [note: 'Година запису'] - sheep_id text [note: 'ID вісника'] number_sheep text [note: 'Номер вісника, що одночасно стоїть'] updated_at timestamp [note: 'Дата зміни запису'] } +Table stand_schedule_history [note: 'Таблиця записів служіння зі стендом'] { + id integer [primary key] + stand_schedule_id integer [note: 'ID стенду'] + date timestamp [note: 'Дата служіння зі стендом'] + sheep_id integer [note: 'ID вісника'] + hour integer [note: 'Година запису'] + number_sheep text [note: 'Номер вісника, що одночасно стоїть'] + created_at timestamp [note: 'Дата зміни запису'] +} -Ref: sheeps.id - administrators.sheep_id // one-to-one -Ref: sheeps.id - moderators.sheep_id // one-to-one +Ref: sheeps.id - possibilities.sheep_id // one-to-one Ref: sheeps.id < apartments_history.sheep_id // one-to-many Ref: sheeps.id < apartments.sheep_id // one-to-many Ref: sheeps.id < subscription.sheep_id // one-to-many +Ref: sheeps.id < badges.sheep_id // one-to-many Ref: sheeps.id < homestead_history.sheep_id // one-to-many Ref: sheeps.id < entrance_history.sheep_id // one-to-many Ref: sheeps.id < meetings_schedule.sheep_id // one-to-many Ref: sheeps.id < stand_schedule.sheep_id // one-to-many +Ref: sheeps.id < stand_schedule_history.sheep_id // one-to-many Ref: groups.group_number < sheeps.group_id // one-to-many -Ref: groups.group_number < house.group_id // one-to-many -Ref: groups.group_number < homestead.group_id // one-to-many +Ref: groups.group_number < entrance_history.group_id // one-to-many +Ref: groups.group_number < homestead_history.group_id // one-to-many Ref: house.id < entrance.house_id // one-to-many @@ -183,4 +198,5 @@ Ref: entrance.id < apartments.entrance_id // one-to-many Ref: apartments.id < apartments_history.apartments_id // one-to-many -Ref: stand_list.id < stand_schedule.stand // one-to-many \ No newline at end of file +Ref: stand_list.id < stand_schedule.stand_id // one-to-many +Ref: stand_schedule.id < stand_schedule_history.stand_schedule_id // one-to-many \ No newline at end of file diff --git a/dock/Sheep-Service.pdf b/dock/Sheep-Service.pdf index 5b1bdc4..b4a4eb6 100644 --- a/dock/Sheep-Service.pdf +++ b/dock/Sheep-Service.pdf @@ -13,7 +13,7 @@ endobj 4 0 obj << -/Length 191373 +/Length 306025 >> stream 0.200025 w @@ -546,83 +546,83 @@ Q q 1. 0. 0. -1. 0. 1080. cm q -1. 0. 0. 1. 192.8316777393960137 50. cm +1. 0. 0. 1. 397.6909832336280033 50. cm 1. w 0. g q 1. 0. 0. 1. 0. 0. cm -0. 0. 1534.3366445212079725 980. re +0. 0. 1124.6180335327439934 980. re W n q q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -335.7021471261894021 142. 211.3657344736432435 445. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +295.4100038751109878 310. 168.0899860491058462 461. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 335.7021471261894021 142. cm -106.9912923259820587 50. m -102.9912923259820587 50. l +1. 0. 0. 1. 295.4100038751109878 310. cm +129.0899860491058462 50. m +125.0899860491058462 50. l 32. 50. l 25.3333333333333357 50. 22. 53.3333333333333357 22. 60. c -22. 408. l -22. 414.6666666666666856 25.3333333333333357 418. 32. 418. c -168.3657344736432435 418. l -178.3657344736432435 418. l -178.3657344736432435 418. l -168.3657344736432435 418. l -32. 418. l -25.3333333333333357 418. 22. 414.6666666666666856 22. 408. c +22. 424. l +22. 430.6666666666666856 25.3333333333333357 434. 32. 434. c +53.0899860491058462 434. l +63.0899860491058462 434. l +63.0899860491058462 434. l +53.0899860491058462 434. l +32. 434. l +25.3333333333333357 434. 22. 430.6666666666666856 22. 424. c 22. 60. l 22. 53.3333333333333357 25.3333333333333357 50. 32. 50. c -102.9912923259820587 50. l -106.9912923259820587 50. l +125.0899860491058462 50. l +129.0899860491058462 50. l h -112.9912923259820587 50. m -122.9912923259820587 50. l -178.3657344736432435 418. m -188.3657344736432435 418. l -109.9912923259820587 50. m -112.9912923259820587 50. m -112.9336481671917483 50.5852709660483839 l -112.7629309235159241 51.1480502970952671 l -112.485701162889697 51.6667106990588039 l -112.1126126695417042 52.1213203435596455 l -111.6580030250408697 52.4944088369076383 l -111.1393426230773258 52.7716385975338582 l -110.5765632920304427 52.9423558412096895 l -109.9912923259820587 53. l -109.4060213599336748 52.9423558412096895 l -108.8432420288867917 52.7716385975338582 l -108.3245816269232478 52.4944088369076383 l -107.8699719824224132 52.1213203435596455 l -107.4968834890744205 51.6667106990588039 l -107.2196537284481934 51.1480502970952671 l -107.0489364847723692 50.5852709660483839 l -106.9912923259820587 50. l -107.0489364847723692 49.4147290339516161 l -107.2196537284481934 48.8519497029047329 l -107.4968834890744205 48.3332893009411961 l -107.8699719824224132 47.8786796564403545 l -108.3245816269232478 47.5055911630923617 l -108.8432420288867917 47.2283614024661418 l -109.4060213599336748 47.0576441587903105 l -109.9912923259820587 47. l -110.5765632920304427 47.0576441587903105 l -111.1393426230773258 47.2283614024661418 l -111.6580030250408697 47.5055911630923617 l -112.1126126695417042 47.8786796564403545 l -112.485701162889697 48.3332893009411961 l -112.7629309235159241 48.8519497029047258 l -112.9336481671917483 49.4147290339516161 l -112.9912923259820587 50. l -178.3657344736432435 414. m -178.3657344736432435 422. l +135.0899860491058462 50. m +145.0899860491058462 50. l +63.0899860491058462 434. m +73.0899860491058462 434. l +132.0899860491058462 50. m +135.0899860491058462 50. m +135.0323418903155357 50.5852709660483839 l +134.8616246466397115 51.1480502970952671 l +134.5843948860134844 51.6667106990588039 l +134.2113063926654775 52.1213203435596455 l +133.7566967481646429 52.4944088369076383 l +133.2380363462011132 52.7716385975338582 l +132.6752570151542443 52.9423558412096895 l +132.0899860491058462 53. l +131.5047150830574481 52.9423558412096895 l +130.9419357520105791 52.7716385975338582 l +130.4232753500470494 52.4944088369076383 l +129.9686657055462149 52.1213203435596455 l +129.5955772121982079 51.6667106990588039 l +129.3183474515719809 51.1480502970952671 l +129.1476302078961567 50.5852709660483839 l +129.0899860491058462 50. l +129.1476302078961567 49.4147290339516161 l +129.3183474515719809 48.8519497029047329 l +129.5955772121982079 48.3332893009411961 l +129.9686657055462149 47.8786796564403545 l +130.4232753500470494 47.5055911630923617 l +130.9419357520105791 47.2283614024661418 l +131.5047150830574481 47.0576441587903105 l +132.0899860491058462 47. l +132.6752570151542443 47.0576441587903105 l +133.2380363462011132 47.2283614024661418 l +133.7566967481646429 47.5055911630923617 l +134.2113063926654775 47.8786796564403545 l +134.5843948860134844 48.3332893009411961 l +134.8616246466397115 48.8519497029047258 l +135.0323418903155357 49.4147290339516161 l +135.0899860491058462 50. l +63.0899860491058462 430. m +63.0899860491058462 438. l S Q q @@ -632,7 +632,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -644,7 +644,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 513.0629987873326172 555. Tm +1. 0. 0. -1. 357.495107111716834 739. Tm <0014> Tj ET Q @@ -653,177 +653,81 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -335.702147126189459 142. 145.9912923259819877 589. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +295.6137221377301216 310. 1444.5112438842177198 1002.1275585178767642 re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 335.702147126189459 142. cm -106.9912923259820019 50. m -102.9912923259820019 50. l -32. 50. l -25.3333333333333357 50. 22. 53.3333333333333357 22. 60. c -22. 552. l -22. 558.6666666666666288 25.3333333333333357 562. 32. 562. c -78.689222761946553 562. l -88.689222761946553 562. l -88.689222761946553 562. l -78.689222761946553 562. l -32. 562. l -25.3333333333333357 562. 22. 558.6666666666666288 22. 552. c -22. 60. l -22. 53.3333333333333357 25.3333333333333357 50. 32. 50. c -102.9912923259820019 50. l -106.9912923259820019 50. l -h -112.9912923259820019 50. m -122.9912923259820019 50. l -88.689222761946553 562. m -98.689222761946553 562. l -109.9912923259820019 50. m -112.9912923259820019 50. m -112.9336481671916914 50.5852709660483839 l -112.7629309235158672 51.1480502970952671 l -112.4857011628896402 51.6667106990588039 l -112.1126126695416474 52.1213203435596455 l -111.6580030250408129 52.4944088369076383 l -111.139342623077269 52.7716385975338582 l -110.5765632920303858 52.9423558412096895 l -109.9912923259820019 53. l -109.406021359933618 52.9423558412096895 l -108.8432420288867348 52.7716385975338582 l -108.3245816269231909 52.4944088369076383 l -107.8699719824223564 52.1213203435596455 l -107.4968834890743636 51.6667106990588039 l -107.2196537284481366 51.1480502970952671 l -107.0489364847723124 50.5852709660483839 l -106.9912923259820019 50. l -107.0489364847723124 49.4147290339516161 l -107.2196537284481366 48.8519497029047329 l -107.4968834890743636 48.3332893009411961 l -107.8699719824223564 47.8786796564403545 l -108.3245816269231909 47.5055911630923617 l -108.8432420288867348 47.2283614024661418 l -109.406021359933618 47.0576441587903105 l -109.9912923259820019 47. l -110.5765632920303858 47.0576441587903105 l -111.139342623077269 47.2283614024661418 l -111.6580030250408129 47.5055911630923617 l -112.1126126695416474 47.8786796564403545 l -112.4857011628896402 48.3332893009411961 l -112.7629309235158672 48.8519497029047258 l -112.9336481671916914 49.4147290339516161 l -112.9912923259820019 50. l -88.689222761946553 558. m -88.689222761946553 566. l -S -Q -q -/GS1 gs -q -BT -/F15 14 Tf -16.0999999999999979 TL -0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm -<0013001100110014> Tj -ET -Q -Q -q -/GS1 gs -q -BT -/F15 14 Tf -16.0999999999999979 TL -0. g -1. 0. 0. -1. 423.3864870756360119 699. Tm -<0014> Tj -ET -Q -Q -Q -Q -Q -q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -335.702147126189459 142. 1460.7500901791408978 1002.1275585178767642 re -W -n -q -q -q -0.61 0.61 0.64 RG -1. 0. 0. 1. 335.702147126189459 142. cm -106.9912923259820019 50. m -102.9912923259820019 50. l +1. 0. 0. 1. 295.6137221377301216 310. cm +128.8862677864867123 50. m +124.8862677864867123 50. l 32. 50. l 25.3333333333333357 50. 22. 53.3333333333333357 22. 60. c 22. 965.1275585178767642 l 22. 971.794225184543393 25.3333333333333357 975.1275585178767642 32. 975.1275585178767642 c -1427.7500901791408978 975.1275585178767642 l -1434.4167568458076403 975.1275585178767642 1437.7500901791408978 971.794225184543393 1437.7500901791408978 965.1275585178767642 c -1437.7500901791408978 436. l -1437.7500901791408978 429.3333333333333144 1434.4167568458076403 426. 1427.7500901791408978 426. c -1359.4144186041867215 426. l -1349.4144186041867215 426. l -1349.4144186041867215 426. l -1359.4144186041867215 426. l -1427.7500901791408978 426. l -1434.4167568458076403 426. 1437.7500901791408978 429.3333333333333144 1437.7500901791408978 436. c -1437.7500901791408978 965.1275585178767642 l -1437.7500901791408978 971.794225184543393 1434.4167568458076403 975.1275585178767642 1427.7500901791408978 975.1275585178767642 c +1411.5112438842177198 975.1275585178767642 l +1418.1779105508844623 975.1275585178767642 1421.5112438842177198 971.794225184543393 1421.5112438842177198 965.1275585178767642 c +1421.5112438842177198 436. l +1421.5112438842177198 429.3333333333333144 1418.1779105508844623 426. 1411.5112438842177198 426. c +1333.6964035669991517 426. l +1323.6964035669991517 426. l +1323.6964035669991517 426. l +1333.6964035669991517 426. l +1411.5112438842177198 426. l +1418.1779105508844623 426. 1421.5112438842177198 429.3333333333333144 1421.5112438842177198 436. c +1421.5112438842177198 965.1275585178767642 l +1421.5112438842177198 971.794225184543393 1418.1779105508844623 975.1275585178767642 1411.5112438842177198 975.1275585178767642 c 32. 975.1275585178767642 l 25.3333333333333357 975.1275585178767642 22. 971.794225184543393 22. 965.1275585178767642 c 22. 60. l 22. 53.3333333333333357 25.3333333333333357 50. 32. 50. c -102.9912923259820019 50. l -106.9912923259820019 50. l +124.8862677864867123 50. l +128.8862677864867123 50. l h -112.9912923259820019 50. m -122.9912923259820019 50. l -1349.4144186041867215 426. m -1339.4144186041867215 426. l -109.9912923259820019 50. m -112.9912923259820019 50. m -112.9336481671916914 50.5852709660483839 l -112.7629309235158672 51.1480502970952671 l -112.4857011628896402 51.6667106990588039 l -112.1126126695416474 52.1213203435596455 l -111.6580030250408129 52.4944088369076383 l -111.139342623077269 52.7716385975338582 l -110.5765632920303858 52.9423558412096895 l -109.9912923259820019 53. l -109.406021359933618 52.9423558412096895 l -108.8432420288867348 52.7716385975338582 l -108.3245816269231909 52.4944088369076383 l -107.8699719824223564 52.1213203435596455 l -107.4968834890743636 51.6667106990588039 l -107.2196537284481366 51.1480502970952671 l -107.0489364847723124 50.5852709660483839 l -106.9912923259820019 50. l -107.0489364847723124 49.4147290339516161 l -107.2196537284481366 48.8519497029047329 l -107.4968834890743636 48.3332893009411961 l -107.8699719824223564 47.8786796564403545 l -108.3245816269231909 47.5055911630923617 l -108.8432420288867348 47.2283614024661418 l -109.406021359933618 47.0576441587903105 l -109.9912923259820019 47. l -110.5765632920303858 47.0576441587903105 l -111.139342623077269 47.2283614024661418 l -111.6580030250408129 47.5055911630923617 l -112.1126126695416474 47.8786796564403545 l -112.4857011628896402 48.3332893009411961 l -112.7629309235158672 48.8519497029047258 l -112.9336481671916914 49.4147290339516161 l -112.9912923259820019 50. l -1339.4144186041867215 422. m -1348.4144186041867215 426. l -1339.4144186041867215 430. l +134.8862677864867123 50. m +144.8862677864867123 50. l +1323.6964035669991517 426. m +1313.6964035669991517 426. l +131.8862677864867123 50. m +134.8862677864867123 50. m +134.8286236276964019 50.5852709660483839 l +134.6579063840205777 51.1480502970952671 l +134.3806766233943506 51.6667106990588039 l +134.0075881300463436 52.1213203435596455 l +133.5529784855455091 52.4944088369076383 l +133.0343180835819794 52.7716385975338582 l +132.4715387525351105 52.9423558412096895 l +131.8862677864867123 53. l +131.3009968204383142 52.9423558412096895 l +130.7382174893914453 52.7716385975338582 l +130.2195570874279156 52.4944088369076383 l +129.7649474429270811 52.1213203435596455 l +129.3918589495790741 51.6667106990588039 l +129.114629188952847 51.1480502970952671 l +128.9439119452770228 50.5852709660483839 l +128.8862677864867123 50. l +128.9439119452770228 49.4147290339516161 l +129.114629188952847 48.8519497029047329 l +129.3918589495790741 48.3332893009411961 l +129.7649474429270811 47.8786796564403545 l +130.2195570874279156 47.5055911630923617 l +130.7382174893914453 47.2283614024661418 l +131.3009968204383142 47.0576441587903105 l +131.8862677864867123 47. l +132.4715387525351105 47.0576441587903105 l +133.0343180835819794 47.2283614024661418 l +133.5529784855455091 47.5055911630923617 l +134.0075881300463436 47.8786796564403545 l +134.3806766233943506 48.3332893009411961 l +134.6579063840205777 48.8519497029047258 l +134.8286236276964019 49.4147290339516161 l +134.8862677864867123 50. l +1313.6964035669991517 422. m +1322.6964035669991517 426. l +1313.6964035669991517 430. l S Q q @@ -833,7 +737,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -845,7 +749,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1678.1165657303761236 563. Tm +1. 0. 0. -1. 1612.3101257047292165 731. Tm <000d> Tj ET Q @@ -854,81 +758,81 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -335.7021471261896295 142. 1137.4567517083128223 1002.1275585178767642 re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +295.6137221377301216 310. 1443.4514079519024108 1002.1275585178767642 re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 335.7021471261896295 142. cm -106.9912923259818314 50. m -102.9912923259818314 50. l +1. 0. 0. 1. 295.6137221377301216 310. cm +128.8862677864867123 50. m +124.8862677864867123 50. l 32. 50. l 25.3333333333333357 50. 22. 53.3333333333333357 22. 60. c 22. 965.1275585178767642 l 22. 971.794225184543393 25.3333333333333357 975.1275585178767642 32. 975.1275585178767642 c -1037.4480179582826622 975.1275585178767642 l -1044.1146846249494047 975.1275585178767642 1047.4480179582826622 971.794225184543393 1047.4480179582826622 965.1275585178767642 c -1047.4480179582826622 892. l -1047.4480179582826622 885.3333333333333712 1050.7813512916159198 882. 1057.4480179582826622 882. c -1094.4567517083128223 882. l -1104.4567517083128223 882. l -1104.4567517083128223 882. l -1094.4567517083128223 882. l -1057.4480179582826622 882. l -1050.7813512916159198 882. 1047.4480179582826622 885.3333333333333712 1047.4480179582826622 892. c -1047.4480179582826622 965.1275585178767642 l -1047.4480179582826622 971.794225184543393 1044.1146846249494047 975.1275585178767642 1037.4480179582826622 975.1275585178767642 c +1410.4514079519024108 975.1275585178767642 l +1417.1180746185691532 975.1275585178767642 1420.4514079519024108 971.794225184543393 1420.4514079519024108 965.1275585178767642 c +1420.4514079519024108 892. l +1420.4514079519024108 885.3333333333333712 1417.1180746185691532 882. 1410.4514079519024108 882. c +1367.1200843273754799 882. l +1357.1200843273754799 882. l +1357.1200843273754799 882. l +1367.1200843273754799 882. l +1410.4514079519024108 882. l +1417.1180746185691532 882. 1420.4514079519024108 885.3333333333333712 1420.4514079519024108 892. c +1420.4514079519024108 965.1275585178767642 l +1420.4514079519024108 971.794225184543393 1417.1180746185691532 975.1275585178767642 1410.4514079519024108 975.1275585178767642 c 32. 975.1275585178767642 l 25.3333333333333357 975.1275585178767642 22. 971.794225184543393 22. 965.1275585178767642 c 22. 60. l 22. 53.3333333333333357 25.3333333333333357 50. 32. 50. c -102.9912923259818314 50. l -106.9912923259818314 50. l +124.8862677864867123 50. l +128.8862677864867123 50. l h -112.9912923259818314 50. m -122.9912923259818314 50. l -1104.4567517083128223 882. m -1114.4567517083128223 882. l -109.9912923259818314 50. m -112.9912923259818314 50. m -112.9336481671915209 50.5852709660483839 l -112.7629309235156967 51.1480502970952671 l -112.4857011628894696 51.6667106990588039 l -112.1126126695414769 52.1213203435596455 l -111.6580030250406423 52.4944088369076383 l -111.1393426230770984 52.7716385975338582 l -110.5765632920302153 52.9423558412096895 l -109.9912923259818314 53. l -109.4060213599334475 52.9423558412096895 l -108.8432420288865643 52.7716385975338582 l -108.3245816269230204 52.4944088369076383 l -107.8699719824221859 52.1213203435596455 l -107.4968834890741931 51.6667106990588039 l -107.219653728447966 51.1480502970952671 l -107.0489364847721419 50.5852709660483839 l -106.9912923259818314 50. l -107.0489364847721419 49.4147290339516161 l -107.219653728447966 48.8519497029047329 l -107.4968834890741931 48.3332893009411961 l -107.8699719824221859 47.8786796564403545 l -108.3245816269230204 47.5055911630923617 l -108.8432420288865643 47.2283614024661418 l -109.4060213599334475 47.0576441587903105 l -109.9912923259818314 47. l -110.5765632920302153 47.0576441587903105 l -111.1393426230770984 47.2283614024661418 l -111.6580030250406423 47.5055911630923617 l -112.1126126695414769 47.8786796564403545 l -112.4857011628894696 48.3332893009411961 l -112.7629309235156967 48.8519497029047258 l -112.9336481671915209 49.4147290339516161 l -112.9912923259818314 50. l -1114.4567517083128223 878. m -1105.4567517083128223 882. l -1114.4567517083128223 886. l +134.8862677864867123 50. m +144.8862677864867123 50. l +1357.1200843273754799 882. m +1347.1200843273754799 882. l +131.8862677864867123 50. m +134.8862677864867123 50. m +134.8286236276964019 50.5852709660483839 l +134.6579063840205777 51.1480502970952671 l +134.3806766233943506 51.6667106990588039 l +134.0075881300463436 52.1213203435596455 l +133.5529784855455091 52.4944088369076383 l +133.0343180835819794 52.7716385975338582 l +132.4715387525351105 52.9423558412096895 l +131.8862677864867123 53. l +131.3009968204383142 52.9423558412096895 l +130.7382174893914453 52.7716385975338582 l +130.2195570874279156 52.4944088369076383 l +129.7649474429270811 52.1213203435596455 l +129.3918589495790741 51.6667106990588039 l +129.114629188952847 51.1480502970952671 l +128.9439119452770228 50.5852709660483839 l +128.8862677864867123 50. l +128.9439119452770228 49.4147290339516161 l +129.114629188952847 48.8519497029047329 l +129.3918589495790741 48.3332893009411961 l +129.7649474429270811 47.8786796564403545 l +130.2195570874279156 47.5055911630923617 l +130.7382174893914453 47.2283614024661418 l +131.3009968204383142 47.0576441587903105 l +131.8862677864867123 47. l +132.4715387525351105 47.0576441587903105 l +133.0343180835819794 47.2283614024661418 l +133.5529784855455091 47.5055911630923617 l +134.0075881300463436 47.8786796564403545 l +134.3806766233943506 48.3332893009411961 l +134.6579063840205777 48.8519497029047258 l +134.8286236276964019 49.4147290339516161 l +134.8862677864867123 50. l +1347.1200843273754799 878. m +1356.1200843273754799 882. l +1347.1200843273754799 886. l S Q q @@ -938,7 +842,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -950,7 +854,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1439.4479613345024518 1019. Tm +1. 0. 0. -1. 1645.7338064651055447 1187. Tm <000d> Tj ET Q @@ -959,73 +863,73 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -335.6618689000528661 30. 211.4060126997797511 189. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +296.3437237687688821 198. 186.1809013991668849 189. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 335.6618689000528661 30. cm -107.0315705521185947 162. m -103.0315705521185947 162. l +1. 0. 0. 1. 296.3437237687688821 198. cm +128.1562661554479519 162. m +124.1562661554479519 162. l 32. 162. l 25.3333333333333357 162. 22. 158.6666666666666572 22. 152. c 22. 60. l 22. 53.3333333333333357 25.3333333333333357 50. 32. 50. c -168.4060126997797511 50. l -178.4060126997797511 50. l -178.4060126997797511 50. l -168.4060126997797511 50. l +143.1809013991668849 50. l +153.1809013991668849 50. l +153.1809013991668849 50. l +143.1809013991668849 50. l 32. 50. l 25.3333333333333357 50. 22. 53.3333333333333357 22. 60. c 22. 152. l 22. 158.6666666666666572 25.3333333333333357 162. 32. 162. c -103.0315705521185947 162. l -107.0315705521185947 162. l +124.1562661554479519 162. l +128.1562661554479519 162. l h -113.0315705521185947 162. m -123.0315705521185947 162. l -178.4060126997797511 50. m -188.4060126997797511 50. l -110.0315705521185947 162. m -113.0315705521185947 162. m -112.9739263933282842 162.5852709660483981 l -112.80320914965246 163.1480502970952671 l -112.525979389026233 163.6667106990587968 l -112.1528908956782402 164.1213203435596313 l -111.6982812511774057 164.4944088369076383 l -111.1796208492138618 164.7716385975338653 l -110.6168415181669786 164.9423558412096895 l -110.0315705521185947 165. l -109.4462995860702108 164.9423558412096895 l -108.8835202550233276 164.7716385975338653 l -108.3648598530597837 164.4944088369076383 l -107.9102502085589492 164.1213203435596313 l -107.5371617152109565 163.6667106990587968 l -107.2599319545847294 163.1480502970952671 l -107.0892147109089052 162.5852709660483981 l -107.0315705521185947 162. l -107.0892147109089052 161.4147290339516019 l -107.2599319545847294 160.8519497029047329 l -107.5371617152109565 160.3332893009412032 l -107.9102502085589492 159.8786796564403687 l -108.3648598530597837 159.5055911630923617 l -108.8835202550233276 159.2283614024661347 l -109.4462995860702108 159.0576441587903105 l -110.0315705521185947 159. l -110.6168415181669786 159.0576441587903105 l -111.1796208492138618 159.2283614024661347 l -111.6982812511774057 159.5055911630923617 l -112.1528908956782402 159.8786796564403687 l -112.525979389026233 160.3332893009412032 l -112.80320914965246 160.8519497029047329 l -112.9739263933282842 161.4147290339516019 l -113.0315705521185947 162. l -188.4060126997797511 46. m -179.4060126997797511 50. l -188.4060126997797511 54. l +134.1562661554479519 162. m +144.1562661554479519 162. l +153.1809013991668849 50. m +163.1809013991668849 50. l +131.1562661554479519 162. m +134.1562661554479519 162. m +134.0986219966576414 162.5852709660483981 l +133.9279047529818172 163.1480502970952671 l +133.6506749923555901 163.6667106990587968 l +133.2775864990075831 164.1213203435596313 l +132.8229768545067486 164.4944088369076383 l +132.3043164525432189 164.7716385975338653 l +131.74153712149635 164.9423558412096895 l +131.1562661554479519 165. l +130.5709951893995537 164.9423558412096895 l +130.0082158583526848 164.7716385975338653 l +129.4895554563891551 164.4944088369076383 l +129.0349458118883206 164.1213203435596313 l +128.6618573185403136 163.6667106990587968 l +128.3846275579140865 163.1480502970952671 l +128.2139103142382623 162.5852709660483981 l +128.1562661554479519 162. l +128.2139103142382623 161.4147290339516019 l +128.3846275579140865 160.8519497029047329 l +128.6618573185403136 160.3332893009412032 l +129.0349458118883206 159.8786796564403687 l +129.4895554563891551 159.5055911630923617 l +130.0082158583526848 159.2283614024661347 l +130.5709951893995537 159.0576441587903105 l +131.1562661554479519 159. l +131.74153712149635 159.0576441587903105 l +132.3043164525432189 159.2283614024661347 l +132.8229768545067486 159.5055911630923617 l +133.2775864990075831 159.8786796564403687 l +133.6506749923555901 160.3332893009412032 l +133.9279047529818172 160.8519497029047329 l +134.0986219966576414 161.4147290339516019 l +134.1562661554479519 162. l +163.1809013991668849 46. m +154.1809013991668849 50. l +163.1809013991668849 54. l S Q q @@ -1035,7 +939,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -1047,7 +951,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 513.3569440998326172 75. Tm +1. 0. 0. -1. 448.813687667935767 243. Tm <000d> Tj ET Q @@ -1056,81 +960,178 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -335.4958023744403022 142. 1070.240862710032161 1002.222944050892238 re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +295.7473432479283701 30. 185.9303618537704779 357. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 335.4958023744403022 142. cm -107.1976370777311587 50. m -103.1976370777311587 50. l +1. 0. 0. 1. 295.7473432479283701 30. cm +128.7526466762884638 330. m +124.7526466762884638 330. l +32. 330. l +25.3333333333333357 330. 22. 326.6666666666666856 22. 320. c +22. 60. l +22. 53.3333333333333357 25.3333333333333357 50. 32. 50. c +142.9303618537704779 50. l +152.9303618537704779 50. l +152.9303618537704779 50. l +142.9303618537704779 50. l +32. 50. l +25.3333333333333357 50. 22. 53.3333333333333357 22. 60. c +22. 320. l +22. 326.6666666666666856 25.3333333333333357 330. 32. 330. c +124.7526466762884638 330. l +128.7526466762884638 330. l +h +134.7526466762884638 330. m +144.7526466762884638 330. l +152.9303618537704779 50. m +162.9303618537704779 50. l +131.7526466762884638 330. m +134.7526466762884638 330. m +134.6950025174981533 330.5852709660483697 l +134.5242852738223291 331.1480502970952671 l +134.2470555131961021 331.6667106990587968 l +133.8739670198480951 332.1213203435596597 l +133.4193573753472606 332.4944088369076098 l +132.9006969733837309 332.7716385975338653 l +132.3379176423368619 332.9423558412096895 l +131.7526466762884638 333. l +131.1673757102400657 332.9423558412096895 l +130.6045963791931968 332.7716385975338653 l +130.0859359772296671 332.4944088369076098 l +129.6313263327288325 332.1213203435596597 l +129.2582378393808256 331.6667106990587968 l +128.9810080787545985 331.1480502970952671 l +128.8102908350787743 330.5852709660483697 l +128.7526466762884638 330. l +128.8102908350787743 329.4147290339516303 l +128.9810080787545985 328.8519497029047329 l +129.2582378393808256 328.3332893009412032 l +129.6313263327288325 327.8786796564403403 l +130.0859359772296671 327.5055911630923902 l +130.6045963791931968 327.2283614024661347 l +131.1673757102400657 327.0576441587903105 l +131.7526466762884638 327. l +132.3379176423368619 327.0576441587903105 l +132.9006969733837309 327.2283614024661347 l +133.4193573753472606 327.5055911630923902 l +133.8739670198480951 327.8786796564403403 l +134.2470555131961021 328.3332893009412032 l +134.5242852738223291 328.8519497029047329 l +134.6950025174981533 329.4147290339516303 l +134.7526466762884638 330. l +162.9303618537704779 46. m +153.9303618537704779 50. l +162.9303618537704779 54. l +S +Q +q +/GS1 gs +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 414.134755549216834 355. Tm +<0013001100110014> Tj +ET +Q +Q +q +/GS1 gs +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 447.966767601698848 75. Tm +<000d> Tj +ET +Q +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +295.6137221377301216 310. 1045.5796865148454344 1002.222944050892238 re +W +n +q +q +q +0.61 0.61 0.64 RG +1. 0. 0. 1. 295.6137221377301216 310. cm +128.8862677864867123 50. m +124.8862677864867123 50. l 32. 50. l 25.3333333333333357 50. 22. 53.3333333333333357 22. 60. c 22. 965.222944050892238 l 22. 971.8896107175588668 25.3333333333333357 975.222944050892238 32. 975.222944050892238 c -1037.240862710032161 975.222944050892238 l -1043.9075293766989034 975.222944050892238 1047.240862710032161 971.8896107175588668 1047.240862710032161 965.222944050892238 c -1047.240862710032161 726.5244837892142868 l -1047.240862710032161 719.8784679110113984 1043.9178547709307168 716.5554599719099542 1037.2718388927278284 716.5554599719099542 c -1027.3028150754234957 716.5554599719099542 l -1017.302815075423382 716.5554599719099542 l -1017.302815075423382 716.5554599719099542 l -1027.3028150754234957 716.5554599719099542 l -1037.2718388927278284 716.5554599719099542 l -1043.9178547709307168 716.5554599719099542 1047.240862710032161 719.8784679110113984 1047.240862710032161 726.5244837892142868 c -1047.240862710032161 965.222944050892238 l -1047.240862710032161 971.8896107175588668 1043.9075293766989034 975.222944050892238 1037.240862710032161 975.222944050892238 c +1012.5796865148454344 975.222944050892238 l +1019.2463531815120632 975.222944050892238 1022.5796865148454344 971.8896107175588668 1022.5796865148454344 965.222944050892238 c +1022.5796865148454344 726.5554599719099542 l +1022.5796865148454344 719.8887933052433254 1019.2463531815120632 716.5554599719099542 1012.5796865148454344 716.5554599719099542 c +1001.3276740364867692 716.5554599719099542 l +991.3276740364867692 716.5554599719099542 l +991.3276740364867692 716.5554599719099542 l +1001.3276740364867692 716.5554599719099542 l +1012.5796865148454344 716.5554599719099542 l +1019.2463531815120632 716.5554599719099542 1022.5796865148454344 719.8887933052433254 1022.5796865148454344 726.5554599719099542 c +1022.5796865148454344 965.222944050892238 l +1022.5796865148454344 971.8896107175588668 1019.2463531815120632 975.222944050892238 1012.5796865148454344 975.222944050892238 c 32. 975.222944050892238 l 25.3333333333333357 975.222944050892238 22. 971.8896107175588668 22. 965.222944050892238 c 22. 60. l 22. 53.3333333333333357 25.3333333333333357 50. 32. 50. c -103.1976370777311587 50. l -107.1976370777311587 50. l +124.8862677864867123 50. l +128.8862677864867123 50. l h -113.1976370777311587 50. m -123.1976370777311587 50. l -1017.302815075423382 716.5554599719099542 m -1007.302815075423382 716.5554599719099542 l -110.1976370777311587 50. m -113.1976370777311587 50. m -113.1399929189408482 50.5852709660483839 l -112.969275675265024 51.1480502970952671 l -112.6920459146387969 51.6667106990588039 l -112.3189574212908042 52.1213203435596455 l -111.8643477767899697 52.4944088369076383 l -111.3456873748264258 52.7716385975338582 l -110.7829080437795426 52.9423558412096895 l -110.1976370777311587 53. l -109.6123661116827748 52.9423558412096895 l -109.0495867806358916 52.7716385975338582 l -108.5309263786723477 52.4944088369076383 l -108.0763167341715132 52.1213203435596455 l -107.7032282408235204 51.6667106990588039 l -107.4259984801972934 51.1480502970952671 l -107.2552812365214692 50.5852709660483839 l -107.1976370777311587 50. l -107.2552812365214692 49.4147290339516161 l -107.4259984801972934 48.8519497029047329 l -107.7032282408235204 48.3332893009411961 l -108.0763167341715132 47.8786796564403545 l -108.5309263786723477 47.5055911630923617 l -109.0495867806358916 47.2283614024661418 l -109.6123661116827748 47.0576441587903105 l -110.1976370777311587 47. l -110.7829080437795426 47.0576441587903105 l -111.3456873748264258 47.2283614024661418 l -111.8643477767899697 47.5055911630923617 l -112.3189574212908042 47.8786796564403545 l -112.6920459146387969 48.3332893009411961 l -112.969275675265024 48.8519497029047258 l -113.1399929189408482 49.4147290339516161 l -113.1976370777311587 50. l -1007.302815075423382 712.5554599719099542 m -1016.302815075423382 716.5554599719099542 l -1007.302815075423382 720.5554599719099542 l +134.8862677864867123 50. m +144.8862677864867123 50. l +991.3276740364867692 716.5554599719099542 m +981.3276740364867692 716.5554599719099542 l +131.8862677864867123 50. m +134.8862677864867123 50. m +134.8286236276964019 50.5852709660483839 l +134.6579063840205777 51.1480502970952671 l +134.3806766233943506 51.6667106990588039 l +134.0075881300463436 52.1213203435596455 l +133.5529784855455091 52.4944088369076383 l +133.0343180835819794 52.7716385975338582 l +132.4715387525351105 52.9423558412096895 l +131.8862677864867123 53. l +131.3009968204383142 52.9423558412096895 l +130.7382174893914453 52.7716385975338582 l +130.2195570874279156 52.4944088369076383 l +129.7649474429270811 52.1213203435596455 l +129.3918589495790741 51.6667106990588039 l +129.114629188952847 51.1480502970952671 l +128.9439119452770228 50.5852709660483839 l +128.8862677864867123 50. l +128.9439119452770228 49.4147290339516161 l +129.114629188952847 48.8519497029047329 l +129.3918589495790741 48.3332893009411961 l +129.7649474429270811 47.8786796564403545 l +130.2195570874279156 47.5055911630923617 l +130.7382174893914453 47.2283614024661418 l +131.3009968204383142 47.0576441587903105 l +131.8862677864867123 47. l +132.4715387525351105 47.0576441587903105 l +133.0343180835819794 47.2283614024661418 l +133.5529784855455091 47.5055911630923617 l +134.0075881300463436 47.8786796564403545 l +134.3806766233943506 48.3332893009411961 l +134.6579063840205777 48.8519497029047258 l +134.8286236276964019 49.4147290339516161 l +134.8862677864867123 50. l +981.3276740364867692 712.5554599719099542 m +990.3276740364867692 716.5554599719099542 l +981.3276740364867692 720.5554599719099542 l S Q q @@ -1140,7 +1141,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -1152,7 +1153,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1345.7986174498637411 853.5554599719099542 Tm +1. 0. 0. -1. 1279.941396174216834 1021.5554599719099542 Tm <000d> Tj ET Q @@ -1161,81 +1162,81 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -335.7021471261896863 142. 1460.7500901791408978 1002.1275585178768779 re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +295.6137221377301216 310. 1444.5112438842177198 1002.1275585178768779 re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 335.7021471261896863 142. cm -106.9912923259817745 50. m -102.9912923259817745 50. l +1. 0. 0. 1. 295.6137221377301216 310. cm +128.8862677864867123 50. m +124.8862677864867123 50. l 32. 50. l 25.3333333333333357 50. 22. 53.3333333333333357 22. 60. c 22. 965.1275585178768779 l 22. 971.7942251845435067 25.3333333333333357 975.1275585178768779 32. 975.1275585178768779 c -1427.7500901791408978 975.1275585178768779 l -1434.4167568458076403 975.1275585178768779 1437.7500901791408978 971.7942251845435067 1437.7500901791408978 965.1275585178768779 c -1437.7500901791408978 268. l -1437.7500901791408978 261.3333333333333144 1434.4167568458076403 258. 1427.7500901791408978 258. c -1355.0964703236741116 258. l -1345.0964703236741116 258. l -1345.0964703236741116 258. l -1355.0964703236741116 258. l -1427.7500901791408978 258. l -1434.4167568458076403 258. 1437.7500901791408978 261.3333333333333144 1437.7500901791408978 268. c -1437.7500901791408978 965.1275585178768779 l -1437.7500901791408978 971.7942251845435067 1434.4167568458076403 975.1275585178768779 1427.7500901791408978 975.1275585178768779 c +1411.5112438842177198 975.1275585178768779 l +1418.1779105508844623 975.1275585178768779 1421.5112438842177198 971.7942251845435067 1421.5112438842177198 965.1275585178768779 c +1421.5112438842177198 268. l +1421.5112438842177198 261.3333333333333144 1418.1779105508844623 258. 1411.5112438842177198 258. c +1318.1367560677367692 258. l +1308.1367560677367692 258. l +1308.1367560677367692 258. l +1318.1367560677367692 258. l +1411.5112438842177198 258. l +1418.1779105508844623 258. 1421.5112438842177198 261.3333333333333144 1421.5112438842177198 268. c +1421.5112438842177198 965.1275585178768779 l +1421.5112438842177198 971.7942251845435067 1418.1779105508844623 975.1275585178768779 1411.5112438842177198 975.1275585178768779 c 32. 975.1275585178768779 l 25.3333333333333357 975.1275585178768779 22. 971.7942251845435067 22. 965.1275585178768779 c 22. 60. l 22. 53.3333333333333357 25.3333333333333357 50. 32. 50. c -102.9912923259817745 50. l -106.9912923259817745 50. l +124.8862677864867123 50. l +128.8862677864867123 50. l h -112.9912923259817745 50. m -122.9912923259817745 50. l -1345.0964703236741116 258. m -1335.0964703236741116 258. l -109.9912923259817745 50. m -112.9912923259817745 50. m -112.933648167191464 50.5852709660483839 l -112.7629309235156398 51.1480502970952671 l -112.4857011628894128 51.6667106990588039 l -112.11261266954142 52.1213203435596455 l -111.6580030250405855 52.4944088369076383 l -111.1393426230770416 52.7716385975338582 l -110.5765632920301584 52.9423558412096895 l -109.9912923259817745 53. l -109.4060213599333906 52.9423558412096895 l -108.8432420288865075 52.7716385975338582 l -108.3245816269229636 52.4944088369076383 l -107.869971982422129 52.1213203435596455 l -107.4968834890741363 51.6667106990588039 l -107.2196537284479092 51.1480502970952671 l -107.048936484772085 50.5852709660483839 l -106.9912923259817745 50. l -107.048936484772085 49.4147290339516161 l -107.2196537284479092 48.8519497029047329 l -107.4968834890741363 48.3332893009411961 l -107.869971982422129 47.8786796564403545 l -108.3245816269229636 47.5055911630923617 l -108.8432420288865075 47.2283614024661418 l -109.4060213599333906 47.0576441587903105 l -109.9912923259817745 47. l -110.5765632920301584 47.0576441587903105 l -111.1393426230770416 47.2283614024661418 l -111.6580030250405855 47.5055911630923617 l -112.11261266954142 47.8786796564403545 l -112.4857011628894128 48.3332893009411961 l -112.7629309235156398 48.8519497029047258 l -112.933648167191464 49.4147290339516161 l -112.9912923259817745 50. l -1335.0964703236741116 254. m -1344.0964703236741116 258. l -1335.0964703236741116 262. l +134.8862677864867123 50. m +144.8862677864867123 50. l +1308.1367560677367692 258. m +1298.1367560677367692 258. l +131.8862677864867123 50. m +134.8862677864867123 50. m +134.8286236276964019 50.5852709660483839 l +134.6579063840205777 51.1480502970952671 l +134.3806766233943506 51.6667106990588039 l +134.0075881300463436 52.1213203435596455 l +133.5529784855455091 52.4944088369076383 l +133.0343180835819794 52.7716385975338582 l +132.4715387525351105 52.9423558412096895 l +131.8862677864867123 53. l +131.3009968204383142 52.9423558412096895 l +130.7382174893914453 52.7716385975338582 l +130.2195570874279156 52.4944088369076383 l +129.7649474429270811 52.1213203435596455 l +129.3918589495790741 51.6667106990588039 l +129.114629188952847 51.1480502970952671 l +128.9439119452770228 50.5852709660483839 l +128.8862677864867123 50. l +128.9439119452770228 49.4147290339516161 l +129.114629188952847 48.8519497029047329 l +129.3918589495790741 48.3332893009411961 l +129.7649474429270811 47.8786796564403545 l +130.2195570874279156 47.5055911630923617 l +130.7382174893914453 47.2283614024661418 l +131.3009968204383142 47.0576441587903105 l +131.8862677864867123 47. l +132.4715387525351105 47.0576441587903105 l +133.0343180835819794 47.2283614024661418 l +133.5529784855455091 47.5055911630923617 l +134.0075881300463436 47.8786796564403545 l +134.3806766233943506 48.3332893009411961 l +134.6579063840205777 48.8519497029047258 l +134.8286236276964019 49.4147290339516161 l +134.8862677864867123 50. l +1298.1367560677367692 254. m +1307.1367560677367692 258. l +1298.1367560677367692 262. l S Q q @@ -1245,7 +1246,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -1257,7 +1258,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1673.7986174498637411 395. Tm +1. 0. 0. -1. 1596.750478205466834 563. Tm <000d> Tj ET Q @@ -1266,70 +1267,70 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -266.7639494811136842 142. 214.9294899710577624 221. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +246.2695554320287101 310. 217.2304344921881238 221. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 266.7639494811136842 142. cm -175.9294899710577624 50. m -171.9294899710577624 50. l -100.9381976450758316 50. l -94.2715309784091602 50. 90.9381976450758316 53.3333333333333357 90.9381976450758316 60. c -90.9381976450758316 184. l -90.9381976450758316 190.6666666666666572 87.604864311742503 194. 80.9381976450758316 194. c +1. 0. 0. 1. 246.2695554320287101 310. cm +178.2304344921881238 50. m +174.2304344921881238 50. l +81.3441667057014115 50. l +74.6775000390347401 50. 71.3441667057014115 53.3333333333333357 71.3441667057014115 60. c +71.3441667057014115 184. l +71.3441667057014115 190.6666666666666572 68.0108333723680829 194. 61.3441667057014115 194. c 42. 194. l 32. 194. l 32. 194. l 42. 194. l -80.9381976450758316 194. l -87.604864311742503 194. 90.9381976450758316 190.6666666666666572 90.9381976450758316 184. c -90.9381976450758316 60. l -90.9381976450758316 53.3333333333333357 94.2715309784091602 50. 100.9381976450758316 50. c -171.9294899710577624 50. l -175.9294899710577624 50. l +61.3441667057014115 194. l +68.0108333723680829 194. 71.3441667057014115 190.6666666666666572 71.3441667057014115 184. c +71.3441667057014115 60. l +71.3441667057014115 53.3333333333333357 74.6775000390347401 50. 81.3441667057014115 50. c +174.2304344921881238 50. l +178.2304344921881238 50. l h -181.9294899710577624 50. m -191.9294899710577624 50. l +184.2304344921881238 50. m +194.2304344921881238 50. l 32. 194. m 22. 194. l -178.9294899710577624 50. m -181.9294899710577624 50. m -181.8718458122674519 50.5852709660483839 l -181.7011285685916278 51.1480502970952671 l -181.4238988079654007 51.6667106990588039 l -181.0508103146173937 52.1213203435596455 l -180.5962006701165592 52.4944088369076383 l -180.0775402681530295 52.7716385975338582 l -179.5147609371061606 52.9423558412096895 l -178.9294899710577624 53. l -178.3442190050093643 52.9423558412096895 l -177.7814396739624954 52.7716385975338582 l -177.2627792719989657 52.4944088369076383 l -176.8081696274981311 52.1213203435596455 l -176.4350811341501242 51.6667106990588039 l -176.1578513735238971 51.1480502970952671 l -175.9871341298480729 50.5852709660483839 l -175.9294899710577624 50. l -175.9871341298480729 49.4147290339516161 l -176.1578513735238971 48.8519497029047329 l -176.4350811341501242 48.3332893009411961 l -176.8081696274981311 47.8786796564403545 l -177.2627792719989657 47.5055911630923617 l -177.7814396739624954 47.2283614024661418 l -178.3442190050093643 47.0576441587903105 l -178.9294899710577624 47. l -179.5147609371061606 47.0576441587903105 l -180.0775402681530295 47.2283614024661418 l -180.5962006701165592 47.5055911630923617 l -181.0508103146173937 47.8786796564403545 l -181.4238988079654007 48.3332893009411961 l -181.7011285685916278 48.8519497029047258 l -181.8718458122674519 49.4147290339516161 l -181.9294899710577624 50. l +181.2304344921881238 50. m +184.2304344921881238 50. m +184.1727903333978134 50.5852709660483839 l +184.0020730897219892 51.1480502970952671 l +183.7248433290957621 51.6667106990588039 l +183.3517548357477551 52.1213203435596455 l +182.8971451912469206 52.4944088369076383 l +182.3784847892833909 52.7716385975338582 l +181.815705458236522 52.9423558412096895 l +181.2304344921881238 53. l +180.6451635261397257 52.9423558412096895 l +180.0823841950928568 52.7716385975338582 l +179.5637237931293271 52.4944088369076383 l +179.1091141486284926 52.1213203435596455 l +178.7360256552804856 51.6667106990588039 l +178.4587958946542585 51.1480502970952671 l +178.2880786509784343 50.5852709660483839 l +178.2304344921881238 50. l +178.2880786509784343 49.4147290339516161 l +178.4587958946542585 48.8519497029047329 l +178.7360256552804856 48.3332893009411961 l +179.1091141486284926 47.8786796564403545 l +179.5637237931293271 47.5055911630923617 l +180.0823841950928568 47.2283614024661418 l +180.6451635261397257 47.0576441587903105 l +181.2304344921881238 47. l +181.815705458236522 47.0576441587903105 l +182.3784847892833909 47.2283614024661418 l +182.8971451912469206 47.5055911630923617 l +183.3517548357477551 47.8786796564403545 l +183.7248433290957621 48.3332893009411961 l +184.0020730897219892 48.8519497029047258 l +184.1727903333978134 49.4147290339516161 l +184.2304344921881238 50. l 22. 190. m 31. 194. l 22. 198. l @@ -1342,7 +1343,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -1354,7 +1355,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 291.7639494811136842 331. Tm +1. 0. 0. -1. 271.2695554320287101 499. Tm <000d> Tj ET Q @@ -1363,73 +1364,73 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -267.1143544405584862 142. 214.5790850116129604 789. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +244.3657246714809617 310. 219.1342652527358723 837. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 267.1143544405584862 142. cm -175.5790850116129604 50. m -171.5790850116129604 50. l -100.5877926856308591 50. l -93.9211260189641877 50. 90.5877926856308591 53.3333333333333357 90.5877926856308591 60. c -90.5877926856308591 752. l -90.5877926856308591 758.6666666666666288 87.2544593522975305 762. 80.5877926856308591 762. c -42. 762. l -32. 762. l -32. 762. l -42. 762. l -80.5877926856308591 762. l -87.2544593522975305 762. 90.5877926856308591 758.6666666666666288 90.5877926856308591 752. c -90.5877926856308591 60. l -90.5877926856308591 53.3333333333333357 93.9211260189641877 50. 100.5877926856308591 50. c -171.5790850116129604 50. l -175.5790850116129604 50. l +1. 0. 0. 1. 244.3657246714809617 310. cm +180.1342652527358723 50. m +176.1342652527358723 50. l +83.24799746624916 50. l +76.5813307995824886 50. 73.24799746624916 53.3333333333333357 73.24799746624916 60. c +73.24799746624916 800. l +73.24799746624916 806.6666666666666288 69.9146641329158314 810. 63.24799746624916 810. c +42. 810. l +32. 810. l +32. 810. l +42. 810. l +63.24799746624916 810. l +69.9146641329158314 810. 73.24799746624916 806.6666666666666288 73.24799746624916 800. c +73.24799746624916 60. l +73.24799746624916 53.3333333333333357 76.5813307995824886 50. 83.24799746624916 50. c +176.1342652527358723 50. l +180.1342652527358723 50. l h -181.5790850116129604 50. m -191.5790850116129604 50. l -32. 762. m -22. 762. l -178.5790850116129604 50. m -181.5790850116129604 50. m -181.52144085282265 50.5852709660483839 l -181.3507236091468258 51.1480502970952671 l -181.0734938485205987 51.6667106990588039 l -180.7004053551725917 52.1213203435596455 l -180.2457957106717572 52.4944088369076383 l -179.7271353087082275 52.7716385975338582 l -179.1643559776613586 52.9423558412096895 l -178.5790850116129604 53. l -177.9938140455645623 52.9423558412096895 l -177.4310347145176934 52.7716385975338582 l -176.9123743125541637 52.4944088369076383 l -176.4577646680533292 52.1213203435596455 l -176.0846761747053222 51.6667106990588039 l -175.8074464140790951 51.1480502970952671 l -175.6367291704032709 50.5852709660483839 l -175.5790850116129604 50. l -175.6367291704032709 49.4147290339516161 l -175.8074464140790951 48.8519497029047329 l -176.0846761747053222 48.3332893009411961 l -176.4577646680533292 47.8786796564403545 l -176.9123743125541637 47.5055911630923617 l -177.4310347145176934 47.2283614024661418 l -177.9938140455645623 47.0576441587903105 l -178.5790850116129604 47. l -179.1643559776613586 47.0576441587903105 l -179.7271353087082275 47.2283614024661418 l -180.2457957106717572 47.5055911630923617 l -180.7004053551725917 47.8786796564403545 l -181.0734938485205987 48.3332893009411961 l -181.3507236091468258 48.8519497029047258 l -181.52144085282265 49.4147290339516161 l -181.5790850116129604 50. l -22. 758. m -31. 762. l -22. 766. l +186.1342652527358723 50. m +196.1342652527358723 50. l +32. 810. m +22. 810. l +183.1342652527358723 50. m +186.1342652527358723 50. m +186.0766210939455618 50.5852709660483839 l +185.9059038502697376 51.1480502970952671 l +185.6286740896435106 51.6667106990588039 l +185.2555855962955036 52.1213203435596455 l +184.8009759517946691 52.4944088369076383 l +184.2823155498311394 52.7716385975338582 l +183.7195362187842704 52.9423558412096895 l +183.1342652527358723 53. l +182.5489942866874742 52.9423558412096895 l +181.9862149556406052 52.7716385975338582 l +181.4675545536770755 52.4944088369076383 l +181.012944909176241 52.1213203435596455 l +180.639856415828234 51.6667106990588039 l +180.362626655202007 51.1480502970952671 l +180.1919094115261828 50.5852709660483839 l +180.1342652527358723 50. l +180.1919094115261828 49.4147290339516161 l +180.362626655202007 48.8519497029047329 l +180.639856415828234 48.3332893009411961 l +181.012944909176241 47.8786796564403545 l +181.4675545536770755 47.5055911630923617 l +181.9862149556406052 47.2283614024661418 l +182.5489942866874742 47.0576441587903105 l +183.1342652527358723 47. l +183.7195362187842704 47.0576441587903105 l +184.2823155498311394 47.2283614024661418 l +184.8009759517946691 47.5055911630923617 l +185.2555855962955036 47.8786796564403545 l +185.6286740896435106 48.3332893009411961 l +185.9059038502697376 48.8519497029047258 l +186.0766210939455618 49.4147290339516161 l +186.1342652527358723 50. l +22. 806. m +31. 810. l +22. 814. l S Q q @@ -1439,7 +1440,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -1451,7 +1452,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 292.1143544405584862 899. Tm +1. 0. 0. -1. 269.3657246714809617 1115. Tm <000d> Tj ET Q @@ -1460,70 +1461,167 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -689.6856269521714466 174. 99.9906822366510255 901. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +243.39990234375 310. 220.100087580466834 1117. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 689.6856269521714466 174. cm -39.0106297767306955 874. m -43.0106297767306955 874. l -66.9906822366510255 874. l -73.6573489033176969 874. 76.9906822366510255 870.6666666666666288 76.9906822366510255 864. c -76.9906822366510255 60. l -76.9906822366510255 53.3333333333333357 73.6573489033176969 50. 66.9906822366510255 50. c -42. 50. l -32. 50. l -32. 50. l -42. 50. l -66.9906822366510255 50. l -73.6573489033176969 50. 76.9906822366510255 53.3333333333333357 76.9906822366510255 60. c -76.9906822366510255 864. l -76.9906822366510255 870.6666666666666288 73.6573489033176969 874. 66.9906822366510255 874. c -43.0106297767306955 874. l -39.0106297767306955 874. l +1. 0. 0. 1. 243.39990234375 310. cm +181.100087580466834 50. m +177.100087580466834 50. l +83.8251264656671538 50. l +77.1584597990004823 50. 73.8251264656671538 53.3333333333333357 73.8251264656671538 60. c +73.8251264656671538 1080. l +73.8251264656671538 1086.6666666666667425 70.4917931323338252 1090. 63.8251264656671538 1090. c +42. 1090. l +32. 1090. l +32. 1090. l +42. 1090. l +63.8251264656671538 1090. l +70.4917931323338252 1090. 73.8251264656671538 1086.6666666666667425 73.8251264656671538 1080. c +73.8251264656671538 60. l +73.8251264656671538 53.3333333333333357 77.1584597990004823 50. 83.8251264656671538 50. c +177.100087580466834 50. l +181.100087580466834 50. l h -33.0106297767306955 874. m -23.0106297767306955 874. l +187.100087580466834 50. m +197.100087580466834 50. l +32. 1090. m +22. 1090. l +184.100087580466834 50. m +187.100087580466834 50. m +187.0424434216765235 50.5852709660483839 l +186.8717261780006993 51.1480502970952671 l +186.5944964173744722 51.6667106990588039 l +186.2214079240264653 52.1213203435596455 l +185.7667982795256307 52.4944088369076383 l +185.248137877562101 52.7716385975338582 l +184.6853585465152321 52.9423558412096895 l +184.100087580466834 53. l +183.5148166144184358 52.9423558412096895 l +182.9520372833715669 52.7716385975338582 l +182.4333768814080372 52.4944088369076383 l +181.9787672369072027 52.1213203435596455 l +181.6056787435591957 51.6667106990588039 l +181.3284489829329686 51.1480502970952671 l +181.1577317392571445 50.5852709660483839 l +181.100087580466834 50. l +181.1577317392571445 49.4147290339516161 l +181.3284489829329686 48.8519497029047329 l +181.6056787435591957 48.3332893009411961 l +181.9787672369072027 47.8786796564403545 l +182.4333768814080372 47.5055911630923617 l +182.9520372833715669 47.2283614024661418 l +183.5148166144184358 47.0576441587903105 l +184.100087580466834 47. l +184.6853585465152321 47.0576441587903105 l +185.248137877562101 47.2283614024661418 l +185.7667982795256307 47.5055911630923617 l +186.2214079240264653 47.8786796564403545 l +186.5944964173744722 48.3332893009411961 l +186.8717261780006993 48.8519497029047258 l +187.0424434216765235 49.4147290339516161 l +187.100087580466834 50. l +22. 1086. m +31. 1090. l +22. 1094. l +S +Q +q +/GS1 gs +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 414.134755549216834 355. Tm +<0013001100110014> Tj +ET +Q +Q +q +/GS1 gs +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 268.39990234375 1395. Tm +<000d> Tj +ET +Q +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +621.567861017966834 342. 103.5651917389587879 901. re +W +n +q +q +q +0.61 0.61 0.64 RG +1. 0. 0. 1. 621.567861017966834 342. cm +41.321955685288458 874. m +45.321955685288458 874. l +70.5651917389587879 874. l +77.2318584056254593 874. 80.5651917389587879 870.6666666666666288 80.5651917389587879 864. c +80.5651917389587879 60. l +80.5651917389587879 53.3333333333333357 77.2318584056254593 50. 70.5651917389587879 50. c +42. 50. l +32. 50. l +32. 50. l +42. 50. l +70.5651917389587879 50. l +77.2318584056254593 50. 80.5651917389587879 53.3333333333333357 80.5651917389587879 60. c +80.5651917389587879 864. l +80.5651917389587879 870.6666666666666288 77.2318584056254593 874. 70.5651917389587879 874. c +45.321955685288458 874. l +41.321955685288458 874. l +h +35.321955685288458 874. m +25.321955685288458 874. l 32. 50. m 22. 50. l -36.0106297767306955 874. m -39.0106297767306955 874. m -38.9529856179403851 874.5852709660483697 l -38.7822683742645538 875.1480502970953239 l -38.5050386136383338 875.6667106990588536 l -38.131950120290341 876.1213203435596597 l -37.6773404757894994 876.4944088369076098 l -37.1586800738259626 876.7716385975338653 l -36.5959007427790795 876.9423558412097464 l -36.0106297767306955 877. l -35.4253588106823116 876.9423558412097464 l -34.8625794796354285 876.7716385975338653 l -34.3439190776718917 876.4944088369076098 l -33.88930943317105 876.1213203435596597 l -33.5162209398230573 875.6667106990588536 l -33.2389911791968373 875.1480502970953239 l -33.068273935521006 874.5852709660483697 l -33.0106297767306955 874. l -33.068273935521006 873.4147290339516303 l -33.2389911791968373 872.8519497029046761 l -33.5162209398230573 872.3332893009411464 l -33.88930943317105 871.8786796564403403 l -34.3439190776718917 871.5055911630923902 l -34.8625794796354214 871.2283614024661347 l -35.4253588106823116 871.0576441587902536 l -36.0106297767306955 871. l -36.5959007427790795 871.0576441587902536 l -37.1586800738259626 871.2283614024661347 l -37.6773404757894994 871.5055911630923902 l -38.131950120290341 871.8786796564403403 l -38.5050386136383338 872.3332893009411464 l -38.7822683742645538 872.8519497029046761 l -38.9529856179403851 873.4147290339516303 l -39.0106297767306955 874. l +38.321955685288458 874. m +41.321955685288458 874. m +41.2643115264981475 874.5852709660483697 l +41.0935942828223162 875.1480502970953239 l +40.8163645221960962 875.6667106990588536 l +40.4432760288481035 876.1213203435596597 l +39.9886663843472618 876.4944088369076098 l +39.470005982383725 876.7716385975338653 l +38.9072266513368419 876.9423558412097464 l +38.321955685288458 877. l +37.7366847192400741 876.9423558412097464 l +37.1739053881931909 876.7716385975338653 l +36.6552449862296541 876.4944088369076098 l +36.2006353417288125 876.1213203435596597 l +35.8275468483808197 875.6667106990588536 l +35.5503170877545998 875.1480502970953239 l +35.3795998440787685 874.5852709660483697 l +35.321955685288458 874. l +35.3795998440787685 873.4147290339516303 l +35.5503170877545998 872.8519497029046761 l +35.8275468483808197 872.3332893009411464 l +36.2006353417288125 871.8786796564403403 l +36.6552449862296541 871.5055911630923902 l +37.1739053881931838 871.2283614024661347 l +37.7366847192400741 871.0576441587902536 l +38.321955685288458 871. l +38.9072266513368419 871.0576441587902536 l +39.470005982383725 871.2283614024661347 l +39.9886663843472618 871.5055911630923902 l +40.4432760288481035 871.8786796564403403 l +40.8163645221960962 872.3332893009411464 l +41.0935942828223162 872.8519497029046761 l +41.2643115264981475 873.4147290339516303 l +41.321955685288458 874. l 22. 46. m 31. 50. l 22. 54. l @@ -1536,7 +1634,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 715.696256728902199 1043. Tm +1. 0. 0. -1. 649.8898167032552919 1211. Tm <0013001100110014> Tj ET Q @@ -1548,7 +1646,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 714.6856269521714466 219. Tm +1. 0. 0. -1. 646.567861017966834 387. Tm <000d> Tj ET Q @@ -1557,73 +1655,81 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -690.696256728902199 190. 149.346989627211542 885. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +624.8898167032552919 231.6848152188745189 1034.7802118942818197 1011.3151847811254811 re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 690.696256728902199 190. cm -38. 858. m -42. 858. l -65.9800524599202731 858. l -72.6467191265869445 858. 75.9800524599202731 854.6666666666666288 75.9800524599202731 848. c -75.9800524599202731 60. l -75.9800524599202731 53.3333333333333357 79.3133857932536017 50. 85.9800524599202731 50. c -106.346989627211542 50. l -116.346989627211542 50. l -116.346989627211542 50. l -106.346989627211542 50. l -85.9800524599202731 50. l -79.3133857932536017 50. 75.9800524599202731 53.3333333333333357 75.9800524599202731 60. c -75.9800524599202731 848. l -75.9800524599202731 854.6666666666666288 72.6467191265869445 858. 65.9800524599202731 858. c -42. 858. l -38. 858. l +1. 0. 0. 1. 624.8898167032552919 231.6848152188745189 cm +38. 984.3151847811254811 m +42. 984.3151847811254811 l +67.5129574218523203 984.3151847811254811 l +74.1796240885189917 984.3151847811254811 77.5129574218523203 980.9818514477921099 77.5129574218523203 974.3151847811254811 c +77.5129574218523203 60. l +77.5129574218523203 53.3333333333333357 80.8462907551856489 50. 87.5129574218523203 50. c +1001.7802118942818197 50. l +1008.4468785609484485 50. 1011.7802118942818197 53.3333333333333357 1011.7802118942818197 60. c +1011.7802118942818197 294.3151847811254811 l +1011.7802118942818197 300.9818514477921667 1008.4468785609484485 304.3151847811254811 1001.7802118942818197 304.3151847811254811 c +988.860661502211542 304.3151847811254811 l +978.860661502211542 304.3151847811254811 l +978.860661502211542 304.3151847811254811 l +988.860661502211542 304.3151847811254811 l +1001.7802118942818197 304.3151847811254811 l +1008.4468785609484485 304.3151847811254811 1011.7802118942818197 300.9818514477921667 1011.7802118942818197 294.3151847811254811 c +1011.7802118942818197 60. l +1011.7802118942818197 53.3333333333333357 1008.4468785609484485 50. 1001.7802118942818197 50. c +87.5129574218523203 50. l +80.8462907551856489 50. 77.5129574218523203 53.3333333333333357 77.5129574218523203 60. c +77.5129574218523203 974.3151847811254811 l +77.5129574218523203 980.9818514477921099 74.1796240885189917 984.3151847811254811 67.5129574218523203 984.3151847811254811 c +42. 984.3151847811254811 l +38. 984.3151847811254811 l h -32. 858. m -22. 858. l -116.346989627211542 50. m -126.346989627211542 50. l -35. 858. m -38. 858. m -37.9423558412096895 858.5852709660483697 l -37.7716385975338582 859.1480502970953239 l -37.4944088369076383 859.6667106990588536 l -37.1213203435596455 860.1213203435596597 l -36.6667106990588039 860.4944088369076098 l -36.1480502970952671 860.7716385975338653 l -35.5852709660483839 860.9423558412097464 l -35. 861. l -34.4147290339516161 860.9423558412097464 l -33.8519497029047329 860.7716385975338653 l -33.3332893009411961 860.4944088369076098 l -32.8786796564403545 860.1213203435596597 l -32.5055911630923617 859.6667106990588536 l -32.2283614024661418 859.1480502970953239 l -32.0576441587903105 858.5852709660483697 l -32. 858. l -32.0576441587903105 857.4147290339516303 l -32.2283614024661418 856.8519497029046761 l -32.5055911630923617 856.3332893009411464 l -32.8786796564403545 855.8786796564403403 l -33.3332893009411961 855.5055911630923902 l -33.8519497029047258 855.2283614024661347 l -34.4147290339516161 855.0576441587902536 l -35. 855. l -35.5852709660483839 855.0576441587902536 l -36.1480502970952671 855.2283614024661347 l -36.6667106990588039 855.5055911630923902 l -37.1213203435596455 855.8786796564403403 l -37.4944088369076383 856.3332893009411464 l -37.7716385975338582 856.8519497029046761 l -37.9423558412096895 857.4147290339516303 l -38. 858. l -126.346989627211542 46. m -117.346989627211542 50. l -126.346989627211542 54. l +32. 984.3151847811254811 m +22. 984.3151847811254811 l +978.860661502211542 304.3151847811254811 m +968.860661502211542 304.3151847811254811 l +35. 984.3151847811254811 m +38. 984.3151847811254811 m +37.9423558412096895 984.9004557471738508 l +37.7716385975338582 985.463235078220805 l +37.4944088369076383 985.9818954801843347 l +37.1213203435596455 986.4365051246851408 l +36.6667106990588039 986.8095936180330909 l +36.1480502970952671 987.0868233786593464 l +35.5852709660483839 987.2575406223352275 l +35. 987.3151847811254811 l +34.4147290339516161 987.2575406223352275 l +33.8519497029047329 987.0868233786593464 l +33.3332893009411961 986.8095936180330909 l +32.8786796564403545 986.4365051246851408 l +32.5055911630923617 985.9818954801843347 l +32.2283614024661418 985.463235078220805 l +32.0576441587903105 984.9004557471738508 l +32. 984.3151847811254811 l +32.0576441587903105 983.7299138150771114 l +32.2283614024661418 983.1671344840301572 l +32.5055911630923617 982.6484740820666275 l +32.8786796564403545 982.1938644375658214 l +33.3332893009411961 981.8207759442178713 l +33.8519497029047258 981.5435461835916158 l +34.4147290339516161 981.3728289399157347 l +35. 981.3151847811254811 l +35.5852709660483839 981.3728289399157347 l +36.1480502970952671 981.5435461835916158 l +36.6667106990588039 981.8207759442178713 l +37.1213203435596455 982.1938644375658214 l +37.4944088369076383 982.6484740820666275 l +37.7716385975338582 983.1671344840301572 l +37.9423558412096895 983.7299138150771114 l +38. 984.3151847811254811 l +968.860661502211542 300.3151847811254811 m +977.860661502211542 304.3151847811254811 l +968.860661502211542 308.3151847811254811 l S Q q @@ -1633,7 +1739,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 715.696256728902199 1043. Tm +1. 0. 0. -1. 649.8898167032552919 1211. Tm <0013001100110014> Tj ET Q @@ -1645,7 +1751,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 806.3323088561137411 235. Tm +1. 0. 0. -1. 1596.750478205466834 531. Tm <000d> Tj ET Q @@ -1654,73 +1760,81 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -690.696256728902199 648.5554599719099542 149.346989627211542 426.4445400280900458 re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +624.8898167032552919 706.0886369817633295 711.6466635310971469 536.9113630182366705 re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 690.696256728902199 648.5554599719099542 cm -38. 399.4445400280900458 m -42. 399.4445400280900458 l -65.9800524599202731 399.4445400280900458 l -72.6467191265869445 399.4445400280900458 75.9800524599202731 396.1112066947567314 75.9800524599202731 389.4445400280900458 c -75.9800524599202731 60. l -75.9800524599202731 53.3333333333333357 79.3133857932536017 50. 85.9800524599202731 50. c -106.346989627211542 50. l -116.346989627211542 50. l -116.346989627211542 50. l -106.346989627211542 50. l -85.9800524599202731 50. l -79.3133857932536017 50. 75.9800524599202731 53.3333333333333357 75.9800524599202731 60. c -75.9800524599202731 389.4445400280900458 l -75.9800524599202731 396.1112066947567314 72.6467191265869445 399.4445400280900458 65.9800524599202731 399.4445400280900458 c -42. 399.4445400280900458 l -38. 399.4445400280900458 l +1. 0. 0. 1. 624.8898167032552919 706.0886369817633295 cm +38. 509.9113630182367274 m +42. 509.9113630182367274 l +69.1312333193084214 509.9113630182367274 l +75.7978999859750928 509.9113630182367274 79.1312333193084214 506.578029684903413 79.1312333193084214 499.9113630182367274 c +79.1312333193084214 60. l +79.1312333193084214 53.3333333333333357 82.46456665264175 50. 89.1312333193084214 50. c +678.6466635310971469 50. l +685.3133301977637757 50. 688.6466635310971469 53.3333333333333357 688.6466635310971469 60. c +688.6466635310971469 280.1692809600788792 l +688.6466635310971469 285.7009756467907664 685.8808161877411749 288.4668229901466816 680.3491215010293445 288.4668229901466816 c +672.051579470961542 288.4668229901466816 l +662.051579470961542 288.4668229901466816 l +662.051579470961542 288.4668229901466816 l +672.051579470961542 288.4668229901466816 l +680.3491215010293445 288.4668229901466816 l +685.8808161877411749 288.4668229901466816 688.6466635310971469 285.7009756467907664 688.6466635310971469 280.1692809600788792 c +688.6466635310971469 60. l +688.6466635310971469 53.3333333333333357 685.3133301977637757 50. 678.6466635310971469 50. c +89.1312333193084214 50. l +82.46456665264175 50. 79.1312333193084214 53.3333333333333357 79.1312333193084214 60. c +79.1312333193084214 499.9113630182367274 l +79.1312333193084214 506.578029684903413 75.7978999859750928 509.9113630182367274 69.1312333193084214 509.9113630182367274 c +42. 509.9113630182367274 l +38. 509.9113630182367274 l h -32. 399.4445400280900458 m -22. 399.4445400280900458 l -116.346989627211542 50. m -126.346989627211542 50. l -35. 399.4445400280900458 m -38. 399.4445400280900458 m -37.9423558412096895 400.0298109941384155 l -37.7716385975338582 400.5925903251853128 l -37.4944088369076383 401.1112507271488425 l -37.1213203435596455 401.5658603716497055 l -36.6667106990588039 401.9389488649976556 l -36.1480502970952671 402.2161786256239111 l -35.5852709660483839 402.3868958692997353 l -35. 402.4445400280900458 l -34.4147290339516161 402.3868958692997353 l -33.8519497029047329 402.2161786256239111 l -33.3332893009411961 401.9389488649976556 l -32.8786796564403545 401.5658603716497055 l -32.5055911630923617 401.1112507271488425 l -32.2283614024661418 400.5925903251853128 l -32.0576441587903105 400.0298109941384155 l -32. 399.4445400280900458 l -32.0576441587903105 398.8592690620416761 l -32.2283614024661418 398.2964897309947787 l -32.5055911630923617 397.777829329031249 l -32.8786796564403545 397.3232196845303861 l -33.3332893009411961 396.9501311911824359 l -33.8519497029047258 396.6729014305561805 l -34.4147290339516161 396.5021841868803563 l -35. 396.4445400280900458 l -35.5852709660483839 396.5021841868803563 l -36.1480502970952671 396.6729014305561805 l -36.6667106990588039 396.9501311911824359 l -37.1213203435596455 397.3232196845303861 l -37.4944088369076383 397.777829329031249 l -37.7716385975338582 398.2964897309947787 l -37.9423558412096895 398.8592690620416761 l -38. 399.4445400280900458 l -126.346989627211542 46. m -117.346989627211542 50. l -126.346989627211542 54. l +32. 509.9113630182367274 m +22. 509.9113630182367274 l +662.051579470961542 288.4668229901466816 m +652.051579470961542 288.4668229901466816 l +35. 509.9113630182367274 m +38. 509.9113630182367274 m +37.9423558412096895 510.4966339842850971 l +37.7716385975338582 511.0594133153319945 l +37.4944088369076383 511.5780737172955241 l +37.1213203435596455 512.0326833617963302 l +36.6667106990588039 512.4057718551443941 l +36.1480502970952671 512.6830016157705359 l +35.5852709660483839 512.8537188594464169 l +35. 512.9113630182366705 l +34.4147290339516161 512.8537188594464169 l +33.8519497029047329 512.6830016157705359 l +33.3332893009411961 512.4057718551443941 l +32.8786796564403545 512.0326833617963302 l +32.5055911630923617 511.5780737172955241 l +32.2283614024661418 511.0594133153319945 l +32.0576441587903105 510.4966339842850971 l +32. 509.9113630182367274 l +32.0576441587903105 509.3260920521883577 l +32.2283614024661418 508.7633127211414603 l +32.5055911630923617 508.2446523191779306 l +32.8786796564403545 507.7900426746770677 l +33.3332893009411961 507.4169541813291175 l +33.8519497029047258 507.1397244207028621 l +34.4147290339516161 506.9690071770270379 l +35. 506.9113630182367274 l +35.5852709660483839 506.9690071770270379 l +36.1480502970952671 507.1397244207028621 l +36.6667106990588039 507.4169541813291175 l +37.1213203435596455 507.7900426746770677 l +37.4944088369076383 508.2446523191779306 l +37.7716385975338582 508.7633127211414603 l +37.9423558412096895 509.3260920521883577 l +38. 509.9113630182367274 l +652.051579470961542 284.4668229901466816 m +661.051579470961542 288.4668229901466816 l +652.051579470961542 292.4668229901466816 l S Q q @@ -1730,7 +1844,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 715.696256728902199 1043. Tm +1. 0. 0. -1. 649.8898167032552919 1211. Tm <0013001100110014> Tj ET Q @@ -1742,7 +1856,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 806.3323088561137411 693.5554599719099542 Tm +1. 0. 0. -1. 1279.941396174216834 989.5554599719100679 Tm <000d> Tj ET Q @@ -1751,36 +1865,36 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1023.7873869811137411 158. 120.255859375 109. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +946.739247736716834 326. 132.7607421875 109. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 1023.7873869811137411 158. cm +1. 0. 0. 1. 946.739247736716834 326. cm 38. 50. m 42. 50. l -50.81396484375 50. l -56.68994140625 50. 59.6279296875 52.93798828125 59.6279296875 58.81396484375 c -59.6279296875 73.18603515625 l -59.6279296875 79.06201171875 62.56591796875 82. 68.44189453125 82. c -77.255859375 82. l -87.255859375 82. l -87.255859375 82. l -77.255859375 82. l -68.44189453125 82. l -62.56591796875 82. 59.6279296875 79.06201171875 59.6279296875 73.18603515625 c -59.6279296875 58.81396484375 l -59.6279296875 52.93798828125 56.68994140625 50. 50.81396484375 50. c +55.88037109375 50. l +62.5470377604166643 50. 65.88037109375 53.3333333333333357 65.88037109375 60. c +65.88037109375 72. l +65.88037109375 78.6666666666666714 69.2137044270833286 82. 75.88037109375 82. c +89.7607421875 82. l +99.7607421875 82. l +99.7607421875 82. l +89.7607421875 82. l +75.88037109375 82. l +69.2137044270833286 82. 65.88037109375 78.6666666666666714 65.88037109375 72. c +65.88037109375 60. l +65.88037109375 53.3333333333333357 62.5470377604166643 50. 55.88037109375 50. c 42. 50. l 38. 50. l h 32. 50. m 22. 50. l -87.255859375 82. m -97.255859375 82. l +99.7607421875 82. m +109.7607421875 82. l 35. 50. m 38. 50. m 37.9423558412096895 50.5852709660483839 l @@ -1815,9 +1929,9 @@ h 37.7716385975338582 48.8519497029047258 l 37.9423558412096895 49.4147290339516161 l 38. 50. l -97.255859375 78. m -88.255859375 82. l -97.255859375 86. l +109.7607421875 78. m +100.7607421875 82. l +109.7607421875 86. l S Q q @@ -1827,7 +1941,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1048.7873869811137411 203. Tm +1. 0. 0. -1. 971.739247736716834 371. Tm <0013001100110014> Tj ET Q @@ -1839,7 +1953,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1110.3323088561137411 235. Tm +1. 0. 0. -1. 1045.789052424216834 403. Tm <000d> Tj ET Q @@ -1848,36 +1962,36 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1023.7873869811137411 616.5554599719099542 120.255859375 109. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +946.739247736716834 784.5554599719099542 132.7607421875 109. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 1023.7873869811137411 616.5554599719099542 cm +1. 0. 0. 1. 946.739247736716834 784.5554599719099542 cm 38. 50. m 42. 50. l -50.81396484375 50. l -56.68994140625 50. 59.6279296875 52.93798828125 59.6279296875 58.81396484375 c -59.6279296875 73.18603515625 l -59.6279296875 79.06201171875 62.56591796875 82. 68.44189453125 82. c -77.255859375 82. l -87.255859375 82. l -87.255859375 82. l -77.255859375 82. l -68.44189453125 82. l -62.56591796875 82. 59.6279296875 79.06201171875 59.6279296875 73.18603515625 c -59.6279296875 58.81396484375 l -59.6279296875 52.93798828125 56.68994140625 50. 50.81396484375 50. c +55.88037109375 50. l +62.5470377604166643 50. 65.88037109375 53.3333333333333357 65.88037109375 60. c +65.88037109375 72. l +65.88037109375 78.6666666666666714 69.2137044270833286 82. 75.88037109375 82. c +89.7607421875 82. l +99.7607421875 82. l +99.7607421875 82. l +89.7607421875 82. l +75.88037109375 82. l +69.2137044270833286 82. 65.88037109375 78.6666666666666714 65.88037109375 72. c +65.88037109375 60. l +65.88037109375 53.3333333333333357 62.5470377604166643 50. 55.88037109375 50. c 42. 50. l 38. 50. l h 32. 50. m 22. 50. l -87.255859375 82. m -97.255859375 82. l +99.7607421875 82. m +109.7607421875 82. l 35. 50. m 38. 50. m 37.9423558412096895 50.5852709660483839 l @@ -1912,9 +2026,9 @@ h 37.7716385975338582 48.8519497029047258 l 37.9423558412096895 49.4147290339516161 l 38. 50. l -97.255859375 78. m -88.255859375 82. l -97.255859375 86. l +109.7607421875 78. m +100.7607421875 82. l +109.7607421875 86. l S Q q @@ -1924,7 +2038,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1048.7873869811137411 661.5554599719099542 Tm +1. 0. 0. -1. 971.739247736716834 829.5554599719099542 Tm <0013001100110014> Tj ET Q @@ -1936,7 +2050,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1110.3323088561137411 693.5554599719099542 Tm +1. 0. 0. -1. 1045.789052424216834 861.5554599719099542 Tm <000d> Tj ET Q @@ -1945,36 +2059,36 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1347.7571135436137411 158. 124.2861328125 109. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1282.731435236716834 326. 124.7685546875 109. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 1347.7571135436137411 158. cm +1. 0. 0. 1. 1282.731435236716834 326. cm 38. 50. m 42. 50. l -51.8325476841058617 50. l -58.3875794735097671 50. 61.6650953682117233 53.2775158947019563 61.6650953682117233 59.8325476841058617 c -61.6650953682117233 72.1894812778558617 l -61.6650953682117233 78.7298270926186206 64.9352682755931028 82. 71.4756140903558617 82. c -81.2861328125 82. l -91.2861328125 82. l -91.2861328125 82. l -81.2861328125 82. l -71.4756140903558617 82. l -64.9352682755931028 82. 61.6650953682117233 78.7298270926186206 61.6650953682117233 72.1894812778558617 c -61.6650953682117233 59.8325476841058617 l -61.6650953682117233 53.2775158947019563 58.3875794735097671 50. 51.8325476841058617 50. c +52.1475172432117233 50. l +58.8141839098783876 50. 62.1475172432117233 53.3333333333333357 62.1475172432117233 60. c +62.1475172432117233 72.1894812778558617 l +62.1475172432117233 78.7298270926186206 65.4176901505931028 82. 71.9580359653558617 82. c +81.7685546875 82. l +91.7685546875 82. l +91.7685546875 82. l +81.7685546875 82. l +71.9580359653558617 82. l +65.4176901505931028 82. 62.1475172432117233 78.7298270926186206 62.1475172432117233 72.1894812778558617 c +62.1475172432117233 60. l +62.1475172432117233 53.3333333333333357 58.8141839098783876 50. 52.1475172432117233 50. c 42. 50. l 38. 50. l h 32. 50. m 22. 50. l -91.2861328125 82. m -101.2861328125 82. l +91.7685546875 82. m +101.7685546875 82. l 35. 50. m 38. 50. m 37.9423558412096895 50.5852709660483839 l @@ -2009,9 +2123,9 @@ h 37.7716385975338582 48.8519497029047258 l 37.9423558412096895 49.4147290339516161 l 38. 50. l -101.2861328125 78. m -92.2861328125 82. l -101.2861328125 86. l +101.7685546875 78. m +92.7685546875 82. l +101.7685546875 86. l S Q q @@ -2021,7 +2135,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1372.7571135436137411 203. Tm +1. 0. 0. -1. 1307.731435236716834 371. Tm <0013001100110014> Tj ET Q @@ -2033,7 +2147,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1438.3323088561137411 235. Tm +1. 0. 0. -1. 1373.789052424216834 403. Tm <000d> Tj ET Q @@ -2042,36 +2156,36 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1347.7571135436137411 158. 125.4017852908888244 701. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1282.731435236716834 326. 125.8842071658888244 701. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 1347.7571135436137411 158. cm +1. 0. 0. 1. 1282.731435236716834 326. cm 38. 50. m 42. 50. l -52.2008926454444122 50. l -58.8675593121110765 50. 62.2008926454444122 53.3333333333333357 62.2008926454444122 60. c -62.2008926454444122 664. l -62.2008926454444122 670.6666666666666288 65.5342259787777408 674. 72.2008926454444122 674. c -82.4017852908888244 674. l -92.4017852908888244 674. l -92.4017852908888244 674. l -82.4017852908888244 674. l -72.2008926454444122 674. l -65.5342259787777408 674. 62.2008926454444122 670.6666666666666288 62.2008926454444122 664. c -62.2008926454444122 60. l -62.2008926454444122 53.3333333333333357 58.8675593121110765 50. 52.2008926454444122 50. c +52.4421035829444122 50. l +59.1087702496110765 50. 62.4421035829444122 53.3333333333333357 62.4421035829444122 60. c +62.4421035829444122 664. l +62.4421035829444122 670.6666666666666288 65.7754369162777408 674. 72.4421035829444122 674. c +82.8842071658888244 674. l +92.8842071658888244 674. l +92.8842071658888244 674. l +82.8842071658888244 674. l +72.4421035829444122 674. l +65.7754369162777408 674. 62.4421035829444122 670.6666666666666288 62.4421035829444122 664. c +62.4421035829444122 60. l +62.4421035829444122 53.3333333333333357 59.1087702496110765 50. 52.4421035829444122 50. c 42. 50. l 38. 50. l h 32. 50. m 22. 50. l -92.4017852908888244 674. m -102.4017852908888244 674. l +92.8842071658888244 674. m +102.8842071658888244 674. l 35. 50. m 38. 50. m 37.9423558412096895 50.5852709660483839 l @@ -2106,9 +2220,9 @@ h 37.7716385975338582 48.8519497029047258 l 37.9423558412096895 49.4147290339516161 l 38. 50. l -102.4017852908888244 670. m -93.4017852908888244 674. l -102.4017852908888244 678. l +102.8842071658888244 670. m +93.8842071658888244 674. l +102.8842071658888244 678. l S Q q @@ -2118,7 +2232,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1372.7571135436137411 203. Tm +1. 0. 0. -1. 1307.731435236716834 371. Tm <0013001100110014> Tj ET Q @@ -2130,7 +2244,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1439.4479613345024518 827. Tm +1. 0. 0. -1. 1374.9047049026057721 995. Tm <000d> Tj ET Q @@ -2139,29 +2253,29 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1653.1165657303761236 550. 110.0728207043728162 277. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1587.3101257047292165 718. 123.0807456386244212 277. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. 1653.1165657303761236 550. cm +1. 0. 0. 1. 1587.3101257047292165 718. cm 71.4236807603763282 250. m 75.4236807603763282 250. l -81.2482507323745722 250. l -85.1312973803733968 250. 87.0728207043728162 248.0584766760005948 87.0728207043728162 244.175430028001756 c -87.0728207043728162 60. l -87.0728207043728162 53.3333333333333357 83.7394873710394876 50. 77.0728207043728162 50. c +90.0807456386244212 250. l +96.7474123052910926 250. 100.0807456386244212 246.6666666666666572 100.0807456386244212 240. c +100.0807456386244212 60. l +100.0807456386244212 53.3333333333333357 96.7474123052910926 50. 90.0807456386244212 50. c 42. 50. l 32. 50. l 32. 50. l 42. 50. l -77.0728207043728162 50. l -83.7394873710394876 50. 87.0728207043728162 53.3333333333333357 87.0728207043728162 60. c -87.0728207043728162 244.175430028001756 l -87.0728207043728162 248.0584766760005948 85.1312973803733968 250. 81.2482507323745722 250. c +90.0807456386244212 50. l +96.7474123052910926 50. 100.0807456386244212 53.3333333333333357 100.0807456386244212 60. c +100.0807456386244212 240. l +100.0807456386244212 246.6666666666666572 96.7474123052910926 250. 90.0807456386244212 250. c 75.4236807603763282 250. l 71.4236807603763282 250. l h @@ -2215,7 +2329,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1711.5402464907524518 795. Tm +1. 0. 0. -1. 1645.7338064651055447 963. Tm <0013001100110014> Tj ET Q @@ -2227,7 +2341,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1678.1165657303761236 595. Tm +1. 0. 0. -1. 1612.3101257047292165 763. Tm <000d> Tj ET Q @@ -2236,73 +2350,71 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm --4. 462. 87.3702138155584862 373. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +243.9669077485730213 606. 45.3988169229079404 477. re W n q q q 0.61 0.61 0.64 RG -1. 0. 0. 1. -4. 462. cm -45.7473479186136842 50. m -41.7473479186136842 50. l -31.8736739593068421 50. l -25.2912246531022831 50. 22. 53.2912246531022831 22. 59.8736739593068421 c -22. 336. l -22. 342.6666666666666856 25.3333333333333357 346. 32. 346. c -44.3702138155584862 346. l -54.3702138155584862 346. l -54.3702138155584862 346. l -44.3702138155584862 346. l -32. 346. l -25.3333333333333357 346. 22. 342.6666666666666856 22. 336. c -22. 59.8736739593068421 l -22. 53.2912246531022831 25.2912246531022831 50. 31.8736739593068421 50. c -41.7473479186136842 50. l -45.7473479186136842 50. l +1. 0. 0. 1. 243.9669077485730213 606. cm +38. 50. m +42. 50. l +42.1994084614539702 50. l +42.332347435756617 50. 42.3988169229079404 50.0664694871513234 42.3988169229079404 50.1994084614539702 c +42.3988169229079404 445. l +42.3988169229079404 448.3333333333333144 40.7321502562412761 450. 37.3988169229079404 450. c +32.3988169229079404 450. l +32.3988169229079404 450. l +37.3988169229079404 450. l +40.7321502562412761 450. 42.3988169229079404 448.3333333333333144 42.3988169229079404 445. c +42.3988169229079404 50.1994084614539702 l +42.3988169229079404 50.0664694871513234 42.332347435756617 50. 42.1994084614539702 50. c +42. 50. l +38. 50. l h -51.7473479186136842 50. m -61.7473479186136842 50. l -54.3702138155584862 346. m -64.3702138155584862 346. l -48.7473479186136842 50. m -51.7473479186136842 50. m -51.6897037598233737 50.5852709660483839 l -51.5189865161475424 51.1480502970952671 l -51.2417567555213225 51.6667106990588039 l -50.8686682621733297 52.1213203435596455 l -50.4140586176724881 52.4944088369076383 l -49.8953982157089513 52.7716385975338582 l -49.3326188846620681 52.9423558412096895 l -48.7473479186136842 53. l -48.1620769525653003 52.9423558412096895 l -47.5992976215184171 52.7716385975338582 l -47.0806372195548803 52.4944088369076383 l -46.6260275750540387 52.1213203435596455 l -46.252939081706046 51.6667106990588039 l -45.975709321079826 51.1480502970952671 l -45.8049920774039947 50.5852709660483839 l -45.7473479186136842 50. l -45.8049920774039947 49.4147290339516161 l -45.975709321079826 48.8519497029047329 l -46.252939081706046 48.3332893009411961 l -46.6260275750540387 47.8786796564403545 l -47.0806372195548803 47.5055911630923617 l -47.59929762151841 47.2283614024661418 l -48.1620769525653003 47.0576441587903105 l -48.7473479186136842 47. l -49.3326188846620681 47.0576441587903105 l -49.8953982157089513 47.2283614024661418 l -50.4140586176724881 47.5055911630923617 l -50.8686682621733297 47.8786796564403545 l -51.2417567555213225 48.3332893009411961 l -51.5189865161475424 48.8519497029047258 l -51.6897037598233737 49.4147290339516161 l -51.7473479186136842 50. l -64.3702138155584862 342. m -55.3702138155584862 346. l -64.3702138155584862 350. l +32. 50. m +22. 50. l +32.3988169229079404 450. m +22.3988169229079404 450. l +35. 50. m +38. 50. m +37.9423558412096895 50.5852709660483839 l +37.7716385975338582 51.1480502970952671 l +37.4944088369076383 51.6667106990588039 l +37.1213203435596455 52.1213203435596455 l +36.6667106990588039 52.4944088369076383 l +36.1480502970952671 52.7716385975338582 l +35.5852709660483839 52.9423558412096895 l +35. 53. l +34.4147290339516161 52.9423558412096895 l +33.8519497029047329 52.7716385975338582 l +33.3332893009411961 52.4944088369076383 l +32.8786796564403545 52.1213203435596455 l +32.5055911630923617 51.6667106990588039 l +32.2283614024661418 51.1480502970952671 l +32.0576441587903105 50.5852709660483839 l +32. 50. l +32.0576441587903105 49.4147290339516161 l +32.2283614024661418 48.8519497029047329 l +32.5055911630923617 48.3332893009411961 l +32.8786796564403545 47.8786796564403545 l +33.3332893009411961 47.5055911630923617 l +33.8519497029047258 47.2283614024661418 l +34.4147290339516161 47.0576441587903105 l +35. 47. l +35.5852709660483839 47.0576441587903105 l +36.1480502970952671 47.2283614024661418 l +36.6667106990588039 47.5055911630923617 l +37.1213203435596455 47.8786796564403545 l +37.4944088369076383 48.3332893009411961 l +37.7716385975338582 48.8519497029047258 l +37.9423558412096895 49.4147290339516161 l +38. 50. l +22.3988169229079404 446. m +31.3988169229079404 450. l +22.3988169229079404 454. l S Q q @@ -2312,7 +2424,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 31.3821135436136842 507. Tm +1. 0. 0. -1. 268.9669077485730213 651. Tm <0013001100110014> Tj ET Q @@ -2324,7 +2436,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 49.6592763155584862 803. Tm +1. 0. 0. -1. 269.3657246714809617 1051. Tm <000d> Tj ET Q @@ -2333,18 +2445,131 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -458.6934394521714466 144. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +-4. 974. 77.1264668589809617 389. re +W +n +q +q +q +0.61 0.61 0.64 RG +1. 0. 0. 1. -4. 974. cm +38.1264668589809617 50. m +34.1264668589809617 50. l +12. 50. l +5.3333333333333339 50. 2. 53.3333333333333357 2. 60. c +2. 357. l +2. 360.3333333333333144 3.666666666666667 362. 7. 362. c +12. 362. l +12. 362. l +7. 362. l +3.666666666666667 362. 2. 360.3333333333333144 2. 357. c +2. 60. l +2. 53.3333333333333357 5.3333333333333339 50. 12. 50. c +34.1264668589809617 50. l +38.1264668589809617 50. l +h +44.1264668589809617 50. m +54.1264668589809617 50. l +12. 362. m +22. 362. l +41.1264668589809617 50. m +44.1264668589809617 50. m +44.0688227001906512 50.5852709660483839 l +43.8981054565148199 51.1480502970952671 l +43.6208756958885999 51.6667106990588039 l +43.2477872025406072 52.1213203435596455 l +42.7931775580397655 52.4944088369076383 l +42.2745171560762287 52.7716385975338582 l +41.7117378250293456 52.9423558412096895 l +41.1264668589809617 53. l +40.5411958929325777 52.9423558412096895 l +39.9784165618856946 52.7716385975338582 l +39.4597561599221578 52.4944088369076383 l +39.0051465154213162 52.1213203435596455 l +38.6320580220733234 51.6667106990588039 l +38.3548282614471034 51.1480502970952671 l +38.1841110177712721 50.5852709660483839 l +38.1264668589809617 50. l +38.1841110177712721 49.4147290339516161 l +38.3548282614471034 48.8519497029047329 l +38.6320580220733234 48.3332893009411961 l +39.0051465154213162 47.8786796564403545 l +39.4597561599221578 47.5055911630923617 l +39.9784165618856875 47.2283614024661418 l +40.5411958929325777 47.0576441587903105 l +41.1264668589809617 47. l +41.7117378250293456 47.0576441587903105 l +42.2745171560762287 47.2283614024661418 l +42.7931775580397655 47.5055911630923617 l +43.2477872025406072 47.8786796564403545 l +43.6208756958885999 48.3332893009411961 l +43.8981054565148199 48.8519497029047258 l +44.0688227001906512 49.4147290339516161 l +44.1264668589809617 50. l +22. 358. m +13. 362. l +22. 366. l +S +Q +q +/GS1 gs +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 23.7612324839809617 1019. Tm +<0013001100110014> Tj +ET +Q +Q +q +/GS1 gs +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 7.2890625 1331. Tm +<000d> Tj +ET +Q +Q +Q +Q +Q +q +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 286.6151877374173296 203.7072075589709641 cm +3. 0. m +200.06787109375 0. l +201.724725343242369 0. 203.06787109375 1.3431457505076199 203.06787109375 3. c +203.06787109375 317. l +203.06787109375 318.656854249492369 201.724725343242369 320. 200.06787109375 320. c +3. 320. l +1.3431457505076203 320. 0.0000000000000004 318.656854249492369 0. 317. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +440.499989924216834 312. 203.06787109375 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 458.6934394521714466 144. cm -0. 0. m -252.9921875 0. l -252.9921875 32. l +1. 0. 0. 1. 440.499989924216834 312. cm +3. 0. m +200.06787109375 0. l +201.724725343242369 0. 203.06787109375 1.3431457505076199 203.06787109375 3. c +203.06787109375 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -2354,7 +2579,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 468.6934394521714466 163.25 Tm +1. 0. 0. -1. 450.499989924216834 331.25 Tm <0056004b0048004800530056> Tj ET Q @@ -2362,17 +2587,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -458.6934394521714466 176. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +440.499989924216834 344. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 176. cm +1. 0. 0. 1. 440.499989924216834 344. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -2382,15 +2607,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 195.25 Tm +0.173 g +1. 0. 0. -1. 450.499989924216834 363.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 484.8872871084214466 185.25 cm +0.17 g +1. 0. 0. 1. 466.693837580466834 353.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -2435,28 +2660,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 654.9224433584214466 195.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 588.067861017966834 363.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -458.6934394521714466 208. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +440.499989924216834 376. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 208. cm +1. 0. 0. 1. 440.499989924216834 376. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -2466,37 +2691,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 227.25 Tm +0.235 g +1. 0. 0. -1. 450.499989924216834 395.25 Tm <004a00550052005800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 507.547353205466834 385.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.8262519521714466 227.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 588.067861017966834 395.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -458.6934394521714466 240. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +440.499989924216834 408. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 240. cm +1. 0. 0. 1. 440.499989924216834 408. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -2506,8 +2779,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 259.25 Tm +0.235 g +1. 0. 0. -1. 450.499989924216834 427.25 Tm <0051004400500048> Tj ET Q @@ -2515,28 +2788,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.3135566396714466 259.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 607.567861017966834 427.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -458.6934394521714466 272. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +440.499989924216834 440. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 272. cm +1. 0. 0. 1. 440.499989924216834 440. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -2546,8 +2819,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 291.25 Tm +0.235 g +1. 0. 0. -1. 450.499989924216834 459.25 Tm <004c004600520051> Tj ET Q @@ -2555,28 +2828,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.3135566396714466 291.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 607.567861017966834 459.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -458.6934394521714466 304. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +440.499989924216834 472. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 304. cm +1. 0. 0. 1. 440.499989924216834 472. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -2586,8 +2859,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 323.25 Tm +0.235 g +1. 0. 0. -1. 450.499989924216834 491.25 Tm <00580058004c0047> Tj ET Q @@ -2595,28 +2868,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.3135566396714466 323.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 607.567861017966834 491.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -458.6934394521714466 336. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +440.499989924216834 504. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 336. cm +1. 0. 0. 1. 440.499989924216834 504. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -2626,8 +2899,48 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 355.25 Tm +0.235 g +1. 0. 0. -1. 450.499989924216834 523.25 Tm +<00580058004c004700420050004400510044004a00480055> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 607.567861017966834 523.25 Tm +<019f011201c4019f> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +440.499989924216834 536. 203.06787109375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 440.499989924216834 536. cm +0. 0. m +203.06787109375 0. l +203.06787109375 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 450.499989924216834 555.25 Tm <0044005300530052004c005100570050004800510057> Tj ET Q @@ -2635,28 +2948,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.3135566396714466 355.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 607.567861017966834 555.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -458.6934394521714466 368. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +440.499989924216834 568. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 368. cm +1. 0. 0. 1. 440.499989924216834 568. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -2666,38 +2979,40 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 387.25 Tm -<00460044005100420059004c0048005a004200560057004400510047> Tj +0.235 g +1. 0. 0. -1. 450.499989924216834 587.25 Tm +<0050005200470048> Tj ET Q Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.8262519521714466 387.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 588.067861017966834 587.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -458.6934394521714466 400. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +440.499989924216834 600. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 400. cm +1. 0. 0. 1. 440.499989924216834 600. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l -0. 32. l +203.06787109375 0. l +203.06787109375 29. l +203.06787109375 30.6568542494923797 201.724725343242369 32. 200.06787109375 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -2706,78 +3021,56 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 419.25 Tm -<00460044005100420059004c0048005a004200560046004b004800470058004f0048> Tj +0.235 g +1. 0. 0. -1. 450.499989924216834 619.25 Tm +<005000520047004800420057004c0057004f0048> Tj ET Q Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.8262519521714466 419.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 607.567861017966834 619.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -458.6934394521714466 432. 1534.3366445212079725 980. re -W -n -q -q 0.95 g -1. 0. 0. 1. 458.6934394521714466 432. cm -0. 0. m -252.9921875 0. l -252.9921875 32. l -0. 32. l +0.6448035865788943 0. 0. 0.6448035865788943 240.1893295037369853 430.6780700347417223 cm +3. 0. m +274.798828125 0. l +276.455682374492369 0. 277.798828125 1.3431457505076199 277.798828125 3. c +277.798828125 413. l +277.798828125 414.656854249492369 276.455682374492369 416. 274.798828125 416. c +3. 416. l +1.3431457505076203 416. 0.0000000000000004 414.656854249492369 0. 413. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 451.25 Tm -<00460044005100420059004c0048005a00420057004800550055004c005700520055005c> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.8262519521714466 451.25 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -524.0678815998326172 480. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 664. 277.798828125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 524.0678815998326172 480. cm -0. 0. m -187.3955078125 0. l -187.3955078125 32. l +1. 0. 0. 1. 368.499989924216834 664. cm +3. 0. m +274.798828125 0. l +276.455682374492369 0. 277.798828125 1.3431457505076199 277.798828125 3. c +277.798828125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -2787,25 +3080,25 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 534.0678815998326172 499.25 Tm -<004400470050004c0051004c00560057005500440057005200550056> Tj +1. 0. 0. -1. 378.499989924216834 683.25 Tm +<0053005200560056004c0045004c004f004c0057004c00480056> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -524.0678815998326172 512. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 696. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 524.0678815998326172 512. cm +1. 0. 0. 1. 368.499989924216834 696. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -2815,15 +3108,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 531.25 Tm +0.173 g +1. 0. 0. -1. 378.499989924216834 715.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 550.2617292560826172 521.25 cm +0.17 g +1. 0. 0. 1. 394.693837580466834 705.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -2868,28 +3161,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 654.7002058185826172 531.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 715.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -524.0678815998326172 544. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 728. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 524.0678815998326172 544. cm +1. 0. 0. 1. 368.499989924216834 728. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -2899,37 +3192,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 563.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 747.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 436.150380549216834 737.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.6040144123326172 563.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 747.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -524.0678815998326172 576. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 760. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 524.0678815998326172 576. cm +1. 0. 0. 1. 368.499989924216834 760. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -2939,241 +3280,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 595.25 Tm -<00580058004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.0913190998326172 595.25 Tm -<00570048005b0057> Tj -ET -Q -Q -Q -Q -q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -434.3913698881360119 624. 1534.3366445212079725 980. re -W -n -q -q -0.19 0.41 0.59 rg -1. 0. 0. 1. 434.3913698881360119 624. cm -0. 0. m -279.06201171875 0. l -279.06201171875 32. l -0. 32. l -h -f -Q -q -q -BT -/F16 13 Tf -14.9499999999999993 TL -1. g -1. 0. 0. -1. 444.3913698881360119 643.25 Tm -<0050005200470048005500440057005200550056> Tj -ET -Q -Q -Q -Q -q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -434.3913698881360119 656. 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 434.3913698881360119 656. cm -0. 0. m -279.06201171875 0. l -279.06201171875 32. l -0. 32. l -h -f -Q -q -q -BT -/F16 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 675.25 Tm -<004c0047> Tj -ET -Q -Q -q -0.44 g -1. 0. 0. 1. 460.5852175443860119 665.25 cm -6.5625 0.9844000000000001 m -8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c -9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c -6.1734999999999998 6.8906000000000001 5.8022 6.8152999999999997 5.4619999999999997 6.6786000000000003 c -4.5937999999999999 7.5468999999999999 l -3.9375 7.5468999999999999 l -3.9375 8.5312999999999999 l -2.9531000000000001 8.5312999999999999 l -2.9531000000000001 9.5155999999999992 l -0.9844000000000001 9.5155999999999992 l -0.9844000000000001 7.5468999999999999 l -3.7360000000000002 4.7952000000000004 l -3.6518000000000002 4.5171000000000001 3.6092 4.2281000000000004 3.6093999999999999 3.9375 c -3.6093999999999999 2.3065000000000002 4.9314999999999998 0.9844000000000001 6.5625 0.9844000000000001 c -h -6.5625 0. m -4.3879999999999999 0. 2.625 1.7626999999999999 2.625 3.9375 c -2.625 4.1185999999999998 2.6373000000000002 4.2988999999999997 2.6619000000000002 4.4771999999999998 c -0.1441 6.9950000000000001 l -0.0519 7.0872999999999999 0. 7.2125000000000004 0. 7.343 c -0. 10.0077999999999996 l -0. 10.2797000000000001 0.2204 10.5 0.4922 10.5 c -3.4453 10.5 l -3.7170999999999998 10.5 3.9375 10.2797000000000001 3.9375 10.0077999999999996 c -3.9375 9.5155999999999992 l -4.4297000000000004 9.5155999999999992 l -4.7015000000000002 9.5155999999999992 4.9218999999999999 9.2952999999999992 4.9218999999999999 9.0234000000000005 c -4.9218999999999999 8.6133000000000006 l -5.7431999999999999 7.7895000000000003 l -6.0110000000000001 7.8464 6.2847999999999997 7.875 6.5625 7.875 c -8.7370000000000001 7.875 10.5 6.1123000000000003 10.5 3.9375 c -10.5 1.7629999999999999 8.7372999999999994 0. 6.5625 0. c -h -6.5625 2.9531000000000001 m -6.5625 3.4967999999999999 7.0031999999999996 3.9375 7.5468999999999999 3.9375 c -8.0905000000000005 3.9375 8.5312999999999999 3.4967999999999999 8.5312999999999999 2.9531000000000001 c -8.5312999999999999 2.4095 8.0905000000000005 1.9688000000000001 7.5468999999999999 1.9688000000000001 c -7.0031999999999996 1.9688000000000001 6.5625 2.4095 6.5625 2.9531000000000001 c -h -f -Q -q -q -BT -/F16 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 656.6901980131360688 675.25 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -434.3913698881360119 688. 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 434.3913698881360119 688. cm -0. 0. m -279.06201171875 0. l -279.06201171875 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 707.25 Tm -<0056004b0048004800530042004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 707.25 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -434.3913698881360119 720. 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 434.3913698881360119 720. cm -0. 0. m -279.06201171875 0. l -279.06201171875 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 739.25 Tm -<00580058004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 680.0813112943860688 739.25 Tm -<00570048005b0057> Tj -ET -Q -Q -Q -Q -q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -434.3913698881360119 752. 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 434.3913698881360119 752. cm -0. 0. m -279.06201171875 0. l -279.06201171875 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 771.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 779.25 Tm <004600440051004200440047004700420056004b0048004800530056> Tj ET Q @@ -3181,28 +3289,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 771.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 779.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -434.3913698881360119 784. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 792. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 434.3913698881360119 784. cm +1. 0. 0. 1. 368.499989924216834 792. cm 0. 0. m -279.06201171875 0. l -279.06201171875 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -3212,8 +3320,48 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 803.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 811.25 Tm +<00460044005100420059004c0048005a00420056004b0048004800530056> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 590.798818049216834 811.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 824. 277.798828125 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 368.499989924216834 824. cm +0. 0. m +277.798828125 0. l +277.798828125 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 378.499989924216834 843.25 Tm <004600440051004200440047004700420057004800550055004c005700520055005c> Tj ET Q @@ -3221,28 +3369,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 803.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 843.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -434.3913698881360119 816. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 856. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 434.3913698881360119 816. cm +1. 0. 0. 1. 368.499989924216834 856. cm 0. 0. m -279.06201171875 0. l -279.06201171875 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -3252,8 +3400,48 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 835.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 875.25 Tm +<00460044005100420059004c0048005a00420057004800550055004c005700520055005c> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 590.798818049216834 875.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 888. 277.798828125 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 368.499989924216834 888. cm +0. 0. m +277.798828125 0. l +277.798828125 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 378.499989924216834 907.25 Tm <00460044005100420050004400510044004a0048005500420057004800550055004c005700520055005c> Tj ET Q @@ -3261,28 +3449,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 835.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 907.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -434.3913698881360119 848. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 920. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 434.3913698881360119 848. cm +1. 0. 0. 1. 368.499989924216834 920. cm 0. 0. m -279.06201171875 0. l -279.06201171875 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -3292,8 +3480,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 867.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 939.25 Tm <0046004400510042004400470047004200560057004400510047> Tj ET Q @@ -3301,28 +3489,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 867.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 939.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -434.3913698881360119 880. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 952. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 434.3913698881360119 880. cm +1. 0. 0. 1. 368.499989924216834 952. cm 0. 0. m -279.06201171875 0. l -279.06201171875 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -3332,8 +3520,48 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 899.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 971.25 Tm +<00460044005100420059004c0048005a004200560057004400510047> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 590.798818049216834 971.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 984. 277.798828125 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 368.499989924216834 984. cm +0. 0. m +277.798828125 0. l +277.798828125 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 378.499989924216834 1003.25 Tm <00460044005100420050004400510044004a00480055004200560057004400510047> Tj ET Q @@ -3341,28 +3569,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 899.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 1003.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -434.3913698881360119 912. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 1016. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 434.3913698881360119 912. cm +1. 0. 0. 1. 368.499989924216834 1016. cm 0. 0. m -279.06201171875 0. l -279.06201171875 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -3372,8 +3600,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 931.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 1035.25 Tm <0046004400510042004400470047004200560046004b004800470058004f0048> Tj ET Q @@ -3381,29 +3609,89 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 931.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 1035.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -486.3578778226521422 968. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +368.499989924216834 1048. 277.798828125 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 368.499989924216834 1048. cm +0. 0. m +277.798828125 0. l +277.798828125 29. l +277.798828125 30.6568542494923797 276.455682374492369 32. 274.798828125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 378.499989924216834 1067.25 Tm +<00460044005100420059004c0048005a004200560046004b004800470058004f0048> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 590.798818049216834 1067.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 274.5667950904929171 735.0253628999798821 cm +3. 0. m +222.0751953125 0. l +223.732049561992369 0. 225.0751953125 1.3431457505076199 225.0751953125 3. c +225.0751953125 125. l +225.0751953125 126.6568542494923832 223.732049561992369 128. 222.0751953125 128. c +3. 128. l +1.3431457505076203 128. 0.0000000000000004 126.6568542494923832 0. 125. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +421.8146213907552919 1136. 225.0751953125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 486.3578778226521422 968. cm -0. 0. m -226.33837890625 0. l -226.33837890625 32. l +1. 0. 0. 1. 421.8146213907552919 1136. cm +3. 0. m +222.0751953125 0. l +223.732049561992369 0. 225.0751953125 1.3431457505076199 225.0751953125 3. c +225.0751953125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -3413,7 +3701,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 496.3578778226521422 987.25 Tm +1. 0. 0. -1. 431.8146213907552919 1155.25 Tm <004a00550052005800530056> Tj ET Q @@ -3421,17 +3709,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -486.3578778226521422 1000. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +421.8146213907552919 1168. 225.0751953125 32. re W n q q 0.95 g -1. 0. 0. 1. 486.3578778226521422 1000. cm +1. 0. 0. 1. 421.8146213907552919 1168. cm 0. 0. m -226.33837890625 0. l -226.33837890625 32. l +225.0751953125 0. l +225.0751953125 32. l 0. 32. l h f @@ -3441,15 +3729,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 496.3578778226521422 1019.25 Tm +0.173 g +1. 0. 0. -1. 431.8146213907552919 1187.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 512.551725478902199 1009.25 cm +0.17 g +1. 0. 0. 1. 448.0084690470052919 1177.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -3494,28 +3782,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 655.933073135152199 1019.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 591.3898167032552919 1187.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -486.3578778226521422 1032. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +421.8146213907552919 1200. 225.0751953125 32. re W n q q 0.95 g -1. 0. 0. 1. 486.3578778226521422 1032. cm +1. 0. 0. 1. 421.8146213907552919 1200. cm 0. 0. m -226.33837890625 0. l -226.33837890625 32. l +225.0751953125 0. l +225.0751953125 32. l 0. 32. l h f @@ -3525,8 +3813,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 496.3578778226521422 1051.25 Tm +0.235 g +1. 0. 0. -1. 431.8146213907552919 1219.25 Tm <004a00550052005800530042005100580050004500480055> Tj ET Q @@ -3534,29 +3822,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 659.836881728902199 1051.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 591.3898167032552919 1219.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -486.3578778226521422 1064. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +421.8146213907552919 1232. 225.0751953125 32. re W n q q 0.95 g -1. 0. 0. 1. 486.3578778226521422 1064. cm +1. 0. 0. 1. 421.8146213907552919 1232. cm 0. 0. m -226.33837890625 0. l -226.33837890625 32. l -0. 32. l +225.0751953125 0. l +225.0751953125 29. l +225.0751953125 30.6568542494923797 223.732049561992369 32. 222.0751953125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -3565,8 +3855,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 496.3578778226521422 1083.25 Tm +0.235 g +1. 0. 0. -1. 431.8146213907552919 1251.25 Tm <0056004b0044005500480042004b00440056004b> Tj ET Q @@ -3574,29 +3864,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 679.324186416402199 1083.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 610.8898167032552919 1251.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -524.0678815998326172 0. 1534.3366445212079725 980. re +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 298.8823407759225574 110.8554910916101903 cm +3. 0. m +183.13232421875 0. l +184.789178468242369 0. 186.13232421875 1.3431457505076199 186.13232421875 3. c +186.13232421875 125. l +186.13232421875 126.6568542494923832 184.789178468242369 128. 183.13232421875 128. c +3. 128. l +1.3431457505076203 128. 0.0000000000000004 126.6568542494923832 0. 125. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +459.524625167935767 168. 186.13232421875 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 524.0678815998326172 0. cm -0. 0. m -187.3955078125 0. l -187.3955078125 32. l +1. 0. 0. 1. 459.524625167935767 168. cm +3. 0. m +183.13232421875 0. l +184.789178468242369 0. 186.13232421875 1.3431457505076199 186.13232421875 3. c +186.13232421875 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -3606,7 +3914,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 534.0678815998326172 19.25 Tm +1. 0. 0. -1. 469.524625167935767 187.25 Tm <005600580045005600460055004c00530057004c00520051> Tj ET Q @@ -3614,17 +3922,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -524.0678815998326172 32. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +459.524625167935767 200. 186.13232421875 32. re W n q q 0.95 g -1. 0. 0. 1. 524.0678815998326172 32. cm +1. 0. 0. 1. 459.524625167935767 200. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l +186.13232421875 0. l +186.13232421875 32. l 0. 32. l h f @@ -3634,15 +3942,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 51.25 Tm +0.173 g +1. 0. 0. -1. 469.524625167935767 219.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 550.2617292560826172 41.25 cm +0.17 g +1. 0. 0. 1. 485.718472824185767 209.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -3687,28 +3995,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 654.7002058185826172 51.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.1569493866857101 219.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -524.0678815998326172 64. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +459.524625167935767 232. 186.13232421875 32. re W n q q 0.95 g -1. 0. 0. 1. 524.0678815998326172 64. cm +1. 0. 0. 1. 459.524625167935767 232. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l +186.13232421875 0. l +186.13232421875 32. l 0. 32. l h f @@ -3718,38 +4026,88 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 83.25 Tm +0.235 g +1. 0. 0. -1. 469.524625167935767 251.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 527.1750157929357101 241.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.6040144123326172 83.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.1569493866857101 251.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -524.0678815998326172 96. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +459.524625167935767 264. 186.13232421875 32. re W n q q 0.95 g -1. 0. 0. 1. 524.0678815998326172 96. cm +1. 0. 0. 1. 459.524625167935767 264. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l -0. 32. l +186.13232421875 0. l +186.13232421875 29. l +186.13232421875 30.6568542494923797 184.789178468242369 32. 183.13232421875 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -3758,8 +4116,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 115.25 Tm +0.235 g +1. 0. 0. -1. 469.524625167935767 283.25 Tm <00570052004e00480051> Tj ET Q @@ -3767,29 +4125,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.0913190998326172 115.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 609.6569493866857101 283.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 160. 1534.3366445212079725 980. re +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 298.3362436796673478 2.528488546355959 cm +3. 0. m +183.13232421875 0. l +184.789178468242369 0. 186.13232421875 1.3431457505076199 186.13232421875 3. c +186.13232421875 125. l +186.13232421875 126.6568542494923832 184.789178468242369 128. 183.13232421875 128. c +3. 128. l +1.3431457505076203 128. 0.0000000000000004 126.6568542494923832 0. 125. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +458.677705101698848 0. 186.13232421875 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 817.0432463561137411 160. cm -0. 0. m -228.744140625 0. l -228.744140625 32. l +1. 0. 0. 1. 458.677705101698848 0. cm +3. 0. m +183.13232421875 0. l +184.789178468242369 0. 186.13232421875 1.3431457505076199 186.13232421875 3. c +186.13232421875 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -3799,7 +4175,268 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 827.0432463561137411 179.25 Tm +1. 0. 0. -1. 468.677705101698848 19.25 Tm +<004500440047004a00480056> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +458.677705101698848 32. 186.13232421875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 458.677705101698848 32. cm +0. 0. m +186.13232421875 0. l +186.13232421875 32. l +0. 32. l +h +f +Q +q +q +BT +/F16 13 Tf +14.9499999999999993 TL +0.173 g +1. 0. 0. -1. 468.677705101698848 51.25 Tm +<004c0047> Tj +ET +Q +Q +q +0.17 g +1. 0. 0. 1. 484.871552757948848 41.25 cm +6.5625 0.9844000000000001 m +8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c +9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c +6.1734999999999998 6.8906000000000001 5.8022 6.8152999999999997 5.4619999999999997 6.6786000000000003 c +4.5937999999999999 7.5468999999999999 l +3.9375 7.5468999999999999 l +3.9375 8.5312999999999999 l +2.9531000000000001 8.5312999999999999 l +2.9531000000000001 9.5155999999999992 l +0.9844000000000001 9.5155999999999992 l +0.9844000000000001 7.5468999999999999 l +3.7360000000000002 4.7952000000000004 l +3.6518000000000002 4.5171000000000001 3.6092 4.2281000000000004 3.6093999999999999 3.9375 c +3.6093999999999999 2.3065000000000002 4.9314999999999998 0.9844000000000001 6.5625 0.9844000000000001 c +h +6.5625 0. m +4.3879999999999999 0. 2.625 1.7626999999999999 2.625 3.9375 c +2.625 4.1185999999999998 2.6373000000000002 4.2988999999999997 2.6619000000000002 4.4771999999999998 c +0.1441 6.9950000000000001 l +0.0519 7.0872999999999999 0. 7.2125000000000004 0. 7.343 c +0. 10.0077999999999996 l +0. 10.2797000000000001 0.2204 10.5 0.4922 10.5 c +3.4453 10.5 l +3.7170999999999998 10.5 3.9375 10.2797000000000001 3.9375 10.0077999999999996 c +3.9375 9.5155999999999992 l +4.4297000000000004 9.5155999999999992 l +4.7015000000000002 9.5155999999999992 4.9218999999999999 9.2952999999999992 4.9218999999999999 9.0234000000000005 c +4.9218999999999999 8.6133000000000006 l +5.7431999999999999 7.7895000000000003 l +6.0110000000000001 7.8464 6.2847999999999997 7.875 6.5625 7.875 c +8.7370000000000001 7.875 10.5 6.1123000000000003 10.5 3.9375 c +10.5 1.7629999999999999 8.7372999999999994 0. 6.5625 0. c +h +6.5625 2.9531000000000001 m +6.5625 3.4967999999999999 7.0031999999999996 3.9375 7.5468999999999999 3.9375 c +8.0905000000000005 3.9375 8.5312999999999999 3.4967999999999999 8.5312999999999999 2.9531000000000001 c +8.5312999999999999 2.4095 8.0905000000000005 1.9688000000000001 7.5468999999999999 1.9688000000000001 c +7.0031999999999996 1.9688000000000001 6.5625 2.4095 6.5625 2.9531000000000001 c +h +f +Q +q +q +BT +/F18 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 589.310029320448848 51.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +458.677705101698848 64. 186.13232421875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 458.677705101698848 64. cm +0. 0. m +186.13232421875 0. l +186.13232421875 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 468.677705101698848 83.25 Tm +<0056004b0048004800530042004c0047> Tj +ET +Q +Q +q +0.24 g +0.02 0. 0. 0.02 526.328095726698848 73.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 589.310029320448848 83.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +458.677705101698848 96. 186.13232421875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 458.677705101698848 96. cm +0. 0. m +186.13232421875 0. l +186.13232421875 29. l +186.13232421875 30.6568542494923797 184.789178468242369 32. 183.13232421875 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 468.677705101698848 115.25 Tm +<00540058004400510057004c0057005c> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 589.310029320448848 115.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 487.7939067500323631 214.0240649442332597 cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 381. l +216.2392578125 382.656854249492369 214.896112061992369 384. 213.2392578125 384. c +3. 384. l +1.3431457505076203 384. 0.0000000000000004 382.656854249492369 0. 381. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 328. 216.2392578125 32. re +W +n +q +q +0.19 0.41 0.59 rg +1. 0. 0. 1. 752.499989924216834 328. cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 32. l +0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +q +BT +/F16 13 Tf +14.9499999999999993 TL +1. g +1. 0. 0. -1. 762.499989924216834 347.25 Tm <004b0052005800560048> Tj ET Q @@ -3807,17 +4444,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 192. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 360. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 192. cm +1. 0. 0. 1. 752.499989924216834 360. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -3827,15 +4464,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 211.25 Tm +0.173 g +1. 0. 0. -1. 762.499989924216834 379.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 843.2370940123637411 201.25 cm +0.17 g +1. 0. 0. 1. 778.693837580466834 369.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -3880,28 +4517,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 989.0242033873637411 211.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 913.239247736716834 379.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 224. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 392. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 224. cm +1. 0. 0. 1. 752.499989924216834 392. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -3911,48 +4548,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 243.25 Tm -<004a00550052005800530042004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 992.9280119811137411 243.25 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 256. 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 817.0432463561137411 256. cm -0. 0. m -228.744140625 0. l -228.744140625 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 275.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 411.25 Tm <0057004c0057004f0048> Tj ET Q @@ -3960,28 +4557,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 275.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 411.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 288. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 424. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 288. cm +1. 0. 0. 1. 752.499989924216834 424. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -3991,8 +4588,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 307.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 443.25 Tm <005100580050004500480055> Tj ET Q @@ -4000,28 +4597,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 307.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 443.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 320. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 456. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 320. cm +1. 0. 0. 1. 752.499989924216834 456. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -4031,8 +4628,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 339.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 475.25 Tm <00530052004c005100570056> Tj ET Q @@ -4040,28 +4637,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 339.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 475.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 352. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 488. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 352. cm +1. 0. 0. 1. 752.499989924216834 488. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -4071,8 +4668,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 371.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 507.25 Tm <00530052004c0051005700560042005100580050004500480055> Tj ET Q @@ -4080,28 +4677,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 371.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 507.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 384. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 520. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 384. cm +1. 0. 0. 1. 752.499989924216834 520. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -4111,8 +4708,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 403.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 539.25 Tm <004a00480052> Tj ET Q @@ -4120,28 +4717,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 403.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 539.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 416. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 552. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 416. cm +1. 0. 0. 1. 752.499989924216834 552. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -4151,8 +4748,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 435.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 571.25 Tm <0052005600500042004c0047> Tj ET Q @@ -4160,28 +4757,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 435.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 571.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 448. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 584. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 448. cm +1. 0. 0. 1. 752.499989924216834 584. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -4191,8 +4788,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 467.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 603.25 Tm <0056004800570057004f00480050004800510057> Tj ET Q @@ -4200,28 +4797,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 467.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 603.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 480. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 616. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 480. cm +1. 0. 0. 1. 752.499989924216834 616. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -4231,8 +4828,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 499.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 635.25 Tm <00470048005600460055004c00530057004c00520051> Tj ET Q @@ -4240,28 +4837,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 499.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 635.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 512. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 648. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 512. cm +1. 0. 0. 1. 752.499989924216834 648. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -4271,8 +4868,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 531.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 667.25 Tm <0046005500480044005700480047004200440057> Tj ET Q @@ -4280,29 +4877,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 970.4953947936137411 531.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 900.239247736716834 667.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 544. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 680. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 544. cm +1. 0. 0. 1. 752.499989924216834 680. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l -0. 32. l +216.2392578125 0. l +216.2392578125 29. l +216.2392578125 30.6568542494923797 214.896112061992369 32. 213.2392578125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -4311,8 +4910,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 563.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 699.25 Tm <0058005300470044005700480047004200440057> Tj ET Q @@ -4320,29 +4919,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 970.4953947936137411 563.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 900.239247736716834 699.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 160. 1534.3366445212079725 980. re +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 683.8141970700162346 214.0240649442332597 cm +3. 0. m +245.2314453125 0. l +246.888299561992369 0. 248.2314453125 1.3431457505076199 248.2314453125 3. c +248.2314453125 381. l +248.2314453125 382.656854249492369 246.888299561992369 384. 245.2314453125 384. c +3. 384. l +1.3431457505076203 384. 0.0000000000000004 382.656854249492369 0. 381. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 328. 248.2314453125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 1121.0432463561137411 160. cm -0. 0. m -248.7138671875 0. l -248.7138671875 32. l +1. 0. 0. 1. 1056.499989924216834 328. cm +3. 0. m +245.2314453125 0. l +246.888299561992369 0. 248.2314453125 1.3431457505076199 248.2314453125 3. c +248.2314453125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -4352,7 +4969,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 1131.0432463561137411 179.25 Tm +1. 0. 0. -1. 1066.499989924216834 347.25 Tm <00480051005700550044005100460048> Tj ET Q @@ -4360,17 +4977,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 192. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 360. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 192. cm +1. 0. 0. 1. 1056.499989924216834 360. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -4380,15 +4997,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 211.25 Tm +0.173 g +1. 0. 0. -1. 1066.499989924216834 379.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 1147.2370940123637411 201.25 cm +0.17 g +1. 0. 0. 1. 1082.693837580466834 369.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -4433,28 +5050,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1312.9939299498637411 211.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1249.231435236716834 379.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 224. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 392. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 224. cm +1. 0. 0. 1. 1056.499989924216834 392. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -4464,37 +5081,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 243.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 411.25 Tm <004b00520058005600480042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1124.689931330466834 401.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1316.8977385436137411 243.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1249.231435236716834 411.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 256. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 424. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 256. cm +1. 0. 0. 1. 1056.499989924216834 424. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -4504,8 +5169,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 275.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 443.25 Tm <004800510057005500440051004600480042005100580050004500480055> Tj ET Q @@ -4513,28 +5178,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1316.8977385436137411 275.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1249.231435236716834 443.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 288. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 456. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 288. cm +1. 0. 0. 1. 1056.499989924216834 456. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -4544,8 +5209,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 307.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 475.25 Tm <0057004c0057004f0048> Tj ET Q @@ -4553,28 +5218,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 307.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 475.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 320. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 488. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 320. cm +1. 0. 0. 1. 1056.499989924216834 488. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -4584,8 +5249,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 339.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 507.25 Tm <00530052004c005100570056> Tj ET Q @@ -4593,28 +5258,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 339.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 507.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 352. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 520. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 352. cm +1. 0. 0. 1. 1056.499989924216834 520. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -4624,8 +5289,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 371.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 539.25 Tm <00530052004c0051005700560042005100580050004500480055> Tj ET Q @@ -4633,28 +5298,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 371.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 539.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 384. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 552. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 384. cm +1. 0. 0. 1. 1056.499989924216834 552. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -4664,8 +5329,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 403.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 571.25 Tm <0049004f0052005200550056004200540058004400510057004c0057005c> Tj ET Q @@ -4673,28 +5338,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 403.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 571.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 416. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 584. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 416. cm +1. 0. 0. 1. 1056.499989924216834 584. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -4704,8 +5369,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 435.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 603.25 Tm <0044005300440055005700500048005100570056004200540058004400510057004c0057005c> Tj ET Q @@ -4713,28 +5378,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 435.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 603.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 448. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 616. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 448. cm +1. 0. 0. 1. 1056.499989924216834 616. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -4744,8 +5409,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 467.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 635.25 Tm <00470048005600460055004c00530057004c00520051> Tj ET Q @@ -4753,28 +5418,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 467.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 635.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 480. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 648. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 480. cm +1. 0. 0. 1. 1056.499989924216834 648. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -4784,8 +5449,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 499.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 667.25 Tm <0046005500480044005700480047004200440057> Tj ET Q @@ -4793,29 +5458,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1294.4651213561137411 499.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1236.231435236716834 667.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 512. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 680. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 512. cm +1. 0. 0. 1. 1056.499989924216834 680. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l -0. 32. l +248.2314453125 0. l +248.2314453125 29. l +248.2314453125 30.6568542494923797 246.888299561992369 32. 245.2314453125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -4824,8 +5491,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 531.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 699.25 Tm <0058005300470044005700480047004200440057> Tj ET Q @@ -4833,29 +5500,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1294.4651213561137411 531.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1236.231435236716834 699.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.0432463561137411 160. 1534.3366445212079725 980. re +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 895.3097734678934785 214.0240649442332597 cm +3. 0. m +206.25048828125 0. l +207.907342530742369 0. 209.25048828125 1.3431457505076199 209.25048828125 3. c +209.25048828125 285. l +209.25048828125 286.656854249492369 207.907342530742369 288. 206.25048828125 288. c +3. 288. l +1.3431457505076203 288. 0.0000000000000004 286.656854249492369 0. 285. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1384.499989924216834 328. 209.25048828125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 1449.0432463561137411 160. cm -0. 0. m -221.75537109375 0. l -221.75537109375 32. l +1. 0. 0. 1. 1384.499989924216834 328. cm +3. 0. m +206.25048828125 0. l +207.907342530742369 0. 209.25048828125 1.3431457505076199 209.25048828125 3. c +209.25048828125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -4865,7 +5550,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 1459.0432463561137411 179.25 Tm +1. 0. 0. -1. 1394.499989924216834 347.25 Tm <004800510057005500440051004600480042004b004c0056005700520055005c> Tj ET Q @@ -4873,17 +5558,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.0432463561137411 192. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1384.499989924216834 360. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 192. cm +1. 0. 0. 1. 1384.499989924216834 360. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -4893,15 +5578,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 211.25 Tm +0.173 g +1. 0. 0. -1. 1394.499989924216834 379.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 1475.2370940123637411 201.25 cm +0.17 g +1. 0. 0. 1. 1410.693837580466834 369.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -4946,28 +5631,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1614.0354338561137411 211.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1538.250478205466834 379.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.0432463561137411 224. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1384.499989924216834 392. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 224. cm +1. 0. 0. 1. 1384.499989924216834 392. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -4977,37 +5662,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 243.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 411.25 Tm <004800510057005500440051004600480042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1469.371571955466834 401.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1617.9392424498637411 243.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1538.250478205466834 411.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.0432463561137411 256. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1384.499989924216834 424. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 256. cm +1. 0. 0. 1. 1384.499989924216834 424. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -5017,8 +5750,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 275.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 443.25 Tm <0051004400500048> Tj ET Q @@ -5026,28 +5759,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1637.4265471373637411 275.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1557.750478205466834 443.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.0432463561137411 288. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1384.499989924216834 456. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 288. cm +1. 0. 0. 1. 1384.499989924216834 456. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -5057,8 +5790,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 307.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 475.25 Tm <0047004400570048004200560057004400550057> Tj ET Q @@ -5066,28 +5799,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1595.5066252623637411 307.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1525.250478205466834 475.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.0432463561137411 320. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1384.499989924216834 488. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 320. cm +1. 0. 0. 1. 1384.499989924216834 488. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -5097,8 +5830,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 339.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 507.25 Tm <00470044005700480042004800510047> Tj ET Q @@ -5106,28 +5839,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1595.5066252623637411 339.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1525.250478205466834 507.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.0432463561137411 352. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1384.499989924216834 520. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 352. cm +1. 0. 0. 1. 1384.499989924216834 520. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -5137,37 +5870,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 371.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 539.25 Tm <004a00550052005800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1451.547353205466834 529.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1617.9392424498637411 371.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1538.250478205466834 539.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.0432463561137411 384. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1384.499989924216834 552. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 384. cm +1. 0. 0. 1. 1384.499989924216834 552. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -5177,38 +5958,88 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 403.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 571.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1452.150380549216834 561.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1637.4265471373637411 403.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1538.250478205466834 571.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.0432463561137411 416. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1384.499989924216834 584. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 416. cm +1. 0. 0. 1. 1384.499989924216834 584. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l -0. 32. l +209.25048828125 0. l +209.25048828125 29. l +209.25048828125 30.6568542494923797 207.907342530742369 32. 206.25048828125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -5217,8 +6048,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 435.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 603.25 Tm <005a00520055004e004c0051004a> Tj ET Q @@ -5226,29 +6057,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1617.9392424498637411 435.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1538.250478205466834 603.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1450.1588988345024518 752. 1534.3366445212079725 980. re +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 896.0291501873343805 595.7477881989386788 cm +3. 0. m +254.1181640625 0. l +255.775018311992369 0. 257.1181640625 1.3431457505076199 257.1181640625 3. c +257.1181640625 317. l +257.1181640625 318.656854249492369 255.775018311992369 320. 254.1181640625 320. c +3. 320. l +1.3431457505076203 320. 0.0000000000000004 318.656854249492369 0. 317. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.6156424026057721 920. 257.1181640625 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 1450.1588988345024518 752. cm -0. 0. m -258.38134765625 0. l -258.38134765625 32. l +1. 0. 0. 1. 1385.6156424026057721 920. cm +3. 0. m +254.1181640625 0. l +255.775018311992369 0. 257.1181640625 1.3431457505076199 257.1181640625 3. c +257.1181640625 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -5258,7 +6107,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 1460.1588988345024518 771.25 Tm +1. 0. 0. -1. 1395.6156424026057721 939.25 Tm <0044005300440055005700500048005100570056> Tj ET Q @@ -5266,17 +6115,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1450.1588988345024518 784. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.6156424026057721 952. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 784. cm +1. 0. 0. 1. 1385.6156424026057721 952. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -5286,15 +6135,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 803.25 Tm +0.173 g +1. 0. 0. -1. 1395.6156424026057721 971.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 1476.3527464907524518 793.25 cm +0.17 g +1. 0. 0. 1. 1411.8094900588557721 961.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -5339,28 +6188,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1651.7770628970024518 803.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 971.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1450.1588988345024518 816. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.6156424026057721 984. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 816. cm +1. 0. 0. 1. 1385.6156424026057721 984. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -5370,37 +6219,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 835.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1003.25 Tm <004800510057005500440051004600480042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1470.4872244338557721 993.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1655.6808714907524518 835.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 1003.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1450.1588988345024518 848. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.6156424026057721 1016. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 848. cm +1. 0. 0. 1. 1385.6156424026057721 1016. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -5410,8 +6307,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 867.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1035.25 Tm <0044005300440055005700500048005100570042005100580050004500480055> Tj ET Q @@ -5419,28 +6316,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1655.6808714907524518 867.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 1035.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1450.1588988345024518 880. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.6156424026057721 1048. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 880. cm +1. 0. 0. 1. 1385.6156424026057721 1048. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -5450,8 +6347,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 899.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1067.25 Tm <0057004c0057004f0048> Tj ET Q @@ -5459,28 +6356,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1675.1681761782524518 899.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1606.7338064651057721 1067.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1450.1588988345024518 912. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.6156424026057721 1080. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 912. cm +1. 0. 0. 1. 1385.6156424026057721 1080. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -5490,8 +6387,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 931.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1099.25 Tm <0049004f00520052005500560042005100580050004500480055> Tj ET Q @@ -5499,28 +6396,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1655.6808714907524518 931.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 1099.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1450.1588988345024518 944. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.6156424026057721 1112. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 944. cm +1. 0. 0. 1. 1385.6156424026057721 1112. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -5530,8 +6427,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 963.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1131.25 Tm <005600570044005700580056> Tj ET Q @@ -5539,28 +6436,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1655.6808714907524518 963.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 1131.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1450.1588988345024518 976. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.6156424026057721 1144. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 976. cm +1. 0. 0. 1. 1385.6156424026057721 1144. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -5570,8 +6467,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 995.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1163.25 Tm <00470048005600460055004c00530057004c00520051> Tj ET Q @@ -5579,28 +6476,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1675.1681761782524518 995.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1606.7338064651057721 1163.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1450.1588988345024518 1008. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.6156424026057721 1176. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 1008. cm +1. 0. 0. 1. 1385.6156424026057721 1176. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -5610,38 +6507,88 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 1027.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1195.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1453.2660330276057721 1185.3800000000001091 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1675.1681761782524518 1027.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 1195.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1450.1588988345024518 1040. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.6156424026057721 1208. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 1040. cm +1. 0. 0. 1. 1385.6156424026057721 1208. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l -0. 32. l +257.1181640625 0. l +257.1181640625 29. l +257.1181640625 30.6568542494923797 255.775018311992369 32. 254.1181640625 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -5650,8 +6597,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 1059.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1227.25 Tm <0058005300470044005700480047004200440057> Tj ET Q @@ -5659,29 +6606,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1633.2482543032524518 1059.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1574.2338064651057721 1227.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.7430305741261236 488. 1534.3366445212079725 980. re +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 895.7609968414992636 425.5196413421105603 cm +3. 0. m +221.1103515625 0. l +222.767205811992369 0. 224.1103515625 1.3431457505076199 224.1103515625 3. c +224.1103515625 221. l +224.1103515625 222.656854249492369 222.767205811992369 224. 221.1103515625 224. c +3. 224. l +1.3431457505076203 224. 0.0000000000000004 222.656854249492369 0. 221. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.1997741422292165 656. 224.1103515625 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 1449.7430305741261236 488. cm -0. 0. m -225.37353515625 0. l -225.37353515625 32. l +1. 0. 0. 1. 1385.1997741422292165 656. cm +3. 0. m +221.1103515625 0. l +222.767205811992369 0. 224.1103515625 1.3431457505076199 224.1103515625 3. c +224.1103515625 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -5691,7 +6656,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 1459.7430305741261236 507.25 Tm +1. 0. 0. -1. 1395.1997741422292165 675.25 Tm <00440053004400550057005000480051005700560042004b004c0056005700520055005c> Tj ET Q @@ -5699,17 +6664,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.7430305741261236 520. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.1997741422292165 688. 224.1103515625 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.7430305741261236 520. cm +1. 0. 0. 1. 1385.1997741422292165 688. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l +224.1103515625 0. l +224.1103515625 32. l 0. 32. l h f @@ -5719,15 +6684,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 539.25 Tm +0.173 g +1. 0. 0. -1. 1395.1997741422292165 707.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 1475.9368782303761236 529.25 cm +0.17 g +1. 0. 0. 1. 1411.3936217984792165 697.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -5772,28 +6737,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1618.3533821366261236 539.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1553.8101257047292165 707.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.7430305741261236 552. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.1997741422292165 720. 224.1103515625 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.7430305741261236 552. cm +1. 0. 0. 1. 1385.1997741422292165 720. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l +224.1103515625 0. l +224.1103515625 32. l 0. 32. l h f @@ -5803,37 +6768,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 571.25 Tm +0.235 g +1. 0. 0. -1. 1395.1997741422292165 739.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1452.8501647672292165 729.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1641.7444954178761236 571.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1553.8101257047292165 739.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.7430305741261236 584. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.1997741422292165 752. 224.1103515625 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.7430305741261236 584. cm +1. 0. 0. 1. 1385.1997741422292165 752. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l +224.1103515625 0. l +224.1103515625 32. l 0. 32. l h f @@ -5843,37 +6856,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 603.25 Tm +0.235 g +1. 0. 0. -1. 1395.1997741422292165 771.25 Tm <00440053004400550057005000480051005700560042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1486.6133483609792165 761.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1622.2571907303761236 603.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1553.8101257047292165 771.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.7430305741261236 616. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.1997741422292165 784. 224.1103515625 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.7430305741261236 616. cm +1. 0. 0. 1. 1385.1997741422292165 784. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l +224.1103515625 0. l +224.1103515625 32. l 0. 32. l h f @@ -5883,8 +6944,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 635.25 Tm +0.235 g +1. 0. 0. -1. 1395.1997741422292165 803.25 Tm <005600570044005700580056> Tj ET Q @@ -5892,28 +6953,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1622.2571907303761236 635.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1553.8101257047292165 803.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.7430305741261236 648. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.1997741422292165 816. 224.1103515625 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.7430305741261236 648. cm +1. 0. 0. 1. 1385.1997741422292165 816. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l +224.1103515625 0. l +224.1103515625 32. l 0. 32. l h f @@ -5923,8 +6984,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 667.25 Tm +0.235 g +1. 0. 0. -1. 1395.1997741422292165 835.25 Tm <00470048005600460055004c00530057004c00520051> Tj ET Q @@ -5932,29 +6993,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1641.7444954178761236 667.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1573.3101257047292165 835.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1449.7430305741261236 680. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1385.1997741422292165 848. 224.1103515625 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.7430305741261236 680. cm +1. 0. 0. 1. 1385.1997741422292165 848. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l -0. 32. l +224.1103515625 0. l +224.1103515625 29. l +224.1103515625 30.6568542494923797 222.767205811992369 32. 221.1103515625 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -5963,8 +7026,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 699.25 Tm +0.235 g +1. 0. 0. -1. 1395.1997741422292165 867.25 Tm <0046005500480044005700480047004200440057> Tj ET Q @@ -5972,29 +7035,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1599.8245735428761236 699.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1540.8101257047292165 867.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 618.5554599719099542 1534.3366445212079725 980. re +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 487.7939067500323631 509.7022701794554109 cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 381. l +216.2392578125 382.656854249492369 214.896112061992369 384. 213.2392578125 384. c +3. 384. l +1.3431457505076203 384. 0.0000000000000004 382.656854249492369 0. 381. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 786.5554599719099542 216.2392578125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 817.0432463561137411 618.5554599719099542 cm -0. 0. m -228.744140625 0. l -228.744140625 32. l +1. 0. 0. 1. 752.499989924216834 786.5554599719099542 cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -6004,7 +7085,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 827.0432463561137411 637.8054599719099542 Tm +1. 0. 0. -1. 762.499989924216834 805.8054599719099542 Tm <004b00520050004800560057004800440047> Tj ET Q @@ -6012,17 +7093,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 650.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 818.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 650.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 818.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -6032,15 +7113,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 669.8054599719099542 Tm +0.173 g +1. 0. 0. -1. 762.499989924216834 837.8054599719099542 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 843.2370940123637411 659.8054599719099542 cm +0.17 g +1. 0. 0. 1. 778.693837580466834 827.8054599719099542 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -6085,28 +7166,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 989.0242033873637411 669.8054599719099542 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 913.239247736716834 837.8054599719099542 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 682.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 850.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 682.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 850.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -6116,48 +7197,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 701.8054599719099542 Tm -<004a00550052005800530042004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 992.9280119811137411 701.8054599719099542 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 714.5554599719099542 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 817.0432463561137411 714.5554599719099542 cm -0. 0. m -228.744140625 0. l -228.744140625 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 733.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 869.8054599719099542 Tm <0057004c0057004f0048> Tj ET Q @@ -6165,28 +7206,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 733.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 869.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 746.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 882.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 746.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 882.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -6196,8 +7237,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 765.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 901.8054599719099542 Tm <005100580050004500480055> Tj ET Q @@ -6205,28 +7246,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 765.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 901.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 778.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 914.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 778.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 914.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -6236,8 +7277,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 797.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 933.8054599719099542 Tm <00530052004c005100570056> Tj ET Q @@ -6245,28 +7286,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 797.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 933.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 810.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 946.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 810.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 946.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -6276,8 +7317,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 829.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 965.8054599719099542 Tm <00530052004c005100570042004c0046005200510056> Tj ET Q @@ -6285,28 +7326,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 829.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 965.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 842.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 978.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 842.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 978.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -6316,8 +7357,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 861.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 997.8054599719099542 Tm <004a00480052> Tj ET Q @@ -6325,28 +7366,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 861.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 997.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 874.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 1010.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 874.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 1010.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -6356,8 +7397,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 893.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 1029.8054599719098405 Tm <0052005600500042004c0047> Tj ET Q @@ -6365,28 +7406,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 893.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 1029.8054599719098405 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 906.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 1042.5554599719098405 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 906.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 1042.5554599719098405 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -6396,8 +7437,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 925.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 1061.8054599719098405 Tm <0056004800570057004f00480050004800510057> Tj ET Q @@ -6405,28 +7446,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 925.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 1061.8054599719098405 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 938.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 1074.5554599719098405 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 938.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 1074.5554599719098405 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -6436,8 +7477,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 957.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 1093.8054599719098405 Tm <00470048005600460055004c00530057004c00520051> Tj ET Q @@ -6445,28 +7486,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 957.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 1093.8054599719098405 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 970.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 1106.5554599719098405 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 970.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 1106.5554599719098405 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -6476,8 +7517,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 989.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 1125.8054599719098405 Tm <0046005500480044005700480047004200440057> Tj ET Q @@ -6485,29 +7526,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 970.4953947936137411 989.8054599719099542 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 900.239247736716834 1125.8054599719098405 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -817.0432463561137411 1002.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +752.499989924216834 1138.5554599719098405 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 1002.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 1138.5554599719098405 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l -0. 32. l +216.2392578125 0. l +216.2392578125 29. l +216.2392578125 30.6568542494923797 214.896112061992369 32. 213.2392578125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -6516,8 +7559,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 1021.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 1157.8054599719098405 Tm <0058005300470044005700480047004200440057> Tj ET Q @@ -6525,29 +7568,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 970.4953947936137411 1021.8054599719099542 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 900.239247736716834 1157.8054599719098405 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 618.5554599719099542 1534.3366445212079725 980. re +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 683.8141970700162346 509.7022701794554109 cm +3. 0. m +217.44140625 0. l +219.098260499492369 0. 220.44140625 1.3431457505076199 220.44140625 3. c +220.44140625 285. l +220.44140625 286.656854249492369 219.098260499492369 288. 217.44140625 288. c +3. 288. l +1.3431457505076203 288. 0.0000000000000004 286.656854249492369 0. 285. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 786.5554599719099542 220.44140625 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 1121.0432463561137411 618.5554599719099542 cm -0. 0. m -221.75537109375 0. l -221.75537109375 32. l +1. 0. 0. 1. 1056.499989924216834 786.5554599719099542 cm +3. 0. m +217.44140625 0. l +219.098260499492369 0. 220.44140625 1.3431457505076199 220.44140625 3. c +220.44140625 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -6557,7 +7618,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 1131.0432463561137411 637.8054599719099542 Tm +1. 0. 0. -1. 1066.499989924216834 805.8054599719099542 Tm <004b005200500048005600570048004400470042004b004c0056005700520055005c> Tj ET Q @@ -6565,17 +7626,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 650.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 818.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 650.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 818.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -6585,15 +7646,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 669.8054599719099542 Tm +0.173 g +1. 0. 0. -1. 1066.499989924216834 837.8054599719099542 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 1147.2370940123637411 659.8054599719099542 cm +0.17 g +1. 0. 0. 1. 1082.693837580466834 827.8054599719099542 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -6638,28 +7699,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1286.0354338561137411 669.8054599719099542 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1221.441396174216834 837.8054599719099542 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 682.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 850.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 682.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 850.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -6669,37 +7730,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 701.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 869.8054599719099542 Tm <004b005200500048005600570048004400470042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1155.863271174216834 859.9354599719099497 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1289.9392424498637411 701.8054599719099542 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1221.441396174216834 869.8054599719099542 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 714.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 882.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 714.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 882.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -6709,8 +7818,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 733.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 901.8054599719099542 Tm <0051004400500048> Tj ET Q @@ -6718,28 +7827,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1309.4265471373637411 733.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1240.941396174216834 901.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 746.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 914.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 746.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 914.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -6749,8 +7858,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 765.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 933.8054599719099542 Tm <0047004400570048004200560057004400550057> Tj ET Q @@ -6758,28 +7867,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1267.5066252623637411 765.8054599719099542 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1208.441396174216834 933.8054599719099542 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 778.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 946.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 778.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 946.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -6789,8 +7898,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 797.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 965.8054599719099542 Tm <00470044005700480042004800510047> Tj ET Q @@ -6798,28 +7907,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1267.5066252623637411 797.8054599719099542 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1208.441396174216834 965.8054599719099542 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 810.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 978.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 810.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 978.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -6829,37 +7938,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 829.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 997.8054599719099542 Tm <004a00550052005800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1123.547353205466834 987.9354599719099497 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1289.9392424498637411 829.8054599719099542 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1221.441396174216834 997.8054599719099542 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 842.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 1010.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 842.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 1010.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -6869,38 +8026,88 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 861.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 1029.8054599719098405 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1124.150380549216834 1019.9354599719099497 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1309.4265471373637411 861.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1221.441396174216834 1029.8054599719098405 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -1121.0432463561137411 874.5554599719099542 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +1056.499989924216834 1042.5554599719098405 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 874.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 1042.5554599719098405 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l -0. 32. l +220.44140625 0. l +220.44140625 29. l +220.44140625 30.6568542494923797 219.098260499492369 32. 217.44140625 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -6909,8 +8116,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 893.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 1061.8054599719098405 Tm <005a00520055004e004c0051004a> Tj ET Q @@ -6918,29 +8125,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1289.9392424498637411 893.8054599719099542 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1221.441396174216834 1061.8054599719098405 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -81.0432463561136842 160. 1534.3366445212079725 980. re +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 41.6213314771234408 214.0240649442332597 cm +3. 0. m +204.720703125 0. l +206.377557374492369 0. 207.720703125 1.3431457505076199 207.720703125 3. c +207.720703125 253. l +207.720703125 254.656854249492369 206.377557374492369 256. 204.720703125 256. c +3. 256. l +1.3431457505076203 256. 0.0000000000000004 254.656854249492369 0. 253. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +60.5488523070287101 328. 207.720703125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 81.0432463561136842 160. cm -0. 0. m -207.720703125 0. l +1. 0. 0. 1. 60.5488523070287101 328. cm +3. 0. m +204.720703125 0. l +206.377557374492369 0. 207.720703125 1.3431457505076199 207.720703125 3. c 207.720703125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -6950,7 +8175,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 91.0432463561136842 179.25 Tm +1. 0. 0. -1. 70.5488523070287101 347.25 Tm <0050004800480057004c0051004a0056004200560046004b004800470058004f0048> Tj ET Q @@ -6958,14 +8183,14 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -81.0432463561136842 192. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +60.5488523070287101 360. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 192. cm +1. 0. 0. 1. 60.5488523070287101 360. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -6978,15 +8203,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 211.25 Tm +0.173 g +1. 0. 0. -1. 70.5488523070287101 379.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 107.2370940123636842 201.25 cm +0.17 g +1. 0. 0. 1. 86.7426999632787101 369.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -7031,25 +8256,25 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 232.0007658873636842 211.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 212.7695554320287101 379.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -81.0432463561136842 224. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +60.5488523070287101 392. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 224. cm +1. 0. 0. 1. 60.5488523070287101 392. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -7062,8 +8287,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 243.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 411.25 Tm <0047004400570048> Tj ET Q @@ -7071,25 +8296,25 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 213.4719572936136842 243.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 199.7695554320287101 411.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -81.0432463561136842 256. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +60.5488523070287101 424. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 256. cm +1. 0. 0. 1. 60.5488523070287101 424. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -7102,8 +8327,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 275.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 443.25 Tm <0057005c00530048> Tj ET Q @@ -7111,25 +8336,25 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 235.9045744811136842 275.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 212.7695554320287101 443.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -81.0432463561136842 288. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +60.5488523070287101 456. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 288. cm +1. 0. 0. 1. 60.5488523070287101 456. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -7142,8 +8367,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 307.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 475.25 Tm <0051004400500048> Tj ET Q @@ -7151,25 +8376,25 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 307.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 232.2695554320287101 475.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -81.0432463561136842 320. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +60.5488523070287101 488. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 320. cm +1. 0. 0. 1. 60.5488523070287101 488. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -7182,34 +8407,82 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 339.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 507.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 128.1992429320287101 497.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 339.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 212.7695554320287101 507.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -81.0432463561136842 352. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +60.5488523070287101 520. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 352. cm +1. 0. 0. 1. 60.5488523070287101 520. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -7222,8 +8495,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 371.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 539.25 Tm <0057004c0057004f0048> Tj ET Q @@ -7231,29 +8504,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 371.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 232.2695554320287101 539.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -81.0432463561136842 384. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +60.5488523070287101 552. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 384. cm +1. 0. 0. 1. 60.5488523070287101 552. cm 0. 0. m 207.720703125 0. l -207.720703125 32. l -0. 32. l +207.720703125 29. l +207.720703125 30.6568542494923797 206.377557374492369 32. 204.720703125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -7262,8 +8537,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 403.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 571.25 Tm <005100580050004500480055> Tj ET Q @@ -7271,29 +8546,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 403.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 232.2695554320287101 571.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -57.7473479186136842 464. 1534.3366445212079725 980. re +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 25.9298024388835913 394.5690691863236452 cm +3. 0. m +226.75341796875 0. l +228.410272218242369 0. 229.75341796875 1.3431457505076199 229.75341796875 3. c +229.75341796875 349. l +229.75341796875 350.656854249492369 228.410272218242369 352. 226.75341796875 352. c +3. 352. l +1.3431457505076203 352. 0.0000000000000004 350.656854249492369 0. 349. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 608. 229.75341796875 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 57.7473479186136842 464. cm -0. 0. m -231.0166015625 0. l -231.0166015625 32. l +1. 0. 0. 1. 36.2134897798230213 608. cm +3. 0. m +226.75341796875 0. l +228.410272218242369 0. 229.75341796875 1.3431457505076199 229.75341796875 3. c +229.75341796875 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -7303,7 +8596,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 67.7473479186136842 483.25 Tm +1. 0. 0. -1. 46.2134897798230213 627.25 Tm <005600570044005100470042004f004c00560057> Tj ET Q @@ -7311,17 +8604,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -57.7473479186136842 496. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 640. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 496. cm +1. 0. 0. 1. 36.2134897798230213 640. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -7331,15 +8624,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 515.25 Tm +0.173 g +1. 0. 0. -1. 46.2134897798230213 659.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 83.9411955748636842 505.25 cm +0.17 g +1. 0. 0. 1. 62.4073374360730213 649.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -7384,28 +8677,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 232.0007658873636842 515.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.4669077485730213 659.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -57.7473479186136842 528. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 672. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 528. cm +1. 0. 0. 1. 36.2134897798230213 672. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -7415,8 +8708,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 547.25 Tm +0.235 g +1. 0. 0. -1. 46.2134897798230213 691.25 Tm <0057004c0057004f0048> Tj ET Q @@ -7424,28 +8717,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 547.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 229.9669077485730213 691.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -57.7473479186136842 560. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 704. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 560. cm +1. 0. 0. 1. 36.2134897798230213 704. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -7455,8 +8748,48 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 579.25 Tm +0.235 g +1. 0. 0. -1. 46.2134897798230213 723.25 Tm +<004a00480052> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 229.9669077485730213 723.25 Tm +<019f011201c4019f> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 736. 229.75341796875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 36.2134897798230213 736. cm +0. 0. m +229.75341796875 0. l +229.75341796875 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 46.2134897798230213 755.25 Tm <004b005200580055004200560057004400550057> Tj ET Q @@ -7464,28 +8797,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 235.9045744811136842 579.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.4669077485730213 755.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -57.7473479186136842 592. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 768. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 592. cm +1. 0. 0. 1. 36.2134897798230213 768. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -7495,8 +8828,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 611.25 Tm +0.235 g +1. 0. 0. -1. 46.2134897798230213 787.25 Tm <004b0052005800550042004800510047> Tj ET Q @@ -7504,28 +8837,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 235.9045744811136842 611.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.4669077485730213 787.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -57.7473479186136842 624. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 800. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 624. cm +1. 0. 0. 1. 36.2134897798230213 800. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -7535,8 +8868,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 643.25 Tm +0.235 g +1. 0. 0. -1. 46.2134897798230213 819.25 Tm <00540058004400510057004c0057005c00420056004b004800480053> Tj ET Q @@ -7544,28 +8877,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 235.9045744811136842 643.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.4669077485730213 819.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -57.7473479186136842 656. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 832. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 656. cm +1. 0. 0. 1. 36.2134897798230213 832. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -7575,8 +8908,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 675.25 Tm +0.235 g +1. 0. 0. -1. 46.2134897798230213 851.25 Tm <005a00480048004e004200470044005c0056> Tj ET Q @@ -7584,29 +8917,169 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 675.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 229.9669077485730213 851.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -60.3702138155584862 728. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 864. 229.75341796875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 36.2134897798230213 864. cm +0. 0. m +229.75341796875 0. l +229.75341796875 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 46.2134897798230213 883.25 Tm +<0053005500520046004800560056004c0051004a00420057004c00500048> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 229.9669077485730213 883.25 Tm +<0189011200e8014f> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 896. 229.75341796875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 36.2134897798230213 896. cm +0. 0. m +229.75341796875 0. l +229.75341796875 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 46.2134897798230213 915.25 Tm +<005600570044005700580056> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 229.9669077485730213 915.25 Tm +<010301630163014f> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +36.2134897798230213 928. 229.75341796875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 36.2134897798230213 928. cm +0. 0. m +229.75341796875 0. l +229.75341796875 29. l +229.75341796875 30.6568542494923797 228.410272218242369 32. 226.75341796875 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 46.2134897798230213 947.25 Tm +<0058005300470044005700480047004200440057> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 197.4669077485730213 947.25 Tm +<019f0139015801120193019f00e801580186> Tj +ET +Q +Q +Q +Q +q +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 34.9009399595145808 631.8567890473566422 cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 253. l +216.2392578125 254.656854249492369 214.896112061992369 256. 213.2392578125 256. c +3. 256. l +1.3431457505076203 256. 0.0000000000000004 254.656854249492369 0. 253. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +50.1264668589809617 976. 216.2392578125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 60.3702138155584862 728. cm -0. 0. m -228.744140625 0. l -228.744140625 32. l +1. 0. 0. 1. 50.1264668589809617 976. cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -7616,7 +9089,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 70.3702138155584862 747.25 Tm +1. 0. 0. -1. 60.1264668589809617 995.25 Tm <00560057004400510047004200560046004b004800470058004f0048> Tj ET Q @@ -7624,17 +9097,17 @@ Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -60.3702138155584862 760. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +50.1264668589809617 1008. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 60.3702138155584862 760. cm +1. 0. 0. 1. 50.1264668589809617 1008. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -7644,15 +9117,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 779.25 Tm +0.173 g +1. 0. 0. -1. 60.1264668589809617 1027.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 86.5640614718084862 769.25 cm +0.17 g +1. 0. 0. 1. 76.3203145152309617 1017.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -7697,28 +9170,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 232.3511708468084862 779.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.8657246714809617 1027.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -60.3702138155584862 792. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +50.1264668589809617 1040. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 60.3702138155584862 792. cm +1. 0. 0. 1. 50.1264668589809617 1040. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -7728,37 +9201,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 811.25 Tm -<00560057004400510047> Tj +0.235 g +1. 0. 0. -1. 60.1264668589809617 1059.25 Tm +<005600570044005100470042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 115.0346699839809617 1049.3800000000001091 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 236.2549794405584862 811.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.8657246714809617 1059.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -60.3702138155584862 824. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +50.1264668589809617 1072. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 60.3702138155584862 824. cm +1. 0. 0. 1. 50.1264668589809617 1072. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -7768,8 +9289,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 843.25 Tm +0.235 g +1. 0. 0. -1. 60.1264668589809617 1091.25 Tm <0047004400570048> Tj ET Q @@ -7777,28 +9298,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 213.8223622530584862 843.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 197.8657246714809617 1091.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -60.3702138155584862 856. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +50.1264668589809617 1104. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 60.3702138155584862 856. cm +1. 0. 0. 1. 50.1264668589809617 1104. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -7808,8 +9329,96 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 875.25 Tm +0.235 g +1. 0. 0. -1. 60.1264668589809617 1123.25 Tm +<0056004b0048004800530042004c0047> Tj +ET +Q +Q +q +0.24 g +0.02 0. 0. 0.02 117.7768574839809617 1113.3800000000001091 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 210.8657246714809617 1123.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +50.1264668589809617 1136. 216.2392578125 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 50.1264668589809617 1136. cm +0. 0. m +216.2392578125 0. l +216.2392578125 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 60.1264668589809617 1155.25 Tm <004b005200580055> Tj ET Q @@ -7817,28 +9426,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 236.2549794405584862 875.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.8657246714809617 1155.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -60.3702138155584862 888. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +50.1264668589809617 1168. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 60.3702138155584862 888. cm +1. 0. 0. 1. 50.1264668589809617 1168. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -7848,48 +9457,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 907.25 Tm -<0056004b0048004800530042004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.7422841280584862 907.25 Tm -<00570048005b0057> Tj -ET -Q -Q -Q -Q -q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -60.3702138155584862 920. 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 60.3702138155584862 920. cm -0. 0. m -228.744140625 0. l -228.744140625 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 939.25 Tm +0.235 g +1. 0. 0. -1. 60.1264668589809617 1187.25 Tm <00510058005000450048005500420056004b004800480053> Tj ET Q @@ -7897,28 +9466,201 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.7422841280584862 939.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 230.3657246714809617 1187.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.852195138937755 0. 0. 0.852195138937755 3.40878055575102 2.4493846093914158 cm -60.3702138155584862 952. 1534.3366445212079725 980. re +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +50.1264668589809617 1200. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 60.3702138155584862 952. cm +1. 0. 0. 1. 50.1264668589809617 1200. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 29. l +216.2392578125 30.6568542494923797 214.896112061992369 32. 213.2392578125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 60.1264668589809617 1219.25 Tm +<0058005300470044005700480047004200440057> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 197.8657246714809617 1219.25 Tm +<019f0139015801120193019f00e801580186> Tj +ET +Q +Q +Q +Q +q +0.95 g +0.6448035865788943 0. 0. 0.6448035865788943 14.1856789047356742 812.4017932894471414 cm +3. 0. m +244.39990234375 0. l +246.056756593242369 0. 247.39990234375 1.3431457505076199 247.39990234375 3. c +247.39990234375 253. l +247.39990234375 254.656854249492369 246.056756593242369 256. 244.39990234375 256. c +3. 256. l +1.3431457505076203 256. 0.0000000000000004 254.656854249492369 0. 253. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +18. 1256. 247.39990234375 32. re +W +n +q +q +0.19 0.41 0.59 rg +1. 0. 0. 1. 18. 1256. cm +3. 0. m +244.39990234375 0. l +246.056756593242369 0. 247.39990234375 1.3431457505076199 247.39990234375 3. c +247.39990234375 32. l +0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +q +BT +/F16 13 Tf +14.9499999999999993 TL +1. g +1. 0. 0. -1. 28. 1275.25 Tm +<00560057004400510047004200560046004b004800470058004f00480042004b004c0056005700520055005c> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +18. 1288. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1288. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l +0. 32. l +h +f +Q +q +q +BT +/F16 13 Tf +14.9499999999999993 TL +0.173 g +1. 0. 0. -1. 28. 1307.25 Tm +<004c0047> Tj +ET +Q +Q +q +0.17 g +1. 0. 0. 1. 44.19384765625 1297.25 cm +6.5625 0.9844000000000001 m +8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c +9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c +6.1734999999999998 6.8906000000000001 5.8022 6.8152999999999997 5.4619999999999997 6.6786000000000003 c +4.5937999999999999 7.5468999999999999 l +3.9375 7.5468999999999999 l +3.9375 8.5312999999999999 l +2.9531000000000001 8.5312999999999999 l +2.9531000000000001 9.5155999999999992 l +0.9844000000000001 9.5155999999999992 l +0.9844000000000001 7.5468999999999999 l +3.7360000000000002 4.7952000000000004 l +3.6518000000000002 4.5171000000000001 3.6092 4.2281000000000004 3.6093999999999999 3.9375 c +3.6093999999999999 2.3065000000000002 4.9314999999999998 0.9844000000000001 6.5625 0.9844000000000001 c +h +6.5625 0. m +4.3879999999999999 0. 2.625 1.7626999999999999 2.625 3.9375 c +2.625 4.1185999999999998 2.6373000000000002 4.2988999999999997 2.6619000000000002 4.4771999999999998 c +0.1441 6.9950000000000001 l +0.0519 7.0872999999999999 0. 7.2125000000000004 0. 7.343 c +0. 10.0077999999999996 l +0. 10.2797000000000001 0.2204 10.5 0.4922 10.5 c +3.4453 10.5 l +3.7170999999999998 10.5 3.9375 10.2797000000000001 3.9375 10.0077999999999996 c +3.9375 9.5155999999999992 l +4.4297000000000004 9.5155999999999992 l +4.7015000000000002 9.5155999999999992 4.9218999999999999 9.2952999999999992 4.9218999999999999 9.0234000000000005 c +4.9218999999999999 8.6133000000000006 l +5.7431999999999999 7.7895000000000003 l +6.0110000000000001 7.8464 6.2847999999999997 7.875 6.5625 7.875 c +8.7370000000000001 7.875 10.5 6.1123000000000003 10.5 3.9375 c +10.5 1.7629999999999999 8.7372999999999994 0. 6.5625 0. c +h +6.5625 2.9531000000000001 m +6.5625 3.4967999999999999 7.0031999999999996 3.9375 7.5468999999999999 3.9375 c +8.0905000000000005 3.9375 8.5312999999999999 3.4967999999999999 8.5312999999999999 2.9531000000000001 c +8.5312999999999999 2.4095 8.0905000000000005 1.9688000000000001 7.5468999999999999 1.9688000000000001 c +7.0031999999999996 1.9688000000000001 6.5625 2.4095 6.5625 2.9531000000000001 c +h +f +Q +q +q +BT +/F18 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 209.89990234375 1307.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +18. 1320. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1320. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l 0. 32. l h f @@ -7928,20 +9670,318 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 971.25 Tm -<0058005300470044005700480047004200440057> Tj +0.235 g +1. 0. 0. -1. 28. 1339.25 Tm +<00560057004400510047004200560046004b004800470058004f00480042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 142.8046875 1329.3800000000001091 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 209.89990234375 1339.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +18. 1352. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1352. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l +0. 32. l +h +f +Q +q q BT /F15 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 213.8223622530584862 971.25 Tm -<0057004c0050004800560057004400500053> Tj +0.235 g +1. 0. 0. -1. 28. 1371.25 Tm +<0047004400570048> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 196.89990234375 1371.25 Tm +<019f0139015801120193019f00e801580186> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +18. 1384. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1384. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 28. 1403.25 Tm +<0056004b0048004800530042004c0047> Tj +ET +Q +Q +q +0.24 g +0.02 0. 0. 0.02 85.650390625 1393.3800000000001091 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 209.89990234375 1403.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +18. 1416. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1416. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 28. 1435.25 Tm +<004b005200580055> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 209.89990234375 1435.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +18. 1448. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1448. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 28. 1467.25 Tm +<00510058005000450048005500420056004b004800480053> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 229.39990234375 1467.25 Tm +<019f011201c4019f> Tj +ET +Q +Q +Q +Q +q +0.6448035865788943 0. 0. 0.6448035865788943 2.579214346315577 2.528488546355959 cm +18. 1480. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1480. cm +0. 0. m +247.39990234375 0. l +247.39990234375 29. l +247.39990234375 30.6568542494923797 246.056756593242369 32. 244.39990234375 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 28. 1499.25 Tm +<0046005500480044005700480047004200440057> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 196.89990234375 1499.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q @@ -7967,7 +10007,7 @@ endobj endobj 6 0 obj << -/Length 191740 +/Length 306434 >> stream 1. w @@ -8500,19 +10540,19 @@ Q q 1. 0. 0. -1. 0. 1080. cm q -1. 0. 0. 1. 192.8316777393960137 50. cm +1. 0. 0. 1. 397.6909832336280033 50. cm 1. w 0. g q 1. 0. 0. 1. 0. 0. cm -0. 0. 1534.3366445212079725 980. re +0. 0. 1124.6180335327439934 980. re W n q q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -331.7021471261894021 138. 215.3657344736432435 449. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +291.4100038751109878 306. 172.0899860491058462 465. re W n q @@ -8520,64 +10560,64 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 331.7021471261894021 138. cm -110.9912923259820587 54. m -106.9912923259820587 54. l +1. 0. 0. 1. 291.4100038751109878 306. cm +133.0899860491058462 54. m +129.0899860491058462 54. l 36. 54. l 29.3333333333333357 54. 26. 57.3333333333333357 26. 64. c -26. 412. l -26. 418.6666666666666856 29.3333333333333357 422. 36. 422. c -172.3657344736432435 422. l -182.3657344736432435 422. l -182.3657344736432435 422. l -172.3657344736432435 422. l -36. 422. l -29.3333333333333357 422. 26. 418.6666666666666856 26. 412. c +26. 428. l +26. 434.6666666666666856 29.3333333333333357 438. 36. 438. c +57.0899860491058462 438. l +67.0899860491058462 438. l +67.0899860491058462 438. l +57.0899860491058462 438. l +36. 438. l +29.3333333333333357 438. 26. 434.6666666666666856 26. 428. c 26. 64. l 26. 57.3333333333333357 29.3333333333333357 54. 36. 54. c -106.9912923259820587 54. l -110.9912923259820587 54. l +129.0899860491058462 54. l +133.0899860491058462 54. l h -116.9912923259820587 54. m -126.9912923259820587 54. l -182.3657344736432435 422. m -192.3657344736432435 422. l -113.9912923259820587 54. m -116.9912923259820587 54. m -116.9336481671917483 54.5852709660483839 l -116.7629309235159241 55.1480502970952671 l -116.485701162889697 55.6667106990588039 l -116.1126126695417042 56.1213203435596455 l -115.6580030250408697 56.4944088369076383 l -115.1393426230773258 56.7716385975338582 l -114.5765632920304427 56.9423558412096895 l -113.9912923259820587 57. l -113.4060213599336748 56.9423558412096895 l -112.8432420288867917 56.7716385975338582 l -112.3245816269232478 56.4944088369076383 l -111.8699719824224132 56.1213203435596455 l -111.4968834890744205 55.6667106990588039 l -111.2196537284481934 55.1480502970952671 l -111.0489364847723692 54.5852709660483839 l -110.9912923259820587 54. l -111.0489364847723692 53.4147290339516161 l -111.2196537284481934 52.8519497029047329 l -111.4968834890744205 52.3332893009411961 l -111.8699719824224132 51.8786796564403545 l -112.3245816269232478 51.5055911630923617 l -112.8432420288867917 51.2283614024661418 l -113.4060213599336748 51.0576441587903105 l -113.9912923259820587 51. l -114.5765632920304427 51.0576441587903105 l -115.1393426230773258 51.2283614024661418 l -115.6580030250408697 51.5055911630923617 l -116.1126126695417042 51.8786796564403545 l -116.485701162889697 52.3332893009411961 l -116.7629309235159241 52.8519497029047258 l -116.9336481671917483 53.4147290339516161 l -116.9912923259820587 54. l -182.3657344736432435 418. m -182.3657344736432435 426. l +139.0899860491058462 54. m +149.0899860491058462 54. l +67.0899860491058462 438. m +77.0899860491058462 438. l +136.0899860491058462 54. m +139.0899860491058462 54. m +139.0323418903155357 54.5852709660483839 l +138.8616246466397115 55.1480502970952671 l +138.5843948860134844 55.6667106990588039 l +138.2113063926654775 56.1213203435596455 l +137.7566967481646429 56.4944088369076383 l +137.2380363462011132 56.7716385975338582 l +136.6752570151542443 56.9423558412096895 l +136.0899860491058462 57. l +135.5047150830574481 56.9423558412096895 l +134.9419357520105791 56.7716385975338582 l +134.4232753500470494 56.4944088369076383 l +133.9686657055462149 56.1213203435596455 l +133.5955772121982079 55.6667106990588039 l +133.3183474515719809 55.1480502970952671 l +133.1476302078961567 54.5852709660483839 l +133.0899860491058462 54. l +133.1476302078961567 53.4147290339516161 l +133.3183474515719809 52.8519497029047329 l +133.5955772121982079 52.3332893009411961 l +133.9686657055462149 51.8786796564403545 l +134.4232753500470494 51.5055911630923617 l +134.9419357520105791 51.2283614024661418 l +135.5047150830574481 51.0576441587903105 l +136.0899860491058462 51. l +136.6752570151542443 51.0576441587903105 l +137.2380363462011132 51.2283614024661418 l +137.7566967481646429 51.5055911630923617 l +138.2113063926654775 51.8786796564403545 l +138.5843948860134844 52.3332893009411961 l +138.8616246466397115 52.8519497029047258 l +139.0323418903155357 53.4147290339516161 l +139.0899860491058462 54. l +67.0899860491058462 434. m +67.0899860491058462 442. l S Q q @@ -8586,7 +10626,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -8597,7 +10637,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 513.0629987873326172 555. Tm +1. 0. 0. -1. 357.495107111716834 739. Tm <0014> Tj ET Q @@ -8606,8 +10646,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -331.702147126189459 138. 149.9912923259819877 593. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +291.6137221377301216 306. 1448.5112438842177198 1006.1275585178767642 re W n q @@ -8615,168 +10655,73 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 331.702147126189459 138. cm -110.9912923259820019 54. m -106.9912923259820019 54. l -36. 54. l -29.3333333333333357 54. 26. 57.3333333333333357 26. 64. c -26. 556. l -26. 562.6666666666666288 29.3333333333333357 566. 36. 566. c -82.689222761946553 566. l -92.689222761946553 566. l -92.689222761946553 566. l -82.689222761946553 566. l -36. 566. l -29.3333333333333357 566. 26. 562.6666666666666288 26. 556. c -26. 64. l -26. 57.3333333333333357 29.3333333333333357 54. 36. 54. c -106.9912923259820019 54. l -110.9912923259820019 54. l -h -116.9912923259820019 54. m -126.9912923259820019 54. l -92.689222761946553 566. m -102.689222761946553 566. l -113.9912923259820019 54. m -116.9912923259820019 54. m -116.9336481671916914 54.5852709660483839 l -116.7629309235158672 55.1480502970952671 l -116.4857011628896402 55.6667106990588039 l -116.1126126695416474 56.1213203435596455 l -115.6580030250408129 56.4944088369076383 l -115.139342623077269 56.7716385975338582 l -114.5765632920303858 56.9423558412096895 l -113.9912923259820019 57. l -113.406021359933618 56.9423558412096895 l -112.8432420288867348 56.7716385975338582 l -112.3245816269231909 56.4944088369076383 l -111.8699719824223564 56.1213203435596455 l -111.4968834890743636 55.6667106990588039 l -111.2196537284481366 55.1480502970952671 l -111.0489364847723124 54.5852709660483839 l -110.9912923259820019 54. l -111.0489364847723124 53.4147290339516161 l -111.2196537284481366 52.8519497029047329 l -111.4968834890743636 52.3332893009411961 l -111.8699719824223564 51.8786796564403545 l -112.3245816269231909 51.5055911630923617 l -112.8432420288867348 51.2283614024661418 l -113.406021359933618 51.0576441587903105 l -113.9912923259820019 51. l -114.5765632920303858 51.0576441587903105 l -115.139342623077269 51.2283614024661418 l -115.6580030250408129 51.5055911630923617 l -116.1126126695416474 51.8786796564403545 l -116.4857011628896402 52.3332893009411961 l -116.7629309235158672 52.8519497029047258 l -116.9336481671916914 53.4147290339516161 l -116.9912923259820019 54. l -92.689222761946553 562. m -92.689222761946553 570. l -S -Q -q -q -BT -/F15 14 Tf -16.0999999999999979 TL -0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm -<0013001100110014> Tj -ET -Q -Q -q -q -BT -/F15 14 Tf -16.0999999999999979 TL -0. g -1. 0. 0. -1. 423.3864870756360119 699. Tm -<0014> Tj -ET -Q -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -331.702147126189459 138. 1464.7500901791408978 1006.1275585178767642 re -W -n -q -q -q -2. w -0.38 0.61 0.8 RG -1. 0. 0. 1. 331.702147126189459 138. cm -110.9912923259820019 54. m -106.9912923259820019 54. l +1. 0. 0. 1. 291.6137221377301216 306. cm +132.8862677864867123 54. m +128.8862677864867123 54. l 36. 54. l 29.3333333333333357 54. 26. 57.3333333333333357 26. 64. c 26. 969.1275585178767642 l 26. 975.794225184543393 29.3333333333333357 979.1275585178767642 36. 979.1275585178767642 c -1431.7500901791408978 979.1275585178767642 l -1438.4167568458076403 979.1275585178767642 1441.7500901791408978 975.794225184543393 1441.7500901791408978 969.1275585178767642 c -1441.7500901791408978 440. l -1441.7500901791408978 433.3333333333333144 1438.4167568458076403 430. 1431.7500901791408978 430. c -1363.4144186041867215 430. l -1353.4144186041867215 430. l -1353.4144186041867215 430. l -1363.4144186041867215 430. l -1431.7500901791408978 430. l -1438.4167568458076403 430. 1441.7500901791408978 433.3333333333333144 1441.7500901791408978 440. c -1441.7500901791408978 969.1275585178767642 l -1441.7500901791408978 975.794225184543393 1438.4167568458076403 979.1275585178767642 1431.7500901791408978 979.1275585178767642 c +1415.5112438842177198 979.1275585178767642 l +1422.1779105508844623 979.1275585178767642 1425.5112438842177198 975.794225184543393 1425.5112438842177198 969.1275585178767642 c +1425.5112438842177198 440. l +1425.5112438842177198 433.3333333333333144 1422.1779105508844623 430. 1415.5112438842177198 430. c +1337.6964035669991517 430. l +1327.6964035669991517 430. l +1327.6964035669991517 430. l +1337.6964035669991517 430. l +1415.5112438842177198 430. l +1422.1779105508844623 430. 1425.5112438842177198 433.3333333333333144 1425.5112438842177198 440. c +1425.5112438842177198 969.1275585178767642 l +1425.5112438842177198 975.794225184543393 1422.1779105508844623 979.1275585178767642 1415.5112438842177198 979.1275585178767642 c 36. 979.1275585178767642 l 29.3333333333333357 979.1275585178767642 26. 975.794225184543393 26. 969.1275585178767642 c 26. 64. l 26. 57.3333333333333357 29.3333333333333357 54. 36. 54. c -106.9912923259820019 54. l -110.9912923259820019 54. l +128.8862677864867123 54. l +132.8862677864867123 54. l h -116.9912923259820019 54. m -126.9912923259820019 54. l -1353.4144186041867215 430. m -1343.4144186041867215 430. l -113.9912923259820019 54. m -116.9912923259820019 54. m -116.9336481671916914 54.5852709660483839 l -116.7629309235158672 55.1480502970952671 l -116.4857011628896402 55.6667106990588039 l -116.1126126695416474 56.1213203435596455 l -115.6580030250408129 56.4944088369076383 l -115.139342623077269 56.7716385975338582 l -114.5765632920303858 56.9423558412096895 l -113.9912923259820019 57. l -113.406021359933618 56.9423558412096895 l -112.8432420288867348 56.7716385975338582 l -112.3245816269231909 56.4944088369076383 l -111.8699719824223564 56.1213203435596455 l -111.4968834890743636 55.6667106990588039 l -111.2196537284481366 55.1480502970952671 l -111.0489364847723124 54.5852709660483839 l -110.9912923259820019 54. l -111.0489364847723124 53.4147290339516161 l -111.2196537284481366 52.8519497029047329 l -111.4968834890743636 52.3332893009411961 l -111.8699719824223564 51.8786796564403545 l -112.3245816269231909 51.5055911630923617 l -112.8432420288867348 51.2283614024661418 l -113.406021359933618 51.0576441587903105 l -113.9912923259820019 51. l -114.5765632920303858 51.0576441587903105 l -115.139342623077269 51.2283614024661418 l -115.6580030250408129 51.5055911630923617 l -116.1126126695416474 51.8786796564403545 l -116.4857011628896402 52.3332893009411961 l -116.7629309235158672 52.8519497029047258 l -116.9336481671916914 53.4147290339516161 l -116.9912923259820019 54. l -1343.4144186041867215 426. m -1352.4144186041867215 430. l -1343.4144186041867215 434. l +138.8862677864867123 54. m +148.8862677864867123 54. l +1327.6964035669991517 430. m +1317.6964035669991517 430. l +135.8862677864867123 54. m +138.8862677864867123 54. m +138.8286236276964019 54.5852709660483839 l +138.6579063840205777 55.1480502970952671 l +138.3806766233943506 55.6667106990588039 l +138.0075881300463436 56.1213203435596455 l +137.5529784855455091 56.4944088369076383 l +137.0343180835819794 56.7716385975338582 l +136.4715387525351105 56.9423558412096895 l +135.8862677864867123 57. l +135.3009968204383142 56.9423558412096895 l +134.7382174893914453 56.7716385975338582 l +134.2195570874279156 56.4944088369076383 l +133.7649474429270811 56.1213203435596455 l +133.3918589495790741 55.6667106990588039 l +133.114629188952847 55.1480502970952671 l +132.9439119452770228 54.5852709660483839 l +132.8862677864867123 54. l +132.9439119452770228 53.4147290339516161 l +133.114629188952847 52.8519497029047329 l +133.3918589495790741 52.3332893009411961 l +133.7649474429270811 51.8786796564403545 l +134.2195570874279156 51.5055911630923617 l +134.7382174893914453 51.2283614024661418 l +135.3009968204383142 51.0576441587903105 l +135.8862677864867123 51. l +136.4715387525351105 51.0576441587903105 l +137.0343180835819794 51.2283614024661418 l +137.5529784855455091 51.5055911630923617 l +138.0075881300463436 51.8786796564403545 l +138.3806766233943506 52.3332893009411961 l +138.6579063840205777 52.8519497029047258 l +138.8286236276964019 53.4147290339516161 l +138.8862677864867123 54. l +1317.6964035669991517 426. m +1326.6964035669991517 430. l +1317.6964035669991517 434. l S Q q @@ -8785,7 +10730,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -8796,7 +10741,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1678.1165657303761236 563. Tm +1. 0. 0. -1. 1612.3101257047292165 731. Tm <000d> Tj ET Q @@ -8805,8 +10750,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -331.7021471261896295 138. 1141.4567517083128223 1006.1275585178767642 re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +291.6137221377301216 306. 1447.4514079519024108 1006.1275585178767642 re W n q @@ -8814,73 +10759,73 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 331.7021471261896295 138. cm -110.9912923259818314 54. m -106.9912923259818314 54. l +1. 0. 0. 1. 291.6137221377301216 306. cm +132.8862677864867123 54. m +128.8862677864867123 54. l 36. 54. l 29.3333333333333357 54. 26. 57.3333333333333357 26. 64. c 26. 969.1275585178767642 l 26. 975.794225184543393 29.3333333333333357 979.1275585178767642 36. 979.1275585178767642 c -1041.4480179582826622 979.1275585178767642 l -1048.1146846249494047 979.1275585178767642 1051.4480179582826622 975.794225184543393 1051.4480179582826622 969.1275585178767642 c -1051.4480179582826622 896. l -1051.4480179582826622 889.3333333333333712 1054.7813512916159198 886. 1061.4480179582826622 886. c -1098.4567517083128223 886. l -1108.4567517083128223 886. l -1108.4567517083128223 886. l -1098.4567517083128223 886. l -1061.4480179582826622 886. l -1054.7813512916159198 886. 1051.4480179582826622 889.3333333333333712 1051.4480179582826622 896. c -1051.4480179582826622 969.1275585178767642 l -1051.4480179582826622 975.794225184543393 1048.1146846249494047 979.1275585178767642 1041.4480179582826622 979.1275585178767642 c +1414.4514079519024108 979.1275585178767642 l +1421.1180746185691532 979.1275585178767642 1424.4514079519024108 975.794225184543393 1424.4514079519024108 969.1275585178767642 c +1424.4514079519024108 896. l +1424.4514079519024108 889.3333333333333712 1421.1180746185691532 886. 1414.4514079519024108 886. c +1371.1200843273754799 886. l +1361.1200843273754799 886. l +1361.1200843273754799 886. l +1371.1200843273754799 886. l +1414.4514079519024108 886. l +1421.1180746185691532 886. 1424.4514079519024108 889.3333333333333712 1424.4514079519024108 896. c +1424.4514079519024108 969.1275585178767642 l +1424.4514079519024108 975.794225184543393 1421.1180746185691532 979.1275585178767642 1414.4514079519024108 979.1275585178767642 c 36. 979.1275585178767642 l 29.3333333333333357 979.1275585178767642 26. 975.794225184543393 26. 969.1275585178767642 c 26. 64. l 26. 57.3333333333333357 29.3333333333333357 54. 36. 54. c -106.9912923259818314 54. l -110.9912923259818314 54. l +128.8862677864867123 54. l +132.8862677864867123 54. l h -116.9912923259818314 54. m -126.9912923259818314 54. l -1108.4567517083128223 886. m -1118.4567517083128223 886. l -113.9912923259818314 54. m -116.9912923259818314 54. m -116.9336481671915209 54.5852709660483839 l -116.7629309235156967 55.1480502970952671 l -116.4857011628894696 55.6667106990588039 l -116.1126126695414769 56.1213203435596455 l -115.6580030250406423 56.4944088369076383 l -115.1393426230770984 56.7716385975338582 l -114.5765632920302153 56.9423558412096895 l -113.9912923259818314 57. l -113.4060213599334475 56.9423558412096895 l -112.8432420288865643 56.7716385975338582 l -112.3245816269230204 56.4944088369076383 l -111.8699719824221859 56.1213203435596455 l -111.4968834890741931 55.6667106990588039 l -111.219653728447966 55.1480502970952671 l -111.0489364847721419 54.5852709660483839 l -110.9912923259818314 54. l -111.0489364847721419 53.4147290339516161 l -111.219653728447966 52.8519497029047329 l -111.4968834890741931 52.3332893009411961 l -111.8699719824221859 51.8786796564403545 l -112.3245816269230204 51.5055911630923617 l -112.8432420288865643 51.2283614024661418 l -113.4060213599334475 51.0576441587903105 l -113.9912923259818314 51. l -114.5765632920302153 51.0576441587903105 l -115.1393426230770984 51.2283614024661418 l -115.6580030250406423 51.5055911630923617 l -116.1126126695414769 51.8786796564403545 l -116.4857011628894696 52.3332893009411961 l -116.7629309235156967 52.8519497029047258 l -116.9336481671915209 53.4147290339516161 l -116.9912923259818314 54. l -1118.4567517083128223 882. m -1109.4567517083128223 886. l -1118.4567517083128223 890. l +138.8862677864867123 54. m +148.8862677864867123 54. l +1361.1200843273754799 886. m +1351.1200843273754799 886. l +135.8862677864867123 54. m +138.8862677864867123 54. m +138.8286236276964019 54.5852709660483839 l +138.6579063840205777 55.1480502970952671 l +138.3806766233943506 55.6667106990588039 l +138.0075881300463436 56.1213203435596455 l +137.5529784855455091 56.4944088369076383 l +137.0343180835819794 56.7716385975338582 l +136.4715387525351105 56.9423558412096895 l +135.8862677864867123 57. l +135.3009968204383142 56.9423558412096895 l +134.7382174893914453 56.7716385975338582 l +134.2195570874279156 56.4944088369076383 l +133.7649474429270811 56.1213203435596455 l +133.3918589495790741 55.6667106990588039 l +133.114629188952847 55.1480502970952671 l +132.9439119452770228 54.5852709660483839 l +132.8862677864867123 54. l +132.9439119452770228 53.4147290339516161 l +133.114629188952847 52.8519497029047329 l +133.3918589495790741 52.3332893009411961 l +133.7649474429270811 51.8786796564403545 l +134.2195570874279156 51.5055911630923617 l +134.7382174893914453 51.2283614024661418 l +135.3009968204383142 51.0576441587903105 l +135.8862677864867123 51. l +136.4715387525351105 51.0576441587903105 l +137.0343180835819794 51.2283614024661418 l +137.5529784855455091 51.5055911630923617 l +138.0075881300463436 51.8786796564403545 l +138.3806766233943506 52.3332893009411961 l +138.6579063840205777 52.8519497029047258 l +138.8286236276964019 53.4147290339516161 l +138.8862677864867123 54. l +1351.1200843273754799 882. m +1360.1200843273754799 886. l +1351.1200843273754799 890. l S Q q @@ -8889,7 +10834,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -8900,7 +10845,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1439.4479613345024518 1019. Tm +1. 0. 0. -1. 1645.7338064651055447 1187. Tm <000d> Tj ET Q @@ -8909,8 +10854,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -331.6618689000528661 26. 215.4060126997797511 193. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +292.3437237687688821 194. 190.1809013991668849 193. re W n q @@ -8918,65 +10863,65 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 331.6618689000528661 26. cm -111.0315705521185947 166. m -107.0315705521185947 166. l +1. 0. 0. 1. 292.3437237687688821 194. cm +132.1562661554479519 166. m +128.1562661554479519 166. l 36. 166. l 29.3333333333333357 166. 26. 162.6666666666666572 26. 156. c 26. 64. l 26. 57.3333333333333357 29.3333333333333357 54. 36. 54. c -172.4060126997797511 54. l -182.4060126997797511 54. l -182.4060126997797511 54. l -172.4060126997797511 54. l +147.1809013991668849 54. l +157.1809013991668849 54. l +157.1809013991668849 54. l +147.1809013991668849 54. l 36. 54. l 29.3333333333333357 54. 26. 57.3333333333333357 26. 64. c 26. 156. l 26. 162.6666666666666572 29.3333333333333357 166. 36. 166. c -107.0315705521185947 166. l -111.0315705521185947 166. l +128.1562661554479519 166. l +132.1562661554479519 166. l h -117.0315705521185947 166. m -127.0315705521185947 166. l -182.4060126997797511 54. m -192.4060126997797511 54. l -114.0315705521185947 166. m -117.0315705521185947 166. m -116.9739263933282842 166.5852709660483981 l -116.80320914965246 167.1480502970952671 l -116.525979389026233 167.6667106990587968 l -116.1528908956782402 168.1213203435596313 l -115.6982812511774057 168.4944088369076383 l -115.1796208492138618 168.7716385975338653 l -114.6168415181669786 168.9423558412096895 l -114.0315705521185947 169. l -113.4462995860702108 168.9423558412096895 l -112.8835202550233276 168.7716385975338653 l -112.3648598530597837 168.4944088369076383 l -111.9102502085589492 168.1213203435596313 l -111.5371617152109565 167.6667106990587968 l -111.2599319545847294 167.1480502970952671 l -111.0892147109089052 166.5852709660483981 l -111.0315705521185947 166. l -111.0892147109089052 165.4147290339516019 l -111.2599319545847294 164.8519497029047329 l -111.5371617152109565 164.3332893009412032 l -111.9102502085589492 163.8786796564403687 l -112.3648598530597837 163.5055911630923617 l -112.8835202550233276 163.2283614024661347 l -113.4462995860702108 163.0576441587903105 l -114.0315705521185947 163. l -114.6168415181669786 163.0576441587903105 l -115.1796208492138618 163.2283614024661347 l -115.6982812511774057 163.5055911630923617 l -116.1528908956782402 163.8786796564403687 l -116.525979389026233 164.3332893009412032 l -116.80320914965246 164.8519497029047329 l -116.9739263933282842 165.4147290339516019 l -117.0315705521185947 166. l -192.4060126997797511 50. m -183.4060126997797511 54. l -192.4060126997797511 58. l +138.1562661554479519 166. m +148.1562661554479519 166. l +157.1809013991668849 54. m +167.1809013991668849 54. l +135.1562661554479519 166. m +138.1562661554479519 166. m +138.0986219966576414 166.5852709660483981 l +137.9279047529818172 167.1480502970952671 l +137.6506749923555901 167.6667106990587968 l +137.2775864990075831 168.1213203435596313 l +136.8229768545067486 168.4944088369076383 l +136.3043164525432189 168.7716385975338653 l +135.74153712149635 168.9423558412096895 l +135.1562661554479519 169. l +134.5709951893995537 168.9423558412096895 l +134.0082158583526848 168.7716385975338653 l +133.4895554563891551 168.4944088369076383 l +133.0349458118883206 168.1213203435596313 l +132.6618573185403136 167.6667106990587968 l +132.3846275579140865 167.1480502970952671 l +132.2139103142382623 166.5852709660483981 l +132.1562661554479519 166. l +132.2139103142382623 165.4147290339516019 l +132.3846275579140865 164.8519497029047329 l +132.6618573185403136 164.3332893009412032 l +133.0349458118883206 163.8786796564403687 l +133.4895554563891551 163.5055911630923617 l +134.0082158583526848 163.2283614024661347 l +134.5709951893995537 163.0576441587903105 l +135.1562661554479519 163. l +135.74153712149635 163.0576441587903105 l +136.3043164525432189 163.2283614024661347 l +136.8229768545067486 163.5055911630923617 l +137.2775864990075831 163.8786796564403687 l +137.6506749923555901 164.3332893009412032 l +137.9279047529818172 164.8519497029047329 l +138.0986219966576414 165.4147290339516019 l +138.1562661554479519 166. l +167.1809013991668849 50. m +158.1809013991668849 54. l +167.1809013991668849 58. l S Q q @@ -8985,7 +10930,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -8996,7 +10941,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 513.3569440998326172 75. Tm +1. 0. 0. -1. 448.813687667935767 243. Tm <000d> Tj ET Q @@ -9005,8 +10950,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -331.4958023744403022 138. 1074.240862710032161 1006.222944050892238 re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +291.7473432479283701 26. 189.9303618537704779 361. re W n q @@ -9014,73 +10959,169 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 331.4958023744403022 138. cm -111.1976370777311587 54. m -107.1976370777311587 54. l +1. 0. 0. 1. 291.7473432479283701 26. cm +132.7526466762884638 334. m +128.7526466762884638 334. l +36. 334. l +29.3333333333333357 334. 26. 330.6666666666666856 26. 324. c +26. 64. l +26. 57.3333333333333357 29.3333333333333357 54. 36. 54. c +146.9303618537704779 54. l +156.9303618537704779 54. l +156.9303618537704779 54. l +146.9303618537704779 54. l +36. 54. l +29.3333333333333357 54. 26. 57.3333333333333357 26. 64. c +26. 324. l +26. 330.6666666666666856 29.3333333333333357 334. 36. 334. c +128.7526466762884638 334. l +132.7526466762884638 334. l +h +138.7526466762884638 334. m +148.7526466762884638 334. l +156.9303618537704779 54. m +166.9303618537704779 54. l +135.7526466762884638 334. m +138.7526466762884638 334. m +138.6950025174981533 334.5852709660483697 l +138.5242852738223291 335.1480502970952671 l +138.2470555131961021 335.6667106990587968 l +137.8739670198480951 336.1213203435596597 l +137.4193573753472606 336.4944088369076098 l +136.9006969733837309 336.7716385975338653 l +136.3379176423368619 336.9423558412096895 l +135.7526466762884638 337. l +135.1673757102400657 336.9423558412096895 l +134.6045963791931968 336.7716385975338653 l +134.0859359772296671 336.4944088369076098 l +133.6313263327288325 336.1213203435596597 l +133.2582378393808256 335.6667106990587968 l +132.9810080787545985 335.1480502970952671 l +132.8102908350787743 334.5852709660483697 l +132.7526466762884638 334. l +132.8102908350787743 333.4147290339516303 l +132.9810080787545985 332.8519497029047329 l +133.2582378393808256 332.3332893009412032 l +133.6313263327288325 331.8786796564403403 l +134.0859359772296671 331.5055911630923902 l +134.6045963791931968 331.2283614024661347 l +135.1673757102400657 331.0576441587903105 l +135.7526466762884638 331. l +136.3379176423368619 331.0576441587903105 l +136.9006969733837309 331.2283614024661347 l +137.4193573753472606 331.5055911630923902 l +137.8739670198480951 331.8786796564403403 l +138.2470555131961021 332.3332893009412032 l +138.5242852738223291 332.8519497029047329 l +138.6950025174981533 333.4147290339516303 l +138.7526466762884638 334. l +166.9303618537704779 50. m +157.9303618537704779 54. l +166.9303618537704779 58. l +S +Q +q +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 414.134755549216834 355. Tm +<0013001100110014> Tj +ET +Q +Q +q +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 447.966767601698848 75. Tm +<000d> Tj +ET +Q +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +291.6137221377301216 306. 1049.5796865148454344 1006.222944050892238 re +W +n +q +q +q +2. w +0.38 0.61 0.8 RG +1. 0. 0. 1. 291.6137221377301216 306. cm +132.8862677864867123 54. m +128.8862677864867123 54. l 36. 54. l 29.3333333333333357 54. 26. 57.3333333333333357 26. 64. c 26. 969.222944050892238 l 26. 975.8896107175588668 29.3333333333333357 979.222944050892238 36. 979.222944050892238 c -1041.240862710032161 979.222944050892238 l -1047.9075293766989034 979.222944050892238 1051.240862710032161 975.8896107175588668 1051.240862710032161 969.222944050892238 c -1051.240862710032161 730.5244837892142868 l -1051.240862710032161 723.8784679110113984 1047.9178547709307168 720.5554599719099542 1041.2718388927278284 720.5554599719099542 c -1031.3028150754234957 720.5554599719099542 l -1021.302815075423382 720.5554599719099542 l -1021.302815075423382 720.5554599719099542 l -1031.3028150754234957 720.5554599719099542 l -1041.2718388927278284 720.5554599719099542 l -1047.9178547709307168 720.5554599719099542 1051.240862710032161 723.8784679110113984 1051.240862710032161 730.5244837892142868 c -1051.240862710032161 969.222944050892238 l -1051.240862710032161 975.8896107175588668 1047.9075293766989034 979.222944050892238 1041.240862710032161 979.222944050892238 c +1016.5796865148454344 979.222944050892238 l +1023.2463531815120632 979.222944050892238 1026.5796865148454344 975.8896107175588668 1026.5796865148454344 969.222944050892238 c +1026.5796865148454344 730.5554599719099542 l +1026.5796865148454344 723.8887933052433254 1023.2463531815120632 720.5554599719099542 1016.5796865148454344 720.5554599719099542 c +1005.3276740364867692 720.5554599719099542 l +995.3276740364867692 720.5554599719099542 l +995.3276740364867692 720.5554599719099542 l +1005.3276740364867692 720.5554599719099542 l +1016.5796865148454344 720.5554599719099542 l +1023.2463531815120632 720.5554599719099542 1026.5796865148454344 723.8887933052433254 1026.5796865148454344 730.5554599719099542 c +1026.5796865148454344 969.222944050892238 l +1026.5796865148454344 975.8896107175588668 1023.2463531815120632 979.222944050892238 1016.5796865148454344 979.222944050892238 c 36. 979.222944050892238 l 29.3333333333333357 979.222944050892238 26. 975.8896107175588668 26. 969.222944050892238 c 26. 64. l 26. 57.3333333333333357 29.3333333333333357 54. 36. 54. c -107.1976370777311587 54. l -111.1976370777311587 54. l +128.8862677864867123 54. l +132.8862677864867123 54. l h -117.1976370777311587 54. m -127.1976370777311587 54. l -1021.302815075423382 720.5554599719099542 m -1011.302815075423382 720.5554599719099542 l -114.1976370777311587 54. m -117.1976370777311587 54. m -117.1399929189408482 54.5852709660483839 l -116.969275675265024 55.1480502970952671 l -116.6920459146387969 55.6667106990588039 l -116.3189574212908042 56.1213203435596455 l -115.8643477767899697 56.4944088369076383 l -115.3456873748264258 56.7716385975338582 l -114.7829080437795426 56.9423558412096895 l -114.1976370777311587 57. l -113.6123661116827748 56.9423558412096895 l -113.0495867806358916 56.7716385975338582 l -112.5309263786723477 56.4944088369076383 l -112.0763167341715132 56.1213203435596455 l -111.7032282408235204 55.6667106990588039 l -111.4259984801972934 55.1480502970952671 l -111.2552812365214692 54.5852709660483839 l -111.1976370777311587 54. l -111.2552812365214692 53.4147290339516161 l -111.4259984801972934 52.8519497029047329 l -111.7032282408235204 52.3332893009411961 l -112.0763167341715132 51.8786796564403545 l -112.5309263786723477 51.5055911630923617 l -113.0495867806358916 51.2283614024661418 l -113.6123661116827748 51.0576441587903105 l -114.1976370777311587 51. l -114.7829080437795426 51.0576441587903105 l -115.3456873748264258 51.2283614024661418 l -115.8643477767899697 51.5055911630923617 l -116.3189574212908042 51.8786796564403545 l -116.6920459146387969 52.3332893009411961 l -116.969275675265024 52.8519497029047258 l -117.1399929189408482 53.4147290339516161 l -117.1976370777311587 54. l -1011.302815075423382 716.5554599719099542 m -1020.302815075423382 720.5554599719099542 l -1011.302815075423382 724.5554599719099542 l +138.8862677864867123 54. m +148.8862677864867123 54. l +995.3276740364867692 720.5554599719099542 m +985.3276740364867692 720.5554599719099542 l +135.8862677864867123 54. m +138.8862677864867123 54. m +138.8286236276964019 54.5852709660483839 l +138.6579063840205777 55.1480502970952671 l +138.3806766233943506 55.6667106990588039 l +138.0075881300463436 56.1213203435596455 l +137.5529784855455091 56.4944088369076383 l +137.0343180835819794 56.7716385975338582 l +136.4715387525351105 56.9423558412096895 l +135.8862677864867123 57. l +135.3009968204383142 56.9423558412096895 l +134.7382174893914453 56.7716385975338582 l +134.2195570874279156 56.4944088369076383 l +133.7649474429270811 56.1213203435596455 l +133.3918589495790741 55.6667106990588039 l +133.114629188952847 55.1480502970952671 l +132.9439119452770228 54.5852709660483839 l +132.8862677864867123 54. l +132.9439119452770228 53.4147290339516161 l +133.114629188952847 52.8519497029047329 l +133.3918589495790741 52.3332893009411961 l +133.7649474429270811 51.8786796564403545 l +134.2195570874279156 51.5055911630923617 l +134.7382174893914453 51.2283614024661418 l +135.3009968204383142 51.0576441587903105 l +135.8862677864867123 51. l +136.4715387525351105 51.0576441587903105 l +137.0343180835819794 51.2283614024661418 l +137.5529784855455091 51.5055911630923617 l +138.0075881300463436 51.8786796564403545 l +138.3806766233943506 52.3332893009411961 l +138.6579063840205777 52.8519497029047258 l +138.8286236276964019 53.4147290339516161 l +138.8862677864867123 54. l +985.3276740364867692 716.5554599719099542 m +994.3276740364867692 720.5554599719099542 l +985.3276740364867692 724.5554599719099542 l S Q q @@ -9089,7 +11130,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -9100,7 +11141,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1345.7986174498637411 853.5554599719099542 Tm +1. 0. 0. -1. 1279.941396174216834 1021.5554599719099542 Tm <000d> Tj ET Q @@ -9109,8 +11150,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -331.7021471261896863 138. 1464.7500901791408978 1006.1275585178768779 re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +291.6137221377301216 306. 1448.5112438842177198 1006.1275585178768779 re W n q @@ -9118,73 +11159,73 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 331.7021471261896863 138. cm -110.9912923259817745 54. m -106.9912923259817745 54. l +1. 0. 0. 1. 291.6137221377301216 306. cm +132.8862677864867123 54. m +128.8862677864867123 54. l 36. 54. l 29.3333333333333357 54. 26. 57.3333333333333357 26. 64. c 26. 969.1275585178768779 l 26. 975.7942251845435067 29.3333333333333357 979.1275585178768779 36. 979.1275585178768779 c -1431.7500901791408978 979.1275585178768779 l -1438.4167568458076403 979.1275585178768779 1441.7500901791408978 975.7942251845435067 1441.7500901791408978 969.1275585178768779 c -1441.7500901791408978 272. l -1441.7500901791408978 265.3333333333333144 1438.4167568458076403 262. 1431.7500901791408978 262. c -1359.0964703236741116 262. l -1349.0964703236741116 262. l -1349.0964703236741116 262. l -1359.0964703236741116 262. l -1431.7500901791408978 262. l -1438.4167568458076403 262. 1441.7500901791408978 265.3333333333333144 1441.7500901791408978 272. c -1441.7500901791408978 969.1275585178768779 l -1441.7500901791408978 975.7942251845435067 1438.4167568458076403 979.1275585178768779 1431.7500901791408978 979.1275585178768779 c +1415.5112438842177198 979.1275585178768779 l +1422.1779105508844623 979.1275585178768779 1425.5112438842177198 975.7942251845435067 1425.5112438842177198 969.1275585178768779 c +1425.5112438842177198 272. l +1425.5112438842177198 265.3333333333333144 1422.1779105508844623 262. 1415.5112438842177198 262. c +1322.1367560677367692 262. l +1312.1367560677367692 262. l +1312.1367560677367692 262. l +1322.1367560677367692 262. l +1415.5112438842177198 262. l +1422.1779105508844623 262. 1425.5112438842177198 265.3333333333333144 1425.5112438842177198 272. c +1425.5112438842177198 969.1275585178768779 l +1425.5112438842177198 975.7942251845435067 1422.1779105508844623 979.1275585178768779 1415.5112438842177198 979.1275585178768779 c 36. 979.1275585178768779 l 29.3333333333333357 979.1275585178768779 26. 975.7942251845435067 26. 969.1275585178768779 c 26. 64. l 26. 57.3333333333333357 29.3333333333333357 54. 36. 54. c -106.9912923259817745 54. l -110.9912923259817745 54. l +128.8862677864867123 54. l +132.8862677864867123 54. l h -116.9912923259817745 54. m -126.9912923259817745 54. l -1349.0964703236741116 262. m -1339.0964703236741116 262. l -113.9912923259817745 54. m -116.9912923259817745 54. m -116.933648167191464 54.5852709660483839 l -116.7629309235156398 55.1480502970952671 l -116.4857011628894128 55.6667106990588039 l -116.11261266954142 56.1213203435596455 l -115.6580030250405855 56.4944088369076383 l -115.1393426230770416 56.7716385975338582 l -114.5765632920301584 56.9423558412096895 l -113.9912923259817745 57. l -113.4060213599333906 56.9423558412096895 l -112.8432420288865075 56.7716385975338582 l -112.3245816269229636 56.4944088369076383 l -111.869971982422129 56.1213203435596455 l -111.4968834890741363 55.6667106990588039 l -111.2196537284479092 55.1480502970952671 l -111.048936484772085 54.5852709660483839 l -110.9912923259817745 54. l -111.048936484772085 53.4147290339516161 l -111.2196537284479092 52.8519497029047329 l -111.4968834890741363 52.3332893009411961 l -111.869971982422129 51.8786796564403545 l -112.3245816269229636 51.5055911630923617 l -112.8432420288865075 51.2283614024661418 l -113.4060213599333906 51.0576441587903105 l -113.9912923259817745 51. l -114.5765632920301584 51.0576441587903105 l -115.1393426230770416 51.2283614024661418 l -115.6580030250405855 51.5055911630923617 l -116.11261266954142 51.8786796564403545 l -116.4857011628894128 52.3332893009411961 l -116.7629309235156398 52.8519497029047258 l -116.933648167191464 53.4147290339516161 l -116.9912923259817745 54. l -1339.0964703236741116 258. m -1348.0964703236741116 262. l -1339.0964703236741116 266. l +138.8862677864867123 54. m +148.8862677864867123 54. l +1312.1367560677367692 262. m +1302.1367560677367692 262. l +135.8862677864867123 54. m +138.8862677864867123 54. m +138.8286236276964019 54.5852709660483839 l +138.6579063840205777 55.1480502970952671 l +138.3806766233943506 55.6667106990588039 l +138.0075881300463436 56.1213203435596455 l +137.5529784855455091 56.4944088369076383 l +137.0343180835819794 56.7716385975338582 l +136.4715387525351105 56.9423558412096895 l +135.8862677864867123 57. l +135.3009968204383142 56.9423558412096895 l +134.7382174893914453 56.7716385975338582 l +134.2195570874279156 56.4944088369076383 l +133.7649474429270811 56.1213203435596455 l +133.3918589495790741 55.6667106990588039 l +133.114629188952847 55.1480502970952671 l +132.9439119452770228 54.5852709660483839 l +132.8862677864867123 54. l +132.9439119452770228 53.4147290339516161 l +133.114629188952847 52.8519497029047329 l +133.3918589495790741 52.3332893009411961 l +133.7649474429270811 51.8786796564403545 l +134.2195570874279156 51.5055911630923617 l +134.7382174893914453 51.2283614024661418 l +135.3009968204383142 51.0576441587903105 l +135.8862677864867123 51. l +136.4715387525351105 51.0576441587903105 l +137.0343180835819794 51.2283614024661418 l +137.5529784855455091 51.5055911630923617 l +138.0075881300463436 51.8786796564403545 l +138.3806766233943506 52.3332893009411961 l +138.6579063840205777 52.8519497029047258 l +138.8286236276964019 53.4147290339516161 l +138.8862677864867123 54. l +1302.1367560677367692 258. m +1311.1367560677367692 262. l +1302.1367560677367692 266. l S Q q @@ -9193,7 +11234,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -9204,7 +11245,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1673.7986174498637411 395. Tm +1. 0. 0. -1. 1596.750478205466834 563. Tm <000d> Tj ET Q @@ -9213,8 +11254,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -262.7639494811136842 138. 218.9294899710577624 225. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +242.2695554320287101 306. 221.2304344921881238 225. re W n q @@ -9222,62 +11263,62 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 262.7639494811136842 138. cm -179.9294899710577624 54. m -175.9294899710577624 54. l -104.9381976450758316 54. l -98.2715309784091602 54. 94.9381976450758316 57.3333333333333357 94.9381976450758316 64. c -94.9381976450758316 188. l -94.9381976450758316 194.6666666666666572 91.604864311742503 198. 84.9381976450758316 198. c +1. 0. 0. 1. 242.2695554320287101 306. cm +182.2304344921881238 54. m +178.2304344921881238 54. l +85.3441667057014115 54. l +78.6775000390347401 54. 75.3441667057014115 57.3333333333333357 75.3441667057014115 64. c +75.3441667057014115 188. l +75.3441667057014115 194.6666666666666572 72.0108333723680829 198. 65.3441667057014115 198. c 46. 198. l 36. 198. l 36. 198. l 46. 198. l -84.9381976450758316 198. l -91.604864311742503 198. 94.9381976450758316 194.6666666666666572 94.9381976450758316 188. c -94.9381976450758316 64. l -94.9381976450758316 57.3333333333333357 98.2715309784091602 54. 104.9381976450758316 54. c -175.9294899710577624 54. l -179.9294899710577624 54. l +65.3441667057014115 198. l +72.0108333723680829 198. 75.3441667057014115 194.6666666666666572 75.3441667057014115 188. c +75.3441667057014115 64. l +75.3441667057014115 57.3333333333333357 78.6775000390347401 54. 85.3441667057014115 54. c +178.2304344921881238 54. l +182.2304344921881238 54. l h -185.9294899710577624 54. m -195.9294899710577624 54. l +188.2304344921881238 54. m +198.2304344921881238 54. l 36. 198. m 26. 198. l -182.9294899710577624 54. m -185.9294899710577624 54. m -185.8718458122674519 54.5852709660483839 l -185.7011285685916278 55.1480502970952671 l -185.4238988079654007 55.6667106990588039 l -185.0508103146173937 56.1213203435596455 l -184.5962006701165592 56.4944088369076383 l -184.0775402681530295 56.7716385975338582 l -183.5147609371061606 56.9423558412096895 l -182.9294899710577624 57. l -182.3442190050093643 56.9423558412096895 l -181.7814396739624954 56.7716385975338582 l -181.2627792719989657 56.4944088369076383 l -180.8081696274981311 56.1213203435596455 l -180.4350811341501242 55.6667106990588039 l -180.1578513735238971 55.1480502970952671 l -179.9871341298480729 54.5852709660483839 l -179.9294899710577624 54. l -179.9871341298480729 53.4147290339516161 l -180.1578513735238971 52.8519497029047329 l -180.4350811341501242 52.3332893009411961 l -180.8081696274981311 51.8786796564403545 l -181.2627792719989657 51.5055911630923617 l -181.7814396739624954 51.2283614024661418 l -182.3442190050093643 51.0576441587903105 l -182.9294899710577624 51. l -183.5147609371061606 51.0576441587903105 l -184.0775402681530295 51.2283614024661418 l -184.5962006701165592 51.5055911630923617 l -185.0508103146173937 51.8786796564403545 l -185.4238988079654007 52.3332893009411961 l -185.7011285685916278 52.8519497029047258 l -185.8718458122674519 53.4147290339516161 l -185.9294899710577624 54. l +185.2304344921881238 54. m +188.2304344921881238 54. m +188.1727903333978134 54.5852709660483839 l +188.0020730897219892 55.1480502970952671 l +187.7248433290957621 55.6667106990588039 l +187.3517548357477551 56.1213203435596455 l +186.8971451912469206 56.4944088369076383 l +186.3784847892833909 56.7716385975338582 l +185.815705458236522 56.9423558412096895 l +185.2304344921881238 57. l +184.6451635261397257 56.9423558412096895 l +184.0823841950928568 56.7716385975338582 l +183.5637237931293271 56.4944088369076383 l +183.1091141486284926 56.1213203435596455 l +182.7360256552804856 55.6667106990588039 l +182.4587958946542585 55.1480502970952671 l +182.2880786509784343 54.5852709660483839 l +182.2304344921881238 54. l +182.2880786509784343 53.4147290339516161 l +182.4587958946542585 52.8519497029047329 l +182.7360256552804856 52.3332893009411961 l +183.1091141486284926 51.8786796564403545 l +183.5637237931293271 51.5055911630923617 l +184.0823841950928568 51.2283614024661418 l +184.6451635261397257 51.0576441587903105 l +185.2304344921881238 51. l +185.815705458236522 51.0576441587903105 l +186.3784847892833909 51.2283614024661418 l +186.8971451912469206 51.5055911630923617 l +187.3517548357477551 51.8786796564403545 l +187.7248433290957621 52.3332893009411961 l +188.0020730897219892 52.8519497029047258 l +188.1727903333978134 53.4147290339516161 l +188.2304344921881238 54. l 26. 194. m 35. 198. l 26. 202. l @@ -9289,7 +11330,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -9300,7 +11341,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 291.7639494811136842 331. Tm +1. 0. 0. -1. 271.2695554320287101 499. Tm <000d> Tj ET Q @@ -9309,8 +11350,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -263.1143544405584862 138. 218.5790850116129604 793. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +240.3657246714809617 306. 223.1342652527358723 841. re W n q @@ -9318,65 +11359,65 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 263.1143544405584862 138. cm -179.5790850116129604 54. m -175.5790850116129604 54. l -104.5877926856308591 54. l -97.9211260189641877 54. 94.5877926856308591 57.3333333333333357 94.5877926856308591 64. c -94.5877926856308591 756. l -94.5877926856308591 762.6666666666666288 91.2544593522975305 766. 84.5877926856308591 766. c -46. 766. l -36. 766. l -36. 766. l -46. 766. l -84.5877926856308591 766. l -91.2544593522975305 766. 94.5877926856308591 762.6666666666666288 94.5877926856308591 756. c -94.5877926856308591 64. l -94.5877926856308591 57.3333333333333357 97.9211260189641877 54. 104.5877926856308591 54. c -175.5790850116129604 54. l -179.5790850116129604 54. l +1. 0. 0. 1. 240.3657246714809617 306. cm +184.1342652527358723 54. m +180.1342652527358723 54. l +87.24799746624916 54. l +80.5813307995824886 54. 77.24799746624916 57.3333333333333357 77.24799746624916 64. c +77.24799746624916 804. l +77.24799746624916 810.6666666666666288 73.9146641329158314 814. 67.24799746624916 814. c +46. 814. l +36. 814. l +36. 814. l +46. 814. l +67.24799746624916 814. l +73.9146641329158314 814. 77.24799746624916 810.6666666666666288 77.24799746624916 804. c +77.24799746624916 64. l +77.24799746624916 57.3333333333333357 80.5813307995824886 54. 87.24799746624916 54. c +180.1342652527358723 54. l +184.1342652527358723 54. l h -185.5790850116129604 54. m -195.5790850116129604 54. l -36. 766. m -26. 766. l -182.5790850116129604 54. m -185.5790850116129604 54. m -185.52144085282265 54.5852709660483839 l -185.3507236091468258 55.1480502970952671 l -185.0734938485205987 55.6667106990588039 l -184.7004053551725917 56.1213203435596455 l -184.2457957106717572 56.4944088369076383 l -183.7271353087082275 56.7716385975338582 l -183.1643559776613586 56.9423558412096895 l -182.5790850116129604 57. l -181.9938140455645623 56.9423558412096895 l -181.4310347145176934 56.7716385975338582 l -180.9123743125541637 56.4944088369076383 l -180.4577646680533292 56.1213203435596455 l -180.0846761747053222 55.6667106990588039 l -179.8074464140790951 55.1480502970952671 l -179.6367291704032709 54.5852709660483839 l -179.5790850116129604 54. l -179.6367291704032709 53.4147290339516161 l -179.8074464140790951 52.8519497029047329 l -180.0846761747053222 52.3332893009411961 l -180.4577646680533292 51.8786796564403545 l -180.9123743125541637 51.5055911630923617 l -181.4310347145176934 51.2283614024661418 l -181.9938140455645623 51.0576441587903105 l -182.5790850116129604 51. l -183.1643559776613586 51.0576441587903105 l -183.7271353087082275 51.2283614024661418 l -184.2457957106717572 51.5055911630923617 l -184.7004053551725917 51.8786796564403545 l -185.0734938485205987 52.3332893009411961 l -185.3507236091468258 52.8519497029047258 l -185.52144085282265 53.4147290339516161 l -185.5790850116129604 54. l -26. 762. m -35. 766. l -26. 770. l +190.1342652527358723 54. m +200.1342652527358723 54. l +36. 814. m +26. 814. l +187.1342652527358723 54. m +190.1342652527358723 54. m +190.0766210939455618 54.5852709660483839 l +189.9059038502697376 55.1480502970952671 l +189.6286740896435106 55.6667106990588039 l +189.2555855962955036 56.1213203435596455 l +188.8009759517946691 56.4944088369076383 l +188.2823155498311394 56.7716385975338582 l +187.7195362187842704 56.9423558412096895 l +187.1342652527358723 57. l +186.5489942866874742 56.9423558412096895 l +185.9862149556406052 56.7716385975338582 l +185.4675545536770755 56.4944088369076383 l +185.012944909176241 56.1213203435596455 l +184.639856415828234 55.6667106990588039 l +184.362626655202007 55.1480502970952671 l +184.1919094115261828 54.5852709660483839 l +184.1342652527358723 54. l +184.1919094115261828 53.4147290339516161 l +184.362626655202007 52.8519497029047329 l +184.639856415828234 52.3332893009411961 l +185.012944909176241 51.8786796564403545 l +185.4675545536770755 51.5055911630923617 l +185.9862149556406052 51.2283614024661418 l +186.5489942866874742 51.0576441587903105 l +187.1342652527358723 51. l +187.7195362187842704 51.0576441587903105 l +188.2823155498311394 51.2283614024661418 l +188.8009759517946691 51.5055911630923617 l +189.2555855962955036 51.8786796564403545 l +189.6286740896435106 52.3332893009411961 l +189.9059038502697376 52.8519497029047258 l +190.0766210939455618 53.4147290339516161 l +190.1342652527358723 54. l +26. 810. m +35. 814. l +26. 818. l S Q q @@ -9385,7 +11426,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 432.3282050771714466 187. Tm +1. 0. 0. -1. 414.134755549216834 355. Tm <0013001100110014> Tj ET Q @@ -9396,7 +11437,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 292.1143544405584862 899. Tm +1. 0. 0. -1. 269.3657246714809617 1115. Tm <000d> Tj ET Q @@ -9405,8 +11446,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -685.6856269521714466 170. 103.9906822366510255 905. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +239.39990234375 306. 224.100087580466834 1121. re W n q @@ -9414,62 +11455,158 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 685.6856269521714466 170. cm -43.0106297767306955 878. m -47.0106297767306955 878. l -70.9906822366510255 878. l -77.6573489033176969 878. 80.9906822366510255 874.6666666666666288 80.9906822366510255 868. c -80.9906822366510255 64. l -80.9906822366510255 57.3333333333333357 77.6573489033176969 54. 70.9906822366510255 54. c -46. 54. l -36. 54. l -36. 54. l -46. 54. l -70.9906822366510255 54. l -77.6573489033176969 54. 80.9906822366510255 57.3333333333333357 80.9906822366510255 64. c -80.9906822366510255 868. l -80.9906822366510255 874.6666666666666288 77.6573489033176969 878. 70.9906822366510255 878. c -47.0106297767306955 878. l -43.0106297767306955 878. l +1. 0. 0. 1. 239.39990234375 306. cm +185.100087580466834 54. m +181.100087580466834 54. l +87.8251264656671538 54. l +81.1584597990004823 54. 77.8251264656671538 57.3333333333333357 77.8251264656671538 64. c +77.8251264656671538 1084. l +77.8251264656671538 1090.6666666666667425 74.4917931323338252 1094. 67.8251264656671538 1094. c +46. 1094. l +36. 1094. l +36. 1094. l +46. 1094. l +67.8251264656671538 1094. l +74.4917931323338252 1094. 77.8251264656671538 1090.6666666666667425 77.8251264656671538 1084. c +77.8251264656671538 64. l +77.8251264656671538 57.3333333333333357 81.1584597990004823 54. 87.8251264656671538 54. c +181.100087580466834 54. l +185.100087580466834 54. l h -37.0106297767306955 878. m -27.0106297767306955 878. l +191.100087580466834 54. m +201.100087580466834 54. l +36. 1094. m +26. 1094. l +188.100087580466834 54. m +191.100087580466834 54. m +191.0424434216765235 54.5852709660483839 l +190.8717261780006993 55.1480502970952671 l +190.5944964173744722 55.6667106990588039 l +190.2214079240264653 56.1213203435596455 l +189.7667982795256307 56.4944088369076383 l +189.248137877562101 56.7716385975338582 l +188.6853585465152321 56.9423558412096895 l +188.100087580466834 57. l +187.5148166144184358 56.9423558412096895 l +186.9520372833715669 56.7716385975338582 l +186.4333768814080372 56.4944088369076383 l +185.9787672369072027 56.1213203435596455 l +185.6056787435591957 55.6667106990588039 l +185.3284489829329686 55.1480502970952671 l +185.1577317392571445 54.5852709660483839 l +185.100087580466834 54. l +185.1577317392571445 53.4147290339516161 l +185.3284489829329686 52.8519497029047329 l +185.6056787435591957 52.3332893009411961 l +185.9787672369072027 51.8786796564403545 l +186.4333768814080372 51.5055911630923617 l +186.9520372833715669 51.2283614024661418 l +187.5148166144184358 51.0576441587903105 l +188.100087580466834 51. l +188.6853585465152321 51.0576441587903105 l +189.248137877562101 51.2283614024661418 l +189.7667982795256307 51.5055911630923617 l +190.2214079240264653 51.8786796564403545 l +190.5944964173744722 52.3332893009411961 l +190.8717261780006993 52.8519497029047258 l +191.0424434216765235 53.4147290339516161 l +191.100087580466834 54. l +26. 1090. m +35. 1094. l +26. 1098. l +S +Q +q +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 414.134755549216834 355. Tm +<0013001100110014> Tj +ET +Q +Q +q +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 268.39990234375 1395. Tm +<000d> Tj +ET +Q +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +617.567861017966834 338. 107.5651917389587879 905. re +W +n +q +q +q +2. w +0.38 0.61 0.8 RG +1. 0. 0. 1. 617.567861017966834 338. cm +45.321955685288458 878. m +49.321955685288458 878. l +74.5651917389587879 878. l +81.2318584056254593 878. 84.5651917389587879 874.6666666666666288 84.5651917389587879 868. c +84.5651917389587879 64. l +84.5651917389587879 57.3333333333333357 81.2318584056254593 54. 74.5651917389587879 54. c +46. 54. l +36. 54. l +36. 54. l +46. 54. l +74.5651917389587879 54. l +81.2318584056254593 54. 84.5651917389587879 57.3333333333333357 84.5651917389587879 64. c +84.5651917389587879 868. l +84.5651917389587879 874.6666666666666288 81.2318584056254593 878. 74.5651917389587879 878. c +49.321955685288458 878. l +45.321955685288458 878. l +h +39.321955685288458 878. m +29.321955685288458 878. l 36. 54. m 26. 54. l -40.0106297767306955 878. m -43.0106297767306955 878. m -42.9529856179403851 878.5852709660483697 l -42.7822683742645538 879.1480502970953239 l -42.5050386136383338 879.6667106990588536 l -42.131950120290341 880.1213203435596597 l -41.6773404757894994 880.4944088369076098 l -41.1586800738259626 880.7716385975338653 l -40.5959007427790795 880.9423558412097464 l -40.0106297767306955 881. l -39.4253588106823116 880.9423558412097464 l -38.8625794796354285 880.7716385975338653 l -38.3439190776718917 880.4944088369076098 l -37.88930943317105 880.1213203435596597 l -37.5162209398230573 879.6667106990588536 l -37.2389911791968373 879.1480502970953239 l -37.068273935521006 878.5852709660483697 l -37.0106297767306955 878. l -37.068273935521006 877.4147290339516303 l -37.2389911791968373 876.8519497029046761 l -37.5162209398230573 876.3332893009411464 l -37.88930943317105 875.8786796564403403 l -38.3439190776718917 875.5055911630923902 l -38.8625794796354214 875.2283614024661347 l -39.4253588106823116 875.0576441587902536 l -40.0106297767306955 875. l -40.5959007427790795 875.0576441587902536 l -41.1586800738259626 875.2283614024661347 l -41.6773404757894994 875.5055911630923902 l -42.131950120290341 875.8786796564403403 l -42.5050386136383338 876.3332893009411464 l -42.7822683742645538 876.8519497029046761 l -42.9529856179403851 877.4147290339516303 l -43.0106297767306955 878. l +42.321955685288458 878. m +45.321955685288458 878. m +45.2643115264981475 878.5852709660483697 l +45.0935942828223162 879.1480502970953239 l +44.8163645221960962 879.6667106990588536 l +44.4432760288481035 880.1213203435596597 l +43.9886663843472618 880.4944088369076098 l +43.470005982383725 880.7716385975338653 l +42.9072266513368419 880.9423558412097464 l +42.321955685288458 881. l +41.7366847192400741 880.9423558412097464 l +41.1739053881931909 880.7716385975338653 l +40.6552449862296541 880.4944088369076098 l +40.2006353417288125 880.1213203435596597 l +39.8275468483808197 879.6667106990588536 l +39.5503170877545998 879.1480502970953239 l +39.3795998440787685 878.5852709660483697 l +39.321955685288458 878. l +39.3795998440787685 877.4147290339516303 l +39.5503170877545998 876.8519497029046761 l +39.8275468483808197 876.3332893009411464 l +40.2006353417288125 875.8786796564403403 l +40.6552449862296541 875.5055911630923902 l +41.1739053881931838 875.2283614024661347 l +41.7366847192400741 875.0576441587902536 l +42.321955685288458 875. l +42.9072266513368419 875.0576441587902536 l +43.470005982383725 875.2283614024661347 l +43.9886663843472618 875.5055911630923902 l +44.4432760288481035 875.8786796564403403 l +44.8163645221960962 876.3332893009411464 l +45.0935942828223162 876.8519497029046761 l +45.2643115264981475 877.4147290339516303 l +45.321955685288458 878. l 26. 50. m 35. 54. l 26. 58. l @@ -9481,7 +11618,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 715.696256728902199 1043. Tm +1. 0. 0. -1. 649.8898167032552919 1211. Tm <0013001100110014> Tj ET Q @@ -9492,7 +11629,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 714.6856269521714466 219. Tm +1. 0. 0. -1. 646.567861017966834 387. Tm <000d> Tj ET Q @@ -9501,8 +11638,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -686.696256728902199 186. 153.346989627211542 889. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +620.8898167032552919 227.6848152188745189 1038.7802118942818197 1015.3151847811254811 re W n q @@ -9510,65 +11647,73 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 686.696256728902199 186. cm -42. 862. m -46. 862. l -69.9800524599202731 862. l -76.6467191265869445 862. 79.9800524599202731 858.6666666666666288 79.9800524599202731 852. c -79.9800524599202731 64. l -79.9800524599202731 57.3333333333333357 83.3133857932536017 54. 89.9800524599202731 54. c -110.346989627211542 54. l -120.346989627211542 54. l -120.346989627211542 54. l -110.346989627211542 54. l -89.9800524599202731 54. l -83.3133857932536017 54. 79.9800524599202731 57.3333333333333357 79.9800524599202731 64. c -79.9800524599202731 852. l -79.9800524599202731 858.6666666666666288 76.6467191265869445 862. 69.9800524599202731 862. c -46. 862. l -42. 862. l +1. 0. 0. 1. 620.8898167032552919 227.6848152188745189 cm +42. 988.3151847811254811 m +46. 988.3151847811254811 l +71.5129574218523203 988.3151847811254811 l +78.1796240885189917 988.3151847811254811 81.5129574218523203 984.9818514477921099 81.5129574218523203 978.3151847811254811 c +81.5129574218523203 64. l +81.5129574218523203 57.3333333333333357 84.8462907551856489 54. 91.5129574218523203 54. c +1005.7802118942818197 54. l +1012.4468785609484485 54. 1015.7802118942818197 57.3333333333333357 1015.7802118942818197 64. c +1015.7802118942818197 298.3151847811254811 l +1015.7802118942818197 304.9818514477921667 1012.4468785609484485 308.3151847811254811 1005.7802118942818197 308.3151847811254811 c +992.860661502211542 308.3151847811254811 l +982.860661502211542 308.3151847811254811 l +982.860661502211542 308.3151847811254811 l +992.860661502211542 308.3151847811254811 l +1005.7802118942818197 308.3151847811254811 l +1012.4468785609484485 308.3151847811254811 1015.7802118942818197 304.9818514477921667 1015.7802118942818197 298.3151847811254811 c +1015.7802118942818197 64. l +1015.7802118942818197 57.3333333333333357 1012.4468785609484485 54. 1005.7802118942818197 54. c +91.5129574218523203 54. l +84.8462907551856489 54. 81.5129574218523203 57.3333333333333357 81.5129574218523203 64. c +81.5129574218523203 978.3151847811254811 l +81.5129574218523203 984.9818514477921099 78.1796240885189917 988.3151847811254811 71.5129574218523203 988.3151847811254811 c +46. 988.3151847811254811 l +42. 988.3151847811254811 l h -36. 862. m -26. 862. l -120.346989627211542 54. m -130.346989627211542 54. l -39. 862. m -42. 862. m -41.9423558412096895 862.5852709660483697 l -41.7716385975338582 863.1480502970953239 l -41.4944088369076383 863.6667106990588536 l -41.1213203435596455 864.1213203435596597 l -40.6667106990588039 864.4944088369076098 l -40.1480502970952671 864.7716385975338653 l -39.5852709660483839 864.9423558412097464 l -39. 865. l -38.4147290339516161 864.9423558412097464 l -37.8519497029047329 864.7716385975338653 l -37.3332893009411961 864.4944088369076098 l -36.8786796564403545 864.1213203435596597 l -36.5055911630923617 863.6667106990588536 l -36.2283614024661418 863.1480502970953239 l -36.0576441587903105 862.5852709660483697 l -36. 862. l -36.0576441587903105 861.4147290339516303 l -36.2283614024661418 860.8519497029046761 l -36.5055911630923617 860.3332893009411464 l -36.8786796564403545 859.8786796564403403 l -37.3332893009411961 859.5055911630923902 l -37.8519497029047258 859.2283614024661347 l -38.4147290339516161 859.0576441587902536 l -39. 859. l -39.5852709660483839 859.0576441587902536 l -40.1480502970952671 859.2283614024661347 l -40.6667106990588039 859.5055911630923902 l -41.1213203435596455 859.8786796564403403 l -41.4944088369076383 860.3332893009411464 l -41.7716385975338582 860.8519497029046761 l -41.9423558412096895 861.4147290339516303 l -42. 862. l -130.346989627211542 50. m -121.346989627211542 54. l -130.346989627211542 58. l +36. 988.3151847811254811 m +26. 988.3151847811254811 l +982.860661502211542 308.3151847811254811 m +972.860661502211542 308.3151847811254811 l +39. 988.3151847811254811 m +42. 988.3151847811254811 m +41.9423558412096895 988.9004557471738508 l +41.7716385975338582 989.463235078220805 l +41.4944088369076383 989.9818954801843347 l +41.1213203435596455 990.4365051246851408 l +40.6667106990588039 990.8095936180330909 l +40.1480502970952671 991.0868233786593464 l +39.5852709660483839 991.2575406223352275 l +39. 991.3151847811254811 l +38.4147290339516161 991.2575406223352275 l +37.8519497029047329 991.0868233786593464 l +37.3332893009411961 990.8095936180330909 l +36.8786796564403545 990.4365051246851408 l +36.5055911630923617 989.9818954801843347 l +36.2283614024661418 989.463235078220805 l +36.0576441587903105 988.9004557471738508 l +36. 988.3151847811254811 l +36.0576441587903105 987.7299138150771114 l +36.2283614024661418 987.1671344840301572 l +36.5055911630923617 986.6484740820666275 l +36.8786796564403545 986.1938644375658214 l +37.3332893009411961 985.8207759442178713 l +37.8519497029047258 985.5435461835916158 l +38.4147290339516161 985.3728289399157347 l +39. 985.3151847811254811 l +39.5852709660483839 985.3728289399157347 l +40.1480502970952671 985.5435461835916158 l +40.6667106990588039 985.8207759442178713 l +41.1213203435596455 986.1938644375658214 l +41.4944088369076383 986.6484740820666275 l +41.7716385975338582 987.1671344840301572 l +41.9423558412096895 987.7299138150771114 l +42. 988.3151847811254811 l +972.860661502211542 304.3151847811254811 m +981.860661502211542 308.3151847811254811 l +972.860661502211542 312.3151847811254811 l S Q q @@ -9577,7 +11722,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 715.696256728902199 1043. Tm +1. 0. 0. -1. 649.8898167032552919 1211. Tm <0013001100110014> Tj ET Q @@ -9588,7 +11733,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 806.3323088561137411 235. Tm +1. 0. 0. -1. 1596.750478205466834 531. Tm <000d> Tj ET Q @@ -9597,8 +11742,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -686.696256728902199 644.5554599719099542 153.346989627211542 430.4445400280900458 re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +620.8898167032552919 702.0886369817633295 715.6466635310971469 540.9113630182366705 re W n q @@ -9606,65 +11751,73 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 686.696256728902199 644.5554599719099542 cm -42. 403.4445400280900458 m -46. 403.4445400280900458 l -69.9800524599202731 403.4445400280900458 l -76.6467191265869445 403.4445400280900458 79.9800524599202731 400.1112066947567314 79.9800524599202731 393.4445400280900458 c -79.9800524599202731 64. l -79.9800524599202731 57.3333333333333357 83.3133857932536017 54. 89.9800524599202731 54. c -110.346989627211542 54. l -120.346989627211542 54. l -120.346989627211542 54. l -110.346989627211542 54. l -89.9800524599202731 54. l -83.3133857932536017 54. 79.9800524599202731 57.3333333333333357 79.9800524599202731 64. c -79.9800524599202731 393.4445400280900458 l -79.9800524599202731 400.1112066947567314 76.6467191265869445 403.4445400280900458 69.9800524599202731 403.4445400280900458 c -46. 403.4445400280900458 l -42. 403.4445400280900458 l +1. 0. 0. 1. 620.8898167032552919 702.0886369817633295 cm +42. 513.9113630182366705 m +46. 513.9113630182366705 l +73.1312333193084214 513.9113630182366705 l +79.7978999859750928 513.9113630182366705 83.1312333193084214 510.5780296849033562 83.1312333193084214 503.9113630182366705 c +83.1312333193084214 64. l +83.1312333193084214 57.3333333333333357 86.46456665264175 54. 93.1312333193084214 54. c +682.6466635310971469 54. l +689.3133301977637757 54. 692.6466635310971469 57.3333333333333357 692.6466635310971469 64. c +692.6466635310971469 284.1692809600788792 l +692.6466635310971469 289.7009756467907664 689.8808161877411749 292.4668229901466816 684.3491215010293445 292.4668229901466816 c +676.051579470961542 292.4668229901466816 l +666.051579470961542 292.4668229901466816 l +666.051579470961542 292.4668229901466816 l +676.051579470961542 292.4668229901466816 l +684.3491215010293445 292.4668229901466816 l +689.8808161877411749 292.4668229901466816 692.6466635310971469 289.7009756467907664 692.6466635310971469 284.1692809600788792 c +692.6466635310971469 64. l +692.6466635310971469 57.3333333333333357 689.3133301977637757 54. 682.6466635310971469 54. c +93.1312333193084214 54. l +86.46456665264175 54. 83.1312333193084214 57.3333333333333357 83.1312333193084214 64. c +83.1312333193084214 503.9113630182366705 l +83.1312333193084214 510.5780296849033562 79.7978999859750928 513.9113630182366705 73.1312333193084214 513.9113630182366705 c +46. 513.9113630182366705 l +42. 513.9113630182366705 l h -36. 403.4445400280900458 m -26. 403.4445400280900458 l -120.346989627211542 54. m -130.346989627211542 54. l -39. 403.4445400280900458 m -42. 403.4445400280900458 m -41.9423558412096895 404.0298109941384155 l -41.7716385975338582 404.5925903251853128 l -41.4944088369076383 405.1112507271488425 l -41.1213203435596455 405.5658603716497055 l -40.6667106990588039 405.9389488649976556 l -40.1480502970952671 406.2161786256239111 l -39.5852709660483839 406.3868958692997353 l -39. 406.4445400280900458 l -38.4147290339516161 406.3868958692997353 l -37.8519497029047329 406.2161786256239111 l -37.3332893009411961 405.9389488649976556 l -36.8786796564403545 405.5658603716497055 l -36.5055911630923617 405.1112507271488425 l -36.2283614024661418 404.5925903251853128 l -36.0576441587903105 404.0298109941384155 l -36. 403.4445400280900458 l -36.0576441587903105 402.8592690620416761 l -36.2283614024661418 402.2964897309947787 l -36.5055911630923617 401.777829329031249 l -36.8786796564403545 401.3232196845303861 l -37.3332893009411961 400.9501311911824359 l -37.8519497029047258 400.6729014305561805 l -38.4147290339516161 400.5021841868803563 l -39. 400.4445400280900458 l -39.5852709660483839 400.5021841868803563 l -40.1480502970952671 400.6729014305561805 l -40.6667106990588039 400.9501311911824359 l -41.1213203435596455 401.3232196845303861 l -41.4944088369076383 401.777829329031249 l -41.7716385975338582 402.2964897309947787 l -41.9423558412096895 402.8592690620416761 l -42. 403.4445400280900458 l -130.346989627211542 50. m -121.346989627211542 54. l -130.346989627211542 58. l +36. 513.9113630182366705 m +26. 513.9113630182366705 l +666.051579470961542 292.4668229901466816 m +656.051579470961542 292.4668229901466816 l +39. 513.9113630182366705 m +42. 513.9113630182366705 m +41.9423558412096895 514.4966339842850402 l +41.7716385975338582 515.0594133153319945 l +41.4944088369076383 515.5780737172955241 l +41.1213203435596455 516.0326833617963302 l +40.6667106990588039 516.4057718551442804 l +40.1480502970952671 516.6830016157705359 l +39.5852709660483839 516.8537188594464169 l +39. 516.9113630182366705 l +38.4147290339516161 516.8537188594464169 l +37.8519497029047329 516.6830016157705359 l +37.3332893009411961 516.4057718551442804 l +36.8786796564403545 516.0326833617963302 l +36.5055911630923617 515.5780737172955241 l +36.2283614024661418 515.0594133153319945 l +36.0576441587903105 514.4966339842850402 l +36. 513.9113630182366705 l +36.0576441587903105 513.3260920521883008 l +36.2283614024661418 512.7633127211413466 l +36.5055911630923617 512.2446523191778169 l +36.8786796564403545 511.7900426746770108 l +37.3332893009411961 511.4169541813290607 l +37.8519497029047258 511.1397244207028052 l +38.4147290339516161 510.969007177026981 l +39. 510.9113630182366705 l +39.5852709660483839 510.969007177026981 l +40.1480502970952671 511.1397244207028052 l +40.6667106990588039 511.4169541813290607 l +41.1213203435596455 511.7900426746770108 l +41.4944088369076383 512.2446523191778169 l +41.7716385975338582 512.7633127211413466 l +41.9423558412096895 513.3260920521883008 l +42. 513.9113630182366705 l +656.051579470961542 288.4668229901466816 m +665.051579470961542 292.4668229901466816 l +656.051579470961542 296.4668229901466816 l S Q q @@ -9673,7 +11826,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 715.696256728902199 1043. Tm +1. 0. 0. -1. 649.8898167032552919 1211. Tm <0013001100110014> Tj ET Q @@ -9684,7 +11837,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 806.3323088561137411 693.5554599719099542 Tm +1. 0. 0. -1. 1279.941396174216834 989.5554599719100679 Tm <000d> Tj ET Q @@ -9693,8 +11846,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1019.7873869811137411 154. 124.255859375 113. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +942.739247736716834 322. 136.7607421875 113. re W n q @@ -9702,28 +11855,28 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 1019.7873869811137411 154. cm +1. 0. 0. 1. 942.739247736716834 322. cm 42. 54. m 46. 54. l -54.81396484375 54. l -60.68994140625 54. 63.6279296875 56.93798828125 63.6279296875 62.81396484375 c -63.6279296875 77.18603515625 l -63.6279296875 83.06201171875 66.56591796875 86. 72.44189453125 86. c -81.255859375 86. l -91.255859375 86. l -91.255859375 86. l -81.255859375 86. l -72.44189453125 86. l -66.56591796875 86. 63.6279296875 83.06201171875 63.6279296875 77.18603515625 c -63.6279296875 62.81396484375 l -63.6279296875 56.93798828125 60.68994140625 54. 54.81396484375 54. c +59.88037109375 54. l +66.5470377604166714 54. 69.88037109375 57.3333333333333357 69.88037109375 64. c +69.88037109375 76. l +69.88037109375 82.6666666666666714 73.2137044270833286 86. 79.88037109375 86. c +93.7607421875 86. l +103.7607421875 86. l +103.7607421875 86. l +93.7607421875 86. l +79.88037109375 86. l +73.2137044270833286 86. 69.88037109375 82.6666666666666714 69.88037109375 76. c +69.88037109375 64. l +69.88037109375 57.3333333333333357 66.5470377604166714 54. 59.88037109375 54. c 46. 54. l 42. 54. l h 36. 54. m 26. 54. l -91.255859375 86. m -101.255859375 86. l +103.7607421875 86. m +113.7607421875 86. l 39. 54. m 42. 54. m 41.9423558412096895 54.5852709660483839 l @@ -9758,9 +11911,9 @@ h 41.7716385975338582 52.8519497029047258 l 41.9423558412096895 53.4147290339516161 l 42. 54. l -101.255859375 82. m -92.255859375 86. l -101.255859375 90. l +113.7607421875 82. m +104.7607421875 86. l +113.7607421875 90. l S Q q @@ -9769,7 +11922,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1048.7873869811137411 203. Tm +1. 0. 0. -1. 971.739247736716834 371. Tm <0013001100110014> Tj ET Q @@ -9780,7 +11933,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1110.3323088561137411 235. Tm +1. 0. 0. -1. 1045.789052424216834 403. Tm <000d> Tj ET Q @@ -9789,8 +11942,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1019.7873869811137411 612.5554599719099542 124.255859375 113. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +942.739247736716834 780.5554599719099542 136.7607421875 113. re W n q @@ -9798,28 +11951,28 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 1019.7873869811137411 612.5554599719099542 cm +1. 0. 0. 1. 942.739247736716834 780.5554599719099542 cm 42. 54. m 46. 54. l -54.81396484375 54. l -60.68994140625 54. 63.6279296875 56.93798828125 63.6279296875 62.81396484375 c -63.6279296875 77.18603515625 l -63.6279296875 83.06201171875 66.56591796875 86. 72.44189453125 86. c -81.255859375 86. l -91.255859375 86. l -91.255859375 86. l -81.255859375 86. l -72.44189453125 86. l -66.56591796875 86. 63.6279296875 83.06201171875 63.6279296875 77.18603515625 c -63.6279296875 62.81396484375 l -63.6279296875 56.93798828125 60.68994140625 54. 54.81396484375 54. c +59.88037109375 54. l +66.5470377604166714 54. 69.88037109375 57.3333333333333357 69.88037109375 64. c +69.88037109375 76. l +69.88037109375 82.6666666666666714 73.2137044270833286 86. 79.88037109375 86. c +93.7607421875 86. l +103.7607421875 86. l +103.7607421875 86. l +93.7607421875 86. l +79.88037109375 86. l +73.2137044270833286 86. 69.88037109375 82.6666666666666714 69.88037109375 76. c +69.88037109375 64. l +69.88037109375 57.3333333333333357 66.5470377604166714 54. 59.88037109375 54. c 46. 54. l 42. 54. l h 36. 54. m 26. 54. l -91.255859375 86. m -101.255859375 86. l +103.7607421875 86. m +113.7607421875 86. l 39. 54. m 42. 54. m 41.9423558412096895 54.5852709660483839 l @@ -9854,9 +12007,9 @@ h 41.7716385975338582 52.8519497029047258 l 41.9423558412096895 53.4147290339516161 l 42. 54. l -101.255859375 82. m -92.255859375 86. l -101.255859375 90. l +113.7607421875 82. m +104.7607421875 86. l +113.7607421875 90. l S Q q @@ -9865,7 +12018,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1048.7873869811137411 661.5554599719099542 Tm +1. 0. 0. -1. 971.739247736716834 829.5554599719099542 Tm <0013001100110014> Tj ET Q @@ -9876,7 +12029,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1110.3323088561137411 693.5554599719099542 Tm +1. 0. 0. -1. 1045.789052424216834 861.5554599719099542 Tm <000d> Tj ET Q @@ -9885,8 +12038,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1343.7571135436137411 154. 128.2861328125 113. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1278.731435236716834 322. 128.7685546875 113. re W n q @@ -9894,28 +12047,28 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 1343.7571135436137411 154. cm +1. 0. 0. 1. 1278.731435236716834 322. cm 42. 54. m 46. 54. l -55.8325476841058617 54. l -62.3875794735097671 54. 65.6650953682117233 57.2775158947019563 65.6650953682117233 63.8325476841058617 c -65.6650953682117233 76.1894812778558617 l -65.6650953682117233 82.7298270926186206 68.9352682755931028 86. 75.4756140903558617 86. c -85.2861328125 86. l -95.2861328125 86. l -95.2861328125 86. l -85.2861328125 86. l -75.4756140903558617 86. l -68.9352682755931028 86. 65.6650953682117233 82.7298270926186206 65.6650953682117233 76.1894812778558617 c -65.6650953682117233 63.8325476841058617 l -65.6650953682117233 57.2775158947019563 62.3875794735097671 54. 55.8325476841058617 54. c +56.1475172432117233 54. l +62.8141839098783876 54. 66.1475172432117233 57.3333333333333357 66.1475172432117233 64. c +66.1475172432117233 76.1894812778558617 l +66.1475172432117233 82.7298270926186206 69.4176901505931028 86. 75.9580359653558617 86. c +85.7685546875 86. l +95.7685546875 86. l +95.7685546875 86. l +85.7685546875 86. l +75.9580359653558617 86. l +69.4176901505931028 86. 66.1475172432117233 82.7298270926186206 66.1475172432117233 76.1894812778558617 c +66.1475172432117233 64. l +66.1475172432117233 57.3333333333333357 62.8141839098783876 54. 56.1475172432117233 54. c 46. 54. l 42. 54. l h 36. 54. m 26. 54. l -95.2861328125 86. m -105.2861328125 86. l +95.7685546875 86. m +105.7685546875 86. l 39. 54. m 42. 54. m 41.9423558412096895 54.5852709660483839 l @@ -9950,9 +12103,9 @@ h 41.7716385975338582 52.8519497029047258 l 41.9423558412096895 53.4147290339516161 l 42. 54. l -105.2861328125 82. m -96.2861328125 86. l -105.2861328125 90. l +105.7685546875 82. m +96.7685546875 86. l +105.7685546875 90. l S Q q @@ -9961,7 +12114,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1372.7571135436137411 203. Tm +1. 0. 0. -1. 1307.731435236716834 371. Tm <0013001100110014> Tj ET Q @@ -9972,7 +12125,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1438.3323088561137411 235. Tm +1. 0. 0. -1. 1373.789052424216834 403. Tm <000d> Tj ET Q @@ -9981,8 +12134,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1343.7571135436137411 154. 129.4017852908888244 705. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1278.731435236716834 322. 129.8842071658888244 705. re W n q @@ -9990,28 +12143,28 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 1343.7571135436137411 154. cm +1. 0. 0. 1. 1278.731435236716834 322. cm 42. 54. m 46. 54. l -56.2008926454444122 54. l -62.8675593121110765 54. 66.2008926454444122 57.3333333333333357 66.2008926454444122 64. c -66.2008926454444122 668. l -66.2008926454444122 674.6666666666666288 69.5342259787777408 678. 76.2008926454444122 678. c -86.4017852908888244 678. l -96.4017852908888244 678. l -96.4017852908888244 678. l -86.4017852908888244 678. l -76.2008926454444122 678. l -69.5342259787777408 678. 66.2008926454444122 674.6666666666666288 66.2008926454444122 668. c -66.2008926454444122 64. l -66.2008926454444122 57.3333333333333357 62.8675593121110765 54. 56.2008926454444122 54. c +56.4421035829444122 54. l +63.1087702496110765 54. 66.4421035829444122 57.3333333333333357 66.4421035829444122 64. c +66.4421035829444122 668. l +66.4421035829444122 674.6666666666666288 69.7754369162777408 678. 76.4421035829444122 678. c +86.8842071658888244 678. l +96.8842071658888244 678. l +96.8842071658888244 678. l +86.8842071658888244 678. l +76.4421035829444122 678. l +69.7754369162777408 678. 66.4421035829444122 674.6666666666666288 66.4421035829444122 668. c +66.4421035829444122 64. l +66.4421035829444122 57.3333333333333357 63.1087702496110765 54. 56.4421035829444122 54. c 46. 54. l 42. 54. l h 36. 54. m 26. 54. l -96.4017852908888244 678. m -106.4017852908888244 678. l +96.8842071658888244 678. m +106.8842071658888244 678. l 39. 54. m 42. 54. m 41.9423558412096895 54.5852709660483839 l @@ -10046,9 +12199,9 @@ h 41.7716385975338582 52.8519497029047258 l 41.9423558412096895 53.4147290339516161 l 42. 54. l -106.4017852908888244 674. m -97.4017852908888244 678. l -106.4017852908888244 682. l +106.8842071658888244 674. m +97.8842071658888244 678. l +106.8842071658888244 682. l S Q q @@ -10057,7 +12210,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1372.7571135436137411 203. Tm +1. 0. 0. -1. 1307.731435236716834 371. Tm <0013001100110014> Tj ET Q @@ -10068,7 +12221,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1439.4479613345024518 827. Tm +1. 0. 0. -1. 1374.9047049026057721 995. Tm <000d> Tj ET Q @@ -10077,8 +12230,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1649.1165657303761236 546. 114.0728207043728162 281. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1583.3101257047292165 714. 127.0807456386244212 281. re W n q @@ -10086,21 +12239,21 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. 1649.1165657303761236 546. cm +1. 0. 0. 1. 1583.3101257047292165 714. cm 75.4236807603763282 254. m 79.4236807603763282 254. l -85.2482507323745722 254. l -89.1312973803733968 254. 91.0728207043728162 252.0584766760005948 91.0728207043728162 248.175430028001756 c -91.0728207043728162 64. l -91.0728207043728162 57.3333333333333357 87.7394873710394876 54. 81.0728207043728162 54. c +94.0807456386244212 254. l +100.7474123052910926 254. 104.0807456386244212 250.6666666666666572 104.0807456386244212 244. c +104.0807456386244212 64. l +104.0807456386244212 57.3333333333333357 100.7474123052910926 54. 94.0807456386244212 54. c 46. 54. l 36. 54. l 36. 54. l 46. 54. l -81.0728207043728162 54. l -87.7394873710394876 54. 91.0728207043728162 57.3333333333333357 91.0728207043728162 64. c -91.0728207043728162 248.175430028001756 l -91.0728207043728162 252.0584766760005948 89.1312973803733968 254. 85.2482507323745722 254. c +94.0807456386244212 54. l +100.7474123052910926 54. 104.0807456386244212 57.3333333333333357 104.0807456386244212 64. c +104.0807456386244212 244. l +104.0807456386244212 250.6666666666666572 100.7474123052910926 254. 94.0807456386244212 254. c 79.4236807603763282 254. l 75.4236807603763282 254. l h @@ -10153,7 +12306,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1711.5402464907524518 795. Tm +1. 0. 0. -1. 1645.7338064651055447 963. Tm <0013001100110014> Tj ET Q @@ -10164,7 +12317,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 1678.1165657303761236 595. Tm +1. 0. 0. -1. 1612.3101257047292165 763. Tm <000d> Tj ET Q @@ -10173,8 +12326,8 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm --8. 458. 91.3702138155584862 377. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +239.9669077485730213 602. 49.3988169229079404 481. re W n q @@ -10182,65 +12335,63 @@ q q 2. w 0.38 0.61 0.8 RG -1. 0. 0. 1. -8. 458. cm -49.7473479186136842 54. m -45.7473479186136842 54. l -35.8736739593068421 54. l -29.2912246531022831 54. 26. 57.2912246531022831 26. 63.8736739593068421 c -26. 340. l -26. 346.6666666666666856 29.3333333333333357 350. 36. 350. c -48.3702138155584862 350. l -58.3702138155584862 350. l -58.3702138155584862 350. l -48.3702138155584862 350. l -36. 350. l -29.3333333333333357 350. 26. 346.6666666666666856 26. 340. c -26. 63.8736739593068421 l -26. 57.2912246531022831 29.2912246531022831 54. 35.8736739593068421 54. c -45.7473479186136842 54. l -49.7473479186136842 54. l +1. 0. 0. 1. 239.9669077485730213 602. cm +42. 54. m +46. 54. l +46.1994084614539702 54. l +46.332347435756617 54. 46.3988169229079404 54.0664694871513234 46.3988169229079404 54.1994084614539702 c +46.3988169229079404 449. l +46.3988169229079404 452.3333333333333144 44.7321502562412761 454. 41.3988169229079404 454. c +36.3988169229079404 454. l +36.3988169229079404 454. l +41.3988169229079404 454. l +44.7321502562412761 454. 46.3988169229079404 452.3333333333333144 46.3988169229079404 449. c +46.3988169229079404 54.1994084614539702 l +46.3988169229079404 54.0664694871513234 46.332347435756617 54. 46.1994084614539702 54. c +46. 54. l +42. 54. l h -55.7473479186136842 54. m -65.7473479186136842 54. l -58.3702138155584862 350. m -68.3702138155584862 350. l -52.7473479186136842 54. m -55.7473479186136842 54. m -55.6897037598233737 54.5852709660483839 l -55.5189865161475424 55.1480502970952671 l -55.2417567555213225 55.6667106990588039 l -54.8686682621733297 56.1213203435596455 l -54.4140586176724881 56.4944088369076383 l -53.8953982157089513 56.7716385975338582 l -53.3326188846620681 56.9423558412096895 l -52.7473479186136842 57. l -52.1620769525653003 56.9423558412096895 l -51.5992976215184171 56.7716385975338582 l -51.0806372195548803 56.4944088369076383 l -50.6260275750540387 56.1213203435596455 l -50.252939081706046 55.6667106990588039 l -49.975709321079826 55.1480502970952671 l -49.8049920774039947 54.5852709660483839 l -49.7473479186136842 54. l -49.8049920774039947 53.4147290339516161 l -49.975709321079826 52.8519497029047329 l -50.252939081706046 52.3332893009411961 l -50.6260275750540387 51.8786796564403545 l -51.0806372195548803 51.5055911630923617 l -51.59929762151841 51.2283614024661418 l -52.1620769525653003 51.0576441587903105 l -52.7473479186136842 51. l -53.3326188846620681 51.0576441587903105 l -53.8953982157089513 51.2283614024661418 l -54.4140586176724881 51.5055911630923617 l -54.8686682621733297 51.8786796564403545 l -55.2417567555213225 52.3332893009411961 l -55.5189865161475424 52.8519497029047258 l -55.6897037598233737 53.4147290339516161 l -55.7473479186136842 54. l -68.3702138155584862 346. m -59.3702138155584862 350. l -68.3702138155584862 354. l +36. 54. m +26. 54. l +36.3988169229079404 454. m +26.3988169229079404 454. l +39. 54. m +42. 54. m +41.9423558412096895 54.5852709660483839 l +41.7716385975338582 55.1480502970952671 l +41.4944088369076383 55.6667106990588039 l +41.1213203435596455 56.1213203435596455 l +40.6667106990588039 56.4944088369076383 l +40.1480502970952671 56.7716385975338582 l +39.5852709660483839 56.9423558412096895 l +39. 57. l +38.4147290339516161 56.9423558412096895 l +37.8519497029047329 56.7716385975338582 l +37.3332893009411961 56.4944088369076383 l +36.8786796564403545 56.1213203435596455 l +36.5055911630923617 55.6667106990588039 l +36.2283614024661418 55.1480502970952671 l +36.0576441587903105 54.5852709660483839 l +36. 54. l +36.0576441587903105 53.4147290339516161 l +36.2283614024661418 52.8519497029047329 l +36.5055911630923617 52.3332893009411961 l +36.8786796564403545 51.8786796564403545 l +37.3332893009411961 51.5055911630923617 l +37.8519497029047258 51.2283614024661418 l +38.4147290339516161 51.0576441587903105 l +39. 51. l +39.5852709660483839 51.0576441587903105 l +40.1480502970952671 51.2283614024661418 l +40.6667106990588039 51.5055911630923617 l +41.1213203435596455 51.8786796564403545 l +41.4944088369076383 52.3332893009411961 l +41.7716385975338582 52.8519497029047258 l +41.9423558412096895 53.4147290339516161 l +42. 54. l +26.3988169229079404 450. m +35.3988169229079404 454. l +26.3988169229079404 458. l S Q q @@ -10249,7 +12400,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 31.3821135436136842 507. Tm +1. 0. 0. -1. 268.9669077485730213 651. Tm <0013001100110014> Tj ET Q @@ -10260,7 +12411,7 @@ BT /F15 14 Tf 16.0999999999999979 TL 0. g -1. 0. 0. -1. 49.6592763155584862 803. Tm +1. 0. 0. -1. 269.3657246714809617 1051. Tm <000d> Tj ET Q @@ -10269,18 +12420,130 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -458.6934394521714466 144. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +-8. 970. 81.1264668589809617 393. re +W +n +q +q +q +2. w +0.38 0.61 0.8 RG +1. 0. 0. 1. -8. 970. cm +42.1264668589809617 54. m +38.1264668589809617 54. l +16. 54. l +9.3333333333333339 54. 6. 57.3333333333333357 6. 64. c +6. 361. l +6. 364.3333333333333144 7.666666666666667 366. 11. 366. c +16. 366. l +16. 366. l +11. 366. l +7.666666666666667 366. 6. 364.3333333333333144 6. 361. c +6. 64. l +6. 57.3333333333333357 9.3333333333333339 54. 16. 54. c +38.1264668589809617 54. l +42.1264668589809617 54. l +h +48.1264668589809617 54. m +58.1264668589809617 54. l +16. 366. m +26. 366. l +45.1264668589809617 54. m +48.1264668589809617 54. m +48.0688227001906512 54.5852709660483839 l +47.8981054565148199 55.1480502970952671 l +47.6208756958885999 55.6667106990588039 l +47.2477872025406072 56.1213203435596455 l +46.7931775580397655 56.4944088369076383 l +46.2745171560762287 56.7716385975338582 l +45.7117378250293456 56.9423558412096895 l +45.1264668589809617 57. l +44.5411958929325777 56.9423558412096895 l +43.9784165618856946 56.7716385975338582 l +43.4597561599221578 56.4944088369076383 l +43.0051465154213162 56.1213203435596455 l +42.6320580220733234 55.6667106990588039 l +42.3548282614471034 55.1480502970952671 l +42.1841110177712721 54.5852709660483839 l +42.1264668589809617 54. l +42.1841110177712721 53.4147290339516161 l +42.3548282614471034 52.8519497029047329 l +42.6320580220733234 52.3332893009411961 l +43.0051465154213162 51.8786796564403545 l +43.4597561599221578 51.5055911630923617 l +43.9784165618856875 51.2283614024661418 l +44.5411958929325777 51.0576441587903105 l +45.1264668589809617 51. l +45.7117378250293456 51.0576441587903105 l +46.2745171560762287 51.2283614024661418 l +46.7931775580397655 51.5055911630923617 l +47.2477872025406072 51.8786796564403545 l +47.6208756958885999 52.3332893009411961 l +47.8981054565148199 52.8519497029047258 l +48.0688227001906512 53.4147290339516161 l +48.1264668589809617 54. l +26. 362. m +17. 366. l +26. 370. l +S +Q +q +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 23.7612324839809617 1019. Tm +<0013001100110014> Tj +ET +Q +Q +q +q +BT +/F15 14 Tf +16.0999999999999979 TL +0. g +1. 0. 0. -1. 7.2890625 1331. Tm +<000d> Tj +ET +Q +Q +Q +Q +Q +q +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 288.5326773038579518 204.3622929745005194 cm +3. 0. m +200.06787109375 0. l +201.724725343242369 0. 203.06787109375 1.3431457505076199 203.06787109375 3. c +203.06787109375 317. l +203.06787109375 318.656854249492369 201.724725343242369 320. 200.06787109375 320. c +3. 320. l +1.3431457505076203 320. 0.0000000000000004 318.656854249492369 0. 317. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +440.499989924216834 312. 203.06787109375 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 458.6934394521714466 144. cm -0. 0. m -252.9921875 0. l -252.9921875 32. l +1. 0. 0. 1. 440.499989924216834 312. cm +3. 0. m +200.06787109375 0. l +201.724725343242369 0. 203.06787109375 1.3431457505076199 203.06787109375 3. c +203.06787109375 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -10290,7 +12553,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 468.6934394521714466 163.25 Tm +1. 0. 0. -1. 450.499989924216834 331.25 Tm <0056004b0048004800530056> Tj ET Q @@ -10298,17 +12561,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -458.6934394521714466 176. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +440.499989924216834 344. 203.06787109375 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 458.6934394521714466 176. cm +1. 0. 0. 1. 440.499989924216834 344. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -10318,15 +12581,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 195.25 Tm +0.173 g +1. 0. 0. -1. 450.499989924216834 363.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 484.8872871084214466 185.25 cm +0.17 g +1. 0. 0. 1. 466.693837580466834 353.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -10371,28 +12634,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 654.9224433584214466 195.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 588.067861017966834 363.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -458.6934394521714466 208. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +440.499989924216834 376. 203.06787109375 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 458.6934394521714466 208. cm +1. 0. 0. 1. 440.499989924216834 376. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -10402,37 +12665,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 227.25 Tm +0.235 g +1. 0. 0. -1. 450.499989924216834 395.25 Tm <004a00550052005800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 507.547353205466834 385.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.8262519521714466 227.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 588.067861017966834 395.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -458.6934394521714466 240. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +440.499989924216834 408. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 240. cm +1. 0. 0. 1. 440.499989924216834 408. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -10442,8 +12753,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 259.25 Tm +0.235 g +1. 0. 0. -1. 450.499989924216834 427.25 Tm <0051004400500048> Tj ET Q @@ -10451,28 +12762,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.3135566396714466 259.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 607.567861017966834 427.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -458.6934394521714466 272. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +440.499989924216834 440. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 272. cm +1. 0. 0. 1. 440.499989924216834 440. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -10482,8 +12793,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 291.25 Tm +0.235 g +1. 0. 0. -1. 450.499989924216834 459.25 Tm <004c004600520051> Tj ET Q @@ -10491,28 +12802,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.3135566396714466 291.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 607.567861017966834 459.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -458.6934394521714466 304. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +440.499989924216834 472. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 304. cm +1. 0. 0. 1. 440.499989924216834 472. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -10522,8 +12833,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 323.25 Tm +0.235 g +1. 0. 0. -1. 450.499989924216834 491.25 Tm <00580058004c0047> Tj ET Q @@ -10531,28 +12842,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.3135566396714466 323.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 607.567861017966834 491.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -458.6934394521714466 336. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +440.499989924216834 504. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 336. cm +1. 0. 0. 1. 440.499989924216834 504. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -10562,8 +12873,48 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 355.25 Tm +0.235 g +1. 0. 0. -1. 450.499989924216834 523.25 Tm +<00580058004c004700420050004400510044004a00480055> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 607.567861017966834 523.25 Tm +<019f011201c4019f> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +440.499989924216834 536. 203.06787109375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 440.499989924216834 536. cm +0. 0. m +203.06787109375 0. l +203.06787109375 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 450.499989924216834 555.25 Tm <0044005300530052004c005100570050004800510057> Tj ET Q @@ -10571,28 +12922,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.3135566396714466 355.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 607.567861017966834 555.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -458.6934394521714466 368. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +440.499989924216834 568. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 368. cm +1. 0. 0. 1. 440.499989924216834 568. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l +203.06787109375 0. l +203.06787109375 32. l 0. 32. l h f @@ -10602,38 +12953,40 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 387.25 Tm -<00460044005100420059004c0048005a004200560057004400510047> Tj +0.235 g +1. 0. 0. -1. 450.499989924216834 587.25 Tm +<0050005200470048> Tj ET Q Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.8262519521714466 387.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 588.067861017966834 587.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -458.6934394521714466 400. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +440.499989924216834 600. 203.06787109375 32. re W n q q 0.95 g -1. 0. 0. 1. 458.6934394521714466 400. cm +1. 0. 0. 1. 440.499989924216834 600. cm 0. 0. m -252.9921875 0. l -252.9921875 32. l -0. 32. l +203.06787109375 0. l +203.06787109375 29. l +203.06787109375 30.6568542494923797 201.724725343242369 32. 200.06787109375 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -10642,78 +12995,56 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 419.25 Tm -<00460044005100420059004c0048005a004200560046004b004800470058004f0048> Tj +0.235 g +1. 0. 0. -1. 450.499989924216834 619.25 Tm +<005000520047004800420057004c0057004f0048> Tj ET Q Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.8262519521714466 419.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 607.567861017966834 619.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -458.6934394521714466 432. 1534.3366445212079725 980. re -W -n -q -q 0.95 g -1. 0. 0. 1. 458.6934394521714466 432. cm -0. 0. m -252.9921875 0. l -252.9921875 32. l -0. 32. l +0.6433281689763501 0. 0. 0.6433281689763501 242.213049137560688 430.8138084541757848 cm +3. 0. m +274.798828125 0. l +276.455682374492369 0. 277.798828125 1.3431457505076199 277.798828125 3. c +277.798828125 413. l +277.798828125 414.656854249492369 276.455682374492369 416. 274.798828125 416. c +3. 416. l +1.3431457505076203 416. 0.0000000000000004 414.656854249492369 0. 413. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 468.6934394521714466 451.25 Tm -<00460044005100420059004c0048005a00420057004800550055004c005700520055005c> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.8262519521714466 451.25 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -524.0678815998326172 480. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 664. 277.798828125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 524.0678815998326172 480. cm -0. 0. m -187.3955078125 0. l -187.3955078125 32. l +1. 0. 0. 1. 368.499989924216834 664. cm +3. 0. m +274.798828125 0. l +276.455682374492369 0. 277.798828125 1.3431457505076199 277.798828125 3. c +277.798828125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -10723,25 +13054,25 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 534.0678815998326172 499.25 Tm -<004400470050004c0051004c00560057005500440057005200550056> Tj +1. 0. 0. -1. 378.499989924216834 683.25 Tm +<0053005200560056004c0045004c004f004c0057004c00480056> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -524.0678815998326172 512. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 696. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 524.0678815998326172 512. cm +1. 0. 0. 1. 368.499989924216834 696. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -10751,15 +13082,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 531.25 Tm +0.173 g +1. 0. 0. -1. 378.499989924216834 715.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 550.2617292560826172 521.25 cm +0.17 g +1. 0. 0. 1. 394.693837580466834 705.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -10804,28 +13135,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 654.7002058185826172 531.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 715.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -524.0678815998326172 544. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 728. 277.798828125 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 524.0678815998326172 544. cm +1. 0. 0. 1. 368.499989924216834 728. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -10835,37 +13166,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 563.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 747.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 436.150380549216834 737.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.6040144123326172 563.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 747.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -524.0678815998326172 576. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 760. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 524.0678815998326172 576. cm +1. 0. 0. 1. 368.499989924216834 760. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -10875,241 +13254,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 595.25 Tm -<00580058004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.0913190998326172 595.25 Tm -<00570048005b0057> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -434.3913698881360119 624. 1534.3366445212079725 980. re -W -n -q -q -0.19 0.41 0.59 rg -1. 0. 0. 1. 434.3913698881360119 624. cm -0. 0. m -279.06201171875 0. l -279.06201171875 32. l -0. 32. l -h -f -Q -q -q -BT -/F16 13 Tf -14.9499999999999993 TL -1. g -1. 0. 0. -1. 444.3913698881360119 643.25 Tm -<0050005200470048005500440057005200550056> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -434.3913698881360119 656. 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 434.3913698881360119 656. cm -0. 0. m -279.06201171875 0. l -279.06201171875 32. l -0. 32. l -h -f -Q -q -q -BT -/F16 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 675.25 Tm -<004c0047> Tj -ET -Q -Q -q -0.44 g -1. 0. 0. 1. 460.5852175443860119 665.25 cm -6.5625 0.9844000000000001 m -8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c -9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c -6.1734999999999998 6.8906000000000001 5.8022 6.8152999999999997 5.4619999999999997 6.6786000000000003 c -4.5937999999999999 7.5468999999999999 l -3.9375 7.5468999999999999 l -3.9375 8.5312999999999999 l -2.9531000000000001 8.5312999999999999 l -2.9531000000000001 9.5155999999999992 l -0.9844000000000001 9.5155999999999992 l -0.9844000000000001 7.5468999999999999 l -3.7360000000000002 4.7952000000000004 l -3.6518000000000002 4.5171000000000001 3.6092 4.2281000000000004 3.6093999999999999 3.9375 c -3.6093999999999999 2.3065000000000002 4.9314999999999998 0.9844000000000001 6.5625 0.9844000000000001 c -h -6.5625 0. m -4.3879999999999999 0. 2.625 1.7626999999999999 2.625 3.9375 c -2.625 4.1185999999999998 2.6373000000000002 4.2988999999999997 2.6619000000000002 4.4771999999999998 c -0.1441 6.9950000000000001 l -0.0519 7.0872999999999999 0. 7.2125000000000004 0. 7.343 c -0. 10.0077999999999996 l -0. 10.2797000000000001 0.2204 10.5 0.4922 10.5 c -3.4453 10.5 l -3.7170999999999998 10.5 3.9375 10.2797000000000001 3.9375 10.0077999999999996 c -3.9375 9.5155999999999992 l -4.4297000000000004 9.5155999999999992 l -4.7015000000000002 9.5155999999999992 4.9218999999999999 9.2952999999999992 4.9218999999999999 9.0234000000000005 c -4.9218999999999999 8.6133000000000006 l -5.7431999999999999 7.7895000000000003 l -6.0110000000000001 7.8464 6.2847999999999997 7.875 6.5625 7.875 c -8.7370000000000001 7.875 10.5 6.1123000000000003 10.5 3.9375 c -10.5 1.7629999999999999 8.7372999999999994 0. 6.5625 0. c -h -6.5625 2.9531000000000001 m -6.5625 3.4967999999999999 7.0031999999999996 3.9375 7.5468999999999999 3.9375 c -8.0905000000000005 3.9375 8.5312999999999999 3.4967999999999999 8.5312999999999999 2.9531000000000001 c -8.5312999999999999 2.4095 8.0905000000000005 1.9688000000000001 7.5468999999999999 1.9688000000000001 c -7.0031999999999996 1.9688000000000001 6.5625 2.4095 6.5625 2.9531000000000001 c -h -f -Q -q -q -BT -/F16 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 656.6901980131360688 675.25 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -434.3913698881360119 688. 1534.3366445212079725 980. re -W -n -q -q -0.87 0.93 0.95 rg -1. 0. 0. 1. 434.3913698881360119 688. cm -0. 0. m -279.06201171875 0. l -279.06201171875 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 707.25 Tm -<0056004b0048004800530042004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 707.25 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -434.3913698881360119 720. 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 434.3913698881360119 720. cm -0. 0. m -279.06201171875 0. l -279.06201171875 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 739.25 Tm -<00580058004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 680.0813112943860688 739.25 Tm -<00570048005b0057> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -434.3913698881360119 752. 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 434.3913698881360119 752. cm -0. 0. m -279.06201171875 0. l -279.06201171875 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 771.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 779.25 Tm <004600440051004200440047004700420056004b0048004800530056> Tj ET Q @@ -11117,28 +13263,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 771.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 779.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -434.3913698881360119 784. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 792. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 434.3913698881360119 784. cm +1. 0. 0. 1. 368.499989924216834 792. cm 0. 0. m -279.06201171875 0. l -279.06201171875 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -11148,8 +13294,48 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 803.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 811.25 Tm +<00460044005100420059004c0048005a00420056004b0048004800530056> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 590.798818049216834 811.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 824. 277.798828125 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 368.499989924216834 824. cm +0. 0. m +277.798828125 0. l +277.798828125 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 378.499989924216834 843.25 Tm <004600440051004200440047004700420057004800550055004c005700520055005c> Tj ET Q @@ -11157,28 +13343,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 803.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 843.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -434.3913698881360119 816. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 856. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 434.3913698881360119 816. cm +1. 0. 0. 1. 368.499989924216834 856. cm 0. 0. m -279.06201171875 0. l -279.06201171875 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -11188,8 +13374,48 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 835.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 875.25 Tm +<00460044005100420059004c0048005a00420057004800550055004c005700520055005c> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 590.798818049216834 875.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 888. 277.798828125 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 368.499989924216834 888. cm +0. 0. m +277.798828125 0. l +277.798828125 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 378.499989924216834 907.25 Tm <00460044005100420050004400510044004a0048005500420057004800550055004c005700520055005c> Tj ET Q @@ -11197,28 +13423,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 835.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 907.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -434.3913698881360119 848. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 920. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 434.3913698881360119 848. cm +1. 0. 0. 1. 368.499989924216834 920. cm 0. 0. m -279.06201171875 0. l -279.06201171875 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -11228,8 +13454,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 867.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 939.25 Tm <0046004400510042004400470047004200560057004400510047> Tj ET Q @@ -11237,28 +13463,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 867.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 939.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -434.3913698881360119 880. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 952. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 434.3913698881360119 880. cm +1. 0. 0. 1. 368.499989924216834 952. cm 0. 0. m -279.06201171875 0. l -279.06201171875 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -11268,8 +13494,48 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 899.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 971.25 Tm +<00460044005100420059004c0048005a004200560057004400510047> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 590.798818049216834 971.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 984. 277.798828125 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 368.499989924216834 984. cm +0. 0. m +277.798828125 0. l +277.798828125 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 378.499989924216834 1003.25 Tm <00460044005100420050004400510044004a00480055004200560057004400510047> Tj ET Q @@ -11277,28 +13543,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 899.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 1003.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -434.3913698881360119 912. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 1016. 277.798828125 32. re W n q q 0.95 g -1. 0. 0. 1. 434.3913698881360119 912. cm +1. 0. 0. 1. 368.499989924216834 1016. cm 0. 0. m -279.06201171875 0. l -279.06201171875 32. l +277.798828125 0. l +277.798828125 32. l 0. 32. l h f @@ -11308,8 +13574,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 444.3913698881360119 931.25 Tm +0.235 g +1. 0. 0. -1. 378.499989924216834 1035.25 Tm <0046004400510042004400470047004200560046004b004800470058004f0048> Tj ET Q @@ -11317,29 +13583,89 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 660.5940066068860688 931.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.798818049216834 1035.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -486.3578778226521422 968. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +368.499989924216834 1048. 277.798828125 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 368.499989924216834 1048. cm +0. 0. m +277.798828125 0. l +277.798828125 29. l +277.798828125 30.6568542494923797 276.455682374492369 32. 274.798828125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 378.499989924216834 1067.25 Tm +<00460044005100420059004c0048005a004200560046004b004800470058004f0048> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 590.798818049216834 1067.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 276.5118533785778254 734.464704211012986 cm +3. 0. m +222.0751953125 0. l +223.732049561992369 0. 225.0751953125 1.3431457505076199 225.0751953125 3. c +225.0751953125 125. l +225.0751953125 126.6568542494923832 223.732049561992369 128. 222.0751953125 128. c +3. 128. l +1.3431457505076203 128. 0.0000000000000004 126.6568542494923832 0. 125. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +421.8146213907552919 1136. 225.0751953125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 486.3578778226521422 968. cm -0. 0. m -226.33837890625 0. l -226.33837890625 32. l +1. 0. 0. 1. 421.8146213907552919 1136. cm +3. 0. m +222.0751953125 0. l +223.732049561992369 0. 225.0751953125 1.3431457505076199 225.0751953125 3. c +225.0751953125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -11349,7 +13675,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 496.3578778226521422 987.25 Tm +1. 0. 0. -1. 431.8146213907552919 1155.25 Tm <004a00550052005800530056> Tj ET Q @@ -11357,17 +13683,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -486.3578778226521422 1000. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +421.8146213907552919 1168. 225.0751953125 32. re W n q q 0.95 g -1. 0. 0. 1. 486.3578778226521422 1000. cm +1. 0. 0. 1. 421.8146213907552919 1168. cm 0. 0. m -226.33837890625 0. l -226.33837890625 32. l +225.0751953125 0. l +225.0751953125 32. l 0. 32. l h f @@ -11377,15 +13703,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 496.3578778226521422 1019.25 Tm +0.173 g +1. 0. 0. -1. 431.8146213907552919 1187.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 512.551725478902199 1009.25 cm +0.17 g +1. 0. 0. 1. 448.0084690470052919 1177.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -11430,28 +13756,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 655.933073135152199 1019.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 591.3898167032552919 1187.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -486.3578778226521422 1032. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +421.8146213907552919 1200. 225.0751953125 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 486.3578778226521422 1032. cm +1. 0. 0. 1. 421.8146213907552919 1200. cm 0. 0. m -226.33837890625 0. l -226.33837890625 32. l +225.0751953125 0. l +225.0751953125 32. l 0. 32. l h f @@ -11461,8 +13787,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 496.3578778226521422 1051.25 Tm +0.235 g +1. 0. 0. -1. 431.8146213907552919 1219.25 Tm <004a00550052005800530042005100580050004500480055> Tj ET Q @@ -11470,29 +13796,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 659.836881728902199 1051.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 591.3898167032552919 1219.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -486.3578778226521422 1064. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +421.8146213907552919 1232. 225.0751953125 32. re W n q q 0.95 g -1. 0. 0. 1. 486.3578778226521422 1064. cm +1. 0. 0. 1. 421.8146213907552919 1232. cm 0. 0. m -226.33837890625 0. l -226.33837890625 32. l -0. 32. l +225.0751953125 0. l +225.0751953125 29. l +225.0751953125 30.6568542494923797 223.732049561992369 32. 222.0751953125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -11501,8 +13829,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 496.3578778226521422 1083.25 Tm +0.235 g +1. 0. 0. -1. 431.8146213907552919 1251.25 Tm <0056004b0044005500480042004b00440056004b> Tj ET Q @@ -11510,29 +13838,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 679.324186416402199 1083.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 610.8898167032552919 1251.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -524.0678815998326172 0. 1534.3366445212079725 980. re +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 300.7717610606425751 111.7230366419060914 cm +3. 0. m +183.13232421875 0. l +184.789178468242369 0. 186.13232421875 1.3431457505076199 186.13232421875 3. c +186.13232421875 125. l +186.13232421875 126.6568542494923832 184.789178468242369 128. 183.13232421875 128. c +3. 128. l +1.3431457505076203 128. 0.0000000000000004 126.6568542494923832 0. 125. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +459.524625167935767 168. 186.13232421875 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 524.0678815998326172 0. cm -0. 0. m -187.3955078125 0. l -187.3955078125 32. l +1. 0. 0. 1. 459.524625167935767 168. cm +3. 0. m +183.13232421875 0. l +184.789178468242369 0. 186.13232421875 1.3431457505076199 186.13232421875 3. c +186.13232421875 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -11542,7 +13888,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 534.0678815998326172 19.25 Tm +1. 0. 0. -1. 469.524625167935767 187.25 Tm <005600580045005600460055004c00530057004c00520051> Tj ET Q @@ -11550,17 +13896,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -524.0678815998326172 32. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +459.524625167935767 200. 186.13232421875 32. re W n q q 0.95 g -1. 0. 0. 1. 524.0678815998326172 32. cm +1. 0. 0. 1. 459.524625167935767 200. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l +186.13232421875 0. l +186.13232421875 32. l 0. 32. l h f @@ -11570,15 +13916,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 51.25 Tm +0.173 g +1. 0. 0. -1. 469.524625167935767 219.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 550.2617292560826172 41.25 cm +0.17 g +1. 0. 0. 1. 485.718472824185767 209.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -11623,28 +13969,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 654.7002058185826172 51.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.1569493866857101 219.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -524.0678815998326172 64. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +459.524625167935767 232. 186.13232421875 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 524.0678815998326172 64. cm +1. 0. 0. 1. 459.524625167935767 232. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l +186.13232421875 0. l +186.13232421875 32. l 0. 32. l h f @@ -11654,38 +14000,88 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 83.25 Tm +0.235 g +1. 0. 0. -1. 469.524625167935767 251.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 527.1750157929357101 241.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 658.6040144123326172 83.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 590.1569493866857101 251.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -524.0678815998326172 96. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +459.524625167935767 264. 186.13232421875 32. re W n q q 0.95 g -1. 0. 0. 1. 524.0678815998326172 96. cm +1. 0. 0. 1. 459.524625167935767 264. cm 0. 0. m -187.3955078125 0. l -187.3955078125 32. l -0. 32. l +186.13232421875 0. l +186.13232421875 29. l +186.13232421875 30.6568542494923797 184.789178468242369 32. 183.13232421875 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -11694,8 +14090,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 534.0678815998326172 115.25 Tm +0.235 g +1. 0. 0. -1. 469.524625167935767 283.25 Tm <00570052004e00480051> Tj ET Q @@ -11703,29 +14099,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 678.0913190998326172 115.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 609.6569493866857101 283.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 160. 1534.3366445212079725 980. re +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 300.2269135251610237 3.6439042538792705 cm +3. 0. m +183.13232421875 0. l +184.789178468242369 0. 186.13232421875 1.3431457505076199 186.13232421875 3. c +186.13232421875 125. l +186.13232421875 126.6568542494923832 184.789178468242369 128. 183.13232421875 128. c +3. 128. l +1.3431457505076203 128. 0.0000000000000004 126.6568542494923832 0. 125. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +458.677705101698848 0. 186.13232421875 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 817.0432463561137411 160. cm -0. 0. m -228.744140625 0. l -228.744140625 32. l +1. 0. 0. 1. 458.677705101698848 0. cm +3. 0. m +183.13232421875 0. l +184.789178468242369 0. 186.13232421875 1.3431457505076199 186.13232421875 3. c +186.13232421875 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -11735,7 +14149,268 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 827.0432463561137411 179.25 Tm +1. 0. 0. -1. 468.677705101698848 19.25 Tm +<004500440047004a00480056> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +458.677705101698848 32. 186.13232421875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 458.677705101698848 32. cm +0. 0. m +186.13232421875 0. l +186.13232421875 32. l +0. 32. l +h +f +Q +q +q +BT +/F16 13 Tf +14.9499999999999993 TL +0.173 g +1. 0. 0. -1. 468.677705101698848 51.25 Tm +<004c0047> Tj +ET +Q +Q +q +0.17 g +1. 0. 0. 1. 484.871552757948848 41.25 cm +6.5625 0.9844000000000001 m +8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c +9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c +6.1734999999999998 6.8906000000000001 5.8022 6.8152999999999997 5.4619999999999997 6.6786000000000003 c +4.5937999999999999 7.5468999999999999 l +3.9375 7.5468999999999999 l +3.9375 8.5312999999999999 l +2.9531000000000001 8.5312999999999999 l +2.9531000000000001 9.5155999999999992 l +0.9844000000000001 9.5155999999999992 l +0.9844000000000001 7.5468999999999999 l +3.7360000000000002 4.7952000000000004 l +3.6518000000000002 4.5171000000000001 3.6092 4.2281000000000004 3.6093999999999999 3.9375 c +3.6093999999999999 2.3065000000000002 4.9314999999999998 0.9844000000000001 6.5625 0.9844000000000001 c +h +6.5625 0. m +4.3879999999999999 0. 2.625 1.7626999999999999 2.625 3.9375 c +2.625 4.1185999999999998 2.6373000000000002 4.2988999999999997 2.6619000000000002 4.4771999999999998 c +0.1441 6.9950000000000001 l +0.0519 7.0872999999999999 0. 7.2125000000000004 0. 7.343 c +0. 10.0077999999999996 l +0. 10.2797000000000001 0.2204 10.5 0.4922 10.5 c +3.4453 10.5 l +3.7170999999999998 10.5 3.9375 10.2797000000000001 3.9375 10.0077999999999996 c +3.9375 9.5155999999999992 l +4.4297000000000004 9.5155999999999992 l +4.7015000000000002 9.5155999999999992 4.9218999999999999 9.2952999999999992 4.9218999999999999 9.0234000000000005 c +4.9218999999999999 8.6133000000000006 l +5.7431999999999999 7.7895000000000003 l +6.0110000000000001 7.8464 6.2847999999999997 7.875 6.5625 7.875 c +8.7370000000000001 7.875 10.5 6.1123000000000003 10.5 3.9375 c +10.5 1.7629999999999999 8.7372999999999994 0. 6.5625 0. c +h +6.5625 2.9531000000000001 m +6.5625 3.4967999999999999 7.0031999999999996 3.9375 7.5468999999999999 3.9375 c +8.0905000000000005 3.9375 8.5312999999999999 3.4967999999999999 8.5312999999999999 2.9531000000000001 c +8.5312999999999999 2.4095 8.0905000000000005 1.9688000000000001 7.5468999999999999 1.9688000000000001 c +7.0031999999999996 1.9688000000000001 6.5625 2.4095 6.5625 2.9531000000000001 c +h +f +Q +q +q +BT +/F18 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 589.310029320448848 51.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +458.677705101698848 64. 186.13232421875 32. re +W +n +q +q +0.87 0.93 0.95 rg +1. 0. 0. 1. 458.677705101698848 64. cm +0. 0. m +186.13232421875 0. l +186.13232421875 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 468.677705101698848 83.25 Tm +<0056004b0048004800530042004c0047> Tj +ET +Q +Q +q +0.24 g +0.02 0. 0. 0.02 526.328095726698848 73.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 589.310029320448848 83.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +458.677705101698848 96. 186.13232421875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 458.677705101698848 96. cm +0. 0. m +186.13232421875 0. l +186.13232421875 29. l +186.13232421875 30.6568542494923797 184.789178468242369 32. 183.13232421875 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 468.677705101698848 115.25 Tm +<00540058004400510057004c0057005c> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 589.310029320448848 115.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 489.2510660244792007 214.6555436781221147 cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 381. l +216.2392578125 382.656854249492369 214.896112061992369 384. 213.2392578125 384. c +3. 384. l +1.3431457505076203 384. 0.0000000000000004 382.656854249492369 0. 381. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 328. 216.2392578125 32. re +W +n +q +q +0.19 0.41 0.59 rg +1. 0. 0. 1. 752.499989924216834 328. cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 32. l +0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +q +BT +/F16 13 Tf +14.9499999999999993 TL +1. g +1. 0. 0. -1. 762.499989924216834 347.25 Tm <004b0052005800560048> Tj ET Q @@ -11743,17 +14418,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 192. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 360. 216.2392578125 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 817.0432463561137411 192. cm +1. 0. 0. 1. 752.499989924216834 360. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -11763,15 +14438,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 211.25 Tm +0.173 g +1. 0. 0. -1. 762.499989924216834 379.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 843.2370940123637411 201.25 cm +0.17 g +1. 0. 0. 1. 778.693837580466834 369.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -11816,68 +14491,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 989.0242033873637411 211.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 913.239247736716834 379.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 224. 1534.3366445212079725 980. re -W -n -q -q -0.87 0.93 0.95 rg -1. 0. 0. 1. 817.0432463561137411 224. cm -0. 0. m -228.744140625 0. l -228.744140625 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 243.25 Tm -<004a00550052005800530042004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 992.9280119811137411 243.25 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 256. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 392. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 256. cm +1. 0. 0. 1. 752.499989924216834 392. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -11887,8 +14522,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 275.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 411.25 Tm <0057004c0057004f0048> Tj ET Q @@ -11896,28 +14531,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 275.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 411.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 288. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 424. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 288. cm +1. 0. 0. 1. 752.499989924216834 424. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -11927,8 +14562,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 307.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 443.25 Tm <005100580050004500480055> Tj ET Q @@ -11936,28 +14571,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 307.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 443.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 320. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 456. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 320. cm +1. 0. 0. 1. 752.499989924216834 456. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -11967,8 +14602,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 339.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 475.25 Tm <00530052004c005100570056> Tj ET Q @@ -11976,28 +14611,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 339.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 475.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 352. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 488. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 352. cm +1. 0. 0. 1. 752.499989924216834 488. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -12007,8 +14642,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 371.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 507.25 Tm <00530052004c0051005700560042005100580050004500480055> Tj ET Q @@ -12016,28 +14651,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 371.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 507.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 384. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 520. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 384. cm +1. 0. 0. 1. 752.499989924216834 520. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -12047,8 +14682,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 403.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 539.25 Tm <004a00480052> Tj ET Q @@ -12056,28 +14691,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 403.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 539.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 416. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 552. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 416. cm +1. 0. 0. 1. 752.499989924216834 552. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -12087,8 +14722,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 435.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 571.25 Tm <0052005600500042004c0047> Tj ET Q @@ -12096,28 +14731,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 435.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 571.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 448. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 584. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 448. cm +1. 0. 0. 1. 752.499989924216834 584. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -12127,8 +14762,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 467.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 603.25 Tm <0056004800570057004f00480050004800510057> Tj ET Q @@ -12136,28 +14771,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 467.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 603.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 480. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 616. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 480. cm +1. 0. 0. 1. 752.499989924216834 616. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -12167,8 +14802,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 499.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 635.25 Tm <00470048005600460055004c00530057004c00520051> Tj ET Q @@ -12176,28 +14811,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 499.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 635.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 512. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 648. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 512. cm +1. 0. 0. 1. 752.499989924216834 648. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -12207,8 +14842,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 531.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 667.25 Tm <0046005500480044005700480047004200440057> Tj ET Q @@ -12216,29 +14851,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 970.4953947936137411 531.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 900.239247736716834 667.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 544. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 680. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 544. cm +1. 0. 0. 1. 752.499989924216834 680. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l -0. 32. l +216.2392578125 0. l +216.2392578125 29. l +216.2392578125 30.6568542494923797 214.896112061992369 32. 213.2392578125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -12247,8 +14884,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 563.25 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 699.25 Tm <0058005300470044005700480047004200440057> Tj ET Q @@ -12256,29 +14893,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 970.4953947936137411 563.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 900.239247736716834 699.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 160. 1534.3366445212079725 980. re +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 684.8228293932895667 214.6555436781221147 cm +3. 0. m +245.2314453125 0. l +246.888299561992369 0. 248.2314453125 1.3431457505076199 248.2314453125 3. c +248.2314453125 381. l +248.2314453125 382.656854249492369 246.888299561992369 384. 245.2314453125 384. c +3. 384. l +1.3431457505076203 384. 0.0000000000000004 382.656854249492369 0. 381. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 328. 248.2314453125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 1121.0432463561137411 160. cm -0. 0. m -248.7138671875 0. l -248.7138671875 32. l +1. 0. 0. 1. 1056.499989924216834 328. cm +3. 0. m +245.2314453125 0. l +246.888299561992369 0. 248.2314453125 1.3431457505076199 248.2314453125 3. c +248.2314453125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -12288,7 +14943,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 1131.0432463561137411 179.25 Tm +1. 0. 0. -1. 1066.499989924216834 347.25 Tm <00480051005700550044005100460048> Tj ET Q @@ -12296,17 +14951,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 192. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 360. 248.2314453125 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1121.0432463561137411 192. cm +1. 0. 0. 1. 1056.499989924216834 360. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -12316,15 +14971,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 211.25 Tm +0.173 g +1. 0. 0. -1. 1066.499989924216834 379.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 1147.2370940123637411 201.25 cm +0.17 g +1. 0. 0. 1. 1082.693837580466834 369.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -12369,28 +15024,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1312.9939299498637411 211.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1249.231435236716834 379.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 224. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 392. 248.2314453125 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1121.0432463561137411 224. cm +1. 0. 0. 1. 1056.499989924216834 392. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -12400,37 +15055,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 243.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 411.25 Tm <004b00520058005600480042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1124.689931330466834 401.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1316.8977385436137411 243.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1249.231435236716834 411.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 256. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 424. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 256. cm +1. 0. 0. 1. 1056.499989924216834 424. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -12440,8 +15143,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 275.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 443.25 Tm <004800510057005500440051004600480042005100580050004500480055> Tj ET Q @@ -12449,28 +15152,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1316.8977385436137411 275.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1249.231435236716834 443.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 288. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 456. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 288. cm +1. 0. 0. 1. 1056.499989924216834 456. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -12480,8 +15183,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 307.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 475.25 Tm <0057004c0057004f0048> Tj ET Q @@ -12489,28 +15192,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 307.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 475.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 320. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 488. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 320. cm +1. 0. 0. 1. 1056.499989924216834 488. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -12520,8 +15223,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 339.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 507.25 Tm <00530052004c005100570056> Tj ET Q @@ -12529,28 +15232,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 339.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 507.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 352. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 520. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 352. cm +1. 0. 0. 1. 1056.499989924216834 520. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -12560,8 +15263,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 371.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 539.25 Tm <00530052004c0051005700560042005100580050004500480055> Tj ET Q @@ -12569,28 +15272,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 371.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 539.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 384. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 552. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 384. cm +1. 0. 0. 1. 1056.499989924216834 552. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -12600,8 +15303,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 403.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 571.25 Tm <0049004f0052005200550056004200540058004400510057004c0057005c> Tj ET Q @@ -12609,28 +15312,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 403.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 571.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 416. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 584. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 416. cm +1. 0. 0. 1. 1056.499989924216834 584. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -12640,8 +15343,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 435.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 603.25 Tm <0044005300440055005700500048005100570056004200540058004400510057004c0057005c> Tj ET Q @@ -12649,28 +15352,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 435.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 603.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 448. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 616. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 448. cm +1. 0. 0. 1. 1056.499989924216834 616. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -12680,8 +15383,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 467.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 635.25 Tm <00470048005600460055004c00530057004c00520051> Tj ET Q @@ -12689,28 +15392,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1336.3850432311137411 467.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1268.731435236716834 635.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 480. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 648. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 480. cm +1. 0. 0. 1. 1056.499989924216834 648. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l +248.2314453125 0. l +248.2314453125 32. l 0. 32. l h f @@ -12720,8 +15423,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 499.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 667.25 Tm <0046005500480044005700480047004200440057> Tj ET Q @@ -12729,29 +15432,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1294.4651213561137411 499.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1236.231435236716834 667.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 512. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 680. 248.2314453125 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 512. cm +1. 0. 0. 1. 1056.499989924216834 680. cm 0. 0. m -248.7138671875 0. l -248.7138671875 32. l -0. 32. l +248.2314453125 0. l +248.2314453125 29. l +248.2314453125 30.6568542494923797 246.888299561992369 32. 245.2314453125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -12760,8 +15465,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 531.25 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 699.25 Tm <0058005300470044005700480047004200440057> Tj ET Q @@ -12769,29 +15474,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1294.4651213561137411 531.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1236.231435236716834 699.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.0432463561137411 160. 1534.3366445212079725 980. re +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 895.8344688175324109 214.6555436781221147 cm +3. 0. m +206.25048828125 0. l +207.907342530742369 0. 209.25048828125 1.3431457505076199 209.25048828125 3. c +209.25048828125 285. l +209.25048828125 286.656854249492369 207.907342530742369 288. 206.25048828125 288. c +3. 288. l +1.3431457505076203 288. 0.0000000000000004 286.656854249492369 0. 285. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1384.499989924216834 328. 209.25048828125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 1449.0432463561137411 160. cm -0. 0. m -221.75537109375 0. l -221.75537109375 32. l +1. 0. 0. 1. 1384.499989924216834 328. cm +3. 0. m +206.25048828125 0. l +207.907342530742369 0. 209.25048828125 1.3431457505076199 209.25048828125 3. c +209.25048828125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -12801,7 +15524,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 1459.0432463561137411 179.25 Tm +1. 0. 0. -1. 1394.499989924216834 347.25 Tm <004800510057005500440051004600480042004b004c0056005700520055005c> Tj ET Q @@ -12809,17 +15532,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.0432463561137411 192. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1384.499989924216834 360. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 192. cm +1. 0. 0. 1. 1384.499989924216834 360. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -12829,15 +15552,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 211.25 Tm +0.173 g +1. 0. 0. -1. 1394.499989924216834 379.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 1475.2370940123637411 201.25 cm +0.17 g +1. 0. 0. 1. 1410.693837580466834 369.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -12882,28 +15605,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1614.0354338561137411 211.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1538.250478205466834 379.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.0432463561137411 224. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1384.499989924216834 392. 209.25048828125 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1449.0432463561137411 224. cm +1. 0. 0. 1. 1384.499989924216834 392. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -12913,37 +15636,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 243.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 411.25 Tm <004800510057005500440051004600480042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1469.371571955466834 401.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1617.9392424498637411 243.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1538.250478205466834 411.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.0432463561137411 256. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1384.499989924216834 424. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 256. cm +1. 0. 0. 1. 1384.499989924216834 424. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -12953,8 +15724,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 275.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 443.25 Tm <0051004400500048> Tj ET Q @@ -12962,28 +15733,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1637.4265471373637411 275.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1557.750478205466834 443.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.0432463561137411 288. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1384.499989924216834 456. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 288. cm +1. 0. 0. 1. 1384.499989924216834 456. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -12993,8 +15764,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 307.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 475.25 Tm <0047004400570048004200560057004400550057> Tj ET Q @@ -13002,28 +15773,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1595.5066252623637411 307.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1525.250478205466834 475.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.0432463561137411 320. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1384.499989924216834 488. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 320. cm +1. 0. 0. 1. 1384.499989924216834 488. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -13033,8 +15804,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 339.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 507.25 Tm <00470044005700480042004800510047> Tj ET Q @@ -13042,68 +15813,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1595.5066252623637411 339.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1525.250478205466834 507.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.0432463561137411 352. 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 1449.0432463561137411 352. cm -0. 0. m -221.75537109375 0. l -221.75537109375 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 371.25 Tm -<004a00550052005800530042004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1617.9392424498637411 371.25 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.0432463561137411 384. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1384.499989924216834 520. 209.25048828125 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1449.0432463561137411 384. cm +1. 0. 0. 1. 1384.499989924216834 520. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +209.25048828125 0. l +209.25048828125 32. l 0. 32. l h f @@ -13113,38 +15844,176 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 403.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 539.25 Tm +<004a00550052005800530042004c0047> Tj +ET +Q +Q +q +0.24 g +0.02 0. 0. 0.02 1451.547353205466834 529.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 1538.250478205466834 539.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1384.499989924216834 552. 209.25048828125 32. re +W +n +q +q +0.87 0.93 0.95 rg +1. 0. 0. 1. 1384.499989924216834 552. cm +0. 0. m +209.25048828125 0. l +209.25048828125 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 1394.499989924216834 571.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1452.150380549216834 561.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1637.4265471373637411 403.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1538.250478205466834 571.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.0432463561137411 416. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1384.499989924216834 584. 209.25048828125 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.0432463561137411 416. cm +1. 0. 0. 1. 1384.499989924216834 584. cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l -0. 32. l +209.25048828125 0. l +209.25048828125 29. l +209.25048828125 30.6568542494923797 207.907342530742369 32. 206.25048828125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -13153,8 +16022,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.0432463561137411 435.25 Tm +0.235 g +1. 0. 0. -1. 1394.499989924216834 603.25 Tm <005a00520055004e004c0051004a> Tj ET Q @@ -13162,29 +16031,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1617.9392424498637411 435.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1538.250478205466834 603.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1450.1588988345024518 752. 1534.3366445212079725 980. re +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 896.5521994836683461 595.5058197121213652 cm +3. 0. m +254.1181640625 0. l +255.775018311992369 0. 257.1181640625 1.3431457505076199 257.1181640625 3. c +257.1181640625 317. l +257.1181640625 318.656854249492369 255.775018311992369 320. 254.1181640625 320. c +3. 320. l +1.3431457505076203 320. 0.0000000000000004 318.656854249492369 0. 317. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.6156424026057721 920. 257.1181640625 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 1450.1588988345024518 752. cm -0. 0. m -258.38134765625 0. l -258.38134765625 32. l +1. 0. 0. 1. 1385.6156424026057721 920. cm +3. 0. m +254.1181640625 0. l +255.775018311992369 0. 257.1181640625 1.3431457505076199 257.1181640625 3. c +257.1181640625 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -13194,7 +16081,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 1460.1588988345024518 771.25 Tm +1. 0. 0. -1. 1395.6156424026057721 939.25 Tm <0044005300440055005700500048005100570056> Tj ET Q @@ -13202,17 +16089,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1450.1588988345024518 784. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.6156424026057721 952. 257.1181640625 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1450.1588988345024518 784. cm +1. 0. 0. 1. 1385.6156424026057721 952. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -13222,15 +16109,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 803.25 Tm +0.173 g +1. 0. 0. -1. 1395.6156424026057721 971.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 1476.3527464907524518 793.25 cm +0.17 g +1. 0. 0. 1. 1411.8094900588557721 961.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -13275,28 +16162,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1651.7770628970024518 803.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 971.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1450.1588988345024518 816. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.6156424026057721 984. 257.1181640625 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1450.1588988345024518 816. cm +1. 0. 0. 1. 1385.6156424026057721 984. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -13306,37 +16193,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 835.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1003.25 Tm <004800510057005500440051004600480042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1470.4872244338557721 993.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1655.6808714907524518 835.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 1003.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1450.1588988345024518 848. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.6156424026057721 1016. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 848. cm +1. 0. 0. 1. 1385.6156424026057721 1016. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -13346,8 +16281,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 867.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1035.25 Tm <0044005300440055005700500048005100570042005100580050004500480055> Tj ET Q @@ -13355,28 +16290,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1655.6808714907524518 867.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 1035.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1450.1588988345024518 880. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.6156424026057721 1048. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 880. cm +1. 0. 0. 1. 1385.6156424026057721 1048. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -13386,8 +16321,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 899.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1067.25 Tm <0057004c0057004f0048> Tj ET Q @@ -13395,28 +16330,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1675.1681761782524518 899.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1606.7338064651057721 1067.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1450.1588988345024518 912. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.6156424026057721 1080. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 912. cm +1. 0. 0. 1. 1385.6156424026057721 1080. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -13426,8 +16361,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 931.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1099.25 Tm <0049004f00520052005500560042005100580050004500480055> Tj ET Q @@ -13435,28 +16370,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1655.6808714907524518 931.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 1099.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1450.1588988345024518 944. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.6156424026057721 1112. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 944. cm +1. 0. 0. 1. 1385.6156424026057721 1112. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -13466,8 +16401,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 963.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1131.25 Tm <005600570044005700580056> Tj ET Q @@ -13475,28 +16410,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1655.6808714907524518 963.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 1131.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1450.1588988345024518 976. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.6156424026057721 1144. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 976. cm +1. 0. 0. 1. 1385.6156424026057721 1144. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -13506,8 +16441,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 995.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1163.25 Tm <00470048005600460055004c00530057004c00520051> Tj ET Q @@ -13515,28 +16450,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1675.1681761782524518 995.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1606.7338064651057721 1163.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1450.1588988345024518 1008. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.6156424026057721 1176. 257.1181640625 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1450.1588988345024518 1008. cm +1. 0. 0. 1. 1385.6156424026057721 1176. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l +257.1181640625 0. l +257.1181640625 32. l 0. 32. l h f @@ -13546,38 +16481,88 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 1027.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1195.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1453.2660330276057721 1185.3800000000001091 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1675.1681761782524518 1027.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1587.2338064651057721 1195.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1450.1588988345024518 1040. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.6156424026057721 1208. 257.1181640625 32. re W n q q 0.95 g -1. 0. 0. 1. 1450.1588988345024518 1040. cm +1. 0. 0. 1. 1385.6156424026057721 1208. cm 0. 0. m -258.38134765625 0. l -258.38134765625 32. l -0. 32. l +257.1181640625 0. l +257.1181640625 29. l +257.1181640625 30.6568542494923797 255.775018311992369 32. 254.1181640625 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -13586,8 +16571,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1460.1588988345024518 1059.25 Tm +0.235 g +1. 0. 0. -1. 1395.6156424026057721 1227.25 Tm <0058005300470044005700480047004200440057> Tj ET Q @@ -13595,29 +16580,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1633.2482543032524518 1059.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1574.2338064651057721 1227.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.7430305741261236 488. 1534.3366445212079725 980. re +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 896.2846597171849226 425.6671831023649588 cm +3. 0. m +221.1103515625 0. l +222.767205811992369 0. 224.1103515625 1.3431457505076199 224.1103515625 3. c +224.1103515625 221. l +224.1103515625 222.656854249492369 222.767205811992369 224. 221.1103515625 224. c +3. 224. l +1.3431457505076203 224. 0.0000000000000004 222.656854249492369 0. 221. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.1997741422292165 656. 224.1103515625 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 1449.7430305741261236 488. cm -0. 0. m -225.37353515625 0. l -225.37353515625 32. l +1. 0. 0. 1. 1385.1997741422292165 656. cm +3. 0. m +221.1103515625 0. l +222.767205811992369 0. 224.1103515625 1.3431457505076199 224.1103515625 3. c +224.1103515625 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -13627,7 +16630,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 1459.7430305741261236 507.25 Tm +1. 0. 0. -1. 1395.1997741422292165 675.25 Tm <00440053004400550057005000480051005700560042004b004c0056005700520055005c> Tj ET Q @@ -13635,17 +16638,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.7430305741261236 520. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.1997741422292165 688. 224.1103515625 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.7430305741261236 520. cm +1. 0. 0. 1. 1385.1997741422292165 688. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l +224.1103515625 0. l +224.1103515625 32. l 0. 32. l h f @@ -13655,15 +16658,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 539.25 Tm +0.173 g +1. 0. 0. -1. 1395.1997741422292165 707.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 1475.9368782303761236 529.25 cm +0.17 g +1. 0. 0. 1. 1411.3936217984792165 697.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -13708,28 +16711,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1618.3533821366261236 539.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1553.8101257047292165 707.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.7430305741261236 552. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.1997741422292165 720. 224.1103515625 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1449.7430305741261236 552. cm +1. 0. 0. 1. 1385.1997741422292165 720. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l +224.1103515625 0. l +224.1103515625 32. l 0. 32. l h f @@ -13739,37 +16742,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 571.25 Tm +0.235 g +1. 0. 0. -1. 1395.1997741422292165 739.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1452.8501647672292165 729.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1641.7444954178761236 571.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1553.8101257047292165 739.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.7430305741261236 584. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.1997741422292165 752. 224.1103515625 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1449.7430305741261236 584. cm +1. 0. 0. 1. 1385.1997741422292165 752. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l +224.1103515625 0. l +224.1103515625 32. l 0. 32. l h f @@ -13779,37 +16830,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 603.25 Tm +0.235 g +1. 0. 0. -1. 1395.1997741422292165 771.25 Tm <00440053004400550057005000480051005700560042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1486.6133483609792165 761.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1622.2571907303761236 603.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1553.8101257047292165 771.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.7430305741261236 616. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.1997741422292165 784. 224.1103515625 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.7430305741261236 616. cm +1. 0. 0. 1. 1385.1997741422292165 784. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l +224.1103515625 0. l +224.1103515625 32. l 0. 32. l h f @@ -13819,8 +16918,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 635.25 Tm +0.235 g +1. 0. 0. -1. 1395.1997741422292165 803.25 Tm <005600570044005700580056> Tj ET Q @@ -13828,28 +16927,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1622.2571907303761236 635.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1553.8101257047292165 803.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.7430305741261236 648. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.1997741422292165 816. 224.1103515625 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.7430305741261236 648. cm +1. 0. 0. 1. 1385.1997741422292165 816. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l +224.1103515625 0. l +224.1103515625 32. l 0. 32. l h f @@ -13859,8 +16958,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 667.25 Tm +0.235 g +1. 0. 0. -1. 1395.1997741422292165 835.25 Tm <00470048005600460055004c00530057004c00520051> Tj ET Q @@ -13868,29 +16967,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1641.7444954178761236 667.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1573.3101257047292165 835.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1449.7430305741261236 680. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1385.1997741422292165 848. 224.1103515625 32. re W n q q 0.95 g -1. 0. 0. 1. 1449.7430305741261236 680. cm +1. 0. 0. 1. 1385.1997741422292165 848. cm 0. 0. m -225.37353515625 0. l -225.37353515625 32. l -0. 32. l +224.1103515625 0. l +224.1103515625 29. l +224.1103515625 30.6568542494923797 222.767205811992369 32. 221.1103515625 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -13899,8 +17000,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1459.7430305741261236 699.25 Tm +0.235 g +1. 0. 0. -1. 1395.1997741422292165 867.25 Tm <0046005500480044005700480047004200440057> Tj ET Q @@ -13908,29 +17009,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1599.8245735428761236 699.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1540.8101257047292165 867.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 618.5554599719099542 1534.3366445212079725 980. re +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 489.2510660244792007 509.6571881159589452 cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 381. l +216.2392578125 382.656854249492369 214.896112061992369 384. 213.2392578125 384. c +3. 384. l +1.3431457505076203 384. 0.0000000000000004 382.656854249492369 0. 381. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 786.5554599719099542 216.2392578125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 817.0432463561137411 618.5554599719099542 cm -0. 0. m -228.744140625 0. l -228.744140625 32. l +1. 0. 0. 1. 752.499989924216834 786.5554599719099542 cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -13940,7 +17059,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 827.0432463561137411 637.8054599719099542 Tm +1. 0. 0. -1. 762.499989924216834 805.8054599719099542 Tm <004b00520050004800560057004800440047> Tj ET Q @@ -13948,17 +17067,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 650.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 818.5554599719099542 216.2392578125 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 817.0432463561137411 650.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 818.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -13968,15 +17087,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 669.8054599719099542 Tm +0.173 g +1. 0. 0. -1. 762.499989924216834 837.8054599719099542 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 843.2370940123637411 659.8054599719099542 cm +0.17 g +1. 0. 0. 1. 778.693837580466834 827.8054599719099542 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -14021,68 +17140,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 989.0242033873637411 669.8054599719099542 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 913.239247736716834 837.8054599719099542 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 682.5554599719099542 1534.3366445212079725 980. re -W -n -q -q -0.87 0.93 0.95 rg -1. 0. 0. 1. 817.0432463561137411 682.5554599719099542 cm -0. 0. m -228.744140625 0. l -228.744140625 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 701.8054599719099542 Tm -<004a00550052005800530042004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 992.9280119811137411 701.8054599719099542 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 714.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 850.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 714.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 850.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -14092,8 +17171,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 733.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 869.8054599719099542 Tm <0057004c0057004f0048> Tj ET Q @@ -14101,28 +17180,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 733.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 869.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 746.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 882.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 746.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 882.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -14132,8 +17211,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 765.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 901.8054599719099542 Tm <005100580050004500480055> Tj ET Q @@ -14141,28 +17220,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 765.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 901.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 778.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 914.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 778.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 914.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -14172,8 +17251,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 797.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 933.8054599719099542 Tm <00530052004c005100570056> Tj ET Q @@ -14181,28 +17260,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 797.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 933.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 810.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 946.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 810.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 946.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -14212,8 +17291,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 829.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 965.8054599719099542 Tm <00530052004c005100570042004c0046005200510056> Tj ET Q @@ -14221,28 +17300,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 829.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 965.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 842.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 978.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 842.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 978.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -14252,8 +17331,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 861.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 997.8054599719099542 Tm <004a00480052> Tj ET Q @@ -14261,28 +17340,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 861.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 997.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 874.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 1010.5554599719099542 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 874.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 1010.5554599719099542 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -14292,8 +17371,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 893.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 1029.8054599719098405 Tm <0052005600500042004c0047> Tj ET Q @@ -14301,28 +17380,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 893.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 1029.8054599719098405 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 906.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 1042.5554599719098405 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 906.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 1042.5554599719098405 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -14332,8 +17411,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 925.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 1061.8054599719098405 Tm <0056004800570057004f00480050004800510057> Tj ET Q @@ -14341,28 +17420,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 925.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 1061.8054599719098405 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 938.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 1074.5554599719098405 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 938.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 1074.5554599719098405 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -14372,8 +17451,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 957.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 1093.8054599719098405 Tm <00470048005600460055004c00530057004c00520051> Tj ET Q @@ -14381,28 +17460,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1012.4153166686137411 957.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 932.739247736716834 1093.8054599719098405 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 970.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 1106.5554599719098405 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 970.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 1106.5554599719098405 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -14412,8 +17491,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 989.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 1125.8054599719098405 Tm <0046005500480044005700480047004200440057> Tj ET Q @@ -14421,29 +17500,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 970.4953947936137411 989.8054599719099542 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 900.239247736716834 1125.8054599719098405 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -817.0432463561137411 1002.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +752.499989924216834 1138.5554599719098405 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 817.0432463561137411 1002.5554599719099542 cm +1. 0. 0. 1. 752.499989924216834 1138.5554599719098405 cm 0. 0. m -228.744140625 0. l -228.744140625 32. l -0. 32. l +216.2392578125 0. l +216.2392578125 29. l +216.2392578125 30.6568542494923797 214.896112061992369 32. 213.2392578125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -14452,8 +17533,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 827.0432463561137411 1021.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 762.499989924216834 1157.8054599719098405 Tm <0058005300470044005700480047004200440057> Tj ET Q @@ -14461,29 +17542,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 970.4953947936137411 1021.8054599719099542 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 900.239247736716834 1157.8054599719098405 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 618.5554599719099542 1534.3366445212079725 980. re +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 684.8228293932895667 509.6571881159589452 cm +3. 0. m +217.44140625 0. l +219.098260499492369 0. 220.44140625 1.3431457505076199 220.44140625 3. c +220.44140625 285. l +220.44140625 286.656854249492369 219.098260499492369 288. 217.44140625 288. c +3. 288. l +1.3431457505076203 288. 0.0000000000000004 286.656854249492369 0. 285. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 786.5554599719099542 220.44140625 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 1121.0432463561137411 618.5554599719099542 cm -0. 0. m -221.75537109375 0. l -221.75537109375 32. l +1. 0. 0. 1. 1056.499989924216834 786.5554599719099542 cm +3. 0. m +217.44140625 0. l +219.098260499492369 0. 220.44140625 1.3431457505076199 220.44140625 3. c +220.44140625 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -14493,7 +17592,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 1131.0432463561137411 637.8054599719099542 Tm +1. 0. 0. -1. 1066.499989924216834 805.8054599719099542 Tm <004b005200500048005600570048004400470042004b004c0056005700520055005c> Tj ET Q @@ -14501,17 +17600,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 650.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 818.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 650.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 818.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -14521,15 +17620,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 669.8054599719099542 Tm +0.173 g +1. 0. 0. -1. 1066.499989924216834 837.8054599719099542 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 1147.2370940123637411 659.8054599719099542 cm +0.17 g +1. 0. 0. 1. 1082.693837580466834 827.8054599719099542 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -14574,28 +17673,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1286.0354338561137411 669.8054599719099542 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1221.441396174216834 837.8054599719099542 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 682.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 850.5554599719099542 220.44140625 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1121.0432463561137411 682.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 850.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -14605,37 +17704,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 701.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 869.8054599719099542 Tm <004b005200500048005600570048004400470042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1155.863271174216834 859.9354599719099497 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1289.9392424498637411 701.8054599719099542 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1221.441396174216834 869.8054599719099542 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 714.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 882.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 714.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 882.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -14645,8 +17792,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 733.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 901.8054599719099542 Tm <0051004400500048> Tj ET Q @@ -14654,28 +17801,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1309.4265471373637411 733.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1240.941396174216834 901.8054599719099542 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 746.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 914.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 746.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 914.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -14685,8 +17832,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 765.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 933.8054599719099542 Tm <0047004400570048004200560057004400550057> Tj ET Q @@ -14694,28 +17841,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1267.5066252623637411 765.8054599719099542 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1208.441396174216834 933.8054599719099542 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 778.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 946.5554599719099542 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 778.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 946.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -14725,8 +17872,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 797.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 965.8054599719099542 Tm <00470044005700480042004800510047> Tj ET Q @@ -14734,68 +17881,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1267.5066252623637411 797.8054599719099542 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 1208.441396174216834 965.8054599719099542 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 810.5554599719099542 1534.3366445212079725 980. re -W -n -q -q -0.95 g -1. 0. 0. 1. 1121.0432463561137411 810.5554599719099542 cm -0. 0. m -221.75537109375 0. l -221.75537109375 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 829.8054599719099542 Tm -<004a00550052005800530042004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1289.9392424498637411 829.8054599719099542 Tm -<004c005100570048004a00480055> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 842.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 978.5554599719099542 220.44140625 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 1121.0432463561137411 842.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 978.5554599719099542 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l +220.44140625 0. l +220.44140625 32. l 0. 32. l h f @@ -14805,38 +17912,176 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 861.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 997.8054599719099542 Tm +<004a00550052005800530042004c0047> Tj +ET +Q +Q +q +0.24 g +0.02 0. 0. 0.02 1123.547353205466834 987.9354599719099497 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 1221.441396174216834 997.8054599719099542 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 1010.5554599719099542 220.44140625 32. re +W +n +q +q +0.87 0.93 0.95 rg +1. 0. 0. 1. 1056.499989924216834 1010.5554599719099542 cm +0. 0. m +220.44140625 0. l +220.44140625 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 1066.499989924216834 1029.8054599719098405 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 1124.150380549216834 1019.9354599719099497 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1309.4265471373637411 861.8054599719099542 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 1221.441396174216834 1029.8054599719098405 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -1121.0432463561137411 874.5554599719099542 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +1056.499989924216834 1042.5554599719098405 220.44140625 32. re W n q q 0.95 g -1. 0. 0. 1. 1121.0432463561137411 874.5554599719099542 cm +1. 0. 0. 1. 1056.499989924216834 1042.5554599719098405 cm 0. 0. m -221.75537109375 0. l -221.75537109375 32. l -0. 32. l +220.44140625 0. l +220.44140625 29. l +220.44140625 30.6568542494923797 219.098260499492369 32. 217.44140625 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -14845,8 +18090,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 1131.0432463561137411 893.8054599719099542 Tm +0.235 g +1. 0. 0. -1. 1066.499989924216834 1061.8054599719098405 Tm <005a00520055004e004c0051004a> Tj ET Q @@ -14854,29 +18099,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 1289.9392424498637411 893.8054599719099542 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 1221.441396174216834 1061.8054599719098405 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -81.0432463561136842 160. 1534.3366445212079725 980. re +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 44.0994076401110391 214.6555436781221147 cm +3. 0. m +204.720703125 0. l +206.377557374492369 0. 207.720703125 1.3431457505076199 207.720703125 3. c +207.720703125 253. l +207.720703125 254.656854249492369 206.377557374492369 256. 204.720703125 256. c +3. 256. l +1.3431457505076203 256. 0.0000000000000004 254.656854249492369 0. 253. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +60.5488523070287101 328. 207.720703125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 81.0432463561136842 160. cm -0. 0. m -207.720703125 0. l +1. 0. 0. 1. 60.5488523070287101 328. cm +3. 0. m +204.720703125 0. l +206.377557374492369 0. 207.720703125 1.3431457505076199 207.720703125 3. c 207.720703125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -14886,7 +18149,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 91.0432463561136842 179.25 Tm +1. 0. 0. -1. 70.5488523070287101 347.25 Tm <0050004800480057004c0051004a0056004200560046004b004800470058004f0048> Tj ET Q @@ -14894,14 +18157,14 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -81.0432463561136842 192. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +60.5488523070287101 360. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 192. cm +1. 0. 0. 1. 60.5488523070287101 360. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -14914,15 +18177,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 211.25 Tm +0.173 g +1. 0. 0. -1. 70.5488523070287101 379.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 107.2370940123636842 201.25 cm +0.17 g +1. 0. 0. 1. 86.7426999632787101 369.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -14967,25 +18230,25 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 232.0007658873636842 211.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 212.7695554320287101 379.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -81.0432463561136842 224. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +60.5488523070287101 392. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 224. cm +1. 0. 0. 1. 60.5488523070287101 392. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -14998,8 +18261,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 243.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 411.25 Tm <0047004400570048> Tj ET Q @@ -15007,25 +18270,25 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 213.4719572936136842 243.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 199.7695554320287101 411.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -81.0432463561136842 256. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +60.5488523070287101 424. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 256. cm +1. 0. 0. 1. 60.5488523070287101 424. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -15038,8 +18301,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 275.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 443.25 Tm <0057005c00530048> Tj ET Q @@ -15047,25 +18310,25 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 235.9045744811136842 275.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 212.7695554320287101 443.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -81.0432463561136842 288. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +60.5488523070287101 456. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 288. cm +1. 0. 0. 1. 60.5488523070287101 456. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -15078,8 +18341,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 307.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 475.25 Tm <0051004400500048> Tj ET Q @@ -15087,25 +18350,25 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 307.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 232.2695554320287101 475.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -81.0432463561136842 320. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +60.5488523070287101 488. 207.720703125 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 81.0432463561136842 320. cm +1. 0. 0. 1. 60.5488523070287101 488. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -15118,34 +18381,82 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 339.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 507.25 Tm <0056004b0048004800530042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 128.1992429320287101 497.3799999999999955 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 339.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 212.7695554320287101 507.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -81.0432463561136842 352. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +60.5488523070287101 520. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 352. cm +1. 0. 0. 1. 60.5488523070287101 520. cm 0. 0. m 207.720703125 0. l 207.720703125 32. l @@ -15158,8 +18469,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 371.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 539.25 Tm <0057004c0057004f0048> Tj ET Q @@ -15167,29 +18478,31 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 371.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 232.2695554320287101 539.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -81.0432463561136842 384. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +60.5488523070287101 552. 207.720703125 32. re W n q q 0.95 g -1. 0. 0. 1. 81.0432463561136842 384. cm +1. 0. 0. 1. 60.5488523070287101 552. cm 0. 0. m 207.720703125 0. l -207.720703125 32. l -0. 32. l +207.720703125 29. l +207.720703125 30.6568542494923797 206.377557374492369 32. 204.720703125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c h f Q @@ -15198,8 +18511,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 91.0432463561136842 403.25 Tm +0.235 g +1. 0. 0. -1. 70.5488523070287101 571.25 Tm <005100580050004500480055> Tj ET Q @@ -15207,29 +18520,47 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 403.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 232.2695554320287101 571.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -57.7473479186136842 464. 1534.3366445212079725 980. re +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 28.4437834241081156 394.7874309915001731 cm +3. 0. m +226.75341796875 0. l +228.410272218242369 0. 229.75341796875 1.3431457505076199 229.75341796875 3. c +229.75341796875 349. l +229.75341796875 350.656854249492369 228.410272218242369 352. 226.75341796875 352. c +3. 352. l +1.3431457505076203 352. 0.0000000000000004 350.656854249492369 0. 349. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 608. 229.75341796875 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 57.7473479186136842 464. cm -0. 0. m -231.0166015625 0. l -231.0166015625 32. l +1. 0. 0. 1. 36.2134897798230213 608. cm +3. 0. m +226.75341796875 0. l +228.410272218242369 0. 229.75341796875 1.3431457505076199 229.75341796875 3. c +229.75341796875 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -15239,7 +18570,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 67.7473479186136842 483.25 Tm +1. 0. 0. -1. 46.2134897798230213 627.25 Tm <005600570044005100470042004f004c00560057> Tj ET Q @@ -15247,17 +18578,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -57.7473479186136842 496. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 640. 229.75341796875 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 57.7473479186136842 496. cm +1. 0. 0. 1. 36.2134897798230213 640. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -15267,15 +18598,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 515.25 Tm +0.173 g +1. 0. 0. -1. 46.2134897798230213 659.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 83.9411955748636842 505.25 cm +0.17 g +1. 0. 0. 1. 62.4073374360730213 649.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -15320,28 +18651,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 232.0007658873636842 515.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.4669077485730213 659.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -57.7473479186136842 528. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 672. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 528. cm +1. 0. 0. 1. 36.2134897798230213 672. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -15351,8 +18682,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 547.25 Tm +0.235 g +1. 0. 0. -1. 46.2134897798230213 691.25 Tm <0057004c0057004f0048> Tj ET Q @@ -15360,28 +18691,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 547.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 229.9669077485730213 691.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -57.7473479186136842 560. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 704. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 560. cm +1. 0. 0. 1. 36.2134897798230213 704. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -15391,8 +18722,48 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 579.25 Tm +0.235 g +1. 0. 0. -1. 46.2134897798230213 723.25 Tm +<004a00480052> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 229.9669077485730213 723.25 Tm +<019f011201c4019f> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 736. 229.75341796875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 36.2134897798230213 736. cm +0. 0. m +229.75341796875 0. l +229.75341796875 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 46.2134897798230213 755.25 Tm <004b005200580055004200560057004400550057> Tj ET Q @@ -15400,28 +18771,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 235.9045744811136842 579.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.4669077485730213 755.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -57.7473479186136842 592. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 768. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 592. cm +1. 0. 0. 1. 36.2134897798230213 768. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -15431,8 +18802,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 611.25 Tm +0.235 g +1. 0. 0. -1. 46.2134897798230213 787.25 Tm <004b0052005800550042004800510047> Tj ET Q @@ -15440,28 +18811,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 235.9045744811136842 611.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.4669077485730213 787.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -57.7473479186136842 624. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 800. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 624. cm +1. 0. 0. 1. 36.2134897798230213 800. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -15471,8 +18842,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 643.25 Tm +0.235 g +1. 0. 0. -1. 46.2134897798230213 819.25 Tm <00540058004400510057004c0057005c00420056004b004800480053> Tj ET Q @@ -15480,28 +18851,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 235.9045744811136842 643.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.4669077485730213 819.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -57.7473479186136842 656. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 832. 229.75341796875 32. re W n q q 0.95 g -1. 0. 0. 1. 57.7473479186136842 656. cm +1. 0. 0. 1. 36.2134897798230213 832. cm 0. 0. m -231.0166015625 0. l -231.0166015625 32. l +229.75341796875 0. l +229.75341796875 32. l 0. 32. l h f @@ -15511,8 +18882,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 67.7473479186136842 675.25 Tm +0.235 g +1. 0. 0. -1. 46.2134897798230213 851.25 Tm <005a00480048004e004200470044005c0056> Tj ET Q @@ -15520,29 +18891,169 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.3918791686136842 675.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 229.9669077485730213 851.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -60.3702138155584862 728. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 864. 229.75341796875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 36.2134897798230213 864. cm +0. 0. m +229.75341796875 0. l +229.75341796875 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 46.2134897798230213 883.25 Tm +<0053005500520046004800560056004c0051004a00420057004c00500048> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 229.9669077485730213 883.25 Tm +<0189011200e8014f> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 896. 229.75341796875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 36.2134897798230213 896. cm +0. 0. m +229.75341796875 0. l +229.75341796875 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 46.2134897798230213 915.25 Tm +<005600570044005700580056> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 229.9669077485730213 915.25 Tm +<010301630163014f> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +36.2134897798230213 928. 229.75341796875 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 36.2134897798230213 928. cm +0. 0. m +229.75341796875 0. l +229.75341796875 29. l +229.75341796875 30.6568542494923797 228.410272218242369 32. 226.75341796875 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 46.2134897798230213 947.25 Tm +<0058005300470044005700480047004200440057> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 197.4669077485730213 947.25 Tm +<019f0139015801120193019f00e801580186> Tj +ET +Q +Q +Q +Q +q +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 37.3943934934527249 631.5321971747969201 cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 253. l +216.2392578125 254.656854249492369 214.896112061992369 256. 213.2392578125 256. c +3. 256. l +1.3431457505076203 256. 0.0000000000000004 254.656854249492369 0. 253. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +50.1264668589809617 976. 216.2392578125 32. re W n q q 0.19 0.41 0.59 rg -1. 0. 0. 1. 60.3702138155584862 728. cm -0. 0. m -228.744140625 0. l -228.744140625 32. l +1. 0. 0. 1. 50.1264668589809617 976. cm +3. 0. m +213.2392578125 0. l +214.896112061992369 0. 216.2392578125 1.3431457505076199 216.2392578125 3. c +216.2392578125 32. l 0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c h f Q @@ -15552,7 +19063,7 @@ BT /F16 13 Tf 14.9499999999999993 TL 1. g -1. 0. 0. -1. 70.3702138155584862 747.25 Tm +1. 0. 0. -1. 60.1264668589809617 995.25 Tm <00560057004400510047004200560046004b004800470058004f0048> Tj ET Q @@ -15560,17 +19071,17 @@ Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -60.3702138155584862 760. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +50.1264668589809617 1008. 216.2392578125 32. re W n q q -0.95 g -1. 0. 0. 1. 60.3702138155584862 760. cm +0.87 0.93 0.95 rg +1. 0. 0. 1. 50.1264668589809617 1008. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -15580,15 +19091,15 @@ q BT /F16 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 779.25 Tm +0.173 g +1. 0. 0. -1. 60.1264668589809617 1027.25 Tm <004c0047> Tj ET Q Q q -0.44 g -1. 0. 0. 1. 86.5640614718084862 769.25 cm +0.17 g +1. 0. 0. 1. 76.3203145152309617 1017.25 cm 6.5625 0.9844000000000001 m 8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c 9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c @@ -15633,28 +19144,28 @@ Q q q BT -/F16 13 Tf +/F18 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 232.3511708468084862 779.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.8657246714809617 1027.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -60.3702138155584862 792. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +50.1264668589809617 1040. 216.2392578125 32. re W n q q 0.87 0.93 0.95 rg -1. 0. 0. 1. 60.3702138155584862 792. cm +1. 0. 0. 1. 50.1264668589809617 1040. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -15664,37 +19175,85 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 811.25 Tm -<00560057004400510047> Tj +0.235 g +1. 0. 0. -1. 60.1264668589809617 1059.25 Tm +<005600570044005100470042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 115.0346699839809617 1049.3800000000001091 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 236.2549794405584862 811.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.8657246714809617 1059.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -60.3702138155584862 824. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +50.1264668589809617 1072. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 60.3702138155584862 824. cm +1. 0. 0. 1. 50.1264668589809617 1072. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -15704,8 +19263,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 843.25 Tm +0.235 g +1. 0. 0. -1. 60.1264668589809617 1091.25 Tm <0047004400570048> Tj ET Q @@ -15713,28 +19272,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 213.8223622530584862 843.25 Tm -<0057004c0050004800560057004400500053> Tj +0.416 g +1. 0. 0. -1. 197.8657246714809617 1091.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -60.3702138155584862 856. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +50.1264668589809617 1104. 216.2392578125 32. re W n q q -0.95 g -1. 0. 0. 1. 60.3702138155584862 856. cm +0.87 0.93 0.95 rg +1. 0. 0. 1. 50.1264668589809617 1104. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -15744,8 +19303,96 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 875.25 Tm +0.235 g +1. 0. 0. -1. 60.1264668589809617 1123.25 Tm +<0056004b0048004800530042004c0047> Tj +ET +Q +Q +q +0.24 g +0.02 0. 0. 0.02 117.7768574839809617 1113.3800000000001091 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 210.8657246714809617 1123.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +50.1264668589809617 1136. 216.2392578125 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 50.1264668589809617 1136. cm +0. 0. m +216.2392578125 0. l +216.2392578125 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 60.1264668589809617 1155.25 Tm <004b005200580055> Tj ET Q @@ -15753,68 +19400,28 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 236.2549794405584862 875.25 Tm -<004c005100570048004a00480055> Tj +0.416 g +1. 0. 0. -1. 210.8657246714809617 1155.25 Tm +<0139015a019f0112012d01120189> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -60.3702138155584862 888. 1534.3366445212079725 980. re -W -n -q -q -0.87 0.93 0.95 rg -1. 0. 0. 1. 60.3702138155584862 888. cm -0. 0. m -228.744140625 0. l -228.744140625 32. l -0. 32. l -h -f -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 907.25 Tm -<0056004b0048004800530042004c0047> Tj -ET -Q -Q -q -q -BT -/F15 13 Tf -14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.7422841280584862 907.25 Tm -<00570048005b0057> Tj -ET -Q -Q -Q -Q -q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -60.3702138155584862 920. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +50.1264668589809617 1168. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 60.3702138155584862 920. cm +1. 0. 0. 1. 50.1264668589809617 1168. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 32. l 0. 32. l h f @@ -15824,8 +19431,8 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 939.25 Tm +0.235 g +1. 0. 0. -1. 60.1264668589809617 1187.25 Tm <00510058005000450048005500420056004b004800480053> Tj ET Q @@ -15833,28 +19440,201 @@ Q q q BT -/F15 13 Tf +/F17 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 255.7422841280584862 939.25 Tm -<00570048005b0057> Tj +0.416 g +1. 0. 0. -1. 230.3657246714809617 1187.25 Tm +<019f011201c4019f> Tj ET Q Q Q Q q -0.850306044571455 0. 0. 0.850306044571455 6.8024483565716398 3.5301571680902839 cm -60.3702138155584862 952. 1534.3366445212079725 980. re +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +50.1264668589809617 1200. 216.2392578125 32. re W n q q 0.95 g -1. 0. 0. 1. 60.3702138155584862 952. cm +1. 0. 0. 1. 50.1264668589809617 1200. cm 0. 0. m -228.744140625 0. l -228.744140625 32. l +216.2392578125 0. l +216.2392578125 29. l +216.2392578125 30.6568542494923797 214.896112061992369 32. 213.2392578125 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 60.1264668589809617 1219.25 Tm +<0058005300470044005700480047004200440057> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 197.8657246714809617 1219.25 Tm +<019f0139015801120193019f00e801580186> Tj +ET +Q +Q +Q +Q +q +0.95 g +0.6433281689763501 0. 0. 0.6433281689763501 16.7265323933851029 811.6640844881751491 cm +3. 0. m +244.39990234375 0. l +246.056756593242369 0. 247.39990234375 1.3431457505076199 247.39990234375 3. c +247.39990234375 253. l +247.39990234375 254.656854249492369 246.056756593242369 256. 244.39990234375 256. c +3. 256. l +1.3431457505076203 256. 0.0000000000000004 254.656854249492369 0. 253. c +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +18. 1256. 247.39990234375 32. re +W +n +q +q +0.19 0.41 0.59 rg +1. 0. 0. 1. 18. 1256. cm +3. 0. m +244.39990234375 0. l +246.056756593242369 0. 247.39990234375 1.3431457505076199 247.39990234375 3. c +247.39990234375 32. l +0. 32. l +0. 3. l +0. 1.3431457505076203 1.3431457505076194 0.0000000000000004 2.9999999999999996 0. c +h +f +Q +q +q +BT +/F16 13 Tf +14.9499999999999993 TL +1. g +1. 0. 0. -1. 28. 1275.25 Tm +<00560057004400510047004200560046004b004800470058004f00480042004b004c0056005700520055005c> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +18. 1288. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1288. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l +0. 32. l +h +f +Q +q +q +BT +/F16 13 Tf +14.9499999999999993 TL +0.173 g +1. 0. 0. -1. 28. 1307.25 Tm +<004c0047> Tj +ET +Q +Q +q +0.17 g +1. 0. 0. 1. 44.19384765625 1297.25 cm +6.5625 0.9844000000000001 m +8.1935000000000002 0.9844000000000001 9.5155999999999992 2.3065000000000002 9.5155999999999992 3.9375 c +9.5155999999999992 5.5685000000000002 8.1935000000000002 6.8906000000000001 6.5625 6.8906000000000001 c +6.1734999999999998 6.8906000000000001 5.8022 6.8152999999999997 5.4619999999999997 6.6786000000000003 c +4.5937999999999999 7.5468999999999999 l +3.9375 7.5468999999999999 l +3.9375 8.5312999999999999 l +2.9531000000000001 8.5312999999999999 l +2.9531000000000001 9.5155999999999992 l +0.9844000000000001 9.5155999999999992 l +0.9844000000000001 7.5468999999999999 l +3.7360000000000002 4.7952000000000004 l +3.6518000000000002 4.5171000000000001 3.6092 4.2281000000000004 3.6093999999999999 3.9375 c +3.6093999999999999 2.3065000000000002 4.9314999999999998 0.9844000000000001 6.5625 0.9844000000000001 c +h +6.5625 0. m +4.3879999999999999 0. 2.625 1.7626999999999999 2.625 3.9375 c +2.625 4.1185999999999998 2.6373000000000002 4.2988999999999997 2.6619000000000002 4.4771999999999998 c +0.1441 6.9950000000000001 l +0.0519 7.0872999999999999 0. 7.2125000000000004 0. 7.343 c +0. 10.0077999999999996 l +0. 10.2797000000000001 0.2204 10.5 0.4922 10.5 c +3.4453 10.5 l +3.7170999999999998 10.5 3.9375 10.2797000000000001 3.9375 10.0077999999999996 c +3.9375 9.5155999999999992 l +4.4297000000000004 9.5155999999999992 l +4.7015000000000002 9.5155999999999992 4.9218999999999999 9.2952999999999992 4.9218999999999999 9.0234000000000005 c +4.9218999999999999 8.6133000000000006 l +5.7431999999999999 7.7895000000000003 l +6.0110000000000001 7.8464 6.2847999999999997 7.875 6.5625 7.875 c +8.7370000000000001 7.875 10.5 6.1123000000000003 10.5 3.9375 c +10.5 1.7629999999999999 8.7372999999999994 0. 6.5625 0. c +h +6.5625 2.9531000000000001 m +6.5625 3.4967999999999999 7.0031999999999996 3.9375 7.5468999999999999 3.9375 c +8.0905000000000005 3.9375 8.5312999999999999 3.4967999999999999 8.5312999999999999 2.9531000000000001 c +8.5312999999999999 2.4095 8.0905000000000005 1.9688000000000001 7.5468999999999999 1.9688000000000001 c +7.0031999999999996 1.9688000000000001 6.5625 2.4095 6.5625 2.9531000000000001 c +h +f +Q +q +q +BT +/F18 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 209.89990234375 1307.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +18. 1320. 247.39990234375 32. re +W +n +q +q +0.87 0.93 0.95 rg +1. 0. 0. 1. 18. 1320. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l 0. 32. l h f @@ -15864,20 +19644,318 @@ q BT /F15 13 Tf 14.9499999999999993 TL -0.435 g -1. 0. 0. -1. 70.3702138155584862 971.25 Tm -<0058005300470044005700480047004200440057> Tj +0.235 g +1. 0. 0. -1. 28. 1339.25 Tm +<00560057004400510047004200560046004b004800470058004f00480042004c0047> Tj ET Q Q q +0.24 g +0.02 0. 0. 0.02 142.8046875 1329.3800000000001091 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 209.89990234375 1339.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +18. 1352. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1352. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l +0. 32. l +h +f +Q +q q BT /F15 13 Tf 14.9499999999999993 TL -0.6 g -1. 0. 0. -1. 213.8223622530584862 971.25 Tm -<0057004c0050004800560057004400500053> Tj +0.235 g +1. 0. 0. -1. 28. 1371.25 Tm +<0047004400570048> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 196.89990234375 1371.25 Tm +<019f0139015801120193019f00e801580186> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +18. 1384. 247.39990234375 32. re +W +n +q +q +0.87 0.93 0.95 rg +1. 0. 0. 1. 18. 1384. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 28. 1403.25 Tm +<0056004b0048004800530042004c0047> Tj +ET +Q +Q +q +0.24 g +0.02 0. 0. 0.02 85.650390625 1393.3800000000001091 cm +225.492999999999995 323.0869999999999891 m +215.728999999999985 323.0869999999999891 206.5480000000000018 319.2819999999999823 199.6299999999999955 312.3759999999999764 c +144.9979999999999905 257.7379999999999995 144.9979999999999905 168.8369999999999891 199.6299999999999955 114.2019999999999698 c +272.8489999999999895 40.9829999999999757 l +299.2719999999999914 14.5539999999999772 334.4590000000000032 -0.0000000000000213 371.9320000000000164 -0.0000000000000213 c +409.4050000000000296 -0.0000000000000213 444.5919999999999845 14.553999999999979 471.01400000000001 40.9829999999999757 c +525.6459999999999582 95.6179999999999666 525.6459999999999582 184.518999999999977 471.01400000000001 239.1539999999999679 c +422.2050000000000409 287.9659999999999513 l +415.299000000000035 294.8749999999999432 406.1180000000000518 298.67999999999995 396.3420000000000414 298.6829999999999359 c +386.5780000000000314 298.6829999999999359 377.3970000000000482 294.8779999999999291 370.4790000000000418 287.9719999999999231 c +363.5730000000000359 281.0629999999999313 359.7620000000000573 271.8759999999999195 359.7620000000000573 262.1029999999999518 c +359.7620000000000573 252.3329999999999416 363.5720000000000596 243.1459999999999582 370.4790000000000418 236.2369999999999663 c +419.2880000000000109 187.4249999999999545 l +445.4010000000000105 161.311999999999955 445.4010000000000105 118.8259999999999508 419.2880000000000109 92.7149999999999608 c +406.6659999999999968 80.0929999999999609 389.8410000000000082 73.1389999999999532 371.9320000000000164 73.1389999999999532 c +354.0230000000000246 73.1389999999999532 337.1980000000000359 80.0929999999999467 324.5760000000000218 92.7149999999999466 c +251.3570000000000277 165.9339999999999407 l +225.2440000000000282 192.0439999999999259 225.2440000000000282 234.5299999999999443 251.3570000000000277 260.6409999999999627 c +265.6220000000000141 274.9029999999999632 265.6220000000000141 298.11099999999999 251.3570000000000277 312.3729999999999336 c +244.4380000000000166 319.2829999999999586 235.2570000000000334 323.0869999999999322 225.4930000000000234 323.0869999999999322 c +h +140.0680000000000121 512. m +102.5950000000000131 512. 67.4080000000000155 497.4460000000000264 40.9860000000000184 471.0169999999999959 c +-13.6459999999999795 416.382000000000005 -13.6459999999999795 327.4809999999999945 40.9860000000000184 272.8460000000000036 c +77.6020000000000181 236.2330000000000041 l +84.508000000000024 229.3269999999999982 93.7010000000000218 225.5219999999999914 103.4650000000000176 225.5219999999999914 c +113.2290000000000134 225.5219999999999914 122.4220000000000255 229.3289999999999793 129.3280000000000314 236.2390000000000043 c +136.2340000000000373 243.1450000000000102 140.0450000000000443 252.3319999999999936 140.0450000000000443 262.1019999999999754 c +140.0450000000000443 271.875 136.2350000000000421 281.061999999999955 129.3280000000000314 287.9710000000000036 c +92.7120000000000317 324.5810000000000173 l +66.5990000000000322 350.6879999999999882 66.5990000000000322 393.174000000000035 92.7120000000000317 419.285000000000025 c +105.3340000000000316 431.9070000000000391 122.1590000000000344 438.8610000000000468 140.0680000000000405 438.8610000000000468 c +157.9770000000000323 438.8610000000000468 174.8020000000000493 431.910000000000025 187.424000000000035 419.285000000000025 c +260.6430000000000291 346.0660000000000309 l +286.7560000000000286 319.9560000000000173 286.7560000000000286 277.4700000000000273 260.6430000000000291 251.3590000000000373 c +253.7370000000000232 244.4500000000000455 249.9260000000000161 235.2630000000000337 249.9260000000000161 225.4930000000000518 c +249.9260000000000161 215.7230000000000416 253.7360000000000184 206.5360000000000582 260.6430000000000291 199.6270000000000664 c +267.549000000000035 192.7180000000000746 276.7420000000000186 188.9160000000000537 286.5060000000000286 188.9160000000000537 c +296.2700000000000387 188.9160000000000537 305.4630000000000223 192.7170000000000414 312.3690000000000282 199.6240000000000521 c +367.0010000000000332 254.2620000000000573 367.0010000000000332 343.1630000000000109 312.3690000000000282 397.7980000000000587 c +239.1500000000000341 471.0170000000000528 l +212.7280000000000371 497.4460000000000264 177.5410000000000252 512. 140.0680000000000405 512. c +h +f +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 209.89990234375 1403.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +18. 1416. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1416. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 28. 1435.25 Tm +<004b005200580055> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 209.89990234375 1435.25 Tm +<0139015a019f0112012d01120189> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +18. 1448. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1448. cm +0. 0. m +247.39990234375 0. l +247.39990234375 32. l +0. 32. l +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 28. 1467.25 Tm +<00510058005000450048005500420056004b004800480053> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 229.39990234375 1467.25 Tm +<019f011201c4019f> Tj +ET +Q +Q +Q +Q +q +0.6433281689763501 0. 0. 0.6433281689763501 5.1466253518108012 3.6439042538792705 cm +18. 1480. 247.39990234375 32. re +W +n +q +q +0.95 g +1. 0. 0. 1. 18. 1480. cm +0. 0. m +247.39990234375 0. l +247.39990234375 29. l +247.39990234375 30.6568542494923797 246.056756593242369 32. 244.39990234375 32. c +3. 32. l +1.3431457505076203 32. 0.0000000000000004 30.6568542494923797 0. 29. c +h +f +Q +q +q +BT +/F15 13 Tf +14.9499999999999993 TL +0.235 g +1. 0. 0. -1. 28. 1499.25 Tm +<0046005500480044005700480047004200440057> Tj +ET +Q +Q +q +q +BT +/F17 13 Tf +14.9499999999999993 TL +0.416 g +1. 0. 0. -1. 196.89990234375 1499.25 Tm +<019f0139015801120193019f00e801580186> Tj ET Q Q @@ -15898,12 +19976,12 @@ endobj endobj 7 0 obj << -/Length 26556 -/Length1 26556 +/Length 26464 +/Length1 26464 >> stream  -0Epcmap8glyfK @ Rloca7rhmtxSCW#hhea 5$maxp5 post&5'jnamer]L headõg$6OS/2@,g\`` ~01ac7Y #(  OP\_?M   " & 0 3 : < D p z  !!!! !"!&!.!^""""""""+"H"`"e%ʧS6<>ADK 12bd7Y#& PQ]`>M   & 0 2 9 < D p t | !!!! !"!&!.![""""""""+"H"`"d%ʧS*8>@CF~ ZHyu`{xYM geb^Qyj h(;,us +0Epcmap8glyfH`* loca6hmtxSCW#phhea 5@$maxp5d post&5'jnamer\ headõf6OS/2@,g`` ~01ac7Y #(  OP\_?M   " & 0 3 : < D p z  !!!! !"!&!.!^""""""""+"H"`"e%ʧS6<>ADK 12bd7Y#& PQ]`>M   & 0 2 9 < D p t | !!!! !"!&!.![""""""""+"H"`"d%ʧS*8>@CF~ ZHyu`{xYM geb^Qyj h(;,us N$!WhX_HL|dHI#$t   5\78x9:yhidfkegmbY @  @@ -15933,10 +20011,9 @@ r++233+201#'##"&&53326658  r r++29901!336673`4  8_HiD22CJ*@")r* -r+2+22901%.'##33>733>73+ ̻Ҭ ʳ~)OI??JQ)H]' H @  -rr+2+290133##! ˼1ZAH@ r r+2+2901336673#"&'5326677$4#&ef/H?">[B<H8g^,2U{eQ /Z>bbbbdddddddddddddddddddddddddddddddddddddddddddddd*0F&rrx  +r+2+22901%.'##33>733>73+ ̻Ҭ ʳ~)OI??JQ)H]H@ r r+2+2901336673#"&'5326677$4#&ef/H?">[B<H8g^,2U{eQ /Z>bbbbdddddddddddddddddddddddddddddddddddddddddddddd*0F&rrx   -  z R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R R0+4fo\R\>hYgSRge\,t]ggAgsgt,v+ +  z z 0+4fo\R\>hYgSRge\,t]ggAgsgt,v+ }r!}<&\-29}9}cihcyN3P8Rr^rr~rX4hrqEg 30'P9eCgDyez6dDOgRdmug2%8R=zLCMB%,:!t5 }rrrr<<<<:9}9}9}9}9}9}yr^r^r^r^r^r^^r~r~r~r~rqrrrrrgrr^r^r^ }r @@ -15976,13 +20053,13 @@ eight.tosf nine.tosfuni2080uni2081uni2082uni2083uni2084uni2085uni2086uni         "  $   .  &J &p * , $ . 8> <v > 6 @& f x        -Copyright 2020 The Open Sans Project Authors (https://github.com/googlefonts/opensans)Open SansRegular3.000;GOOG;OpenSans-RegularOpen Sans RegularVersion 3.000OpenSans-RegularOpen Sans is a trademark of Google and may be registered in certain jurisdictions.Monotype Imaging Inc.Monotype Design TeamDesigned by Monotype design team.http://www.google.com/get/noto/http://www.monotype.com/studioThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFLhttp://scripts.sil.org/OFLOpenSansRomanWeightWidthLightSemiBoldBoldExtraBoldCondensed LightCondensed RegularCondensed SemiBoldCondensed BoldCondensed ExtraBoldOpenSansRoman-LightOpenSansRoman-RegularOpenSansRoman-SemiBoldOpenSansRoman-BoldOpenSansRoman-ExtraBoldOpenSansRoman-CondensedLightOpenSansRoman-CondensedRegularOpenSansRoman-CondensedSemiBoldOpenSansRoman-CondensedBoldOpenSansRoman-CondensedExtraBoldCondensedSemiCondensedNormalMediumItalicRomanB_< w&Q b332@ (GOOGH  +Copyright 2020 The Open Sans Project Authors (https://github.com/googlefonts/opensans)Open SansRegular3.000;GOOG;OpenSans-RegularOpen Sans RegularVersion 3.000OpenSans-RegularOpen Sans is a trademark of Google and may be registered in certain jurisdictions.Monotype Imaging Inc.Monotype Design TeamDesigned by Monotype design team.http://www.google.com/get/noto/http://www.monotype.com/studioThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFLhttp://scripts.sil.org/OFLOpenSansRomanWeightWidthLightSemiBoldBoldExtraBoldCondensed LightCondensed RegularCondensed SemiBoldCondensed BoldCondensed ExtraBoldOpenSansRoman-LightOpenSansRoman-RegularOpenSansRoman-SemiBoldOpenSansRoman-BoldOpenSansRoman-ExtraBoldOpenSansRoman-CondensedLightOpenSansRoman-CondensedRegularOpenSansRoman-CondensedSemiBoldOpenSansRoman-CondensedBoldOpenSansRoman-CondensedExtraBoldCondensedSemiCondensedNormalMediumItalicRomanB` _< w&Q b332@ (GOOGH  endstream endobj 8 0 obj << -/Length 706 -/Length1 706 +/Length 693 +/Length1 693 >> stream /CIDInit /ProcSet findresource begin @@ -15998,7 +20075,7 @@ begincmap 1 begincodespacerange <0000> endcodespacerange -29 beginbfchar +28 beginbfchar <000d><002a> <0011><002e> <0013><0030> @@ -16026,7 +20103,6 @@ endcodespacerange <0058><0075> <0059><0076> <005a><0077> -<005b><0078> <005c><0079> endbfchar endcmap @@ -16054,7 +20130,7 @@ endobj /Type /Font /BaseFont /Open#20Sans /FontDescriptor 9 0 R -/W [19 [571] 17 [262] 20 [571] 13 [550] 74 [542] 85 [408] 82 [601] 88 [613] 83 [611] 66 [437] 76 [252] 71 [611] 81 [613] 87 [356] 72 [561] 68 [555] 80 [925] 91 [523] 70 [479] 89 [499] 90 [774] 86 [476] 75 [613] 79 [252] 92 [500] 69 [611] 78 [525] 73 [336] 84 [611]] +/W [19 [571] 17 [262] 20 [571] 13 [550] 74 [542] 85 [408] 82 [601] 88 [613] 83 [611] 66 [437] 76 [252] 71 [611] 81 [613] 68 [555] 80 [925] 72 [561] 70 [479] 87 [356] 79 [252] 86 [476] 75 [613] 89 [499] 90 [774] 92 [500] 69 [611] 78 [525] 84 [611] 73 [336]] /CIDToGIDMap /Identity /DW 1000 /Subtype /CIDFontType2 @@ -16216,7 +20292,7 @@ endobj /Type /Font /BaseFont /Open#20Sans /FontDescriptor 14 0 R -/W [86 [497] 75 [657] 72 [590] 83 [632] 76 [305] 71 [632] 81 [657] 87 [434] 74 [564] 85 [454] 68 [604] 80 [981] 82 [619] 88 [657] 69 [632] 70 [514] 66 [411] 92 [568] 79 [305]] +/W [86 [497] 75 [657] 72 [590] 83 [632] 76 [305] 71 [632] 82 [619] 69 [632] 79 [305] 87 [434] 74 [564] 85 [454] 88 [657] 70 [514] 81 [657] 68 [604] 66 [411] 92 [568] 80 [981]] /CIDToGIDMap /Identity /DW 1000 /Subtype /CIDFontType2 @@ -16240,6 +20316,382 @@ endobj endobj 17 0 obj << +/Length 27992 +/Length1 27992 +>> +stream + +0EpcmapQd_ +@glyf2 +RlocaҨ@ hmtx "Lhhea1T$maxpz1x post1&name2X4headKl6OS/2_#1l` +, /9~1H~-37MY{ $(.16u !%+/7;IS[io{     " & 0 3 : D p y {  !!!"!$!&!.!!""""""""""+"H"`"e"###'#+##$#%%%%%%%&;&`&c&f''++. 0:4J*07MY{#&.15u  $*.6:BLZ^lx      & 0 2 9 D p t {  !!!"!$!&!.!!""""""""""+"H"`"d"###%#+##$#%%%%%%%&9&`&c&e''++.C#Elwvngfa_\ 'V#XeGF1X/bqTP]R/^N8ߙ;54k +&Z\^`dfh &020LC&UND+,$l1'spr M$*BCJO^`cmox/(0z8 ,-49ILOXZc-W.xMRdTfXPQ?y2RTvO"@!  9+/6XPRT%wy{n!C;=? bqdfmo" +# &'<$,7?'-F0D.H2G1M7K5]H[FQ<\GV:_KaMNePgRfQhSlWp[r]q\u`{zeysA+djUE/~5;#S>ZElznotqpovuyrwsx|}{z~! ()>&=%.I3N8L6U@iTkVnYs^t_va}| +  8 :"@)02341YDWBpr|g~ijk}htvwxuIKNJO5346=>9;<:Y[#Y\VW[aZc]^ba|mhutedb +  1+/)=*:0<(9.-' ;&8",!4%3$@7?62#>5  17'@1 +r  $+r3 r+23+29/333+01W"&54>32.#"32>54&&#"'6632#5NT$?T/#'%$$<,#'=+ ?1!@# T/-J5N %*, G7%;)7 &0F-DL . 3VAF <1!@11 r((rr +r+++23+2301E"&&'#33>32#'2>54.#"3 +2).H + $(*E2 7D$ -$!.%9 /"  < ;X;=\=@)D1-C,-Q5'@.1 +@ !!' +r r++29/3301E".54>32!3266734.#"2R; !9M+'D2*7*%(1:++$ +55B#.LL1H''H12G''G2----?+ !:,,  +!0    *1'G+I,,H++H,,I+<.--.!; +d&:{  +`V+4d @ r +r++23301s53#533duok:U:q:O @ +r +r+23+201s53#533Oʆ:%::&+%@% %rr! +r+22++2233301s3>32>32#4&&#"#4&#"&B #" )" +B  !C  -+D*& #4>9&(H@ rr +r+2++2301s3>32#4&&#"HF0:&<$F&/(Q)&TE09%4!'@ r r++2301W"&&546632'26654&&#">_66_>>_66_>(<##<('=##==kEFk==kFEk=<.P44P--P44P.32#"&&'72>54&&'&32'&&'&&#"#wK *2$=  2)IɅ0!8  + +(>+9;@7/;,r ; r+2+2901W"&&'77326654.'.546632'&&'&&#"#&E=( ;.%3 , 4N*&K7 4,%) :(:849E)T@ + D  ! +(5"#3 2 %0!&B'FH@ r r+2+]301E".7773267#!!+,8  K + $!3"H'I?`BF qLS9;/ @ +r +r+2+2901s7'373#'/OwrJR~wᩩ벲)2)2 /201S"&54632)nnnnnnnnnnnnnnn + + + + + + + + + + + + + + + + + + + + + + + + + + +PPPPPPPPPPPPthhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhzzzzzzzzzzBBBBBBBBBBBBRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRRR0)))))))6666;;;;;;;;;;;;;;;;;;;;;;;GN#######2222QQQQ?QQQQQQQQQP11***BBBBBBBBB))222222222 ;;88888888444444444447222222222------22222222)22222-1111111111111111111111111 + +<8888888-(#---1111111111111111111111-17[?&&&&&&&IIIddddcJdddddddddd000BBBOOOOEOOO&&HHHHHHDHH''''''''''''''''''''''''''''''''''<<*wwwwrwww#999999999997F=FFFFFF@@@@@@@@@((((((@@@@@@@@(/22222(LLH29X:E0@CO<D99rsynyzuyrsynyzuyrsynyzuyrsynyzuyLrrrrrrrr@@)@@)zr56ooG +G +o#<PRCHq,-)8)D<A!#'26 3'$)3(---UG--(###-GG[] + I 6' )G_;;   +;" +" +" +" +))/FFFFF??FF))(   U$@Ay1100)"=!-,@{p~chte{_spt{yop~|ee{op\Xl`opNpeuttttikel\\\\[B*s/82$  +   bc%&d'(e !"#$%&'()*+,-.)*/0123+4567,89:;<=>?@-A.BC/DEFGHIJK0L1MNOPQRSf2TUVWXYZg[\]^_`abcdefghijklmn345opqrstu6vwxyz{|}~78h9:;<=DikljnmEFoGHprsqIJKLtvwuMNOPQxRy{|z  +   }STUV !"#$%&'W()*+,-.X~/0123456789:;<=>?@YZABCD[\EFGHIJK]LMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~" ? ^`>@B + !aA  +    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqr# st_uvwxyz{|}~CAbreveuni1EAEuni1EB6uni1EB0uni1EB2uni1EB4uni1EA4uni1EACuni1EA6uni1EA8uni1EAAuni0200uni1EA0uni1EA2uni0202AmacronAogonek +AringacuteAEacuteuni1E08 Ccircumflex +CdotaccentDcaronDcroatuni1E0Cuni1E0EEbreveEcaronuni1E1Cuni1EBEuni1EC6uni1EC0uni1EC2uni1EC4uni0204 +Edotaccentuni1EB8uni1EBAuni0206Emacronuni1E16uni1E14Eogonekuni1EBCuni01B8Gcaron Gcircumflexuni0122 +Gdotaccentuni1E20Hbaruni1E2A Hcircumflexuni1E24Ibreveuni0208uni1E2Euni1ECAuni1EC8uni020AImacronIogonekItilde Jcircumflexuni0136uni0198uni01C7LacuteLcaronuni013BLdotuni1E36uni01C8uni1E3Auni1E42NacuteNcaronuni0145uni1E44uni1E46Enguni1E48Obreveuni1ED0uni1ED8uni1ED2uni1ED4uni1ED6uni020Cuni022Auni0230uni1ECCuni1ECEOhornuni1EDAuni1EE2uni1EDCuni1EDEuni1EE0 Ohungarumlautuni020EOmacronuni1E52uni1E50uni01EA Oslashacuteuni1E4Cuni1E4Euni022CRacuteRcaronuni0156uni0210uni1E5Auni0212uni1E5ESacuteuni1E64uni1E66 Scircumflexuni0218uni1E60uni1E62uni1E68uni1E9Euni018FTbarTcaronuni0162uni021Auni1E6Cuni1E6EUbreveuni0214uni1EE4uni1EE6Uhornuni1EE8uni1EF0uni1EEAuni1EECuni1EEE Uhungarumlautuni0216Umacronuni1E7AUogonekUringUtildeuni1E78Wacute Wcircumflex WdieresisWgrave Ycircumflexuni1E8Euni1EF4Ygraveuni1EF6uni0232uni1EF8Zacute +Zdotaccentuni1E92U.iabreveuni1EAFuni1EB7uni1EB1uni1EB3uni1EB5uni1EA5uni1EADuni1EA7uni1EA9uni1EABuni0201uni1EA1uni1EA3uni0203amacronaogonek +aringacuteaeacuteuni0298uni1E09 ccircumflex +cdotaccentdcaronuni1E0Duni1E0Febreveecaronuni1E1Duni1EBFuni1EC7uni1EC1uni1EC3uni1EC5uni0205 +edotaccentuni1EB9uni1EBBuni0207emacronuni1E17uni1E15eogonekuni029Auni1EBDuni0259uni01B9gcaron gcircumflexuni0123 +gdotaccentuni1E21hbaruni1E2B hcircumflexuni1E25ibreveuni0209uni1E2F i.loclTRKuni1ECBuni1EC9uni020Bimacroniogonekitildeuni0237 jcircumflexuni0137 kgreenlandiclacutelcaronuni013Cldotuni1E37uni01C9uni1E3Buni1E43nacutencaronuni0146uni1E45uni1E47enguni1E49obreveuni1ED1uni1ED9uni1ED3uni1ED5uni1ED7uni020Duni022Buni0231uni1ECDuni1ECFohornuni1EDBuni1EE3uni1EDDuni1EDFuni1EE1 ohungarumlautuni020Fomacronuni1E53uni1E51uni01EB oslashacuteuni1E4Duni1E4Funi022Dracutercaronuni0157uni0211uni1E5Buni027Buni0213uni1E5Funi024Dsacuteuni1E65uni1E67 scircumflexuni0219uni1E61uni1E63uni1E69tbartcaronuni0163uni021Buni1E97uni1E6Duni1E6Fubreveuni0215uni1EE5uni1EE7uhornuni1EE9uni1EF1uni1EEBuni1EEDuni1EEF uhungarumlautuni0217umacronuni1E7Buogonekuringutildeuni1E79wacute wcircumflex wdieresiswgrave ycircumflexuni1E8Funi1EF5ygraveuni1EF7uni0233uni1EF9zacute +zdotaccentuni1E93u.iuni207Funi2124 zero.zero zero.ss02uni2080uni2081uni2082uni2083uni2084uni2085uni2086uni2087uni2088uni2089 zero.dnomone.dnomtwo.dnom +three.dnom four.dnom five.dnomsix.dnom +seven.dnom +eight.dnom nine.dnom zero.numrone.numrtwo.numr +three.numr four.numr five.numrsix.numr +seven.numr +eight.numr nine.numruni2070uni00B9uni00B2uni00B3uni2074uni2075uni2076uni2077uni2078uni2079 uni2080.ss02zero.dnom.ss02zero.numr.ss02 uni2070.ss02 uni2080.zerozero.dnom.zerozero.numr.zero uni2070.zerouni2E12periodcentered.loclCAT asterisk.ss01uni00AD +figuredashuni2015uni2010 quotedbl.ss03quotesingle.ss03hyphen_greater.dligexclam_equal_equal.dliguni2007uni200Auni2008uni00A0uni2009uni200BCRuni20B5 colonmonetarydongEurouni20B2uni20ADlirauni20BAuni20BCuni20A6pesetauni20B1uni20BDuni20B9uni20A9 asteriskmathuni2219uni2215elementuni207Bemptysetuni2126uni2206uni00B5 +circleplusasciitilde.ss01asciicircum.ss01arrowupuni2197 +arrowrightuni2198 arrowdownuni2199 arrowleftuni2196 arrowboth arrowupdnuni21E7uni21E8uni21E9uni21E6uni2B06uni2B95uni2B07uni2B05 dneighthblockdnquarterblockdnthreeeighthsblock dnhalfblockdnfiveeighthsblockdnthreequartersblockdnseveneighthsblock fullblock uphalfblock upeighthblocklefteighthblockleftquarterblockleftthreeeighthsblock lefthalfblockleftfiveeighthsblockleftthreequartersblockleftseveneighthsblockrighthalfblockrighteighthblockdnleftquadrantdnrightquadrantupleftquadrantupleftdnleftdnrightquadrantupleftdnrightquadrantupleftuprightdnleftquadrantupleftuprightdnrightquadrantuprightquadrantuprightdnleftquadrantuprightdnleftdnrightquadrant +lightshade mediumshade darkshadeuni25CFcircleuni25C6uni25C7 dbldnhorzbxd dbldnleftbxd dbldnrightbxd +dblhorzbxd dbluphorzbxd dblupleftbxd dbluprightbxd +dblvertbxddblverthorzbxddblvertleftbxddblvertrightbxddndblhorzsngbxddndblleftsngbxddndblrightsngbxddnheavyhorzlightbxddnheavyleftlightbxddnheavyleftuplightbxddnheavyrightlightbxddnheavyrightuplightbxddnheavyuphorzlightbxddnlighthorzheavybxddnlightleftheavybxddnlightleftupheavybxddnlightrightheavybxddnlightrightupheavybxddnlightuphorzheavybxddnsnghorzdblbxddnsngleftdblbxddnsngrightdblbxdheavydbldashhorzbxdheavydbldashvertbxd +heavydnbxdheavydnhorzbxdheavydnleftbxdheavydnrightbxd heavyhorzbxd heavyleftbxdheavyleftlightrightbxdheavyquaddashhorzbxdheavyquaddashvertbxd heavyrightbxdheavytrpldashhorzbxdheavytrpldashvertbxd +heavyupbxdheavyuphorzbxdheavyupleftbxdheavyuplightdnbxdheavyuprightbxd heavyvertbxdheavyverthorzbxdheavyvertleftbxdheavyvertrightbxdleftdnheavyrightuplightbxdleftheavyrightdnlightbxdleftheavyrightuplightbxdleftheavyrightvertlightbxdleftlightrightdnheavybxdleftlightrightupheavybxdleftlightrightvertheavybxdleftupheavyrightdnlightbxdlightarcdnleftbxdlightarcdnrightbxdlightarcupleftbxdlightarcuprightbxdlightdbldashhorzbxdlightdbldashvertbxdlightdiagcrossbxdlightdiagupleftdnrightbxdlightdiaguprightdnleftbxd +lightdnbxdlightdnhorzbxdlightdnleftbxdlightdnrightbxd lighthorzbxd lightleftbxdlightleftheavyrightbxdlightquaddashhorzbxdlightquaddashvertbxd lightrightbxdlighttrpldashhorzbxdlighttrpldashvertbxd +lightupbxdlightupheavydnbxdlightuphorzbxdlightupleftbxdlightuprightbxd lightvertbxdlightverthorzbxdlightvertleftbxdlightvertrightbxdrightdnheavyleftuplightbxdrightheavyleftdnlightbxdrightheavyleftuplightbxdrightheavyleftvertlightbxdrightlightleftdnheavybxdrightlightleftupheavybxdrightlightleftvertheavybxdrightupheavyleftdnlightbxdupdblhorzsngbxdupdblleftsngbxdupdblrightsngbxdupheavydnhorzlightbxdupheavyhorzlightbxdupheavyleftdnlightbxdupheavyleftlightbxdupheavyrightdnlightbxdupheavyrightlightbxduplightdnhorzheavybxduplighthorzheavybxduplightleftdnheavybxduplightleftheavybxduplightrightdnheavybxduplightrightheavybxdupsnghorzdblbxdupsngleftdblbxdupsngrightdblbxdvertdblhorzsngbxdvertdblleftsngbxdvertdblrightsngbxdvertheavyhorzlightbxdvertheavyleftlightbxdvertheavyrightlightbxdvertlighthorzheavybxdvertlightleftheavybxdvertlightrightheavybxdvertsnghorzdblbxdvertsngleftdblbxdvertsngrightdblbxduni2639 smileface invsmilefacespadeclubheartdiamonduni2713uni2714uni2715uni2717uni2718minuteseconduni2113uni2116 estimateduni2423uni238Bhouseuni21EAuni2327uni232Buni2326uni2325uni2318uni23CEuniFFFDequal_equal_equal.dligequal_greater.dliggreater_equal.dligless_hyphen.dligless_equal.dliguni0375uni02BCuni02BBuni02BAuni02C9uni02CBuni02B9uni02BFuni02BEuni02CAuni02CCuni02C8uni0308uni0307 gravecomb acutecombuni030Buni0302uni030Cuni0306uni030A tildecombuni0304 hookabovecombuni030Funi0311uni0312uni031B dotbelowcombuni0324uni0326uni0327uni0328uni032Euni0331uni0335uni0336 uni0308.case uni0307.casegravecomb.caseacutecomb.case uni030B.case uni0302.case uni030C.case uni0306.case uni030A.casetildecomb.case uni031B.case dieresis.casedotaccent.case +grave.case +acute.casehungarumlaut.case +caron.case +breve.case ring.case +tilde.case tildecomb.i uni03060301 uni03060300 uni03060309 uni03060303 uni03020301 uni03020300 uni03020309 uni03020303uni03020301.caseuni03020300.caseuni03020309.caseuni03020303.caseNULLj    <x &R 8 & 6  H   t  T 4     + + 2 + ( + , + * +Z . +, & + 0   (   +2 |  ( T  , (  * . & 0z (R (*   "   $  &d F 0 & * ( ,r $N  .  !& " # + $ %  & ' ( ) + *.n +$J ,(" -& .* /" 0, 1$` 2&: 3 4  5 6" 7 8$ 9d :04 ;& <* =( >, ?$l @.> A& B0 C& D* E(p F,D G$  H. I& J K L M N Oh P \ QD R4 S T U V + W X  Y Z [ \ +UltraExpandedExtraExpandedExpandedSemiExpandedNormalSemiCondensedCondensedExtraCondensedUltraCondensedUltraExpanded BlackUltraExpanded ExtraBoldUltraExpanded BoldUltraExpanded SemiBoldUltraExpanded MediumUltraExpanded RegularUltraExpanded LightUltraExpanded ExtraLightExtraExpanded BlackExtraExpanded ExtraBoldExtraExpanded BoldExtraExpanded SemiBoldExtraExpanded MediumExtraExpanded RegularExtraExpanded LightExtraExpanded ExtraLightExpanded BlackExpanded ExtraBoldExpanded BoldExpanded SemiBoldExpanded MediumExpanded RegularExpanded LightExpanded ExtraLightSemiExpanded BlackSemiExpanded ExtraBoldSemiExpanded BoldSemiExpanded SemiBoldSemiExpanded MediumSemiExpanded RegularSemiExpanded LightSemiExpanded ExtraLightBlackExtraBoldBoldSemiBoldMediumLightExtraLightSemiCondensed BlackSemiCondensed ExtraBoldSemiCondensed BoldSemiCondensed SemiBoldSemiCondensed MediumSemiCondensed RegularSemiCondensed LightSemiCondensed ExtraLightCondensed BlackCondensed ExtraBoldCondensed BoldCondensed SemiBoldCondensed MediumCondensed RegularCondensed LightCondensed ExtraLightExtraCondensed BlackExtraCondensed ExtraBoldExtraCondensed BoldExtraCondensed SemiBoldExtraCondensed MediumExtraCondensed RegularExtraCondensed LightExtraCondensed ExtraLightUltraCondensed BlackUltraCondensed ExtraBoldUltraCondensed BoldUltraCondensed SemiBoldUltraCondensed MediumUltraCondensed RegularUltraCondensed LightUltraCondensed ExtraLightWidthWeighthttp://scripts.sil.org/OFLThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://www.levien.com | http://www.cyreal.org | http://appsforartists.comhttp://www.levien.com | http://www.cyreal.org | http://fonts.google.comRaph Levien, Cyreal, Brenton SimpsonRaph Levien, Cyreal, GoogleInconsolata-RegularVersion 3.001Inconsolata Regular3.001;CYRE;Inconsolata-RegularRegularInconsolataCopyright 2006 The Inconsolata Project Authors (https://github.com/cyrealtype/Inconsolata)B)'Y_< QڪCBpXKX^2 CYRE[B`o  +endstream +endobj +18 0 obj +<< +/Length 511 +/Length1 511 +>> +stream +/CIDInit /ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo << + /Registry (Adobe) + /Ordering (UCS) + /Supplement 0 +>> def +/CMapName /Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<0000> +endcodespacerange +14 beginbfchar +<00e8><0061> +<0103><0062> +<0112><0065> +<012d><0067> +<0139><0069> +<014f><006c> +<0158><006d> +<015a><006e> +<0163><006f> +<0186><0070> +<0189><0072> +<0193><0073> +<019f><0074> +<01c4><0078> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj +19 0 obj +<< +/Type /FontDescriptor +/FontName /Inconsolata +/FontFile2 17 0 R +/FontBBox [-80 -400 1455 1000] +/Flags 33 +/StemV 0 +/ItalicAngle 0 +/Ascent 859 +/Descent -190 +/CapHeight 623 +>> +endobj +20 0 obj +<< +/Type /Font +/BaseFont /Inconsolata +/FontDescriptor 19 0 R +/W [313 [500] 346 [500] 415 [500] 274 [500] 301 [500] 393 [500] 452 [500] 344 [500] 403 [500] 232 [500] 390 [500] 335 [500] 259 [500] 355 [500]] +/CIDToGIDMap /Identity +/DW 1000 +/Subtype /CIDFontType2 +/CIDSystemInfo +<< +/Supplement 0 +/Registry (Adobe) +/Ordering (Identity-H) +>> +>> +endobj +21 0 obj +<< +/Type /Font +/Subtype /Type0 +/ToUnicode 18 0 R +/BaseFont /Inconsolata +/Encoding /Identity-H +/DescendantFonts [20 0 R] +>> +endobj +22 0 obj +<< +/Length 26836 +/Length1 26836 +>> +stream + +0EpcmapQd_ +@glyff +loca: hmtx hhea,$maxpz- post-(&nameQ29SxheadM+h<6OS/2`#ht` +, /9~1H~-37MY{ $(.16u !%+/7;IS[io{     " & 0 3 : D p y {  !!!"!$!&!.!!""""""""""+"H"`"e"###'#+##$#%%%%%%%&;&`&c&f''++. 0:4J*07MY{#&.15u  $*.6:BLZ^lx      & 0 2 9 D p t {  !!!"!$!&!.!!""""""""""+"H"`"d"###%#+##$#%%%%%%%&9&`&c&e''++.C#Elwvngfa_\ 'V#XeGF1X/bqTP]R/^N8ߙ;54k +&Z\^`dfh &020LC&UND+,$l1'spr M$*BCJO^`cmox/(0z8 ,-49ILOXZc-W.xMRdTfXPQ?y2RTvO"@!  9+/6XPRT%wy{n!C;=? bqdfmo" +# &'<$,7?'-F0D.H2G1M7K5]H[FQ<\GV:_KaMNePgRfQhSlWp[r]q\u`{zeysA+djUE/~5;#S>ZElznotqpovuyrwsx|}{z~! ()>&=%.I3N8L6U@iTkVnYs^t_va}| +  8 :"@)02341YDWBpr|g~ijk}htvwxuIKNJO5346=>9;<:Y[#Y\VW[aZc]^ba|mhutedb +  1+/)=*:0<(9.-' ;&8",!4%3$@7?62#>5  ' +@ !!' +r r++29/3301E".54>32!3266734.#"2U?"";P.)H7 $,'#:7? ## =Z9:\@!9U8 + +!/8#*& &M6FV^=@"W\\[%$GG7O?)!- +77X[?r[rr+2++39/933993301W".54667326654&&#".546732"&&546632'26654&&#"7'66&2N6)3 $0&4*& >7*'4 +G9-<$6SB1O--O12M--M3####+H* : -*  +  "!0 + #-7,P*I--I,,I--I*R$""$5N +T&:{  +`V+4T @ r +r++23301s53#533TrlhYYY7@ rr +r+2++2301s3>32#4&&#"7q(1)D*q%@"'VF'0)Y@ +rrr++233+01S3'>32'&&'&&#"#Yu )1'?0  ,!sт0$_ "5$9O@ r r+2+]301E".7773267#!!+(;' u   3"M,f +:`GN AGRYEE /201S"&54632*(++(&((BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB                         %****333333333333333333333330B&&&&FFFFFFFFFFFFFFF%%(9099999=9   %%%%%%"%%02--------###########)$$$$$$$$$      $$$$$$$$ + + + + +''''' $$$$$$$$$$$$$$$$$$$$$$$$$0'''''''!#!!!'''''''''''''''''''''''*5&777TTTTTKTTTTTTTTTT###444????9??C777777577//YYYYYY YY-----------)9599999911111111111111111     (((((EE72%G*,(63A+.%%g~kkisqzkmg~kkisqzkmg~kkisqzkmg~kkisqzkm< + +gggggggg;3./gf$1uwii@ +@ +i+?B;Cz}x`$-'44D%" 7q2&(((F>++&!'..QH5* +.K  +7" +" +" +" + ))/44444^^^?^^^^^^^^^^?^4^^^4^)))   F'1m(())"=-,5l\vSXkTlThx\skmri\vh|UTlZ_KKcOR_AiTpkkkk[[S[KKKK[B*s/82$  +   bc%&d'(e !"#$%&'()*+,-.)*/0123+4567,89:;<=>?@-A.BC/DEFGHIJK0L1MNOPQRSf2TUVWXYZg[\]^_`abcdefghijklmn345opqrstu6vwxyz{|}~78h9:;<=DikljnmEFoGHprsqIJKLtvwuMNOPQxRy{|z  +   }STUV !"#$%&'W()*+,-.X~/0123456789:;<=>?@YZABCD[\EFGHIJK]LMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~" ? ^`>@B + !aA  +    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqr# st_uvwxyz{|}~CAbreveuni1EAEuni1EB6uni1EB0uni1EB2uni1EB4uni1EA4uni1EACuni1EA6uni1EA8uni1EAAuni0200uni1EA0uni1EA2uni0202AmacronAogonek +AringacuteAEacuteuni1E08 Ccircumflex +CdotaccentDcaronDcroatuni1E0Cuni1E0EEbreveEcaronuni1E1Cuni1EBEuni1EC6uni1EC0uni1EC2uni1EC4uni0204 +Edotaccentuni1EB8uni1EBAuni0206Emacronuni1E16uni1E14Eogonekuni1EBCuni01B8Gcaron Gcircumflexuni0122 +Gdotaccentuni1E20Hbaruni1E2A Hcircumflexuni1E24Ibreveuni0208uni1E2Euni1ECAuni1EC8uni020AImacronIogonekItilde Jcircumflexuni0136uni0198uni01C7LacuteLcaronuni013BLdotuni1E36uni01C8uni1E3Auni1E42NacuteNcaronuni0145uni1E44uni1E46Enguni1E48Obreveuni1ED0uni1ED8uni1ED2uni1ED4uni1ED6uni020Cuni022Auni0230uni1ECCuni1ECEOhornuni1EDAuni1EE2uni1EDCuni1EDEuni1EE0 Ohungarumlautuni020EOmacronuni1E52uni1E50uni01EA Oslashacuteuni1E4Cuni1E4Euni022CRacuteRcaronuni0156uni0210uni1E5Auni0212uni1E5ESacuteuni1E64uni1E66 Scircumflexuni0218uni1E60uni1E62uni1E68uni1E9Euni018FTbarTcaronuni0162uni021Auni1E6Cuni1E6EUbreveuni0214uni1EE4uni1EE6Uhornuni1EE8uni1EF0uni1EEAuni1EECuni1EEE Uhungarumlautuni0216Umacronuni1E7AUogonekUringUtildeuni1E78Wacute Wcircumflex WdieresisWgrave Ycircumflexuni1E8Euni1EF4Ygraveuni1EF6uni0232uni1EF8Zacute +Zdotaccentuni1E92U.iabreveuni1EAFuni1EB7uni1EB1uni1EB3uni1EB5uni1EA5uni1EADuni1EA7uni1EA9uni1EABuni0201uni1EA1uni1EA3uni0203amacronaogonek +aringacuteaeacuteuni0298uni1E09 ccircumflex +cdotaccentdcaronuni1E0Duni1E0Febreveecaronuni1E1Duni1EBFuni1EC7uni1EC1uni1EC3uni1EC5uni0205 +edotaccentuni1EB9uni1EBBuni0207emacronuni1E17uni1E15eogonekuni029Auni1EBDuni0259uni01B9gcaron gcircumflexuni0123 +gdotaccentuni1E21hbaruni1E2B hcircumflexuni1E25ibreveuni0209uni1E2F i.loclTRKuni1ECBuni1EC9uni020Bimacroniogonekitildeuni0237 jcircumflexuni0137 kgreenlandiclacutelcaronuni013Cldotuni1E37uni01C9uni1E3Buni1E43nacutencaronuni0146uni1E45uni1E47enguni1E49obreveuni1ED1uni1ED9uni1ED3uni1ED5uni1ED7uni020Duni022Buni0231uni1ECDuni1ECFohornuni1EDBuni1EE3uni1EDDuni1EDFuni1EE1 ohungarumlautuni020Fomacronuni1E53uni1E51uni01EB oslashacuteuni1E4Duni1E4Funi022Dracutercaronuni0157uni0211uni1E5Buni027Buni0213uni1E5Funi024Dsacuteuni1E65uni1E67 scircumflexuni0219uni1E61uni1E63uni1E69tbartcaronuni0163uni021Buni1E97uni1E6Duni1E6Fubreveuni0215uni1EE5uni1EE7uhornuni1EE9uni1EF1uni1EEBuni1EEDuni1EEF uhungarumlautuni0217umacronuni1E7Buogonekuringutildeuni1E79wacute wcircumflex wdieresiswgrave ycircumflexuni1E8Funi1EF5ygraveuni1EF7uni0233uni1EF9zacute +zdotaccentuni1E93u.iuni207Funi2124 zero.zero zero.ss02uni2080uni2081uni2082uni2083uni2084uni2085uni2086uni2087uni2088uni2089 zero.dnomone.dnomtwo.dnom +three.dnom four.dnom five.dnomsix.dnom +seven.dnom +eight.dnom nine.dnom zero.numrone.numrtwo.numr +three.numr four.numr five.numrsix.numr +seven.numr +eight.numr nine.numruni2070uni00B9uni00B2uni00B3uni2074uni2075uni2076uni2077uni2078uni2079 uni2080.ss02zero.dnom.ss02zero.numr.ss02 uni2070.ss02 uni2080.zerozero.dnom.zerozero.numr.zero uni2070.zerouni2E12periodcentered.loclCAT asterisk.ss01uni00AD +figuredashuni2015uni2010 quotedbl.ss03quotesingle.ss03hyphen_greater.dligexclam_equal_equal.dliguni2007uni200Auni2008uni00A0uni2009uni200BCRuni20B5 colonmonetarydongEurouni20B2uni20ADlirauni20BAuni20BCuni20A6pesetauni20B1uni20BDuni20B9uni20A9 asteriskmathuni2219uni2215elementuni207Bemptysetuni2126uni2206uni00B5 +circleplusasciitilde.ss01asciicircum.ss01arrowupuni2197 +arrowrightuni2198 arrowdownuni2199 arrowleftuni2196 arrowboth arrowupdnuni21E7uni21E8uni21E9uni21E6uni2B06uni2B95uni2B07uni2B05 dneighthblockdnquarterblockdnthreeeighthsblock dnhalfblockdnfiveeighthsblockdnthreequartersblockdnseveneighthsblock fullblock uphalfblock upeighthblocklefteighthblockleftquarterblockleftthreeeighthsblock lefthalfblockleftfiveeighthsblockleftthreequartersblockleftseveneighthsblockrighthalfblockrighteighthblockdnleftquadrantdnrightquadrantupleftquadrantupleftdnleftdnrightquadrantupleftdnrightquadrantupleftuprightdnleftquadrantupleftuprightdnrightquadrantuprightquadrantuprightdnleftquadrantuprightdnleftdnrightquadrant +lightshade mediumshade darkshadeuni25CFcircleuni25C6uni25C7 dbldnhorzbxd dbldnleftbxd dbldnrightbxd +dblhorzbxd dbluphorzbxd dblupleftbxd dbluprightbxd +dblvertbxddblverthorzbxddblvertleftbxddblvertrightbxddndblhorzsngbxddndblleftsngbxddndblrightsngbxddnheavyhorzlightbxddnheavyleftlightbxddnheavyleftuplightbxddnheavyrightlightbxddnheavyrightuplightbxddnheavyuphorzlightbxddnlighthorzheavybxddnlightleftheavybxddnlightleftupheavybxddnlightrightheavybxddnlightrightupheavybxddnlightuphorzheavybxddnsnghorzdblbxddnsngleftdblbxddnsngrightdblbxdheavydbldashhorzbxdheavydbldashvertbxd +heavydnbxdheavydnhorzbxdheavydnleftbxdheavydnrightbxd heavyhorzbxd heavyleftbxdheavyleftlightrightbxdheavyquaddashhorzbxdheavyquaddashvertbxd heavyrightbxdheavytrpldashhorzbxdheavytrpldashvertbxd +heavyupbxdheavyuphorzbxdheavyupleftbxdheavyuplightdnbxdheavyuprightbxd heavyvertbxdheavyverthorzbxdheavyvertleftbxdheavyvertrightbxdleftdnheavyrightuplightbxdleftheavyrightdnlightbxdleftheavyrightuplightbxdleftheavyrightvertlightbxdleftlightrightdnheavybxdleftlightrightupheavybxdleftlightrightvertheavybxdleftupheavyrightdnlightbxdlightarcdnleftbxdlightarcdnrightbxdlightarcupleftbxdlightarcuprightbxdlightdbldashhorzbxdlightdbldashvertbxdlightdiagcrossbxdlightdiagupleftdnrightbxdlightdiaguprightdnleftbxd +lightdnbxdlightdnhorzbxdlightdnleftbxdlightdnrightbxd lighthorzbxd lightleftbxdlightleftheavyrightbxdlightquaddashhorzbxdlightquaddashvertbxd lightrightbxdlighttrpldashhorzbxdlighttrpldashvertbxd +lightupbxdlightupheavydnbxdlightuphorzbxdlightupleftbxdlightuprightbxd lightvertbxdlightverthorzbxdlightvertleftbxdlightvertrightbxdrightdnheavyleftuplightbxdrightheavyleftdnlightbxdrightheavyleftuplightbxdrightheavyleftvertlightbxdrightlightleftdnheavybxdrightlightleftupheavybxdrightlightleftvertheavybxdrightupheavyleftdnlightbxdupdblhorzsngbxdupdblleftsngbxdupdblrightsngbxdupheavydnhorzlightbxdupheavyhorzlightbxdupheavyleftdnlightbxdupheavyleftlightbxdupheavyrightdnlightbxdupheavyrightlightbxduplightdnhorzheavybxduplighthorzheavybxduplightleftdnheavybxduplightleftheavybxduplightrightdnheavybxduplightrightheavybxdupsnghorzdblbxdupsngleftdblbxdupsngrightdblbxdvertdblhorzsngbxdvertdblleftsngbxdvertdblrightsngbxdvertheavyhorzlightbxdvertheavyleftlightbxdvertheavyrightlightbxdvertlighthorzheavybxdvertlightleftheavybxdvertlightrightheavybxdvertsnghorzdblbxdvertsngleftdblbxdvertsngrightdblbxduni2639 smileface invsmilefacespadeclubheartdiamonduni2713uni2714uni2715uni2717uni2718minuteseconduni2113uni2116 estimateduni2423uni238Bhouseuni21EAuni2327uni232Buni2326uni2325uni2318uni23CEuniFFFDequal_equal_equal.dligequal_greater.dliggreater_equal.dligless_hyphen.dligless_equal.dliguni0375uni02BCuni02BBuni02BAuni02C9uni02CBuni02B9uni02BFuni02BEuni02CAuni02CCuni02C8uni0308uni0307 gravecomb acutecombuni030Buni0302uni030Cuni0306uni030A tildecombuni0304 hookabovecombuni030Funi0311uni0312uni031B dotbelowcombuni0324uni0326uni0327uni0328uni032Euni0331uni0335uni0336 uni0308.case uni0307.casegravecomb.caseacutecomb.case uni030B.case uni0302.case uni030C.case uni0306.case uni030A.casetildecomb.case uni031B.case dieresis.casedotaccent.case +grave.case +acute.casehungarumlaut.case +caron.case +breve.case ring.case +tilde.case tildecomb.i uni03060301 uni03060300 uni03060309 uni03060303 uni03020301 uni03020300 uni03020309 uni03020303uni03020301.caseuni03020300.caseuni03020309.caseuni03020303.caseNULLj    6r  R 8   6  H   z  Z 4 &    +  2 + ( + , + * +` . +2 & +  0   (   +2   ( Z  , .  *  . & 0 (X (0  "   $  &j L 0 & * ( ,x $T  .& !& " # + $ %  & ' ( ) + *.n +$J ,(" -& .* /" 0, 1$` 2&: 3 4  5 6" 7 8$ 9d :04 ;& <* =( >, ?$l @.> A& B0 C& D* E(p F,D G$  H. I& J K L M N Oh P \ QD R4 S T U V + W X  Y Z [ \ +UltraExpandedExtraExpandedExpandedSemiExpandedNormalSemiCondensedCondensedExtraCondensedUltraCondensedUltraExpanded BlackUltraExpanded ExtraBoldUltraExpanded BoldUltraExpanded SemiBoldUltraExpanded MediumUltraExpanded RegularUltraExpanded LightUltraExpanded ExtraLightExtraExpanded BlackExtraExpanded ExtraBoldExtraExpanded BoldExtraExpanded SemiBoldExtraExpanded MediumExtraExpanded RegularExtraExpanded LightExtraExpanded ExtraLightExpanded BlackExpanded ExtraBoldExpanded BoldExpanded SemiBoldExpanded MediumExpanded RegularExpanded LightExpanded ExtraLightSemiExpanded BlackSemiExpanded ExtraBoldSemiExpanded BoldSemiExpanded SemiBoldSemiExpanded MediumSemiExpanded RegularSemiExpanded LightSemiExpanded ExtraLightBlackExtraBoldSemiBoldMediumRegularLightExtraLightSemiCondensed BlackSemiCondensed ExtraBoldSemiCondensed BoldSemiCondensed SemiBoldSemiCondensed MediumSemiCondensed RegularSemiCondensed LightSemiCondensed ExtraLightCondensed BlackCondensed ExtraBoldCondensed BoldCondensed SemiBoldCondensed MediumCondensed RegularCondensed LightCondensed ExtraLightExtraCondensed BlackExtraCondensed ExtraBoldExtraCondensed BoldExtraCondensed SemiBoldExtraCondensed MediumExtraCondensed RegularExtraCondensed LightExtraCondensed ExtraLightUltraCondensed BlackUltraCondensed ExtraBoldUltraCondensed BoldUltraCondensed SemiBoldUltraCondensed MediumUltraCondensed RegularUltraCondensed LightUltraCondensed ExtraLightWidthWeighthttp://scripts.sil.org/OFLThis Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFLhttp://www.levien.com | http://www.cyreal.org | http://appsforartists.comhttp://www.levien.com | http://www.cyreal.org | http://fonts.google.comRaph Levien, Cyreal, Brenton SimpsonRaph Levien, Cyreal, GoogleInconsolata-BoldVersion 3.001Inconsolata Bold3.001;CYRE;Inconsolata-BoldBoldInconsolataCopyright 2006 The Inconsolata Project Authors (https://github.com/cyrealtype/Inconsolata)B'_< QڪCBpXKX^2 CYRE[B`o  +endstream +endobj +23 0 obj +<< +/Length 406 +/Length1 406 +>> +stream +/CIDInit /ProcSet findresource begin +12 dict begin +begincmap +/CIDSystemInfo << + /Registry (Adobe) + /Ordering (UCS) + /Supplement 0 +>> def +/CMapName /Adobe-Identity-UCS def +/CMapType 2 def +1 begincodespacerange +<0000> +endcodespacerange +6 beginbfchar +<0112><0065> +<012d><0067> +<0139><0069> +<015a><006e> +<0189><0072> +<019f><0074> +endbfchar +endcmap +CMapName currentdict /CMap defineresource pop +end +end +endstream +endobj +24 0 obj +<< +/Type /FontDescriptor +/FontName /Inconsolata +/FontFile2 22 0 R +/FontBBox [-80 -400 1455 1000] +/Flags 33 +/StemV 0 +/ItalicAngle 0 +/Ascent 859 +/Descent -190 +/CapHeight 623 +>> +endobj +25 0 obj +<< +/Type /Font +/BaseFont /Inconsolata +/FontDescriptor 24 0 R +/W [313 [500] 346 [500] 415 [500] 274 [500] 301 [500] 393 [500]] +/CIDToGIDMap /Identity +/DW 1000 +/Subtype /CIDFontType2 +/CIDSystemInfo +<< +/Supplement 0 +/Registry (Adobe) +/Ordering (Identity-H) +>> +>> +endobj +26 0 obj +<< +/Type /Font +/Subtype /Type0 +/ToUnicode 23 0 R +/BaseFont /Inconsolata +/Encoding /Identity-H +/DescendantFonts [25 0 R] +>> +endobj +27 0 obj +<< /ca 0. >> endobj @@ -16249,21 +20701,23 @@ endobj /Font << /F15 11 0 R /F16 16 0 R +/F17 21 0 R +/F18 26 0 R >> /ExtGState << -/GS1 17 0 R +/GS1 27 0 R >> /XObject << >> >> endobj -18 0 obj +28 0 obj << -/Producer (jsPDF 2.5.2) -/CreationDate (D:20250313011157+02'00') +/Producer (jsPDF 3.0.1) +/CreationDate (D:20250818210655+03'00') >> endobj -19 0 obj +29 0 obj << /Type /Catalog /Pages 1 0 R @@ -16272,34 +20726,44 @@ endobj >> endobj xref -0 20 +0 30 0000000000 65535 f -0000383860 00000 n -0000439078 00000 n +0000613206 00000 n +0000725615 00000 n 0000000015 00000 n 0000000327 00000 n -0000191754 00000 n -0000192066 00000 n -0000383923 00000 n -0000410547 00000 n -0000411317 00000 n -0000411509 00000 n -0000411985 00000 n -0000412123 00000 n -0000437688 00000 n -0000438329 00000 n -0000438523 00000 n -0000438910 00000 n -0000439049 00000 n -0000439225 00000 n -0000439311 00000 n +0000306406 00000 n +0000306718 00000 n +0000613269 00000 n +0000639801 00000 n +0000640558 00000 n +0000640750 00000 n +0000641217 00000 n +0000641355 00000 n +0000666920 00000 n +0000667561 00000 n +0000667755 00000 n +0000668142 00000 n +0000668281 00000 n +0000696342 00000 n +0000696918 00000 n +0000697109 00000 n +0000697465 00000 n +0000697604 00000 n +0000724509 00000 n +0000724980 00000 n +0000725171 00000 n +0000725447 00000 n +0000725586 00000 n +0000725786 00000 n +0000725872 00000 n trailer << -/Size 20 -/Root 19 0 R -/Info 18 0 R -/ID [ <693E0E0BD40C9B6F4285870E88F306B3> <693E0E0BD40C9B6F4285870E88F306B3> ] +/Size 30 +/Root 29 0 R +/Info 28 0 R +/ID [ ] >> startxref -439415 +725976 %%EOF \ No newline at end of file diff --git a/dock/Sheep-Service.png b/dock/Sheep-Service.png index 50284b9..31e2aa3 100644 Binary files a/dock/Sheep-Service.png and b/dock/Sheep-Service.png differ diff --git a/docker-compose.yml b/docker-compose.yml index fa32423..74e8b25 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -5,7 +5,7 @@ services: build: ./api restart: always ports: - - "${api:-4000}:${api:-4000}" + - "4000:4000" volumes: - "${DB_PATH:-./data}:/app/data" - "${CARDS_PATH:-./data}:/app/data/cards" @@ -13,7 +13,12 @@ services: - DATABASE_PATH=/app/data/ - CARDS_PATH=/app/data/cards/ - PUPPETEER_EXECUTABLE_PATH=/usr/bin/chromium + - VAPID_PUBLIC_KEY=${VAPID_PUBLIC_KEY} + - VAPID_PRIVATE_KEY=${VAPID_PRIVATE_KEY} + - DOMAIN=${DOMAIN} shm_size: '1gb' + networks: + - network ws: container_name: sheep-service-ws @@ -21,11 +26,13 @@ services: build: ./ws restart: always ports: - - "${ws:-4001}:${ws:-4001}" + - "4001:4001" volumes: - "${DB_PATH:-./data}:/app/data" environment: - DATABASE_PATH=/app/data/ + networks: + - network web: container_name: sheep-service-web @@ -33,11 +40,38 @@ services: build: ./web restart: always ports: - - "${web:-4002}:${web:-4002}" + - "4002:4002" volumes: - "${CARDS_PATH:-./data}:/app/data/cards" + - "${MAP_PATH:-./data}:/app/data/map" environment: - CARDS_PATH=/app/data/cards/ + - MAP_PATH=/app/data/map/ + networks: + - network + + nginx: + profiles: ["with-nginx"] + image: nginx:latest + container_name: sheep-service-nginx + restart: always + ports: + - "80:80" + - "443:443" + volumes: + - ./nginx/default.conf.template:/etc/nginx/templates/default.conf.template:ro + - ./nginx/certs:/etc/letsencrypt/live + - ./nginx/html:/usr/share/nginx/html + - ./nginx/log:/var/log/nginx + environment: + - DOMAIN=${DOMAIN} + command: /bin/sh -c "envsubst '\$DOMAIN' < /etc/nginx/templates/default.conf.template > /etc/nginx/conf.d/default.conf && nginx -g 'daemon off;'" + networks: + - network volumes: data: + +networks: + network: + external: false \ No newline at end of file diff --git a/nginx/default.conf.template b/nginx/default.conf.template new file mode 100644 index 0000000..0fc3bb4 --- /dev/null +++ b/nginx/default.conf.template @@ -0,0 +1,68 @@ +server { + listen 80; + listen [::]:80; + + server_name ${DOMAIN} www.${DOMAIN}; + + error_log /var/log/nginx/sheep-service.error.log error; + access_log /var/log/nginx/sheep-service.access.log; + + root /usr/share/nginx/html/sheep-service.com; + index index.html; + error_page 404 /404.html; + + location ~ /\.git { + deny all; + } + + location ~ /\.env { + deny all; + } + + location /api/ { + proxy_pass http://api:4000; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + + if ($request_method = 'OPTIONS') { + add_header 'Access-Control-Allow-Origin' '*'; + add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS'; + add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization'; + add_header 'Access-Control-Max-Age' 1728000; + add_header 'Content-Type' 'text/plain; charset=utf-8'; + add_header 'Content-Length' 0; + return 204; + } + if ($request_method ~* 'GET|POST|PUT|DELETE') { + add_header 'Access-Control-Allow-Origin' '*' always; + add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS' always; + add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization' always; + add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always; + } + } + + location /ws { + proxy_pass http://ws:4001; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + } + + location / { + proxy_pass http://web:4002; + proxy_http_version 1.1; + proxy_set_header Upgrade $http_upgrade; + proxy_set_header Connection "Upgrade"; + proxy_set_header Host $http_host; + proxy_set_header X-Real-IP $remote_addr; + + if ($request_method = 'GET') { + add_header 'Access-Control-Allow-Origin' '*' always; + add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, OPTIONS' always; + add_header 'Access-Control-Allow-Headers' 'DNT,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range' always; + add_header 'Access-Control-Expose-Headers' 'Content-Length,Content-Range' always; + } + } +} \ No newline at end of file diff --git a/scripts/entrances.xlsx b/scripts/entrances.xlsx new file mode 100644 index 0000000..4313e7c Binary files /dev/null and b/scripts/entrances.xlsx differ diff --git a/scripts/generatorExcel.js b/scripts/generatorExcel.js new file mode 100644 index 0000000..292a7f3 --- /dev/null +++ b/scripts/generatorExcel.js @@ -0,0 +1,123 @@ +const sqlite3 = require('sqlite3').verbose(); +const ExcelJS = require('exceljs'); + +async function exportData() { + const db = new sqlite3.Database('database.sqlite'); + const workbook = new ExcelJS.Workbook(); + + // выгрузка подъездов + await new Promise((resolve, reject) => { + db.all(` + SELECT + e.id as entrance_id, + e.entrance_number as entrance_title, + h.number as house_number, + h.title as house_title + FROM entrance e + JOIN house h ON e.house_id = h.id + `, async (err, entrances) => { + if (err) return reject(err); + + for (const entrance of entrances) { + let title = String(entrance.house_title) + .replace('вул. ', '') + .replace('Проспект ', ''); + + const sheet = workbook.addWorksheet( + `${title} ${entrance.house_number} ( П. ${entrance.entrance_title + 1} )` + ); + + sheet.columns = [ + { header: 'ID', key: 'id', width: 10 }, + { header: 'Вістник / Група', key: 'name', width: 30 }, + { header: 'Початок', key: 'start', width: 20 }, + { header: 'Кінець', key: 'end', width: 20 } + ]; + sheet.getColumn('start').numFmt = 'dd.mm.yyyy'; + sheet.getColumn('end').numFmt = 'dd.mm.yyyy'; + + await new Promise((resolve2, reject2) => { + db.all(` + SELECT id, name, date_start, date_end, group_id + FROM entrance_history + WHERE entrance_id = ? + `, [entrance.entrance_id], (err, rows) => { + if (err) return reject2(err); + + rows.forEach(row => { + const startDate = row.date_start ? new Date(row.date_start) : null; + const endDate = row.date_end ? new Date(row.date_end) : null; + + let name = row.name; + if (row.name === 'Групова') { + name = `${row.name} (${row.group_id})`; + } + + sheet.addRow({ id: row.id, name, start: startDate, end: endDate }); + }); + resolve2(); + }); + }); + } + resolve(); + }); + }); + + // выгрузка участков + await new Promise((resolve, reject) => { + db.all(` + SELECT + homestead.id as homestead_id, + homestead.number as homestead_number, + homestead.title as homestead_title + FROM homestead + `, async (err, homesteads) => { + if (err) return reject(err); + + for (const homestead of homesteads) { + const sheet = workbook.addWorksheet(`${homestead.homestead_title} ${homestead.homestead_number}`); + + sheet.columns = [ + { header: 'ID', key: 'id', width: 10 }, + { header: 'Вістник / Група', key: 'name', width: 30 }, + { header: 'Початок', key: 'start', width: 20 }, + { header: 'Кінець', key: 'end', width: 20 } + ]; + sheet.getColumn('start').numFmt = 'dd.mm.yyyy'; + sheet.getColumn('end').numFmt = 'dd.mm.yyyy'; + + await new Promise((resolve2, reject2) => { + db.all(` + SELECT id, name, date_start, date_end, group_id + FROM homestead_history + WHERE homestead_id = ? + `, [homestead.homestead_id], (err, rows) => { + if (err) return reject2(err); + + rows.forEach(row => { + const startDate = row.date_start ? new Date(row.date_start) : null; + const endDate = row.date_end ? new Date(row.date_end) : null; + + let name = row.name; + if (row.name === 'Групова') { + name = `${row.name} (${row.group_id})`; + } + + sheet.addRow({ id: row.id, name, start: startDate, end: endDate }); + }); + resolve2(); + }); + }); + } + resolve(); + }); + }); + + // сохраняем один раз + await workbook.xlsx.writeFile('Території.xlsx'); + console.log('Файл создан: entrances.xlsx'); + + db.close(); +} + +exportData(); \ No newline at end of file diff --git a/scripts/migrator.js b/scripts/migrator.js index 9076bc9..06dc977 100644 --- a/scripts/migrator.js +++ b/scripts/migrator.js @@ -1,7 +1,7 @@ const sqlite3 = require('sqlite3').verbose(); const db = new sqlite3.Database('database.sqlite'); -const db_old = new sqlite3.Database('old_db.sqlite'); +const db_old = new sqlite3.Database('db_old.sqlite'); // Створення підїздів @@ -57,7 +57,7 @@ const db_old = new sqlite3.Database('old_db.sqlite'); // Міграція історії з старої БД в нову -// const sql_1 = `SELECT * FROM history ORDER BY date_start`; +// const sql_1 = `SELECT * FROM history WHERE date_start >= 1737667735000 ORDER BY date_start`; // db_old.all(sql_1, [], (err, historys) => { // if (err) { // throw err; @@ -98,7 +98,7 @@ const db_old = new sqlite3.Database('old_db.sqlite'); // console.log(entrance.id, house.title, house.number, entrance.title); -// db.run(`INSERT INTO entrance_history(entrance_id, name, date_start, date_end, group_number, working) VALUES(?, ?, ?, ?, ?, ?)`, +// db.run(`INSERT INTO entrance_history(entrance_id, name, date_start, date_end, group_id, working) VALUES(?, ?, ?, ?, ?, ?)`, // [ // entrance.id, // history.name, @@ -127,7 +127,7 @@ const db_old = new sqlite3.Database('old_db.sqlite'); // } else { // // console.log(house.id, house.title, house.number); -// db.run(`INSERT INTO homestead_history(homestead_id, name, date_start, date_end, group_number, working) VALUES(?, ?, ?, ?, ?, ?)`, +// db.run(`INSERT INTO homestead_history(homestead_id, name, date_start, date_end, group_id, working) VALUES(?, ?, ?, ?, ?, ?)`, // [ // homestead.id, // history.name, @@ -159,3 +159,50 @@ const db_old = new sqlite3.Database('old_db.sqlite'); // } // }); + +// Додавання ID вісника в entrance_history +// Оновлення кожного запису в entrance_history +db.serialize(() => { + db.all(`SELECT id, name FROM entrance_history`, (err, rows) => { + if (err) return console.error('Read error:', err.message); + + const updateStmt = db.prepare(`UPDATE entrance_history SET sheep_id = ? WHERE id = ?`); + let pending = rows.length; + + if (pending === 0) { + updateStmt.finalize(); + db.close(); + console.log('Нема записів для оновлення.'); + return; + } + + rows.forEach((row) => { + db.get(`SELECT id FROM sheeps WHERE name = ?`, [row.name], (err, sheep) => { + if (err) { + console.error('Search error:', err.message); + if (--pending === 0) { + updateStmt.finalize(); + db.close(); + console.log('Оновлення завершено (з помилками).'); + } + return; + } + + const sheepId = sheep ? sheep.id : 0; + + updateStmt.run(sheepId, row.id, (err) => { + if (err) { + console.error(`Помилка оновлення запису ID ${row.id}:`, err.message); + } + + if (--pending === 0) { + updateStmt.finalize(); + db.close(); + console.log('Оновлення завершено'); + } + }); + }); + }); + }); +}); + diff --git a/scripts/package-lock.json b/scripts/package-lock.json new file mode 100644 index 0000000..3811614 --- /dev/null +++ b/scripts/package-lock.json @@ -0,0 +1,1969 @@ +{ + "name": "import", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "import", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "exceljs": "^4.4.0", + "sqlite3": "^5.1.7" + } + }, + "node_modules/@fast-csv/format": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/@fast-csv/format/-/format-4.3.5.tgz", + "integrity": "sha512-8iRn6QF3I8Ak78lNAa+Gdl5MJJBM5vRHivFtMRUWINdevNo00K7OXxS2PshawLKTejVwieIlPmK5YlLu6w4u8A==", + "dependencies": { + "@types/node": "^14.0.1", + "lodash.escaperegexp": "^4.1.2", + "lodash.isboolean": "^3.0.3", + "lodash.isequal": "^4.5.0", + "lodash.isfunction": "^3.0.9", + "lodash.isnil": "^4.0.0" + } + }, + "node_modules/@fast-csv/parse": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/@fast-csv/parse/-/parse-4.3.6.tgz", + "integrity": "sha512-uRsLYksqpbDmWaSmzvJcuApSEe38+6NQZBUsuAyMZKqHxH0g1wcJgsKUvN3WC8tewaqFjBMMGrkHmC+T7k8LvA==", + "dependencies": { + "@types/node": "^14.0.1", + "lodash.escaperegexp": "^4.1.2", + "lodash.groupby": "^4.6.0", + "lodash.isfunction": "^3.0.9", + "lodash.isnil": "^4.0.0", + "lodash.isundefined": "^3.0.1", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "optional": true + }, + "node_modules/@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "optional": true, + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "optional": true, + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "optional": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@types/node": { + "version": "14.18.63", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.18.63.tgz", + "integrity": "sha512-fAtCfv4jJg+ExtXhvCkCqUKZ+4ok/JQk01qDKhL5BDDoS3AxKXhV5/MAVUZyQnSEd2GT92fkgZl0pz0Q0AzcIQ==" + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "optional": true + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "optional": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/agentkeepalive": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.6.0.tgz", + "integrity": "sha512-kja8j7PjmncONqaTsB8fQ+wE2mSU2DJ9D4XKoJ5PFWIdRMa6SLSN1ff4mOr4jCbfRSsxR4keIiySJU0N9T5hIQ==", + "optional": true, + "dependencies": { + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "optional": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/aproba": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.1.0.tgz", + "integrity": "sha512-tLIEcj5GuR2RSTnxNKdkK0dJ/GrC7P38sUkiDmDuHfsHmbagTFAxDVIBltoklXEVIQ/f14IL8IMJ5pn9Hez1Ew==", + "optional": true + }, + "node_modules/archiver": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/archiver/-/archiver-5.3.2.tgz", + "integrity": "sha512-+25nxyyznAXF7Nef3y0EbBeqmGZgeN/BxHX29Rs39djAfaFalmQ89SE6CWyDCHzGL0yt/ycBtNOmGTW0FyGWNw==", + "dependencies": { + "archiver-utils": "^2.1.0", + "async": "^3.2.4", + "buffer-crc32": "^0.2.1", + "readable-stream": "^3.6.0", + "readdir-glob": "^1.1.2", + "tar-stream": "^2.2.0", + "zip-stream": "^4.1.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/archiver-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-2.1.0.tgz", + "integrity": "sha512-bEL/yUb/fNNiNTuUz979Z0Yg5L+LzLxGJz8x79lYmR54fmTIb6ob/hNQgkQnIUDWIFjZVQwl9Xs356I6BAMHfw==", + "dependencies": { + "glob": "^7.1.4", + "graceful-fs": "^4.2.0", + "lazystream": "^1.0.0", + "lodash.defaults": "^4.2.0", + "lodash.difference": "^4.5.0", + "lodash.flatten": "^4.4.0", + "lodash.isplainobject": "^4.0.6", + "lodash.union": "^4.6.0", + "normalize-path": "^3.0.0", + "readable-stream": "^2.0.0" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/archiver-utils/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/archiver-utils/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/archiver-utils/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "deprecated": "This package is no longer supported.", + "optional": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/async": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.6.tgz", + "integrity": "sha512-htCUDlxyyCLMgaM3xXg0C0LW2xqfuQ6p05pCEIsXuyQ+a1koYKTuBMzRNwmybfLgvJDMd0r1LTn4+E0Ti6C2AA==" + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/binary": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", + "integrity": "sha512-D4H1y5KYwpJgK8wk1Cue5LLPgmwHKYSChkbspQg5JtVuR5ulGckxfR62H3AE9UDkdMC8yyXlqYihuz3Aqg2XZg==", + "dependencies": { + "buffers": "~0.1.1", + "chainsaw": "~0.1.0" + }, + "engines": { + "node": "*" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/bluebird": { + "version": "3.4.7", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.4.7.tgz", + "integrity": "sha512-iD3898SR7sWVRHbiQv+sHUtHnMvC1o3nW5rAcqnq3uOn07DSAppZYUkIGslDz6gXC7HfunPe7YVBgoEJASPcHA==" + }, + "node_modules/brace-expansion": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.12.tgz", + "integrity": "sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "engines": { + "node": "*" + } + }, + "node_modules/buffer-indexof-polyfill": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/buffer-indexof-polyfill/-/buffer-indexof-polyfill-1.0.2.tgz", + "integrity": "sha512-I7wzHwA3t1/lwXQh+A5PbNvJxgfo5r3xulgpYDB5zckTu/Z9oUK9biouBKQUjEqzaz3HnAT6TYoovmE+GqSf7A==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/buffers": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", + "integrity": "sha512-9q/rDEGSb/Qsvv2qvzIzdluL5k7AaJOTrw23z9reQthrbF7is4CtlT0DXyO1oei2DCp4uojjzQ7igaSHp1kAEQ==", + "engines": { + "node": ">=0.2.0" + } + }, + "node_modules/cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "optional": true, + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/chainsaw": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", + "integrity": "sha512-75kWfWt6MEKNC8xYXIdRpDehRYY/tNSgwKaJq+dbbDcxORuVrrQ+SEHoWsniVn9XPYfP4gmdWIeDk/4YNp1rNQ==", + "dependencies": { + "traverse": ">=0.3.0 <0.4" + }, + "engines": { + "node": "*" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "optional": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/compress-commons": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-4.1.2.tgz", + "integrity": "sha512-D3uMHtGc/fcO1Gt1/L7i1e33VOvD4A9hfQLP+6ewd+BvG/gQ84Yh4oftEhAdjSMgBgwGL+jsppT7JYNpo6MHHg==", + "dependencies": { + "buffer-crc32": "^0.2.13", + "crc32-stream": "^4.0.2", + "normalize-path": "^3.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "optional": true + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "bin": { + "crc32": "bin/crc32.njs" + }, + "engines": { + "node": ">=0.8" + } + }, + "node_modules/crc32-stream": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-4.0.3.tgz", + "integrity": "sha512-NT7w2JVU7DFroFdYkeq8cywxrgjPHWkdX1wjpRQXPX5Asews3tA+Ght6lddQO5Mkumffp3X7GEqku3epj2toIw==", + "dependencies": { + "crc-32": "^1.2.0", + "readable-stream": "^3.4.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/dayjs": { + "version": "1.11.18", + "resolved": "https://registry.npmjs.org/dayjs/-/dayjs-1.11.18.tgz", + "integrity": "sha512-zFBQ7WFRvVRhKcWoUh+ZA1g2HVgUbsZm9sbddh8EC5iv93sui8DVVz1Npvz+r6meo9VKfa8NyLWBsQK1VvIKPA==" + }, + "node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "optional": true, + "dependencies": { + "ms": "^2.1.3" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", + "dependencies": { + "mimic-response": "^3.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "optional": true + }, + "node_modules/detect-libc": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.4.tgz", + "integrity": "sha512-3UDv+G9CsCKO1WKMGw9fwq/SWJYbI0c5Y7LU1AXYoDdbhE2AHQ6N6Nb34sG8Fj7T5APy8qXDCKuuIHd1BR0tVA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/duplexer2": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", + "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", + "dependencies": { + "readable-stream": "^2.0.2" + } + }, + "node_modules/duplexer2/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/duplexer2/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/duplexer2/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "optional": true + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.5.tgz", + "integrity": "sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "optional": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "optional": true + }, + "node_modules/exceljs": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/exceljs/-/exceljs-4.4.0.tgz", + "integrity": "sha512-XctvKaEMaj1Ii9oDOqbW/6e1gXknSY4g/aLCDicOXqBE4M0nRWkUu0PTp++UPNzoFY12BNHMfs/VadKIS6llvg==", + "dependencies": { + "archiver": "^5.0.0", + "dayjs": "^1.8.34", + "fast-csv": "^4.3.1", + "jszip": "^3.10.1", + "readable-stream": "^3.6.0", + "saxes": "^5.0.1", + "tmp": "^0.2.0", + "unzipper": "^0.10.11", + "uuid": "^8.3.0" + }, + "engines": { + "node": ">=8.3.0" + } + }, + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/fast-csv": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/fast-csv/-/fast-csv-4.3.6.tgz", + "integrity": "sha512-2RNSpuwwsJGP0frGsOmTb9oUF+VkFSM4SyLTDgwf2ciHWTarN0lQTC+F2f/t5J9QjW+c65VFIAAu85GsvMIusw==", + "dependencies": { + "@fast-csv/format": "4.3.5", + "@fast-csv/parse": "4.3.6" + }, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fstream": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", + "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", + "deprecated": "This package is no longer supported.", + "dependencies": { + "graceful-fs": "^4.1.2", + "inherits": "~2.0.0", + "mkdirp": ">=0.5 0", + "rimraf": "2" + }, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/fstream/node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/fstream/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "deprecated": "This package is no longer supported.", + "optional": true, + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "optional": true + }, + "node_modules/http-cache-semantics": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.2.0.tgz", + "integrity": "sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==", + "optional": true + }, + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "optional": true, + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "optional": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "optional": true, + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/immediate": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", + "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "optional": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "optional": true + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/ip-address": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.0.1.tgz", + "integrity": "sha512-NWv9YLW4PoW2B7xtzaS3NCot75m6nK7Icdv0o3lfMceJVRfSoQwqD4wEH5rLwoKJwUiZ/rfpiVBhnaF0FK4HoA==", + "optional": true, + "engines": { + "node": ">= 12" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "optional": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "optional": true + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "optional": true + }, + "node_modules/jszip": { + "version": "3.10.1", + "resolved": "https://registry.npmjs.org/jszip/-/jszip-3.10.1.tgz", + "integrity": "sha512-xXDvecyTpGLrqFrvkrUSoxxfJI5AH7U8zxxtVclpsUtMCq4JQ290LY8AW5c7Ggnr/Y/oK+bQMbqK2qmtk3pN4g==", + "dependencies": { + "lie": "~3.3.0", + "pako": "~1.0.2", + "readable-stream": "~2.3.6", + "setimmediate": "^1.0.5" + } + }, + "node_modules/jszip/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/jszip/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/jszip/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dependencies": { + "readable-stream": "^2.0.5" + }, + "engines": { + "node": ">= 0.6.3" + } + }, + "node_modules/lazystream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/lazystream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/lazystream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/lie": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/lie/-/lie-3.3.0.tgz", + "integrity": "sha512-UaiMJzeWRlEujzAuw5LokY1L5ecNQYZKfmyZ9L7wDHb/p5etKaxXhohBcrw0EYby+G/NA52vRSN4N39dxHAIwQ==", + "dependencies": { + "immediate": "~3.0.5" + } + }, + "node_modules/listenercount": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/listenercount/-/listenercount-1.0.1.tgz", + "integrity": "sha512-3mk/Zag0+IJxeDrxSgaDPy4zZ3w05PRZeJNnlWhzFz5OkX49J4krc+A8X2d2M69vGMBEX0uyl8M+W+8gH+kBqQ==" + }, + "node_modules/lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==" + }, + "node_modules/lodash.difference": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.difference/-/lodash.difference-4.5.0.tgz", + "integrity": "sha512-dS2j+W26TQ7taQBGN8Lbbq04ssV3emRw4NY58WErlTO29pIqS0HmoT5aJ9+TUQ1N3G+JOZSji4eugsWwGp9yPA==" + }, + "node_modules/lodash.escaperegexp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", + "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==" + }, + "node_modules/lodash.flatten": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-4.4.0.tgz", + "integrity": "sha512-C5N2Z3DgnnKr0LOpv/hKCgKdb7ZZwafIrsesve6lmzvZIRZRGaZ/l6Q8+2W7NaT+ZwO3fFlSCzCzrDCFdJfZ4g==" + }, + "node_modules/lodash.groupby": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.groupby/-/lodash.groupby-4.6.0.tgz", + "integrity": "sha512-5dcWxm23+VAoz+awKmBaiBvzox8+RqMgFhi7UvX9DHZr2HdxHXM/Wrf8cfKpsW37RNrvtPn6hSwNqurSILbmJw==" + }, + "node_modules/lodash.isboolean": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/lodash.isboolean/-/lodash.isboolean-3.0.3.tgz", + "integrity": "sha512-Bz5mupy2SVbPHURB98VAcw+aHh4vRV5IPNhILUCsOzRmsTmSQ17jIuqopAentWoehktxGd9e/hbIXq980/1QJg==" + }, + "node_modules/lodash.isequal": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.isequal/-/lodash.isequal-4.5.0.tgz", + "integrity": "sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==", + "deprecated": "This package is deprecated. Use require('node:util').isDeepStrictEqual instead." + }, + "node_modules/lodash.isfunction": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz", + "integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==" + }, + "node_modules/lodash.isnil": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isnil/-/lodash.isnil-4.0.0.tgz", + "integrity": "sha512-up2Mzq3545mwVnMhTDMdfoG1OurpA/s5t88JmQX809eH3C8491iu2sfKhTfhQtKY78oPNhiaHJUpT/dUDAAtng==" + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==" + }, + "node_modules/lodash.isundefined": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/lodash.isundefined/-/lodash.isundefined-3.0.1.tgz", + "integrity": "sha512-MXB1is3s899/cD8jheYYE2V9qTHwKvt+npCwpD+1Sxm3Q3cECXCiYHjeHWXNwr6Q0SOBPrYUDxendrO6goVTEA==" + }, + "node_modules/lodash.union": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/lodash.union/-/lodash.union-4.6.0.tgz", + "integrity": "sha512-c4pB2CdGrGdjMKYLA+XiRDO7Y0PRQbm/Gzg8qMj+QH+pFVAoTp5sBpO0odL3FjoPCGjK96p6qsP+yQoiLoOBcw==" + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "optional": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-fetch-happen": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", + "optional": true, + "dependencies": { + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.0.0", + "ssri": "^8.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "optional": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-fetch": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", + "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", + "optional": true, + "dependencies": { + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "optionalDependencies": { + "encoding": "^0.1.12" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "optional": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "optional": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "optional": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + }, + "node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "optional": true + }, + "node_modules/napi-build-utils": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-2.0.0.tgz", + "integrity": "sha512-GEbrYkbfF7MoNaoh2iGG84Mnf/WZfB0GdGEsM8wz7Expx/LlWf5U8t9nvJKXSp3qr5IsEbK04cBGhol/KwOsWA==" + }, + "node_modules/negotiator": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", + "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", + "optional": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/node-abi": { + "version": "3.77.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.77.0.tgz", + "integrity": "sha512-DSmt0OEcLoK4i3NuscSbGjOf3bqiDEutejqENSplMSFA/gmB8mkED9G4pKWnPl7MDU4rSHebKPHeitpDfyH0cQ==", + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.1.1.tgz", + "integrity": "sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==" + }, + "node_modules/node-gyp": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", + "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", + "optional": true, + "dependencies": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^9.1.0", + "nopt": "^5.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">= 10.12.0" + } + }, + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "optional": true, + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "deprecated": "This package is no longer supported.", + "optional": true, + "dependencies": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "optional": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/prebuild-install": { + "version": "7.1.3", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.3.tgz", + "integrity": "sha512-8Mf2cbV7x1cXPUILADGI3wuhfqWvtiLA1iclTDbFRZkgRQS0NqsPZphna9V+HyTEadheuPmjaJMsbzKQFOzLug==", + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^2.0.0", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "optional": true + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "optional": true, + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/pump": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.3.tgz", + "integrity": "sha512-todwxLMY7/heScKmntwQG8CXVkWUOdYxIvY2s0VWAAMh/nd8SoYiRaKjlr7+iCs984f2P8zvrfWcDDYVb73NfA==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdir-glob": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", + "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", + "dependencies": { + "minimatch": "^5.1.0" + } + }, + "node_modules/readdir-glob/node_modules/brace-expansion": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.2.tgz", + "integrity": "sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/readdir-glob/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "optional": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", + "optional": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "optional": true + }, + "node_modules/saxes": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/saxes/-/saxes-5.0.1.tgz", + "integrity": "sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==", + "dependencies": { + "xmlchars": "^2.2.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/semver": { + "version": "7.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.7.2.tgz", + "integrity": "sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==", + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "optional": true + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "optional": true + }, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "optional": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.8.7", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.8.7.tgz", + "integrity": "sha512-HLpt+uLy/pxB+bum/9DzAgiKS8CX1EvbWxI4zlmgGCExImLdiad2iCwXT5Z4c9c3Eq8rP2318mPW2c+QbtjK8A==", + "optional": true, + "dependencies": { + "ip-address": "^10.0.1", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz", + "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==", + "optional": true, + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/sqlite3": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/sqlite3/-/sqlite3-5.1.7.tgz", + "integrity": "sha512-GGIyOiFaG+TUra3JIfkI/zGP8yZYLPQ0pl1bH+ODjiX57sPhrLU5sQJn1y9bDKZUFYkX1crlrPfSYt0BKKdkog==", + "hasInstallScript": true, + "dependencies": { + "bindings": "^1.5.0", + "node-addon-api": "^7.0.0", + "prebuild-install": "^7.1.1", + "tar": "^6.1.11" + }, + "optionalDependencies": { + "node-gyp": "8.x" + }, + "peerDependencies": { + "node-gyp": "8.x" + }, + "peerDependenciesMeta": { + "node-gyp": { + "optional": true + } + } + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "optional": true, + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "optional": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "optional": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/tar": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar-fs": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.3.tgz", + "integrity": "sha512-090nwYJDmlhwFwEW3QQl+vaNnxsO2yVsd45eTKRBzSzu+hlb1w2K9inVq5b0ngXuLVqQ4ApvsUHHnu/zQNkWAg==", + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-fs/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/tmp": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.2.5.tgz", + "integrity": "sha512-voyz6MApa1rQGUxT3E+BK7/ROe8itEx7vD8/HEvt4xwXucvQ5G5oeEiHkmHZJuBO21RpOf+YYm9MOivj709jow==", + "engines": { + "node": ">=14.14" + } + }, + "node_modules/traverse": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", + "integrity": "sha512-iawgk0hLP3SxGKDfnDJf8wTz4p2qImnyihM5Hh/sGvQ3K37dPi/w8sRhdNIxYA1TwFwc5mDhIJq+O0RsvXBKdQ==", + "engines": { + "node": "*" + } + }, + "node_modules/tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", + "dependencies": { + "safe-buffer": "^5.0.1" + }, + "engines": { + "node": "*" + } + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "optional": true, + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "optional": true, + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/unzipper": { + "version": "0.10.14", + "resolved": "https://registry.npmjs.org/unzipper/-/unzipper-0.10.14.tgz", + "integrity": "sha512-ti4wZj+0bQTiX2KmKWuwj7lhV+2n//uXEotUmGuQqrbVZSEGFMbI68+c6JCQ8aAmUWYvtHEz2A8K6wXvueR/6g==", + "dependencies": { + "big-integer": "^1.6.17", + "binary": "~0.3.0", + "bluebird": "~3.4.1", + "buffer-indexof-polyfill": "~1.0.0", + "duplexer2": "~0.1.4", + "fstream": "^1.0.12", + "graceful-fs": "^4.2.2", + "listenercount": "~1.0.1", + "readable-stream": "~2.3.6", + "setimmediate": "~1.0.4" + } + }, + "node_modules/unzipper/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/unzipper/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/unzipper/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/uuid": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", + "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "optional": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "optional": true, + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/xmlchars": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", + "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==" + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/zip-stream": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-4.1.1.tgz", + "integrity": "sha512-9qv4rlDiopXg4E69k+vMHjNN63YFMe9sZMrdlvKnCjlCRWeCBswPPMPUfx+ipsAWq1LXHe70RcbaHdJJpS6hyQ==", + "dependencies": { + "archiver-utils": "^3.0.4", + "compress-commons": "^4.1.2", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/zip-stream/node_modules/archiver-utils": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-3.0.4.tgz", + "integrity": "sha512-KVgf4XQVrTjhyWmx6cte4RxonPLR9onExufI1jhvw/MQ4BB6IsZD5gT8Lq+u/+pRkWna/6JoHpiQioaqFP5Rzw==", + "dependencies": { + "glob": "^7.2.3", + "graceful-fs": "^4.2.0", + "lazystream": "^1.0.0", + "lodash.defaults": "^4.2.0", + "lodash.difference": "^4.5.0", + "lodash.flatten": "^4.4.0", + "lodash.isplainobject": "^4.0.6", + "lodash.union": "^4.6.0", + "normalize-path": "^3.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">= 10" + } + } + } +} diff --git a/scripts/package.json b/scripts/package.json index bba76b2..7e891ba 100644 --- a/scripts/package.json +++ b/scripts/package.json @@ -1,14 +1,15 @@ { "name": "import", "version": "1.0.0", - "main": "import.js", + "main": "generatorExcel.js", "scripts": { - "start": "node import.js" + "start": "node generatorExcel.js" }, "author": "", "license": "ISC", "description": "", "dependencies": { + "exceljs": "^4.4.0", "sqlite3": "^5.1.7" } } diff --git a/scripts/table.xlsx b/scripts/table.xlsx new file mode 100644 index 0000000..38e6e7d Binary files /dev/null and b/scripts/table.xlsx differ diff --git a/scripts/Території.xlsx b/scripts/Території.xlsx new file mode 100644 index 0000000..1fcd5fb Binary files /dev/null and b/scripts/Території.xlsx differ diff --git a/web/config.js b/web/config.js index 626f88e..75fd64e 100644 --- a/web/config.js +++ b/web/config.js @@ -1,4 +1,4 @@ const CONFIG = { - "api": "https://sheep-service.com/api/", - "wss": "wss://sheep-service.com/ws" + "api": "https://test.sheep-service.com/api/", + "wss": "wss://test.sheep-service.com/ws" } \ No newline at end of file diff --git a/web/css/main.css b/web/css/main.css index e63e37b..138218b 100644 --- a/web/css/main.css +++ b/web/css/main.css @@ -1,5 +1,13 @@ @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap'); +:root { + --FontSize1: 12px; + --FontSize2: 13px; + --FontSize3: 14px; + --FontSize4: 15px; + --FontSize5: 16px; +} + @media (prefers-color-scheme: light) { :root { /* PrimaryColor */ @@ -9,7 +17,7 @@ /* BGColor */ --ColorThemes0: #fbfbfb; --ColorThemes1: #f3f3f3; - --ColorThemes2: #e5e5df; + --ColorThemes2: #dbdbd1; /* TextColor */ --ColorThemes3: #313131; @@ -32,7 +40,7 @@ /* BGColor */ --ColorThemes0: #1c1c19; --ColorThemes1: #21221d; - --ColorThemes2: #3a3a39; + --ColorThemes2: #525151; /* TextColor */ --ColorThemes3: #f3f3f3; @@ -52,7 +60,7 @@ padding: 0; font-family: 'Roboto', sans-serif; margin: 0; - font-weight: 300; + font-weight: 400; outline: none; } @@ -84,14 +92,17 @@ ::-webkit-scrollbar-track { background: 0; border: 0; - margin: 0; border-radius: var(--border-radius); + background-color: transparent; + border: 0; + margin-bottom: 10px; + margin-top: 10px; } } a { text-decoration: none; - font-size: 15px; + font-size: var(--FontSize3); font-weight: 700; cursor: pointer; } @@ -132,13 +143,20 @@ select { background-repeat: no-repeat; background-position: right 0.7rem top 50%; background-size: 0.65rem auto; + font-size: var(--FontSize2); } -.hold-button{ +.hold-button { user-select: none; } +.custom-checkbox { + position: absolute; + z-index: -1; + opacity: 0; +} + .custom-checkbox { position: absolute; z-index: -1; @@ -159,7 +177,7 @@ select { flex-shrink: 0; flex-grow: 0; border: 1px solid #adb5bd; - border-radius: 10px; + border-radius: calc(var(--border-radius) - 5px); margin-right: 0.5em; background-repeat: no-repeat; background-position: center center; @@ -187,8 +205,143 @@ select { .custom-checkbox:disabled+label::before { background-color: #e9ecef; + opacity: 0.6; + cursor: no-drop; } + + +body.modal-open { + overflow: hidden; +} + +/* Банер з прохання встановлення PWA */ +#blur-backdrop { + position: fixed; + inset: 0; + background: rgba(0, 0, 0, 0.3); + backdrop-filter: blur(8px); + z-index: 9998; +} + +.pwa-overlay { + position: fixed; + inset: 0; + display: flex; + justify-content: center; + align-items: center; + z-index: 9999; +} + +.pwa-overlay>.popup { + background: var(--ColorThemes0); + padding: 24px 32px; + border-radius: var(--border-radius); + max-width: 90%; + width: 320px; + text-align: center; + font-family: sans-serif; + box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3); + animation: fadeIn 0.3s ease-out; + display: flex; + flex-direction: column; + align-items: center; +} + +.pwa-overlay>.popup h2 { + margin-bottom: 12px; + color: var(--ColorThemes3); + opacity: 0.8; +} + +.pwa-overlay>.popup p { + margin-bottom: 10px; + color: var(--ColorThemes3); + opacity: 0.6; +} + +.pwa-overlay>.popup ol { + text-align: justify; + font-size: var(--FontSize4); + margin-bottom: 10px; + max-width: 290px; +} + +.pwa-overlay>.popup li { + list-style-type: none; + font-size: var(--FontSize3); +} + +.pwa-overlay>.popup li span { + vertical-align: middle; + display: inline-block; + width: 22px; + height: 22px; +} + +.pwa-overlay>.popup li span svg { + fill: var(--PrimaryColor); +} + +.pwa-overlay>.popup>div { + margin-top: 10px; + display: flex; + justify-content: center; + gap: 10px; +} + +.pwa-overlay>.popup>div>button { + padding: 8px 16px; + border: none; + border-radius: calc(var(--border-radius) - 8px); + cursor: pointer; + font-size: var(--FontSize3); +} + +#pwa-install-button { + background-color: var(--PrimaryColor); + color: var(--PrimaryColorText); +} + +#pwa-close-button, +#pwa-ios-close-button { + background-color: #ccc; + color: #333; +} + +.pwa-hidden { + display: none; +} + +@media (max-width: 450px) { + .pwa-overlay>.popup { + padding: 17px 10px; + } + + .pwa-overlay>.popup h2 { + font-size: 22px; + } + + .pwa-overlay>.popup p { + font-size: var(--FontSize4); + } +} + +@keyframes fadeIn { + from { + opacity: 0; + transform: scale(0.95); + } + + to { + opacity: 1; + transform: scale(1); + } +} + + + + #swipe_updater { position: absolute; top: 0px; @@ -263,13 +416,13 @@ select { #update_banner .headline { font-weight: 800; - font-size: 15px; + font-size: var(--FontSize4); color: var(--PrimaryColorText); font-family: 'Roboto', sans-serif; } #update_banner .subhead { - font-size: 13px; + font-size: var(--FontSize2); text-align: center; color: var(--PrimaryColorText); font-family: 'Roboto', sans-serif; @@ -391,7 +544,7 @@ select { #navigation>nav>li>div>b { margin-left: 15px; - font-size: 14px; + font-size: var(--FontSize3); font-weight: 300; color: var(--ColorThemes3); white-space: nowrap; @@ -472,7 +625,7 @@ select { height: 60px; min-height: 60px; padding: 0; - z-index: 99999990; + z-index: 9991; bottom: -1px; border: 0; margin: 0; @@ -548,4 +701,45 @@ select { padding-bottom: 80px; height: auto; } +} + +.leaflet-popup-content { + margin: 8px 10px !important; + padding: 0 !important; +} + +.leaflet-popup-content > .map_dell { + border-radius: 10px; + padding: 5px 10px; + width: 100%; + margin-top: 10px; + background: #C14D4D; + color: #fff; +} + +.leaflet-popup>a { + display: none !important; +} + +.leaflet-popup-content-wrapper, +.leaflet-popup-tip { + background: var(--ColorThemes0) !important; + color: var(--ColorThemes3) !important; +} + +.leaflet_drop {} + +.leaflet_drop>div { + background: #C14D4D; + width: 16px; + height: 16px; + border-radius: 50%; + border: 2px solid #fff; + margin: -3px 0 0 -3px; +} +.leaflet-pm-tooltip { + display: none !important; +} +.tooltip-hidden { + display: none; } \ No newline at end of file diff --git a/web/img/badge.png b/web/img/badge.png index 74f17fa..4b4432b 100644 Binary files a/web/img/badge.png and b/web/img/badge.png differ diff --git a/web/img/icon.png b/web/img/icon.png new file mode 100644 index 0000000..f70598e Binary files /dev/null and b/web/img/icon.png differ diff --git a/web/index.html b/web/index.html index 36f7e3d..b34c071 100644 --- a/web/index.html +++ b/web/index.html @@ -9,16 +9,16 @@ /> - - + + Sheep Service @@ -64,6 +64,11 @@ + + + + + @@ -80,6 +85,9 @@ + + + @@ -95,7 +103,56 @@ - + +
+
+ +
+
+ +
+ +
@@ -159,7 +216,7 @@
- - - -