File: copyright

package info (click to toggle)
musescore 2.0.3%2Bdfsg1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 202,532 kB
  • ctags: 58,769
  • sloc: cpp: 257,595; xml: 172,226; ansic: 139,931; python: 6,565; sh: 6,383; perl: 423; makefile: 290; awk: 142; pascal: 67; sed: 3
file content (1272 lines) | stat: -rw-r--r-- 55,132 bytes parent folder | download | duplicates (2)
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
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: MuseScore
Upstream-Contact: https://musescore.org/
Source: https://github.com/musescore/MuseScore/
Copyright: 2015, Werner Schweer and others
License: GPL-2 with Font exception
Files-Excluded: *.pdf
                thirdparty/rtf2html/rtf2html
Comment: PDFs and binary files removed to comply with the DFSG.

License: GPL-2 with Font exception
 If you want to redistribute MuseScore, you must comply with the GNU
 General Public License (see details below). This license applies to
 MuseScore with the following exception:
 .
 If you create a document which uses fonts included in MuseScore, and
 embed this font or unaltered portions of this font into the document,
 then this font does not by itself cause the resulting document to be
 covered by the GNU General Public License. This exception does not
 however invalidate any other reasons why the document might be covered
 by the GNU General Public License. If you modify this font, you may
 extend this exception to your version of the font, but you are not
 obligated to do so. If you do not wish to do so, delete this exception
 statement from your version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License along
 with this package; if not, write to the Free Software Foundation, Inc.,
 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
 .
 On Debian systems, the full text of the GNU General Public License
 version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.

Files: *
Copyright: 2002-2015, Werner Schweer and others
License: GPL-2

Files: aeolus/addsynth.cpp
       aeolus/addsynth.h
       aeolus/aeolus.cpp
       aeolus/asection.cpp
       aeolus/asection.h
       aeolus/audio.cpp
       aeolus/callbacks.h
       aeolus/division.cpp
       aeolus/division.h
       aeolus/exp2ap.cpp
       aeolus/global.h
       aeolus/messages.h
       aeolus/model.cpp
       aeolus/model.h
       aeolus/prbsgen.h
       aeolus/rankwave.cpp
       aeolus/rankwave.h
       aeolus/rngen.cpp
       aeolus/rngen.h
       aeolus/scales.cpp
       aeolus/scales.h
       effects/chorus/*
       effects/zita1/zita.cpp
       effects/zita1/zita.h
Copyright: 2003-2010, Fons Adriaensen <fons@kokkinizita.net>
License: GPL-2+

Files: awl/fastlog.h
Copyright: Laurent de Soras <laurent@ohmforce.com>
License: WTFPL-2

Files: build/ECMQt4To5Porting.cmake
Copyright: 2005-2011, Kitware, Inc.
License: BSD-3-clause

Files: build/FindPulseAudio.cmake
Copyright: 2008, Andreas Schneider <mail@cynapses.org>
                 Lasse Kärkkäinen <tronic>
License: BSD-3-clause

Files: build/travis/job2_AppImage/bintray.sh
Copyright: 2004-2016, Simon Peter
License: Expat

Files: fluid/chan.cpp
       fluid/conv.cpp
       fluid/conv.h
       fluid/dsp.cpp
       fluid/fluid.cpp
       fluid/fluid.h
       fluid/gen.cpp
       fluid/gen.h
       fluid/mod.cpp
       fluid/sfont.cpp
       fluid/sfont.h
       fluid/voice.cpp
       fluid/voice.h
Copyright: 2003, Peter Hanappe and others.
License: GPL-2+

Files: fluid/tuning.cpp
       fluid/tuning.h
Copyright: 2002-2005, Nasca Octavian Paul
License: GPL-2

Files: fonts/bravura/*
Copyright: 2015, Steinberg Media Technologies GmbH <http://www.steinberg.net/>, with Reserved Font Name "Bravura".
License: OFL-1.1

Files: fonts/FreeSans*.sfd
       fonts/FreeSans*.ttf
       fonts/FreeSerif*.sfd
       fonts/FreeSerif*.ttf
Copyright: 2002-2012, GNU Freefont contributors.
License: GPL-3+ with Font exception

Files: fonts/gootville/*
Copyright: Grzegorz Pruchniakowski
License: OFL-1

Files: fonts/mscore-BC.sfd
       fonts/mscore-BC.ttf
Copyright: 2012, Maurizio M. Gavioli
License: GPL-1+ with Font exception

Files: fonts/mscore/MScoreText.sfd
Copyright: 2014, Werner Schweer and others <http://musescore.org>, with Reserved Font Name "MScore Text".
License: OFL-1.1

Files: mscore/alsa.cpp
       mscore/alsa.h
       mscore/alsamidi.h
       mscore/mididriver.cpp
       mscore/mididriver.h
Copyright:      2002, Paul Davis
                2003, Fons Adriaensen
           2002-2015, Werner Schweer and others.
License: GPL-2

Files: mscore/click.h
Copyright: 2002, Paul Davis
License: GPL-2+

Files: mscore/importgtp-gp6.cpp
Copyright: 2014, John Pirie
License: GPL-2

Files: mscore/paintengine_p.h
       mscore/svggenerator.cpp
       mscore/svggenerator.h
Copyright: 2011 Nokia Corporation and/or its subsidiary(-ies) <qt-info@nokia.com>
License: LGPL-2.1 with Nokia Qt LGPL Exception 1.1 or GPL-3

Files: mscore/schema/*
Copyright: 2004-2011, Recordare LLC
License: MusicXML-3.0

Files: mstyle/*.cpp
       mstyle/*.h
Copyright: 2009-2010, Hugo Pereira Da Costa <hugo.pereira@free.fr>
License: Expat

Files: mstyle/colorscheme.cpp
       mstyle/colorscheme.h
Copyright: 2007, Matthew Woehlke <mw_triad@users.sourceforge.net>
License: GPL-2+

Files: mstyle/tileset.cpp
       mstyle/tileset.h
Copyright:      2007, Matthew Woehlke <mw_triad@users.sourceforge.net>
                2008, Long Huynh Huu <long.upcase@googlemail.com>
           2009-2010, Hugo Pereira Da Costa <hugo@oxygen-icons.org>
License: GPL-2

Files: mstyle/colorutils.cpp
       mstyle/mconfig.cpp
       mstyle/mconfig.h
       mstyle/mstyle.cpp
       mstyle/mstyle.h
       mstyle/stylehelper.cpp
       mstyle/stylehelper.h
Copyright: 2010 Werner Schweer and others
License: GPL-2

Files: share/plugins/abc_import.qml
Copyright: 2013, Stephane Groleau (vgstef)
License: GPL-2

Files: share/plugins/colornotes.qml
Copyright:      2012, Werner Schweer
           2013-2015, Nicolas Froment, Joachim Schmitz
                2014, Jörn Eichler
License: GPL-2

Files: share/plugins/notenames.qml
Copyright:      2012, Werner Schweer
           2013-2014, Joachim Schmitz
                2014, Jörn Eichler
License: GPL-2

Files: share/sound/FluidR3*
Copyright: 2000-2002, 2008, Frank Wen <getfrank@gmail.com>
                 2014-2015, Michael Cowgill
License: Expat

Files: share/wallpaper/paper4.png
       share/wallpaper/paper5.png
Copyright: 2008, Sun Microsystems, Inc
           2008, Toby Smithe
License: LGPL-3

Files: thirdparty/beatroot/*
Copyright: 2011, Simon Dixon, Chris Cannam and QMUL
License: GPL-2+

Files: thirdparty/diff/*
Copyright: 2008, Google Inc
License: Apache-2.0

Files: thirdparty/freetype/*
Copyright: 1996-2015 David Turner, Robert Wilhelm, and Werner Lemberg
           1996-2009 Just van Rossum
           2002-2012 Roberto Alameda
           2003 Huw D M Davies for Codeweavers
           2003-2012 Masatake YAMATO, Redhat K.K.
           2004-2012 Albert Chin-A-Young
           2004-2012 Suzuki Toshiya
           2007 Dmitry Timoshkov for Codeweavers
           2007-2011 Rahul Bhalerao <rahul.bhalerao@redhat.com>
           2007-2012 Derek Clegg, Michael Toftdal
           2009-2011 Oran Agra, Mickey Gabel
           2010, 2012 Joel Klinghed
License: GPL-2+ or FTL

Files: thirdparty/intervaltree/*
Copyright: 2011, Erik Garrison <erik.garrison@gmail.com>
License: Expat

Files: thirdparty/kQOAuth/*
Copyright: Johan Paul <johan.paul@gmail.com>
License: LGPL-2.1+

Files: thirdparty/ofqf/*
Copyright: 2007, Arnold Krille <arnold@arnoldarts.de>
License: GPL-2+

Files: thirdparty/openssl/include/openssl/*
Copyright: 1995-1998, Eric Young <eay@cryptsoft.com>
License: SSLeay

Copyright: 1999-2010, The OpenSSL Project. All rights reserved.
Files: thirdparty/openssl/include/openssl/aes.h
       thirdparty/openssl/include/openssl/asn1t.h
       thirdparty/openssl/include/openssl/camellia.h
       thirdparty/openssl/include/openssl/cmac.h
       thirdparty/openssl/include/openssl/cms.h
       thirdparty/openssl/include/openssl/des_old.h
       thirdparty/openssl/include/openssl/dso.h
       thirdparty/openssl/include/openssl/dtls1.h
       thirdparty/openssl/include/openssl/ecdh.h
       thirdparty/openssl/include/openssl/ecdsa.h
       thirdparty/openssl/include/openssl/ec.h
       thirdparty/openssl/include/openssl/engine.h
       thirdparty/openssl/include/openssl/e_os2.h
       thirdparty/openssl/include/openssl/krb5_asn.h
       thirdparty/openssl/include/openssl/kssl.h
       thirdparty/openssl/include/openssl/modes.h
       thirdparty/openssl/include/openssl/ocsp.h
       thirdparty/openssl/include/openssl/ossl_typ.h
       thirdparty/openssl/include/openssl/pem2.h
       thirdparty/openssl/include/openssl/pkcs12.h
       thirdparty/openssl/include/openssl/pqueue.h
       thirdparty/openssl/include/openssl/safestack.h
       thirdparty/openssl/include/openssl/srp.h
       thirdparty/openssl/include/openssl/symhacks.h
       thirdparty/openssl/include/openssl/ts.h
       thirdparty/openssl/include/openssl/ui_compat.h
       thirdparty/openssl/include/openssl/ui.h
       thirdparty/openssl/include/openssl/x509v3.h
License: OpenSSL

Files: thirdparty/openssl/include/openssl/bn.h
       thirdparty/openssl/include/openssl/crypto.h
       thirdparty/openssl/include/openssl/ssl3.h
Copyright: 1995-1998, Eric Young <eay@cryptsoft.com>
           1998-2006, The OpenSSL Project. All rights reserved.
                2002, Sun Microsystems, Inc. ALL RIGHTS RESERVED.
License: SSLeay and OpenSSL

Files: thirdparty/openssl/include/openssl/err.h
Copyright: 1995-1998, Eric Young <eay@cryptsoft.com>
           1998-2002, The OpenSSL Project. All rights reserved.
License: SSLeay and OpenSSL

Files: thirdparty/openssl/include/openssl/seed.h
Copyright: 1998-2007, The OpenSSL Project. All rights reserved.
                2007, KISA(Korea Information Security Agency). All rights reserved.
License: SSLkisa and OpenSSL

Files: thirdparty/openssl/include/openssl/srtp.h
Copyright: 1995-1998, Eric Young <eay@cryptsoft.com>
           1998-2002, The OpenSSL Project. All rights reserved.
                2006, Network Resonance, Inc.
                2011, RTFM, Inc.
License: SSLeay and OpenSSL

Files: thirdparty/openssl/include/openssl/ssl.h
       thirdparty/openssl/include/openssl/tls1.h
Copyright: 1995-1998, Eric Young <eay@cryptsoft.com>
           1998-2007, The OpenSSL Project. All rights reserved.
                2002, Sun Microsystems, Inc. ALL RIGHTS RESERVED.
                2005, Nokia. All rights reserved.
License: SSLeay and OpenSSL

Files: thirdparty/portmidi/*
Copyright: 1999-2000, Ross Bencina and Phil Burk
           2001-2006, Roger B. Dannenberg
License: Expat

Files: thirdparty/portmidi/pm_mac/readbinaryplist.c
Copyright: 2007, Jens Ayton
           2008, Roger B. Dannenberg
License: Expat

Files: thirdparty/qzip/*
Copyright: 2012, Nokia Corporation and/or its subsidiary(-ies) <qt-info@nokia.com>
License: LGPL-2.1 with Nokia Qt LGPL Exception 1.1 or GPL-3

Files: thirdparty/rtf2html/*
Copyright: 2003, Valentin Lavrinenko <vlavrinenko@users.sourceforge.net>
License: LGPL-2.1+

Files: thirdparty/singleapp/*
Copyright: 2013 Digia Plc and/or its subsidiary(-ies). <http://www.qt-project.org/legal>
License: BSD-3-clause

Files: thirdparty/xmlstream/*
Copyright: 2013 Digia Plc and/or its subsidiary(-ies). <http://www.qt-project.org/legal>
License: LGPL-2.1 with Digia Qt LGPL Exception 1.1 or GPL-3

Files: *CMakeLists.txt
Copyright: 2002-2015, Werner Schweer and others
License: GPL-2

License: Apache-2.0
 Copyright [yyyy] [name of copyright owner]
 .
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
 You may obtain a copy of the License at
 .
   http://www.apache.org/licenses/LICENSE-2.0
 .
 Unless required by applicable law or agreed to in writing, software
 distributed under the License is distributed on an "AS IS" BASIS,
 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 .
 On Debian systems, the full text of the Apache License, Version 2.0
 can be found in the file `/usr/share/common-licenses/Apache-2.0'.

License: BSD-3-clause
 Copyright (c) <year> <owner>.
 All rights reserved.
 .
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
 1. Redistributions of source code must retain the above copyright
 notice, this list of conditions and the following disclaimer.
 .
 2. Redistributions in binary form must reproduce the above copyright
 notice, this list of conditions and the following disclaimer in the
 documentation and/or other materials provided with the distribution.
 .
 3. Neither the name of the copyright holder nor the names of its
 contributors may be used to endorse or promote products derived
 from this software without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

License: Expat
 Copyright (c) <year> <owner>
 .
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
 "Software"), to deal in the Software without restriction, including
 without limitation the rights to use, copy, modify, merge, publish,
 distribute, sublicense, and/or sell copies of the Software, and to
 permit persons to whom the Software is furnished to do so, subject to
 the following conditions:
 .
 The above copyright notice and this permission notice shall be
 included in all copies or substantial portions of the Software.
 .
 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
 IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

License: FTL
                    The FreeType Project LICENSE
                    ----------------------------
 .
                            2000-Feb-08
 .
                       Copyright 1996-2000 by
          David Turner, Robert Wilhelm, and Werner Lemberg
 .
 .
 .
 Introduction
 ============
 .
  The FreeType  Project is distributed in  several archive packages;
  some of them may contain, in addition to the FreeType font engine,
  various tools and  contributions which rely on, or  relate to, the
  FreeType Project.
 .
  This  license applies  to all  files found  in such  packages, and
  which do not  fall under their own explicit  license.  The license
  affects  thus  the  FreeType   font  engine,  the  test  programs,
  documentation and makefiles, at the very least.
 .
  This  license   was  inspired  by  the  BSD,   Artistic,  and  IJG
  (Independent JPEG  Group) licenses, which  all encourage inclusion
  and  use of  free  software in  commercial  and freeware  products
  alike.  As a consequence, its main points are that:
 .
    o We don't promise that this software works. However, we will be
      interested in any kind of bug reports. (`as is' distribution)
 .
    o You can  use this software for whatever you  want, in parts or
      full form, without having to pay us. (`royalty-free' usage)
 .
    o You may not pretend that  you wrote this software.  If you use
      it, or  only parts of it,  in a program,  you must acknowledge
      somewhere  in  your  documentation  that  you  have  used  the
      FreeType code. (`credits')
 .
  We  specifically  permit  and  encourage  the  inclusion  of  this
  software, with  or without modifications,  in commercial products.
  We  disclaim  all warranties  covering  The  FreeType Project  and
  assume no liability related to The FreeType Project.
 .
 .
 Legal Terms
 ===========
 .
 0. Definitions
 --------------
 .
  Throughout this license,  the terms `package', `FreeType Project',
  and  `FreeType  archive' refer  to  the  set  of files  originally
  distributed  by the  authors  (David Turner,  Robert Wilhelm,  and
  Werner Lemberg) as the `FreeType Project', be they named as alpha,
  beta or final release.
 .
  `You' refers to  the licensee, or person using  the project, where
  `using' is a generic term including compiling the project's source
  code as  well as linking it  to form a  `program' or `executable'.
  This  program is  referred to  as  `a program  using the  FreeType
  engine'.
 .
  This  license applies  to all  files distributed  in  the original
  FreeType  Project,   including  all  source   code,  binaries  and
  documentation,  unless  otherwise  stated   in  the  file  in  its
  original, unmodified form as  distributed in the original archive.
  If you are  unsure whether or not a particular  file is covered by
  this license, you must contact us to verify this.
 .
  The FreeType  Project is copyright (C) 1996-2000  by David Turner,
  Robert Wilhelm, and Werner Lemberg.  All rights reserved except as
  specified below.
 .
 1. No Warranty
 --------------
 .
  THE FREETYPE PROJECT  IS PROVIDED `AS IS' WITHOUT  WARRANTY OF ANY
  KIND, EITHER  EXPRESS OR IMPLIED,  INCLUDING, BUT NOT  LIMITED TO,
  WARRANTIES  OF  MERCHANTABILITY   AND  FITNESS  FOR  A  PARTICULAR
  PURPOSE.  IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS
  BE LIABLE  FOR ANY DAMAGES CAUSED  BY THE USE OR  THE INABILITY TO
  USE, OF THE FREETYPE PROJECT.
 .
 2. Redistribution
 -----------------
 .
  This  license  grants  a  worldwide, royalty-free,  perpetual  and
  irrevocable right  and license to use,  execute, perform, compile,
  display,  copy,   create  derivative  works   of,  distribute  and
  sublicense the  FreeType Project (in  both source and  object code
  forms)  and  derivative works  thereof  for  any  purpose; and  to
  authorize others  to exercise  some or all  of the  rights granted
  herein, subject to the following conditions:
 .
    o Redistribution  of source code  must retain this  license file
      (`LICENSE.TXT') unaltered; any additions, deletions or changes
      to   the  original   files  must   be  clearly   indicated  in
      accompanying  documentation.   The  copyright notices  of  the
      unaltered, original  files must be preserved in  all copies of
      source files.
 .
    o Redistribution in binary form must provide a  disclaimer  that
      states  that  the software is based in part of the work of the
      FreeType Team,  in  the  distribution  documentation.  We also
      encourage you to put an URL to the FreeType web page  in  your
      documentation, though this isn't mandatory.
 .
  These conditions  apply to any  software derived from or  based on
  the FreeType Project,  not just the unmodified files.   If you use
  our work, you  must acknowledge us.  However, no  fee need be paid
  to us.
 .
 3. Advertising
 --------------
 .
  Neither the  FreeType authors and  contributors nor you  shall use
  the name of the  other for commercial, advertising, or promotional
  purposes without specific prior written permission.
 .
  We suggest,  but do not require, that  you use one or  more of the
  following phrases to refer  to this software in your documentation
  or advertising  materials: `FreeType Project',  `FreeType Engine',
  `FreeType library', or `FreeType Distribution'.
 .
  As  you have  not signed  this license,  you are  not  required to
  accept  it.   However,  as  the FreeType  Project  is  copyrighted
  material, only  this license, or  another one contracted  with the
  authors, grants you  the right to use, distribute,  and modify it.
  Therefore,  by  using,  distributing,  or modifying  the  FreeType
  Project, you indicate that you understand and accept all the terms
  of this license.
 .
 4. Contacts
 -----------
 .
  There are two mailing lists related to FreeType:
 .
    o freetype@freetype.org
 .
      Discusses general use and applications of FreeType, as well as
      future and  wanted additions to the  library and distribution.
      If  you are looking  for support,  start in  this list  if you
      haven't found anything to help you in the documentation.
 .
    o devel@freetype.org
 .
      Discusses bugs,  as well  as engine internals,  design issues,
      specific licenses, porting, etc.
 .
    o http://www.freetype.org
 .
      Holds the current  FreeType web page, which will  allow you to
      download  our  latest  development  version  and  read  online
      documentation.
 .
  You can also contact us individually at:
 .
    David Turner      <david.turner@freetype.org>
    Robert Wilhelm    <robert.wilhelm@freetype.org>
    Werner Lemberg    <werner.lemberg@freetype.org>

License: GPL-1+ with Font exception
 This font is distributed under the GNU General Public License. As a
 special exception, if you create a document which uses this font, and
 embed this font or unaltered portions of this font into the document,
 this font does not by itself cause the resulting document to be covered
 by the GNU General Public License.
 .
 On Debian systems, the full text of the GNU General Public
 License version 1 can be found in the file
 `/usr/share/common-licenses/GPL-1'.

License: GPL-2
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License version 2.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software Foundation,
 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 .
 On Debian systems, the full text of the GNU General Public License
 version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.

License: GPL-2+
 This program is free software; you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License along
 with this program; if not, write to the Free Software Foundation, Inc.,
 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 .
 On Debian systems, the full text of the GNU General Public License
 version 2 can be found in the file `/usr/share/common-licenses/GPL-2'.

License: GPL-3
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 .
 On Debian systems, the full text of the GNU General Public License
 version 3 can be found in the file `/usr/share/common-licenses/GPL-3'.

License: GPL-3+ with Font exception
 This computer font is part of GNU FreeFont. It is free software: you
 can redistribute it and/or modify it under the terms of the GNU General
 Public License as published by the Free Software Foundation, either
 version 3 of the License, or (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU General Public License for more details.
 .
 You should have received a copy of the GNU General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 .
 As a special exception, if you create a document which uses this
 font, and embed this font or unaltered portions of this font into
 the document, this font does not by itself cause the resulting
 document to be covered by the GNU General Public License. This
 exception does not however invalidate any other reasons why the
 document might be covered by the GNU General Public License. If
 you modify this font, you may extend this exception to your version
 of the font, but you are not obligated to do so. If you do not wish
 to do so, delete this exception statement from your version.
 .
 On Debian systems, the full text of the GNU General Public
 License version 3 can be found in the file
 `/usr/share/common-licenses/GPL-3'.

License: LGPL-2.1+
 This library is free software; you can redistribute it and/or
 modify it under the terms of the GNU Lesser General Public
 License as published by the Free Software Foundation; either
 version 2.1 of the License, or (at your option) any later version.
 .
 This library is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 Lesser General Public License for more details.
 .
 You should have received a copy of the GNU Lesser General Public
 License along with this library; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 .
 On Debian systems, the complete text of the GNU Lesser General Public
 License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1`.

License: LGPL-2.1 with Digia Qt LGPL Exception 1.1
 GNU Lesser General Public License version 2.1:
 This file may be used under the terms of the GNU Lesser General Public
 License version 2.1 as published by the Free Software Foundation and
 appearing in the file LICENSE.LGPL included in the packaging of this
 file. Please review the following information to ensure the GNU Lesser
 General Public License version 2.1 requirements will be met:
 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 .
 In addition, as a special exception, Digia gives you certain additional
 rights. These rights are described in the Digia Qt LGPL Exception
 version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
 .
 On Debian systems, the complete text of the GNU Lesser General Public
 License version 2.1 can be found in `/usr/share/common-licenses/LGPL-2.1`.
 .
 Digia Qt LGPL Exception version 1.1:
 As an additional permission to the GNU Lesser General Public License version
 2.1, the object code form of a "work that uses the Library" may incorporate
 material from a header file that is part of the Library.  You may distribute
 such object code under terms of your choice, provided that:
     (i)   the header files of the Library have not been modified; and
     (ii)  the incorporated material is limited to numerical parameters, data
           structure layouts, accessors, macros, inline functions and
           templates; and
     (iii) you comply with the terms of Section 6 of the GNU Lesser General
           Public License version 2.1.
 .
 Moreover, you may apply this exception to a modified version of the Library,
 provided that such modification does not involve copying material from the
 Library into the modified Library's header files unless such material is
 limited to (i) numerical parameters; (ii) data structure layouts;
 (iii) accessors; and (iv) small macros, templates and inline functions of
 five lines or less in length.
 .
 Furthermore, you are not required to apply this additional permission to a
 modified version of the Library.

License: LGPL-2.1 with Nokia Qt LGPL Exception 1.1
 This file may be used under the terms of the GNU Lesser General Public
 License version 2.1 as published by the Free Software Foundation and
 appearing in the file LICENSE.LGPL included in the packaging of this
 file. Please review the following information to ensure the GNU Lesser
 General Public License version 2.1 requirements will be met:
 http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
 .
 On Debian systems, the full text of the GNU Lesser General Public License
 version 2.1 can be found in the file `/usr/share/common-licenses/LGPL-2.1'.
 .
 In addition, as a special exception, Nokia gives you certain additional
 rights. These rights are described in the Nokia Qt LGPL Exception
 version 1.1 (immediately below).
 .
 Nokia Qt LGPL Exception version 1.1
 .
 As an additional permission to the GNU Lesser General Public License
 version 2.1, the object code form of a "work that uses the Library"
 may incorporate material from a header file that is part of the
 Library.  You may distribute such object code under terms of your
 choice, provided that:
 (i) the header files of the Library have not been modified; and
 (ii) the incorporated material is limited to numerical parameters,
 data structure layouts, accessors, macros, inline functions and
 templates; and
 (iii) you comply with the terms of Section 6 of the GNU
 Lesser General Public License version 2.1.
 .
 Moreover, you may apply this exception to a modified version of the
 Library, provided that such modification does not involve copying
 material from the Library into the modified Library?s header files
 unless such material is limited to (i) numerical parameters; (ii) data
 structure layouts; (iii) accessors; and (iv) small macros, templates
 and inline functions of five lines or less in length.
 .
 Furthermore, you are not required to apply this additional permission
 to a modified version of the Library.

License: LGPL-3
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU Lesser General Public License as published by
 the Free Software Foundation, either version 3 of the License, or
 (at your option) any later version.
 .
 This program is distributed in the hope that it will be useful,
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 GNU Lesser General Public License for more details.
 .
 You should have received a copy of the GNU Lesser General Public License
 along with this program.  If not, see <http://www.gnu.org/licenses/>.
 .
 On Debian systems, the full text of the GNU Lesser General Public License
 version 3 can be found in the file `/usr/share/common-licenses/LGPL-3`.

License: MusicXML-3.0
 MusicXML™ Public License Version 3.0
 .
 This MusicXML™ work (including software, documents, or other related
 items) is being provided by the Copyright Holder under the following
 license. By obtaining, using and/or copying this work, each Contributor
 and Recipient (hereinafter, collectively known as "Licensee") agree that
 he/she has read, understood, and will comply with the following terms and
 conditions:
 .
 A. DEFINITIONS
 .
 "Copyright Holder" means MakeMusic, Inc.
 .
 "Contribution" means:
 .
 in the case of MakeMusic, Inc., the Original Program, and
 in the case of each Contributor,
 changes to the Program, and
 additions to the Program;
 where such changes and/or additions to the Program originate from and are
 distributed by that particular Contributor. A Contribution 'originates'
 from a Contributor if it was added to the Program by such Contributor
 itself or anyone acting on such Contributor's behalf. Contributions do not
 include additions to the Program which: (i) are separate modules of
 software distributed in conjunction with the Program under their own
 license agreement, and (ii) are not derivative works of the Program.
 "Contributor" means MakeMusic, Inc. and any other entity that distributes
 the Program.
 .
 "MusicXML™ Mark" means the MusicXML™ trademark owned by MakeMusic, Inc.
 .
 "Original Program" means the original version of the software accompanying
 this Agreement as released by MakeMusic, Inc., including source code,
 object code and documentation, if any.
 .
 "Program" means the Original Program and Contributions.
 .
 "Recipient" means anyone who receives the Program under this Agreement,
 including all Contributors.
 .
 B. GRANT OF RIGHTS
 .
 Permission to use, copy, modify, and distribute the Program, with or
 without modification, for any purpose and without fee or royalty is hereby
 granted, provided that each Recipient include the following on ALL copies
 of the Program or portions thereof, including modifications, that he/she
 make:
 .
 The full text of this License in a location viewable to users of the
 redistributed or derivative work.
 .
 Any pre-existing intellectual property disclaimers, notices, or terms and
 conditions. If none exist, a short notice of the following form (hypertext
 is preferred, text is permitted) should be used within the body of any
 redistributed or derivative code: "© MakeMusic, Inc. All rights reserved.
 http://www.makemusic.com"
 .
 Notice of any changes or modifications to the MusicXML™ files, including
 the date changes were made. (We recommend you provide URLs to the location
 from which the code is derived.)
 .
 In addition, creators of derivative works must include the full text of
 this License in a location viewable to users of the derivative work.
 .
 Title to copyright in the Program will at all times remain with Copyright
 Holder.
 .
 C. NO WARRANTY
 .
 EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS PROVIDED
 ON AN "AS IS" BASIS, AND COPYRIGHT HOLDER MAKES NO WARRANTIES OR
 CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT
 LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
 MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
 solely responsible for determining the appropriateness of using and
 distributing the Program and assumes all risks associated with its
 exercise of rights under this Agreement, including but not limited to the
 risks and costs of program errors, compliance with applicable laws, damage
 to or loss of data, programs or equipment, and unavailability or
 interruption of operations.
 .
 D. DISCLAIMER OF LIABILITY
 .
 EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER COPYRIGHT HOLDER
 NOR ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT,
 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING
 WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF
 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR DISTRIBUTION
 OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED HEREUNDER, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
 .
 E. TRADEMARK
 .
 1. The MusicXML™ Mark (or a derivative Mark, such as MusicXML™ Plus)
 may not be used to identify any product or service not originating from or
 licensed by Copyright Holder without specific, written prior permission.
 However, it is acceptable for a Contributor product or service to be
 described as being MusicXML™-compatible, assuming that the claim is true
 in Copyright Holder’s reasonable judgment.
 .
 2. This License does not grant any rights to use any other trademarks
 owned by Copyright Holder, including without limitation "Recordare®",
 "Dolet®", and "In the Beginning Was the Note®", even if such marks are
 included in the Program. For purposes of clarification and the avoidance
 of doubt, the trademarks "Recordare®", "Dolet®", and "In the Beginning
 Was the Note®" must not be used to endorse or promote Contributor
 versions of the Program without the prior written permission of Copyright
 Holder.
 .
 3. All rights not expressly granted herein by Copyright Holder with
 respect to the MusicXML™ Mark or any other trademarks owned by Copyright
 Holder are reserved by and to Copyright Holder.
 .
 F. GENERAL
 .
 If any provision of this Agreement is invalid or unenforceable under
 applicable law, it shall not affect the validity or enforceability of the
 remainder of the terms of this Agreement, and without further action by
 the parties hereto, such provision shall be reformed to the minimum extent
 necessary to make such provision valid and enforceable.
 .
 All Recipient's rights under this Agreement shall terminate if it fails to
 comply with any of the material terms or conditions of this Agreement and
 does not cure such failure in a reasonable period of time after becoming
 aware of such noncompliance. If all Recipient's rights under this
 Agreement terminate, Recipient agrees to cease use and distribution of the
 Program as soon as reasonably practicable. However, Recipient's
 obligations under this Agreement and any licenses granted by Recipient
 relating to the Program shall continue and survive.
 .
 MakeMusic, Inc. may publish new versions (including revisions) of this
 Agreement from time to time. Each new version of the Agreement will be
 given a distinguishing version number. The Program (including
 Contributions) may always be distributed subject to the version of the
 Agreement under which it was received. In addition, after a new version of
 the Agreement is published, Contributor may elect to distribute the
 Program (including its Contributions) under the new version. No one other
 than MakeMusic, Inc. has the right to modify this Agreement. Except as
 expressly stated in Sections B and E above, Recipient receives no rights
 or licenses to the intellectual property of any Contributor under this
 Agreement, whether expressly, by implication, estoppel or otherwise. All
 rights in the Program not expressly granted under this Agreement are
 reserved.
 .
 This Agreement is governed by the laws of the State of California and the
 intellectual property laws of the United States of America.

License: OFL-1
 SIL OPEN FONT LICENSE
 Version 1.0 - 22 November 2005
 .
 PREAMBLE
 .
 The goals of the Open Font License (OFL) are to stimulate worldwide
 development of cooperative font projects, to support the font creation
 efforts of academic and linguistic communities, and to provide an open
 framework in which fonts may be shared and improved in partnership with
 others.
 .
 The OFL allows the licensed fonts to be used, studied, modified and
 redistributed freely as long as they are not sold by themselves. The
 fonts, including any derivative works, can be bundled, embedded,
 redistributed and sold with any software provided that the font names of
 derivative works are changed. The fonts and derivatives, however, cannot
 be released under any other type of license.
 .
 DEFINITIONS
 .
 "Font Software" refers to any and all of the following:
 .
 - font files
 - data files
 - source code
 - build scripts
 - documentation
 .
 "Reserved Font Name" refers to the Font Software name as seen by users and
 any other names as specified after the copyright statement.
 .
 "Standard Version" refers to the collection of Font Software components as
 distributed by the Copyright Holder.
 .
 "Modified Version" refers to any derivative font software made by adding
 to, deleting, or substituting — in part or in whole -- any of the
 components of the Standard Version, by changing formats or by porting the
 Font Software to a new environment.
 .
 "Author" refers to any designer, engineer, programmer, technical writer or
 other person who contributed to the Font Software.
 .
 PERMISSION & CONDITIONS
 .
 Permission is hereby granted, free of charge, to any person obtaining a
 copy of the Font Software, to use, study, copy, merge, embed, modify,
 redistribute, and sell modified and unmodified copies of the Font
 Software, subject to the following conditions:
 .
 1) Neither the Font Software nor any of its individual components, in
 Standard or Modified Versions, may be sold by itself.
 .
 2) Standard or Modified Versions of the Font Software may be bundled,
 redistributed and sold with any software, provided that each copy contains
 the above copyright notice and this license. These can be included either
 as stand-alone text files, human-readable headers or in the appropriate
 machine-readable metadata fields within text or binary files as long as
 those fields can be easily viewed by the user.
 .
 3) No Modified Version of the Font Software may use the Reserved Font
 Name(s), in part or in whole, unless explicit written permission is
 granted by the Copyright Holder. This restriction applies to all
 references stored in the Font Software, such as the font menu name and
 other font description fields, which are used to differentiate the font
 from others.
 .
 4) The name(s) of the Copyright Holder or the Author(s) of the Font
 Software shall not be used to promote, endorse or advertise any Modified
 Version, except to acknowledge the contribution(s) of the Copyright Holder
 and the Author(s) or with their explicit written permission.
 .
 5) The Font Software, modified or unmodified, in part or in whole, must be
 distributed using this license, and may not be distributed under any other
 license.
 .
 TERMINATION
 .
 This license becomes null and void if any of the above conditions are not
 met.
 .
 DISCLAIMER
 .
 THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
 COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
 COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
 DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER
 DEALINGS IN THE FONT SOFTWARE.

License: OFL-1.1
 Copyright (c) <dates>, <Copyright Holder> (<URL|email>),
 with Reserved Font Name <Reserved Font Name>.
 Copyright (c) <dates>, <additional Copyright Holder> (<URL|email>),
 with Reserved Font Name <additional Reserved Font Name>.
 Copyright (c) <dates>, <additional Copyright Holder> (<URL|email>).
 .
 This Font Software is licensed under the SIL Open Font License, Version 1.1.
 This license is copied below, and is also available with a FAQ at:
 http://scripts.sil.org/OFL
 .
 -----------------------------------------------------------
 SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
 -----------------------------------------------------------
 .
 PREAMBLE
 The goals of the Open Font License (OFL) are to stimulate worldwide
 development of collaborative font projects, to support the font creation
 efforts of academic and linguistic communities, and to provide a free and
 open framework in which fonts may be shared and improved in partnership
 with others.
 .
 The OFL allows the licensed fonts to be used, studied, modified and
 redistributed freely as long as they are not sold by themselves. The
 fonts, including any derivative works, can be bundled, embedded,
 redistributed and/or sold with any software provided that any reserved
 names are not used by derivative works. The fonts and derivatives,
 however, cannot be released under any other type of license. The
 requirement for fonts to remain under this license does not apply
 to any document created using the fonts or their derivatives.
 .
 DEFINITIONS
 "Font Software" refers to the set of files released by the Copyright
 Holder(s) under this license and clearly marked as such. This may
 include source files, build scripts and documentation.
 .
 "Reserved Font Name" refers to any names specified as such after the
 copyright statement(s).
 .
 "Original Version" refers to the collection of Font Software components as
 distributed by the Copyright Holder(s).
 .
 "Modified Version" refers to any derivative made by adding to, deleting,
 or substituting -- in part or in whole -- any of the components of the
 Original Version, by changing formats or by porting the Font Software to a
 new environment.
 .
 "Author" refers to any designer, engineer, programmer, technical
 writer or other person who contributed to the Font Software.
 .
 PERMISSION & CONDITIONS
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of the Font Software, to use, study, copy, merge, embed, modify,
 redistribute, and sell modified and unmodified copies of the Font
 Software, subject to the following conditions:
 .
 1) Neither the Font Software nor any of its individual components,
 in Original or Modified Versions, may be sold by itself.
 .
 2) Original or Modified Versions of the Font Software may be bundled,
 redistributed and/or sold with any software, provided that each copy
 contains the above copyright notice and this license. These can be
 included either as stand-alone text files, human-readable headers or
 in the appropriate machine-readable metadata fields within text or
 binary files as long as those fields can be easily viewed by the user.
 .
 3) No Modified Version of the Font Software may use the Reserved Font
 Name(s) unless explicit written permission is granted by the corresponding
 Copyright Holder. This restriction only applies to the primary font name as
 presented to the users.
 .
 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
 Software shall not be used to promote, endorse or advertise any
 Modified Version, except to acknowledge the contribution(s) of the
 Copyright Holder(s) and the Author(s) or with their explicit written
 permission.
 .
 5) The Font Software, modified or unmodified, in part or in whole,
 must be distributed entirely under this license, and must not be
 distributed under any other license. The requirement for fonts to
 remain under this license does not apply to any document created
 using the Font Software.
 .
 TERMINATION
 This license becomes null and void if any of the above conditions are
 not met.
 .
 DISCLAIMER
 THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
 OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
 COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
 DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
 OTHER DEALINGS IN THE FONT SOFTWARE.

License: OpenSSL
 OpenSSL License
 ---------------
 .
 ====================================================================
 Copyright (c) 1998-2011 The OpenSSL Project.  All rights reserved.
 .
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 .
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 .
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in
    the documentation and/or other materials provided with the
    distribution.
 .
 3. All advertising materials mentioning features or use of this
    software must display the following acknowledgment:
    "This product includes software developed by the OpenSSL Project
    for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
 .
 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
    endorse or promote products derived from this software without
    prior written permission. For written permission, please contact
    openssl-core@openssl.org.
 .
 5. Products derived from this software may not be called "OpenSSL"
    nor may "OpenSSL" appear in their names without prior written
    permission of the OpenSSL Project.
 .
 6. Redistributions of any form whatsoever must retain the following
    acknowledgment:
    "This product includes software developed by the OpenSSL Project
    for use in the OpenSSL Toolkit (http://www.openssl.org/)"
 .
 THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
 EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
 PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
 ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
 STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 OF THE POSSIBILITY OF SUCH DAMAGE.
 ====================================================================
 .
 This product includes cryptographic software written by Eric Young
 (eay@cryptsoft.com).  This product includes software written by Tim
 Hudson (tjh@cryptsoft.com).

License: SSLeay
 Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
 All rights reserved.
 .
 This package is an SSL implementation written
 by Eric Young (eay@cryptsoft.com).
 The implementation was written so as to conform with Netscapes SSL.
 .
 This library is free for commercial and non-commercial use as long as
 the following conditions are aheared to.  The following conditions
 apply to all code found in this distribution, be it the RC4, RSA,
 lhash, DES, etc., code; not just the SSL code.  The SSL documentation
 included with this distribution is covered by the same copyright terms
 except that the holder is Tim Hudson (tjh@cryptsoft.com).
 .
 Copyright remains Eric Young's, and as such any Copyright notices in
 the code are not to be removed.
 If this package is used in a product, Eric Young should be given attribution
 as the author of the parts of the library used.
 This can be in the form of a textual message at program startup or
 in documentation (online or textual) provided with the package.
 .
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the copyright
    notice, this list of conditions and the following disclaimer.
 2. Redistributions in binary form must reproduce the above copyright
    notice, this list of conditions and the following disclaimer in the
    documentation and/or other materials provided with the distribution.
 3. All advertising materials mentioning features or use of this software
    must display the following acknowledgement:
    "This product includes cryptographic software written by
     Eric Young (eay@cryptsoft.com)"
    The word 'cryptographic' can be left out if the rouines from the library
    being used are not cryptographic related :-).
 4. If you include any Windows specific code (or a derivative thereof) from
    the apps directory (application code) you must include an acknowledgement:
    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
 .
 THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.
 .
 The licence and distribution terms for any publically available
 version or derivative of this code cannot be changed.  i.e. this
 code cannot simply be copied and put under another distribution
 licence [including the GNU Public Licence.]

License: SSLkisa
 Copyright (c) 2007 KISA(Korea Information Security Agency). All rights reserved.
 .
 Redistribution and use in source and binary forms, with or without
 modification, are permitted provided that the following conditions
 are met:
 1. Redistributions of source code must retain the above copyright
    notice, this list of conditions and the following disclaimer.
 2. Neither the name of author nor the names of its contributors may
    be used to endorse or promote products derived from this software
    without specific prior written permission.
 .
 THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
 FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 SUCH DAMAGE.

License: WTFPL-2
            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
                    Version 2, December 2004
 .
 Copyright (C) 2004 Sam Hocevar <sam@hocevar.net>
 .
 Everyone is permitted to copy and distribute verbatim or modified
 copies of this license document, and changing it is allowed as long
 as the name is changed.
 .
            DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE
   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
 .
  0. You just DO WHAT THE FUCK YOU WANT TO.