-
Notifications
You must be signed in to change notification settings - Fork 22
/
beamerthemechalmers.sty
859 lines (825 loc) · 44.4 KB
/
beamerthemechalmers.sty
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
% Beamer theme for Chalmers university of technology
% Written by Mikael Öhman <[email protected]>
% Released under public domain.
% Use with beamer for pdflatex or lualatex:
% \usetheme{chalmers}
\mode<presentation>
% Option to place a figure in the title page. Supply the filename.
\DeclareOptionBeamer{titleflower}[true]{\def\beamer@titleflower{#1}}
\ProcessOptionsBeamer
\RequirePackage{tikz}
\newlength{\headerheight}
\newlength{\footerheight}
\newlength{\titlepageheight}
\newlength{\footertextwidth}
\setlength{\headerheight}{0.04\paperheight}
\setlength{\footerheight}{0.04\paperheight}
\setlength{\titlepageheight}{0.4\paperheight}
\setlength{\footertextwidth}{0.5\paperwidth}
% New command for manually inserting the footer. Default is the authors.
\newcommand{\footer}[1]{\def\insertfooter{#1}}
\footer{\insertshortauthor}
% New command for inserting a logo on the title page. Default is no logo.
\newcommand{\titlepagelogo}[1]{\def\inserttitlepagelogo{#1}}
\titlepagelogo{}
% Convenience, just set the filename
\newcommand{\titlepagelogofile}[1]{\def\inserttitlepagelogofile{#1}}
\titlepagelogofile{}
% Convenience, just set the filename
\newcommand{\titlepageextra}[1]{\def\inserttitlepageextra{#1}}
\titlepageextra{}
% Chalmers recommended fonts for presentations; Times New Roman for titles, Arial/Verdana for rest.
% But, it looks very bad.
%\setbeamerfont{frametitle}{family=\rmfamily}
% Chalmers default colors (+ black and white)
\definecolor{chalmersblue}{rgb}{0,0.2,0.53}
\definecolor{chalmersgrey}{rgb}{0.8,0.8,0.8}
\definecolor{chalmerssilver}{rgb}{0.8,0.8,0.8}
\setbeamercolor{palette primary}{fg=white,bg=chalmersblue}
\setbeamercolor{palette secondary}{fg=white,bg=black}
\setbeamercolor{palette third}{fg=black,bg=chalmersgrey}
\setbeamercolor*{structure}{fg=chalmersgrey!50!black, bg=white}
\setbeamercolor{alerted text}{fg=chalmersblue}
\setbeamercolor*{head}{parent=palette secondary}
\setbeamercolor*{foot}{parent=palette primary}
\setbeamercolor*{title page header}{parent=palette primary}
\setbeamercolor*{frametitle}{parent=palette primary}
\setbeamercolor*{title page header}{fg=white}
%\setbeamercolor*{alert text}{fg=chalmersblue}
% Items round and grey;
%\setbeamercolor*{enumerate item}{fg=chalmersblue} % Just won't do anything-
%\setbeamercolor*{itemize item}{fg=chalmersgrey}
\setbeamertemplate{items}[circle]
% Turning off navigation symbols
\usenavigationsymbolstemplate{}
% Spacing is up to the writer to decide. These are set a bit tighter than default.
% \setlength{\intextsep}{5pt}
% \setlength{\abovecaptionskip}{3pt}
% \setlength{\belowcaptionskip}{0pt}
% \setlength{\abovedisplayskip}{3pt}
% \setlength{\belowdisplayskip}{3pt}
% \setlength{\itemsep}{0pt}
% \setbeamersize{text margin left=1em,text margin right=1em}
\defbeamertemplate*{title page}{chalmers}[1][]
{
\begin{tikzpicture}[remember picture, overlay]
\node at (current page.north west) {
\begin{tikzpicture}[remember picture, overlay]
\usebeamerfont{headline};
\fill[black] (0,0) rectangle +(\paperwidth,-\headerheight-1mm); % -1mm overlap
\node[right, white,overlay] at (0,-0.5\headerheight) {\chalmerslogo{white}{0.5\headerheight}};
\shade[bottom color=chalmersblue!60,top color=chalmersblue!100] (0,-\headerheight) rectangle (\paperwidth,-\titlepageheight);
% Conditionally draw the 'flower'
\def\beamer@truetext{true}%
\ifx\beamer@titleflower\beamer@truetext%
\node[above right] at (0,-1.15\titlepageheight) {\chalmersflower{white}{\titlepageheight}{70}};
\node at (0.6\paperwidth, -0.7\titlepageheight) {
\begin{beamercolorbox}[wd=0.6\paperwidth,center,#1]{title page header}
\usebeamerfont{title}\inserttitle\par%
\ifx\insertsubtitle\@empty\else%
\vskip0.25em%
{\usebeamerfont{subtitle}\insertsubtitle\par}%
\fi%
\vspace{.125\paperheight}%
\end{beamercolorbox}
};
\else%
\node at (0.5\paperwidth, -0.7\titlepageheight) {
\begin{beamercolorbox}[wd=0.8\paperwidth,center,#1]{title page header}
\usebeamerfont{title}\inserttitle\par%
\ifx\insertsubtitle\@empty%
\else%
\vskip0.25em%
{\usebeamerfont{subtitle}\insertsubtitle\par}%
\fi%
\vspace{.125\paperheight}%
\end{beamercolorbox}
};
\fi
\end{tikzpicture}
};
\end{tikzpicture}
\vskip 0.4\paperheight
\begin{columns}
\ifx\inserttitlepagelogofile\@empty\else
\titlepagelogo{\includegraphics[keepaspectratio,height=.5\textheight,width=0.5\textwidth]{\inserttitlepagelogofile}}
\fi
\ifx\inserttitlepagelogo\@empty%
\column{\textwidth}
\else
\column{.5\textwidth}
% Logo.
\begin{centering}
\vbox{}\vfill
\inserttitlepagelogo
\vfill
\end{centering}
\column{.5\textwidth}
\fi
% Authors, institute and date
\vskip1em\par
\begin{beamercolorbox}[sep=8pt,center,#1]{author}
\usebeamerfont{author}{\def\beamer@andtitle{\\}\insertauthor} % Forces linebreaks
\end{beamercolorbox}
\begin{beamercolorbox}[sep=8pt,center,#1]{institute}
\usebeamerfont{institute}\insertinstitute
\end{beamercolorbox}
\begin{beamercolorbox}[sep=8pt,center,#1]{date}
\usebeamerfont{date}
\ifx\inserttitlepageextra\@empty\else\inserttitlepageextra\\\fi
\insertdate
\end{beamercolorbox}\vskip0.5em
%{\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par}
\end{columns}
}
\defbeamertemplate*{footline}{chalmers theme}{
\begin{tikzpicture}
\fill[chalmersgrey] (0,0) rectangle (\paperwidth,\footerheight);
% Section hierarchy
\node[right] at (0,0.5\footerheight) {\usebeamerfont{foot}\insertsectionhead\
\ifx\insertsubsectionhead\@empty\else---\ \insertsubsectionhead\fi%
\ifx\insertsubsubsectionhead\@empty\else---\ \insertsubsubsectionhead\fi};
% Right side footer.
\node[right] at (\footertextwidth,0.5\footerheight) {\usebeamerfont{foot}\insertfooter};
% frame/total frames
\node[left] at (\paperwidth,0.5\footerheight) {\usebeamerfont{foot}\insertframenumber/\inserttotalframenumber};
\end{tikzpicture}
}
% This as a very thin overlay (0.1mm) to avoid rendering errors.
\defbeamertemplate*{headline}{chalmers theme}{%
\begin{tikzpicture}
\fill[black] (0,0) rectangle (\paperwidth,\headerheight+0.1mm);
\node[right,white] at (0,0.5\headerheight+0.1mm) {\chalmerslogo{white}{0.5\headerheight}};
\end{tikzpicture}\vskip -0.1mm
}
\defbeamertemplate*{frametitle}{chalmers theme}
{%
\nointerlineskip%
\hbox{\leavevmode
%\advance\beamer@leftmargin by -12bp%
%\advance\beamer@rightmargin by -12bp%
%\beamer@tempdim=\textwidth%
%\advance\beamer@tempdim by \beamer@leftmargin%
%\advance\beamer@tempdim by \beamer@rightmargin%
\hskip-\Gm@lmargin%
\hbox{%
\setbox\beamer@tempbox=\hbox{\begin{minipage}[b]{\paperwidth}%
\vbox{}\vskip-.75ex%
\leftskip0.3cm%
\rightskip0.3cm plus1fil\leavevmode
\insertframetitle%
\ifx\insertframesubtitle\@empty%
\strut\par%
\else
\par{\usebeamerfont*{framesubtitle}{\usebeamercolor[fg]{framesubtitle}\insertframesubtitle}\strut\par}%
\fi%
\nointerlineskip
\vbox{}%
\end{minipage}}% Stores a temporary box
\beamer@tempdim=\ht\beamer@tempbox% % Height of box
\advance\beamer@tempdim by 2pt%
\begin{tikzpicture}
\clip (0,\titlepageheight-\beamer@tempdim) rectangle +(\paperwidth,\beamer@tempdim);
%\clip (0,0) rectangle (\paperwidth,\beamer@tempdim);
%\shade[bottom color=structure.bg!70,top color=structure.bg!100] (0,0) rectangle (\paperwidth,-\titlepageheight);
%\fill[structure.bg] (0,0) rectangle (\paperwidth,\beamer@tempdim);
\shade[bottom color=frametitle.bg!70,top color=frametitle.bg!100] (0,0) rectangle (\paperwidth,\titlepageheight);
%\node[right] at (0,0.5\beamer@tempdim) { \insertframetitle\ };
\end{tikzpicture}
\hskip-\paperwidth%
\box\beamer@tempbox%
}%
\hskip-\Gm@rmargin%
}%
}
% CHALMERS logo below. Note! It is trademarked!
%\newcommand{\chalmerslogo}{\input{figures/CHALMERS.tikz}} % Seperate file? More convenient here.
\newcommand{\chalmerslogo}[2]{
\resizebox{!}{#2}{
\begin{tikzpicture}[fill=#1]% This is 11.994 in width, 1.341 in height
% C
\fill (1.481,0.488)
.. controls (1.385,0.138) and (1.046,0.027) .. (0.742,0.027)
.. controls (0.304,0.027) and (0,0.256) .. (0,0.687)
.. controls (0,1.152) and (0.37,1.34) .. (0.76,1.34)
.. controls (0.901,1.34) and (1.273,1.307) .. (1.437,1.011)
-- (1.128,0.914)
.. controls (1.095,0.966) and (0.997,1.102) .. (0.758,1.102)
.. controls (0.478,1.102) and (0.321,0.919) .. (0.321,0.683)
.. controls (0.321,0.414) and (0.535,0.271) .. (0.769,0.271)
.. controls (1.036,0.271) and (1.116,0.411) .. (1.156,0.486)
-- cycle;
% H
\fill (1.616,1.302) -- (1.925,1.302) -- (1.925,0.827) -- (2.656,0.827) -- (2.656,1.302) -- (2.965,1.302)
-- (2.965,0.069) -- (2.656,0.069) -- (2.656,0.598) -- (1.925,0.598) -- (1.925,0.069) -- (1.616,0.069)
-- cycle;
%A
\fill (3.707,1.302) -- (4.041,1.302) -- (4.637,0.069) -- (4.291,0.069) -- (4.168,0.338) -- (3.568,0.338)
-- (3.449,0.069) -- (3.112,0.069) -- (3.707,1.302) -- cycle
(3.903,0.923)
.. controls (3.889,0.955) and (3.876,0.985) .. (3.871,1.021)
.. controls (3.866,0.986) and (3.851,0.954) .. (3.837,0.922)
-- (3.668,0.556) -- (4.066,0.556) -- cycle;
% L
\fill (4.796,1.302) -- (5.105,1.302) -- (5.105,0.296) -- (5.728,0.296) -- (5.728,0.069) -- (4.796,0.069) -- cycle;
% M
\fill (5.914,1.302) -- (6.359,1.302) -- (6.687,0.532)
.. controls (6.721,0.451) and (6.73,0.418) .. (6.743,0.364)
.. controls (6.756,0.418) and (6.767,0.451) .. (6.8,0.532)
-- (7.122,1.302) -- (7.564,1.302) -- (7.564,0.069) -- (7.272,0.069) -- (7.272,0.937)
.. controls (7.272,0.984) and (7.279,1.01) .. (7.285,1.047)
.. controls (7.272,1.01) and (7.263,0.984) .. (7.243,0.937)
-- (6.881,0.069) -- (6.6,0.069) -- (6.231,0.937)
.. controls (6.211,0.984) and (6.205,1.01) .. (6.195,1.047)
.. controls (6.198,1.01) and (6.205,0.984) .. (6.205,0.937)
-- (6.205,0.069) -- (5.914,0.069) -- cycle;
% E
\fill (7.85,1.302) -- (8.999,1.302) -- (8.999,1.080) -- (8.159,1.080) -- (8.159,0.802) -- (8.899,0.802)
-- (8.899,0.584) -- (8.159,0.584) -- (8.159,0.289) -- (9.034,0.289) -- (9.034,0.069) -- (7.850,0.069) -- cycle;
% R
\fill (9.266,1.301) -- (10.128,1.301)
.. controls (10.219,1.301) and (10.566,1.290) .. (10.566,0.933)
.. controls (10.566,0.720) and (10.439,0.612) .. (10.246,0.583)
-- (10.620,0.068) -- (10.265,0.068) -- ( 9.927,0.564) -- ( 9.575,0.564) -- ( 9.575,0.068)
-- ( 9.266,0.068) -- ( 9.266,1.301) -- cycle
(9.576,0.782) -- (10.068,0.782)
.. controls (10.134,0.782) and (10.253,0.791) .. (10.253,0.929)
.. controls (10.253,1.064) and (10.164,1.085) .. (10.054,1.085)
-- (9.576,1.085) -- cycle;
% S
\fill (10.956,0.445)
.. controls (11.028,0.297) and (11.205,0.255) .. (11.373,0.258)
.. controls (11.448,0.259) and (11.684,0.276) .. (11.681,0.426)
.. controls (11.680,0.515) and (11.593,0.534) .. (11.527,0.545)
.. controls (11.476,0.554) and (11.222,0.589) .. (11.164,0.599)
.. controls (11.051,0.617) and (10.758,0.667) .. (10.758,0.946)
.. controls (10.758,1.249) and (11.080,1.340) .. (11.326,1.340)
.. controls (11.612,1.340) and (11.831,1.285) .. (11.981,1.056)
-- (11.689,0.978)
.. controls (11.620,1.103) and (11.462,1.121) .. (11.330,1.120)
.. controls (11.194,1.120) and (11.055,1.089) .. (11.057,0.972)
.. controls (11.058,0.892) and (11.130,0.872) .. (11.223,0.853)
.. controls (11.274,0.843) and (11.526,0.805) .. (11.584,0.795)
.. controls (11.727,0.770) and (11.971,0.723) .. (11.976,0.452)
.. controls (11.983,0.056) and (11.539,0.033) .. (11.358,0.031)
.. controls (11.156,0.028) and (10.840,0.057) .. (10.676,0.366)
-- cycle;
\end{tikzpicture}
}
}
\newcommand{\chalmersflower}[3]{
\resizebox{!}{#2}{
\begin{tikzpicture}[rotate=#3]
\fill[#1] (3.154,2.733)
.. controls (3.141,2.733) and (3.118,2.735) .. (3.114,2.74)
.. controls (3.108,2.749) and (3.097,2.761) .. (3.089,2.77)
.. controls (3.081,2.78) and (3.072,2.803) .. (3.071,2.81)
.. controls (3.067,2.81) and (3.06,2.797) .. (3.057,2.786)
.. controls (3.053,2.774) and (3.045,2.762) .. (3.029,2.745)
.. controls (3.012,2.726) and (3.014,2.706) .. (3.004,2.687)
.. controls (2.993,2.669) and (2.986,2.642) .. (2.976,2.626)
.. controls (2.965,2.61) and (2.959,2.581) .. (2.957,2.571)
.. controls (2.956,2.561) and (2.941,2.52) .. (2.927,2.507)
.. controls (2.918,2.498) and (2.908,2.491) .. (2.899,2.491)
.. controls (2.895,2.491) and (2.89,2.493) .. (2.886,2.496)
.. controls (2.871,2.506) and (2.843,2.53) .. (2.833,2.539)
.. controls (2.822,2.549) and (2.81,2.562) .. (2.804,2.572)
.. controls (2.797,2.582) and (2.783,2.584) .. (2.771,2.593)
.. controls (2.759,2.602) and (2.743,2.619) .. (2.731,2.629)
.. controls (2.719,2.64) and (2.707,2.649) .. (2.698,2.651)
.. controls (2.697,2.651) and (2.696,2.652) .. (2.695,2.652)
.. controls (3.087,2.89) and (3.477,2.99) .. (3.814,2.993)
.. controls (4.353,3) and (4.818,2.745) .. (4.798,2.18)
.. controls (4.846,2.192) and (5.111,2.46) .. (4.838,2.762)
.. controls (4.659,2.961) and (4.343,3.073) .. (3.965,3.073)
.. controls (3.439,3.073) and (2.793,2.856) .. (2.226,2.353)
.. controls (2.911,3.081) and (3.811,3.429) .. (4.504,3.429)
.. controls (4.852,3.429) and (5.149,3.341) .. (5.338,3.169)
.. controls (5.902,2.654) and (5.555,2.045) .. (5.36,1.832)
.. controls (5.163,1.616) and (4.946,1.677) .. (4.919,1.656)
.. controls (4.903,1.644) and (4.9,1.627) .. (4.899,1.61)
.. controls (4.899,1.599) and (4.921,1.592) .. (4.957,1.592)
.. controls (5.056,1.592) and (5.264,1.646) .. (5.398,1.793)
.. controls (5.58,1.992) and (5.979,2.639) .. (5.365,3.199)
.. controls (5.134,3.409) and (4.782,3.546) .. (4.36,3.546)
.. controls (3.721,3.546) and (2.91,3.22) .. (2.133,2.369)
.. controls (2.133,2.38) and (2.128,2.401) .. (2.125,2.413)
.. controls (2.093,2.556) and (1.981,2.781) .. (1.783,2.883)
.. controls (1.787,2.882) and (1.791,2.881) .. (1.794,2.88)
.. controls (1.813,2.873) and (1.833,2.87) .. (1.852,2.868)
.. controls (1.869,2.867) and (1.903,2.876) .. (1.911,2.879)
.. controls (1.921,2.881) and (1.948,2.888) .. (1.956,2.889)
.. controls (1.965,2.891) and (1.992,2.898) .. (2.002,2.903)
.. controls (2.012,2.909) and (2.032,2.916) .. (2.039,2.924)
.. controls (2.046,2.931) and (2.056,2.938) .. (2.067,2.943)
.. controls (2.078,2.947) and (2.089,2.962) .. (2.107,2.976)
.. controls (2.124,2.989) and (2.14,3.011) .. (2.14,3.011)
.. controls (2.14,3.011) and (2.117,3.014) .. (2.11,3.02)
.. controls (2.103,3.025) and (2.088,3.029) .. (2.072,3.032)
.. controls (2.056,3.035) and (2.034,3.036) .. (2.02,3.039)
.. controls (2.006,3.043) and (1.994,3.052) .. (1.982,3.052)
.. controls (1.978,3.051) and (1.972,3.051) .. (1.966,3.051)
.. controls (1.957,3.051) and (1.947,3.052) .. (1.938,3.053)
.. controls (1.924,3.056) and (1.888,3.063) .. (1.871,3.068)
.. controls (1.854,3.074) and (1.852,3.088) .. (1.854,3.107)
.. controls (1.855,3.126) and (1.878,3.162) .. (1.885,3.17)
.. controls (1.891,3.177) and (1.91,3.201) .. (1.916,3.219)
.. controls (1.921,3.237) and (1.938,3.259) .. (1.945,3.279)
.. controls (1.953,3.299) and (1.97,3.31) .. (1.974,3.335)
.. controls (1.977,3.359) and (1.982,3.372) .. (1.989,3.382)
.. controls (1.996,3.393) and (2.002,3.409) .. (1.998,3.409)
.. controls (1.992,3.405) and (1.97,3.396) .. (1.957,3.398)
.. controls (1.94,3.401) and (1.93,3.4) .. (1.917,3.398)
.. controls (1.907,3.397) and (1.883,3.418) .. (1.882,3.433)
.. controls (1.88,3.447) and (1.863,3.466) .. (1.856,3.477)
.. controls (1.849,3.487) and (1.85,3.512) .. (1.848,3.525)
.. controls (1.847,3.539) and (1.824,3.586) .. (1.82,3.601)
.. controls (1.817,3.617) and (1.811,3.634) .. (1.797,3.656)
.. controls (1.785,3.676) and (1.774,3.716) .. (1.775,3.728)
.. controls (1.775,3.741) and (1.77,3.749) .. (1.76,3.769)
.. controls (1.75,3.788) and (1.733,3.83) .. (1.732,3.851)
.. controls (1.731,3.871) and (1.728,3.897) .. (1.724,3.897)
.. controls (1.721,3.897) and (1.719,3.871) .. (1.718,3.868)
.. controls (1.716,3.865) and (1.703,3.818) .. (1.701,3.807)
.. controls (1.7,3.797) and (1.693,3.778) .. (1.685,3.772)
.. controls (1.678,3.767) and (1.65,3.721) .. (1.644,3.701)
.. controls (1.638,3.68) and (1.63,3.659) .. (1.617,3.646)
.. controls (1.603,3.633) and (1.591,3.594) .. (1.582,3.579)
.. controls (1.573,3.565) and (1.554,3.508) .. (1.547,3.477)
.. controls (1.54,3.445) and (1.517,3.402) .. (1.513,3.379)
.. controls (1.51,3.355) and (1.518,3.28) .. (1.528,3.248)
.. controls (1.538,3.216) and (1.542,3.177) .. (1.543,3.163)
.. controls (1.544,3.149) and (1.537,3.124) .. (1.532,3.105)
.. controls (1.528,3.092) and (1.517,3.087) .. (1.507,3.089)
.. controls (1.492,3.091) and (1.446,3.139) .. (1.413,3.186)
.. controls (1.38,3.233) and (1.364,3.257) .. (1.332,3.283)
.. controls (1.3,3.31) and (1.267,3.331) .. (1.232,3.345)
.. controls (1.218,3.351) and (1.205,3.353) .. (1.193,3.353)
.. controls (1.177,3.353) and (1.164,3.348) .. (1.156,3.343)
.. controls (1.143,3.332) and (1.127,3.318) .. (1.112,3.316)
.. controls (1.097,3.314) and (1.068,3.308) .. (1.056,3.307)
.. controls (1.043,3.307) and (1.015,3.312) .. (0.995,3.313)
.. controls (0.973,3.313) and (0.954,3.326) .. (0.933,3.329)
.. controls (0.916,3.331) and (0.898,3.325) .. (0.881,3.324)
.. controls (0.868,3.324) and (0.816,3.34) .. (0.8,3.34)
.. controls (0.789,3.34) and (0.767,3.343) .. (0.749,3.343)
.. controls (0.739,3.343) and (0.731,3.342) .. (0.727,3.341)
.. controls (0.709,3.335) and (0.69,3.338) .. (0.672,3.339)
.. controls (0.666,3.339) and (0.654,3.337) .. (0.648,3.333)
.. controls (0.635,3.322) and (0.619,3.327) .. (0.603,3.327)
.. controls (0.594,3.327) and (0.567,3.324) .. (0.556,3.319)
.. controls (0.545,3.314) and (0.517,3.305) .. (0.505,3.305)
.. controls (0.492,3.305) and (0.481,3.296) .. (0.472,3.291)
.. controls (0.463,3.287) and (0.447,3.287) .. (0.448,3.282)
.. controls (0.448,3.279) and (0.452,3.279) .. (0.456,3.279)
.. controls (0.461,3.279) and (0.47,3.28) .. (0.476,3.281)
.. controls (0.482,3.281) and (0.491,3.279) .. (0.5,3.278)
.. controls (0.509,3.277) and (0.521,3.276) .. (0.534,3.276)
.. controls (0.564,3.276) and (0.563,3.258) .. (0.588,3.254)
.. controls (0.614,3.251) and (0.65,3.238) .. (0.677,3.233)
.. controls (0.704,3.228) and (0.724,3.21) .. (0.738,3.203)
.. controls (0.751,3.197) and (0.798,3.157) .. (0.809,3.148)
.. controls (0.82,3.139) and (0.85,3.114) .. (0.871,3.105)
.. controls (0.891,3.096) and (0.913,3.073) .. (0.922,3.068)
.. controls (0.93,3.063) and (0.952,3.039) .. (0.956,3.029)
.. controls (0.96,3.018) and (0.991,2.988) .. (1.016,2.972)
.. controls (1.04,2.956) and (1.053,2.94) .. (1.056,2.931)
.. controls (1.058,2.921) and (1.06,2.907) .. (1.063,2.898)
.. controls (1.066,2.89) and (1.068,2.862) .. (1.067,2.855)
.. controls (1.066,2.849) and (1.058,2.827) .. (1.067,2.823)
.. controls (1.082,2.852) and (1.101,2.857) .. (1.123,2.867)
.. controls (1.145,2.878) and (1.204,2.881) .. (1.239,2.885)
.. controls (1.274,2.888) and (1.307,2.899) .. (1.323,2.905)
.. controls (1.339,2.912) and (1.4,2.932) .. (1.412,2.933)
.. controls (1.429,2.934) and (1.442,2.928) .. (1.451,2.914)
.. controls (1.461,2.897) and (1.431,2.878) .. (1.408,2.866)
.. controls (1.384,2.855) and (1.347,2.844) .. (1.325,2.841)
.. controls (1.303,2.837) and (1.28,2.804) .. (1.269,2.787)
.. controls (1.258,2.77) and (1.224,2.713) .. (1.215,2.701)
.. controls (1.207,2.688) and (1.137,2.587) .. (1.128,2.574)
.. controls (1.118,2.561) and (1.084,2.495) .. (1.079,2.484)
.. controls (1.073,2.473) and (1.057,2.447) .. (1.05,2.443)
.. controls (1.047,2.441) and (1.041,2.431) .. (1.034,2.418)
.. controls (1.034,2.42) and (1.034,2.421) .. (1.034,2.423)
.. controls (1.033,2.44) and (1.031,2.459) .. (1.027,2.46)
.. controls (1.024,2.46) and (1.022,2.439) .. (1.021,2.437)
.. controls (1.02,2.434) and (1.01,2.397) .. (1.009,2.388)
.. controls (1.007,2.38) and (1.002,2.364) .. (0.996,2.359)
.. controls (0.993,2.357) and (0.987,2.348) .. (0.981,2.338)
.. controls (0.978,2.335) and (0.976,2.332) .. (0.975,2.331)
.. controls (0.975,2.33) and (0.975,2.329) .. (0.975,2.328)
.. controls (0.97,2.318) and (0.965,2.309) .. (0.963,2.302)
.. controls (0.958,2.286) and (0.952,2.268) .. (0.941,2.258)
.. controls (0.93,2.247) and (0.92,2.216) .. (0.913,2.204)
.. controls (0.905,2.193) and (0.89,2.147) .. (0.884,2.121)
.. controls (0.878,2.096) and (0.86,2.061) .. (0.857,2.043)
.. controls (0.854,2.024) and (0.861,1.963) .. (0.87,1.938)
.. controls (0.878,1.912) and (0.88,1.88) .. (0.881,1.869)
.. controls (0.882,1.858) and (0.877,1.838) .. (0.872,1.823)
.. controls (0.869,1.812) and (0.864,1.809) .. (0.856,1.809)
.. controls (0.854,1.809) and (0.851,1.809) .. (0.848,1.81)
.. controls (0.836,1.813) and (0.802,1.85) .. (0.776,1.887)
.. controls (0.75,1.925) and (0.737,1.944) .. (0.711,1.966)
.. controls (0.685,1.987) and (0.659,2.004) .. (0.631,2.016)
.. controls (0.619,2.021) and (0.609,2.022) .. (0.6,2.022)
.. controls (0.586,2.022) and (0.576,2.018) .. (0.57,2.013)
.. controls (0.559,2.005) and (0.547,1.994) .. (0.534,1.992)
.. controls (0.522,1.991) and (0.498,1.986) .. (0.489,1.985)
.. controls (0.478,1.985) and (0.455,1.989) .. (0.439,1.99)
.. controls (0.421,1.99) and (0.407,2) .. (0.39,2.002)
.. controls (0.376,2.004) and (0.362,1.999) .. (0.348,1.998)
.. controls (0.338,1.998) and (0.296,2.011) .. (0.283,2.012)
.. controls (0.263,2.013) and (0.243,2.016) .. (0.224,2.013)
.. controls (0.209,2.01) and (0.195,2.01) .. (0.18,2.01)
.. controls (0.175,2.01) and (0.166,2.009) .. (0.161,2.006)
.. controls (0.151,1.997) and (0.138,2.001) .. (0.125,2.001)
.. controls (0.118,2.001) and (0.096,1.998) .. (0.087,1.994)
.. controls (0.079,1.989) and (0.056,1.984) .. (0.046,1.984)
.. controls (0.036,1.984) and (0.026,1.977) .. (0.019,1.973)
.. controls (0.012,1.969) and (-0.001,1.97) .. (0,1.965)
.. controls (0,1.963) and (0.003,1.962) .. (0.006,1.962)
.. controls (0.01,1.962) and (0.017,1.964) .. (0.022,1.964)
.. controls (0.032,1.964) and (0.048,1.96) .. (0.07,1.96)
.. controls (0.093,1.96) and (0.092,1.946) .. (0.112,1.943)
.. controls (0.133,1.94) and (0.163,1.929) .. (0.184,1.925)
.. controls (0.206,1.921) and (0.222,1.907) .. (0.233,1.901)
.. controls (0.244,1.896) and (0.282,1.864) .. (0.29,1.856)
.. controls (0.299,1.849) and (0.324,1.83) .. (0.34,1.823)
.. controls (0.357,1.816) and (0.374,1.796) .. (0.381,1.792)
.. controls (0.387,1.788) and (0.406,1.769) .. (0.409,1.76)
.. controls (0.412,1.752) and (0.438,1.728) .. (0.458,1.715)
.. controls (0.477,1.703) and (0.487,1.691) .. (0.489,1.683)
.. controls (0.492,1.675) and (0.493,1.663) .. (0.495,1.656)
.. controls (0.497,1.65) and (0.498,1.626) .. (0.497,1.621)
.. controls (0.496,1.616) and (0.49,1.598) .. (0.497,1.596)
.. controls (0.509,1.618) and (0.525,1.623) .. (0.543,1.631)
.. controls (0.561,1.64) and (0.608,1.642) .. (0.636,1.645)
.. controls (0.664,1.648) and (0.691,1.657) .. (0.704,1.662)
.. controls (0.716,1.667) and (0.765,1.68) .. (0.774,1.683)
.. controls (0.79,1.687) and (0.8,1.677) .. (0.807,1.669)
.. controls (0.818,1.656) and (0.792,1.639) .. (0.773,1.63)
.. controls (0.753,1.621) and (0.724,1.612) .. (0.706,1.61)
.. controls (0.688,1.607) and (0.67,1.58) .. (0.661,1.566)
.. controls (0.652,1.552) and (0.624,1.507) .. (0.617,1.497)
.. controls (0.611,1.487) and (0.554,1.406) .. (0.547,1.395)
.. controls (0.539,1.385) and (0.511,1.332) .. (0.507,1.323)
.. controls (0.502,1.314) and (0.49,1.293) .. (0.484,1.29)
.. controls (0.478,1.286) and (0.466,1.255) .. (0.457,1.241)
.. controls (0.448,1.227) and (0.427,1.204) .. (0.424,1.199)
.. controls (0.424,1.198) and (0.424,1.197) .. (0.426,1.197)
.. controls (0.429,1.197) and (0.435,1.199) .. (0.437,1.202)
.. controls (0.441,1.206) and (0.462,1.21) .. (0.464,1.214)
.. controls (0.465,1.22) and (0.488,1.227) .. (0.498,1.232)
.. controls (0.509,1.238) and (0.527,1.238) .. (0.536,1.244)
.. controls (0.545,1.25) and (0.571,1.26) .. (0.584,1.264)
.. controls (0.597,1.268) and (0.614,1.277) .. (0.624,1.282)
.. controls (0.635,1.287) and (0.67,1.296) .. (0.687,1.299)
.. controls (0.704,1.302) and (0.736,1.317) .. (0.748,1.318)
.. controls (0.758,1.318) and (0.774,1.323) .. (0.789,1.323)
.. controls (0.791,1.323) and (0.793,1.323) .. (0.796,1.323)
.. controls (0.797,1.323) and (0.798,1.322) .. (0.8,1.322)
.. controls (0.814,1.322) and (0.825,1.33) .. (0.835,1.333)
.. controls (0.846,1.335) and (0.863,1.335) .. (0.886,1.341)
.. controls (0.907,1.348) and (0.92,1.373) .. (0.924,1.378)
.. controls (0.928,1.383) and (0.937,1.408) .. (0.937,1.416)
.. controls (0.936,1.425) and (0.949,1.458) .. (0.952,1.465)
.. controls (0.954,1.471) and (0.968,1.49) .. (0.977,1.492)
.. controls (0.986,1.492) and (1.002,1.47) .. (1.012,1.457)
.. controls (1.021,1.444) and (1.032,1.43) .. (1.042,1.417)
.. controls (1.051,1.404) and (1.075,1.384) .. (1.097,1.366)
.. controls (1.119,1.349) and (1.128,1.351) .. (1.139,1.345)
.. controls (1.149,1.339) and (1.177,1.318) .. (1.181,1.315)
.. controls (1.182,1.315) and (1.182,1.318) .. (1.18,1.327)
.. controls (1.178,1.34) and (1.171,1.349) .. (1.164,1.361)
.. controls (1.158,1.372) and (1.155,1.376) .. (1.151,1.398)
.. controls (1.147,1.42) and (1.145,1.43) .. (1.14,1.438)
.. controls (1.134,1.445) and (1.125,1.465) .. (1.119,1.474)
.. controls (1.114,1.483) and (1.108,1.493) .. (1.1,1.5)
.. controls (1.092,1.507) and (1.077,1.523) .. (1.068,1.537)
.. controls (1.059,1.551) and (1.029,1.575) .. (1.018,1.585)
.. controls (1.009,1.592) and (0.992,1.609) .. (0.981,1.62)
.. controls (1.11,1.562) and (1.264,1.454) .. (1.31,1.258)
.. controls (1.319,1.218) and (1.326,1.187) .. (1.333,1.164)
.. controls (1.031,0.475) and (1.088,0.01) .. (1.085,0)
-- (1.141,0.062)
.. controls (1.144,0.071) and (1.089,0.464) .. (1.361,1.085)
.. controls (1.382,1.094) and (1.409,1.108) .. (1.444,1.124)
.. controls (1.607,1.196) and (1.802,1.167) .. (1.932,1.095)
.. controls (1.916,1.097) and (1.892,1.1) .. (1.881,1.102)
.. controls (1.868,1.104) and (1.833,1.112) .. (1.815,1.111)
.. controls (1.81,1.111) and (1.802,1.111) .. (1.796,1.11)
.. controls (1.781,1.11) and (1.767,1.112) .. (1.753,1.113)
.. controls (1.746,1.113) and (1.739,1.112) .. (1.732,1.111)
.. controls (1.722,1.11) and (1.7,1.104) .. (1.691,1.104)
.. controls (1.681,1.104) and (1.671,1.099) .. (1.652,1.088)
.. controls (1.633,1.078) and (1.628,1.077) .. (1.615,1.075)
.. controls (1.602,1.073) and (1.59,1.073) .. (1.579,1.067)
.. controls (1.568,1.061) and (1.564,1.06) .. (1.569,1.059)
.. controls (1.574,1.058) and (1.608,1.049) .. (1.619,1.045)
.. controls (1.63,1.041) and (1.634,1.033) .. (1.662,1.027)
.. controls (1.688,1.021) and (1.719,1.016) .. (1.735,1.016)
.. controls (1.752,1.016) and (1.77,1.015) .. (1.786,1.017)
.. controls (1.803,1.019) and (1.831,1.019) .. (1.835,1.012)
.. controls (1.84,1.005) and (1.833,0.981) .. (1.83,0.975)
.. controls (1.826,0.969) and (1.809,0.939) .. (1.802,0.934)
.. controls (1.794,0.929) and (1.78,0.905) .. (1.779,0.899)
.. controls (1.777,0.892) and (1.767,0.867) .. (1.775,0.847)
.. controls (1.784,0.825) and (1.796,0.812) .. (1.8,0.802)
.. controls (1.805,0.791) and (1.806,0.775) .. (1.818,0.765)
.. controls (1.829,0.754) and (1.836,0.734) .. (1.843,0.724)
.. controls (1.851,0.714) and (1.859,0.68) .. (1.868,0.666)
.. controls (1.877,0.65) and (1.891,0.618) .. (1.894,0.607)
.. controls (1.897,0.595) and (1.9,0.576) .. (1.905,0.564)
.. controls (1.91,0.551) and (1.918,0.525) .. (1.919,0.514)
.. controls (1.92,0.503) and (1.931,0.489) .. (1.934,0.477)
.. controls (1.937,0.465) and (1.945,0.444) .. (1.942,0.439)
.. controls (1.939,0.434) and (1.95,0.416) .. (1.949,0.41)
.. controls (1.948,0.406) and (1.952,0.398) .. (1.954,0.398)
.. controls (1.957,0.403) and (1.962,0.434) .. (1.968,0.45)
.. controls (1.973,0.466) and (1.989,0.495) .. (1.988,0.502)
.. controls (1.987,0.508) and (1.995,0.531) .. (1.999,0.541)
.. controls (2.004,0.55) and (2.028,0.605) .. (2.031,0.617)
.. controls (2.034,0.63) and (2.062,0.724) .. (2.066,0.736)
.. controls (2.069,0.747) and (2.087,0.798) .. (2.092,0.813)
.. controls (2.097,0.829) and (2.106,0.859) .. (2.097,0.875)
.. controls (2.088,0.891) and (2.076,0.92) .. (2.071,0.94)
.. controls (2.066,0.96) and (2.063,0.99) .. (2.078,0.991)
.. controls (2.094,0.992) and (2.102,0.984) .. (2.11,0.975)
.. controls (2.117,0.968) and (2.135,0.92) .. (2.139,0.907)
.. controls (2.143,0.894) and (2.152,0.867) .. (2.168,0.843)
.. controls (2.183,0.82) and (2.212,0.782) .. (2.216,0.762)
.. controls (2.221,0.743) and (2.227,0.728) .. (2.218,0.705)
.. controls (2.225,0.705) and (2.235,0.718) .. (2.238,0.721)
.. controls (2.241,0.725) and (2.26,0.738) .. (2.267,0.74)
.. controls (2.273,0.743) and (2.282,0.75) .. (2.289,0.753)
.. controls (2.292,0.754) and (2.297,0.755) .. (2.302,0.755)
.. controls (2.31,0.755) and (2.322,0.753) .. (2.335,0.749)
.. controls (2.353,0.743) and (2.378,0.739) .. (2.393,0.739)
.. controls (2.401,0.739) and (2.408,0.741) .. (2.416,0.742)
.. controls (2.426,0.742) and (2.439,0.74) .. (2.444,0.738)
.. controls (2.452,0.735) and (2.477,0.734) .. (2.493,0.726)
.. controls (2.509,0.718) and (2.539,0.71) .. (2.551,0.708)
.. controls (2.562,0.706) and (2.61,0.696) .. (2.621,0.692)
.. controls (2.632,0.686) and (2.654,0.683) .. (2.67,0.669)
.. controls (2.687,0.655) and (2.714,0.638) .. (2.73,0.624)
.. controls (2.745,0.61) and (2.755,0.62) .. (2.769,0.602)
.. controls (2.784,0.583) and (2.797,0.575) .. (2.803,0.566)
.. controls (2.807,0.559) and (2.813,0.55) .. (2.817,0.55)
.. controls (2.821,0.553) and (2.812,0.563) .. (2.811,0.571)
.. controls (2.809,0.578) and (2.809,0.589) .. (2.803,0.597)
.. controls (2.796,0.604) and (2.787,0.627) .. (2.785,0.637)
.. controls (2.783,0.647) and (2.77,0.667) .. (2.766,0.671)
.. controls (2.761,0.676) and (2.745,0.692) .. (2.747,0.702)
.. controls (2.749,0.711) and (2.74,0.72) .. (2.737,0.722)
.. controls (2.733,0.725) and (2.716,0.745) .. (2.713,0.755)
.. controls (2.709,0.765) and (2.684,0.79) .. (2.676,0.8)
.. controls (2.668,0.81) and (2.633,0.835) .. (2.626,0.841)
.. controls (2.618,0.848) and (2.61,0.872) .. (2.597,0.881)
.. controls (2.584,0.891) and (2.572,0.894) .. (2.56,0.908)
.. controls (2.549,0.921) and (2.531,0.937) .. (2.525,0.945)
.. controls (2.52,0.952) and (2.509,0.972) .. (2.503,0.983)
.. controls (2.496,0.993) and (2.497,1.01) .. (2.497,1.024)
.. controls (2.496,1.037) and (2.487,1.058) .. (2.46,1.072)
.. controls (2.433,1.087) and (2.403,1.097) .. (2.371,1.104)
.. controls (2.355,1.108) and (2.342,1.109) .. (2.328,1.109)
.. controls (2.311,1.109) and (2.294,1.107) .. (2.269,1.105)
.. controls (2.255,1.104) and (2.24,1.104) .. (2.227,1.104)
.. controls (2.196,1.104) and (2.17,1.107) .. (2.163,1.112)
.. controls (2.154,1.12) and (2.15,1.127) .. (2.158,1.14)
.. controls (2.167,1.152) and (2.179,1.168) .. (2.188,1.175)
.. controls (2.197,1.181) and (2.224,1.2) .. (2.249,1.21)
.. controls (2.274,1.22) and (2.325,1.252) .. (2.338,1.266)
.. controls (2.35,1.28) and (2.366,1.316) .. (2.382,1.336)
.. controls (2.398,1.357) and (2.425,1.397) .. (2.429,1.41)
.. controls (2.434,1.423) and (2.451,1.451) .. (2.453,1.466)
.. controls (2.454,1.481) and (2.464,1.496) .. (2.473,1.511)
.. controls (2.482,1.525) and (2.498,1.565) .. (2.498,1.573)
.. controls (2.497,1.58) and (2.506,1.595) .. (2.512,1.601)
.. controls (2.518,1.607) and (2.539,1.639) .. (2.541,1.641)
-- (2.555,1.661)
.. controls (2.551,1.661) and (2.535,1.651) .. (2.522,1.642)
.. controls (2.509,1.632) and (2.475,1.621) .. (2.457,1.618)
.. controls (2.44,1.614) and (2.432,1.613) .. (2.425,1.607)
.. controls (2.417,1.601) and (2.388,1.587) .. (2.368,1.584)
.. controls (2.348,1.581) and (2.333,1.576) .. (2.322,1.571)
.. controls (2.311,1.565) and (2.269,1.556) .. (2.26,1.55)
.. controls (2.25,1.544) and (2.236,1.531) .. (2.226,1.529)
.. controls (2.216,1.528) and (2.194,1.53) .. (2.185,1.524)
.. controls (2.181,1.522) and (2.177,1.521) .. (2.171,1.521)
.. controls (2.161,1.521) and (2.149,1.524) .. (2.146,1.528)
.. controls (2.141,1.535) and (2.132,1.545) .. (2.126,1.553)
.. controls (2.12,1.561) and (2.112,1.579) .. (2.111,1.584)
.. controls (2.109,1.584) and (2.103,1.574) .. (2.1,1.565)
.. controls (2.097,1.556) and (2.09,1.546) .. (2.077,1.532)
.. controls (2.063,1.517) and (2.065,1.501) .. (2.057,1.486)
.. controls (2.048,1.471) and (2.043,1.45) .. (2.035,1.437)
.. controls (2.026,1.424) and (2.021,1.401) .. (2.02,1.393)
.. controls (2.019,1.385) and (2.007,1.352) .. (1.996,1.341)
.. controls (1.987,1.325) and (1.973,1.334) .. (1.962,1.332)
.. controls (1.951,1.34) and (1.927,1.359) .. (1.919,1.367)
.. controls (1.911,1.375) and (1.901,1.386) .. (1.896,1.393)
.. controls (1.891,1.401) and (1.879,1.403) .. (1.87,1.41)
.. controls (1.86,1.417) and (1.848,1.431) .. (1.838,1.439)
.. controls (1.828,1.448) and (1.818,1.455) .. (1.811,1.457)
.. controls (1.804,1.459) and (1.791,1.471) .. (1.791,1.471)
.. controls (1.791,1.471) and (1.785,1.451) .. (1.785,1.433)
.. controls (1.785,1.415) and (1.782,1.401) .. (1.785,1.392)
.. controls (1.788,1.382) and (1.788,1.372) .. (1.787,1.364)
.. controls (1.786,1.356) and (1.793,1.34) .. (1.794,1.331)
.. controls (1.795,1.322) and (1.805,1.301) .. (1.808,1.295)
.. controls (1.811,1.289) and (1.82,1.268) .. (1.824,1.261)
.. controls (1.827,1.254) and (1.842,1.222) .. (1.85,1.215)
.. controls (1.858,1.209) and (1.874,1.194) .. (1.885,1.189)
.. controls (1.887,1.187) and (1.889,1.186) .. (1.892,1.184)
.. controls (1.724,1.25) and (1.529,1.214) .. (1.382,1.132)
.. controls (1.555,1.517) and (1.831,1.914) .. (2.086,2.167)
.. controls (2.114,2.177) and (2.164,2.199) .. (2.242,2.237)
.. controls (2.442,2.334) and (2.654,2.293) .. (2.848,2.202)
.. controls (2.828,2.205) and (2.799,2.208) .. (2.785,2.21)
.. controls (2.769,2.212) and (2.726,2.222) .. (2.703,2.222)
.. controls (2.696,2.222) and (2.687,2.221) .. (2.679,2.221)
.. controls (2.664,2.221) and (2.642,2.223) .. (2.633,2.224)
.. controls (2.624,2.225) and (2.608,2.223) .. (2.6,2.222)
.. controls (2.588,2.22) and (2.56,2.213) .. (2.549,2.213)
.. controls (2.537,2.213) and (2.524,2.206) .. (2.5,2.192)
.. controls (2.477,2.18) and (2.47,2.18) .. (2.454,2.177)
.. controls (2.439,2.174) and (2.423,2.174) .. (2.41,2.167)
.. controls (2.395,2.16) and (2.392,2.158) .. (2.398,2.157)
.. controls (2.404,2.156) and (2.446,2.145) .. (2.46,2.14)
.. controls (2.474,2.135) and (2.478,2.124) .. (2.512,2.117)
.. controls (2.545,2.11) and (2.583,2.102) .. (2.604,2.103)
.. controls (2.624,2.103) and (2.646,2.104) .. (2.666,2.104)
.. controls (2.675,2.105) and (2.688,2.106) .. (2.699,2.106)
.. controls (2.713,2.106) and (2.725,2.104) .. (2.728,2.098)
.. controls (2.732,2.088) and (2.726,2.061) .. (2.722,2.053)
.. controls (2.717,2.045) and (2.695,2.008) .. (2.686,2.001)
.. controls (2.678,1.995) and (2.66,1.966) .. (2.658,1.958)
.. controls (2.657,1.95) and (2.644,1.918) .. (2.655,1.893)
.. controls (2.665,1.866) and (2.679,1.85) .. (2.685,1.837)
.. controls (2.69,1.824) and (2.692,1.805) .. (2.707,1.791)
.. controls (2.721,1.778) and (2.73,1.753) .. (2.738,1.741)
.. controls (2.747,1.729) and (2.758,1.686) .. (2.768,1.668)
.. controls (2.78,1.649) and (2.798,1.609) .. (2.801,1.595)
.. controls (2.805,1.58) and (2.808,1.557) .. (2.814,1.541)
.. controls (2.821,1.525) and (2.832,1.494) .. (2.833,1.48)
.. controls (2.834,1.466) and (2.847,1.449) .. (2.85,1.434)
.. controls (2.854,1.419) and (2.864,1.392) .. (2.861,1.386)
.. controls (2.858,1.38) and (2.871,1.358) .. (2.87,1.351)
.. controls (2.869,1.346) and (2.873,1.336) .. (2.876,1.336)
.. controls (2.878,1.341) and (2.885,1.381) .. (2.892,1.401)
.. controls (2.899,1.42) and (2.918,1.456) .. (2.917,1.465)
.. controls (2.916,1.473) and (2.927,1.501) .. (2.932,1.513)
.. controls (2.937,1.524) and (2.966,1.593) .. (2.97,1.608)
.. controls (2.975,1.623) and (3.009,1.741) .. (3.014,1.755)
.. controls (3.018,1.769) and (3.04,1.833) .. (3.046,1.852)
.. controls (3.052,1.871) and (3.064,1.91) .. (3.053,1.929)
.. controls (3.042,1.948) and (3.027,1.984) .. (3.021,2.009)
.. controls (3.014,2.034) and (3.013,2.074) .. (3.032,2.074)
.. controls (3.041,2.074) and (3.053,2.069) .. (3.06,2.064)
.. controls (3.064,2.06) and (3.068,2.057) .. (3.07,2.052)
.. controls (3.075,2.042) and (3.1,1.985) .. (3.104,1.969)
.. controls (3.109,1.952) and (3.122,1.918) .. (3.142,1.889)
.. controls (3.161,1.86) and (3.196,1.812) .. (3.201,1.788)
.. controls (3.207,1.764) and (3.216,1.746) .. (3.204,1.717)
.. controls (3.212,1.717) and (3.224,1.733) .. (3.227,1.737)
.. controls (3.232,1.742) and (3.257,1.755) .. (3.263,1.761)
.. controls (3.271,1.77) and (3.293,1.776) .. (3.308,1.779)
.. controls (3.318,1.781) and (3.333,1.777) .. (3.35,1.772)
.. controls (3.372,1.764) and (3.403,1.759) .. (3.421,1.759)
.. controls (3.43,1.76) and (3.44,1.762) .. (3.449,1.762)
.. controls (3.462,1.763) and (3.478,1.76) .. (3.484,1.759)
.. controls (3.493,1.755) and (3.526,1.753) .. (3.545,1.743)
.. controls (3.565,1.732) and (3.602,1.723) .. (3.616,1.721)
.. controls (3.63,1.718) and (3.691,1.706) .. (3.704,1.7)
.. controls (3.718,1.694) and (3.745,1.69) .. (3.766,1.672)
.. controls (3.787,1.655) and (3.82,1.634) .. (3.839,1.617)
.. controls (3.858,1.599) and (3.87,1.611) .. (3.889,1.588)
.. controls (3.907,1.566) and (3.923,1.555) .. (3.93,1.544)
.. controls (3.936,1.535) and (3.943,1.525) .. (3.948,1.525)
.. controls (3.952,1.528) and (3.942,1.54) .. (3.94,1.55)
.. controls (3.939,1.559) and (3.939,1.573) .. (3.931,1.583)
.. controls (3.923,1.592) and (3.911,1.62) .. (3.908,1.632)
.. controls (3.905,1.644) and (3.89,1.669) .. (3.884,1.675)
.. controls (3.878,1.681) and (3.859,1.701) .. (3.861,1.713)
.. controls (3.863,1.725) and (3.851,1.736) .. (3.847,1.738)
.. controls (3.843,1.741) and (3.824,1.766) .. (3.819,1.779)
.. controls (3.814,1.791) and (3.782,1.823) .. (3.772,1.835)
.. controls (3.762,1.847) and (3.719,1.878) .. (3.709,1.887)
.. controls (3.701,1.894) and (3.691,1.923) .. (3.675,1.935)
.. controls (3.659,1.947) and (3.643,1.951) .. (3.628,1.969)
.. controls (3.615,1.985) and (3.592,2.004) .. (3.585,2.013)
.. controls (3.578,2.023) and (3.565,2.049) .. (3.557,2.062)
.. controls (3.549,2.075) and (3.55,2.097) .. (3.55,2.113)
.. controls (3.549,2.13) and (3.538,2.156) .. (3.504,2.174)
.. controls (3.471,2.192) and (3.434,2.205) .. (3.393,2.213)
.. controls (3.373,2.217) and (3.357,2.218) .. (3.339,2.218)
.. controls (3.319,2.218) and (3.297,2.217) .. (3.267,2.215)
.. controls (3.249,2.213) and (3.231,2.213) .. (3.214,2.213)
.. controls (3.176,2.213) and (3.144,2.216) .. (3.135,2.222)
.. controls (3.123,2.232) and (3.118,2.241) .. (3.129,2.256)
.. controls (3.14,2.272) and (3.155,2.293) .. (3.166,2.3)
.. controls (3.178,2.308) and (3.211,2.331) .. (3.242,2.343)
.. controls (3.273,2.355) and (3.337,2.395) .. (3.353,2.413)
.. controls (3.369,2.43) and (3.388,2.475) .. (3.408,2.501)
.. controls (3.428,2.527) and (3.461,2.577) .. (3.466,2.593)
.. controls (3.472,2.609) and (3.493,2.644) .. (3.495,2.663)
.. controls (3.497,2.681) and (3.509,2.7) .. (3.521,2.718)
.. controls (3.532,2.736) and (3.551,2.786) .. (3.551,2.795)
.. controls (3.55,2.804) and (3.562,2.822) .. (3.568,2.829)
.. controls (3.576,2.838) and (3.603,2.877) .. (3.605,2.88)
.. controls (3.605,2.883) and (3.626,2.902) .. (3.623,2.904)
.. controls (3.617,2.904) and (3.598,2.893) .. (3.582,2.881)
.. controls (3.566,2.869) and (3.522,2.855) .. (3.501,2.85)
.. controls (3.479,2.846) and (3.47,2.844) .. (3.46,2.836)
.. controls (3.451,2.828) and (3.414,2.811) .. (3.389,2.808)
.. controls (3.364,2.805) and (3.347,2.8) .. (3.333,2.792)
.. controls (3.319,2.785) and (3.267,2.773) .. (3.255,2.766)
.. controls (3.243,2.758) and (3.227,2.744) .. (3.214,2.742)
.. controls (3.201,2.74) and (3.166,2.74) .. (3.154,2.733)
-- cycle
(1.662,2.695)
.. controls (1.674,2.695) and (1.694,2.667) .. (1.706,2.651)
.. controls (1.718,2.635) and (1.73,2.618) .. (1.742,2.602)
.. controls (1.754,2.585) and (1.784,2.56) .. (1.812,2.538)
.. controls (1.839,2.517) and (1.85,2.519) .. (1.863,2.512)
.. controls (1.875,2.504) and (1.912,2.478) .. (1.916,2.474)
.. controls (1.918,2.474) and (1.917,2.479) .. (1.915,2.491)
.. controls (1.911,2.506) and (1.903,2.518) .. (1.895,2.532)
.. controls (1.887,2.546) and (1.883,2.551) .. (1.879,2.577)
.. controls (1.873,2.604) and (1.871,2.618) .. (1.864,2.627)
.. controls (1.856,2.636) and (1.845,2.662) .. (1.838,2.672)
.. controls (1.831,2.683) and (1.824,2.695) .. (1.814,2.704)
.. controls (1.804,2.712) and (1.786,2.733) .. (1.775,2.751)
.. controls (1.763,2.768) and (1.726,2.797) .. (1.713,2.81)
.. controls (1.702,2.819) and (1.681,2.84) .. (1.666,2.854)
.. controls (1.826,2.782) and (2.018,2.647) .. (2.075,2.403)
.. controls (2.082,2.372) and (2.089,2.347) .. (2.095,2.324)
.. controls (1.738,1.922) and (1.506,1.545) .. (1.356,1.215)
.. controls (1.353,1.243) and (1.353,1.268) .. (1.345,1.293)
.. controls (1.331,1.341) and (1.26,1.536) .. (1.075,1.643)
.. controls (1.078,1.642) and (1.081,1.642) .. (1.083,1.641)
.. controls (1.094,1.636) and (1.117,1.633) .. (1.128,1.632)
.. controls (1.141,1.631) and (1.171,1.638) .. (1.177,1.64)
.. controls (1.185,1.642) and (1.207,1.647) .. (1.213,1.648)
.. controls (1.221,1.65) and (1.243,1.655) .. (1.251,1.66)
.. controls (1.259,1.665) and (1.275,1.67) .. (1.281,1.677)
.. controls (1.286,1.682) and (1.295,1.688) .. (1.303,1.693)
.. controls (1.312,1.696) and (1.321,1.707) .. (1.335,1.718)
.. controls (1.349,1.729) and (1.361,1.747) .. (1.361,1.747)
.. controls (1.361,1.747) and (1.343,1.749) .. (1.338,1.753)
.. controls (1.332,1.758) and (1.32,1.761) .. (1.307,1.763)
.. controls (1.295,1.765) and (1.276,1.766) .. (1.265,1.769)
.. controls (1.254,1.772) and (1.244,1.78) .. (1.235,1.78)
.. controls (1.231,1.779) and (1.226,1.779) .. (1.221,1.779)
.. controls (1.213,1.779) and (1.206,1.78) .. (1.199,1.781)
.. controls (1.188,1.783) and (1.159,1.788) .. (1.146,1.792)
.. controls (1.132,1.796) and (1.131,1.808) .. (1.131,1.824)
.. controls (1.133,1.839) and (1.151,1.868) .. (1.156,1.874)
.. controls (1.162,1.88) and (1.177,1.899) .. (1.181,1.914)
.. controls (1.185,1.929) and (1.2,1.946) .. (1.206,1.962)
.. controls (1.212,1.978) and (1.226,1.988) .. (1.229,2.007)
.. controls (1.231,2.027) and (1.234,2.037) .. (1.24,2.045)
.. controls (1.246,2.054) and (1.251,2.067) .. (1.248,2.067)
.. controls (1.243,2.065) and (1.225,2.059) .. (1.215,2.059)
.. controls (1.209,2.059) and (1.202,2.057) .. (1.194,2.057)
.. controls (1.19,2.057) and (1.185,2.059) .. (1.182,2.059)
.. controls (1.175,2.059) and (1.156,2.074) .. (1.155,2.086)
.. controls (1.153,2.097) and (1.139,2.113) .. (1.133,2.121)
.. controls (1.128,2.13) and (1.128,2.149) .. (1.127,2.16)
.. controls (1.126,2.171) and (1.106,2.209) .. (1.104,2.222)
.. controls (1.102,2.234) and (1.096,2.249) .. (1.086,2.266)
.. controls (1.075,2.283) and (1.068,2.314) .. (1.068,2.324)
.. controls (1.068,2.334) and (1.064,2.341) .. (1.056,2.357)
.. controls (1.054,2.359) and (1.054,2.362) .. (1.052,2.365)
.. controls (1.058,2.368) and (1.064,2.369) .. (1.068,2.372)
.. controls (1.081,2.378) and (1.103,2.379) .. (1.115,2.387)
.. controls (1.126,2.394) and (1.158,2.407) .. (1.174,2.411)
.. controls (1.19,2.416) and (1.21,2.428) .. (1.224,2.434)
.. controls (1.237,2.441) and (1.28,2.452) .. (1.302,2.455)
.. controls (1.323,2.459) and (1.363,2.475) .. (1.378,2.477)
.. controls (1.399,2.481) and (1.42,2.483) .. (1.442,2.484)
.. controls (1.459,2.484) and (1.473,2.493) .. (1.485,2.497)
.. controls (1.499,2.5) and (1.521,2.5) .. (1.548,2.508)
.. controls (1.574,2.516) and (1.591,2.546) .. (1.596,2.552)
.. controls (1.601,2.559) and (1.613,2.59) .. (1.612,2.601)
.. controls (1.611,2.611) and (1.628,2.652) .. (1.631,2.661)
.. controls (1.634,2.669) and (1.651,2.692) .. (1.662,2.695)
-- cycle
(2.667,2.634)
.. controls (2.667,2.63) and (2.666,2.625) .. (2.666,2.621)
.. controls (2.667,2.599) and (2.663,2.581) .. (2.666,2.57)
.. controls (2.669,2.558) and (2.67,2.546) .. (2.668,2.536)
.. controls (2.666,2.526) and (2.674,2.506) .. (2.676,2.494)
.. controls (2.677,2.483) and (2.69,2.458) .. (2.694,2.45)
.. controls (2.698,2.443) and (2.709,2.418) .. (2.714,2.409)
.. controls (2.718,2.399) and (2.737,2.359) .. (2.747,2.351)
.. controls (2.757,2.343) and (2.776,2.324) .. (2.79,2.318)
.. controls (2.792,2.316) and (2.795,2.314) .. (2.798,2.312)
.. controls (2.614,2.383) and (2.404,2.36) .. (2.225,2.285)
.. controls (2.212,2.278) and (2.203,2.273) .. (2.184,2.26)
.. controls (2.199,2.274) and (2.214,2.288) .. (2.23,2.302)
.. controls (2.374,2.433) and (2.521,2.543) .. (2.667,2.634)
-- cycle;
\end{tikzpicture}
}
}