Skip to content

DgiStreamer

DgiStreamer is a GUI based pipeline constructor built on top of https://gstreamer.freedesktop.org/ and Deepstream, two popular and widespread tools used to generate various data processing pipelines ranging from video to scientific data types. With DgiStreamer we offer a system to visually generate such video pipelines and help you deploy them via remote SSH connection.

Our main focus has been to offer a tool that unites the visual approach with the gst-launch command. Through DgiStreamer, you are provided with the flexibility of the familiar terminal to seamlessly construct your state-of-the-art pipeline application.

Installation

Before the tool is up and running you are required to install gStreamer. However, this step can be skipped if you intend to use the tool for pure remote testing and deployment.

Before continuing ensure that you can reach the gst-launch-1.0 command in your terminal, otherwise, the tool will not work.
NOTE: if you are using an environment manager tool like Anaconda, it is possible that the gStreamer CLI will be taken from the conda env and not from the system.

At this point you have only to download and use the tool:

after you have downloaded and installed your version you are good to go!

Deepstream

If you want to use Deepstream nodes with the tool you have to install it. At the moment we support only the 5.1 version, but this will be expanded in the near future.

In order to install Deepstream and it’s functionality you can follow their guide at:

https://docs.nvidia.com/metropolis/deepstream/dev-guide/text/DS_Quickstart.html

The visual pipeline fabricator

Your first Pipeline

In order to create a pipeline, you can start by right-clicking on the graph section and the list of available nodes is presented to you:

you can filter the nodes according to the role or plugin group:
at this point, you can continue to add elements until you end your pipeline with at least 1 sink node.

Deploy Targets

We enable you to specify multiple ssh deploy targets, which you can select and manage to effortlessly deploy your pipelines. To add a deploy target you only need to go in the deploy target drop-down and add a new one:

Once you have created the new target, you can now select and connect to it.
Note that the current target will be used to retrieve the video feed of the video debug node.

Remote Video Debug

If you want to use the remote video debug node that is integrated in the tool you are required to install the debug utility.
This is a CLI tool for npm that enables the remote (or local) machine in which it is installed to stream back the video of the dedicated debug-node.

Installation

NOTE: at the moment the remote tool should be used on linux ( no tests have been done on other OS )

It is also necessary to include in the installation the development binaries of gStreamer:

sudo apt install libgstreamer-plugins-base1.0-dev libgstreamer1.0-dev 

Install NodeJs:

Finally after the NodeJs installation you can install the tool:

sudo npm i -g dgistreamer-debugger

If you don’t want to use the global installation ‘-g’ you are required to create an alias to point the debug utility:

alias pipeline-debugger="path to js"

For other info about the debug tool : https://www.npmjs.com/package/dgistreamer-debugger

Use

To use the debug node simply add it to the pipeline. This node contains a videoconvert node so it will try to find a compatible format automatically. You only need to ensure that the video buffer is not inside the GPU, otherwise it will not work.

The tool will automatically use the current deploy target to run the pipeline and obtain the video feed.

Remeber to set a name for the node and a port in it’s parameters, otherwise it wil not work.

Terminal interface and deployment

Firstly, the terminal is automatically chosen from powershell or bash based on the system in which the GUI tool is running.
That being said, the terminal is a real terminal that can communicate with the one in your system and you can use any possible command that your terminal supports.

The essence of the GUI is to help you generate the shell commands. The tool is only writing for you inside your own shell and, when you change to another deploy target, we enable you to easily create the ssh command in order to connect to it.
So, in order to deploy on a remote machine, you have to change the deploy target and connect to it via the dedicated button. Then, you can use the debug or deploy button to generate the command to run the pipeline.

Pipeline deploy example:

If you want to let the pipeline run after you have closed the ssh session you can send the current executing pipeline in the background. We advise the use of something like nohup.

nohup <generated-pipeline> &

Known Issues

As of yet, it is not possible to deploy remotely via SSH any type of pipeline that has a node that renders the output via GUI, e.g. the xvimagesink node.

At the moment only a single source node is supported. If you are using more than 1 source nodes, only the oldest node is used (the first source node created).

The list of SSH deploy targets is currently not stored therefore you need to add them back each time.

We have yet to apply any strict link test between nodes thus, for now, only major time compatibility is supported (video with video, audio with audio etc…).

The pipeline can only support a single link between node caps.

The debug tool is not tested in non linux machines, and can present issues in newer versions.

Nodes

Here the lists of supported nodes:

deepcamera debugvideosink
deepstream 5.0 nvdewarper
nvdsanalytics
nvdsaudiotemplate
nvdsosd
nvdsvideotemplate
nveglglessink
nvegltransform
nvinfer
nvinferaudio
nvinferserver
nvjpegdec
nvmsgbroker
nvmsgconv
nvmultistreamtiler
nvof
nvofvisual
nvsegvisual
nvstreamdemux
nvstreammux
nvtracker
nvv4l2decoder
nvv4l2h264enc
nvv4l2h265enc
nvvideoconvert
gStreamer alpha alphacolor
gStreamer alphacolor alphacolor
gStreamer App appsink
appsrc
gStreamer Ass assrender
gStreamer autoconvert autoconvert
autovideoconvert
gStreamer AVI avidemux
avimux
avisubtitle
gStreamer Bayer bayer2rgb
rgb2bayer
gStreamer Bz2 bz2dec
bz2enc
gStreamer Core capsfilter
clocksync
concat
filesink
filesrc
queue
queue2
tee
gStreamer Debug breakmydata
capssetter
cpureport
navseek
progressreport
pushfilesrc
rndbuffersize
taginject
testsink
gStreamer isomp4 qtdemux
gStreamer playback decodebin
parsebin
uridecodebin
gStreamer RTP rtph264pay
rtph264depay
rtph265pay
rtph265depay
gStreamer SRTP srtpdec
srtpenc
gStreamer tcp socketsrc
tcpclientsink
tcpclientsrc
tcpserversink
tcpserversrc
gStreamer udp udpsink
udpsource
gStreamer Video4Linux2 v4l2sink
v4l2src
gStreamer videoconvert videoconvert
gStreamer videoparsersbad h264parse
h265parse
OpenCV breakmydata
cameracalibrate
cameraundistort
cvdilate
cvequalizehist
cverode
cvlaplace
cvsmooth
cvsobel
dewarp
disparity
edgedetect
faceblur
facedetect
grabcut
handdetect
motioncells
opencvtextoverlay
retinex
segmentation
skindetect
templatematch
xImage ximagesink
ximagesrc

Legal

3rd Parties

License Detail Name Copyright
MIT OR 
CC0-1.0
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.

OR

https://creativecommons.org/publicdomain/zero/1.0/legalcode
type-fest Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
AFLv2.1 OR BSD-3-Clause https://spdx.org/licenses/AFL-2.1.html

OR

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.
json-schema
Apache-2.0 Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. “License” shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. “Licensor” shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. “Legal Entity” shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, “control” means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. “You” (or “Your”) shall mean an individual or Legal Entity exercising permissions granted by this License. “Source” form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. “Object” form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. “Work” shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). “Derivative Works” shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. “Contribution” shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, “submitted” means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as “Not a Contribution.” “Contributor” shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a “NOTICE” text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work\ by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an “AS IS” BASIS, WITHOUT 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. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS aws-sign2
caseless
forever-agent
oauth-sign
request
sumchecker
ts-toolbelt
tunnel-agent
Custom All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * 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. * The name Hiroki Osame may not 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 HIROKI OSAME 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. import Copyright (c) 2014, Hiroki Osame
BSD-2-Clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 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. 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 OWNER 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. esprima Copyright JS Foundation and other contributors, https://js.foundation/
extract-zip Copyright (c) 2014 Max Ogden and other contributors. All rights reserved.
http-cache-semantics Copyright 2016-2018 Kornel Lesiński
json-schema-typed Copyright (c) 2018 IETF Trust, Austin Wright, Henry Andrews, Geraint Luff,. and Cloudflare, Inc. All rights reserved.
uri-js Copyright 2011 Gary Court. All rights reserved.
BSD-3-Clause Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 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. 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 OWNER 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. bcrypt-pbkdf Copyright (c) 2013 Ted Unangst <tedu@openbsd.org>*
d3-color Copyright 2010-2016 Mike Bostock. All rights reserved.
d3-dispatch Copyright 2010-2016 Mike Bostock. All rights reserved.
d3-drag Copyright 2010-2016 Mike Bostock. All rights reserved.
d3-ease Copyright 2010-2016 Mike Bostock. Copyright 2001 Robert Penner. All rights reserved.
d3-interpolate Copyright 2010-2016 Mike Bostock. All rights reserved.
d3-selection Copyright (c) 2010-2018, Michael Bostock. All rights reserved.
d3-timer Copyright 2010-2016 Mike Bostock. All rights reserved.
d3-transition Copyright (c) 2010-2015, Michael Bostock. All rights reserved.*
d3-zoom Copyright 2010-2016 Mike Bostock. All rights reserved.
duplexer3 Copyright (c) 2013, Deoxxa Development. ======================================. 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 Deoxxa Development 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 DEOXXA DEVELOPMENT ”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 DEOXXA DEVELOPMENT 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..
global-agent Copyright (c) 2019, Gajus Kuizinas (http://gajus.com/). All rights reserved.
global-tunnel-ng Copyright (c) 2013, GoInstant Inc., a salesforce.com company. All rights reserved.
hoist-non-react-statics Copyright (c) 2015, Yahoo! Inc. All rights reserved.. —————————————————-
qs Copyright (c) 2014, Nathan LaFreniere and other [contributors](https://github.com/ljharb/qs/graphs/contributors). All rights reserved.
qs Copyright (c) 2014 Nathan LaFreniere and other contributors.. All rights reserved.
roarr Copyright (c) 2019, Gajus Kuizinas (http://gajus.com/). All rights reserved.
source-map
source-map
sprintf-js Copyright (c) 2007-2014, Alexandru Marasteanu <hello [at) alexei (dot] ro>. All rights reserved.
sprintf-js Copyright (c) 2007-present, Alexandru Mărășteanu <hello@alexei.ro>. All rights reserved.
tough-cookie Copyright (c) 2015, Salesforce.com, Inc.. All rights reserved.
ISC Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. at-least-node
detect-node Copyright (c) 2017 Ilya Kantor
electron-ga Copyright (c) 2017 JayStack Enterprises
graceful-fs Copyright (c) Isaac Z. Schlueter, Ben Noordhuis, and Contributors
har-schema Copyright (c) 2015, Ahmad Nassri <ahmad@ahmadnassri.com>
inherits Copyright (c) Isaac Z. Schlueter
ini Copyright (c) Isaac Z. Schlueter and Contributors
json-stringify-safe Copyright (c) Isaac Z. Schlueter and Contributors
lru-cache Copyright (c) Isaac Z. Schlueter and Contributors
once Copyright (c) Isaac Z. Schlueter and Contributors
proto-list Copyright (c) Isaac Z. Schlueter and Contributors
sax Copyright (c) Isaac Z. Schlueter and Contributors
semver Copyright (c) Isaac Z. Schlueter and Contributors
semver Copyright (c) Isaac Z. Schlueter and Contributors
wrappy Copyright (c) Isaac Z. Schlueter and Contributors
yallist Copyright (c) Isaac Z. Schlueter and Contributors
MIT 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.
@ant-design/colors Copyright (c) 2018-present Ant UED, https://xtech.antfin.com/
@ant-design/colors Copyright (c) 2018-present Ant UED, https://xtech.antfin.com/
@ant-design/icons-svg
@ant-design/icons Copyright (c) 2018-present Ant UED, https://xtech.antfin.com/
@ant-design/icons Copyright (c) 2018-present Ant UED, https://xtech.antfin.com/
@ant-design/react-slick Copyright (c) 2014 Kiran Abburi
@babel/runtime Copyright (c) 2014-present Sebastian McKenzie and other contributors
@babel/runtime Copyright (c) 2014-present Sebastian McKenzie and other contributors
@ctrl/tinycolor Copyright (c) Scott Cooper <scttcper@gmail.com>
@ctrl/tinycolor Copyright (c) Scott Cooper <scttcper@gmail.com>
@electron/get
@hot-loader/react-dom Copyright (c) Facebook, Inc. and its affiliates.
@reduxjs/toolkit Copyright (c) 2018 Mark Erikson
@sindresorhus/is Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
@szmarczak/http-timer Copyright (c) 2018 Szymon Marczak
@types/node
@types/prop-types
@types/react
@types/resize-observer-browser
@types/semver
ajv-formats Copyright (c) 2020 Evgeny Poberezkin
ajv Copyright (c) 2015-2017 Evgeny Poberezkin
ajv Copyright (c) 2015-2021 Evgeny Poberezkin
antd Copyright (c) 2015-present Ant UED, https://xtech.antfin.com/
argparse Copyright (C) 2012 by Vitaly Puzrin
array-tree-filter
asn1 Copyright (c) 2011 Mark Cavage, All rights reserved.
assert-plus
async-validator Copyright (c) 2014-present yiminghe
asynckit Copyright (c) 2016 Alex Indigo
atomically Copyright (c) 2020-present Fabio Spampinato
aws4 Copyright 2013 Michael Hart (michael.hart.au@gmail.com)
big.js Copyright (c) 2018 Michael Mclaughlin
boolean
buffer-crc32 Copyright (c) 2013 Brian J. Brennan
buffer-from Copyright (c) 2016, 2018 Linus Unnebäck
builder-util-runtime
cacheable-request Copyright (c) 2017 Luke Childs
call-bind Copyright (c) 2020 Jordan Harband
classcat Copyright © Jorge Bucaran <<https://jorgebucaran.com>>
classnames Copyright (c) 2017 Jed Watson
clone-response Copyright (c) 2017 Luke Childs
clone Copyright © 2011-2015 Paul Vorbach <paul@vorba.ch>
combined-stream Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
compute-scroll-into-view Copyright (c) 2018 Cody Olsen
concat-stream Copyright (c) 2013 Max Ogden
conf Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
config-chain Copyright (c) 2011 Dominic Tarr
connected-react-router Copyright (c) 2016-present Supasate Choochaisri
copy-to-clipboard Copyright (c) 2017 sudodoki <smd.deluzion@gmail.com>
core-js Copyright (c) 2014-2020 Denis Pushkarev
core-util-is Copyright Node.js contributors. All rights reserved.
csstype Copyright (c) 2017-2018 Fredrik Nicol
dashdash Copyright (c) 2013 Trent Mick. All rights reserved.. Copyright (c) 2013 Joyent Inc. All rights reserved.
date-fns Copyright (C) 2020 Sasha Koss and Lesha Koss
dayjs Copyright (c) 2018-present, iamkun
debounce-fn Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
debug Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
debug Copyright (c) 2014 TJ Holowaychuk <tj@vision-media.ca>
decompress-response Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
deepmerge Copyright (c) 2012 James Halliday, Josh Duff, and other contributors
defaults Copyright (c) 2015 Elijah Insua
defer-to-connect Copyright (c) 2018 Szymon Marczak
define-properties Copyright (C) 2015 Jordan Harband
delayed-stream Copyright (c) 2011 Debuggable Limited <felix@debuggable.com>
dom-align Copyright (c) 2014-present yiminghe
dom-walk Copyright (c) 2012 Raynos.
dot-prop Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
easy-peasy Copyright (c) 2018 Sean Matheson
ecc-jsbn Copyright (c) 2014 Jeremie Miller
electron-debug Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
electron-is-accelerator Copyright (c) 2016 Thomas Brouard
electron-is-dev Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
electron-localshortcut
electron-log Copyright (c) 2016 Alexey Prokhorov
electron-store Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
electron-updater
electron Copyright (c) 2013-2019 GitHub Inc.
emojis-list Copyright © 2015 Kiko Beats
encodeurl Copyright (c) 2016 Douglas Christopher Wilson
end-of-stream Copyright (c) 2014 Mathias Buus
env-paths Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
env-paths Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
es6-error Copyright (c) 2015 Ben Youngblood
escape-string-regexp Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
extend Copyright (c) 2014 Stefan Thomas
extsprintf Copyright (c) 2012, Joyent, Inc. All rights reserved.
extsprintf Copyright (c) 2012, Joyent, Inc. All rights reserved.
fast-deep-equal Copyright (c) 2017 Evgeny Poberezkin
fast-json-stable-stringify Copyright (c) 2017 Evgeny Poberezkin. Copyright (c) 2013 James Halliday
fast-levenshtein Copyright (c) 2013 [Ramesh Nair](http://www.hiddentao.com/)
fd-slicer Copyright (c) 2014 Andrew Kelley
find-up Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
form-data Copyright (c) 2012 Felix Geisendörfer (felix@debuggable.com) and contributors
fs-extra Copyright (c) 2011-2017 JP Richardson
fs-extra Copyright (c) 2011-2017 JP Richardson
function-bind Copyright (c) 2013 Raynos.
get-intrinsic Copyright (c) 2020 Jordan Harband
get-stream Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
get-stream Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
getpass Copyright Joyent, Inc. All rights reserved.. Permission is hereby granted, free of charge, to any person obtaining a copy. of this software and associated documentation files (the Software”)
global Copyright (c) 2012 Colingo.
globalthis Copyright (c) 2016 Jordan Harband
got Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
har-validator Copyright (c) 2018 Ahmad Nassri <ahmad@ahmadnassri.com>
has-symbols Copyright (c) 2016 Jordan Harband
has Copyright (c) 2013 Thiago de Arruda
history Copyright (c) React Training 2016-2018
http-signature Copyright Joyent, Inc. All rights reserved.. Permission is hereby granted, free of charge, to any person obtaining a copy. of this software and associated documentation files (the Software”)
immer Copyright (c) 2017 Michel Weststrate
immer Copyright (c) 2017 Michel Weststrate
insert-css
is-obj Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
is-plain-object Copyright (c) 2014-2017, Jon Schlinkert.
is-typedarray
isarray Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
isarray Copyright (c) 2013 Julian Gruber &lt;julian@juliangruber.com&gt;
isstream Copyright (c) 2015 Rod Vagg. —————————
js-tokens Copyright (c) 2014, 2015, 2016, 2017, 2018 Simon Lydell
js-yaml Copyright (C) 2011-2015 by Vitaly Puzrin
jsbn
json-buffer Copyright (c) 2013 Dominic Tarr
json-schema-traverse Copyright (c) 2017 Evgeny Poberezkin
json-schema-traverse Copyright (c) 2017 Evgeny Poberezkin
json2mq Copyright (c) 2014 Kiran Abburi
json5 Copyright (c) 2012-2018 Aseem Kishore, and [others].
jsonfile Copyright (c) 2012-2015, JP Richardson <jprichardson@gmail.com>
jsonfile Copyright (c) 2012-2015, JP Richardson <jprichardson@gmail.com>
jsprim Copyright (c) 2012, Joyent, Inc. All rights reserved.
keyboardevent-from-electron-accelerator Copyright (c) 2017 Andrea Parodi
keyboardevents-areequal Copyright (c) 2017 Andrea
keyv Copyright (c) 2017 Luke Childs
lazy-val
load-script
loader-utils Copyright JS Foundation and other contributors
locate-path Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
lodash.debounce Copyright jQuery Foundation and other contributors <https://jquery.org/>
lodash.isequal Copyright JS Foundation and other contributors <https://js.foundation/>
lodash.throttle Copyright jQuery Foundation and other contributors <https://jquery.org/>
lodash Copyright OpenJS Foundation and other contributors <https://openjsf.org/>
loose-envify Copyright (c) 2015 Andres Suarez <zertosh@gmail.com>
lowercase-keys Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
lowercase-keys Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
map-or-similar Copyright (c) 2016 Baz
matcher Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
memoize-one Copyright (c) 2019 Alexander Reardon
memoizerific Copyright (c) 2016 Baz
mime-db Copyright (c) 2014 Jonathan Ong me@jongleberry.com
mime-types Copyright (c) 2014 Jonathan Ong <me@jongleberry.com>. Copyright (c) 2015 Douglas Christopher Wilson <doug@somethingdoug.com>
mimic-fn Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
mimic-fn Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
mimic-response Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
min-document Copyright (c) 2013 Colingo.
mini-create-react-context Copyright (c) 2019-present StringEpsilon <StringEpsilon@gmail.com>*
mini-store
minimist
mkdirp Copyright 2010 James Halliday (mail@substack.net)
moment Copyright (c) JS Foundation and other contributors
ms Copyright (c) 2016 Zeit, Inc.
ms Copyright (c) 2016 Zeit, Inc.
node-machine-id Copyright (c) 2016 Aleksandr Komlev
normalize-url Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
npm-conf Copyright (c) Kevin MÃ¥rtensson <kevinmartensson@gmail.com> (github.com/kevva)
object-assign Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
object-inspect Copyright (c) 2013 James Halliday
object-keys Copyright (C) 2013 Jordan Harband
onetime Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
p-cancelable Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
p-limit Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
p-locate Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
p-try Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
path-exists Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
path-to-regexp Copyright (c) 2014 Blake Embrey (hello@blakeembrey.com)
pend Copyright (c) 2014 Andrew Kelley
performance-now Copyright (c) 2013 Braveg1rl
pify Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
pkg-up Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
prepend-http Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
process-nextick-args
process Copyright (c) 2013 Roman Shtylman <shtylman@gmail.com>
progress Copyright (c) 2017 TJ Holowaychuk <tj@vision-media.ca>
prop-types Copyright (c) 2013-present, Facebook, Inc.
psl Copyright (c) 2017 Lupo Montero lupomontero@gmail.com
pump Copyright (c) 2014 Mathias Buus
punycode Copyright Mathias Bynens <https://mathiasbynens.be/>
rc-align Copyright (c) 2014-present yiminghe
rc-cascader Copyright (c) 2014-present alipay.com
rc-checkbox
rc-collapse Copyright (c) 2014-present yiminghe
rc-dialog Copyright (c) 2014-present yiminghe
rc-drawer Copyright (c) 2015-present Alipay.com, https://www.alipay.com/
rc-dropdown
rc-field-form Copyright (c) 2019-present react-component
rc-image Copyright (c) 2015-present Alipay.com, https://www.alipay.com/
rc-input-number Copyright (c) 2014-present yiminghe
rc-mentions Copyright (c) 2019-present alipay.com
rc-menu Copyright (c) 2014-present yiminghe
rc-motion Copyright (c) 2019-present afc163
rc-notification Copyright (c) 2014-present yiminghe
rc-overflow Copyright (c) 2019-present afc163
rc-pagination Copyright (c) 2014-present yiminghe
rc-picker Copyright (c) 2019-present afc163
rc-progress Copyright (c) 2014-present yiminghe
rc-rate Copyright (c) 2014-present yiminghe
rc-resize-observer Copyright (c) 2019-present afc163
rc-select Copyright (c) 2014-present alipay.com
rc-slider
rc-steps Copyright (c) 2014-present yiminghe
rc-switch Copyright (c) 2014-present yiminghe
rc-table Copyright (c) 2015-present Alipay.com, https://www.alipay.com/
rc-tabs Copyright (c) 2014-present yiminghe
rc-textarea Copyright (c) 2019-present afc163
rc-tooltip
rc-tree-select Copyright (c) 2015-present Alipay.com, https://www.alipay.com/
rc-tree Copyright (c) 2015-present Alipay.com, https://www.alipay.com/
rc-trigger
rc-upload Copyright (c) 2016-present react-component
rc-util Copyright (c) 2014-present yiminghe. Copyright (c) 2015-present Alipay.com, https://www.alipay.com/
rc-virtual-list
react-console-emulator Copyright (c) 2018-2020 Linus Willner and Curtis Fowler
react-contextmenu Copyright (c) 2015 Vivek Kumar Bansal
react-dom Copyright (c) Facebook, Inc. and its affiliates.
react-draggable Copyright (c) 2014-2016 Matt Zabriskie. All rights reserved..  . Permission is hereby granted, free of charge, to any person obtaining a. copy of this software and associated documentation files (the Software”)
react-fast-compare Copyright (c) 2018 Formidable Labs. Copyright (c) 2017 Evgeny Poberezkin
react-flow-renderer Copyright 2020 webkid GbmH
react-hot-loader Copyright (c) 2016 Dan Abramov
react-inner-html
react-innertext Copyright (c) 2017 Charles Stover
react-is Copyright (c) Facebook, Inc. and its affiliates.
react-lifecycles-compat Copyright (c) 2013-present, Facebook, Inc.
react-player Copyright © Pete Cook http://cookpete.com
react-redux Copyright (c) 2015-present Dan Abramov
react-resize-detector Copyright (c) 2016 Denis Rul
react-router-dom Copyright (c) React Training 2016-2018
react-router-redux Copyright (c) 2015-present James Long
react-router Copyright (c) React Training 2016-2018
react Copyright (c) Facebook, Inc. and its affiliates.
readable-stream
redux-beacon-electron Copyright (c) 2018-present, Dotan Nahum.
redux-thunk Copyright (c) 2015-present Dan Abramov
redux-undo Copyright (c) 2015 Daniel Bugl
redux Copyright (c) 2015-present Dan Abramov
regenerator-runtime Copyright (c) 2014-present, Facebook, Inc.
require-from-string Copyright (c) Vsevolod Strukchinsky <floatdrop@gmail.com> (github.com/floatdrop)
reselect Copyright (c) 2015-2018 Reselect Contributors
resize-observer-polyfill Copyright (c) 2016 Denis Rul
resolve-pathname Copyright (c) Michael Jackson 2016-2018
responselike Copyright (c) 2017 Luke Childs
safe-buffer Copyright (c) Feross Aboukhadijeh
safe-buffer Copyright (c) Feross Aboukhadijeh
safer-buffer Copyright (c) 2018 Nikita Skovoroda <chalkerx@gmail.com>
scheduler Copyright (c) Facebook, Inc. and its affiliates.
scroll-into-view-if-needed Copyright (c) 2017 Stian Didriksen
semver-compare
serialize-error Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
shallowequal Copyright (c) 2017 Alberto Leal <mailforalberto@gmail.com> (github.com/dashed)
side-channel Copyright (c) 2019 Jordan Harband
source-map-support Copyright (c) 2014 Evan Wallace
sshpk Copyright Joyent, Inc. All rights reserved.. Permission is hereby granted, free of charge, to any person obtaining a copy. of this software and associated documentation files (the Software”)
string-convert Copyright (c) 2014 Kiran Abburi
string_decoder
symbol-observable Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com). Copyright (c) Ben Lesh <ben@benlesh.com>
symbol-observable Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com). Copyright (c) Ben Lesh <ben@benlesh.com>
tiny-invariant Copyright (c) 2019 Alexander Reardon
tiny-warning Copyright (c) 2019 Alexander Reardon
to-readable-stream Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
toggle-selection
tunnel Copyright (c) 2012 Koichi Kobayashi
typedarray
universal-analytics Copyright (c) 2017 Peaks & Pies GmbH &lt;hello@peaksandpies.com&gt;
universalify Copyright (c) 2017, Ryan Zimmerman <opensrc@ryanzim.com>
universalify Copyright (c) 2017, Ryan Zimmerman <opensrc@ryanzim.com>
url-parse-lax Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
use-memo-one Copyright (c) 2019 Alexander Reardon
util-deprecate Copyright (c) 2014 Nathan Rajlich <nathan@tootallnate.net>
uuid Copyright (c) 2010-2016 Robert Kieffer and other contributors
uuid Copyright (c) 2010-2020 Robert Kieffer and other contributors
value-equal Copyright (c) Michael Jackson 2016-2018
verror Copyright (c) 2016, Joyent, Inc. All rights reserved.
warning Copyright (c) 2013-present, Facebook, Inc.
wordwrap
xterm-addon-fit Copyright (c) 2019, The xterm.js authors (https://github.com/xtermjs/xterm.js)
xterm-for-react Copyright (c) 2020 Robert Harbison
xterm Copyright (c) 2017-2019, The xterm.js authors (https://github.com/xtermjs/xterm.js). Copyright (c) 2014-2016, SourceLair Private Company (https://www.sourcelair.com). Copyright (c) 2012-2013, Christopher Jeffrey (https://github.com/chjj/)
yauzl Copyright (c) 2014 Josh Wolfe
MIT* This project is free software released under the MIT/X11 license: 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. optimist Copyright 2010 James Halliday (mail@substack.net)
Unlicense This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. 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 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. For more information, please refer to tweetnacl
WTFPL DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE Version 2, December 2004 Copyright (C) 2004 Sam Hocevar 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. truncate-utf8-bytes
utf8-byte-length
WTFPL OR ISC Version 2, December 2004 Copyright (C) 2004 Sam Hocevar 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.
OR
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED “AS IS” AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
sanitize-filename Copyright (C) 2004 Sam Hocevar \<sam@hocevar.net>