Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: bone101
Source: <https://jadonk.github.io/bone101>

#----------------------------------------------------------------------------
Copyright: 2014 IIJ Innovation Institute Inc.
Files: ./examples/Grove_BBG/Software/Python/Grove_Digital_Light_Sensor/grove_i2c_digital_light_sensor.py
# licensecheck(1): ./examples/Grove_BBG/Software/Python/Grove_Digital_Light_Sensor/grove_i2c_digital_light_sensor.py: BSD (2 clause)
License:
  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 IIJ INNOVATION INSTITUTE INC. ``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 IIJ INNOVATION INSTITUTE INC. 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.
 .
 Copyright 2014 Keiichi Shima.
 .
 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 AUTHOR ``AS IS'' AND ANY EXPRESS OR
 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
 ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
 IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

#............................................................................
# Gray hits with matching text of "copyright":
# NO_LICENSE_TEXT_FOUND   ./examples/Grove_BBG/Software/Python/Grove_Digital_Light_Sensor/grove_i2c_digital_light_sensor.py: 75, 
#	Copyright 2014 Johan Vandewalle. 
#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.image.min.js
	./static/flot/jquery.flot.image.min.js
	./build/static/flot/jquery.flot.image.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.image.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 The data syntax is [ [ image, x1, y1, x2, y2 ], ... ] where (x1, y1) and
 (x2, y2) are where you intend the two opposite corners of the image to end up
 in the plot. Image must be a fully loaded Javascript image (you can make one
 with new Image()). If the image is not complete, it's skipped when plotting.
 .
 There are two helpers included for retrieving images. The easiest work the way
 that you put in URLs instead of images in the data, like this:
 .
 [ "myimage.png", 0, 0, 10, 10 ]
 .
 Then call $.plot.image.loadData( data, options, callback ) where data and
 options are the same as you pass in to $.plot. This loads the images, replaces
 the URLs in the data with the corresponding images and calls "callback" when
 all images are loaded (or failed loading). In the callback, you can then call
 $.plot with the data set. See the included example.
 .
 A more low-level helper, $.plot.image.load(urls, callback) is also included.
 Given a list of URLs, it calls callback with an object mapping from URL to
 Image object when all images are loaded or have failed loading.
 .
 The plugin supports these options:
 .
 series: {
 images: {
 show: boolean
 anchor: "corner" or "center"
 alpha: [ 0, 1 ]

#----------------------------------------------------------------------------
Copyright: 2010 Ajax.org B.V.
Files: ./static/third_party/ace/ace.LICENSE
	./build/static/third_party/ace/ace.LICENSE
# licensecheck(1): ./static/third_party/ace/ace.LICENSE: BSD (3 clause)
License:
  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 Ajax.org B.V. 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 AJAX.ORG B.V. 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.

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.pie.min.js
	./static/flot/jquery.flot.pie.min.js
	./build/static/flot/jquery.flot.pie.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.pie.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 The plugin assumes that each series has a single data value, and that each
 value is a positive integer or zero.  Negative numbers don't make sense for a
 pie chart, and have unpredictable results.  The values do NOT need to be
 passed in as percentages; the plugin will calculate the total and per-slice
 percentages internally.
 .
 * Created by Brian Medendorp
 .
 * Updated with contributions from btburnett3, Anthony Aragues and Xavi Ivars
 .
 The plugin supports these options:
 .
 series: {
 pie: {
 show: true/false
 radius: 0-1 for percentage of fullsize, or a specified pixel length, or 'auto'
 innerRadius: 0-1 for percentage of fullsize or a specified pixel length, for creating a donut effect
 startAngle: 0-2 factor of PI used for starting angle (in radians) i.e 3/2 starts at the top, 0 and 2 have the same result
 tilt: 0-1 for percentage to tilt the pie, where 1 is no tilt, and 0 is completely flat (nothing will show)
 offset: {
 top: integer value to move the pie up or down
 left: integer value to move the pie left or right, or 'auto'

#----------------------------------------------------------------------------
Copyright: 2003-2014 CKSource - Frederico Knabben.
Files: ./static/third_party/ckeditor/README.md
# licensecheck(1): ./static/third_party/ckeditor/README.md: UNKNOWN
License:
  http://ckeditor.com - See LICENSE.md for license information.
 .
 CKEditor is a text editor to be used inside web pages. It's not a replacement
 for desktop text editors like Word or OpenOffice, but a component to be used as
 part of web applications and websites.
 .
 ## Documentation
 .
 The full editor documentation is available online at the following address:
 http://docs.ckeditor.com
 .
 ## Installation
 .
 Installing CKEditor is an easy task. Just follow these simple steps:
 .
 1. **Download** the latest version from the CKEditor website:
 http://ckeditor.com. You should have already completed this step, but be
 sure you have the very latest version.
 2. **Extract** (decompress) the downloaded file into the root of your website.
 .
 **Note:** CKEditor is by default installed in the `ckeditor` folder. You can
 place the files in whichever you want though.
 .
 ## Checking Your Installation
 .
 The editor comes with a few sample pages that can be used to verify that
 installation proceeded properly. Take a look at the `samples` directory.
 .
 To test your installation, just call the following page at your website:
 .
 http://<your site>/<CKEditor installation path>/samples/index.html
 .
 For example:
 .
 http://www.example.com/ckeditor/samples/index.html

#----------------------------------------------------------------------------
Copyright: 2014 Adafruit Industries Author: Tony DiCola
Files: ./examples/Grove_BBG/Software/Python/Adafruit_Python_BMP/examples/simpletest.py
# licensecheck(1): ./examples/Grove_BBG/Software/Python/Adafruit_Python_BMP/examples/simpletest.py: MIT/X11 (BSD like)
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.
 .
 Can enable debug output by uncommenting:
 import logging

#----------------------------------------------------------------------------
Copyright: 2014 seeed technology inc. Website    : www.seeed.cc Author     : Lambor Create Time: Nov Change Log :
Files: ./examples/Grove_BBG/Software/Python/Grove_RTC.py
# licensecheck(1): ./examples/Grove_BBG/Software/Python/Grove_RTC.py: MIT/X11 (BSD like)
License:
  The MIT License (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.

#----------------------------------------------------------------------------
Copyright: 2014 TJ Holowaychuk &lt;tj@vision-media.ca&gt;
Files: ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/Readme.md
# licensecheck(1): ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/Readme.md: *No copyright* UNKNOWN
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.

#----------------------------------------------------------------------------
Copyright: 2015 Sandeep Mistry <sandeep.mistry@gmail.com>
 2013 
 2010 Stephen Walters
 2012 Near Infinity Corporation
 Joyent, Inc. and other Node contributors.
 2014 Adafruit Industries Author: Tony DiCola
 2012-2013 David Gallegos
 2012 Twilio Inc.
 2007-2013 IOLA and Ole Laursen
 2013 Sandeep Mistry
Files: ./examples/cookbook/06-iot/twilio-test.js
	./examples/cookbook/02-sensors/sensorTag.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/README.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_string_bytes.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/README.md
	./examples/extras/edid.js
	./examples/extras/bacon_cape/flot/LICENSE.txt
	./examples/Grove_BBG/Software/Python/Adafruit_Python_BMP/Adafruit_BMP/BMP085.py
	./examples/Grove_BBG/Software/Python/Adafruit_Python_BMP/examples/google_spreadsheet.py
	./examples/Grove_BBG/Software/Python/Grove_IMU_10DOF/BMP085.py
	./static/flot/LICENSE.txt
	./static/third_party/slick/slick.LICENSE
	./build/static/flot/LICENSE.txt
	./build/static/third_party/slick/slick.LICENSE
# licensecheck(1): ./examples/cookbook/06-iot/twilio-test.js: MIT/X11 (BSD like)
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.

#----------------------------------------------------------------------------
Copyright: 2003-2015 CKSource - Frederico Knabben.
Files: ./static/third_party/ckeditor/LICENSE.md
	./build/static/third_party/ckeditor/LICENSE.md
# licensecheck(1): ./static/third_party/ckeditor/LICENSE.md: MPL (v1.1)
License:
  Licensed under the terms of any of the following licenses at your
 choice:
 .
 - GNU General Public License Version 2 or later (the "GPL")
 http://www.gnu.org/licenses/gpl.html
 (See Appendix A)
 .
 - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
 http://www.gnu.org/licenses/lgpl.html
 (See Appendix B)
 .
 - Mozilla Public License Version 1.1 or later (the "MPL")
 http://www.mozilla.org/MPL/MPL-1.1.html
 (See Appendix C)
 .
 You are not required to, but if you want to explicitly declare the
 license you have chosen to be bound to when using, reproducing,
 modifying and distributing this software, just include a text file
 titled "legal.txt" in your version of this software, indicating your
 license choice. In any case, your choice will not restrict any
 recipient of your version of this software to use, reproduce, modify
 and distribute this software under any of the above licenses.
 .
 Sources of Intellectual Property Included in CKEditor

#............................................................................
# Gray hits with matching text of "copyright":
# NO_LICENSE_TEXT_FOUND   ./static/third_party/ckeditor/LICENSE.md: 332, 
#	Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
# NO_LICENSE_TEXT_FOUND   ./static/third_party/ckeditor/LICENSE.md: 795, 
#	Copyright (C) 1991, 1999 Free Software Foundation, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/third_party/ckeditor/LICENSE.md: 1241, 
#	(c) the licenses granted in this Section 2.1(a) and (b) are, effective on the date Initial Developer first distributes, Original Code under the terms of this License.
# !!! manual check needed ./static/third_party/ckeditor/LICENSE.md: 1245, 
#	Portions created by ______________________ are Copyright (C) ______
# NO_LICENSE_TEXT_FOUND   ./build/static/third_party/ckeditor/LICENSE.md: 332, 
#	Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
# NO_LICENSE_TEXT_FOUND   ./build/static/third_party/ckeditor/LICENSE.md: 795, 
#	Copyright (C) 1991, 1999 Free Software Foundation, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/third_party/ckeditor/LICENSE.md: 1241, 
#	(c) the licenses granted in this Section 2.1(a) and (b) are, effective on the date Initial Developer first distributes, Original Code under the terms of this License.
# !!! manual check needed ./build/static/third_party/ckeditor/LICENSE.md: 1245, 
#	Portions created by ______________________ are Copyright (C) ______
#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.stack.min.js
	./static/flot/jquery.flot.stack.min.js
	./build/static/flot/jquery.flot.stack.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.stack.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 The plugin assumes the data is sorted on x (or y if stacking horizontally).
 For line charts, it is assumed that if a line has an undefined gap (from a
 null point), then the line above it should have the same gap - insert zeros
 instead of "null" if you want another behaviour. This also holds for the start
 and end of the chart. Note that stacking a mix of positive and negative values
 in most instances doesn't make sense (so it looks weird).
 .
 Two or more series are stacked when their "stack" attribute is set to the same
 key (which can be any number or string or just "true"). To specify the default
 stack, you can set the stack option like this:
 .
 series: {
 stack: null/false, true, or a key (number/string)

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.errorbars.min.js
	./static/flot/jquery.flot.errorbars.min.js
	./build/static/flot/jquery.flot.errorbars.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.errorbars.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 Error bars are used to show standard deviation and other statistical
 properties in a plot.
 .
 * Created by Rui Pereira  -  rui (dot) pereira (at) gmail (dot) com
 .
 This plugin allows you to plot error-bars over points. Set "errorbars" inside
 the points series to the axis name over which there will be error values in
 your data array (*even* if you do not intend to plot them later, by setting
 "show: null" on xerr/yerr).
 .
 The plugin supports these options:
 .
 series: {
 points: {
 errorbars: "x" or "y" or "xy",
 xerr: {
 show: null/false or true,
 asymmetric: null/false or true,
 upperCap: null or "-" or function,
 lowerCap: null or "-" or function,
 color: null or color,
 radius: null or number

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.canvas.min.js
	./static/flot/jquery.flot.canvas.min.js
	./build/static/flot/jquery.flot.canvas.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.canvas.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 Flot normally produces certain elements, like axis labels and the legend, using
 HTML elements. This permits greater interactivity and customization, and often
 looks better, due to cross-browser canvas text inconsistencies and limitations.
 .
 It can also be desirable to render the plot entirely in canvas, particularly
 if the goal is to save it as an image, or if Flot is being used in a context
 where the HTML DOM does not exist, as is the case within Node.js. This plugin
 switches out Flot's standard drawing operations for canvas-only replacements.
 .
 Currently the plugin supports only axis labels, but it will eventually allow
 every element of the plot to be rendered directly to canvas.
 .
 The plugin supports these options:

#----------------------------------------------------------------------------
Copyright: 2003-2015 CKSource - Frederico Knabben.
Files: ./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt
# licensecheck(1): ./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/_translationstatus.txt: UNKNOWN
License:
  For licensing, see LICENSE.md or http://ckeditor.com/license
 .
 cs.js      Found: 30 Missing: 0
 cy.js      Found: 30 Missing: 0
 da.js      Found: 12 Missing: 18
 de.js      Found: 30 Missing: 0
 el.js      Found: 25 Missing: 5
 eo.js      Found: 30 Missing: 0
 fa.js      Found: 30 Missing: 0
 fi.js      Found: 30 Missing: 0
 fr.js      Found: 30 Missing: 0
 gu.js      Found: 12 Missing: 18
 he.js      Found: 30 Missing: 0
 it.js      Found: 30 Missing: 0
 mk.js      Found: 5 Missing: 25
 nb.js      Found: 30 Missing: 0
 nl.js      Found: 30 Missing: 0
 no.js      Found: 30 Missing: 0
 pt-br.js   Found: 30 Missing: 0
 ro.js      Found: 6 Missing: 24
 tr.js      Found: 30 Missing: 0
 ug.js      Found: 27 Missing: 3
 vi.js      Found: 6 Missing: 24
 zh-cn.js   Found: 30 Missing: 0

#----------------------------------------------------------------------------
Copyright: 2007-2013 &copy; M. Alsup.
Files: ./static/third_party/blockui/README.md
# licensecheck(1): ./static/third_party/blockui/README.md: UNKNOWN
License:
  The BlockUI plugin is dual licensed under the [MIT](http://malsup.github.com/mit-license.txt) and [GPL](http://malsup.github.com/gpl-license-v2.txt) licenses.
 .
 You may use either license.  The MIT license is recommended for most projects because it is simple and easy to understand and it places almost no restrictions on what you can do with the plugin.
 .
 If the GPL suits your project better you are also free to use the plugin under that license.
 .
 You do not have to do anything special to choose one license or the other and you don't have to notify anyone which license you are using. You are free to use the BlockUI plugin in commercial projects as long as the copyright header is left intact.

#----------------------------------------------------------------------------
Copyright: 2012 &copy; [CKSource](http://cksource.com) - Frederico Knabben.
Files: ./static/third_party/ckeditor/plugins/scayt/LICENSE.md
	./static/third_party/ckeditor/plugins/wsc/LICENSE.md
	./build/static/third_party/ckeditor/plugins/scayt/LICENSE.md
	./build/static/third_party/ckeditor/plugins/wsc/LICENSE.md
# licensecheck(1): ./static/third_party/ckeditor/plugins/scayt/LICENSE.md: MPL (v1.1)
License:
  Licensed under the terms of any of the following licenses at your choice:
 .
 *   GNU General Public License Version 2 or later (the "GPL"):
 http://www.gnu.org/licenses/gpl.html
 .
 *   GNU Lesser General Public License Version 2.1 or later (the "LGPL"):
 http://www.gnu.org/licenses/lgpl.html
 .
 *   Mozilla Public License Version 1.1 or later (the "MPL"):
 http://www.mozilla.org/MPL/MPL-1.1.html
 .
 You are not required to, but if you want to explicitly declare the license you have chosen to be bound to when using, reproducing, modifying and distributing this software, just include a text file titled "legal.txt" in your version of this software, indicating your license choice.
 .
 Sources of Intellectual Property Included in this plugin

#----------------------------------------------------------------------------
Copyright: 2003-2015 CKSource - Frederico Knabben.
Files: ./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt
# licensecheck(1): ./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/_translationstatus.txt: UNKNOWN
License:
  For licensing, see LICENSE.md or http://ckeditor.com/license
 .
 cs.js      Found: 118 Missing: 0
 cy.js      Found: 118 Missing: 0
 de.js      Found: 118 Missing: 0
 el.js      Found: 16 Missing: 102
 eo.js      Found: 118 Missing: 0
 et.js      Found: 31 Missing: 87
 fa.js      Found: 24 Missing: 94
 fi.js      Found: 23 Missing: 95
 fr.js      Found: 118 Missing: 0
 hr.js      Found: 23 Missing: 95
 it.js      Found: 118 Missing: 0
 nb.js      Found: 118 Missing: 0
 nl.js      Found: 118 Missing: 0
 no.js      Found: 118 Missing: 0
 tr.js      Found: 118 Missing: 0
 ug.js      Found: 39 Missing: 79
 zh-cn.js   Found: 118 Missing: 0

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.categories.min.js
	./static/flot/jquery.flot.categories.min.js
	./build/static/flot/jquery.flot.categories.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.categories.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 Consider a dataset like [["February", 34], ["March", 20], ...]. This plugin
 allows you to plot such a dataset directly.
 .
 To enable it, you must specify mode: "categories" on the axis with the textual
 labels, e.g.
 .
 $.plot("#placeholder", data, { xaxis: { mode: "categories" } });
 .
 By default, the labels are ordered as they are met in the data series. If you
 need a different ordering, you can specify "categories" on the axis options
 and list the categories there:
 .
 xaxis: {
 mode: "categories",
 categories: ["February", "March", "April"]

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.fillbetween.min.js
	./static/flot/jquery.flot.fillbetween.min.js
	./build/static/flot/jquery.flot.fillbetween.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.fillbetween.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 The case: you've got two series that you want to fill the area between. In Flot
 terms, you need to use one as the fill bottom of the other. You can specify the
 bottom of each data point as the third coordinate manually, or you can use this
 plugin to compute it for you.
 .
 In order to name the other series, you need to give it an id, like this:

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.navigate.min.js
	./static/flot/jquery.flot.navigate.min.js
	./build/static/flot/jquery.flot.navigate.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.navigate.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 The default behaviour is double click and scrollwheel up/down to zoom in, drag
 to pan. The plugin defines plot.zoom({ center }), plot.zoomOut() and
 plot.pan( offset ) so you easily can add custom controls. It also fires
 "plotpan" and "plotzoom" events, useful for synchronizing plots.
 .
 The plugin supports these options:
 .
 zoom: {
 interactive: false
 trigger: "dblclick" // or "click" for single click

#............................................................................
# Gray hits with matching text of "copyright":
# NO_LICENSE_TEXT_FOUND   ./examples/extras/bacon_cape/flot/jquery.flot.navigate.min.js: 85, 
#	jquery.event.drag.js ~ v1.5 ~ Copyright (c) 2008, Three Dub Media (http://threedubmedia.com)
# NO_LICENSE_TEXT_FOUND   ./static/flot/jquery.flot.navigate.min.js: 85, 
#	jquery.event.drag.js ~ v1.5 ~ Copyright (c) 2008, Three Dub Media (http://threedubmedia.com)
# NO_LICENSE_TEXT_FOUND   ./build/static/flot/jquery.flot.navigate.min.js: 85, 
#	jquery.event.drag.js ~ v1.5 ~ Copyright (c) 2008, Three Dub Media (http://threedubmedia.com)
#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.resize.min.js
	./static/flot/jquery.flot.resize.min.js
	./build/static/flot/jquery.flot.resize.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.resize.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 It works by listening for changes on the placeholder div (through the jQuery
 resize event plugin) - if the size changes, it will redraw the plot.
 .
 There are no options. If you need to disable the plugin for some plots, you
 can just fix the size of their placeholders.

#............................................................................
# Gray hits with matching text of "copyright":
# !!! manual check needed ./examples/extras/bacon_cape/flot/jquery.flot.resize.min.js: 18, 
#	Copyright (c) 2010 "Cowboy" Ben Alman, Dual licensed under the MIT and GPL licenses., http://benalman.com/about/license/
# !!! manual check needed ./static/flot/jquery.flot.resize.min.js: 18, 
#	Copyright (c) 2010 "Cowboy" Ben Alman, Dual licensed under the MIT and GPL licenses., http://benalman.com/about/license/
# !!! manual check needed ./build/static/flot/jquery.flot.resize.min.js: 18, 
#	Copyright (c) 2010 "Cowboy" Ben Alman, Dual licensed under the MIT and GPL licenses., http://benalman.com/about/license/
#----------------------------------------------------------------------------
Copyright: 2011 Jakub Jankiewicz <http://jcubic.pl>
Files: ./static/jquery.terminal.js
	./build/static/jquery.terminal.js
# licensecheck(1): ./static/jquery.terminal.js: UNKNOWN
License:
  Includes:
 .
 Storage plugin Distributed under the MIT License
 Copyright (c) 2010 Dave Schindler
 .
 LiveQuery plugin Dual MIT and GPL
 Copyright (c) 2008 Brandon Aaron (http://brandonaaron.net)
 .
 jQuery Timers licenced with the WTFPL
 <http://jquery.offput.ca/every/>
 .
 Date: Wed, 04 Apr 2012 16:30:49 +0000

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.selection.min.js
	./static/flot/jquery.flot.selection.min.js
	./build/static/flot/jquery.flot.selection.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.selection.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 The plugin supports these options:
 .
 selection: {
 mode: null or "x" or "y" or "xy",
 color: color,
 shape: "round" or "miter" or "bevel",
 minSize: number of pixels

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.symbol.min.js
	./static/flot/jquery.flot.symbol.min.js
	./build/static/flot/jquery.flot.symbol.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.symbol.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 The symbols are accessed as strings through the standard symbol options:
 .
 series: {
 points: {
 symbol: "square" // or "diamond", "triangle", "cross"

#----------------------------------------------------------------------------
Copyright: 19-2016 NAN contributors: - Rod Vagg <https://github.com/rvagg> - Benjamin Byholm <https://github.com/kkoopa> - Trevor Norris <https://github.com/trevnorris> - Nathan Rajlich <https://github.com/TooTallNate> - Brett Lawson <https://github.com/brett> - Ben Noordhuis <https://github.com/bnoordhuis> - David Siegel <https://github.com/agnat>
Files: ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan.h
# licensecheck(1): ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan.h: UNKNOWN
License:
  MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>
 .
 Version 2.3.5: current Node 6.2.0, Node 12: 0.12.14, Node 10: 0.10.45, iojs: 3.3.1
 .
 See https://github.com/nodejs/nan for the latest update to this file

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.crosshair.min.js
	./static/flot/jquery.flot.crosshair.min.js
	./build/static/flot/jquery.flot.crosshair.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.crosshair.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 The plugin supports these options:
 .
 crosshair: {
 mode: null or "x" or "y" or "xy"
 color: color
 lineWidth: number

#----------------------------------------------------------------------------
Copyright: 2003-2015 CKSource - Frederico Knabben.
Files: ./static/third_party/ckeditor/skins/moono/readme.md
	./build/static/third_party/ckeditor/skins/moono/readme.md
# licensecheck(1): ./static/third_party/ckeditor/skins/moono/readme.md: UNKNOWN
License:
  Licensed under the terms of any of the following licenses at your choice: [GPL](http://www.gnu.org/licenses/gpl.html), [LGPL](http://www.gnu.org/licenses/lgpl.html) and [MPL](http://www.mozilla.org/MPL/MPL-1.1.html).
 .
 See LICENSE.md for more information.

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.time.min.js
	./static/flot/jquery.flot.time.min.js
	./build/static/flot/jquery.flot.time.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.time.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 Set axis.mode to "time" to enable. See the section "Time series data" in
 API.txt for details.

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.threshold.min.js
	./static/flot/jquery.flot.threshold.min.js
	./build/static/flot/jquery.flot.threshold.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.threshold.min.js: UNKNOWN
License:
  Licensed under the MIT license.
 .
 The plugin supports these options:
 .
 series: {
 threshold: {
 below: number
 color: colorspec

#----------------------------------------------------------------------------
Copyright: 2011-2012 :  ${2:Author} ${3:}\n\
Files: ./static/third_party/ace/src/snippets/haskell.js
	./build/static/third_party/ace/src/snippets/haskell.js
# licensecheck(1): ./static/third_party/ace/src/snippets/haskell.js: UNKNOWN
License:
  License     :  ${4:BSD3}\n\
 \n\
 Maintainer  :  ${5:email@something.com}\n\
 Stability   :  ${6:experimental}\n\
 Portability :  ${7:unknown}\n\
 \n\
 ${8:Description}\n\
 \n\

#----------------------------------------------------------------------------
Copyright: 2012 jQuery Foundation and other contributors
Files: ./static/jquery.ui.accordion.js
	./build/static/jquery.ui.accordion.js
# licensecheck(1): ./static/jquery.ui.accordion.js: UNKNOWN
License:
  Released under the MIT license.
 http://jquery.org/license
 .
 http://api.jqueryui.com/accordion/
 .
 Depends:
 jquery.ui.core.js
 jquery.ui.widget.js

#----------------------------------------------------------------------------
Copyright: 2003-2014 CKSource - Frederico Knabben.
Files: ./static/third_party/ckeditor/plugins/wsc/dialogs/ciframe.html
	./static/third_party/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
	./build/static/third_party/ckeditor/plugins/wsc/dialogs/ciframe.html
	./build/static/third_party/ckeditor/plugins/wsc/dialogs/tmpFrameset.html
# licensecheck(1): ./static/third_party/ckeditor/plugins/wsc/dialogs/ciframe.html: UNKNOWN
License:
  For licensing, see LICENSE.html or http://ckeditor.com/license
 -->
 <html>
 <head>
 <title></title>

#----------------------------------------------------------------------------
Copyright: 2007-2013 M. Alsup Dual licensed under the MIT and GPL licenses: http://www.opensource.org/licenses/mit-license.php http://www.gnu.org/licenses/gpl.html
Files: ./static/third_party/blockui/jquery.blockUI.js
	./build/static/third_party/blockui/jquery.blockUI.js
# licensecheck(1): ./static/third_party/blockui/jquery.blockUI.js: MIT/X11 (BSD like)
License:
  Thanks to Amir-Hossein Sobhi for some excellent contributions!

#----------------------------------------------------------------------------
Copyright: 2012 jQuery Foundation and other contributors
Files: ./static/jquery.ui.widget.js
	./build/static/jquery.ui.widget.js
# licensecheck(1): ./static/jquery.ui.widget.js: UNKNOWN
License:
  Released under the MIT license.
 http://jquery.org/license
 .
 http://api.jqueryui.com/jQuery.widget/

#----------------------------------------------------------------------------
Copyright: 2012 jQuery Foundation and other contributors
Files: ./static/jquery.ui.core.js
	./build/static/jquery.ui.core.js
# licensecheck(1): ./static/jquery.ui.core.js: UNKNOWN
License:
  Released under the MIT license.
 http://jquery.org/license
 .
 http://api.jqueryui.com/category/ui-core/

#----------------------------------------------------------------------------
Copyright: 2003-2015 * @license Copyright (c) CKSource - Frederico Knabben.
Files: ./static/third_party/ckeditor/config.js
	./build/static/third_party/ckeditor/config.js
# licensecheck(1): ./static/third_party/ckeditor/config.js: UNKNOWN
License:
  * For licensing, see LICENSE.md or http://ckeditor.com/license

#----------------------------------------------------------------------------
Copyright: 2007 Paul Bakaus (paul.bakaus@googlemail.com) and Brandon Aaron (brandon.aaron@gmail.com || http://brandonaaron.net) Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
Files: ./static/jquery.dimensions.js
	./build/static/jquery.dimensions.js
# licensecheck(1): ./static/jquery.dimensions.js: MIT/X11 (BSD like)
License:
  $LastChangedDate$
 $Rev$
 .
 Version: @VERSION
 .
 Requires: jQuery 1.2+

#----------------------------------------------------------------------------
Copyright: 2003-2015 CKSource - Frederico Knabben.
Files: ./static/third_party/ckeditor/styles.js
	./static/third_party/ckeditor/contents.css
	./static/third_party/ckeditor/skins/moono/editor_ie8.css
	./static/third_party/ckeditor/skins/moono/editor_iequirks.css
	./static/third_party/ckeditor/skins/moono/editor_gecko.css
	./static/third_party/ckeditor/skins/moono/editor_ie.css
	./static/third_party/ckeditor/skins/moono/dialog.css
	./static/third_party/ckeditor/skins/moono/dialog_ie7.css
	./static/third_party/ckeditor/skins/moono/dialog_ie8.css
	./static/third_party/ckeditor/skins/moono/dialog_iequirks.css
	./static/third_party/ckeditor/skins/moono/editor_ie7.css
	./static/third_party/ckeditor/skins/moono/dialog_ie.css
	./static/third_party/ckeditor/skins/moono/editor.css
	./static/third_party/ckeditor/plugins/specialchar/dialogs/specialchar.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/lt.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/si.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/hu.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/km.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/uk.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/tt.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/bg.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/nb.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ug.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/cy.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/el.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/sq.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/lv.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/vi.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/nl.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/sk.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/gl.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ku.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/th.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/sv.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/hr.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/fr.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/pl.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/tr.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/eo.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/he.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/af.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/en.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/fi.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/da.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/de.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/et.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/zh.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/pt.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/cs.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/no.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/it.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/sl.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/id.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/es.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ar.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ca.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/fa.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ru.js
	./static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ja.js
	./static/third_party/ckeditor/plugins/table/dialogs/table.js
	./static/third_party/ckeditor/plugins/link/dialogs/anchor.js
	./static/third_party/ckeditor/plugins/link/dialogs/link.js
	./static/third_party/ckeditor/plugins/clipboard/dialogs/paste.js
	./static/third_party/ckeditor/plugins/image/dialogs/image.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/si.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/km.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/el.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/th.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/he.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/af.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/en.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/da.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/de.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/et.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/no.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/it.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/id.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/es.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js
	./static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js
	./static/third_party/ckeditor/plugins/dialog/dialogDefinition.js
	./static/third_party/ckeditor/plugins/pastefromword/filter/default.js
	./static/third_party/ckeditor/plugins/tabletools/dialogs/tableCell.js
	./static/third_party/ckeditor/plugins/about/dialogs/about.js
	./static/third_party/ckeditor/adapters/jquery.js
	./build/static/third_party/ckeditor/styles.js
	./build/static/third_party/ckeditor/contents.css
	./build/static/third_party/ckeditor/skins/moono/editor_ie8.css
	./build/static/third_party/ckeditor/skins/moono/editor_iequirks.css
	./build/static/third_party/ckeditor/skins/moono/editor_gecko.css
	./build/static/third_party/ckeditor/skins/moono/editor_ie.css
	./build/static/third_party/ckeditor/skins/moono/dialog.css
	./build/static/third_party/ckeditor/skins/moono/dialog_ie7.css
	./build/static/third_party/ckeditor/skins/moono/dialog_ie8.css
	./build/static/third_party/ckeditor/skins/moono/dialog_iequirks.css
	./build/static/third_party/ckeditor/skins/moono/editor_ie7.css
	./build/static/third_party/ckeditor/skins/moono/dialog_ie.css
	./build/static/third_party/ckeditor/skins/moono/editor.css
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/specialchar.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/lt.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/si.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/hu.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/km.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/uk.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/tt.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/pt-br.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/bg.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/nb.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ug.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/cy.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/el.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/sq.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/lv.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/vi.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/fr-ca.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/nl.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/sk.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/gl.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ku.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/th.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/sv.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/hr.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/fr.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/pl.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/tr.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/eo.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/he.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/en-gb.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/af.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/en.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/fi.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/da.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/de.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/et.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/zh.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/pt.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/cs.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/no.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/it.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/sl.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/id.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/es.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/zh-cn.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ar.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ca.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/fa.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ru.js
	./build/static/third_party/ckeditor/plugins/specialchar/dialogs/lang/ja.js
	./build/static/third_party/ckeditor/plugins/table/dialogs/table.js
	./build/static/third_party/ckeditor/plugins/link/dialogs/anchor.js
	./build/static/third_party/ckeditor/plugins/link/dialogs/link.js
	./build/static/third_party/ckeditor/plugins/clipboard/dialogs/paste.js
	./build/static/third_party/ckeditor/plugins/image/dialogs/image.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/a11yhelp.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/lt.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/gu.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ko.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/si.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/hu.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/km.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/uk.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/tt.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sr.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/pt-br.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/bg.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/nb.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/mk.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ug.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/cy.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/el.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sq.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/lv.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sr-latn.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/vi.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ro.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/fr-ca.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/nl.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sk.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/gl.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ku.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/th.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sv.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/hr.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/fr.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/pl.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/tr.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/eo.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/mn.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/he.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/en-gb.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/af.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/en.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/fi.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/da.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/de.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/et.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/zh.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/pt.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/cs.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/no.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/it.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/sl.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/id.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/es.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/zh-cn.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ar.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ca.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/fa.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/hi.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ru.js
	./build/static/third_party/ckeditor/plugins/a11yhelp/dialogs/lang/ja.js
	./build/static/third_party/ckeditor/plugins/dialog/dialogDefinition.js
	./build/static/third_party/ckeditor/plugins/pastefromword/filter/default.js
	./build/static/third_party/ckeditor/plugins/tabletools/dialogs/tableCell.js
	./build/static/third_party/ckeditor/plugins/about/dialogs/about.js
	./build/static/third_party/ckeditor/adapters/jquery.js
# licensecheck(1): ./static/third_party/ckeditor/styles.js: UNKNOWN
License:
  For licensing, see LICENSE.md or http://ckeditor.com/license

#----------------------------------------------------------------------------
Copyright: 2003-2015 CKSource - Frederico Knabben.
Files: ./static/third_party/ckeditor/lang/en.js
	./static/third_party/ckeditor/plugins/wsc/dialogs/wsc_ie.js
	./static/third_party/ckeditor/plugins/wsc/dialogs/wsc.css
	./static/third_party/ckeditor/plugins/wsc/dialogs/wsc.js
	./build/static/third_party/ckeditor/lang/en.js
	./build/static/third_party/ckeditor/plugins/wsc/dialogs/wsc_ie.js
	./build/static/third_party/ckeditor/plugins/wsc/dialogs/wsc.css
	./build/static/third_party/ckeditor/plugins/wsc/dialogs/wsc.js
# licensecheck(1): ./static/third_party/ckeditor/lang/en.js: UNKNOWN
License:
  For licensing, see LICENSE.html or http://ckeditor.com/license

#----------------------------------------------------------------------------
Copyright: 2012 Ali Farhadi
Files: ./static/jquery.sortable.min.js
	./build/static/jquery.sortable.min.js
# licensecheck(1): ./static/jquery.sortable.min.js: UNKNOWN
License:
  Released under the MIT license.

#----------------------------------------------------------------------------
Copyright: 2006-2015 Klaus Hartl
Files: ./static/js.cookie.js
	./build/static/js.cookie.js
# licensecheck(1): ./static/js.cookie.js: UNKNOWN
License:
  Released under the MIT license

#----------------------------------------------------------------------------
Copyright: 2007-2013 IOLA and Ole Laursen.
Files: ./examples/extras/bacon_cape/flot/jquery.flot.min.js
	./static/flot/jquery.flot.min.js
	./build/static/flot/jquery.flot.min.js
# licensecheck(1): ./examples/extras/bacon_cape/flot/jquery.flot.min.js: UNKNOWN
License:
  Licensed under the MIT license.

#----------------------------------------------------------------------------
Copyright: 2011-2015 Twitter, Inc.
Files: ./static/bootstrap/js/bootstrap.js
	./static/bootstrap/js/bootstrap.min.js
	./static/bootstrap/css/bootstrap-theme.css
	./static/bootstrap/css/bootstrap-theme.min.css
	./build/static/bootstrap/js/bootstrap.js
	./build/static/bootstrap/js/bootstrap.min.js
	./build/static/bootstrap/css/bootstrap-theme.css
	./build/static/bootstrap/css/bootstrap-theme.min.css
# licensecheck(1): ./static/bootstrap/js/bootstrap.js: UNKNOWN
License:
  Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)

#............................................................................
# Gray hits with matching text of "copyright":
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 24, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 84, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 179, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 296, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 534, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 746, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 908, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 1249, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 1725, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 1834, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 2007, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./static/bootstrap/js/bootstrap.js: 2161, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 24, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 84, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 179, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 296, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 534, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 746, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 908, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 1249, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 1725, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 1834, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 2007, 
#	Copyright 2011-2015 Twitter, Inc.
# NO_LICENSE_TEXT_FOUND   ./build/static/bootstrap/js/bootstrap.js: 2161, 
#	Copyright 2011-2015 Twitter, Inc.
#----------------------------------------------------------------------------
Copyright: 2016 NAN contributors
Files: ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_maybe_pre_43_inl.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_callbacks_pre_12_inl.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_weak.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_object_wrap.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_implementation_pre_12_inl.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_maybe_43_inl.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_persistent_pre_12_inl.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_callbacks_12_inl.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_converters.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_persistent_12_inl.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_callbacks.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_implementation_12_inl.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_new.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_typedarray_contents.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_converters_43_inl.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_converters_pre_43_inl.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/tools/1to2.js
# licensecheck(1): ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/nan_maybe_pre_43_inl.h: UNKNOWN
License:
  MIT License <https://github.com/nodejs/nan/blob/master/LICENSE.md>

#----------------------------------------------------------------------------
Copyright: 2005-2010 W3C (MIT, ERCIM, Keio), W3C liability, trademark, document use and software licensing rules apply, see:
Files: ./static/slidy.css
	./static/oscon.css
	./build/static/slidy.css
	./build/static/oscon.css
# licensecheck(1): ./static/slidy.css: UNKNOWN
License:
  http://www.w3.org/Consortium/Legal/copyright-documents
 http://www.w3.org/Consortium/Legal/copyright-software

#----------------------------------------------------------------------------
Copyright: 2010 AUTHORS.txt (http://jqueryui.com/about) Dual licensed under the MIT or GPL Version 2 licenses. http://jquery.org/license
Files: ./static/jquery-ui.css
	./build/static/jquery-ui.css
# licensecheck(1): ./static/jquery-ui.css: UNKNOWN
License:
  http://docs.jquery.com/UI/Menu#theming

#----------------------------------------------------------------------------
Copyright: 2005-2012 /*! jQuery v1.9.1 | (c) jQuery Foundation, Inc. | jquery.org/license
 2011 by Nikos Tsaganos http://www.backslash.gr/
 2012 Cabin Programs, Ken Keller
 2016 NAN contributors
 The contribution was provided directly to me by some other
 10-2013 /*! jQuery v1..2 | (c) jQuery Foundation, Inc. | jquery.org/license
Files: ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/LICENSE.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/README.md
	./examples/cookbook/03-displays/nokia5110Test.js
	./examples/cookbook/03-displays/nokia5110.js
	./examples/extras/botspeak/jquery.min.js
	./static/jquery.js
	./static/third_party/contenthover/contenthover.min.js
	./build/static/jquery.js
	./build/static/third_party/contenthover/contenthover.min.js
# licensecheck(1): ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/LICENSE.md: MIT/X11 (BSD like)
License: NO_LICENSE_TEXT_FOUND

#............................................................................
# Gray hits with matching text of "copyright":
# NO_LICENSE_TEXT_FOUND   ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/README.md: 403, 
#	Copyright (c) 2016 NAN WG Members / Collaborators (listed above).
#----------------------------------------------------------------------------
Copyright: NO_COPYRIGHT_INFO_FOUND
Files: ./Makefile
	./_config.yml
	./bone101.desktop
	./.travis.yml
	./.gitignore
	./index.html
	./README.md
	./index.js
	./debian/control
	./examples/analog.js
	./examples/blink.py
	./examples/blinky.rb
	./examples/input.js
	./examples/analog2.js
	./examples/test.js
	./examples/blinkled.js
	./examples/analog3.js
	./examples/shiftout.js
	./examples/pwmTest.sh
	./examples/Blink.ino
	./examples/fade.js
	./examples/input2.js
	./examples/cookbook/ReadMe.md
	./examples/cookbook/cook2bone101.sh
	./examples/cookbook/09-capes/quickBot_motor_test.js
	./examples/cookbook/08-realtime/pushLED.js
	./examples/cookbook/08-realtime/pushLEDmmap.c
	./examples/cookbook/08-realtime/pushLEDmmap.h
	./examples/cookbook/08-realtime/thumb.patch
	./examples/cookbook/08-realtime/pruSpeak.py
	./examples/cookbook/08-realtime/pushLED.c
	./examples/cookbook/06-iot/twitterSearch.js
	./examples/cookbook/06-iot/launchPad.js
	./examples/cookbook/06-iot/weather.js
	./examples/cookbook/06-iot/processingDemo.html
	./examples/cookbook/06-iot/twitterTimeLine.js
	./examples/cookbook/06-iot/twitterPushbutton.js
	./examples/cookbook/06-iot/server.js
	./examples/cookbook/06-iot/test.html
	./examples/cookbook/06-iot/processingDemo.js
	./examples/cookbook/06-iot/twitterUpload.js
	./examples/cookbook/06-iot/nodemailer-test.js
	./examples/cookbook/06-iot/twitterKeys.js
	./examples/cookbook/06-iot/twitterStream.js
	./examples/cookbook/06-iot/flotDemo.js
	./examples/cookbook/06-iot/jQueryDemo.html
	./examples/cookbook/06-iot/flotDemo.html
	./examples/cookbook/06-iot/xbee.js
	./examples/cookbook/06-iot/GPIOserver.js
	./examples/cookbook/06-iot/jQueryDemo.js
	./examples/cookbook/05-beyond/ipMasquerade.sh
	./examples/cookbook/05-beyond/setDNS.sh
	./examples/cookbook/05-beyond/blinkLED.py
	./examples/cookbook/05-beyond/blinkLED.c
	./examples/cookbook/02-sensors/GPS.js
	./examples/cookbook/02-sensors/testHC-SR04.js
	./examples/cookbook/02-sensors/pushbutton2.js
	./examples/cookbook/02-sensors/rotaryEncoder.js
	./examples/cookbook/02-sensors/hc-sr04-ultraSonic.js
	./examples/cookbook/02-sensors/pushbutton.js
	./examples/cookbook/02-sensors/stop.js
	./examples/cookbook/02-sensors/pushbuttonPullup.js
	./examples/cookbook/02-sensors/onewire.js
	./examples/cookbook/02-sensors/audio.js
	./examples/cookbook/02-sensors/ultrasonicRange.js
	./examples/cookbook/02-sensors/pushbutton_digitalRead.js
	./examples/cookbook/02-sensors/analogIn.js
	./examples/cookbook/02-sensors/node_modules/async/doDuring.js
	./examples/cookbook/02-sensors/node_modules/async/auto.js
	./examples/cookbook/02-sensors/node_modules/async/priorityQueue.js
	./examples/cookbook/02-sensors/node_modules/async/bower.json
	./examples/cookbook/02-sensors/node_modules/async/mapValuesLimit.js
	./examples/cookbook/02-sensors/node_modules/async/reflect.js
	./examples/cookbook/02-sensors/node_modules/async/eachOf.js
	./examples/cookbook/02-sensors/node_modules/async/asyncify.js
	./examples/cookbook/02-sensors/node_modules/async/reduceRight.js
	./examples/cookbook/02-sensors/node_modules/async/parallelLimit.js
	./examples/cookbook/02-sensors/node_modules/async/CHANGELOG.md
	./examples/cookbook/02-sensors/node_modules/async/eachOfSeries.js
	./examples/cookbook/02-sensors/node_modules/async/constant.js
	./examples/cookbook/02-sensors/node_modules/async/filter.js
	./examples/cookbook/02-sensors/node_modules/async/filterLimit.js
	./examples/cookbook/02-sensors/node_modules/async/filterSeries.js
	./examples/cookbook/02-sensors/node_modules/async/whilst.js
	./examples/cookbook/02-sensors/node_modules/async/doWhilst.js
	./examples/cookbook/02-sensors/node_modules/async/mapSeries.js
	./examples/cookbook/02-sensors/node_modules/async/seq.js
	./examples/cookbook/02-sensors/node_modules/async/rejectSeries.js
	./examples/cookbook/02-sensors/node_modules/async/timesSeries.js
	./examples/cookbook/02-sensors/node_modules/async/every.js
	./examples/cookbook/02-sensors/node_modules/async/queue.js
	./examples/cookbook/02-sensors/node_modules/async/timeout.js
	./examples/cookbook/02-sensors/node_modules/async/cargo.js
	./examples/cookbook/02-sensors/node_modules/async/forever.js
	./examples/cookbook/02-sensors/node_modules/async/retry.js
	./examples/cookbook/02-sensors/node_modules/async/sortBy.js
	./examples/cookbook/02-sensors/node_modules/async/reject.js
	./examples/cookbook/02-sensors/node_modules/async/package.json
	./examples/cookbook/02-sensors/node_modules/async/concatSeries.js
	./examples/cookbook/02-sensors/node_modules/async/mapLimit.js
	./examples/cookbook/02-sensors/node_modules/async/race.js
	./examples/cookbook/02-sensors/node_modules/async/eachOfLimit.js
	./examples/cookbook/02-sensors/node_modules/async/rejectLimit.js
	./examples/cookbook/02-sensors/node_modules/async/applyEach.js
	./examples/cookbook/02-sensors/node_modules/async/someSeries.js
	./examples/cookbook/02-sensors/node_modules/async/dir.js
	./examples/cookbook/02-sensors/node_modules/async/ensureAsync.js
	./examples/cookbook/02-sensors/node_modules/async/autoInject.js
	./examples/cookbook/02-sensors/node_modules/async/timesLimit.js
	./examples/cookbook/02-sensors/node_modules/async/each.js
	./examples/cookbook/02-sensors/node_modules/async/doUntil.js
	./examples/cookbook/02-sensors/node_modules/async/eachLimit.js
	./examples/cookbook/02-sensors/node_modules/async/memoize.js
	./examples/cookbook/02-sensors/node_modules/async/until.js
	./examples/cookbook/02-sensors/node_modules/async/everySeries.js
	./examples/cookbook/02-sensors/node_modules/async/reflectAll.js
	./examples/cookbook/02-sensors/node_modules/async/some.js
	./examples/cookbook/02-sensors/node_modules/async/log.js
	./examples/cookbook/02-sensors/node_modules/async/someLimit.js
	./examples/cookbook/02-sensors/node_modules/async/series.js
	./examples/cookbook/02-sensors/node_modules/async/times.js
	./examples/cookbook/02-sensors/node_modules/async/detectLimit.js
	./examples/cookbook/02-sensors/node_modules/async/everyLimit.js
	./examples/cookbook/02-sensors/node_modules/async/iterator.js
	./examples/cookbook/02-sensors/node_modules/async/parallel.js
	./examples/cookbook/02-sensors/node_modules/async/detect.js
	./examples/cookbook/02-sensors/node_modules/async/mapValues.js
	./examples/cookbook/02-sensors/node_modules/async/README.md
	./examples/cookbook/02-sensors/node_modules/async/mapValuesSeries.js
	./examples/cookbook/02-sensors/node_modules/async/unmemoize.js
	./examples/cookbook/02-sensors/node_modules/async/apply.js
	./examples/cookbook/02-sensors/node_modules/async/setImmediate.js
	./examples/cookbook/02-sensors/node_modules/async/map.js
	./examples/cookbook/02-sensors/node_modules/async/during.js
	./examples/cookbook/02-sensors/node_modules/async/compose.js
	./examples/cookbook/02-sensors/node_modules/async/transform.js
	./examples/cookbook/02-sensors/node_modules/async/reduce.js
	./examples/cookbook/02-sensors/node_modules/async/waterfall.js
	./examples/cookbook/02-sensors/node_modules/async/nextTick.js
	./examples/cookbook/02-sensors/node_modules/async/applyEachSeries.js
	./examples/cookbook/02-sensors/node_modules/async/detectSeries.js
	./examples/cookbook/02-sensors/node_modules/async/eachSeries.js
	./examples/cookbook/02-sensors/node_modules/async/retryable.js
	./examples/cookbook/02-sensors/node_modules/async/concat.js
	./examples/cookbook/02-sensors/node_modules/async/index.js
	./examples/cookbook/02-sensors/node_modules/async/internal/filter.js
	./examples/cookbook/02-sensors/node_modules/async/internal/createTester.js
	./examples/cookbook/02-sensors/node_modules/async/internal/doLimit.js
	./examples/cookbook/02-sensors/node_modules/async/internal/onlyOnce.js
	./examples/cookbook/02-sensors/node_modules/async/internal/queue.js
	./examples/cookbook/02-sensors/node_modules/async/internal/initialParams.js
	./examples/cookbook/02-sensors/node_modules/async/internal/reject.js
	./examples/cookbook/02-sensors/node_modules/async/internal/eachOfLimit.js
	./examples/cookbook/02-sensors/node_modules/async/internal/doSeries.js
	./examples/cookbook/02-sensors/node_modules/async/internal/applyEach.js
	./examples/cookbook/02-sensors/node_modules/async/internal/once.js
	./examples/cookbook/02-sensors/node_modules/async/internal/iterator.js
	./examples/cookbook/02-sensors/node_modules/async/internal/parallel.js
	./examples/cookbook/02-sensors/node_modules/async/internal/findGetResult.js
	./examples/cookbook/02-sensors/node_modules/async/internal/notId.js
	./examples/cookbook/02-sensors/node_modules/async/internal/getIterator.js
	./examples/cookbook/02-sensors/node_modules/async/internal/setImmediate.js
	./examples/cookbook/02-sensors/node_modules/async/internal/map.js
	./examples/cookbook/02-sensors/node_modules/async/internal/withoutIndex.js
	./examples/cookbook/02-sensors/node_modules/async/internal/doParallel.js
	./examples/cookbook/02-sensors/node_modules/async/internal/doParallelLimit.js
	./examples/cookbook/02-sensors/node_modules/async/internal/consoleFunc.js
	./examples/cookbook/02-sensors/node_modules/async/internal/concat.js
	./examples/cookbook/02-sensors/node_modules/async/dist/async.min.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/nthArg.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/values.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseUnset.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/lt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/attempt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sortedUniqBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/mean.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseSetData.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_reEscape.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseMergeDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseFindKey.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toFinite.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/wrapperChain.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toPairs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_basePickBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/flatMapDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/hasIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_Reflect.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isInteger.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseFlatten.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayEachRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseFunctions.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getAllKeys.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseSortedIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createCompounder.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createWrapper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseInverter.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/stubFalse.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_reorder.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/partial.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/entriesIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/object.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isMasked.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseUniq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/capitalize.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/core.min.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/spread.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/omitBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/intersectionWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createCaseFirst.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/invokeMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/intersection.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/assignIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_listCacheClear.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/reverse.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/range.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/words.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/random.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isNative.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/first.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isArguments.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_assignValue.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_stackGet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isMatchWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_countHolders.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_LodashWrapper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseSum.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseForRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/subtract.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/setWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/templateSettings.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/findIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/remove.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_metaMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/result.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/cloneDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getValue.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_toKey.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/ceil.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_SetCache.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/tap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/uniq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isWeakMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/reduceRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sortedLastIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/takeRightWhile.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseSortBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/findLastKey.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseEachRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/keysIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/plant.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_compareAscending.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getMatchData.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_escapeStringChar.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/noop.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseOrderBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isNaN.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_setData.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_Set.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/constant.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_stringSize.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/filter.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/without.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/clone.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arraySome.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isEmpty.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/padStart.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/property.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fill.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/merge.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/flip.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/flattenDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/assign.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/take.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_reInterpolate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/initial.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isLength.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseMean.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/findKey.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/pad.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isFunction.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseToString.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_basePick.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_cloneSymbol.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/stubString.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/last.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/method.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isBoolean.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/size.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseEach.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseDifference.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getSymbolsIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sortedLastIndexOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_WeakMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseIsNative.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getMapData.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getAllKeysIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/ary.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/clamp.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/union.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/array.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/inRange.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/differenceWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/updateWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseNth.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/keys.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/meanBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/dropRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isBuffer.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseInvoke.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/forEach.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_mapCacheSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/wrapperReverse.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/seq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createRelationalOperation.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_hashHas.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseClamp.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_indexKeys.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_composeArgsRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseUpdate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseSortedIndexBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseZipObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseIndexOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/lang.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toUpper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_reEvaluate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/flattenDepth.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/functions.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toLength.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/thru.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/differenceBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/countBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseProperty.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isFlattenable.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/overArgs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/kebabCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isEqual.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/pullAllBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseInRange.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/stubObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/forIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/date.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toPath.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/bind.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isFlattenableIteratee.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/includes.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_lazyReverse.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayReduceRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/every.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/nth.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/intersectionBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseValues.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createFind.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/wrap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createMathOperation.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_castFunction.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/invoke.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_equalArrays.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toInteger.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/add.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/unzip.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_basePropertyDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_coreJsData.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_initCloneArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_stackSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/padEnd.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/propertyOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_cacheHas.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sumBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/defaults.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/min.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_ListCache.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sample.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayReduce.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isWeakSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/commit.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isRegExp.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isError.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_addSetEntry.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseIsEqual.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseLt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/eq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_lazyValue.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/cloneDeepWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/pullAllWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sortBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/compact.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/max.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/rest.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/trimEnd.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/startsWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseAggregator.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/update.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/reject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/package.json
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/unzipWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/mapKeys.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseFill.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isPrototype.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayPush.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/matchesProperty.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/at.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_cloneTypedArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createBaseFor.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/next.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/assignWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isKey.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseIsMatch.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/rearg.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/get.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/flowRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/slice.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_mapToArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseClone.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseMatchesProperty.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/util.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isKeyable.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/flow.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_Stack.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseXor.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/forEachRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_addMapEntry.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/xorBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/zipWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseSlice.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/create.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_hashDelete.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/conforms.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toPairsIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createFlow.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_listCacheSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseKeysIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toString.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isPlainObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseRange.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/truncate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseSome.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/escapeRegExp.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_cloneMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/forOwn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_setToPairs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_cloneDataView.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/assignInWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isArrayLikeObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_cloneBuffer.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/indexOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_castSlice.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_hashGet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/overEvery.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_listCacheGet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/debounce.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isHostObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/methodOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseTimes.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/find.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/join.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/pullAt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/endsWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isElement.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/entries.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/iteratee.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isUndefined.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sum.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/uniqWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseRandom.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseAssign.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/math.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isFinite.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createPartialWrapper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createOver.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_stackClear.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/parseInt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseGt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/takeRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_deburrLetter.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_copyObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/startCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/defer.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayEvery.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_cloneArrayBuffer.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/maxBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/string.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toLower.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/lastIndexOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isMaskable.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_listCacheDelete.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_nativeCreate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_iteratorToArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseUnary.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getHolder.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseGetAllKeys.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isArrayBuffer.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_hashClear.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_charsEndIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sortedIndexBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_unescapeHtmlChar.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_compareMultiple.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_mapCacheGet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/valuesIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createAggregator.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseFilter.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/function.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseFindIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_Symbol.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/forInRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseDelay.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/cond.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_Hash.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/gt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_copyArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/snakeCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sampleSize.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/invert.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_checkGlobal.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseKeys.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_mapCacheClear.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_initCloneByTag.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sortedUniq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getPrototype.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/zip.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/dropWhile.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseWhile.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/divide.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/castArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/takeWhile.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_assignInDefaults.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_lazyClone.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/delay.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_wrapperClone.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/each.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/wrapperValue.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isString.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/lowerFirst.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_LazyWrapper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getTag.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/flatMapDepth.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/negate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/unionBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseConforms.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseHasIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isIterateeCall.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/matches.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseCreate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/xor.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseRepeat.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/stubArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_charsStartIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/memoize.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayFilter.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sortedIndexOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseExtremum.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseReduce.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_hasPath.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/upperCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createCurryWrapper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_realNames.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_basePullAt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createHybridWrapper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/curry.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/zipObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/floor.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/zipObjectDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/multiply.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/upperFirst.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/tail.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseGet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/lowerCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/flatMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_equalByTag.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/unescape.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_apply.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_mergeData.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/invertBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/wrapperLodash.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_mergeDefaults.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/repeat.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_stackHas.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isObjectLike.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/chunk.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_setCacheAdd.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_setCacheHas.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_matchesStrictComparable.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fromPairs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isMatch.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/some.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/once.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseEvery.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_Uint8Array.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_Map.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/partition.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isNil.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createRound.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isArrayLike.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/defaultsDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/eachRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_escapeHtmlChar.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_setToArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/stubTrue.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toIterator.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/xorWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createRange.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/collection.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/pickBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_assocIndexOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/pick.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/trim.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/uniqBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/times.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseIndexOfWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/overSome.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_Promise.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isSymbol.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/identity.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/now.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayIncludesWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isDate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseForOwnRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseFor.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/mixin.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_stringToArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/unionWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseAt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_toSource.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_hashSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/mergeWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createBaseEach.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayIncludes.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createCtorWrapper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/unset.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/camelCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getLength.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/chain.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/mapValues.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/head.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toPlainObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/replace.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/pull.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getData.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/findLastIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/README.md
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/before.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_initCloneObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/minBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createPadding.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/lte.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/groupBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/template.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/shuffle.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_replaceHolders.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseIsEqualDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_mapCacheDelete.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseIteratee.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/cloneWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/flatten.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getNative.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createInverter.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_basePullAll.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseIntersection.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/unary.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_copySymbols.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_cloneRegExp.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isNull.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/map.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseForOwn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/pullAll.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/uniqueId.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseSortedUniq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_stackDelete.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/difference.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isSafeInteger.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/trimStart.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/wrapperAt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/curryRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/set.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isNumber.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/functionsIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_reHasComplexSymbol.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/orderBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/deburr.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/keyBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/valueOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isEqualWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseToNumber.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/forOwnRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_DataView.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseToPairs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_root.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseWrapperValue.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/split.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/lodash.min.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/transform.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_indexOfNaN.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/value.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/reduce.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/escape.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/over.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_castPath.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_castArrayLikeObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_parent.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/gte.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/has.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/partialRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isStrictComparable.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/drop.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toJSON.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/extend.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/findLast.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_stringToPath.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseMatches.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toNumber.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_assignMergeValue.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/number.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_listCacheHas.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/isTypedArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseMerge.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sortedLastIndexBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/throttle.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_composeArgs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/toSafeInteger.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_mapCacheHas.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createAssigner.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/bindKey.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getView.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayEach.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/round.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseHas.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/sortedIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_baseLodash.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createBaseWrapper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getSymbols.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/bindAll.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/dropRightWhile.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_isLaziable.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/rangeRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createRecurryWrapper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/concat.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_MapCache.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_equalObjects.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_cloneSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/omit.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/index.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/extendWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_getFuncName.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/after.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_arrayAggregator.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/_createToPairs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/nthArg.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/values.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/placeholder.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/lt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/attempt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sortedUniqBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/all.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/mean.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toFinite.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/wrapperChain.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toPairs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/flatMapDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/hasIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isInteger.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/includesFrom.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/stubFalse.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/partial.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/entriesIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/object.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/capitalize.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/complement.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/spread.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/omitBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/trimChars.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/intersectionWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/invokeMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/intersection.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/assignIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/reverse.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/range.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/words.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/padChars.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/random.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isNative.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/first.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isArguments.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isMatchWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/assocPath.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/subtract.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/setWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/templateSettings.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/findIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/remove.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/result.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/cloneDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/ceil.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/tap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/uniq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isWeakMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/reduceRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sortedLastIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/takeRightWhile.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/findLastKey.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/invokeArgs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/keysIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/plant.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/noop.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isNaN.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/omitAll.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/constant.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/filter.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/zipObj.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/without.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/clone.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/anyPass.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pluck.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isEmpty.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/padStart.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/property.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/fill.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/merge.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/flip.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/flattenDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/assign.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/take.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/initial.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isLength.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/findKey.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/init.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pad.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isFunction.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/stubString.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/last.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/method.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isBoolean.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/whereEq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/size.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sortedLastIndexOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/convert.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/ary.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/clamp.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/union.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/array.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/inRange.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/findLastFrom.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/differenceWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/dissocPath.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/updateWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/keys.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/meanBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/dropRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isBuffer.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/forEach.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/wrapperReverse.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/seq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/_falseOptions.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/lang.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toUpper.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/flattenDepth.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/functions.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toLength.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/thru.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/differenceBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/countBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/overArgs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/kebabCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isEqual.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pullAllBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/stubObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/forIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/date.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toPath.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/bind.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/includes.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/allPass.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/every.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/nth.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/intersectionBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/wrap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/invoke.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toInteger.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/add.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/unzip.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/padEnd.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/propertyOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sumBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/defaults.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/min.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sample.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isWeakSet.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/propOr.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/commit.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isRegExp.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isError.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/path.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/eq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/cloneDeepWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pullAllWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sortBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/compact.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/max.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/rest.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/trimEnd.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/startsWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/update.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/reject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/unzipWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/mapKeys.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/always.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pathEq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/matchesProperty.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/at.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/next.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/assignWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/rearg.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/get.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/flowRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/slice.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/util.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/flow.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/forEachRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/xorBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/useWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/zipWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/create.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/spreadFrom.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/conforms.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toPairsIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toString.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isPlainObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/findIndexFrom.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/truncate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/escapeRegExp.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/juxt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/forOwn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/assignInWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isArrayLikeObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/indexOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/overEvery.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/debounce.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/methodOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/find.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/join.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pullAt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/endsWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isElement.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/entries.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/iteratee.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isUndefined.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sum.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/uniqWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/math.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isFinite.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/parseInt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/takeRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/startCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/defer.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/maxBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/string.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toLower.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/findLastIndexFrom.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/lastIndexOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isArrayBuffer.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sortedIndexBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/valuesIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/function.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/forInRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/cond.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/gt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/snakeCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sampleSize.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/invert.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sortedUniq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/zip.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/dropWhile.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/divide.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/castArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/takeWhile.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/delay.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/each.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/wrapperValue.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isString.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/lowerFirst.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/flatMapDepth.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/negate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/unionBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/__.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/matches.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/xor.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/contains.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/stubArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/_convertBrowser.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/memoize.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sortedIndexOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/_util.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/upperCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/curry.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/zipObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/floor.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/zipObjectDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/multiply.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/upperFirst.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/tail.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/prop.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/lowerCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/flatMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/unescape.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pipe.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/invertBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/wrapperLodash.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/propEq.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/unnest.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/repeat.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isObjectLike.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/chunk.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/_mapping.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/paths.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/fromPairs.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isMatch.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/some.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/once.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pathOr.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/unapply.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/partition.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isNil.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isArrayLike.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/defaultsDeep.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/eachRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/stubTrue.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toIterator.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/restFrom.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/xorWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/collection.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pickBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pick.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/trim.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pickAll.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/uniqBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/times.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/overSome.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isSymbol.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/identity.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/now.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isDate.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/mixin.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/unionWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/padCharsStart.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/dissoc.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/mergeWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/unset.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/camelCase.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/_baseConvert.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/nAry.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/trimCharsStart.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/chain.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/assoc.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/mapValues.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/head.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toPlainObject.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/indexOfFrom.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/replace.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pull.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/any.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/findLastIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/before.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/minBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/lte.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/groupBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/template.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/shuffle.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/props.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/equals.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/cloneWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/flatten.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/apply.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/unary.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isNull.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/map.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/pullAll.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/uniqueId.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/findFrom.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/difference.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isSafeInteger.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/trimStart.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/wrapperAt.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/curryRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/set.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/lastIndexOfFrom.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isNumber.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/functionsIn.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/orderBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/deburr.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/keyBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/valueOf.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/invokeArgsMap.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isEqualWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/getOr.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/forOwnRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/split.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/compose.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/trimCharsEnd.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/transform.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/value.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/reduce.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/escape.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/over.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/gte.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/has.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/curryRightN.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/partialRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/drop.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toJSON.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/extend.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/curryN.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/findLast.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toNumber.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/number.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/isTypedArray.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sortedLastIndexBy.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/throttle.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/toSafeInteger.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/bindKey.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/round.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/sortedIndex.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/identical.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/invertObj.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/bindAll.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/dropRightWhile.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/rangeRight.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/padCharsEnd.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/concat.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/omit.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/extendWith.js
	./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/fp/after.js
	./examples/cookbook/02-sensors/node_modules/sensortag/CHANGELOG.md
	./examples/cookbook/02-sensors/node_modules/sensortag/test-discover.js
	./examples/cookbook/02-sensors/node_modules/sensortag/test.js
	./examples/cookbook/02-sensors/node_modules/sensortag/package.json
	./examples/cookbook/02-sensors/node_modules/sensortag/test-cc2650-io.js
	./examples/cookbook/02-sensors/node_modules/sensortag/.npmignore
	./examples/cookbook/02-sensors/node_modules/sensortag/README.md
	./examples/cookbook/02-sensors/node_modules/sensortag/index.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/ms/History.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/ms/package.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/ms/.npmignore
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/ms/README.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/ms/index.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/CHANGELOG.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/test.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/package.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/.npmignore
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/ws-slave.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/index.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/examples/enter-exit.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/examples/advertisement-discovery.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/examples/peripheral-explorer.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/examples/pizza/central.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/examples/pizza/pizza.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/examples/pizza/README.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/peripheral.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/services.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/descriptor.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/characteristic.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/characteristics.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/descriptors.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/noble.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/service.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/mac/bindings.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/mac/legacy.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/mac/yosemite.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/mac/local-address.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/mac/mavericks.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/mac/uuid-to-address.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/distributed/bindings.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/hci-socket/acl-stream.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/hci-socket/hci.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/hci-socket/bindings.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/hci-socket/gap.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/hci-socket/hci-status.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/hci-socket/smp.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/hci-socket/gatt.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/hci-socket/crypto.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/lib/websocket/bindings.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/test/test-characteristic.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/test/test-descriptor.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/test/test-service.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble/test/test-peripheral.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/binding.gyp
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/package.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/.npmignore
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/README.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/index.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/src/BluetoothHciSocket.h
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/src/BluetoothHciSocket.cpp
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/examples/le-advertisement-test.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/examples/le-connection-test.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/examples/mgmt-test.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/examples/le-scan-test.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/lib/native.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/lib/usb.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/build/config.gypi
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/build/Makefile
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/build/binding.target.mk
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/build/binding.Makefile
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/build/Release/.deps/Release/binding.node.d
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/build/Release/.deps/Release/obj.target/binding.node.d
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/build/Release/.deps/Release/obj.target/binding/src/BluetoothHciSocket.o.d
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/CHANGELOG.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/package.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/include_dirs.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/buffers.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/maybe_types.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/converters.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/callback.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/errors.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/methods.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/script.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/v8_internals.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/new.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/scopes.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/object_wrappers.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/node_misc.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/v8_misc.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/string_bytes.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/asyncworker.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/doc/persistent.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/tools/package.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/nan/tools/README.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/browser.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/bower.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/debug.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/Makefile
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/node.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/component.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/History.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/package.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/.npmignore
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/debug/.jshintrc
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/CHANGELOG.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/package.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/.npmignore
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/README.md
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/index.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/examples/basic.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/examples/hrm-device.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/lib/noble-device.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/lib/battery-service.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/lib/util.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/lib/heart-rate-measument-service.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/lib/device-information-service.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/noble-device/test/test-index.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/bplistParser.js
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/package.json
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/.npmignore
	./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/test/parseTest.js
	./examples/cookbook/02-sensors/node_modules/sensortag/lib/common.js
	./examples/cookbook/02-sensors/node_modules/sensortag/lib/cc2540.js
	./examples/cookbook/02-sensors/node_modules/sensortag/lib/sensortag.js
	./examples/cookbook/02-sensors/node_modules/sensortag/lib/cc2650.js
	./examples/cookbook/03-displays/externLED.js
	./examples/cookbook/03-displays/speak.js
	./examples/cookbook/03-displays/fadeLED.js
	./examples/cookbook/03-displays/internLED.js
	./examples/cookbook/03-displays/matrixLEDi2c.js
	./examples/cookbook/07-kernel/Makefile
	./examples/cookbook/07-kernel/.hello.ko.cmd
	./examples/cookbook/07-kernel/.hello.mod.o.cmd
	./examples/cookbook/07-kernel/hello.c
	./examples/cookbook/07-kernel/helloWorld.c
	./examples/cookbook/07-kernel/hello.patch
	./examples/cookbook/07-kernel/.built-in.o.cmd
	./examples/cookbook/07-kernel/.hello.o.cmd
	./examples/cookbook/07-kernel/.tmp_versions/hello.mod
	./examples/cookbook/04-motors/servoSense.js
	./examples/cookbook/04-motors/unipolarStepperMotor.js
	./examples/cookbook/04-motors/stop.js
	./examples/cookbook/04-motors/h-bridgeMotor.js
	./examples/cookbook/04-motors/dcMotor.js
	./examples/cookbook/04-motors/bipolarStepperMotor.js
	./examples/cookbook/04-motors/ring.js
	./examples/cookbook/04-motors/servoBird.js
	./examples/cookbook/04-motors/servoMotor.js
	./examples/extras/readedid.js
	./examples/extras/bonescript-sketchpadcc.js
	./examples/extras/botspeak/botspeak4.js
	./examples/extras/botspeak/botspeak.js
	./examples/extras/botspeak/index.html
	./examples/extras/botspeak/css/main.css
	./examples/extras/botspeak/css/terminal.css
	./examples/extras/mfba2014/motors.js
	./examples/extras/mfba2014/cape-bonescript
	./examples/extras/mfba2014/cylon-ir.js
	./examples/extras/mfba2014/servo.js
	./examples/extras/mfba2014/cylon-servo.js
	./examples/extras/mfba2014/cylon-demo.js
	./examples/extras/mfba2014/dcmotor.js
	./examples/extras/mfba2014/README.md
	./examples/extras/Userspace-Arduino/Makefile
	./examples/extras/escbrazil/task3a.js
	./examples/extras/escbrazil/task4.js
	./examples/extras/escbrazil/task7.js
	./examples/extras/escbrazil/task6.html
	./examples/extras/escbrazil/task2.js
	./examples/extras/escbrazil/processingjs_bacon_cape_demo.html
	./examples/extras/escbrazil/task3.js
	./examples/extras/escbrazil/task1.js
	./examples/extras/escbrazil/task5.js
	./examples/extras/bacon_cape/hiw_demo.js
	./examples/extras/bacon_cape/demo_processing_with_fluff.html
	./examples/extras/bacon_cape/demo_processingjs.html
	./examples/extras/bacon_cape/demo_flot_with_fluff.html
	./examples/extras/bacon_cape/task6.js
	./examples/extras/bacon_cape/demo_jquery.html
	./examples/extras/bacon_cape/task4.js
	./examples/extras/bacon_cape/task7.js
	./examples/extras/bacon_cape/demo_flot.html
	./examples/extras/bacon_cape/task2.js
	./examples/extras/bacon_cape/demo_jquery_with_7seg.html
	./examples/extras/bacon_cape/task3.js
	./examples/extras/bacon_cape/task8.html
	./examples/extras/bacon_cape/task1.js
	./examples/extras/bacon_cape/task9.html
	./examples/extras/bacon_cape/task5.js
	./examples/extras/bacon_cape/flot/jquery.colorhelpers.min.js
	./examples/extras/bacon_cape/flot/FAQ.md
	./examples/extras/bacon_cape/flot/NEWS.md
	./examples/extras/bacon_cape/flot/CONTRIBUTING.md
	./examples/extras/bacon_cape/flot/API.md
	./examples/extras/bacon_cape/flot/PLUGINS.md
	./examples/extras/bacon_cape/flot/README.md
	./examples/extras/bacon_cape/flot/excanvas.min.js
	./examples/extras/bacon_cape/flot/jquery.min.js
	./examples/extras/sensortag/sensortag.js
	./examples/extras/sensortag/node-red.service
	./examples/extras/sensortag/index.html
	./examples/extras/sensortag/sensortag-client.js
	./examples/extras/simulator/simulator.js
	./examples/extras/simulator/index.html
	./examples/extras/simulator/simulator.css
	./examples/PyBBIO/LiquidCrystal_glyphs.py
	./examples/PyBBIO/webcam_test.py
	./examples/PyBBIO/encoder_test.py
	./examples/PyBBIO/remote_temp_control.py
	./examples/PyBBIO/serial_echo.py
	./examples/PyBBIO/blink.py
	./examples/PyBBIO/mma7660-test.py
	./examples/PyBBIO/phant_test.py
	./examples/PyBBIO/serial_server.py
	./examples/PyBBIO/switch.py
	./examples/PyBBIO/ADS786x_test.py
	./examples/PyBBIO/LiquidCrystal_clock.py
	./examples/PyBBIO/interrupt.py
	./examples/PyBBIO/adt7310_test.py
	./examples/PyBBIO/EventIO_test.py
	./examples/PyBBIO/security_cam.py
	./examples/PyBBIO/available_pins.py
	./examples/PyBBIO/MAX31855_test.py
	./examples/PyBBIO/BBIOServer_test.py
	./examples/PyBBIO/SafeProcess_test.py
	./examples/PyBBIO/knock.py
	./examples/PyBBIO/webcam_bbioserver_test.py
	./examples/PyBBIO/fade.py
	./examples/PyBBIO/LiquidCrystal_fps.py
	./examples/PyBBIO/Servo_sweep.py
	./examples/PyBBIO/digitalRead.py
	./examples/PyBBIO/DACx311_test.py
	./examples/PyBBIO/analog_test.py
	./examples/PyBBIO/BBIOServer_mobile_test.py
	./examples/Grove_BBG/README.md
	./examples/Grove_BBG/Software/Python/gps_data.csv
	./examples/Grove_BBG/Software/Python/grove_Finger_clip_Heart_Rate_Sensor.py
	./examples/Grove_BBG/Software/Python/Grove_3_Axis_Digital_Gyro.py
	./examples/Grove_BBG/Software/Python/Grove_IMU_9DOF.py
	./examples/Grove_BBG/Software/Python/Grove_UV_Sensor.py
	./examples/Grove_BBG/Software/Python/Grove_GPS.py
	./examples/Grove_BBG/Software/Python/Grove_dht.py
	./examples/Grove_BBG/Software/Python/Grove_Digital_Light_Sensor.py
	./examples/Grove_BBG/Software/Python/bbb_grove_rgb_lcd.py
	./examples/Grove_BBG/Software/Python/Grove_3_Axis_Digital_Accelerometer_lib.py
	./examples/Grove_BBG/Software/Python/README.md
	./examples/Grove_BBG/Software/Python/Grove_I2C_ADC.py
	./examples/Grove_BBG/Software/Python/Grove_IR_Distance_Interrupter.py
	./examples/Grove_BBG/Software/Python/Adafruit_Python_BMP/ez_setup.py
	./examples/Grove_BBG/Software/Python/Adafruit_Python_BMP/setup.py
	./examples/Grove_BBG/Software/Python/Adafruit_Python_BMP/.gitignore
	./examples/Grove_BBG/Software/Python/Adafruit_Python_BMP/README.md
	./examples/Grove_BBG/Software/Python/Adafruit_Python_BMP/Adafruit_BMP/__init__.py
	./examples/Grove_BBG/Software/Python/Grove_3_Axis_Compass/grove_compass_example.py
	./examples/Grove_BBG/Software/Python/Grove_3_Axis_Compass/grove_compass_lib.py
	./examples/Grove_BBG/Software/Python/Grove_3_Axis_Digital_Gyro/grove_3_axis_digital_gyro_lib.py
	./examples/Grove_BBG/Software/Python/Grove_IMU_10DOF/Grove_IMU_9DOF.py
	./examples/Grove_BBG/Software/Python/Grove_IMU_10DOF/visualscope.py
	./examples/Grove_BBG/Software/Python/Grove_IMU_10DOF/Grove_IMU_10DOF.py
	./examples/Grove_BBG/Software/Python/Grove_IMU_10DOF/MPU9250.py
	./examples/Grove_BBG/Software/Python/Grove_Fingerprint/fingerprint.py
	./examples/Grove_BBG/Software/Python/Grove_Fingerprint/Grove_Fingerprint.py
	./examples/Grove_BBG/Software/Python/Grove_Fingerprint/enroll.py
	./_layouts/bare.html
	./_layouts/index.html
	./_layouts/tutorial.html
	./static/jquery.svg.js
	./static/bonecard.css
	./static/jquery.svg.css
	./static/client.css
	./static/bone.js
	./static/bonecard.js
	./static/connect.js
	./static/what_is_beaglebone.css
	./static/bonecard-edit.js
	./static/common.css
	./static/bonescript.js
	./static/bonecard-create.js
	./static/client.js
	./static/schmux.css
	./static/my_tutorials.css
	./static/github-login.css
	./static/login.css
	./static/jquery.mousewheel.js
	./static/bonecard-create.css
	./static/none
	./static/github-login.js
	./static/my_tutorials.js
	./static/jquery.movingboxes.min.js
	./static/jquery.terminal.css
	./static/connect-status.html
	./static/eeprom-web.js
	./static/flot/jquery.colorhelpers.min.js
	./static/flot/FAQ.md
	./static/flot/NEWS.md
	./static/flot/CONTRIBUTING.md
	./static/flot/API.md
	./static/flot/PLUGINS.md
	./static/flot/README.md
	./static/flot/excanvas.min.js
	./static/flot/jquery.min.js
	./static/images/index.txt
	./static/third_party/ace/ace.SOURCE
	./static/third_party/ace/src/mode-yaml.js
	./static/third_party/ace/src/mode-python.js
	./static/third_party/ace/src/theme-textmate.js
	./static/third_party/ace/src/mode-actionscript.js
	./static/third_party/ace/src/mode-gcode.js
	./static/third_party/ace/src/mode-c_cpp.js
	./static/third_party/ace/src/mode-sql.js
	./static/third_party/ace/src/mode-lucene.js
	./static/third_party/ace/src/worker-lua.js
	./static/third_party/ace/src/mode-sh.js
	./static/third_party/ace/src/mode-gherkin.js
	./static/third_party/ace/src/mode-julia.js
	./static/third_party/ace/src/theme-katzenmilch.js
	./static/third_party/ace/src/theme-sqlserver.js
	./static/third_party/ace/src/mode-dart.js
	./static/third_party/ace/src/theme-twilight.js
	./static/third_party/ace/src/mode-nix.js
	./static/third_party/ace/src/mode-less.js
	./static/third_party/ace/src/mode-coffee.js
	./static/third_party/ace/src/mode-snippets.js
	./static/third_party/ace/src/mode-space.js
	./static/third_party/ace/src/mode-lean.js
	./static/third_party/ace/src/mode-perl.js
	./static/third_party/ace/src/mode-ftl.js
	./static/third_party/ace/src/mode-erlang.js
	./static/third_party/ace/src/theme-tomorrow.js
	./static/third_party/ace/src/mode-livescript.js
	./static/third_party/ace/src/mode-clojure.js
	./static/third_party/ace/src/mode-batchfile.js
	./static/third_party/ace/src/mode-json.js
	./static/third_party/ace/src/mode-haskell.js
	./static/third_party/ace/src/mode-rdoc.js
	./static/third_party/ace/src/ext-split.js
	./static/third_party/ace/src/mode-tcl.js
	./static/third_party/ace/src/ext-themelist.js
	./static/third_party/ace/src/mode-io.js
	./static/third_party/ace/src/mode-mask.js
	./static/third_party/ace/src/mode-coldfusion.js
	./static/third_party/ace/src/theme-terminal.js
	./static/third_party/ace/src/theme-github.js
	./static/third_party/ace/src/theme-dawn.js
	./static/third_party/ace/src/mode-sqlserver.js
	./static/third_party/ace/src/mode-praat.js
	./static/third_party/ace/src/mode-diff.js
	./static/third_party/ace/src/mode-live_script.js
	./static/third_party/ace/src/theme-chaos.js
	./static/third_party/ace/src/mode-smarty.js
	./static/third_party/ace/src/mode-elixir.js
	./static/third_party/ace/src/theme-ambiance.js
	./static/third_party/ace/src/mode-properties.js
	./static/third_party/ace/src/mode-r.js
	./static/third_party/ace/src/theme-crimson_editor.js
	./static/third_party/ace/src/theme-solarized_light.js
	./static/third_party/ace/src/ext-linking.js
	./static/third_party/ace/src/mode-assembly_x86.js
	./static/third_party/ace/src/ext-settings_menu.js
	./static/third_party/ace/src/mode-haxe.js
	./static/third_party/ace/src/theme-mono_industrial.js
	./static/third_party/ace/src/mode-lua.js
	./static/third_party/ace/src/mode-ini.js
	./static/third_party/ace/src/ext-emmet.js
	./static/third_party/ace/src/theme-xcode.js
	./static/third_party/ace/src/mode-html.js
	./static/third_party/ace/src/mode-ruby.js
	./static/third_party/ace/src/ext-textarea.js
	./static/third_party/ace/src/mode-lisp.js
	./static/third_party/ace/src/mode-css.js
	./static/third_party/ace/src/mode-applescript.js
	./static/third_party/ace/src/mode-stylus.js
	./static/third_party/ace/src/mode-gitignore.js
	./static/third_party/ace/src/theme-iplastic.js
	./static/third_party/ace/src/theme-idle_fingers.js
	./static/third_party/ace/src/mode-matlab.js
	./static/third_party/ace/src/mode-d.js
	./static/third_party/ace/src/mode-mavens_mate_log.js
	./static/third_party/ace/src/mode-vhdl.js
	./static/third_party/ace/src/ext-language_tools.js
	./static/third_party/ace/src/mode-csharp.js
	./static/third_party/ace/src/mode-xml.js
	./static/third_party/ace/src/mode-text.js
	./static/third_party/ace/src/mode-eiffel.js
	./static/third_party/ace/src/theme-merbivore_soft.js
	./static/third_party/ace/src/ext-keybinding_menu.js
	./static/third_party/ace/src/ext-statusbar.js
	./static/third_party/ace/src/mode-makefile.js
	./static/third_party/ace/src/ext-whitespace.js
	./static/third_party/ace/src/mode-vbscript.js
	./static/third_party/ace/src/mode-lsl.js
	./static/third_party/ace/src/mode-mysql.js
	./static/third_party/ace/src/theme-vibrant_ink.js
	./static/third_party/ace/src/theme-cobalt.js
	./static/third_party/ace/src/mode-jade.js
	./static/third_party/ace/src/theme-tomorrow_night.js
	./static/third_party/ace/src/ext-old_ie.js
	./static/third_party/ace/src/mode-javascript.js
	./static/third_party/ace/src/mode-scala.js
	./static/third_party/ace/src/theme-chrome.js
	./static/third_party/ace/src/mode-protobuf.js
	./static/third_party/ace/src/ext-static_highlight.js
	./static/third_party/ace/src/mode-logiql.js
	./static/third_party/ace/src/mode-typescript.js
	./static/third_party/ace/src/mode-twig.js
	./static/third_party/ace/src/mode-autohotkey.js
	./static/third_party/ace/src/mode-curly.js
	./static/third_party/ace/src/mode-pgsql.js
	./static/third_party/ace/src/mode-cirru.js
	./static/third_party/ace/src/theme-kr_theme.js
	./static/third_party/ace/src/theme-solarized_dark.js
	./static/third_party/ace/src/mode-objectivec.js
	./static/third_party/ace/src/mode-mel.js
	./static/third_party/ace/src/mode-asciidoc.js
	./static/third_party/ace/src/mode-sass.js
	./static/third_party/ace/src/ext-spellcheck.js
	./static/third_party/ace/src/theme-merbivore.js
	./static/third_party/ace/src/theme-monokai.js
	./static/third_party/ace/src/theme-tomorrow_night_eighties.js
	./static/third_party/ace/src/mode-toml.js
	./static/third_party/ace/src/mode-vala.js
	./static/third_party/ace/src/ext-chromevox.js
	./static/third_party/ace/src/mode-latex.js
	./static/third_party/ace/src/mode-haml.js
	./static/third_party/ace/src/theme-tomorrow_night_bright.js
	./static/third_party/ace/src/ext-elastic_tabstops_lite.js
	./static/third_party/ace/src/mode-sjs.js
	./static/third_party/ace/src/mode-dockerfile.js
	./static/third_party/ace/src/ext-modelist.js
	./static/third_party/ace/src/mode-abc.js
	./static/third_party/ace/src/theme-clouds_midnight.js
	./static/third_party/ace/src/mode-tex.js
	./static/third_party/ace/src/mode-golang.js
	./static/third_party/ace/src/mode-glsl.js
	./static/third_party/ace/src/theme-dreamweaver.js
	./static/third_party/ace/src/mode-mips_assembler.js
	./static/third_party/ace/src/mode-handlebars.js
	./static/third_party/ace/src/mode-svg.js
	./static/third_party/ace/src/mode-jsx.js
	./static/third_party/ace/src/theme-kuroir.js
	./static/third_party/ace/src/theme-tomorrow_night_blue.js
	./static/third_party/ace/src/mode-textile.js
	./static/third_party/ace/src/mode-forth.js
	./static/third_party/ace/src/mode-mipsassembler.js
	./static/third_party/ace/src/ext-searchbox.js
	./static/third_party/ace/src/mode-scss.js
	./static/third_party/ace/src/mode-ocaml.js
	./static/third_party/ace/src/mode-jsp.js
	./static/third_party/ace/src/ext-error_marker.js
	./static/third_party/ace/src/mode-verilog.js
	./static/third_party/ace/src/mode-c9search.js
	./static/third_party/ace/src/mode-groovy.js
	./static/third_party/ace/src/mode-ada.js
	./static/third_party/ace/src/mode-dot.js
	./static/third_party/ace/src/ext-beautify.js
	./static/third_party/ace/src/mode-scad.js
	./static/third_party/ace/src/mode-rust.js
	./static/third_party/ace/src/mode-mushcode.js
	./static/third_party/ace/src/mode-jack.js
	./static/third_party/ace/src/mode-prolog.js
	./static/third_party/ace/src/mode-plain_text.js
	./static/third_party/ace/src/worker-json.js
	./static/third_party/ace/src/mode-liquid.js
	./static/third_party/ace/src/mode-scheme.js
	./static/third_party/ace/src/theme-clouds.js
	./static/third_party/ace/src/mode-apache_conf.js
	./static/third_party/ace/src/keybinding-emacs.js
	./static/third_party/ace/src/mode-elm.js
	./static/third_party/ace/src/theme-eclipse.js
	./static/third_party/ace/src/mode-powershell.js
	./static/third_party/ace/src/mode-abap.js
	./static/third_party/ace/src/theme-pastel_on_dark.js
	./static/third_party/ace/src/mode-django.js
	./static/third_party/ace/src/mode-java.js
	./static/third_party/ace/src/mode-cobol.js
	./static/third_party/ace/src/mode-pascal.js
	./static/third_party/ace/src/snippets/css.js
	./static/third_party/ace/src/snippets/rhtml.js
	./static/third_party/ace/src/snippets/mushcode.js
	./static/third_party/ace/src/snippets/tcl.js
	./static/third_party/ace/src/snippets/livescript.js
	./static/third_party/ace/src/snippets/dockerfile.js
	./static/third_party/ace/src/snippets/cobol.js
	./static/third_party/ace/src/snippets/coldfusion.js
	./static/third_party/ace/src/snippets/scala.js
	./static/third_party/ace/src/snippets/javascript.js
	./static/third_party/ace/src/snippets/jade.js
	./static/third_party/ace/src/snippets/asciidoc.js
	./static/third_party/ace/src/snippets/luapage.js
	./static/third_party/ace/src/snippets/abc.js
	./static/third_party/ace/src/snippets/vbscript.js
	./static/third_party/ace/src/snippets/mel.js
	./static/third_party/ace/src/snippets/nix.js
	./static/third_party/ace/src/snippets/abap.js
	./static/third_party/ace/src/snippets/apache_conf.js
	./static/third_party/ace/src/snippets/jsp.js
	./static/third_party/ace/src/snippets/lisp.js
	./static/third_party/ace/src/snippets/verilog.js
	./static/third_party/ace/src/snippets/vala.js
	./static/third_party/ace/src/snippets/java.js
	./static/third_party/ace/src/snippets/yaml.js
	./static/third_party/ace/src/snippets/handlebars.js
	./static/third_party/ace/src/snippets/ini.js
	./static/third_party/ace/src/snippets/c9search.js
	./static/third_party/ace/src/snippets/scheme.js
	./static/third_party/ace/src/snippets/applescript.js
	./static/third_party/ace/src/snippets/objectivec.js
	./static/third_party/ace/src/snippets/mips_assembler.js
	./static/third_party/ace/src/snippets/diff.js
	./static/third_party/ace/src/snippets/haml.js
	./static/third_party/ace/src/snippets/curly.js
	./static/third_party/ace/src/snippets/golang.js
	./static/third_party/ace/src/snippets/gherkin.js
	./static/third_party/ace/src/snippets/liquid.js
	./static/third_party/ace/src/snippets/stylus.js
	./static/third_party/ace/src/snippets/sql.js
	./static/third_party/ace/src/snippets/tex.js
	./static/third_party/ace/src/snippets/cirru.js
	./static/third_party/ace/src/snippets/io.js
	./static/third_party/ace/src/snippets/elixir.js
	./static/third_party/ace/src/snippets/glsl.js
	./static/third_party/ace/src/snippets/julia.js
	./static/third_party/ace/src/snippets/assembly_x86.js
	./static/third_party/ace/src/snippets/ocaml.js
	./static/third_party/ace/src/snippets/sjs.js
	./static/third_party/ace/src/snippets/pgsql.js
	./static/third_party/ace/src/snippets/pascal.js
	./static/third_party/ace/src/snippets/forth.js
	./static/third_party/ace/src/snippets/xquery.js
	./static/third_party/ace/src/snippets/matlab.js
	./static/third_party/ace/src/snippets/groovy.js
	./static/third_party/ace/src/snippets/d.js
	./static/third_party/ace/src/snippets/lean.js
	./static/third_party/ace/src/snippets/toml.js
	./static/third_party/ace/src/snippets/space.js
	./static/third_party/ace/src/snippets/scss.js
	./static/third_party/ace/src/snippets/rust.js
	./static/third_party/ace/src/snippets/django.js
	./static/third_party/ace/src/snippets/php.js
	./static/third_party/ace/src/snippets/markdown.js
	./static/third_party/ace/src/snippets/dart.js
	./static/third_party/ace/src/snippets/typescript.js
	./static/third_party/ace/src/snippets/live_script.js
	./static/third_party/ace/src/snippets/latex.js
	./static/third_party/ace/src/snippets/clojure.js
	./static/third_party/ace/src/snippets/twig.js
	./static/third_party/ace/src/snippets/eiffel.js
	./static/third_party/ace/src/snippets/autohotkey.js
	./static/third_party/ace/src/snippets/properties.js
	./static/third_party/ace/src/snippets/html_ruby.js
	./static/third_party/ace/src/snippets/jsx.js
	./static/third_party/ace/src/snippets/praat.js
	./static/third_party/ace/src/snippets/ejs.js
	./static/third_party/ace/src/snippets/prolog.js
	./static/third_party/ace/src/snippets/plain_text.js
	./static/third_party/ace/src/snippets/c_cpp.js
	./static/third_party/ace/src/snippets/jack.js
	./static/third_party/ace/src/snippets/less.js
	./static/third_party/ace/src/snippets/sh.js
	./static/third_party/ace/src/snippets/lua.js
	./static/third_party/ace/src/snippets/logiql.js
	./static/third_party/ace/src/snippets/html.js
	./static/third_party/ace/src/snippets/mask.js
	./static/third_party/ace/src/snippets/textile.js
	./static/third_party/ace/src/snippets/haxe.js
	./static/third_party/ace/src/snippets/actionscript.js
	./static/third_party/ace/src/snippets/csharp.js
	./static/third_party/ace/src/snippets/r.js
	./static/third_party/ace/src/snippets/lucene.js
	./static/third_party/ace/src/snippets/mysql.js
	./static/third_party/ace/src/snippets/svg.js
	./static/third_party/ace/src/snippets/ruby.js
	./static/third_party/ace/src/snippets/mipsassembler.js
	./static/third_party/ace/src/snippets/python.js
	./static/third_party/ace/src/snippets/sass.js
	./static/third_party/ace/src/snippets/sqlserver.js
	./static/third_party/ace/src/snippets/coffee.js
	./static/third_party/ace/src/snippets/protobuf.js
	./static/third_party/ace/src/snippets/powershell.js
	./static/third_party/ace/src/snippets/velocity.js
	./static/third_party/ace/src/snippets/ftl.js
	./static/third_party/ace/src/snippets/makefile.js
	./static/third_party/ace/src/snippets/batchfile.js
	./static/third_party/ace/src/snippets/ada.js
	./static/third_party/ace/src/snippets/scad.js
	./static/third_party/ace/src/snippets/json.js
	./static/third_party/ace/src/snippets/erlang.js
	./static/third_party/ace/src/snippets/gitignore.js
	./static/third_party/ace/src/snippets/smarty.js
	./static/third_party/ace/src/snippets/snippets.js
	./static/third_party/ace/src/snippets/soy_template.js
	./static/third_party/ace/src/snippets/perl.js
	./static/third_party/ace/src/snippets/elm.js
	./static/third_party/ace/src/snippets/text.js
	./static/third_party/ace/src/snippets/dot.js
	./static/third_party/ace/src/snippets/vhdl.js
	./static/third_party/ace/src/snippets/jsoniq.js
	./static/third_party/ace/src/snippets/gcode.js
	./static/third_party/ace/src/snippets/rdoc.js
	./static/third_party/ace/src/snippets/xml.js
	./static/third_party/ace/src/snippets/lsl.js
	./static/third_party/ckeditor/plugins/scayt/README.md
	./static/third_party/ckeditor/plugins/scayt/dialogs/options.js
	./static/third_party/ckeditor/plugins/scayt/dialogs/toolbar.css
	./static/third_party/ckeditor/plugins/wsc/README.md
	./static/third_party/OAuth.io/oauth.io.README.md
	./static/third_party/OAuth.io/oauth.io.SOURCE
	./static/third_party/OAuth.io/oauth.min.js
	./static/third_party/contenthover/contenthover.SOURCE
	./static/third_party/slick/slick.SOURCE
	./static/third_party/slick/src/config.rb
	./static/third_party/slick/src/slick.min.js
	./static/third_party/slick/src/slick-theme.scss
	./static/third_party/slick/src/slick.js
	./static/third_party/slick/src/slick.scss
	./static/third_party/slick/src/slick-theme.css
	./static/third_party/slick/src/slick.css
	./static/third_party/slick/src/fonts/slick.svg
	./static/bootstrap/js/npm.js
	./static/bootstrap/css/bootstrap-theme.css.map
	./.c9/runners/sketch.run
	./build/index.html
	./build/index.js
	./build/static/jquery.svg.js
	./build/static/bonecard.css
	./build/static/jquery.svg.css
	./build/static/client.css
	./build/static/bone.js
	./build/static/bonecard.js
	./build/static/connect.js
	./build/static/what_is_beaglebone.css
	./build/static/bonecard-edit.js
	./build/static/common.css
	./build/static/bonescript.js
	./build/static/bonecard-create.js
	./build/static/client.js
	./build/static/schmux.css
	./build/static/my_tutorials.css
	./build/static/github-login.css
	./build/static/login.css
	./build/static/jquery.mousewheel.js
	./build/static/bonecard-create.css
	./build/static/none
	./build/static/github-login.js
	./build/static/my_tutorials.js
	./build/static/jquery.movingboxes.min.js
	./build/static/jquery.terminal.css
	./build/static/connect-status.html
	./build/static/eeprom-web.js
	./build/static/flot/jquery.colorhelpers.min.js
	./build/static/flot/FAQ.md
	./build/static/flot/NEWS.md
	./build/static/flot/CONTRIBUTING.md
	./build/static/flot/API.md
	./build/static/flot/PLUGINS.md
	./build/static/flot/excanvas.min.js
	./build/static/flot/jquery.min.js
	./build/static/images/index.txt
	./build/static/third_party/ace/ace.SOURCE
	./build/static/third_party/ace/src/mode-yaml.js
	./build/static/third_party/ace/src/mode-python.js
	./build/static/third_party/ace/src/theme-textmate.js
	./build/static/third_party/ace/src/mode-actionscript.js
	./build/static/third_party/ace/src/mode-gcode.js
	./build/static/third_party/ace/src/mode-c_cpp.js
	./build/static/third_party/ace/src/mode-sql.js
	./build/static/third_party/ace/src/mode-lucene.js
	./build/static/third_party/ace/src/worker-lua.js
	./build/static/third_party/ace/src/mode-sh.js
	./build/static/third_party/ace/src/mode-gherkin.js
	./build/static/third_party/ace/src/mode-julia.js
	./build/static/third_party/ace/src/theme-katzenmilch.js
	./build/static/third_party/ace/src/theme-sqlserver.js
	./build/static/third_party/ace/src/mode-dart.js
	./build/static/third_party/ace/src/theme-twilight.js
	./build/static/third_party/ace/src/mode-nix.js
	./build/static/third_party/ace/src/mode-less.js
	./build/static/third_party/ace/src/mode-coffee.js
	./build/static/third_party/ace/src/mode-snippets.js
	./build/static/third_party/ace/src/mode-space.js
	./build/static/third_party/ace/src/mode-lean.js
	./build/static/third_party/ace/src/mode-perl.js
	./build/static/third_party/ace/src/mode-ftl.js
	./build/static/third_party/ace/src/mode-erlang.js
	./build/static/third_party/ace/src/theme-tomorrow.js
	./build/static/third_party/ace/src/mode-livescript.js
	./build/static/third_party/ace/src/mode-clojure.js
	./build/static/third_party/ace/src/mode-batchfile.js
	./build/static/third_party/ace/src/mode-json.js
	./build/static/third_party/ace/src/mode-haskell.js
	./build/static/third_party/ace/src/mode-rdoc.js
	./build/static/third_party/ace/src/ext-split.js
	./build/static/third_party/ace/src/mode-tcl.js
	./build/static/third_party/ace/src/ext-themelist.js
	./build/static/third_party/ace/src/mode-io.js
	./build/static/third_party/ace/src/mode-mask.js
	./build/static/third_party/ace/src/mode-coldfusion.js
	./build/static/third_party/ace/src/theme-terminal.js
	./build/static/third_party/ace/src/theme-github.js
	./build/static/third_party/ace/src/theme-dawn.js
	./build/static/third_party/ace/src/mode-sqlserver.js
	./build/static/third_party/ace/src/mode-praat.js
	./build/static/third_party/ace/src/mode-diff.js
	./build/static/third_party/ace/src/mode-live_script.js
	./build/static/third_party/ace/src/theme-chaos.js
	./build/static/third_party/ace/src/mode-smarty.js
	./build/static/third_party/ace/src/mode-elixir.js
	./build/static/third_party/ace/src/theme-ambiance.js
	./build/static/third_party/ace/src/mode-properties.js
	./build/static/third_party/ace/src/mode-r.js
	./build/static/third_party/ace/src/theme-crimson_editor.js
	./build/static/third_party/ace/src/theme-solarized_light.js
	./build/static/third_party/ace/src/ext-linking.js
	./build/static/third_party/ace/src/mode-assembly_x86.js
	./build/static/third_party/ace/src/ext-settings_menu.js
	./build/static/third_party/ace/src/mode-haxe.js
	./build/static/third_party/ace/src/theme-mono_industrial.js
	./build/static/third_party/ace/src/mode-lua.js
	./build/static/third_party/ace/src/mode-ini.js
	./build/static/third_party/ace/src/ext-emmet.js
	./build/static/third_party/ace/src/theme-xcode.js
	./build/static/third_party/ace/src/mode-html.js
	./build/static/third_party/ace/src/mode-ruby.js
	./build/static/third_party/ace/src/ext-textarea.js
	./build/static/third_party/ace/src/mode-lisp.js
	./build/static/third_party/ace/src/mode-css.js
	./build/static/third_party/ace/src/mode-applescript.js
	./build/static/third_party/ace/src/mode-stylus.js
	./build/static/third_party/ace/src/mode-gitignore.js
	./build/static/third_party/ace/src/theme-iplastic.js
	./build/static/third_party/ace/src/theme-idle_fingers.js
	./build/static/third_party/ace/src/mode-matlab.js
	./build/static/third_party/ace/src/mode-d.js
	./build/static/third_party/ace/src/mode-mavens_mate_log.js
	./build/static/third_party/ace/src/mode-vhdl.js
	./build/static/third_party/ace/src/ext-language_tools.js
	./build/static/third_party/ace/src/mode-csharp.js
	./build/static/third_party/ace/src/mode-xml.js
	./build/static/third_party/ace/src/mode-text.js
	./build/static/third_party/ace/src/mode-eiffel.js
	./build/static/third_party/ace/src/theme-merbivore_soft.js
	./build/static/third_party/ace/src/ext-keybinding_menu.js
	./build/static/third_party/ace/src/ext-statusbar.js
	./build/static/third_party/ace/src/mode-makefile.js
	./build/static/third_party/ace/src/ext-whitespace.js
	./build/static/third_party/ace/src/mode-vbscript.js
	./build/static/third_party/ace/src/mode-lsl.js
	./build/static/third_party/ace/src/mode-mysql.js
	./build/static/third_party/ace/src/theme-vibrant_ink.js
	./build/static/third_party/ace/src/theme-cobalt.js
	./build/static/third_party/ace/src/mode-jade.js
	./build/static/third_party/ace/src/theme-tomorrow_night.js
	./build/static/third_party/ace/src/ext-old_ie.js
	./build/static/third_party/ace/src/mode-javascript.js
	./build/static/third_party/ace/src/mode-scala.js
	./build/static/third_party/ace/src/theme-chrome.js
	./build/static/third_party/ace/src/mode-protobuf.js
	./build/static/third_party/ace/src/ext-static_highlight.js
	./build/static/third_party/ace/src/mode-logiql.js
	./build/static/third_party/ace/src/mode-typescript.js
	./build/static/third_party/ace/src/mode-twig.js
	./build/static/third_party/ace/src/mode-autohotkey.js
	./build/static/third_party/ace/src/mode-curly.js
	./build/static/third_party/ace/src/mode-pgsql.js
	./build/static/third_party/ace/src/mode-cirru.js
	./build/static/third_party/ace/src/theme-kr_theme.js
	./build/static/third_party/ace/src/theme-solarized_dark.js
	./build/static/third_party/ace/src/mode-objectivec.js
	./build/static/third_party/ace/src/mode-mel.js
	./build/static/third_party/ace/src/mode-asciidoc.js
	./build/static/third_party/ace/src/mode-sass.js
	./build/static/third_party/ace/src/ext-spellcheck.js
	./build/static/third_party/ace/src/theme-merbivore.js
	./build/static/third_party/ace/src/theme-monokai.js
	./build/static/third_party/ace/src/theme-tomorrow_night_eighties.js
	./build/static/third_party/ace/src/mode-toml.js
	./build/static/third_party/ace/src/mode-vala.js
	./build/static/third_party/ace/src/ext-chromevox.js
	./build/static/third_party/ace/src/mode-latex.js
	./build/static/third_party/ace/src/mode-haml.js
	./build/static/third_party/ace/src/theme-tomorrow_night_bright.js
	./build/static/third_party/ace/src/ext-elastic_tabstops_lite.js
	./build/static/third_party/ace/src/mode-sjs.js
	./build/static/third_party/ace/src/mode-dockerfile.js
	./build/static/third_party/ace/src/ext-modelist.js
	./build/static/third_party/ace/src/mode-abc.js
	./build/static/third_party/ace/src/theme-clouds_midnight.js
	./build/static/third_party/ace/src/mode-tex.js
	./build/static/third_party/ace/src/mode-golang.js
	./build/static/third_party/ace/src/mode-glsl.js
	./build/static/third_party/ace/src/theme-dreamweaver.js
	./build/static/third_party/ace/src/mode-mips_assembler.js
	./build/static/third_party/ace/src/mode-handlebars.js
	./build/static/third_party/ace/src/mode-svg.js
	./build/static/third_party/ace/src/mode-jsx.js
	./build/static/third_party/ace/src/theme-kuroir.js
	./build/static/third_party/ace/src/theme-tomorrow_night_blue.js
	./build/static/third_party/ace/src/mode-textile.js
	./build/static/third_party/ace/src/mode-forth.js
	./build/static/third_party/ace/src/mode-mipsassembler.js
	./build/static/third_party/ace/src/ext-searchbox.js
	./build/static/third_party/ace/src/mode-scss.js
	./build/static/third_party/ace/src/mode-ocaml.js
	./build/static/third_party/ace/src/mode-jsp.js
	./build/static/third_party/ace/src/ext-error_marker.js
	./build/static/third_party/ace/src/mode-verilog.js
	./build/static/third_party/ace/src/mode-c9search.js
	./build/static/third_party/ace/src/mode-groovy.js
	./build/static/third_party/ace/src/mode-ada.js
	./build/static/third_party/ace/src/mode-dot.js
	./build/static/third_party/ace/src/ext-beautify.js
	./build/static/third_party/ace/src/mode-scad.js
	./build/static/third_party/ace/src/mode-rust.js
	./build/static/third_party/ace/src/mode-mushcode.js
	./build/static/third_party/ace/src/mode-jack.js
	./build/static/third_party/ace/src/mode-prolog.js
	./build/static/third_party/ace/src/mode-plain_text.js
	./build/static/third_party/ace/src/worker-json.js
	./build/static/third_party/ace/src/mode-liquid.js
	./build/static/third_party/ace/src/mode-scheme.js
	./build/static/third_party/ace/src/theme-clouds.js
	./build/static/third_party/ace/src/mode-apache_conf.js
	./build/static/third_party/ace/src/keybinding-emacs.js
	./build/static/third_party/ace/src/mode-elm.js
	./build/static/third_party/ace/src/theme-eclipse.js
	./build/static/third_party/ace/src/mode-powershell.js
	./build/static/third_party/ace/src/mode-abap.js
	./build/static/third_party/ace/src/theme-pastel_on_dark.js
	./build/static/third_party/ace/src/mode-django.js
	./build/static/third_party/ace/src/mode-java.js
	./build/static/third_party/ace/src/mode-cobol.js
	./build/static/third_party/ace/src/mode-pascal.js
	./build/static/third_party/ace/src/snippets/css.js
	./build/static/third_party/ace/src/snippets/rhtml.js
	./build/static/third_party/ace/src/snippets/mushcode.js
	./build/static/third_party/ace/src/snippets/tcl.js
	./build/static/third_party/ace/src/snippets/livescript.js
	./build/static/third_party/ace/src/snippets/dockerfile.js
	./build/static/third_party/ace/src/snippets/cobol.js
	./build/static/third_party/ace/src/snippets/coldfusion.js
	./build/static/third_party/ace/src/snippets/scala.js
	./build/static/third_party/ace/src/snippets/javascript.js
	./build/static/third_party/ace/src/snippets/jade.js
	./build/static/third_party/ace/src/snippets/asciidoc.js
	./build/static/third_party/ace/src/snippets/luapage.js
	./build/static/third_party/ace/src/snippets/abc.js
	./build/static/third_party/ace/src/snippets/vbscript.js
	./build/static/third_party/ace/src/snippets/mel.js
	./build/static/third_party/ace/src/snippets/nix.js
	./build/static/third_party/ace/src/snippets/abap.js
	./build/static/third_party/ace/src/snippets/apache_conf.js
	./build/static/third_party/ace/src/snippets/jsp.js
	./build/static/third_party/ace/src/snippets/lisp.js
	./build/static/third_party/ace/src/snippets/verilog.js
	./build/static/third_party/ace/src/snippets/vala.js
	./build/static/third_party/ace/src/snippets/java.js
	./build/static/third_party/ace/src/snippets/yaml.js
	./build/static/third_party/ace/src/snippets/handlebars.js
	./build/static/third_party/ace/src/snippets/ini.js
	./build/static/third_party/ace/src/snippets/c9search.js
	./build/static/third_party/ace/src/snippets/scheme.js
	./build/static/third_party/ace/src/snippets/applescript.js
	./build/static/third_party/ace/src/snippets/objectivec.js
	./build/static/third_party/ace/src/snippets/mips_assembler.js
	./build/static/third_party/ace/src/snippets/diff.js
	./build/static/third_party/ace/src/snippets/haml.js
	./build/static/third_party/ace/src/snippets/curly.js
	./build/static/third_party/ace/src/snippets/golang.js
	./build/static/third_party/ace/src/snippets/gherkin.js
	./build/static/third_party/ace/src/snippets/liquid.js
	./build/static/third_party/ace/src/snippets/stylus.js
	./build/static/third_party/ace/src/snippets/sql.js
	./build/static/third_party/ace/src/snippets/tex.js
	./build/static/third_party/ace/src/snippets/cirru.js
	./build/static/third_party/ace/src/snippets/io.js
	./build/static/third_party/ace/src/snippets/elixir.js
	./build/static/third_party/ace/src/snippets/glsl.js
	./build/static/third_party/ace/src/snippets/julia.js
	./build/static/third_party/ace/src/snippets/assembly_x86.js
	./build/static/third_party/ace/src/snippets/ocaml.js
	./build/static/third_party/ace/src/snippets/sjs.js
	./build/static/third_party/ace/src/snippets/pgsql.js
	./build/static/third_party/ace/src/snippets/pascal.js
	./build/static/third_party/ace/src/snippets/forth.js
	./build/static/third_party/ace/src/snippets/xquery.js
	./build/static/third_party/ace/src/snippets/matlab.js
	./build/static/third_party/ace/src/snippets/groovy.js
	./build/static/third_party/ace/src/snippets/d.js
	./build/static/third_party/ace/src/snippets/lean.js
	./build/static/third_party/ace/src/snippets/toml.js
	./build/static/third_party/ace/src/snippets/space.js
	./build/static/third_party/ace/src/snippets/scss.js
	./build/static/third_party/ace/src/snippets/rust.js
	./build/static/third_party/ace/src/snippets/django.js
	./build/static/third_party/ace/src/snippets/php.js
	./build/static/third_party/ace/src/snippets/markdown.js
	./build/static/third_party/ace/src/snippets/dart.js
	./build/static/third_party/ace/src/snippets/typescript.js
	./build/static/third_party/ace/src/snippets/live_script.js
	./build/static/third_party/ace/src/snippets/latex.js
	./build/static/third_party/ace/src/snippets/clojure.js
	./build/static/third_party/ace/src/snippets/twig.js
	./build/static/third_party/ace/src/snippets/eiffel.js
	./build/static/third_party/ace/src/snippets/autohotkey.js
	./build/static/third_party/ace/src/snippets/properties.js
	./build/static/third_party/ace/src/snippets/html_ruby.js
	./build/static/third_party/ace/src/snippets/jsx.js
	./build/static/third_party/ace/src/snippets/praat.js
	./build/static/third_party/ace/src/snippets/ejs.js
	./build/static/third_party/ace/src/snippets/prolog.js
	./build/static/third_party/ace/src/snippets/plain_text.js
	./build/static/third_party/ace/src/snippets/c_cpp.js
	./build/static/third_party/ace/src/snippets/jack.js
	./build/static/third_party/ace/src/snippets/less.js
	./build/static/third_party/ace/src/snippets/sh.js
	./build/static/third_party/ace/src/snippets/lua.js
	./build/static/third_party/ace/src/snippets/logiql.js
	./build/static/third_party/ace/src/snippets/html.js
	./build/static/third_party/ace/src/snippets/mask.js
	./build/static/third_party/ace/src/snippets/textile.js
	./build/static/third_party/ace/src/snippets/haxe.js
	./build/static/third_party/ace/src/snippets/actionscript.js
	./build/static/third_party/ace/src/snippets/csharp.js
	./build/static/third_party/ace/src/snippets/r.js
	./build/static/third_party/ace/src/snippets/lucene.js
	./build/static/third_party/ace/src/snippets/mysql.js
	./build/static/third_party/ace/src/snippets/svg.js
	./build/static/third_party/ace/src/snippets/ruby.js
	./build/static/third_party/ace/src/snippets/mipsassembler.js
	./build/static/third_party/ace/src/snippets/python.js
	./build/static/third_party/ace/src/snippets/sass.js
	./build/static/third_party/ace/src/snippets/sqlserver.js
	./build/static/third_party/ace/src/snippets/coffee.js
	./build/static/third_party/ace/src/snippets/protobuf.js
	./build/static/third_party/ace/src/snippets/powershell.js
	./build/static/third_party/ace/src/snippets/velocity.js
	./build/static/third_party/ace/src/snippets/ftl.js
	./build/static/third_party/ace/src/snippets/makefile.js
	./build/static/third_party/ace/src/snippets/batchfile.js
	./build/static/third_party/ace/src/snippets/ada.js
	./build/static/third_party/ace/src/snippets/scad.js
	./build/static/third_party/ace/src/snippets/json.js
	./build/static/third_party/ace/src/snippets/erlang.js
	./build/static/third_party/ace/src/snippets/gitignore.js
	./build/static/third_party/ace/src/snippets/smarty.js
	./build/static/third_party/ace/src/snippets/snippets.js
	./build/static/third_party/ace/src/snippets/soy_template.js
	./build/static/third_party/ace/src/snippets/perl.js
	./build/static/third_party/ace/src/snippets/elm.js
	./build/static/third_party/ace/src/snippets/text.js
	./build/static/third_party/ace/src/snippets/dot.js
	./build/static/third_party/ace/src/snippets/vhdl.js
	./build/static/third_party/ace/src/snippets/jsoniq.js
	./build/static/third_party/ace/src/snippets/gcode.js
	./build/static/third_party/ace/src/snippets/rdoc.js
	./build/static/third_party/ace/src/snippets/xml.js
	./build/static/third_party/ace/src/snippets/lsl.js
	./build/static/third_party/ckeditor/plugins/scayt/dialogs/options.js
	./build/static/third_party/ckeditor/plugins/scayt/dialogs/toolbar.css
	./build/static/third_party/OAuth.io/oauth.io.README.md
	./build/static/third_party/OAuth.io/oauth.io.SOURCE
	./build/static/third_party/OAuth.io/oauth.min.js
	./build/static/third_party/contenthover/contenthover.SOURCE
	./build/static/third_party/slick/slick.SOURCE
	./build/static/third_party/slick/src/config.rb
	./build/static/third_party/slick/src/slick.min.js
	./build/static/third_party/slick/src/slick-theme.scss
	./build/static/third_party/slick/src/slick.js
	./build/static/third_party/slick/src/slick.scss
	./build/static/third_party/slick/src/slick-theme.css
	./build/static/third_party/slick/src/slick.css
	./build/static/third_party/slick/src/fonts/slick.svg
	./build/static/bootstrap/js/npm.js
	./build/static/bootstrap/css/bootstrap-theme.css.map
	./build/Support/index.html
	./build/Support/bonecard/index.html
	./build/Support/bonecard/tutorial/index.html
	./build/Support/bonecard/edit/index.html
	./build/Support/bonecard/create/index.html
	./build/Support/bonecard/my_tutorials/index.html
	./build/Support/BoneScript/demo_processingjs.html
	./build/Support/BoneScript/weatherstation.js
	./build/Support/BoneScript/knight-rider._html
	./build/Support/BoneScript/demo_flot.html
	./build/Support/BoneScript/demo_weatherstation.html
	./build/Support/BoneScript/digitalWrite2._html
	./build/Support/BoneScript/index.html
	./build/Support/BoneScript/demo_oscilliscope.html
	./build/Support/BoneScript/demo_bmp085_graphing/index.html
	./build/Support/BoneScript/grove_LCD_RGB_Backlight/index.html
	./build/Support/BoneScript/attachInterrupt/index.html
	./build/Support/BoneScript/getPinMode/index.html
	./build/Support/BoneScript/pushbutton/index.html
	./build/Support/BoneScript/menu/index.html
	./build/Support/BoneScript/clearInterval/index.html
	./build/Support/BoneScript/demo_blinkled/index.html
	./build/Support/BoneScript/2AxisThumbJoystick/index.html
	./build/Support/BoneScript/grove_Touch/index.html
	./build/Support/BoneScript/Potentiometer/index.html
	./build/Support/BoneScript/detachInterrupt/index.html
	./build/Support/BoneScript/PIRMotionSensor/index.html
	./build/Support/BoneScript/clearTimeout/index.html
	./build/Support/BoneScript/analogRead/index.html
	./build/Support/BoneScript/setTimeout/index.html
	./build/Support/BoneScript/analogWrite/index.html
	./build/Support/BoneScript/readTextFile/index.html
	./build/Support/BoneScript/demo_analogWriteSlider/index.html
	./build/Support/BoneScript/digitalRead/inner.html
	./build/Support/BoneScript/digitalRead/index.html
	./build/Support/BoneScript/getPlatform/index.html
	./build/Support/BoneScript/digitalWrite/index.html
	./build/Support/BoneScript/demo_bmp085/index.html
	./build/Support/BoneScript/cape_sockets/index.html
	./build/Support/BoneScript/updates/index.html
	./build/Support/BoneScript/writeTextFile/index.html
	./build/Support/BoneScript/shiftOut/index.html
	./build/Support/BoneScript/accelerometer/index.html
	./build/Support/BoneScript/demo_blinkled_external/index.html
	./build/Support/BoneScript/Ultrasonic_Sensor/index.html
	./build/Support/BoneScript/cape_bacon/index.html
	./build/Support/BoneScript/demo_analogReadSlider/index.html
	./build/Support/BoneScript/setInterval/index.html
	./build/Support/BoneScript/pinMode/index.html
	./build/Support/bone101/index.html
	./build/Support/bone101/UI/index.html
	./build/Support/bone101/UI/bbui.js
	./build/Support/script/beagle-ui.js
	./build/Support/script/beagle.css
	./build/Support/script/bonescript-demo.js
	./_includes/github-login.html
	./_includes/breadcrumb.html
	./_includes/ajax_loader.html
	./_includes/side_menu.html
	./_includes/disqus.html
	./_includes/footer.html
	./Support/index.html
	./Support/bonecard/index.html
	./Support/bonecard/tutorial/index.html
	./Support/bonecard/edit/index.html
	./Support/bonecard/create/index.html
	./Support/bonecard/create/README.md
	./Support/bonecard/my_tutorials/index.html
	./Support/BoneScript/demo_processingjs.html
	./Support/BoneScript/weatherstation.js
	./Support/BoneScript/knight-rider._html
	./Support/BoneScript/demo_flot.html
	./Support/BoneScript/demo_weatherstation.html
	./Support/BoneScript/digitalWrite2._html
	./Support/BoneScript/index.html
	./Support/BoneScript/demo_oscilliscope.html
	./Support/BoneScript/demo_bmp085_graphing/index.html
	./Support/BoneScript/grove_LCD_RGB_Backlight/index.html
	./Support/BoneScript/attachInterrupt/index.html
	./Support/BoneScript/getPinMode/index.html
	./Support/BoneScript/pushbutton/index.html
	./Support/BoneScript/menu/index.html
	./Support/BoneScript/clearInterval/index.html
	./Support/BoneScript/demo_blinkled/index.html
	./Support/BoneScript/2AxisThumbJoystick/index.html
	./Support/BoneScript/grove_Touch/index.html
	./Support/BoneScript/Potentiometer/index.html
	./Support/BoneScript/detachInterrupt/index.html
	./Support/BoneScript/PIRMotionSensor/index.html
	./Support/BoneScript/clearTimeout/index.html
	./Support/BoneScript/analogRead/index.html
	./Support/BoneScript/setTimeout/index.html
	./Support/BoneScript/analogWrite/index.html
	./Support/BoneScript/readTextFile/index.html
	./Support/BoneScript/demo_analogWriteSlider/index.html
	./Support/BoneScript/digitalRead/inner.html
	./Support/BoneScript/digitalRead/index.html
	./Support/BoneScript/getPlatform/index.html
	./Support/BoneScript/digitalWrite/index.html
	./Support/BoneScript/demo_bmp085/index.html
	./Support/BoneScript/cape_sockets/index.html
	./Support/BoneScript/updates/index.html
	./Support/BoneScript/writeTextFile/index.html
	./Support/BoneScript/shiftOut/index.html
	./Support/BoneScript/accelerometer/index.html
	./Support/BoneScript/demo_blinkled_external/index.html
	./Support/BoneScript/Ultrasonic_Sensor/index.html
	./Support/BoneScript/cape_bacon/index.html
	./Support/BoneScript/demo_analogReadSlider/index.html
	./Support/BoneScript/setInterval/index.html
	./Support/BoneScript/pinMode/index.html
	./Support/bone101/index.html
	./Support/bone101/UI/index.html
	./Support/bone101/UI/README.md
	./Support/bone101/UI/bbui.js
	./Support/script/beagle-ui.js
	./Support/script/beagle.css
	./Support/script/bonescript-demo.js
# licensecheck(1): ./Makefile: *No copyright* UNKNOWN
License: NO_LICENSE_TEXT_FOUND

#----------------------------------------------------------------------------
# Binary files (skipped):
# ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/build/Release/binding.node
# ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/build/Release/obj.target/binding.node
# ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bluetooth-hci-socket/build/Release/obj.target/binding/src/BluetoothHciSocket.o
# ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/test/utf16.bplist
# ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/test/uid.bplist
# ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/test/sample2.bplist
# ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/test/sample1.bplist
# ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/test/airplay.bplist
# ./examples/cookbook/02-sensors/node_modules/sensortag/node_modules/bplist-parser/test/iTunes-small.bplist
# ./examples/cookbook/07-kernel/.1601.dwo
# ./examples/cookbook/07-kernel/.1623.dwo
# ./examples/cookbook/07-kernel/.1644.dwo
# ./examples/cookbook/07-kernel/.tmp_hello.dwo
# ./examples/cookbook/07-kernel/.1651.dwo
# ./examples/cookbook/07-kernel/.1637.dwo
# ./examples/cookbook/07-kernel/.1630.dwo
# ./examples/cookbook/07-kernel/.1608.dwo
# ./examples/cookbook/07-kernel/.1616.dwo
# ./examples/cookbook/07-kernel/.1658.dwo
# ./examples/extras/botspeak/images/botspeak_robot128x128.png
# ./examples/extras/botspeak/images/ceeo-logo.png
# ./examples/extras/botspeak/images/generic_tcpip.jpg
# ./examples/extras/botspeak/images/arduino.jpg
# ./examples/extras/botspeak/images/lillypad.jpg
# ./examples/extras/botspeak/images/no.png
# ./examples/extras/botspeak/images/beaglebone.jpg
# ./examples/extras/botspeak/images/botspeak_robot16x16.png
# ./examples/extras/botspeak/images/botspeak_logo.png
# ./examples/extras/botspeak/images/botspeak_robot48x48.png
# ./examples/extras/botspeak/images/rpi.jpg
# ./examples/extras/mfba2014/Slide20.png
# ./examples/extras/mfba2014/Slide21.png
# ./examples/extras/mfba2014/Slide15.png
# ./examples/extras/mfba2014/Slide18.png
# ./examples/extras/mfba2014/Slide03.png
# ./examples/extras/mfba2014/Slide22.png
# ./examples/extras/mfba2014/Slide02.png
# ./examples/extras/mfba2014/Slide14.png
# ./examples/extras/mfba2014/Slide13.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide20.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide22.png
# ./examples/Grove_BBG/Software/Python/Grove_3_Axis_Compass/grove_compass_lib.pyc
# ./examples/Grove_BBG/Software/Python/Grove_IMU_10DOF/BMP085.pyc
# ./examples/Grove_BBG/Software/Python/Grove_IMU_10DOF/visualscope.pyc
# ./examples/Grove_BBG/Software/Python/Grove_Fingerprint/Grove_Fingerprint.pyc
# ./examples/Grove_BBG/Software/Python/Grove_Fingerprint/.enroll.py.swp
# ./static/ajax-loader.gif
# ./static/images/ui-bg_glass_65_ffffff_1x400.png
# ./static/images/boris-cape.png
# ./static/images/c9-save-name.png
# ./static/images/ui-bg_glass_55_fbf9ee_1x400.png
# ./static/images/icon_linkarrow.gif
# ./static/images/c9-new-tab.png
# ./static/images/mascot.png
# ./static/images/icon_offsite.gif
# ./static/images/ui-bg_glass_75_e6e6e6_1x400.png
# ./static/images/c9-save-name-complete.png
# ./static/images/homepage_gettingstarted_btn.gif
# ./static/images/c9-named-tab.png
# ./static/images/usb.png
# ./static/images/Untitled-2.png
# ./static/images/footer-img.jpg
# ./static/images/imager.png
# ./static/images/beagle-hd-logo.gif
# ./static/images/beagle-subpg-bg-mascot.gif
# ./static/images/ui-icons_222222_256x240.png
# ./static/images/ui-bg_flat_0_aaaaaa_40x100.png
# ./static/images/beagle-lrg-action-arrow.gif
# ./static/images/beagle_logo_hdr.gif
# ./static/images/icon_google+.png
# ./static/images/ui-icons_454545_256x240.png
# ./static/images/beaglebone-in-hand.JPG
# ./static/images/c9-create-tab.png
# ./static/images/beaglebone_with_led_bb.png
# ./static/images/c9-run.png
# ./static/images/ui-bg_highlight-soft_75_cccccc_1x100.png
# ./static/images/c9-stop.png
# ./static/images/icon_twitter.jpg
# ./static/images/ui-icons_2e83ff_256x240.png
# ./static/images/run-7zip-installer.png
# ./static/images/c9-close-tab.png
# ./static/images/bg_direction_nav.png
# ./static/images/beaglebone.png
# ./static/images/icon_facebook.gif
# ./static/images/beagle-bullet-list-arrow.gif
# ./static/images/artist-tested-engineer-approved.jpg
# ./static/images/green_check.png
# ./static/images/search.gif
# ./static/images/beaglebone_with_bmp085_bb.png
# ./static/images/icon_facebook.png
# ./static/images/animated-overlay.gif
# ./static/images/connected.png
# ./static/images/homepage_beaglebone_black.jpg
# ./static/images/homepage_black_hdr.gif
# ./static/images/ui-bg_glass_95_fef1ec_1x400.png
# ./static/images/write-latestimage.png
# ./static/images/c9-disk-icon.png
# ./static/images/ui-bg_flat_75_ffffff_40x100.png
# ./static/images/shiftout_bb.png
# ./static/images/icon_google+.jpg
# ./static/images/ui-bg_glass_75_dadada_1x400.png
# ./static/images/beagle-alink-action-arrow.gif
# ./static/images/icon_linkedin.jpg
# ./static/images/youTube-icon.png
# ./static/images/beagle-home-event-tux.gif
# ./static/images/ui-icons_cd0a0a_256x240.png
# ./static/images/icon_linkedin.png
# ./static/images/beagle-bullet-list-dot.gif
# ./static/images/warning_tri.png
# ./static/images/small_check.png
# ./static/images/ui-icons_888888_256x240.png
# ./static/images/beagle-btn-bg.jpg
# ./static/images/88x31.png
# ./static/images/cape-bacon-seg7.png
# ./static/images/icon_twitter.png
# ./static/images/beagle-subpg-bg.gif
# ./static/third_party/ckeditor/skins/moono/icons.png
# ./static/third_party/ckeditor/skins/moono/icons_hidpi.png
# ./static/third_party/ckeditor/skins/moono/images/lock-open.png
# ./static/third_party/ckeditor/skins/moono/images/close.png
# ./static/third_party/ckeditor/skins/moono/images/arrow.png
# ./static/third_party/ckeditor/skins/moono/images/refresh.png
# ./static/third_party/ckeditor/skins/moono/images/lock.png
# ./static/third_party/ckeditor/skins/moono/images/hidpi/lock-open.png
# ./static/third_party/ckeditor/skins/moono/images/hidpi/close.png
# ./static/third_party/ckeditor/skins/moono/images/hidpi/refresh.png
# ./static/third_party/ckeditor/skins/moono/images/hidpi/lock.png
# ./static/third_party/ckeditor/plugins/icons.png
# ./static/third_party/ckeditor/plugins/icons_hidpi.png
# ./static/third_party/ckeditor/plugins/link/images/anchor.png
# ./static/third_party/ckeditor/plugins/link/images/hidpi/anchor.png
# ./static/third_party/ckeditor/plugins/image/images/noimage.png
# ./static/third_party/ckeditor/plugins/magicline/images/icon.png
# ./static/third_party/ckeditor/plugins/magicline/images/icon-rtl.png
# ./static/third_party/ckeditor/plugins/magicline/images/hidpi/icon.png
# ./static/third_party/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
# ./static/third_party/ckeditor/plugins/about/dialogs/logo_ckeditor.png
# ./static/third_party/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png
# ./static/third_party/ckeditor/plugins/youtube/images/icon.png
# ./static/third_party/slick/src/ajax-loader.gif
# ./static/third_party/slick/src/fonts/slick.ttf
# ./static/third_party/slick/src/fonts/slick.eot
# ./static/third_party/slick/src/fonts/slick.woff
# ./static/bootstrap/fonts/glyphicons-halflings-regular.woff
# ./static/bootstrap/fonts/glyphicons-halflings-regular.woff2
# ./static/bootstrap/fonts/glyphicons-halflings-regular.eot
# ./static/bootstrap/fonts/glyphicons-halflings-regular.ttf
# ./build/static/ajax-loader.gif
# ./build/static/images/ui-bg_glass_65_ffffff_1x400.png
# ./build/static/images/boris-cape.png
# ./build/static/images/c9-save-name.png
# ./build/static/images/ui-bg_glass_55_fbf9ee_1x400.png
# ./build/static/images/icon_linkarrow.gif
# ./build/static/images/c9-new-tab.png
# ./build/static/images/mascot.png
# ./build/static/images/icon_offsite.gif
# ./build/static/images/ui-bg_glass_75_e6e6e6_1x400.png
# ./build/static/images/c9-save-name-complete.png
# ./build/static/images/homepage_gettingstarted_btn.gif
# ./build/static/images/c9-named-tab.png
# ./build/static/images/usb.png
# ./build/static/images/Untitled-2.png
# ./build/static/images/footer-img.jpg
# ./build/static/images/imager.png
# ./build/static/images/beagle-hd-logo.gif
# ./build/static/images/beagle-subpg-bg-mascot.gif
# ./build/static/images/ui-icons_222222_256x240.png
# ./build/static/images/ui-bg_flat_0_aaaaaa_40x100.png
# ./build/static/images/beagle-lrg-action-arrow.gif
# ./build/static/images/beagle_logo_hdr.gif
# ./build/static/images/icon_google+.png
# ./build/static/images/ui-icons_454545_256x240.png
# ./build/static/images/beaglebone-in-hand.JPG
# ./build/static/images/c9-create-tab.png
# ./build/static/images/beaglebone_with_led_bb.png
# ./build/static/images/c9-run.png
# ./build/static/images/ui-bg_highlight-soft_75_cccccc_1x100.png
# ./build/static/images/c9-stop.png
# ./build/static/images/icon_twitter.jpg
# ./build/static/images/ui-icons_2e83ff_256x240.png
# ./build/static/images/run-7zip-installer.png
# ./build/static/images/c9-close-tab.png
# ./build/static/images/bg_direction_nav.png
# ./build/static/images/beaglebone.png
# ./build/static/images/icon_facebook.gif
# ./build/static/images/beagle-bullet-list-arrow.gif
# ./build/static/images/artist-tested-engineer-approved.jpg
# ./build/static/images/green_check.png
# ./build/static/images/search.gif
# ./build/static/images/beaglebone_with_bmp085_bb.png
# ./build/static/images/icon_facebook.png
# ./build/static/images/animated-overlay.gif
# ./build/static/images/connected.png
# ./build/static/images/homepage_beaglebone_black.jpg
# ./build/static/images/homepage_black_hdr.gif
# ./build/static/images/ui-bg_glass_95_fef1ec_1x400.png
# ./build/static/images/write-latestimage.png
# ./build/static/images/c9-disk-icon.png
# ./build/static/images/ui-bg_flat_75_ffffff_40x100.png
# ./build/static/images/shiftout_bb.png
# ./build/static/images/icon_google+.jpg
# ./build/static/images/ui-bg_glass_75_dadada_1x400.png
# ./build/static/images/beagle-alink-action-arrow.gif
# ./build/static/images/icon_linkedin.jpg
# ./build/static/images/youTube-icon.png
# ./build/static/images/beagle-home-event-tux.gif
# ./build/static/images/ui-icons_cd0a0a_256x240.png
# ./build/static/images/icon_linkedin.png
# ./build/static/images/beagle-bullet-list-dot.gif
# ./build/static/images/warning_tri.png
# ./build/static/images/small_check.png
# ./build/static/images/ui-icons_888888_256x240.png
# ./build/static/images/beagle-btn-bg.jpg
# ./build/static/images/88x31.png
# ./build/static/images/cape-bacon-seg7.png
# ./build/static/images/icon_twitter.png
# ./build/static/images/beagle-subpg-bg.gif
# ./build/static/third_party/ckeditor/skins/moono/icons.png
# ./build/static/third_party/ckeditor/skins/moono/icons_hidpi.png
# ./build/static/third_party/ckeditor/skins/moono/images/lock-open.png
# ./build/static/third_party/ckeditor/skins/moono/images/close.png
# ./build/static/third_party/ckeditor/skins/moono/images/arrow.png
# ./build/static/third_party/ckeditor/skins/moono/images/refresh.png
# ./build/static/third_party/ckeditor/skins/moono/images/lock.png
# ./build/static/third_party/ckeditor/skins/moono/images/hidpi/lock-open.png
# ./build/static/third_party/ckeditor/skins/moono/images/hidpi/close.png
# ./build/static/third_party/ckeditor/skins/moono/images/hidpi/refresh.png
# ./build/static/third_party/ckeditor/skins/moono/images/hidpi/lock.png
# ./build/static/third_party/ckeditor/plugins/icons.png
# ./build/static/third_party/ckeditor/plugins/icons_hidpi.png
# ./build/static/third_party/ckeditor/plugins/link/images/anchor.png
# ./build/static/third_party/ckeditor/plugins/link/images/hidpi/anchor.png
# ./build/static/third_party/ckeditor/plugins/image/images/noimage.png
# ./build/static/third_party/ckeditor/plugins/magicline/images/icon.png
# ./build/static/third_party/ckeditor/plugins/magicline/images/icon-rtl.png
# ./build/static/third_party/ckeditor/plugins/magicline/images/hidpi/icon.png
# ./build/static/third_party/ckeditor/plugins/magicline/images/hidpi/icon-rtl.png
# ./build/static/third_party/ckeditor/plugins/about/dialogs/logo_ckeditor.png
# ./build/static/third_party/ckeditor/plugins/about/dialogs/hidpi/logo_ckeditor.png
# ./build/static/third_party/ckeditor/plugins/youtube/images/icon.png
# ./build/static/third_party/slick/src/ajax-loader.gif
# ./build/static/third_party/slick/src/fonts/slick.ttf
# ./build/static/third_party/slick/src/fonts/slick.eot
# ./build/static/third_party/slick/src/fonts/slick.woff
# ./build/static/bootstrap/fonts/glyphicons-halflings-regular.woff
# ./build/static/bootstrap/fonts/glyphicons-halflings-regular.woff2
# ./build/static/bootstrap/fonts/glyphicons-halflings-regular.eot
# ./build/static/bootstrap/fonts/glyphicons-halflings-regular.ttf
# ./build/Support/BoneScript/grove_Touch/300px-Twig-Touch.jpg
# ./Support/BoneScript/grove_Touch/300px-Twig-Touch.jpg

#----------------------------------------------------------------------------
# Huge files   (skipped):
# ./favicon.ico
# ./examples/cookbook/02-sensors/node_modules/async/dist/async.js
# ./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/core.js
# ./examples/cookbook/02-sensors/node_modules/async/node_modules/lodash/lodash.js
# ./examples/extras/botspeak/jquery.terminal-0.7.7.js
# ./examples/extras/botspeak/images/protosnap.png
# ./examples/extras/mfba2014/Slide16.png
# ./examples/extras/mfba2014/Slide05.png
# ./examples/extras/mfba2014/Slide11.png
# ./examples/extras/mfba2014/Slide19.png
# ./examples/extras/mfba2014/Slide08.png
# ./examples/extras/mfba2014/Slide10.png
# ./examples/extras/mfba2014/Slide17.png
# ./examples/extras/mfba2014/Slide23.png
# ./examples/extras/mfba2014/Slide09.png
# ./examples/extras/mfba2014/Slide12.png
# ./examples/extras/mfba2014/Slide06.png
# ./examples/extras/mfba2014/Slide04.png
# ./examples/extras/mfba2014/Slide01.png
# ./examples/extras/mfba2014/Slide07.png
# ./examples/extras/bacon_cape/BaconCapeLabs.pdf
# ./examples/extras/sensortag/IoTDetroit2014/Slide27.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide16.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide05.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide21.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide15.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide18.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide03.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide11.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide19.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide08.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide10.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide17.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide23.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide02.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide09.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide12.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide06.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide14.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide26.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide24.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide04.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide25.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide01.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide07.png
# ./examples/extras/sensortag/IoTDetroit2014/Slide13.png
# ./static/jquery-ui.min.js
# ./static/beagle.ico
# ./static/processing.js
# ./static/images/cape-headers-spi.png
# ./static/images/black-usr3-led.PNG
# ./static/images/download-latestimage.png
# ./static/images/extract-latestimage.png
# ./static/images/download-7zip.png
# ./static/images/green_hardware_details.png
# ./static/images/cape-headers-digital.png
# ./static/images/bone_connectors.jpg
# ./static/images/bbb_accelerometer_image.png
# ./static/images/cape-headers-i2c.png
# ./static/images/bone_in_hand.jpg
# ./static/images/node-red-screenshot-sm.png
# ./static/images/what-is-a-cape.png
# ./static/images/cape-headers-analog.png
# ./static/images/drive-eject.png
# ./static/images/extract-win32diskimager.png
# ./static/images/VD Ultrasonic Sensor.PNG
# ./static/images/cape-headers.png
# ./static/images/black-hdmi-pins.png
# ./static/images/cape-headers-pwm.png
# ./static/images/download-win32diskimager.png
# ./static/images/cape-eeprom.png
# ./static/images/black-emmc-pins.png
# ./static/images/bone-usr3-led.png
# ./static/images/cape-headers-serial.png
# ./static/images/black_hardware_details.png
# ./static/images/black-emmc-and-hdmi-pins.png
# ./static/images/BeagleBoneGreenWirelessPins.jpg
# ./static/images/BeagleBoneGreenPins.jpg
# ./static/images/green_wireless_hardware_details.png
# ./static/images/Cloud9_Screen.png
# ./static/third_party/ace/src/worker-xml.js
# ./static/third_party/ace/src/keybinding-vim.js
# ./static/third_party/ace/src/mode-html_ruby.js
# ./static/third_party/ace/src/worker-coffee.js
# ./static/third_party/ace/src/mode-ejs.js
# ./static/third_party/ace/src/mode-soy_template.js
# ./static/third_party/ace/src/ace.js
# ./static/third_party/ace/src/worker-css.js
# ./static/third_party/ace/src/worker-javascript.js
# ./static/third_party/ace/src/mode-luapage.js
# ./static/third_party/ace/src/mode-jsoniq.js
# ./static/third_party/ace/src/mode-rhtml.js
# ./static/third_party/ace/src/worker-html.js
# ./static/third_party/ace/src/worker-php.js
# ./static/third_party/ace/src/mode-markdown.js
# ./static/third_party/ace/src/mode-xquery.js
# ./static/third_party/ace/src/worker-xquery.js
# ./static/third_party/ace/src/mode-php.js
# ./static/third_party/ace/src/mode-velocity.js
# ./static/third_party/ckeditor/ckeditor.js
# ./static/bootstrap/fonts/glyphicons-halflings-regular.svg
# ./static/bootstrap/css/bootstrap.css
# ./static/bootstrap/css/bootstrap.min.css
# ./static/bootstrap/css/bootstrap.css.map
# ./build/favicon.ico
# ./build/static/jquery-ui.min.js
# ./build/static/beagle.ico
# ./build/static/processing.js
# ./build/static/images/cape-headers-spi.png
# ./build/static/images/black-usr3-led.PNG
# ./build/static/images/download-latestimage.png
# ./build/static/images/extract-latestimage.png
# ./build/static/images/download-7zip.png
# ./build/static/images/green_hardware_details.png
# ./build/static/images/cape-headers-digital.png
# ./build/static/images/bone_connectors.jpg
# ./build/static/images/bbb_accelerometer_image.png
# ./build/static/images/cape-headers-i2c.png
# ./build/static/images/bone_in_hand.jpg
# ./build/static/images/node-red-screenshot-sm.png
# ./build/static/images/what-is-a-cape.png
# ./build/static/images/cape-headers-analog.png
# ./build/static/images/drive-eject.png
# ./build/static/images/extract-win32diskimager.png
# ./build/static/images/VD Ultrasonic Sensor.PNG
# ./build/static/images/cape-headers.png
# ./build/static/images/black-hdmi-pins.png
# ./build/static/images/cape-headers-pwm.png
# ./build/static/images/download-win32diskimager.png
# ./build/static/images/cape-eeprom.png
# ./build/static/images/black-emmc-pins.png
# ./build/static/images/bone-usr3-led.png
# ./build/static/images/cape-headers-serial.png
# ./build/static/images/black_hardware_details.png
# ./build/static/images/black-emmc-and-hdmi-pins.png
# ./build/static/images/BeagleBoneGreenWirelessPins.jpg
# ./build/static/images/BeagleBoneGreenPins.jpg
# ./build/static/images/green_wireless_hardware_details.png
# ./build/static/images/Cloud9_Screen.png
# ./build/static/third_party/ace/src/worker-xml.js
# ./build/static/third_party/ace/src/keybinding-vim.js
# ./build/static/third_party/ace/src/mode-html_ruby.js
# ./build/static/third_party/ace/src/worker-coffee.js
# ./build/static/third_party/ace/src/mode-ejs.js
# ./build/static/third_party/ace/src/mode-soy_template.js
# ./build/static/third_party/ace/src/ace.js
# ./build/static/third_party/ace/src/worker-css.js
# ./build/static/third_party/ace/src/worker-javascript.js
# ./build/static/third_party/ace/src/mode-luapage.js
# ./build/static/third_party/ace/src/mode-jsoniq.js
# ./build/static/third_party/ace/src/mode-rhtml.js
# ./build/static/third_party/ace/src/worker-html.js
# ./build/static/third_party/ace/src/worker-php.js
# ./build/static/third_party/ace/src/mode-markdown.js
# ./build/static/third_party/ace/src/mode-xquery.js
# ./build/static/third_party/ace/src/worker-xquery.js
# ./build/static/third_party/ace/src/mode-php.js
# ./build/static/third_party/ace/src/mode-velocity.js
# ./build/static/third_party/ckeditor/ckeditor.js
# ./build/static/bootstrap/fonts/glyphicons-halflings-regular.svg
# ./build/static/bootstrap/css/bootstrap.css
# ./build/static/bootstrap/css/bootstrap.min.css
# ./build/static/bootstrap/css/bootstrap.css.map

#----------------------------------------------------------------------------
# This is meant only as a template example.
#
# Edit this accordinng to the "Machine-readable debian/copyright file" as
# http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ .
#
# Generate typical license templates with the "debmake -c" to STDOUT
# and merge them into here as needed.  See "man 8 debmake" for more.
#
# licensecheck(1) from the devscripts package is used here to determin
# the name of the license that applies.
#
# Please avoid to pick license terms that are more restrictive than the
# packaged work, as it may make Debian's contributions unacceptable upstream.

#----------------------------------------------------------------------------
# License: LICENSE
 Copyright (c) 2011 Jason Kridner <jdk@ti.com>
 .
 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.
 .
 --------------------
 .
 bone101/jquery.terminal.js is covered by the LGPL 3.0 license:
 .
                    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.

