@fto-consult/expo-ui 7.4.42 → 7.4.44
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/electron/index.js +0 -7
- package/electron/pdf-viewer/viewer.css +14 -3718
- package/electron/pdf-viewer/wiewer.html +30 -0
- package/electron/preload.js +3 -4
- package/package.json +2 -1
- package/src/pdf/print.electron.js +11 -3
- package/src/pdf/print.web.js +3 -2
- package/electron/pdf-viewer/locale/en-CA/viewer.ftl +0 -311
- package/electron/pdf-viewer/locale/en-GB/viewer.ftl +0 -351
- package/electron/pdf-viewer/locale/en-US/viewer.ftl +0 -377
- package/electron/pdf-viewer/locale/fr/viewer.ftl +0 -347
- package/electron/pdf-viewer/locale/locale.json +0 -6
- package/electron/pdf-viewer/pdf.min.mjs +0 -21
- package/electron/pdf-viewer/viewer.html +0 -491
- package/electron/pdf-viewer/web/images/altText_add.svg +0 -3
- package/electron/pdf-viewer/web/images/altText_done.svg +0 -3
- package/electron/pdf-viewer/web/images/annotation-check.svg +0 -11
- package/electron/pdf-viewer/web/images/annotation-comment.svg +0 -16
- package/electron/pdf-viewer/web/images/annotation-help.svg +0 -26
- package/electron/pdf-viewer/web/images/annotation-insert.svg +0 -10
- package/electron/pdf-viewer/web/images/annotation-key.svg +0 -11
- package/electron/pdf-viewer/web/images/annotation-newparagraph.svg +0 -11
- package/electron/pdf-viewer/web/images/annotation-noicon.svg +0 -7
- package/electron/pdf-viewer/web/images/annotation-note.svg +0 -42
- package/electron/pdf-viewer/web/images/annotation-paperclip.svg +0 -6
- package/electron/pdf-viewer/web/images/annotation-paragraph.svg +0 -16
- package/electron/pdf-viewer/web/images/annotation-pushpin.svg +0 -7
- package/electron/pdf-viewer/web/images/editor-toolbar-delete.svg +0 -5
- package/electron/pdf-viewer/web/images/loading-icon.gif +0 -0
- package/electron/pdf-viewer/web/pdf_viewer.css +0 -2120
- package/electron/pdf-viewer/web/pdf_viewer.mjs +0 -8598
@@ -1,491 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<!--
|
3
|
-
Copyright 2012 Mozilla Foundation
|
4
|
-
|
5
|
-
Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
-
you may not use this file except in compliance with the License.
|
7
|
-
You may obtain a copy of the License at
|
8
|
-
|
9
|
-
http://www.apache.org/licenses/LICENSE-2.0
|
10
|
-
|
11
|
-
Unless required by applicable law or agreed to in writing, software
|
12
|
-
distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
-
See the License for the specific language governing permissions and
|
15
|
-
limitations under the License.
|
16
|
-
|
17
|
-
Adobe CMap resources are covered by their own copyright but the same license:
|
18
|
-
|
19
|
-
Copyright 1990-2015 Adobe Systems Incorporated.
|
20
|
-
|
21
|
-
See https://github.com/adobe-type-tools/cmap-resources
|
22
|
-
-->
|
23
|
-
<html dir="ltr" mozdisallowselectionprint>
|
24
|
-
<head>
|
25
|
-
<meta charset="utf-8">
|
26
|
-
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
27
|
-
<meta name="google" content="notranslate">
|
28
|
-
<title>PDF Viewer</title>
|
29
|
-
|
30
|
-
<!-- This snippet is used in production (included from viewer.html) -->
|
31
|
-
<link rel="resource" type="application/l10n" href="./locale/locale.json">
|
32
|
-
|
33
|
-
<script src="viewer.mjs" type="module"></script>
|
34
|
-
<link rel="stylesheet" href="./viewer.css">
|
35
|
-
|
36
|
-
|
37
|
-
<link rel="stylesheet" href="./web/pdf_viewer.css">
|
38
|
-
|
39
|
-
<script src="./pdf.min.mjs" type="module"></script>
|
40
|
-
<script src="./web/pdf_viewer.mjs" type="module"></script>
|
41
|
-
|
42
|
-
</head>
|
43
|
-
|
44
|
-
<body tabindex="1">
|
45
|
-
<div id="outerContainer">
|
46
|
-
|
47
|
-
<div id="sidebarContainer">
|
48
|
-
<div id="toolbarSidebar">
|
49
|
-
<div id="toolbarSidebarLeft">
|
50
|
-
<div id="sidebarViewButtons" class="splitToolbarButton toggled" role="radiogroup">
|
51
|
-
<button id="viewThumbnail" class="toolbarButton toggled" title="Show Thumbnails" tabindex="2" data-l10n-id="pdfjs-thumbs-button" role="radio" aria-checked="true" aria-controls="thumbnailView">
|
52
|
-
<span data-l10n-id="pdfjs-thumbs-button-label">Thumbnails</span>
|
53
|
-
</button>
|
54
|
-
<button id="viewOutline" class="toolbarButton" title="Show Document Outline (double-click to expand/collapse all items)" tabindex="3" data-l10n-id="pdfjs-document-outline-button" role="radio" aria-checked="false" aria-controls="outlineView">
|
55
|
-
<span data-l10n-id="pdfjs-document-outline-button-label">Document Outline</span>
|
56
|
-
</button>
|
57
|
-
<button id="viewAttachments" class="toolbarButton" title="Show Attachments" tabindex="4" data-l10n-id="pdfjs-attachments-button" role="radio" aria-checked="false" aria-controls="attachmentsView">
|
58
|
-
<span data-l10n-id="pdfjs-attachments-button-label">Attachments</span>
|
59
|
-
</button>
|
60
|
-
<button id="viewLayers" class="toolbarButton" title="Show Layers (double-click to reset all layers to the default state)" tabindex="5" data-l10n-id="pdfjs-layers-button" role="radio" aria-checked="false" aria-controls="layersView">
|
61
|
-
<span data-l10n-id="pdfjs-layers-button-label">Layers</span>
|
62
|
-
</button>
|
63
|
-
</div>
|
64
|
-
</div>
|
65
|
-
|
66
|
-
<div id="toolbarSidebarRight">
|
67
|
-
<div id="outlineOptionsContainer" class="hidden">
|
68
|
-
<div class="verticalToolbarSeparator"></div>
|
69
|
-
|
70
|
-
<button id="currentOutlineItem" class="toolbarButton" disabled="disabled" title="Find Current Outline Item" tabindex="6" data-l10n-id="pdfjs-current-outline-item-button">
|
71
|
-
<span data-l10n-id="pdfjs-current-outline-item-button-label">Current Outline Item</span>
|
72
|
-
</button>
|
73
|
-
</div>
|
74
|
-
</div>
|
75
|
-
</div>
|
76
|
-
<div id="sidebarContent">
|
77
|
-
<div id="thumbnailView">
|
78
|
-
</div>
|
79
|
-
<div id="outlineView" class="hidden">
|
80
|
-
</div>
|
81
|
-
<div id="attachmentsView" class="hidden">
|
82
|
-
</div>
|
83
|
-
<div id="layersView" class="hidden">
|
84
|
-
</div>
|
85
|
-
</div>
|
86
|
-
<div id="sidebarResizer"></div>
|
87
|
-
</div> <!-- sidebarContainer -->
|
88
|
-
|
89
|
-
<div id="mainContainer">
|
90
|
-
<div class="findbar hidden doorHanger" id="findbar">
|
91
|
-
<div id="findbarInputContainer">
|
92
|
-
<span class="loadingInput end">
|
93
|
-
<input id="findInput" class="toolbarField" title="Find" placeholder="Find in document…" tabindex="91" data-l10n-id="pdfjs-find-input" aria-invalid="false">
|
94
|
-
</span>
|
95
|
-
<div class="splitToolbarButton">
|
96
|
-
<button id="findPrevious" class="toolbarButton" title="Find the previous occurrence of the phrase" tabindex="92" data-l10n-id="pdfjs-find-previous-button">
|
97
|
-
<span data-l10n-id="pdfjs-find-previous-button-label">Previous</span>
|
98
|
-
</button>
|
99
|
-
<div class="splitToolbarButtonSeparator"></div>
|
100
|
-
<button id="findNext" class="toolbarButton" title="Find the next occurrence of the phrase" tabindex="93" data-l10n-id="pdfjs-find-next-button">
|
101
|
-
<span data-l10n-id="pdfjs-find-next-button-label">Next</span>
|
102
|
-
</button>
|
103
|
-
</div>
|
104
|
-
</div>
|
105
|
-
|
106
|
-
<div id="findbarOptionsOneContainer">
|
107
|
-
<input type="checkbox" id="findHighlightAll" class="toolbarField" tabindex="94">
|
108
|
-
<label for="findHighlightAll" class="toolbarLabel" data-l10n-id="pdfjs-find-highlight-checkbox">Highlight All</label>
|
109
|
-
<input type="checkbox" id="findMatchCase" class="toolbarField" tabindex="95">
|
110
|
-
<label for="findMatchCase" class="toolbarLabel" data-l10n-id="pdfjs-find-match-case-checkbox-label">Match Case</label>
|
111
|
-
</div>
|
112
|
-
<div id="findbarOptionsTwoContainer">
|
113
|
-
<input type="checkbox" id="findMatchDiacritics" class="toolbarField" tabindex="96">
|
114
|
-
<label for="findMatchDiacritics" class="toolbarLabel" data-l10n-id="pdfjs-find-match-diacritics-checkbox-label">Match Diacritics</label>
|
115
|
-
<input type="checkbox" id="findEntireWord" class="toolbarField" tabindex="97">
|
116
|
-
<label for="findEntireWord" class="toolbarLabel" data-l10n-id="pdfjs-find-entire-word-checkbox-label">Whole Words</label>
|
117
|
-
</div>
|
118
|
-
|
119
|
-
<div id="findbarMessageContainer" aria-live="polite">
|
120
|
-
<span id="findResultsCount" class="toolbarLabel"></span>
|
121
|
-
<span id="findMsg" class="toolbarLabel"></span>
|
122
|
-
</div>
|
123
|
-
</div> <!-- findbar -->
|
124
|
-
|
125
|
-
<div class="editorParamsToolbar hidden doorHangerRight" id="editorFreeTextParamsToolbar">
|
126
|
-
<div class="editorParamsToolbarContainer">
|
127
|
-
<div class="editorParamsSetter">
|
128
|
-
<label for="editorFreeTextColor" class="editorParamsLabel" data-l10n-id="pdfjs-editor-free-text-color-input">Color</label>
|
129
|
-
<input type="color" id="editorFreeTextColor" class="editorParamsColor" tabindex="100">
|
130
|
-
</div>
|
131
|
-
<div class="editorParamsSetter">
|
132
|
-
<label for="editorFreeTextFontSize" class="editorParamsLabel" data-l10n-id="pdfjs-editor-free-text-size-input">Size</label>
|
133
|
-
<input type="range" id="editorFreeTextFontSize" class="editorParamsSlider" value="10" min="5" max="100" step="1" tabindex="101">
|
134
|
-
</div>
|
135
|
-
</div>
|
136
|
-
</div>
|
137
|
-
|
138
|
-
<div class="editorParamsToolbar hidden doorHangerRight" id="editorInkParamsToolbar">
|
139
|
-
<div class="editorParamsToolbarContainer">
|
140
|
-
<div class="editorParamsSetter">
|
141
|
-
<label for="editorInkColor" class="editorParamsLabel" data-l10n-id="pdfjs-editor-ink-color-input">Color</label>
|
142
|
-
<input type="color" id="editorInkColor" class="editorParamsColor" tabindex="102">
|
143
|
-
</div>
|
144
|
-
<div class="editorParamsSetter">
|
145
|
-
<label for="editorInkThickness" class="editorParamsLabel" data-l10n-id="pdfjs-editor-ink-thickness-input">Thickness</label>
|
146
|
-
<input type="range" id="editorInkThickness" class="editorParamsSlider" value="1" min="1" max="20" step="1" tabindex="103">
|
147
|
-
</div>
|
148
|
-
<div class="editorParamsSetter">
|
149
|
-
<label for="editorInkOpacity" class="editorParamsLabel" data-l10n-id="pdfjs-editor-ink-opacity-input">Opacity</label>
|
150
|
-
<input type="range" id="editorInkOpacity" class="editorParamsSlider" value="100" min="1" max="100" step="1" tabindex="104">
|
151
|
-
</div>
|
152
|
-
</div>
|
153
|
-
</div>
|
154
|
-
|
155
|
-
<div class="editorParamsToolbar hidden doorHangerRight" id="editorStampParamsToolbar">
|
156
|
-
<div class="editorParamsToolbarContainer">
|
157
|
-
<button id="editorStampAddImage" class="secondaryToolbarButton" title="Add image" tabindex="105" data-l10n-id="pdfjs-editor-stamp-add-image-button">
|
158
|
-
<span data-l10n-id="pdfjs-editor-stamp-add-image-button-label">Add image</span>
|
159
|
-
</button>
|
160
|
-
</div>
|
161
|
-
</div>
|
162
|
-
|
163
|
-
<div id="secondaryToolbar" class="secondaryToolbar hidden doorHangerRight">
|
164
|
-
<div id="secondaryToolbarButtonContainer">
|
165
|
-
<button id="secondaryOpenFile" class="secondaryToolbarButton" title="Open File" tabindex="51" data-l10n-id="pdfjs-open-file-button">
|
166
|
-
<span data-l10n-id="pdfjs-open-file-button-label">Open</span>
|
167
|
-
</button>
|
168
|
-
|
169
|
-
<button id="secondaryPrint" class="secondaryToolbarButton visibleMediumView" title="Print" tabindex="52" data-l10n-id="pdfjs-print-button">
|
170
|
-
<span data-l10n-id="pdfjs-print-button-label">Print</span>
|
171
|
-
</button>
|
172
|
-
|
173
|
-
<button id="secondaryDownload" class="secondaryToolbarButton visibleMediumView" title="Save" tabindex="53" data-l10n-id="pdfjs-save-button">
|
174
|
-
<span data-l10n-id="pdfjs-save-button-label">Save</span>
|
175
|
-
</button>
|
176
|
-
|
177
|
-
<div class="horizontalToolbarSeparator"></div>
|
178
|
-
|
179
|
-
<button id="presentationMode" class="secondaryToolbarButton" title="Switch to Presentation Mode" tabindex="54" data-l10n-id="pdfjs-presentation-mode-button">
|
180
|
-
<span data-l10n-id="pdfjs-presentation-mode-button-label">Presentation Mode</span>
|
181
|
-
</button>
|
182
|
-
|
183
|
-
<a href="#" id="viewBookmark" class="secondaryToolbarButton" title="Current Page (View URL from Current Page)" tabindex="55" data-l10n-id="pdfjs-bookmark-button">
|
184
|
-
<span data-l10n-id="pdfjs-bookmark-button-label">Current Page</span>
|
185
|
-
</a>
|
186
|
-
|
187
|
-
<div id="viewBookmarkSeparator" class="horizontalToolbarSeparator"></div>
|
188
|
-
|
189
|
-
<button id="firstPage" class="secondaryToolbarButton" title="Go to First Page" tabindex="56" data-l10n-id="pdfjs-first-page-button">
|
190
|
-
<span data-l10n-id="pdfjs-first-page-button-label">Go to First Page</span>
|
191
|
-
</button>
|
192
|
-
<button id="lastPage" class="secondaryToolbarButton" title="Go to Last Page" tabindex="57" data-l10n-id="pdfjs-last-page-button">
|
193
|
-
<span data-l10n-id="pdfjs-last-page-button-label">Go to Last Page</span>
|
194
|
-
</button>
|
195
|
-
|
196
|
-
<div class="horizontalToolbarSeparator"></div>
|
197
|
-
|
198
|
-
<button id="pageRotateCw" class="secondaryToolbarButton" title="Rotate Clockwise" tabindex="58" data-l10n-id="pdfjs-page-rotate-cw-button">
|
199
|
-
<span data-l10n-id="pdfjs-page-rotate-cw-button-label">Rotate Clockwise</span>
|
200
|
-
</button>
|
201
|
-
<button id="pageRotateCcw" class="secondaryToolbarButton" title="Rotate Counterclockwise" tabindex="59" data-l10n-id="pdfjs-page-rotate-ccw-button">
|
202
|
-
<span data-l10n-id="pdfjs-page-rotate-ccw-button-label">Rotate Counterclockwise</span>
|
203
|
-
</button>
|
204
|
-
|
205
|
-
<div class="horizontalToolbarSeparator"></div>
|
206
|
-
|
207
|
-
<div id="cursorToolButtons" role="radiogroup">
|
208
|
-
<button id="cursorSelectTool" class="secondaryToolbarButton toggled" title="Enable Text Selection Tool" tabindex="60" data-l10n-id="pdfjs-cursor-text-select-tool-button" role="radio" aria-checked="true">
|
209
|
-
<span data-l10n-id="pdfjs-cursor-text-select-tool-button-label">Text Selection Tool</span>
|
210
|
-
</button>
|
211
|
-
<button id="cursorHandTool" class="secondaryToolbarButton" title="Enable Hand Tool" tabindex="61" data-l10n-id="pdfjs-cursor-hand-tool-button" role="radio" aria-checked="false">
|
212
|
-
<span data-l10n-id="pdfjs-cursor-hand-tool-button-label">Hand Tool</span>
|
213
|
-
</button>
|
214
|
-
</div>
|
215
|
-
|
216
|
-
<div class="horizontalToolbarSeparator"></div>
|
217
|
-
|
218
|
-
<div id="scrollModeButtons" role="radiogroup">
|
219
|
-
<button id="scrollPage" class="secondaryToolbarButton" title="Use Page Scrolling" tabindex="62" data-l10n-id="pdfjs-scroll-page-button" role="radio" aria-checked="false">
|
220
|
-
<span data-l10n-id="pdfjs-scroll-page-button-label">Page Scrolling</span>
|
221
|
-
</button>
|
222
|
-
<button id="scrollVertical" class="secondaryToolbarButton toggled" title="Use Vertical Scrolling" tabindex="63" data-l10n-id="pdfjs-scroll-vertical-button" role="radio" aria-checked="true">
|
223
|
-
<span data-l10n-id="pdfjs-scroll-vertical-button-label" >Vertical Scrolling</span>
|
224
|
-
</button>
|
225
|
-
<button id="scrollHorizontal" class="secondaryToolbarButton" title="Use Horizontal Scrolling" tabindex="64" data-l10n-id="pdfjs-scroll-horizontal-button" role="radio" aria-checked="false">
|
226
|
-
<span data-l10n-id="pdfjs-scroll-horizontal-button-label">Horizontal Scrolling</span>
|
227
|
-
</button>
|
228
|
-
<button id="scrollWrapped" class="secondaryToolbarButton" title="Use Wrapped Scrolling" tabindex="65" data-l10n-id="pdfjs-scroll-wrapped-button" role="radio" aria-checked="false">
|
229
|
-
<span data-l10n-id="pdfjs-scroll-wrapped-button-label">Wrapped Scrolling</span>
|
230
|
-
</button>
|
231
|
-
</div>
|
232
|
-
|
233
|
-
<div class="horizontalToolbarSeparator"></div>
|
234
|
-
|
235
|
-
<div id="spreadModeButtons" role="radiogroup">
|
236
|
-
<button id="spreadNone" class="secondaryToolbarButton toggled" title="Do not join page spreads" tabindex="66" data-l10n-id="pdfjs-spread-none-button" role="radio" aria-checked="true">
|
237
|
-
<span data-l10n-id="pdfjs-spread-none-button-label">No Spreads</span>
|
238
|
-
</button>
|
239
|
-
<button id="spreadOdd" class="secondaryToolbarButton" title="Join page spreads starting with odd-numbered pages" tabindex="67" data-l10n-id="pdfjs-spread-odd-button" role="radio" aria-checked="false">
|
240
|
-
<span data-l10n-id="pdfjs-spread-odd-button-label">Odd Spreads</span>
|
241
|
-
</button>
|
242
|
-
<button id="spreadEven" class="secondaryToolbarButton" title="Join page spreads starting with even-numbered pages" tabindex="68" data-l10n-id="pdfjs-spread-even-button" role="radio" aria-checked="false">
|
243
|
-
<span data-l10n-id="pdfjs-spread-even-button-label">Even Spreads</span>
|
244
|
-
</button>
|
245
|
-
</div>
|
246
|
-
|
247
|
-
<div class="horizontalToolbarSeparator"></div>
|
248
|
-
|
249
|
-
<button id="documentProperties" class="secondaryToolbarButton" title="Document Properties…" tabindex="69" data-l10n-id="pdfjs-document-properties-button" aria-controls="documentPropertiesDialog">
|
250
|
-
<span data-l10n-id="pdfjs-document-properties-button-label">Document Properties…</span>
|
251
|
-
</button>
|
252
|
-
</div>
|
253
|
-
</div> <!-- secondaryToolbar -->
|
254
|
-
|
255
|
-
<div class="toolbar">
|
256
|
-
<div id="toolbarContainer">
|
257
|
-
<div id="toolbarViewer">
|
258
|
-
<div id="toolbarViewerLeft">
|
259
|
-
<button id="sidebarToggle" class="toolbarButton" title="Toggle Sidebar" tabindex="11" data-l10n-id="pdfjs-toggle-sidebar-button" aria-expanded="false" aria-controls="sidebarContainer">
|
260
|
-
<span data-l10n-id="pdfjs-toggle-sidebar-button-label">Toggle Sidebar</span>
|
261
|
-
</button>
|
262
|
-
<div class="toolbarButtonSpacer"></div>
|
263
|
-
<button id="viewFind" class="toolbarButton" title="Find in Document" tabindex="12" data-l10n-id="pdfjs-findbar-button" aria-expanded="false" aria-controls="findbar">
|
264
|
-
<span data-l10n-id="pdfjs-findbar-button-label">Find</span>
|
265
|
-
</button>
|
266
|
-
<div class="splitToolbarButton hiddenSmallView">
|
267
|
-
<button class="toolbarButton" title="Previous Page" id="previous" tabindex="13" data-l10n-id="pdfjs-previous-button">
|
268
|
-
<span data-l10n-id="pdfjs-previous-button-label">Previous</span>
|
269
|
-
</button>
|
270
|
-
<div class="splitToolbarButtonSeparator"></div>
|
271
|
-
<button class="toolbarButton" title="Next Page" id="next" tabindex="14" data-l10n-id="pdfjs-next-button">
|
272
|
-
<span data-l10n-id="pdfjs-next-button-label">Next</span>
|
273
|
-
</button>
|
274
|
-
</div>
|
275
|
-
<span class="loadingInput start">
|
276
|
-
<input type="number" id="pageNumber" class="toolbarField" title="Page" value="1" min="1" tabindex="15" data-l10n-id="pdfjs-page-input" autocomplete="off">
|
277
|
-
</span>
|
278
|
-
<span id="numPages" class="toolbarLabel"></span>
|
279
|
-
</div>
|
280
|
-
<div id="toolbarViewerRight">
|
281
|
-
<div id="editorModeButtons" class="splitToolbarButton toggled" role="radiogroup">
|
282
|
-
<button id="editorFreeText" class="toolbarButton" disabled="disabled" title="Text" role="radio" aria-checked="false" aria-controls="editorFreeTextParamsToolbar" tabindex="31" data-l10n-id="pdfjs-editor-free-text-button">
|
283
|
-
<span data-l10n-id="pdfjs-editor-free-text-button-label">Text</span>
|
284
|
-
</button>
|
285
|
-
<button id="editorInk" class="toolbarButton" disabled="disabled" title="Draw" role="radio" aria-checked="false" aria-controls="editorInkParamsToolbar" tabindex="32" data-l10n-id="pdfjs-editor-ink-button">
|
286
|
-
<span data-l10n-id="pdfjs-editor-ink-button-label">Draw</span>
|
287
|
-
</button>
|
288
|
-
<button id="editorStamp" class="toolbarButton" disabled="disabled" title="Add or edit images" role="radio" aria-checked="false" aria-controls="editorStampParamsToolbar" tabindex="33" data-l10n-id="pdfjs-editor-stamp-button">
|
289
|
-
<span data-l10n-id="pdfjs-editor-stamp-button-label">Add or edit images</span>
|
290
|
-
</button>
|
291
|
-
</div>
|
292
|
-
|
293
|
-
<div id="editorModeSeparator" class="verticalToolbarSeparator"></div>
|
294
|
-
|
295
|
-
<button id="print" class="toolbarButton hiddenMediumView" title="Print" tabindex="41" data-l10n-id="pdfjs-print-button">
|
296
|
-
<span data-l10n-id="pdfjs-print-button-label">Print</span>
|
297
|
-
</button>
|
298
|
-
|
299
|
-
<button id="download" class="toolbarButton hiddenMediumView" title="Save" tabindex="42" data-l10n-id="pdfjs-save-button">
|
300
|
-
<span data-l10n-id="pdfjs-save-button-label">Save</span>
|
301
|
-
</button>
|
302
|
-
|
303
|
-
<div class="verticalToolbarSeparator hiddenMediumView"></div>
|
304
|
-
|
305
|
-
<button id="secondaryToolbarToggle" class="toolbarButton" title="Tools" tabindex="43" data-l10n-id="pdfjs-tools-button" aria-expanded="false" aria-controls="secondaryToolbar">
|
306
|
-
<span data-l10n-id="pdfjs-tools-button-label">Tools</span>
|
307
|
-
</button>
|
308
|
-
</div>
|
309
|
-
<div id="toolbarViewerMiddle">
|
310
|
-
<div class="splitToolbarButton">
|
311
|
-
<button id="zoomOut" class="toolbarButton" title="Zoom Out" tabindex="21" data-l10n-id="pdfjs-zoom-out-button">
|
312
|
-
<span data-l10n-id="pdfjs-zoom-out-button-label">Zoom Out</span>
|
313
|
-
</button>
|
314
|
-
<div class="splitToolbarButtonSeparator"></div>
|
315
|
-
<button id="zoomIn" class="toolbarButton" title="Zoom In" tabindex="22" data-l10n-id="pdfjs-zoom-in-button">
|
316
|
-
<span data-l10n-id="pdfjs-zoom-in-button-label">Zoom In</span>
|
317
|
-
</button>
|
318
|
-
</div>
|
319
|
-
<span id="scaleSelectContainer" class="dropdownToolbarButton">
|
320
|
-
<select id="scaleSelect" title="Zoom" tabindex="23" data-l10n-id="pdfjs-zoom-select">
|
321
|
-
<option id="pageAutoOption" title="" value="auto" selected="selected" data-l10n-id="pdfjs-page-scale-auto">Automatic Zoom</option>
|
322
|
-
<option id="pageActualOption" title="" value="page-actual" data-l10n-id="pdfjs-page-scale-actual">Actual Size</option>
|
323
|
-
<option id="pageFitOption" title="" value="page-fit" data-l10n-id="pdfjs-page-scale-fit">Page Fit</option>
|
324
|
-
<option id="pageWidthOption" title="" value="page-width" data-l10n-id="pdfjs-page-scale-width">Page Width</option>
|
325
|
-
<option id="customScaleOption" title="" value="custom" disabled="disabled" hidden="true" data-l10n-id="pdfjs-page-scale-percent" data-l10n-args='{ "scale": 0 }'>0%</option>
|
326
|
-
<option title="" value="0.5" data-l10n-id="pdfjs-page-scale-percent" data-l10n-args='{ "scale": 50 }'>50%</option>
|
327
|
-
<option title="" value="0.75" data-l10n-id="pdfjs-page-scale-percent" data-l10n-args='{ "scale": 75 }'>75%</option>
|
328
|
-
<option title="" value="1" data-l10n-id="pdfjs-page-scale-percent" data-l10n-args='{ "scale": 100 }'>100%</option>
|
329
|
-
<option title="" value="1.25" data-l10n-id="pdfjs-page-scale-percent" data-l10n-args='{ "scale": 125 }'>125%</option>
|
330
|
-
<option title="" value="1.5" data-l10n-id="pdfjs-page-scale-percent" data-l10n-args='{ "scale": 150 }'>150%</option>
|
331
|
-
<option title="" value="2" data-l10n-id="pdfjs-page-scale-percent" data-l10n-args='{ "scale": 200 }'>200%</option>
|
332
|
-
<option title="" value="3" data-l10n-id="pdfjs-page-scale-percent" data-l10n-args='{ "scale": 300 }'>300%</option>
|
333
|
-
<option title="" value="4" data-l10n-id="pdfjs-page-scale-percent" data-l10n-args='{ "scale": 400 }'>400%</option>
|
334
|
-
</select>
|
335
|
-
</span>
|
336
|
-
</div>
|
337
|
-
</div>
|
338
|
-
<div id="loadingBar">
|
339
|
-
<div class="progress">
|
340
|
-
<div class="glimmer">
|
341
|
-
</div>
|
342
|
-
</div>
|
343
|
-
</div>
|
344
|
-
</div>
|
345
|
-
</div>
|
346
|
-
|
347
|
-
<div id="viewerContainer" tabindex="0">
|
348
|
-
<div id="viewer" class="pdfViewer"></div>
|
349
|
-
</div>
|
350
|
-
</div> <!-- mainContainer -->
|
351
|
-
|
352
|
-
<div id="dialogContainer">
|
353
|
-
<dialog id="passwordDialog">
|
354
|
-
<div class="row">
|
355
|
-
<label for="password" id="passwordText" data-l10n-id="pdfjs-password-label">Enter the password to open this PDF file:</label>
|
356
|
-
</div>
|
357
|
-
<div class="row">
|
358
|
-
<input type="password" id="password" class="toolbarField">
|
359
|
-
</div>
|
360
|
-
<div class="buttonRow">
|
361
|
-
<button id="passwordCancel" class="dialogButton"><span data-l10n-id="pdfjs-password-cancel-button">Cancel</span></button>
|
362
|
-
<button id="passwordSubmit" class="dialogButton"><span data-l10n-id="pdfjs-password-ok-button">OK</span></button>
|
363
|
-
</div>
|
364
|
-
</dialog>
|
365
|
-
<dialog id="documentPropertiesDialog">
|
366
|
-
<div class="row">
|
367
|
-
<span id="fileNameLabel" data-l10n-id="pdfjs-document-properties-file-name">File name:</span>
|
368
|
-
<p id="fileNameField" aria-labelledby="fileNameLabel">-</p>
|
369
|
-
</div>
|
370
|
-
<div class="row">
|
371
|
-
<span id="fileSizeLabel" data-l10n-id="pdfjs-document-properties-file-size">File size:</span>
|
372
|
-
<p id="fileSizeField" aria-labelledby="fileSizeLabel">-</p>
|
373
|
-
</div>
|
374
|
-
<div class="separator"></div>
|
375
|
-
<div class="row">
|
376
|
-
<span id="titleLabel" data-l10n-id="pdfjs-document-properties-title">Title:</span>
|
377
|
-
<p id="titleField" aria-labelledby="titleLabel">-</p>
|
378
|
-
</div>
|
379
|
-
<div class="row">
|
380
|
-
<span id="authorLabel" data-l10n-id="pdfjs-document-properties-author">Author:</span>
|
381
|
-
<p id="authorField" aria-labelledby="authorLabel">-</p>
|
382
|
-
</div>
|
383
|
-
<div class="row">
|
384
|
-
<span id="subjectLabel" data-l10n-id="pdfjs-document-properties-subject">Subject:</span>
|
385
|
-
<p id="subjectField" aria-labelledby="subjectLabel">-</p>
|
386
|
-
</div>
|
387
|
-
<div class="row">
|
388
|
-
<span id="keywordsLabel" data-l10n-id="pdfjs-document-properties-keywords">Keywords:</span>
|
389
|
-
<p id="keywordsField" aria-labelledby="keywordsLabel">-</p>
|
390
|
-
</div>
|
391
|
-
<div class="row">
|
392
|
-
<span id="creationDateLabel" data-l10n-id="pdfjs-document-properties-creation-date">Creation Date:</span>
|
393
|
-
<p id="creationDateField" aria-labelledby="creationDateLabel">-</p>
|
394
|
-
</div>
|
395
|
-
<div class="row">
|
396
|
-
<span id="modificationDateLabel" data-l10n-id="pdfjs-document-properties-modification-date">Modification Date:</span>
|
397
|
-
<p id="modificationDateField" aria-labelledby="modificationDateLabel">-</p>
|
398
|
-
</div>
|
399
|
-
<div class="row">
|
400
|
-
<span id="creatorLabel" data-l10n-id="pdfjs-document-properties-creator">Creator:</span>
|
401
|
-
<p id="creatorField" aria-labelledby="creatorLabel">-</p>
|
402
|
-
</div>
|
403
|
-
<div class="separator"></div>
|
404
|
-
<div class="row">
|
405
|
-
<span id="producerLabel" data-l10n-id="pdfjs-document-properties-producer">PDF Producer:</span>
|
406
|
-
<p id="producerField" aria-labelledby="producerLabel">-</p>
|
407
|
-
</div>
|
408
|
-
<div class="row">
|
409
|
-
<span id="versionLabel" data-l10n-id="pdfjs-document-properties-version">PDF Version:</span>
|
410
|
-
<p id="versionField" aria-labelledby="versionLabel">-</p>
|
411
|
-
</div>
|
412
|
-
<div class="row">
|
413
|
-
<span id="pageCountLabel" data-l10n-id="pdfjs-document-properties-page-count">Page Count:</span>
|
414
|
-
<p id="pageCountField" aria-labelledby="pageCountLabel">-</p>
|
415
|
-
</div>
|
416
|
-
<div class="row">
|
417
|
-
<span id="pageSizeLabel" data-l10n-id="pdfjs-document-properties-page-size">Page Size:</span>
|
418
|
-
<p id="pageSizeField" aria-labelledby="pageSizeLabel">-</p>
|
419
|
-
</div>
|
420
|
-
<div class="separator"></div>
|
421
|
-
<div class="row">
|
422
|
-
<span id="linearizedLabel" data-l10n-id="pdfjs-document-properties-linearized">Fast Web View:</span>
|
423
|
-
<p id="linearizedField" aria-labelledby="linearizedLabel">-</p>
|
424
|
-
</div>
|
425
|
-
<div class="buttonRow">
|
426
|
-
<button id="documentPropertiesClose" class="dialogButton"><span data-l10n-id="pdfjs-document-properties-close-button">Close</span></button>
|
427
|
-
</div>
|
428
|
-
</dialog>
|
429
|
-
<dialog id="altTextDialog" aria-labelledby="dialogLabel" aria-describedby="dialogDescription">
|
430
|
-
<div id="altTextContainer">
|
431
|
-
<div id="overallDescription">
|
432
|
-
<span id="dialogLabel" data-l10n-id="pdfjs-editor-alt-text-dialog-label" class="title">Choose an option</span>
|
433
|
-
<span id="dialogDescription" data-l10n-id="pdfjs-editor-alt-text-dialog-description">
|
434
|
-
Alt text (alternative text) helps when people can’t see the image or when it doesn’t load.
|
435
|
-
</span>
|
436
|
-
</div>
|
437
|
-
<div id="addDescription">
|
438
|
-
<div class="radio">
|
439
|
-
<div class="radioButton">
|
440
|
-
<input type="radio" id="descriptionButton" name="altTextOption" tabindex="0" aria-describedby="descriptionAreaLabel" checked>
|
441
|
-
<label for="descriptionButton" data-l10n-id="pdfjs-editor-alt-text-add-description-label">Add a description</label>
|
442
|
-
</div>
|
443
|
-
<div class="radioLabel">
|
444
|
-
<span id="descriptionAreaLabel" data-l10n-id="pdfjs-editor-alt-text-add-description-description">
|
445
|
-
Aim for 1-2 sentences that describe the subject, setting, or actions.
|
446
|
-
</span>
|
447
|
-
</div>
|
448
|
-
</div>
|
449
|
-
<div class="descriptionArea">
|
450
|
-
<textarea id="descriptionTextarea" placeholder="For example, “A young man sits down at a table to eat a meal”" aria-labelledby="descriptionAreaLabel" data-l10n-id="pdfjs-editor-alt-text-textarea" tabindex="0"></textarea>
|
451
|
-
</div>
|
452
|
-
</div>
|
453
|
-
<div id="markAsDecorative">
|
454
|
-
<div class="radio">
|
455
|
-
<div class="radioButton">
|
456
|
-
<input type="radio" id="decorativeButton" name="altTextOption" aria-describedby="decorativeLabel">
|
457
|
-
<label for="decorativeButton" data-l10n-id="pdfjs-editor-alt-text-mark-decorative-label">Mark as decorative</label>
|
458
|
-
</div>
|
459
|
-
<div class="radioLabel">
|
460
|
-
<span id="decorativeLabel" data-l10n-id="pdfjs-editor-alt-text-mark-decorative-description">
|
461
|
-
This is used for ornamental images, like borders or watermarks.
|
462
|
-
</span>
|
463
|
-
</div>
|
464
|
-
</div>
|
465
|
-
</div>
|
466
|
-
<div id="buttons">
|
467
|
-
<button id="altTextCancel" tabindex="0"><span data-l10n-id="pdfjs-editor-alt-text-cancel-button">Cancel</span></button>
|
468
|
-
<button id="altTextSave" tabindex="0"><span data-l10n-id="pdfjs-editor-alt-text-save-button">Save</span></button>
|
469
|
-
</div>
|
470
|
-
</div>
|
471
|
-
</dialog>
|
472
|
-
<dialog id="printServiceDialog" style="min-width: 200px;">
|
473
|
-
<div class="row">
|
474
|
-
<span data-l10n-id="pdfjs-print-progress-message">Preparing document for printing…</span>
|
475
|
-
</div>
|
476
|
-
<div class="row">
|
477
|
-
<progress value="0" max="100"></progress>
|
478
|
-
<span data-l10n-id="pdfjs-print-progress-percent" data-l10n-args='{ "progress": 0 }' class="relative-progress">0%</span>
|
479
|
-
</div>
|
480
|
-
<div class="buttonRow">
|
481
|
-
<button id="printCancel" class="dialogButton"><span data-l10n-id="pdfjs-print-progress-close-button">Cancel</span></button>
|
482
|
-
</div>
|
483
|
-
</dialog>
|
484
|
-
</div> <!-- dialogContainer -->
|
485
|
-
|
486
|
-
</div> <!-- outerContainer -->
|
487
|
-
<div id="printContainer"></div>
|
488
|
-
|
489
|
-
<input type="file" id="fileInput" class="hidden">
|
490
|
-
</body>
|
491
|
-
</html>
|
@@ -1,3 +0,0 @@
|
|
1
|
-
<svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M5.375 7.625V11.875C5.375 12.0408 5.44085 12.1997 5.55806 12.3169C5.67527 12.4342 5.83424 12.5 6 12.5C6.16576 12.5 6.32473 12.4342 6.44194 12.3169C6.55915 12.1997 6.625 12.0408 6.625 11.875V7.625L7.125 7.125H11.375C11.5408 7.125 11.6997 7.05915 11.8169 6.94194C11.9342 6.82473 12 6.66576 12 6.5C12 6.33424 11.9342 6.17527 11.8169 6.05806C11.6997 5.94085 11.5408 5.875 11.375 5.875H7.125L6.625 5.375V1.125C6.625 0.95924 6.55915 0.800269 6.44194 0.683058C6.32473 0.565848 6.16576 0.5 6 0.5C5.83424 0.5 5.67527 0.565848 5.55806 0.683058C5.44085 0.800269 5.375 0.95924 5.375 1.125V5.375L4.875 5.875H0.625C0.45924 5.875 0.300269 5.94085 0.183058 6.05806C0.065848 6.17527 0 6.33424 0 6.5C0 6.66576 0.065848 6.82473 0.183058 6.94194C0.300269 7.05915 0.45924 7.125 0.625 7.125H4.762L5.375 7.625Z" fill="black"/>
|
3
|
-
</svg>
|
@@ -1,3 +0,0 @@
|
|
1
|
-
<svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
-
<path d="M6 0.5C5.21207 0.5 4.43185 0.655195 3.7039 0.956723C2.97595 1.25825 2.31451 1.70021 1.75736 2.25736C1.20021 2.81451 0.758251 3.47595 0.456723 4.2039C0.155195 4.93185 0 5.71207 0 6.5C0 7.28793 0.155195 8.06815 0.456723 8.7961C0.758251 9.52405 1.20021 10.1855 1.75736 10.7426C2.31451 11.2998 2.97595 11.7417 3.7039 12.0433C4.43185 12.3448 5.21207 12.5 6 12.5C7.5913 12.5 9.11742 11.8679 10.2426 10.7426C11.3679 9.61742 12 8.0913 12 6.5C12 4.9087 11.3679 3.38258 10.2426 2.25736C9.11742 1.13214 7.5913 0.5 6 0.5ZM5.06 8.9L2.9464 6.7856C2.85273 6.69171 2.80018 6.56446 2.80033 6.43183C2.80048 6.29921 2.85331 6.17207 2.9472 6.0784C3.04109 5.98473 3.16834 5.93218 3.30097 5.93233C3.43359 5.93248 3.56073 5.98531 3.6544 6.0792L5.3112 7.7368L8.3464 4.7008C8.44109 4.6109 8.56715 4.56153 8.69771 4.56322C8.82827 4.56492 8.95301 4.61754 9.04534 4.70986C9.13766 4.80219 9.19028 4.92693 9.19198 5.05749C9.19367 5.18805 9.1443 5.31411 9.0544 5.4088L5.5624 8.9H5.06Z" fill="#FBFBFE"/>
|
3
|
-
</svg>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="40"
|
5
|
-
height="40"
|
6
|
-
viewBox="0 0 40 40">
|
7
|
-
<path
|
8
|
-
d="M 1.5006714,23.536225 6.8925879,18.994244 14.585721,26.037937 34.019683,4.5410479 38.499329,9.2235032 14.585721,35.458952 z"
|
9
|
-
id="path4"
|
10
|
-
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.25402856;stroke-opacity:1" />
|
11
|
-
</svg>
|
@@ -1,16 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
height="40"
|
5
|
-
width="40"
|
6
|
-
viewBox="0 0 40 40">
|
7
|
-
<rect
|
8
|
-
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
9
|
-
width="33.76017"
|
10
|
-
height="33.76017"
|
11
|
-
x="3.119915"
|
12
|
-
y="3.119915" />
|
13
|
-
<path
|
14
|
-
d="m 20.677967,8.54499 c -7.342801,0 -13.295293,4.954293 -13.295293,11.065751 0,2.088793 0.3647173,3.484376 1.575539,5.150563 L 6.0267418,31.45501 13.560595,29.011117 c 2.221262,1.387962 4.125932,1.665377 7.117372,1.665377 7.3428,0 13.295291,-4.954295 13.295291,-11.065753 0,-6.111458 -5.952491,-11.065751 -13.295291,-11.065751 z"
|
15
|
-
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.93031836;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/>
|
16
|
-
</svg>
|
@@ -1,26 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="40"
|
5
|
-
height="40"
|
6
|
-
viewBox="0 0 40 40">
|
7
|
-
<g
|
8
|
-
transform="translate(0,-60)"
|
9
|
-
id="layer1">
|
10
|
-
<rect
|
11
|
-
width="36.460953"
|
12
|
-
height="34.805603"
|
13
|
-
x="1.7695236"
|
14
|
-
y="62.597198"
|
15
|
-
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.30826771;stroke-opacity:1" />
|
16
|
-
<g
|
17
|
-
transform="matrix(0.88763677,0,0,0.88763677,2.2472646,8.9890584)">
|
18
|
-
<path
|
19
|
-
d="M 20,64.526342 C 11.454135,64.526342 4.5263421,71.454135 4.5263421,80 4.5263421,88.545865 11.454135,95.473658 20,95.473658 28.545865,95.473658 35.473658,88.545865 35.473658,80 35.473658,71.454135 28.545865,64.526342 20,64.526342 z m -0.408738,9.488564 c 3.527079,0 6.393832,2.84061 6.393832,6.335441 0,3.494831 -2.866753,6.335441 -6.393832,6.335441 -3.527079,0 -6.393832,-2.84061 -6.393832,-6.335441 0,-3.494831 2.866753,-6.335441 6.393832,-6.335441 z"
|
20
|
-
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.02768445;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
21
|
-
<path
|
22
|
-
d="m 7.2335209,71.819938 4.9702591,4.161823 c -1.679956,2.581606 -1.443939,6.069592 0.159325,8.677725 l -5.1263071,3.424463 c 0.67516,1.231452 3.0166401,3.547686 4.2331971,4.194757 l 3.907728,-4.567277 c 2.541952,1.45975 5.730694,1.392161 8.438683,-0.12614 l 3.469517,6.108336 c 1.129779,-0.44367 4.742234,-3.449633 5.416358,-5.003859 l -5.46204,-4.415541 c 1.44319,-2.424098 1.651175,-5.267515 0.557303,-7.748623 l 5.903195,-3.833951 C 33.14257,71.704996 30.616217,69.018606 29.02952,67.99296 l -4.118813,4.981678 C 22.411934,71.205099 18.900853,70.937534 16.041319,72.32916 l -3.595408,-5.322091 c -1.345962,0.579488 -4.1293881,2.921233 -5.2123901,4.812869 z m 8.1010311,3.426672 c 2.75284,-2.446266 6.769149,-2.144694 9.048998,0.420874 2.279848,2.56557 2.113919,6.596919 -0.638924,9.043185 -2.752841,2.446267 -6.775754,2.13726 -9.055604,-0.428308 -2.279851,-2.565568 -2.107313,-6.589485 0.64553,-9.035751 z"
|
23
|
-
style="fill:#000000;fill-opacity:1;stroke:none" />
|
24
|
-
</g>
|
25
|
-
</g>
|
26
|
-
</svg>
|
@@ -1,10 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="64"
|
5
|
-
height="64"
|
6
|
-
viewBox="0 0 64 64">
|
7
|
-
<path
|
8
|
-
d="M 32.003143,1.4044602 57.432701,62.632577 6.5672991,62.627924 z"
|
9
|
-
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:1.00493038;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
10
|
-
</svg>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="64"
|
5
|
-
height="64"
|
6
|
-
viewBox="0 0 64 64">
|
7
|
-
<path
|
8
|
-
d="M 25.470843,9.4933766 C 25.30219,12.141818 30.139101,14.445969 34.704831,13.529144 40.62635,12.541995 41.398833,7.3856498 35.97505,5.777863 31.400921,4.1549155 25.157674,6.5445892 25.470843,9.4933766 z M 4.5246282,17.652051 C 4.068249,11.832873 9.2742983,5.9270407 18.437379,3.0977088 29.751911,-0.87185184 45.495663,1.4008022 53.603953,7.1104009 c 9.275765,6.1889221 7.158128,16.2079421 -3.171076,21.5939521 -1.784316,1.635815 -6.380222,1.21421 -7.068351,3.186186 -1.04003,0.972427 -1.288046,2.050158 -1.232864,3.168203 1.015111,2.000108 -3.831548,1.633216 -3.270553,3.759574 0.589477,5.264544 -0.179276,10.53738 -0.362842,15.806257 -0.492006,2.184998 1.163456,4.574232 -0.734888,6.610642 -2.482919,2.325184 -7.30604,2.189143 -9.193497,-0.274767 -2.733688,-1.740626 -8.254447,-3.615254 -6.104247,-6.339626 3.468112,-1.708686 -2.116197,-3.449897 0.431242,-5.080274 5.058402,-1.39256 -2.393215,-2.304318 -0.146889,-4.334645 3.069198,-0.977415 2.056986,-2.518352 -0.219121,-3.540397 1.876567,-1.807151 1.484149,-4.868919 -2.565455,-5.942205 0.150866,-1.805474 2.905737,-4.136876 -1.679967,-5.20493 C 10.260902,27.882167 4.6872697,22.95045 4.5245945,17.652051 z"
|
9
|
-
id="path604"
|
10
|
-
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.72665179;stroke-opacity:1" />
|
11
|
-
</svg>
|
@@ -1,11 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2
|
-
<svg
|
3
|
-
xmlns="http://www.w3.org/2000/svg"
|
4
|
-
width="64"
|
5
|
-
height="64"
|
6
|
-
viewBox="0 0 64 64">
|
7
|
-
<path
|
8
|
-
d="M 32.003143,10.913072 57.432701,53.086929 6.567299,53.083723 z"
|
9
|
-
id="path2985"
|
10
|
-
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:0.83403099;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
11
|
-
</svg>
|