forked from GAMS-dev/miro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLICENSE
3508 lines (2873 loc) · 180 KB
/
LICENSE
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
GAMS MIRO as a whole is distributed under GPL-3 (GNU GENERAL PUBLIC LICENSE version 3). A copy of this license is included below.
The entire source code is available at: https://github.com/GAMS-dev/miro
GAMS MIRO includes other open source software components. The following
is a list of these components (full copies of the license agreements used by
these components are included below):
- R, https://www.r-project.org
- jQuery, https://github.com/jquery/jquery
- jQuery UI (some components), https://github.com/jquery/jquery-ui
- Bootstrap, https://github.com/twbs/bootstrap
- html5shiv, https://github.com/aFarkas/html5shiv
- Respond.js, https://github.com/scottjehl/Respond
- bootstrap-datepicker, https://github.com/eternicode/bootstrap-datepicker
- Font Awesome, https://github.com/FortAwesome/Font-Awesome
- selectize.js, https://github.com/selectize/selectize.js
- es5-shim, https://github.com/es-shims/es5-shim
- ajv, https://github.com/ajv-validator/ajv or https://ajv.js.org
- ion.rangeSlider, https://github.com/IonDen/ion.rangeSlider
- strftime for Javascript, https://github.com/samsonjs/strftime
- DataTables, https://github.com/DataTables/DataTables
- natural.js (DataTables plugin), https://github.com/DataTables/Plugins/blob/master/sorting/natural.js
- showdown.js, https://github.com/showdownjs/showdown
- polyfill, https://github.com/jonathantneal/polyfill
- subtotal, https://github.com/nagarajanchinnasamy/subtotal
- numbro.languages https://github.com/BenjaminVanRyseghem/numbro
- d3, https://github.com/d3/d3
- c3, https://github.com/c3js/c3
- handsontable, https://github.com/handsontable/handsontable
- json2, https://github.com/douglascrockford/JSON-js
- sparkline, https://github.com/gwatts/jquery.sparkline
- chroma, https://github.com/gka/chroma.js
- highlight.js, https://github.com/isagalaev/highlight.js
- tar implementation from R, http://www.r-project.org/
- commonmark, https://github.com/jeroen/commonmark or https://cran.r-project.org/web/packages/commonmark/index.html
- cpp11, https://github.com/r-lib/cpp11 or https://cran.rstudio.com/web/packages/cpp11/index.html
- R6, https://github.com/r-lib/R6/ or https://cran.r-project.org/web/packages/R6/index.html
- processx https://github.com/r-lib/processx or https://cran.r-project.org/web/packages/processx/index.html
- generics https://generics.r-lib.org or https://cran.r-project.org/web/packages/generics/index.html
- dplyr https://github.com/tidyverse/dplyr or https://cran.r-project.org/web/packages/dplyr/index.html
- readxl https://github.com/tidyverse/readxl or https://cran.r-project.org/web/packages/readxl/index.html
- writexl https://github.com/ropensci/writexl or https://cran.r-project.org/web/packages/writexl/index.html
- leaflet.providers https://github.com/rstudio/leaflet.providers or https://cran.r-project.org/web/packages/leaflet.providers/index.html
- rhandsontable https://github.com/jrowen/rhandsontable or https://cran.r-project.org/web/packages/rhandsontable/index.html
- shiny https://github.com/rstudio/shiny or https://cran.r-project.org/web/packages/shiny/index.html
- shinydashboard https://github.com/rstudio/shinydashboard or https://cran.r-project.org/web/packages/shinydashboard/index.html
- shinyAce https://github.com/trestletech/shinyAce or https://cran.r-project.org/web/packages/shinyAce/index.html
- Ace (Ajax.org Cloud9 Editor) https://github.com/ajaxorg/ace
- plotly https://github.com/ropensci/plotly or https://cran.r-project.org/web/packages/plotly/index.html
- DT https://github.com/rstudio/DT or https://cran.r-project.org/web/packages/DT/index.html
- V8 (R package) https://github.com/jeroen/V8 or https://cran.r-project.org/web/packages/V8/index.html
- V8 https://github.com/v8/v8
- jsonlite https://github.com/jeroen/jsonlite or https://cran.r-project.org/web/packages/jsonlite/index.html
- rpivotTable https://github.com/smartinsightsfromdata/rpivotTable or https://cran.r-project.org/web/packages/rpivotTable/index.html
- futile.logger https://github.com/zatonovo/futile.logger or https://cran.r-project.org/web/packages/futile.logger/index.html
- KaTeX https://github.com/KaTeX/KaTeX or https://katex.org
- zip https://github.com/r-lib/zip or https://cran.r-project.org/web/packages/zip/index.html
- stringi https://github.com/gagolews/stringi or https://cran.r-project.org/web/packages/stringi/index.html
- dygraphs https://github.com/rstudio/dygraphs or https://cran.r-project.org/web/packages/dygraphs/index.html
- xts https://github.com/joshuaulrich/xts or https://cran.r-project.org/web/packages/xts/index.html
- tidyr https://github.com/tidyverse/tidyr or https://cran.r-project.org/web/packages/tidyr/index.html
- lifecycle https://github.com/r-lib/lifecycle or https://cran.r-project.org/web/packages/lifecycle/index.html
- backports https://github.com/r-lib/backports or https://cran.r-project.org/web/packages/backports/index.html
- vctrs https://github.com/r-lib/vctrs or https://cran.r-project.org/web/packages/vctrs/index.html
- ellipsis https://github.com/r-lib/ellipsis or https://ellipsis.r-lib.org or https://cran.r-project.org/web/packages/ellipsis/index.html
- withr http://withr.r-lib.org or http://github.com/r-lib/withr or https://cran.r-project.org/web/packages/withr/index.html
- DBI https://github.com/r-dbi/DBI or https://cran.r-project.org/web/packages/DBI/index.html
- askpass https://github.com/jeroen/askpass or https://cran.r-project.org/web/packages/askpass/index.html
- timevis https://github.com/daattali/timevis or https://cran.r-project.org/web/packages/timevis/index.html
- readr https://github.com/tidyverse/readr or https://cran.r-project.org/web/packages/readr/index.html
- blob https://github.com/tidyverse/blob or https://cran.r-project.org/web/packages/blob/index.html
- hms https://github.com/tidyverse/hms or https://cran.r-project.org/web/packages/hms/index.html
- Rcpp https://github.com/RcppCore/Rcpp or https://cran.r-project.org/web/packages/Rcpp/index.html
- BH https://github.com/eddelbuettel/bh or https://cran.r-project.org/web/packages/BH/index.html
- plogr https://github.com/krlmlr/plogr or https://cran.r-project.org/web/packages/plogr/index.html
- httpuv https://github.com/rstudio/httpuv or https://cran.r-project.org/web/packages/httpuv/index.html
- fs https://github.com/r-lib/fs or https://cran.r-project.org/web/packages/fs/index.html
- mime https://github.com/yihui/mime or https://cran.r-project.org/web/packages/mime/index.html
- xtable https://github.com/cran/xtable or https://cran.r-project.org/web/packages/xtable/index.html
- digest https://github.com/eddelbuettel/digest or https://cran.r-project.org/web/packages/digest/index.html
- htmltools https://github.com/rstudio/htmltools or https://cran.r-project.org/web/packages/htmltools/index.html
- sourcetools https://github.com/kevinushey/sourcetools or https://cran.r-project.org/web/packages/sourcetools/index.html
- later https://github.com/r-lib/later or https://cran.r-project.org/web/packages/later/index.html
- promises https://github.com/rstudio/promises or https://cran.r-project.org/web/packages/promises/index.html
- crayon https://github.com/r-lib/crayon or https://cran.r-project.org/web/packages/crayon/index.html
- rlang https://github.com/r-lib/rlang or https://cran.r-project.org/web/packages/rlang/index.html
- sys https://github.com/jeroen/sys or https://cran.r-project.org/web/packages/sys/index.html
- htmlwidgets https://github.com/ramnathv/htmlwidgets or https://cran.r-project.org/web/packages/htmlwidgets/index.html
- magrittr https://github.com/tidyverse/magrittr or https://cran.r-project.org/web/packages/magrittr/index.html
- crosstalk https://github.com/rstudio/crosstalk or https://cran.r-project.org/web/packages/crosstalk/index.html
- ps https://github.com/r-lib/ps or https://cran.r-project.org/web/packages/ps/index.html
- curl https://github.com/jeroen/curl or https://cran.r-project.org/web/packages/curl/index.html
- assertthat https://github.com/hadley/assertthat or https://cran.r-project.org/web/packages/assertthat/index.html
- bindrcpp https://github.com/krlmlr/bindrcpp or https://cran.r-project.org/web/packages/bindrcpp/index.html
- glue https://github.com/tidyverse/glue or https://cran.r-project.org/web/packages/glue/index.html
- pkgconfig https://github.com/r-lib/pkgconfig or https://cran.r-project.org/web/packages/pkgconfig/index.html
- tibble https://github.com/tidyverse/tibble or https://cran.r-project.org/web/packages/tibble/index.html
- tidyselect https://github.com/tidyverse/tidyselect or https://cran.r-project.org/web/packages/tidyselect/index.html
- clipr https://github.com/mdlincoln/clipr or https://cran.r-project.org/web/packages/clipr/index.html
- cellranger https://github.com/rsheets/cellranger or https://cran.r-project.org/web/packages/cellranger/index.html
- scales https://github.com/r-lib/scales or https://cran.r-project.org/web/packages/scales/index.html
- farver https://cran.r-project.org/web/packages/farver/index.html or https://github.com/thomasp85/farver
- httr https://github.com/r-lib/httr or https://cran.r-project.org/web/packages/httr/index.html
- future https://github.com/HenrikBengtsson/future or https://cran.r-project.org/web/packages/future/index.html
- globals https://github.com/HenrikBengtsson/globals or https://cran.r-project.org/web/packages/globals/index.html
- listenv https://github.com/HenrikBengtsson/listenv or https://cran.r-project.org/web/packages/listenv/index.html
- zeallot https://github.com/nteetor/zeallot or https://cran.r-project.org/web/packages/zeallot/index.html
- viridisLite https://github.com/sjmgarnier/viridisLite or https://cran.r-project.org/web/packages/viridisLite/index.html
- base64enc https://github.com/cran/base64enc or https://cran.r-project.org/web/packages/base64enc/index.html
- RColorBrewer https://github.com/cran/RColorBrewer or https://cran.r-project.org/web/packages/RColorBrewer/index.html
- lazyeval https://github.com/cran/lazyeval or https://cran.r-project.org/web/packages/lazyeval/index.html
- purrr https://github.com/tidyverse/purrr or https://cran.r-project.org/web/packages/purrr/index.html
- data.table https://github.com/Rdatatable/data.table or https://cran.r-project.org/web/packages/data.table/index.html
- lambda.r https://github.com/zatonovo/lambda.r or https://cran.r-project.org/web/packages/lambda.r/index.html
- futile.options https://github.com/cran/futile.options or https://cran.r-project.org/web/packages/futile.options/index.html
- zoo https://github.com/cran/zoo or https://cran.r-project.org/web/packages/zoo/index.html
- bit https://github.com/truecluster/bit or https://cran.r-project.org/web/packages/bit/index.html
- bit64 https://github.com/truecluster/bit64 or https://cran.r-project.org/web/packages/bit64/index.html
- RSQLite https://github.com/r-dbi/RSQLite or https://cran.r-project.org/web/packages/RSQLite/index.html
- memoise https://github.com/r-lib/memoise or https://cran.r-project.org/web/packages/memoise/index.html
- cachem https://github.com/r-lib/cachem or https://cran.r-project.org/web/packages/cachem/index.html
- gdxrrwMIRO https://github.com/GAMS-dev/gdxrrw-miro
- bindr https://github.com/krlmlr/bindr or https://cran.r-project.org/web/packages/bindr/index.html
- cli https://github.com/r-lib/cli or https://cran.r-project.org/web/packages/cli/index.html
- pillar https://github.com/r-lib/pillar or https://cran.r-project.org/web/packages/pillar/index.html
- fansi https://github.com/brodieG/fansi or https://cran.r-project.org/web/packages/fansi/index.html
- utf8 https://github.com/patperry/r-utf8 or https://cran.r-project.org/web/packages/utf8/index.html
- progress https://github.com/r-lib/progress or https://cran.r-project.org/web/packages/progress/index.html
- rematch https://github.com/MangoTheCat/rematch or https://cran.r-project.org/web/packages/rematch/index.html
- prettyunits https://github.com/gaborcsardi/prettyunits or https://cran.r-project.org/web/packages/prettyunits/index.html
- chartjs (R link) https://github.com/Tutuchan/chartjs
- Chart.js https://github.com/chartjs/Chart.js or https://www.chartjs.org/
- sortable https://github.com/rstudio/sortable or https://cran.r-project.org/web/packages/sortable/index.html
- yaml https://github.com/viking/r-yaml/ or https://cran.r-project.org/web/packages/yaml/index.html
- formatR https://github.com/yihui/formatR or https://cran.r-project.org/web/packages/formatR/index.html
- withr https://github.com/r-lib/withr or https://cran.r-project.org/web/packages/withr/index.html
- leaflet https://github.com/rstudio/leaflet or https://cran.r-project.org/web/packages/leaflet/index.html
- png https://github.com/s-u/png or https://cran.r-project.org/web/packages/png/index.html
- raster https://github.com/rspatial/raster or https://cran.r-project.org/web/packages/raster/index.html
- sp https://github.com/edzer/sp/ or https://cran.r-project.org/web/packages/sp/index.html
- viridis https://github.com/sjmgarnier/viridis or https://cran.r-project.org/web/packages/viridis/index.html
- leaflet.minicharts https://github.com/cran/leaflet.minicharts or https://cran.r-project.org/web/packages/leaflet.minicharts/index.html
- labeling https://github.com/cran/labeling or https://cran.r-project.org/web/packages/labeling/index.html
- munsell https://github.com/cwickham/munsell/ or https://cran.r-project.org/web/packages/munsell/index.html
- graphics https://github.com/zenspider/graphics or https://cran.r-project.org/web/packages/RGraphics/index.html
- Matrix, https://cran.r-project.org/web/packages/Matrix/index.html
- nlme, https://cran.r-project.org/web/packages/nlme/index.html
- colorspace, https://cran.r-project.org/web/packages/colorspace/index.html
- plyr, https://github.com/hadley/plyr/ or https://cran.r-project.org/web/packages/plyr/index.html
- mgcv, https://cran.r-project.org/web/packages/mgcv/index.html
- MASS, https://cran.r-project.org/web/packages/MASS/index.html
- gridExtra, https://cran.r-project.org/web/packages/gridExtra/index.html
- lattice, https://github.com/deepayan/lattice/ or https://cran.r-project.org/web/packages/lattice/index.html
- fastmap, https://github.com/r-lib/fastmap or https://cran.r-project.org/web/packages/fastmap/index.html
- autoNumeric, https://github.com/autoNumeric/autoNumeric
- showdown, https://github.com/showdownjs/showdown
- ICU4C http://site.icu-project.org
- libuv https://github.com/libuv/libuv
- curl https://github.com/curl/curl
jQuery license and license for included components from jQuery UI
----------------------------------------------------------------------
Copyright jQuery Foundation and other contributors, https://jquery.org/
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.
Font Awesome (CSS files are MIT licensed; fonts have SIL Open Font License 1.1, svgs have CC BY 4.0 License)
----------------------------------------------------------------------
The MIT License (MIT)
Copyright (c) 2014 Dave Gandy
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.
----
Copyright (c) 2014, Dave Gandy http://fontawesome.com/,
with Reserved Font Name Font Awesome.
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.
=======================================================================
Creative Commons Attribution 4.0 International Public License
By exercising the Licensed Rights (defined below), You accept and agree
to be bound by the terms and conditions of this Creative Commons
Attribution 4.0 International Public License ("Public License"). To the
extent this Public License may be interpreted as a contract, You are
granted the Licensed Rights in consideration of Your acceptance of
these terms and conditions, and the Licensor grants You such rights in
consideration of benefits the Licensor receives from making the
Licensed Material available under these terms and conditions.
Section 1 -- Definitions.
a. Adapted Material means material subject to Copyright and Similar
Rights that is derived from or based upon the Licensed Material
and in which the Licensed Material is translated, altered,
arranged, transformed, or otherwise modified in a manner requiring
permission under the Copyright and Similar Rights held by the
Licensor. For purposes of this Public License, where the Licensed
Material is a musical work, performance, or sound recording,
Adapted Material is always produced where the Licensed Material is
synched in timed relation with a moving image.
b. Adapter's License means the license You apply to Your Copyright
and Similar Rights in Your contributions to Adapted Material in
accordance with the terms and conditions of this Public License.
c. Copyright and Similar Rights means copyright and/or similar rights
closely related to copyright including, without limitation,
performance, broadcast, sound recording, and Sui Generis Database
Rights, without regard to how the rights are labeled or
categorized. For purposes of this Public License, the rights
specified in Section 2(b)(1)-(2) are not Copyright and Similar
Rights.
d. Effective Technological Measures means those measures that, in the
absence of proper authority, may not be circumvented under laws
fulfilling obligations under Article 11 of the WIPO Copyright
Treaty adopted on December 20, 1996, and/or similar international
agreements.
e. Exceptions and Limitations means fair use, fair dealing, and/or
any other exception or limitation to Copyright and Similar Rights
that applies to Your use of the Licensed Material.
f. Licensed Material means the artistic or literary work, database,
or other material to which the Licensor applied this Public
License.
g. Licensed Rights means the rights granted to You subject to the
terms and conditions of this Public License, which are limited to
all Copyright and Similar Rights that apply to Your use of the
Licensed Material and that the Licensor has authority to license.
h. Licensor means the individual(s) or entity(ies) granting rights
under this Public License.
i. Share means to provide material to the public by any means or
process that requires permission under the Licensed Rights, such
as reproduction, public display, public performance, distribution,
dissemination, communication, or importation, and to make material
available to the public including in ways that members of the
public may access the material from a place and at a time
individually chosen by them.
j. Sui Generis Database Rights means rights other than copyright
resulting from Directive 96/9/EC of the European Parliament and of
the Council of 11 March 1996 on the legal protection of databases,
as amended and/or succeeded, as well as other essentially
equivalent rights anywhere in the world.
k. You means the individual or entity exercising the Licensed Rights
under this Public License. Your has a corresponding meaning.
Section 2 -- Scope.
a. License grant.
1. Subject to the terms and conditions of this Public License,
the Licensor hereby grants You a worldwide, royalty-free,
non-sublicensable, non-exclusive, irrevocable license to
exercise the Licensed Rights in the Licensed Material to:
a. reproduce and Share the Licensed Material, in whole or
in part; and
b. produce, reproduce, and Share Adapted Material.
2. Exceptions and Limitations. For the avoidance of doubt, where
Exceptions and Limitations apply to Your use, this Public
License does not apply, and You do not need to comply with
its terms and conditions.
3. Term. The term of this Public License is specified in Section
6(a).
4. Media and formats; technical modifications allowed. The
Licensor authorizes You to exercise the Licensed Rights in
all media and formats whether now known or hereafter created,
and to make technical modifications necessary to do so. The
Licensor waives and/or agrees not to assert any right or
authority to forbid You from making technical modifications
necessary to exercise the Licensed Rights, including
technical modifications necessary to circumvent Effective
Technological Measures. For purposes of this Public License,
simply making modifications authorized by this Section 2(a)
(4) never produces Adapted Material.
5. Downstream recipients.
a. Offer from the Licensor -- Licensed Material. Every
recipient of the Licensed Material automatically
receives an offer from the Licensor to exercise the
Licensed Rights under the terms and conditions of this
Public License.
b. No downstream restrictions. You may not offer or impose
any additional or different terms or conditions on, or
apply any Effective Technological Measures to, the
Licensed Material if doing so restricts exercise of the
Licensed Rights by any recipient of the Licensed
Material.
6. No endorsement. Nothing in this Public License constitutes or
may be construed as permission to assert or imply that You
are, or that Your use of the Licensed Material is, connected
with, or sponsored, endorsed, or granted official status by,
the Licensor or others designated to receive attribution as
provided in Section 3(a)(1)(A)(i).
b. Other rights.
1. Moral rights, such as the right of integrity, are not
licensed under this Public License, nor are publicity,
privacy, and/or other similar personality rights; however, to
the extent possible, the Licensor waives and/or agrees not to
assert any such rights held by the Licensor to the limited
extent necessary to allow You to exercise the Licensed
Rights, but not otherwise.
2. Patent and trademark rights are not licensed under this
Public License.
3. To the extent possible, the Licensor waives any right to
collect royalties from You for the exercise of the Licensed
Rights, whether directly or through a collecting society
under any voluntary or waivable statutory or compulsory
licensing scheme. In all other cases the Licensor expressly
reserves any right to collect such royalties.
Section 3 -- License Conditions.
Your exercise of the Licensed Rights is expressly made subject to the
following conditions.
a. Attribution.
1. If You Share the Licensed Material (including in modified
form), You must:
a. retain the following if it is supplied by the Licensor
with the Licensed Material:
i. identification of the creator(s) of the Licensed
Material and any others designated to receive
attribution, in any reasonable manner requested by
the Licensor (including by pseudonym if
designated);
ii. a copyright notice;
iii. a notice that refers to this Public License;
iv. a notice that refers to the disclaimer of
warranties;
v. a URI or hyperlink to the Licensed Material to the
extent reasonably practicable;
b. indicate if You modified the Licensed Material and
retain an indication of any previous modifications; and
c. indicate the Licensed Material is licensed under this
Public License, and include the text of, or the URI or
hyperlink to, this Public License.
2. You may satisfy the conditions in Section 3(a)(1) in any
reasonable manner based on the medium, means, and context in
which You Share the Licensed Material. For example, it may be
reasonable to satisfy the conditions by providing a URI or
hyperlink to a resource that includes the required
information.
3. If requested by the Licensor, You must remove any of the
information required by Section 3(a)(1)(A) to the extent
reasonably practicable.
4. If You Share Adapted Material You produce, the Adapter's
License You apply must not prevent recipients of the Adapted
Material from complying with this Public License.
Section 4 -- Sui Generis Database Rights.
Where the Licensed Rights include Sui Generis Database Rights that
apply to Your use of the Licensed Material:
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
to extract, reuse, reproduce, and Share all or a substantial
portion of the contents of the database;
b. if You include all or a substantial portion of the database
contents in a database in which You have Sui Generis Database
Rights, then the database in which You have Sui Generis Database
Rights (but not its individual contents) is Adapted Material; and
c. You must comply with the conditions in Section 3(a) if You Share
all or a substantial portion of the contents of the database.
For the avoidance of doubt, this Section 4 supplements and does not
replace Your obligations under this Public License where the Licensed
Rights include other Copyright and Similar Rights.
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
c. The disclaimer of warranties and limitation of liability provided
above shall be interpreted in a manner that, to the extent
possible, most closely approximates an absolute disclaimer and
waiver of all liability.
Section 6 -- Term and Termination.
a. This Public License applies for the term of the Copyright and
Similar Rights licensed here. However, if You fail to comply with
this Public License, then Your rights under this Public License
terminate automatically.
b. Where Your right to use the Licensed Material has terminated under
Section 6(a), it reinstates:
1. automatically as of the date the violation is cured, provided
it is cured within 30 days of Your discovery of the
violation; or
2. upon express reinstatement by the Licensor.
For the avoidance of doubt, this Section 6(b) does not affect any
right the Licensor may have to seek remedies for Your violations
of this Public License.
c. For the avoidance of doubt, the Licensor may also offer the
Licensed Material under separate terms or conditions or stop
distributing the Licensed Material at any time; however, doing so
will not terminate this Public License.
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
License.
Section 7 -- Other Terms and Conditions.
a. The Licensor shall not be bound by any additional or different
terms or conditions communicated by You unless expressly agreed.
b. Any arrangements, understandings, or agreements regarding the
Licensed Material not stated herein are separate from and
independent of the terms and conditions of this Public License.
Section 8 -- Interpretation.
a. For the avoidance of doubt, this Public License does not, and
shall not be interpreted to, reduce, limit, restrict, or impose
conditions on any use of the Licensed Material that could lawfully
be made without permission under this Public License.
b. To the extent possible, if any provision of this Public License is
deemed unenforceable, it shall be automatically reformed to the
minimum extent necessary to make it enforceable. If the provision
cannot be reformed, it shall be severed from this Public License
without affecting the enforceability of the remaining terms and
conditions.
c. No term or condition of this Public License will be waived and no
failure to comply consented to unless expressly agreed to by the
Licensor.
d. Nothing in this Public License constitutes or may be interpreted
as a limitation upon, or waiver of, any privileges and immunities
that apply to the Licensor or You, including from the legal
processes of any jurisdiction or authority.
-----------------------------------------------------------------------------
The MIT License (MIT)
applies to:
- AdminLTE, Copyright (c) 2014-2017 Abdullah Almsaeed
- ajv, Copyright (c) 2015-2017 Evgeny Poberezkin
- polyfill.io, Copyright (c) 2016 Financial Times
- subtotal, Copyright (c) 2016 Nagarajan Chinnasamy, Mindtree and other contributors
- numbro.languages, Copyright © 2017-2019 Benjamin Van Ryseghem, Copyright © 2015-2017 Företagsplatsen AB, Copyright © 2014 Adam Draper
- d3, Copyright 2010-2017 Mike Bostock
- c3, Copyright (c) 2013 Masayuki Tanaka
- handsontable, Copyright (c) 2012-2014 Marcin Warpechowski, Copyright (c) 2015 Handsoncode sp. z o.o. <hello@handsoncode.net>
- R6, Copyright (c) 2015 RStudio
- hms, Copyright (c) 2020 hms authors
- ps, Copyright (c) 2009-2020 Jay Loden, Dave Daeschler, Giampaolo Rodola', RStudio
- processx, Copyright (c) 2016-2019 Mango Solutions, RStudio, Gábor Csárdi
- askpass, Copyright (c) 2018 Jeroen Ooms
- timevis, Copyright (c) 2016 Dean Attali [aut, cre] (R interface), Almende B.V. [aut, cph] (vis.js library, http://visjs.org, http://www.almende.com/home)
- generics, Copyright (c) 2020 Hadley Wickham [aut, cre], Max Kuhn [aut], Davis Vaughan [aut], RStudio [cph]
- dplyr, Copyright (c) 2013-2020 Hadley Wickham [aut, cre], Romain François [aut], Lionel Henry [aut], Kirill Müller [aut], RStudio [cph, fnd]
- cpp11, Copyright (c) 2020 RStudio
- rhandsontable , Copyright (c) 2015-2018 Marcin Warpechowski, Handsoncode sp. z o.o.,
Gregor Aisch, Tim Wood, Iskren Chernev, Moment.js contributors, David Bushell,
jQuery Foundation, Splunk Inc, Jon Rohan, James M. Greeneand, Företagsplatsen,
Kent Russell and Jonathan Owen
- natural.js (DataTables plugin), Copyright (c) Jim Palmer (based on chunking idea from Dave Koelle), Mike Grier (mgrier.com), Clint Priest, Kyle Adams, guillermo
- plotly, Copyright (c) 2017 Plotly, Inc.
- shinyAce, Copyright (c) 2016 Vincent Nijs [aut, cre], Forest Fang [aut], Trestle Technology, LLC [aut], Jeff Allen [aut], Institut de Radioprotection et de Surete Nucleaire [cph], Ajax.org B.V. [ctb, cph] (Ace)
- V8 (R package), Copyright (c) 2017 Jeroen Ooms
- jsonlite, Copyright (c) 2020 Jeroen Ooms
- rpivotTable, Copyright (c) 2015 Enzo Martoglio
- dygraphs, Copyright (c) 2015-2016 Dan Vanderkam; RStudio, Inc.
- tidyr, Copyright (c) 2020 Hadley Wickham [aut, cre], Lionel Henry [aut], RStudio [cph]
- plogr, Copyright (c) 2016 Kirill Müller [aut, cre],
Sergey Podobry [cph] (Author of the bundled plog library)
- sourcetools, Copyright (c) 2015-2017 Kevin Ushey
- sys, Copyright (c) 2019 Jeroen Ooms ORCID iD [aut, cre], Gábor Csárdi [ctb]
- promises, Copyright (c) 2016-2017 RStudio, Inc.
- crayon, Copyright (c) 2014-2016 Gabor Csardi
- htmlwidgets, Copyright (c) 2016 Ramnath Vaidyanathan, Joe Cheng,
JJ Allaire, Yihui Xie, and Kenton Russell
- magrittr, Copyright (c) 2014 Stefan Milton Bache and Hadley Wickham
- crosstalk, Copyright (c) 2016 RStudio, Inc.
- curl, Copyright (c) 2017 Jeroen Ooms; RStudio
- bindrcpp, Copyright (c) 2016 RStudio
- glue, Copyright (c) 2016 Jim Hester
- pkgconfig, Copyright (c) 2014-2017 Gábor Csárdi
- tibble, Copyright (c) 2013-2017 RStudio
- cellranger, Copyright (c) 2018 RStudio
- scales, Copyright (c) 2010-2016 Hadley Wickham
- farver, Copyright (c) 2018 Thomas Lin Pedersen [cre, aut], Berendea Nicolae [aut] (Author of the ColorSpace C++ library), Romain François ORCID iD [aut]
- chartjs (R link), Copyright (c) 2015-2016 Pierre Formont
- Chart.js, Copyright (c) 2014-2021 Chart.js Contributors
- sortable, Copyright (c) 2019 Andrie de Vries [cre, aut], Barret Schloerke [aut], Kenton Russell [aut, ccp] (Original author), Lebedev Konstantin [cph] ('SortableJS', http://sortablejs.github.io/Sortable/)
- httr, Copyright (c) 2014 Hadley Wickham; RStudio
- viridisLite, Copyright (c) 2015 Simon Garnier
- memoise, Copyright (c) 2010-2017 Hadley Wickham
- cachem, Copyright (c) 2020 Winston Chang [aut, cre], RStudio [cph, fnd]
- rlang, Copyright (c) Lionel Henry [aut, cre], Hadley Wickham [aut], RStudio [cph]
- withr, Copyright (c)
Jim Hester [aut, cre], Kirill Müller [aut], Kevin Ushey [aut], Hadley Wickham [aut], Winston Chang [aut], Jennifer Bryan [ctb], Richard Cotton [ctb], RStudio [cph]
- bindr, Copyright (c) 2016 RStudio
- cli, Copyright (c) 2017 Gábor Csárdi
- progress, Copyright (c) 2015-2018 Gábor Csárdi, RStudio Inc.
- rematch, Copyright (c) 2016 Mango Solutions
- prettyunits, Copyright (c) 2014 Gabor Csardi
- viridis, Copyright (c) 2015 Simon Garnier
- KaTeX, Copyright (c) 2013-2019 Khan Academy and other contributors
- labeling, Copyright (c) 2020 Justin Talbot
- munsell, Copyright (c) 2016 Charlotte Wickham
- tidyselect, Copyright (c) 2020 Lionel Henry [aut, cre], Hadley Wickham [aut], RStudio [cph]
- plyr, Copyright (c) 2014 Hadley Wickham [aut, cre]
- fastmap, Copyright (c) 2019 Winston Chang [aut, cre], RStudio [cph, fnd], Tessil [cph] (hopscotch_map library)
- bootstrap, Copyright (c) 2011-2019 Twitter, Inc.
Copyright (c) 2011-2019 The Bootstrap Authors
- html5shiv, Copyright (c) 2014 Alexander Farkas (aFarkas)
- Respond.js, Copyright (c) 2012 Scott Jehl
- es5-shim, Copyright (C) 2009-2014 Kristopher Michael Kowal and contribu
- ion.rangeSlider, Copyright © 2018 by Denis Ineshin (http://ionden.com)
- strftime for Javascript, Copyright 2010 - 2016 Sami Samhuri sami@samhuri.net
- DataTables, Copyright (c) 2008-2015 SpryMedia Limited
- showdown.js, Copyright (c) 2018 ShowdownJS
- autoNumeric, Copyright (c) 2009 Robert J. Knothe <bob@decorplanit.com> and contributors
- showdown, Copyright (c) 2018 ShowdownJS
-----------------------------------------------------------------------------
Based on <http://opensource.org/licenses/MIT>
This is a template. Provide completed entries of the form
YEAR:
COPYRIGHT HOLDER:
(separated by empty lines) as file LICENSE, and specify
License: MIT + file LICENSE
in file DESCRIPTION.
************************************************************************
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.
-----------------------------------------------------------------------------
The “GNU Lesser General Public License” version 3 (LGPL-3)
applies to:
- futile.logger, Copyright (c) Brian Lee Yung Rowe
- DBI [expanded from: LGPL (≥ 2)], Copyright (c) R Special Interest Group on Databases (R-SIG-DB) [aut],
Hadley Wickham [aut],
Kirill Müller ORCID iD [aut, cre],
R Consortium [fnd]
- lambda.r, Copyright (c) Brian Lee Yung Rowe
- futile.options, Copyright (c) Brian Lee Yung Rowe
- RSQLite, Copyright (c) Kirill Müller ORCID iD [aut, cre],
Hadley Wickham [aut], David A. James [aut], Seth Falcon [aut],
SQLite Authors [ctb] (for the included SQLite sources),
Liam Healy [ctb] (for the included SQLite sources),
R Consortium [fnd], RStudio [cph]
- pillar, Copyright (c) Kirill Müller [aut, cre], Hadley Wickham [aut], RStudio [cph]
- fansi [expanded from: GPL (≥ 2)], Copyright (c) Brodie Gaslam [aut, cre],
Elliott Sales De Andrade [ctb],
R Core Team [cph] (UTF8 byte length calcs from src/util.c)
- future, Copyright (c) Henrik Bengtsson [aut, cre, cph]
- globals, Copyright (c) Henrik Bengtsson [aut, cre, cph]
- listenv, Copyright (c) Henrik Bengtsson [aut, cre, cph]
- zeallot, Copyright (c) Nathan Teetor [aut, cre], Paul Teetor [ctb]
-----------------------------------------------------------------------------
GNU LESSER GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
This version of the GNU Lesser General Public License incorporates
the terms and conditions of version 3 of the GNU General Public
License, supplemented by the additional permissions listed below.
0. Additional Definitions.
As used herein, "this License" refers to version 3 of the GNU Lesser
General Public License, and the "GNU GPL" refers to version 3 of the GNU
General Public License.
"The Library" refers to a covered work governed by this License,
other than an Application or a Combined Work as defined below.
An "Application" is any work that makes use of an interface provided
by the Library, but which is not otherwise based on the Library.
Defining a subclass of a class defined by the Library is deemed a mode
of using an interface provided by the Library.
A "Combined Work" is a work produced by combining or linking an
Application with the Library. The particular version of the Library
with which the Combined Work was made is also called the "Linked
Version".
The "Minimal Corresponding Source" for a Combined Work means the
Corresponding Source for the Combined Work, excluding any source code
for portions of the Combined Work that, considered in isolation, are
based on the Application, and not on the Linked Version.
The "Corresponding Application Code" for a Combined Work means the
object code and/or source code for the Application, including any data
and utility programs needed for reproducing the Combined Work from the
Application, but excluding the System Libraries of the Combined Work.
1. Exception to Section 3 of the GNU GPL.
You may convey a covered work under sections 3 and 4 of this License
without being bound by section 3 of the GNU GPL.
2. Conveying Modified Versions.
If you modify a copy of the Library, and, in your modifications, a
facility refers to a function or data to be supplied by an Application
that uses the facility (other than as an argument passed when the
facility is invoked), then you may convey a copy of the modified
version:
a) under this License, provided that you make a good faith effort to
ensure that, in the event an Application does not supply the
function or data, the facility still operates, and performs
whatever part of its purpose remains meaningful, or
b) under the GNU GPL, with none of the additional permissions of
this License applicable to that copy.
3. Object Code Incorporating Material from Library Header Files.
The object code form of an Application may incorporate material from
a header file that is part of the Library. You may convey such object
code under terms of your choice, provided that, if the incorporated
material is not limited to numerical parameters, data structure
layouts and accessors, or small macros, inline functions and templates
(ten or fewer lines in length), you do both of the following:
a) Give prominent notice with each copy of the object code that the
Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the object code with a copy of the GNU GPL and this license
document.
4. Combined Works.
You may convey a Combined Work under terms of your choice that,
taken together, effectively do not restrict modification of the
portions of the Library contained in the Combined Work and reverse
engineering for debugging such modifications, if you also do each of
the following:
a) Give prominent notice with each copy of the Combined Work that
the Library is used in it and that the Library and its use are
covered by this License.
b) Accompany the Combined Work with a copy of the GNU GPL and this license
document.
c) For a Combined Work that displays copyright notices during
execution, include the copyright notice for the Library among
these notices, as well as a reference directing the user to the
copies of the GNU GPL and this license document.
d) Do one of the following:
0) Convey the Minimal Corresponding Source under the terms of this
License, and the Corresponding Application Code in a form
suitable for, and under terms that permit, the user to
recombine or relink the Application with a modified version of
the Linked Version to produce a modified Combined Work, in the
manner specified by section 6 of the GNU GPL for conveying
Corresponding Source.
1) Use a suitable shared library mechanism for linking with the
Library. A suitable mechanism is one that (a) uses at run time
a copy of the Library already present on the user's computer
system, and (b) will operate properly with a modified version
of the Library that is interface-compatible with the Linked
Version.
e) Provide Installation Information, but only if you would otherwise
be required to provide such information under section 6 of the
GNU GPL, and only to the extent that such information is
necessary to install and execute a modified version of the
Combined Work produced by recombining or relinking the
Application with a modified version of the Linked Version. (If
you use option 4d0, the Installation Information must accompany
the Minimal Corresponding Source and Corresponding Application
Code. If you use option 4d1, you must provide the Installation
Information in the manner specified by section 6 of the GNU GPL
for conveying Corresponding Source.)
5. Combined Libraries.
You may place library facilities that are a work based on the
Library side by side in a single library together with other library
facilities that are not Applications and are not covered by this
License, and convey such a combined library under terms of your
choice, if you do both of the following:
a) Accompany the combined library with a copy of the same work based
on the Library, uncombined with any other library facilities,
conveyed under the terms of this License.
b) Give prominent notice with the combined library that part of it
is a work based on the Library, and explaining where to find the
accompanying uncombined form of the same work.
6. Revised Versions of the GNU Lesser General Public License.
The Free Software Foundation may publish revised and/or new versions
of the GNU Lesser General Public License from time to time. Such new
versions will be similar in spirit to the present version, but may
differ in detail to address new problems or concerns.
Each version is given a distinguishing version number. If the
Library as you received it specifies that a certain numbered version
of the GNU Lesser General Public License "or any later version"
applies to it, you have the option of following the terms and
conditions either of that published version or of any later version
published by the Free Software Foundation. If the Library as you
received it does not specify a version number of the GNU Lesser
General Public License, you may choose any version of the GNU Lesser
General Public License ever published by the Free Software Foundation.
If the Library as you received it specifies that a proxy can decide
whether future versions of the GNU Lesser General Public License shall
apply, that proxy's public statement of acceptance of any version is
permanent authorization for you to choose that version for the
Library.
-----------------------------------------------------------------------------
The “GNU General Public License” version 3 (GPL-3)
applies to:
- R, Copyright (C) 2018 The R Foundation for Statistical Computing
- shinydashboard [expanded from: GPL (≥ 2)], Copyright (c) 2014 RStudio, Inc.
- readxl, Copyright (c) Hadley Wickham ORCID iD [aut],
Jennifer Bryan ORCID iD [aut, cre], RStudio [cph, fnd]
(Copyright holder of all R code and all C/C++ code
without explicit copyright attribution),
Marcin Kalicinski [ctb, cph] (Author of included RapidXML code),
Komarov Valery [ctb, cph] (Author of included libxls code),
Christophe Leitienne [ctb, cph] (Author of included libxls code),
Bob Colbert [ctb, cph] (Author of included libxls code),
David Hoerl [ctb, cph] (Author of included libxls code),
Evan Miller [ctb, cph] (Author of included libxls code)
- DT, Copyright (c) Yihui Xie [aut, cre],
Joe Cheng [ctb], JJ Allaire [ctb], Xianying Tan [ctb], Maximilian Girlich [ctb],
jQuery contributors [ctb, cph] (jQuery in htmlwidgets/lib),
SpryMedia Limited [ctb, cph] (DataTables in htmlwidgets/lib),
Brian Reavis [ctb, cph] (selectize.js in htmlwidgets/lib),
Leon Gersen [ctb, cph] (noUiSlider in htmlwidgets/lib),
Bartek Szopka [ctb, cph] (jquery.highlight.js in htmlwidgets/lib),
RStudio Inc [cph]
- shiny, Copyright (c) Winston Chang [aut, cre],
Joe Cheng [aut], JJ Allaire [aut], Yihui Xie [aut],
Jonathan McPherson [aut], RStudio [cph],
jQuery Foundation [cph] (jQuery library and jQuery UI library),
jQuery contributors [ctb, cph]
(jQuery library; authors listed in inst/www/shared/jquery-AUTHORS.txt),
jQuery UI contributors [ctb, cph]
(jQuery UI library; authors listed in inst/www/shared/jqueryui/AUTHORS.txt),
Mark Otto [ctb] (Bootstrap library), Jacob Thornton [ctb] (Bootstrap library),
Bootstrap contributors [ctb] (Bootstrap library), Twitter,
Inc [cph] (Bootstrap library), Alexander Farkas [ctb, cph] (html5shiv library),
Scott Jehl [ctb, cph] (Respond.js library),
Stefan Petre [ctb, cph] (Bootstrap-datepicker library),
Andrew Rowls [ctb, cph] (Bootstrap-datepicker library),
Dave Gandy [ctb, cph] (Font-Awesome font),
Brian Reavis [ctb, cph] (selectize.js library),
Kristopher Michael Kowal [ctb, cph] (es5-shim library),
es5-shim contributors [ctb, cph] (es5-shim library),
Denis Ineshin [ctb, cph] (ion.rangeSlider library),
ami Samhuri [ctb, cph] (Javascript strftime library),
SpryMedia Limited [ctb, cph] (DataTables library),
John Fraser [ctb, cph] (showdown.js library),
John Gruber [ctb, cph] (showdown.js library),
Ivan Sagalaev [ctb, cph] (highlight.js library),
R Core Team [ctb, cph] (tar implementation from R)
- readr [expanded from: GPL (≥ 2)], Copyright (c)
Hadley Wickham [aut],
Jim Hester [aut, cre],
Romain Francois [aut],